/*------------------------------------------------------------------
 * Theme Name: OpenVio Website Builder
 * Theme URI: http://www.openviowebsites.com/
 * Author: OpenVio
 * Author URI: http://www.openviowebsites.com/
 * Description: OpenVio Website Builder Stylesheet
 * Version: 1.0
 * Copyright 2022 Openvio.
 ---------------------------------*/

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #b1d8ff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #999;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #4c84ff;
    }

* {
    margin: 0;
    padding: 0;
    outline: 0 !important
}

:root {
    --blue-color: #4c84ff;
    --red-color: #f34949;
    --dark-gray-color: #182026;
    --white-color: #fff;
    --black-color: #000;
}

body {
    margin: 0.1px auto 0;
    padding: 0;
    color: var(--dark-gray-color);
    font-size: 14px;
    width: 100%;
    font-weight: 400;
    background-color: var(--white-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--blue-color);
}

.form_page_main {
    background-color: #e9f4ff;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
}

    .form_page_main::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url(../images/curve-bg.png);
        background-repeat: no-repeat;
        z-index: -1;
    }

    .form_page_main::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background-image: url(../images/logo-icon.svg);
        background-repeat: no-repeat;
        z-index: -1;
        top: 33%;
        background-size: 250px;
        left: 24%;
        opacity: 0.051;
    }

.form_block_parent {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

/*.form_block {
    background-color: var(--white-color);
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #c3c3c3;
    text-align: left;
    margin: 15px 0 0;
}*/
.form_block {
    background-color: var(--white-color);
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #c3c3c3;
    text-align: left;
    margin-bottom: 73px;
    margin-top: 73px;
}

.form_main {
    width: 100%;
}

.form_block a {
    font-weight: 600;
    font-size: 15px;
}

.form_block_parent .logo_img {
    max-width: 240px;
}

.form_block h2 {
    font-size: 24px;
    font-weight: 700;
}

.main_btn, .btn-main {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    min-width: 151px;
    border: none;
    color: var(--white-color);
    background-color: var(--blue-color);
}

    .main_btn:hover, .btn-main:hover {
        color: var(--white-color);
        background-color: var(--blue-color);
    }

.form-control {
    height: 46px;
    border: 1px solid #d2ddec;
    box-shadow: none;
    font-size: 14px;
    background-color: #f4f8fb;
}

textarea.form-control {
    height: auto;
}

.form-group {
    margin: 0 0 20px;
}

.form-control:focus {
    background-color: #f4f8fb;
    border: 1px solid #95b8e9;
    box-shadow: none;
}

.dashboard_main_heading .form-group {
    margin: 0;
}

.dashboard_main_heading .form-control {
    height: 35px;
}





/*------ Dashboard CSS ------*/
.sidebar_nav {
    width: 250px;
    height: 100vh;
    position: fixed;
    background-color: #fff;
    overflow-y: auto;
    border-right: 1px solid #e3ebf6;
}

.db_brand {
    padding: 10px;
    border-bottom: 1px solid #e9f4ff;
    display: block;
}

.brand_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.db_brand img {
    max-width: 50px;
}

.db_brand a {
    display: inline-block;
    width: 20%;
    margin: 0 10px 0 0;
}

.db_brand p {
    margin: 0;
    text-align: left;
    width: 75%;
    line-height: 20px;
}

    .db_brand p span {
        font-size: 14px;
    }

    .db_brand p strong {
        font-size: 16px;
    }

.hamburger_btn {
    display: none;
}

.sidebar_nav .navbar {
    padding: 0;
}

    .sidebar_nav .navbar .nav-link {
        background: transparent;
        border-bottom: 1px solid #e9f4ff;
        padding: 16px 15px;
        color: #6e84a3;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
    }

        .sidebar_nav .navbar .nav-link i {
            width: 20px;
            text-align: center;
            font-size: 14px;
            font-weight: 400;
            margin: 0 5px 0 0;
        }

        .sidebar_nav .navbar .nav-link.active {
            background-color: #e9f4ff;
        }

.dropdown-toggle::after {
    content: none;
}

.navbar-nav .dropdown-menu {
    margin: 0;
    border: none;
    padding: 0;
    background-color: #e9f4ff;
    border-radius: 0px;
}

.dropdown-item {
    border-bottom: 1px solid #bfdcf9;
    padding: 10px 15px 10px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #6e84a3;
}

    .dropdown-item:hover {
        background-color: #cce6ff;
    }

    .dropdown-item.active, .dropdown-item:active {
        color: #335289;
        text-decoration: none;
        background-color: #cce6ff;
    }

.dropdown-menu {
    max-height: 0;
    opacity: 0;
    display: block;
    visibility: hidden;
    transition: .4s ease-in-out;
}

    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        overflow-y: auto;
    }

.drp-arrow {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 43px;
    line-height: 39px;
    background-color: transparent;
    color: var(--dark-gray-color);
    text-align: center;
    font-size: 16px;
    z-index: 99;
}

.dashboard_fixed_heading {
    background-color: #ffffff;
    padding: 15px 10px;
    margin: 0 0 0px;
    border-bottom: 1px solid #edf2f9;
    box-shadow: 0 0.75rem 1.5rem rgb(18 38 63 / 3%);
    position: fixed;
     width: 100%;
     top: 0;
    left: 250px;
    right: 0;
    z-index: 999;
}

    .dashboard_fixed_heading p {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .dashboard_fixed_heading p span {
            margin: 0 10px;
            display: inline-block;
            font-size: 12px;
        }

        .dashboard_fixed_heading p a {
            color: #333;
        }


.dashboard_main,
.db-inner {
    padding: 20px;
    width: auto;
    margin: 0 auto 0 130px !important;
    background-color: #f9fbfd;
    min-height: 100vh;
    height: auto;
}

.dashboard_main_heading {
    background-color: transparent;
    padding: 10px 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

    .dashboard_main_heading h2 {
        font-size: 18px;
        margin: 0;
        font-weight: 700;
    }

.heading_right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .heading_right .main_btn,
    .heading_right .btn-main {
        margin: 0 0 0 10px;
        font-size: 14px;
        padding: 7px 15px;
        text-align: center;
        min-width: auto;
    }

.single_db_module {
    padding: 15px;
    background-color: #fff;
    border: 1px solid #edf2f9;
    border-radius: 0.5rem;
    box-shadow: 0 0.75rem 1.5rem rgb(18 38 63 / 3%)
}

.single_theme_module {
    padding: 15px;
    background-color: #fff;
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #edf2f9;
    border-radius: 0.5rem;
    box-shadow: 0 0.75rem 1.5rem rgb(18 38 63 / 3%)
}

.theme_details {
    position: absolute;
    display: flex;
    flex-wrap: nowrap;
    padding: 10px 0 0;
    justify-content: center;
    align-items: center;
    top: 15px;
    right: 15px;
    left: 15px;
    bottom: 45px;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
}

.single_theme_module h3 {
    font-size: 18px;
    margin: 8px 0 0;
    text-align: center;
}

.theme_details a {
    background-color: var(--blue-color);
    color: var(--white-color);
    display: flex;
    text-align: center;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 14px;
    padding: 0 10px;
    margin: 0 5px;
    min-width: 40px;
}

.single_theme_module:hover .theme_details {
    opacity: 1;
}

.theme_details .published_icon {
    background-color: #7db900;
}

.theme_details .not_published_icon {
    background-color: #f30;
}

.pagination_block ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

    .pagination_block ul li {
        list-style: none;
        margin: 0 2px;
    }

        .pagination_block ul li a {
            display: flex;
            height: 40px;
            width: 50px;
            border: 1px solid var(--blue-color);
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0;
            border-radius: 5px;
        }

            .pagination_block ul li a:hover {
                background-color: var(--blue-color);
                color: #fff;
            }

.pagination_block li.active a {
    background-color: var(--blue-color);
    color: #fff;
}


.bg_white {
    background-color: var(--white-color);
}

.table_main {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #edf2f9;
    border-radius: 0.5rem;
    box-shadow: 0 0.75rem 1.5rem rgb(18 38 63 / 3%)
}

.table_style tbody {
    border-top: none !important;
}

.table_style thead {
    background-color: #f4f8fb;
}

.table_style tbody tr {
    border-style: none !important;
    border-top: none;
    border-color: #edf2f9;
}

    .table_style tbody tr td {
        padding: 12px 10px !important;
        vertical-align: middle;
    }

table.dataTable thead th,
table.dataTable thead td {
    padding: 12px 10px !important;
    border-bottom: 1px solid #e3ebf6 !important;
    border-top: 1px solid #e3ebf6 !important;
    font-size: 12px;
    text-transform: uppercase;
    color: #6984bf;
    letter-spacing: 1px;
}

table.dataTable.no-footer {
    border-bottom: none !important;
    padding: 15px 0;
}

.dataTables_length {
    background-color: #f4f8fb !important;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #e3ebf6;
}

    .dataTables_length select {
        border: none !important;
        background-color: #f4f8fb !important;
        margin: 0 4px 0 0;
        padding: 0 !important;
    }

.dataTables_filter input {
    border: 1px solid #e3ebf6 !important;
    background-color: #f4f8fb !important;
    margin: 0 0 0 8px !important;
    padding: 6px !important;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #889cb1 !important;
}

.paginate_button.current {
    background: none !important;
    background-color: #f4f8fb !important;
    border: none !important;
    color: #fff !important;
    border-radius: 5px !important;
}

.icon_btn {
    display: inline-flex;
    background-color: var(--blue-color);
    color: var(--white-color);
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

    .icon_btn:hover {
        color: var(--white-color);
    }

.toggle_span {
    display: inline-block;
    position: relative;
}

.mapping_list_collapse {
    position: absolute;
    z-index: 999;
    left: auto;
    right: 0%;
    width: 180px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    border: 1px solid #e9f4ff;
    background-clip: border-box;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1.5rem rgb(18 38 63 / 10%);
    text-align: left;
}

    .mapping_list_collapse ul {
        margin: 0;
        padding: 0;
    }

        .mapping_list_collapse ul li {
            list-style: none;
        }

            .mapping_list_collapse ul li a {
                display: block;
                padding: 6px 15px;
                border-bottom: 1px solid #e9f4ff;
                color: var(--blue-color);
            }

                .mapping_list_collapse ul li a:hover {
                    background-color: var(--blue-color);
                    color: var(--white-color);
                    border-bottom: 1px solid #e9f4ff;
                }

            .mapping_list_collapse ul li:last-child a {
                border: none;
            }


.modal-dialog {
    max-width: 700px;
}

.modal-content {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    word-break: break-all;
}

.modal-header {
    background-color: #e9f4ff;
    border: none;
    color: var(--dark-gray-color);
    padding: 15px;
    border-radius: 0;
}

    .modal-header .btn-close {
        padding: 0;
        margin: 0;
        color: var(--dark-gray-color);
        background: none !important;
        opacity: 1;
        font-size: 20px;
        width: auto;
        height: auto;
        box-shadow: none;
    }

.bootbox-close-button.close {
    padding: 0;
    margin: 0;
    color: var(--dark-gray-color);
    background: none !important;
    opacity: 1;
    font-size: 20px;
    width: auto;
    height: auto;
    border: none;
}

.modal-body .form-group label {
    font-weight: 500;
    margin: 0 0 4px;
    color: #6e84a3;
}



.profile_edit {
    padding: 0px;
}

    .profile_edit .form-control {
        background-color: #fff;
    }

    .profile_edit .form-group label {
        margin: 0 0 5px;
    }

.avatar_img {
    max-width: 100px;
}

.edit_avatar #profile_img {
    display: none;
}

.avatar_block {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.edit_avatar {
    position: absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
    background-color: rgb(32 148 243 / 90%);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    padding: 2px 0;
}

    .edit_avatar label {
        cursor: pointer;
    }

.switch_btn {
    text-align: right;
}

    .switch_btn p {
        font-size: 15px;
        margin: 0 0 5px;
        font-weight: 500;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 21px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 14px;
        width: 14px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.reset_pass_instruction {
    background-color: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
}

    .reset_pass_instruction h3 {
        font-size: 20px;
        font-weight: 700;
        color: #6e84a3;
    }


.form_instruction_text {
    background-color: #e3f2fd;
    padding: 9px;
    border-radius: 4px;
    margin: 10px 0;
}

    .form_instruction_text p {
        font-size: 13px;
        margin: 4px 0;
        color: #6e8ba1;
    }

.add_theme_form span.info,
.information {
    display: block;
    font-size: 12px;
    margin: 0 0 8px;
    color: #6e8ba1;
}

.red_txt {
    color: #f30;
}



@media(max-width:1199px) {
    .navbar {
        position: fixed;
        width: 100%;
        top: 0;
        background-color: #fff;
        height: 100vh;
        align-items: flex-start;
        max-width: 250px;
        box-shadow: 0px 1px 2px #9da1a3;
        transform: translateX(-101%);
        transition: transform .2s ease-in-out;
        z-index: 999;
    }

    .sidebar_nav {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
    }

    .db_brand {
        padding: 10px 10px;
        justify-content: space-between;
        display: flex;
    }

        .db_brand a {
            max-width: initial;
            width: auto;
        }

        .db_brand p {
            display: none;
        }

        .db_brand a img {
            width: 41px;
            max-width: initial;
        }

    .hamburger_btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 5px;
    }


        .hamburger_btn span {
            font-size: 30px;
            color: #5b7cbe;
            font-weight: 500;
            cursor: pointer;
        }

    .dashboard_main {
        margin: 0;
        padding: 15px;
    }

    .navbar.show {
        transform: translateX(0%);
    }
}

@media(max-width:767px) {
    .navbar-brand img {
        width: 200px;
    }

    .dashboard_main {
        width: 100% !important;
        margin: 0 !important;
    }
    .form_block_parent .logo_img {
        max-width: 200px;
    }

    .form_block h2 {
        font-size: 18px;
    }
}

fieldset {
    border: 1px solid #d2ddec !important;
    padding: 0 1.4em 1em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    background-color: #fff;
    border-radius: 5px;
}

legend {
    font-size: 1.2em !important;
    font-weight: bold !important;
    text-align: left !important;
    width: auto;
    padding: 0 10px;
    border-bottom: none;
    float: none;
    color: #4897d5;
}


input.error,
input.input-validation-error {
    border: 1px solid #f34949 !important;
}

.error,
.field-validation-error {
    color: #f34949;
    font-weight: normal;
}

.validation-summary-errors > ul {
    padding-left: 0px;
}

    .validation-summary-errors > ul > li {
        list-style-type: none;
        color: #f34949;
    }

.form-control[type=file] {
    padding: 12px;
}

.text-muted {
    color: #000 !important;
}

.chosen-single {
    height: 46px !important;
    border: 1px solid #d2ddec !important;
    box-shadow: none !important;
    font-size: 14px;
    background: none !important;
    background-color: #f4f8fb !important;
    padding: 10px !important;
    width: 100% !important;
}

    .chosen-single div b {
        background-position: 0px 14px !important;
    }

.history-logger-title {
    font-size: 18px;
}

.history-logger-list > li {
    font-style: italic;
}

.value-changed {
    background-color: #ff5366;
    color: #fff;
}

.log_details {
    width: 400px;
    position: fixed;
    right: -100%;
    top: 51px;
    background-color: #fff;
    padding: 45px 0 0;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 5%);
    border-radius: 10px 0px 0px 10px;
    overflow: hidden;
    -webkit-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
}

.dashboard_main_body {
    position: relative;
}

.log_block {
    position: relative;
    z-index: 9999;
}

.log_icon {
    position: fixed;
    right: 0;
    top: 10px;
    background-color: #4c84ff;
    color: #fff;
    font-size: 20px;
    padding: 5px 13px;
    border-radius: 5px 0px 0px 5px;
    box-shadow: 0px 0px 20px rgba(0,0,0, 0.1);
    cursor: pointer;
}

.log_details .history-logger-title {
    position: absolute;
    top: 0;
    font-size: 18px;
    background-color: #fff;
    padding: 10px;
    width: 100%;
    box-shadow: 0px 1px 1px #ddd;
}

.history-logger-list {
    max-height: 370px;
    overflow: auto;
    padding: 15px 15px;
}

    .history-logger-list .logger-details {
        font-size: 14px;
        color: #444;
    }

.log_details.visible {
    right: 0;
}

.history-logger-list li {
    font-style: italic;
    list-style: none;
    background-color: #e9f4ff;
    margin: 0 0 5px;
    padding: 4px;
    border-radius: 4px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transform: rotate(-180deg);
}

.accordion-button:focus {
    box-shadow: none !important;
}

.sorting_container {
    display: inline-flex;
    flex-direction: column;
}

    .sorting_container a {
        line-height: 3px;
        margin: 0;
        padding: 0;
        color: #ccc;
    }

.sorting.asc {
    margin-bottom: 1px;
}

.sorting_container i {
    line-height: 1px;
}

.sorting.active {
    color: #4c84ff;
}

/*.map-block .footer-links li a:hover, .map-block .footer-links li p:hover {
    color: #007bbf
}*/