@font-face {
    font-family: "roboto";
    src: url(../fonts/Roboto-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "roboto";
    src: url(../fonts/Roboto-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: "roboto";
    src: url(../fonts/Roboto-Bold.ttf);
    font-weight: 700;
}

body {
    font-family: "Roboto";
    font-weight: 400;
}

.account-pages {
    min-height: 100vh;
    background: #FFF5F5;
}


    .account-pages .card {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        min-height: 300px;
        display: flex;
        flex-direction: unset;
        align-items: center;
    }

    .account-pages h1 {
        color: #101010;
        font-weight: bold;
    }

        .account-pages h1 span {
            color: #79c151;
        }
.btn-green {
    background-color: #79c151;
    border-color: #79c151;
    color: #fff;
}

    .account-pages .form__field {
        border-bottom: 1px solid #ccc;
        font-size: 16px;
    }

    .account-pages .input_group {
        padding: 15px 0 0;
        margin-top: 10px;
    }

.input_group {
    position: relative;
    padding: 0;
    margin-top: 0;
}

    .input_group input,
    .input_group textarea {
        width: 100%;
        border: 0;
        border-bottom: 1px solid #ccc;
        outline: 0;
        font-size: 14px;
        padding: 7.5px 0;
        background: transparent;
        transition: border-color 0.2s;
        color: var(--bs-body-color);
    }

        .input_group input::placeholder,
        .input_group textarea::placeholder {
            color: transparent;
        }

.account-pages .input_group input:placeholder-shown ~ label {
    font-size: 16px;
    top: 20px;
}

.input_group input:placeholder-shown ~ label,
.input_group textarea:placeholder-shown ~ label {
    font-size: 14px;
    cursor: text;
    top: 10px;
}

.account-pages .input_group label,
.account-pages .input_group input:focus ~ label {
    top: 0;
    font-size: 12px;
}

.input_group label,
.input_group input:focus ~ label,
.input_group textarea:focus ~ label {
    position: absolute;
    top: -8px;
    display: block;
    transition: 0.2s;
    font-size: 11px;
    color: #585858;
    font-weight: 400;
}

.input_group input:focus ~ label,
.input_group textarea:focus ~ label {
    color: #3300CC
}

.input_group input:focus,
.input_group textarea:focus {
    padding-bottom: 6px;
    border-bottom: 2px solid #3300CC
}

.input_file input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    cursor: pointer;
    display: block;
    width: 100%;
    padding: .47rem .75rem;
    font-size: .8125rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.input_file label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .47rem .75rem;
    font-size: .8125rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #eff2f7;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

#page-topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1002;
    background-color: #fff;
    -webkit-box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
    box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03)
}

.navbar-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    height: 70px;
    padding: 0 calc(24px / 2) 0 0
}

    .navbar-header .dropdown .show.header-item {
        background-color: #f8f9fa
    }

.navbar-brand-box {
    padding: 0 1.5rem;
    text-align: center;
    width: 250px;
    display: flex;
    align-items: center;
}

.logo {
    line-height: 70px
}

    .logo .logo-sm {
        display: none
    }

.logo-light {
    display: none
}

.logo-lg {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    gap: 10px;
}

    .logo-lg span {
        line-height: 1.2;
        font-weight: bold;
        color: #fc0000;
        text-align: center;
        font-size: 14px;
    }
    .logo-lg img{
        display: block;
        height: 60px;
        object-fit: contain;
    }
    @media (max-width:992px) {
        .navbar-brand-box {
        width: auto
    }

    .logo span.logo-lg {
        display: none
    }

    .logo span.logo-sm {
        display: inline-block
    }
}

.profile-container {
    display: flex;
    align-items: center;
}

.profile-picture {
    width: 50px; /* Adjust width as needed */
    height: 50px; /* Adjust height as needed */
    border-radius: 50%; /* To make the image circular */
    margin-right: 10px; /* Space between image and text */
}
.page-content {
    padding: calc(70px + 24px) calc(24px / 2) 60px calc(24px / 2)
}

    .page-content table {
        margin-bottom: .25rem;
        height:48px;
    }

        .page-content table tr th {
            text-align: left;
            white-space: nowrap;
        }
        .page-content table tr th, .page-content table tr td {
            padding:4px;
        }
        .page-content table p {
            max-width: 300px;
            margin-bottom: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        .page-content table tr td:last-child, .page-content table tr th:last-child {
            text-align: center;
        }

       
       

            .page-content .pagination-rounded .page-link {
        width: 24px;
        height: 24px;
        line-height: 24px;
    }

    .page-content .page-item.active .page-link {
        background-color: #405088;
        border-color: #405088;
    }

    .page-content .card-body {
        padding: .65rem .65rem;
    }

.actBtns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

    .actBtns a {
        cursor: pointer;
    }

    .actBtns > * {
        display: flex;
        align-items: center;
    }

.listAct {
    display: flex;
    gap: 6px;
    white-space: nowrap;
    margin-bottom: 5px;
}

    .listAct .nice-select {
        height: 27px;
        line-height: 1rem;
        font-size: .71094rem;
        padding-left: 8px;
        padding-right: 20px;
        position: relative;
    }
   
    .listAct .fa-file-download{
        color: #077000;
        font-size: 25px;
    }
   /* .listAct .fa-filter {
        color: #077000;
        font-size: 25px;
    }
    .listAct .fa-eraser {
        color: #077000;
        font-size: 25px;
    }*/
        .listAct .nice-select .list {
            min-width: 130px;
            position: absolute;
            inset: 35px 0px auto auto;
            margin: 0px;
            transform: translate(3px, 32px);
            width: auto;
        }

    .listAct .form-control-sm {
        min-height: unset;
    }

.seah {
    display: flex;
    align-items: center;
}

    .seah input {
        border-radius: 4px 0 0 4px;
        border-right: 0;
        min-width: 220px;
    }

    .seah label {
        background-color: #343a40;
        color: #fff;
        height: 27px;
        width: 32px;
        display: flex;
        font-size: 16px;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
        border-radius: 0 4px 4px 0;
    }

.form-group {
    margin: 15px 0;
}

.listPro img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
}

.listPro {
    font-size: 14px;
}

.listTopFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-item {
    height: 70px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #555b6d;
    border: 0;
    border-radius: 0
}

    .header-item:hover {
        color: #555b6d
    }

.header-profile-user {
    height: 36px;
    width: 36px;
    background-color: #f6f6f6;
    padding: 3px
}

.noti-icon i {
    font-size: 22px;
    color: #555b6d
}

.noti-icon .badge {
    position: absolute;
    top: 12px;
    right: 4px
}

.notification-item .d-flex {
    padding: .75rem 1rem
}

    .notification-item .d-flex:hover {
        background-color: #f6f6f6
    }

.dropdown-icon-item {
    display: block;
    border-radius: 3px;
    line-height: 34px;
    text-align: center;
    padding: 15px 0 9px;
    display: block;
    border: 1px solid transparent;
    color: #74788d
}

    .dropdown-icon-item img {
        height: 24px
    }

    .dropdown-icon-item span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dropdown-icon-item:hover {
        border-color: #eff2f7
    }

.fullscreen-enable [data-bs-toggle=fullscreen] .bx-fullscreen::before {
    content: "\ea3f"
}

.navbar-brand-box {
    background: #ffffff;
    border-right: 1px solid #eee;
    display: flex;
    justify-content: center;
}

@media (max-width:600px) {
    .navbar-header .dropdown {
        position: static
    }

        .navbar-header .dropdown .dropdown-menu {
            left: 10px !important;
            right: 10px !important
        }

    .listAct > .seah {
        width: 100% !important;
    }
}



.page-title-box {
    padding-bottom: 24px
}

    .page-title-box .breadcrumb {
        background-color: transparent;
        padding: 0
    }

    .page-title-box h4 {
        text-transform: uppercase;
        font-weight: 600;
        font-size: 16px !important
    }

.footer {
    bottom: 0;
    padding: 10px calc(16px / 2);
    position: absolute;
    right: 0;
    color: #74788d;
    left: 250px;
    background-color: #f2f2f5
}

@media (max-width:991.98px) {
    .footer {
        left: 0
    }
}

.vertical-collpsed .footer {
    left: 70px
}

@media (max-width:991.98px) {
    .vertical-collpsed .footer {
        left: 0
    }
}

.right-bar {
    background-color: #fff;
    -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, .06), 0 1px 0 0 rgba(0, 0, 0, .02);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, .06), 0 1px 0 0 rgba(0, 0, 0, .02);
    display: block;
    position: fixed;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    width: 280px;
    z-index: 9999;
    float: right !important;
    right: -290px;
    top: 0;
    bottom: 0
}

    .right-bar .right-bar-toggle {
        background-color: #444c54;
        height: 24px;
        width: 24px;
        line-height: 24px;
        display: block;
        color: #eff2f7;
        text-align: center;
        border-radius: 50%
    }

        .right-bar .right-bar-toggle:hover {
            background-color: #4b545c
        }

.rightbar-overlay {
    background-color: rgba(52, 58, 64, .55);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 9998;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.right-bar-enabled .right-bar {
    right: 0
}

.right-bar-enabled .rightbar-overlay {
    display: block
}

@media (max-width:767.98px) {
    .right-bar {
        overflow: auto
    }

        .right-bar .slimscroll-menu {
            height: auto !important
        }

    .page-content {
        padding: calc(70px + 16px) 0 60px 0;
    }
}

.metismenu {
    margin: 0
}

    .metismenu li {
        display: block;
        width: 100%
    }

    .metismenu .mm-collapse {
        display: none
    }

        .metismenu .mm-collapse:not(.mm-show) {
            display: none
        }

        .metismenu .mm-collapse.mm-show {
            display: block
        }

    .metismenu .mm-collapsing {
        position: relative;
        height: 0;
        overflow: hidden;
        -webkit-transition-timing-function: ease;
        transition-timing-function: ease;
        -webkit-transition-duration: .35s;
        transition-duration: .35s;
        -webkit-transition-property: height, visibility;
        transition-property: height, visibility
    }

.vertical-menu {
    width: 250px;
    z-index: 1001;
    background: #000;
    bottom: 0;
    margin-top: 0;
    position: fixed;
    top: 70px;
    -webkit-box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
    box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03)
}

.main-content {
    margin-left: 250px;
}

    .main-content .content {
        padding: 0 15px 10px 15px;
        margin-top: 70px
    }

#sidebar-menu {
    padding: 10px 0 30px 0
}

    #sidebar-menu .mm-active > .has-arrow:after {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }

    #sidebar-menu .has-arrow:after {
        content: "\F0140";
        font-family: 'Material Design Icons';
        display: block;
        float: right;
        -webkit-transition: -webkit-transform .2s;
        transition: -webkit-transform .2s;
        transition: transform .2s;
        transition: transform .2s, -webkit-transform .2s;
        font-size: 1rem
    }

    #sidebar-menu ul li a {
        display: block;
        padding: .625rem 1.5rem;
        color: #d1d1d1;
        position: relative;
        font-size: 14px;
        -webkit-transition: all .4s;
        transition: all .4s
    }

        #sidebar-menu ul li a i {
            display: inline-block;
            min-width: 1.75rem;
            padding-bottom: .125em;
            font-size: 1.25rem;
            line-height: 1.40625rem;
            vertical-align: middle;
            color: #d1d1d1;
            -webkit-transition: all .4s;
            transition: all .4s
        }

        #sidebar-menu ul li a:hover {
            color: #383c40
        }

            #sidebar-menu ul li a:hover i {
                color: #383c40
            }

    #sidebar-menu ul li .badge {
        margin-top: 4px;
        padding-top: 5px;
        font-weight: 400
    }

    #sidebar-menu ul li ul.sub-menu {
        padding: 0
    }

        #sidebar-menu ul li ul.sub-menu li a {
            padding: .4rem 1.5rem .4rem 3.5rem;
            font-size: 14px;
            color: #545a6d
        }

            #sidebar-menu ul li ul.sub-menu li a:hover {
                color: #383c40
            }

        #sidebar-menu ul li ul.sub-menu li ul.sub-menu {
            padding: 0
        }

            #sidebar-menu ul li ul.sub-menu li ul.sub-menu li a {
                padding: .4rem 1.5rem .4rem 4.5rem;
                font-size: 14px
            }

.menu-title {
    padding: 12px 20px !important;
    letter-spacing: .05em;
    pointer-events: none;
    cursor: default;
    font-size: 11px;
    text-transform: uppercase;
    color: #7f8387;
    font-weight: 600
}

.mm-active {
    color: #50A5F1 !important
}

    .mm-active > a {
        color: #50A5F1 !important
    }

        .mm-active > a i {
            color: #50A5F1 !important
        }

    .mm-active .active {
        color: #50A5F1 !important
    }

        .mm-active .active i {
            color: #50A5F1 !important
        }

    .mm-active > i {
        color: #50A5F1 !important
    }

@media (max-width:992px) {
    .vertical-menu {
        display: none
    }

    .main-content {
        margin-left: 0 !important
    }

    body.sidebar-enable .vertical-menu {
        display: block
    }

    .listTopFlex {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: start;
    }

    .listAct {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .listAct > * {
            width: 49% !important;
        }
}

@media (max-width:380px) {
    .navbar-brand-box {
        display: none
    }

    .listAct > * {
        width: 48% !important;
    }
}

.vertical-collpsed .main-content {
    margin-left: 70px
}

.vertical-collpsed .navbar-brand-box {
    width: 70px !important
}

.vertical-collpsed .logo span.logo-lg {
    display: none
}

.vertical-collpsed .logo span.logo-sm {
    display: block
}

.vertical-collpsed .vertical-menu {
    position: absolute;
    width: 70px !important;
    z-index: 5
}

    .vertical-collpsed .vertical-menu .simplebar-content-wrapper,
    .vertical-collpsed .vertical-menu .simplebar-mask {
        overflow: visible !important
    }

    .vertical-collpsed .vertical-menu .simplebar-scrollbar {
        display: none !important
    }

    .vertical-collpsed .vertical-menu .simplebar-offset {
        bottom: 0 !important
    }

    .vertical-collpsed .vertical-menu #sidebar-menu .badge,
    .vertical-collpsed .vertical-menu #sidebar-menu .collapse.in,
    .vertical-collpsed .vertical-menu #sidebar-menu .menu-title {
        display: none !important
    }

    .vertical-collpsed .vertical-menu #sidebar-menu .nav.collapse {
        height: inherit !important
    }

    .vertical-collpsed .vertical-menu #sidebar-menu .has-arrow:after {
        display: none
    }

    .vertical-collpsed .vertical-menu #sidebar-menu > ul > li {
        position: relative;
    }

        .vertical-collpsed .vertical-menu #sidebar-menu > ul > li > a {
            padding: 15px 20px;
            min-height: 55px;
            -webkit-transition: none;
            transition: none
        }

            .vertical-collpsed .vertical-menu #sidebar-menu > ul > li > a:active,
            .vertical-collpsed .vertical-menu #sidebar-menu > ul > li > a:focus,
            .vertical-collpsed .vertical-menu #sidebar-menu > ul > li > a:hover {
                color: #383c40
            }

            .vertical-collpsed .vertical-menu #sidebar-menu > ul > li > a i {
                font-size: 1.45rem;
                margin-left: 4px
            }

            .vertical-collpsed .vertical-menu #sidebar-menu > ul > li > a span {
                display: none;
                padding-left: 25px
            }

        .vertical-collpsed .vertical-menu #sidebar-menu > ul > li:hover > a {
            position: relative;
            width: calc(190px + 70px);
            color: #fff;
            background-color: #2d3a69;
            -webkit-transition: none;
            transition: none
        }

            .vertical-collpsed .vertical-menu #sidebar-menu > ul > li:hover > a i {
                color: #fff
            }

            .vertical-collpsed .vertical-menu #sidebar-menu > ul > li:hover > a span {
                display: inline
            }

        .vertical-collpsed .vertical-menu #sidebar-menu > ul > li:hover > ul {
            display: block;
            left: 70px;
            position: absolute;
            width: 190px;
            height: auto !important;
            -webkit-box-shadow: 3px 5px 10px 0 rgba(54, 61, 71, .1);
            box-shadow: 3px 5px 10px 0 rgba(54, 61, 71, .1)
        }

            .vertical-collpsed .vertical-menu #sidebar-menu > ul > li:hover > ul ul {
                -webkit-box-shadow: 3px 5px 10px 0 rgba(54, 61, 71, .1);
                box-shadow: 3px 5px 10px 0 rgba(54, 61, 71, .1)
            }

            .vertical-collpsed .vertical-menu #sidebar-menu > ul > li:hover > ul a {
                -webkit-box-shadow: none;
                box-shadow: none;
                padding: 8px 20px;
                position: relative;
                width: 190px;
                z-index: 6;
                color: #d1d1d1
            }

                .vertical-collpsed .vertical-menu #sidebar-menu > ul > li:hover > ul a:hover {
                    color: #fff
                }

.vertical-collpsed ul li ul.sub-menu li a::before {
    display: none;
}

.vertical-collpsed .vertical-menu #sidebar-menu > ul ul {
    padding: 5px 0;
    z-index: 9999;
    display: none;
    background-color: #2d3a69
}

    .vertical-collpsed .vertical-menu #sidebar-menu > ul ul li:hover > ul {
        display: block;
        left: 190px;
        height: auto !important;
        margin-top: -36px;
        position: absolute;
        width: 190px
    }

    .vertical-collpsed .vertical-menu #sidebar-menu > ul ul li > a span.pull-right {
        position: absolute;
        right: 20px;
        top: 12px;
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }

    .vertical-collpsed .vertical-menu #sidebar-menu > ul ul li.active a {
        color: #f8f9fa
    }

.vertical-menu .simplebar-content {
    height: 100%;
}

#sidebar-menu ul li a {
    color: #d1d1d1
}

    #sidebar-menu ul li a i {
        color: #d1d1d1
    }

    #sidebar-menu ul li a:hover {
        color: #fff;
    }

        #sidebar-menu ul li a:hover i {
            color: #fff
        }

#sidebar-menu ul li ul.sub-menu li a {
    position: relative;
    color: #d1d1d1
}

    #sidebar-menu ul li ul.sub-menu li a::before {
        position: absolute;
        left: 40px;
        top: 6px;
        content: "\F0534";
        margin-right: 5px;
        font-family: "Material Design Icons"
    }

    #sidebar-menu ul li ul.sub-menu li a:hover {
        color: #fff
    }

.mm-active {
    color: #fff !important
}

    .mm-active > a {
        color: #fff !important
    }

        .mm-active > a i {
            color: #fff !important
        }

    .mm-active > i {
        color: #fff !important
    }

    .mm-active .active {
        color: #fff !important
    }

        .mm-active .active i {
            color: #fff !important
        }

.topnav {
    background: #fff;
    padding: 0 calc(24px / 2);
    -webkit-box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
    box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03);
    margin-top: 70px;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 100
}

    .topnav .topnav-menu {
        margin: 0;
        padding: 0
    }

    .topnav .navbar-nav .nav-link {
        font-size: 14px;
        position: relative;
        padding: 1rem 1.3rem;
        color: #545a6d
    }

        .topnav .navbar-nav .nav-link i {
            font-size: 15px
        }

        .topnav .navbar-nav .nav-link:focus,
        .topnav .navbar-nav .nav-link:hover {
            color: #50A5F1;
            background-color: transparent
        }

    .topnav .navbar-nav .dropdown-item {
        color: #545a6d
    }

        .topnav .navbar-nav .dropdown-item.active,
        .topnav .navbar-nav .dropdown-item:hover {
            color: #50A5F1
        }

    .topnav .navbar-nav .nav-item .nav-link.active {
        color: #50A5F1
    }

    .topnav .navbar-nav .dropdown.active > a {
        color: #50A5F1;
        background-color: transparent
    }

.wApp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-decoration: none;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .wApp img {
        max-width: 100%;
        max-height: 50%;
        object-fit: contain;
    }


@media (min-width:992px) {
    .topnav .navbar-nav .nav-item:first-of-type .nav-link {
        padding-left: 0
    }

    .topnav .dropdown-item {
        padding: .5rem 1.5rem;
        min-width: 180px
    }

    .topnav .dropdown.mega-dropdown .mega-dropdown-menu {
        left: 0;
        right: auto
    }

    .topnav .dropdown .dropdown-menu {
        margin-top: 0;
        border-radius: 0 0 .25rem .25rem
    }

        .topnav .dropdown .dropdown-menu .arrow-down::after {
            right: 15px;
            -webkit-transform: rotate(-135deg) translateY(-50%);
            transform: rotate(-135deg) translateY(-50%);
            position: absolute
        }

        .topnav .dropdown .dropdown-menu .dropdown .dropdown-menu {
            position: absolute;
            top: 0 !important;
            left: 100%;
            display: none
        }

    .topnav .dropdown:hover > .dropdown-menu {
        display: block
    }

        .topnav .dropdown:hover > .dropdown-menu > .dropdown:hover > .dropdown-menu {
            display: block
        }

    .navbar-toggle {
        display: none
    }
}

.arrow-down {
    display: inline-block
}

    .arrow-down:after {
        border-color: initial;
        border-style: solid;
        border-width: 0 0 1px 1px;
        content: "";
        height: .4em;
        display: inline-block;
        right: 5px;
        top: 50%;
        margin-left: 10px;
        -webkit-transform: rotate(-45deg) translateY(-50%);
        transform: rotate(-45deg) translateY(-50%);
        -webkit-transform-origin: top;
        transform-origin: top;
        -webkit-transition: all .3s ease-out;
        transition: all .3s ease-out;
        width: .4em
    }

@media (max-width:1199.98px) {
    .topnav-menu .navbar-nav li:last-of-type .dropdown .dropdown-menu {
        right: 100%;
        left: auto
    }
}

@media (max-width:991.98px) {
    .navbar-brand-box .logo-dark {
        display: block
    }

        .navbar-brand-box .logo-dark span.logo-sm {
            display: block
        }

    .navbar-brand-box .logo-light {
        display: none
    }

    .topnav {
        max-height: 360px;
        overflow-y: auto;
        padding: 0
    }

        .topnav .navbar-nav .nav-link {
            padding: .75rem 1.1rem
        }

        .topnav .dropdown .dropdown-menu {
            background-color: transparent;
            border: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            padding-left: 15px
        }

            .topnav .dropdown .dropdown-menu.dropdown-mega-menu-xl {
                width: auto
            }

                .topnav .dropdown .dropdown-menu.dropdown-mega-menu-xl .row {
                    margin: 0
                }

        .topnav .dropdown .dropdown-item {
            position: relative;
            background-color: transparent
        }

            .topnav .dropdown .dropdown-item.active,
            .topnav .dropdown .dropdown-item:active {
                color: #50A5F1
            }

        .topnav .arrow-down::after {
            right: 15px;
            position: absolute
        }
}


/* wave effect */

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent
}

    .waves-effect .waves-ripple {
        position: absolute;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        margin-top: -50px;
        margin-left: -50px;
        opacity: 0;
        background: rgba(0, 0, 0, .1);
        background: radial-gradient(rgba(0, 0, 0, .1) 0, rgba(0, 0, 0, .1) 40%, rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, .2) 60%, rgba(255, 255, 255, 0) 70%);
        -webkit-transition: all .5s ease-out;
        transition: all .5s ease-out;
        -webkit-transition-property: -webkit-transform, opacity;
        -webkit-transition-property: opacity, -webkit-transform;
        transition-property: opacity, -webkit-transform;
        transition-property: transform, opacity;
        transition-property: transform, opacity, -webkit-transform;
        -webkit-transform: scale(0) translate(0, 0);
        transform: scale(0) translate(0, 0);
        pointer-events: none
    }

    .waves-effect.waves-light .waves-ripple {
        background: rgba(255, 255, 255, .4);
        background: radial-gradient(rgba(255, 255, 255, .2) 0, rgba(255, 255, 255, .3) 40%, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, .5) 60%, rgba(255, 255, 255, 0) 70%)
    }

    .waves-effect.waves-classic .waves-ripple {
        background: rgba(0, 0, 0, .2)
    }

    .waves-effect.waves-classic.waves-light .waves-ripple {
        background: rgba(255, 255, 255, .4)
    }

.waves-notransition {
    -webkit-transition: none !important;
    transition: none !important
}

.waves-button,
.waves-circle {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%)
}

    .waves-button,
    .waves-button-input,
    .waves-button:hover,
    .waves-button:visited {
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        border: none;
        outline: 0;
        color: inherit;
        background-color: rgba(0, 0, 0, 0);
        font-size: 1em;
        line-height: 1em;
        text-align: center;
        text-decoration: none;
        z-index: 1
    }

.waves-button {
    padding: .85em 1.1em;
    border-radius: .2em
}

.waves-button-input {
    margin: 0;
    padding: .85em 1.1em
}

.waves-input-wrapper {
    border-radius: .2em;
    vertical-align: bottom
}

    .waves-input-wrapper.waves-button {
        padding: 0
    }

    .waves-input-wrapper .waves-button-input {
        position: relative;
        top: 0;
        left: 0;
        z-index: 1
    }

.waves-circle {
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%
}

.waves-float {
    -webkit-mask-image: none;
    -webkit-box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, .12);
    box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, .12);
    -webkit-transition: all .3s;
    transition: all .3s
}

    .waves-float:active {
        -webkit-box-shadow: 0 8px 20px 1px rgba(0, 0, 0, .3);
        box-shadow: 0 8px 20px 1px rgba(0, 0, 0, .3)
    }

.waves-block {
    display: block
}

.waves-effect.waves-light .waves-ripple {
    background-color: rgba(255, 255, 255, .4)
}

.waves-effect.waves-primary .waves-ripple {
    background-color: rgba(85, 110, 230, .4)
}

.waves-effect.waves-success .waves-ripple {
    background-color: rgba(52, 195, 143, .4)
}

.waves-effect.waves-info .waves-ripple {
    background-color: rgba(80, 165, 241, .4)
}

.waves-effect.waves-warning .waves-ripple {
    background-color: rgba(241, 180, 76, .4)
}

.waves-effect.waves-danger .waves-ripple {
    background-color: rgba(244, 106, 106, .4)
}

.avatar-title {
    background-color: #50A5F1;
    color: #fff;
    display: block;
    font-weight: 500;
    width: 100%;
    padding: 0.6rem
}

.avatar-group {
    padding-left: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

    .avatar-group .avatar-group-item {
        margin-left: -12px;
        border: 2px solid #fff;
        border-radius: 50%;
        -webkit-transition: all .2s;
        transition: all .2s
    }

        .avatar-group .avatar-group-item:hover {
            position: relative;
            -webkit-transform: translateY(-2px);
            transform: translateY(-2px)
        }

.custom-accordion .accordion-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 7px;
    background-color: #f6f6f6;
    padding: 12px 20px;
    color: #495057;
    font-weight: 600;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

    .custom-accordion .accordion-list.collapsed i.accor-plus-icon:before {
        content: "\F0415"
    }

    .custom-accordion .accordion-list .accor-plus-icon {
        display: inline-block;
        font-size: 16px;
        height: 24px;
        width: 24px;
        line-height: 22px;
        background-color: #fff;
        text-align: center;
        border-radius: 50%
    }

.custom-accordion a.collapsed i.accor-down-icon:before {
    content: "\F0140"
}

.custom-accordion .card-body {
    color: #74788d
}

.font-size-10 {
    font-size: 10px !important
}

.font-size-11 {
    font-size: 11px !important
}

.font-size-12 {
    font-size: 12px !important
}

.font-size-13 {
    font-size: 13px !important
}

.font-size-14 {
    font-size: 14px !important
}

.font-size-15 {
    font-size: 15px !important
}

.font-size-16 {
    font-size: 16px !important
}

.font-size-17 {
    font-size: 17px !important
}

.font-size-18 {
    font-size: 18px !important
}

.font-size-20 {
    font-size: 20px !important
}

.font-size-22 {
    font-size: 22px !important
}

.font-size-24 {
    font-size: 24px !important
}

.fw-medium {
    font-weight: 500
}

.fw-semibold {
    font-weight: 600
}

.social-list-item {
    height: 2rem;
    width: 2rem;
    line-height: calc(2rem - 4px);
    display: block;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    color: #adb5bd;
    text-align: center;
    -webkit-transition: all .4s;
    transition: all .4s
}

    .social-list-item:hover {
        color: #74788d;
        background-color: #eff2f7
    }

.w-xs {
    min-width: 80px
}

.w-sm {
    min-width: 95px
}

.w-md {
    min-width: 110px
}

.w-lg {
    min-width: 140px
}

.w-xl {
    min-width: 160px
}

.alert-dismissible .btn-close {
    font-size: 10px;
    padding: 1.05rem 1.25rem;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999
}

#status {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px
}

.spinner-chase {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-animation: spinner-chase 2.5s infinite linear both;
    animation: spinner-chase 2.5s infinite linear both
}

.chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: chase-dot 2s infinite ease-in-out both;
    animation: chase-dot 2s infinite ease-in-out both
}

    .chase-dot:before {
        content: '';
        display: block;
        width: 25%;
        height: 25%;
        background-color: #50A5F1;
        border-radius: 100%;
        -webkit-animation: chase-dot-before 2s infinite ease-in-out both;
        animation: chase-dot-before 2s infinite ease-in-out both
    }

    .chase-dot:nth-child(1) {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s
    }

        .chase-dot:nth-child(1):before {
            -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s
        }

    .chase-dot:nth-child(2) {
        -webkit-animation-delay: -1s;
        animation-delay: -1s
    }

        .chase-dot:nth-child(2):before {
            -webkit-animation-delay: -1s;
            animation-delay: -1s
        }

    .chase-dot:nth-child(3) {
        -webkit-animation-delay: -.9s;
        animation-delay: -.9s
    }

        .chase-dot:nth-child(3):before {
            -webkit-animation-delay: -.9s;
            animation-delay: -.9s
        }

    .chase-dot:nth-child(4) {
        -webkit-animation-delay: -.8s;
        animation-delay: -.8s
    }

        .chase-dot:nth-child(4):before {
            -webkit-animation-delay: -.8s;
            animation-delay: -.8s
        }

    .chase-dot:nth-child(5) {
        -webkit-animation-delay: -.7s;
        animation-delay: -.7s
    }

        .chase-dot:nth-child(5):before {
            -webkit-animation-delay: -.7s;
            animation-delay: -.7s
        }

    .chase-dot:nth-child(6) {
        -webkit-animation-delay: -.6s;
        animation-delay: -.6s
    }

        .chase-dot:nth-child(6):before {
            -webkit-animation-delay: -.6s;
            animation-delay: -.6s
        }

@-webkit-keyframes spinner-chase {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spinner-chase {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes chase-dot {
    100%, 80% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes chase-dot {
    100%, 80% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes chase-dot-before {
    50% {
        -webkit-transform: scale(.4);
        transform: scale(.4)
    }

    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes chase-dot-before {
    50% {
        -webkit-transform: scale(.4);
        transform: scale(.4)
    }

    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

f_elcard
.form-check {
    position: relative;
    text-align: left;
}

.form-check.rd {
    margin-right: 12px;
}

    .form-check.rd:last-child {
        margin-right: 0;
    }

.form-check-right {
    padding-left: 0;
    display: inline-block;
    padding-right: 1.5em
}

    .form-check-right .form-check-input {
        float: right;
        margin-left: 0;
        margin-right: -1.5em
    }

    .form-check-right .form-check-label {
        display: block
    }

.form-checkbox-outline .form-check-input {
    border-width: 2px;
    background-color: #fff
}

    .form-checkbox-outline .form-check-input:active {
        -webkit-filter: none;
        filter: none
    }

    .form-checkbox-outline .form-check-input:checked {
        background-color: #fff !important
    }

        .form-checkbox-outline .form-check-input:checked[type=checkbox] {
            background-image: none
        }

        .form-checkbox-outline .form-check-input:checked:after {
            position: absolute;
            content: '\F012C';
            font-family: "Material Design Icons";
            top: -4px !important;
            left: 1px;
            font-size: 16px;
            color: #343a40
        }

.form-radio-outline .form-check-input {
    background-color: #fff;
    position: relative
}

    .form-radio-outline .form-check-input:active {
        -webkit-filter: none;
        filter: none
    }

    .form-radio-outline .form-check-input:checked {
        background-color: #fff !important
    }

        .form-radio-outline .form-check-input:checked[type=checkbox] {
            background-image: none
        }

        .form-radio-outline .form-check-input:checked:after {
            position: absolute;
            content: '';
            top: 3px !important;
            left: 3px;
            width: 5px;
            height: 5px;
            border-radius: 50%
        }

.form-check {
    margin-bottom: 0
}

.l_tbl.table-responsive tr:hover {
    background-color: #f7f7f7;
}

.form-check-input,
.form-check-label {
    cursor: pointer;
    margin-bottom: 0
}

.form-switch-md {
    padding-left: 2.5rem;
    min-height: 24px;
    line-height: 24px
}

    .form-switch-md .form-check-input {
        width: 40px;
        height: 20px;
        left: -.5rem;
        position: relative
    }

    .form-switch-md .form-check-label {
        vertical-align: middle
    }

.form-switch-lg {
    padding-left: 2.75rem;
    min-height: 28px;
    line-height: 28px
}

    .form-switch-lg .form-check-input {
        width: 48px;
        height: 24px;
        left: -.75rem;
        position: relative
    }

.input-group-text {
    margin-bottom: 0
}

.mini-stats-wid .mini-stat-icon {
    overflow: hidden;
    position: relative
}

    .mini-stats-wid .mini-stat-icon:after,
    .mini-stats-wid .mini-stat-icon:before {
        content: "";
        position: absolute;
        width: 8px;
        height: 54px;
        background-color: rgba(255, 255, 255, .1);
        left: 16px;
        -webkit-transform: rotate(32deg);
        transform: rotate(32deg);
        top: -5px;
        -webkit-transition: all .4s;
        transition: all .4s
    }

    .mini-stats-wid .mini-stat-icon::after {
        left: -12px;
        width: 12px;
        -webkit-transition: all .2s;
        transition: all .2s
    }

.mini-stats-wid:hover .mini-stat-icon::after {
    left: 60px
}

.mfp-popup-form {
    max-width: 1140px
}

.mfp-close {
    color: #343a40 !important
}

.bs-example-modal {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    display: block
}

.icon-demo-content {
    text-align: center;
    color: #adb5bd
}

    .icon-demo-content i {
        display: block;
        font-size: 24px;
        margin-bottom: 16px;
        color: #74788d;
        -webkit-transition: all .4s;
        transition: all .4s
    }

    .icon-demo-content .col-lg-4 {
        margin-top: 24px
    }

        .icon-demo-content .col-lg-4:hover i {
            color: #50A5F1;
            -webkit-transform: scale(1.5);
            transform: scale(1.5)
        }

.grid-structure .grid-container {
    background-color: #f8f9fa;
    margin-top: 10px;
    font-size: .8rem;
    font-weight: 500;
    padding: 10px 20px
}

.card-radio {
    background-color: #fff;
    border: 2px solid #f6f6f6;
    border-radius: .25rem;
    padding: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

    .card-radio:hover {
        cursor: pointer
    }

.card-radio-label {
    display: block
}

.card-radio-input {
    display: none
}

    .card-radio-input:checked + .card-radio {
        border-color: #50A5F1 !important
    }

.navs-carousel .owl-nav {
    margin-top: 16px
}

    .navs-carousel .owl-nav button {
        width: 30px;
        height: 30px;
        line-height: 28px !important;
        font-size: 20px !important;
        border-radius: 50% !important;
        background-color: rgba(85, 110, 230, .25) !important;
        color: #50A5F1 !important;
        margin: 4px 8px !important
    }

@media print {
    .footer,
    .navbar-header,
    .page-title-box,
    .right-bar,
    .vertical-menu {
        display: none !important
    }

    .card-body,
    .main-content,
    .page-content,
    .right-bar,
    body {
        padding: 0;
        margin: 0
    }

    .card {
        border: 0
    }
}

[data-simplebar] {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit
}

.simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 0
}

.simplebar-offset {
    direction: inherit !important;
    -webkit-box-sizing: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0 !important;
    bottom: 0;
    right: 0 !important;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch
}

.simplebar-content-wrapper {
    direction: inherit;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    visibility: visible;
    overflow: auto;
    max-width: 100%;
    max-height: 100%;
    scrollbar-width: none;
    padding: 0 !important
}

    .simplebar-content-wrapper::-webkit-scrollbar,
    .simplebar-hide-scrollbar::-webkit-scrollbar {
        display: none
    }

.simplebar-content:after,
.simplebar-content:before {
    content: ' ';
    display: table
}

.simplebar-placeholder {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none
}

.simplebar-height-auto-observer-wrapper {
    -webkit-box-sizing: inherit !important;
    box-sizing: inherit !important;
    height: 100%;
    width: 100%;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    -webkit-box-flex: inherit;
    -ms-flex-positive: inherit;
    flex-grow: inherit;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0
}

.simplebar-height-auto-observer {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 1000%;
    width: 1000%;
    min-height: 1px;
    min-width: 1px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden
}

[data-simplebar].simplebar-dragging .simplebar-content {
    pointer-events: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

[data-simplebar].simplebar-dragging .simplebar-track {
    pointer-events: all
}

.simplebar-scrollbar {
    position: absolute;
    right: 2px;
    width: 4px;
    min-height: 10px
}

    .simplebar-scrollbar:before {
        position: absolute;
        content: '';
        background: #a2adb7;
        border-radius: 7px;
        left: 0;
        right: 0;
        opacity: 0;
        -webkit-transition: opacity .2s linear;
        transition: opacity .2s linear
    }

    .simplebar-scrollbar.simplebar-visible:before {
        opacity: .5;
        -webkit-transition: opacity 0s linear;
        transition: opacity 0s linear
    }

.simplebar-track.simplebar-vertical {
    top: 0;
    width: 11px
}

    .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
        top: 2px;
        bottom: 2px
    }

.simplebar-track.simplebar-horizontal {
    left: 0;
    height: 11px
}

    .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
        height: 100%;
        left: 2px;
        right: 2px
    }

    .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
        right: auto;
        left: 0;
        top: 2px;
        height: 7px;
        min-height: 0;
        min-width: 10px;
        width: auto
    }

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0
}

.hs-dummy-scrollbar-size {
    direction: rtl;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    height: 500px;
    width: 500px;
    overflow-y: hidden;
    overflow-x: scroll
}

.simplebar-hide-scrollbar {
    position: fixed;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    scrollbar-width: none
}

.custom-scroll {
    height: 100%
}

.lnb-calendars-item {
    display: inline-block;
    margin-right: 7px
}

input[type=checkbox].tui-full-calendar-checkbox-round + span {
    margin-right: 4px;
    margin-left: 0
}


/* form elements */

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #ccc;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: normal;
    height: 36.53px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    display:flex;
    align-items:center;
}

    .nice-select:hover {
        border-color: #dbdbdb;
    }

    .nice-select:active,
    .nice-select.open,
    .nice-select:focus {
        border-color: #50A5F1
    }

    .nice-select:after {
        border-bottom: 2px solid #999;
        border-right: 2px solid #999;
        content: '';
        display: block;
        height: 5px;
        margin-top: -4px;
        pointer-events: none;
        position: absolute;
        right: 12px;
        top: 50%;
        -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
        transform-origin: 66% 66%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        width: 5px;
    }

    .nice-select.open:after {
        -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
        border-color: #50A5F1;
    }

    .nice-select.open .list {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }

    .nice-select.disabled {
        border-color: #ededed;
        color: #999;
        pointer-events: none;
    }

        .nice-select.disabled:after {
            border-color: #cccccc;
        }

    .nice-select.wide {
        width: 100%;
    }

        .nice-select.wide .list {
            left: 0 !important;
            right: 0 !important;
        }

    .nice-select.right {
        float: right;
    }

        .nice-select.right .list {
            left: auto;
            right: 0;
        }

    .nice-select.small {
        font-size: 12px;
        height: 36px;
        line-height: 34px;
    }

        .nice-select.small:after {
            height: 4px;
            width: 4px;
        }

        .nice-select.small .option {
            line-height: 34px;
            min-height: 34px;
        }

    .nice-select .list {
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
        box-sizing: border-box;
        margin-top: 4px;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        pointer-events: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
        transform: scale(0.75) translateY(-21px);
        -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
        z-index: 9;
    }

        .nice-select .list:hover .option:not(:hover) {
            background-color: transparent !important;
        }

    .nice-select .option {
        cursor: pointer;
        font-weight: 400;
        line-height: 40px;
        list-style: none;
        min-height: 40px;
        outline: none;
        padding-left: 18px;
        padding-right: 29px;
        text-align: left;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

        .nice-select .option:hover,
        .nice-select .option.focus,
        .nice-select .option.selected.focus {
            background-color: #f6f6f6;
        }

        .nice-select .option.selected {
            font-weight: bold;
        }

        .nice-select .option.disabled {
            background-color: transparent;
            color: #999;
            cursor: default;
        }

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

.insDcol {
    width: 49.4%;
}

.mgLink {
    position: relative;
    background-color: #f5f5f7;
    color: var(--light-black);
    padding: 7px 45px 7px 45px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: block;
}

    .mgLink:hover,
    .sLink:hover {
        color: var(--primary);
    }

    .mgLink:before {
        content: '';
        background-image: url(/assets/img/icon/pdf.svg);
        background-size: 100%;
        height: 24px;
        width: 24px;
        position: absolute;
        left: 10px;
        top: 5px;
    }

    .mgLink:after {
        content: '';
        background-image: url(/assets/img/icon/ext.svg);
        background-size: 100%;
        height: 18px;
        width: 18px;
        position: absolute;
        right: 10px;
        top: 8px;
    }

@media all and (max-width: 768px) {
    .inSDown {
        padding-bottom: 50px;
    }

    .insDcol {
        width: 100%;
    }

    .mgLink {
        font-size: 12px;
        padding: 8px 30px 8px 33px;
    }

        .mgLink:before {
            height: 21px;
            width: 21px;
            left: 6px;
        }

        .mgLink:after {
            height: 15px;
            width: 15px;
            right: 6px;
        }
}
.field-group {
    background-color: #f5f5f7;
    padding: 10px;
}

    .field-group span {
        display: block;
    }

    .field-group a {
        font-size: 12px;
    }
.skills-box {
    background-color: #FFF0DF;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.add-skill {
    border: none;
    background-color: #79C151;
    color: white;
    padding: 10px;
    border-radius: 6px;
    margin-left: 10px;
    cursor: pointer;
}

.added-skills {
    background-color: #FFFAF1;
    margin-top: 15px;
    border-radius: 6px;
    padding: 20px;
}

    .added-skills .skill {
        background-color: white;
        padding: 10px;
        border-radius: 6px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: 0.3s;
        border: 1px solid #ccc;
    }

        .added-skills .skill:not(:last-child) {
            margin-bottom: 15px;
        }

        .added-skills .skill:hover {
            background-color: #f7f7f7;
        }

        .added-skills .skill::after {
            position: absolute;
            content: "";
        }

        .added-skills .skill span {
            font-weight: bold;
            font-size: 10px;
            background-color: red;
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            cursor: pointer;
        }
.metaCard {
    padding: 1rem;
    border-radius: 4px;
    background-color: #fff9f0;
}
.metaCard h6{
    color: #f9a31a;
}


.overlayl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;

}
.overlayl.loaded{
    display: none;
}

    .overlayl .overlayDoor:before, .overlayl .overlayDoor:after {
        content: "";
        position: absolute;
        width: 50%;
        height: 100%;
        background: rgba(0, 0, 0, .6);
        transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
        transition-delay: 0.8s;
    }

    .overlayl .overlayDoor:before {
        left: 0;
    }

    .overlayl .overlayDoor:after {
        right: 0;
    }

    .overlayl.loaded .overlayDoor:before {
        left: -50%;
    }

    .overlayl.loaded .overlayDoor:after {
        right: -50%;
    }

    .overlayl.loaded .overlayContent {
        opacity: 0;
        margin-top: -15px;
    }

    .overlayl .overlayContent {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    }

.loaderl {
    width: 64px;
    height: 64px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loaderl .innerl {
        width: 32px;
        height: 32px;
        border: 3px solid transparent;
        border-top: 3px solid #fff;
        border-radius: 50%;
        -webkit-animation: spinInner 1s linear infinite;
        animation: spinInner 1s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}
/*model css*/
.passModal .modal-dialog {
    max-width: 60% !important;
}

.passModal .modal-body {
    padding: 0;
    border-radius: 20px;
}

.mdlft {
    background-color: #ED1B22;
    border-top-left-radius: 19px;
    border-bottom-left-radius: 19px;
}

.mdlftTp {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.passModal .modal-content {
    padding: 0.1rem 0.8rem;
    border-radius: 20px;
}

.mdryt .form-control, .mdryt .btn {
    font-size: 14px;
}

.mdryt {
    padding-right: 45px !important;
    padding-left: 45px !important;
    background-color: #f5f5f5;
    border-top-right-radius: 19px;
    border-bottom-right-radius: 19px;
}

.mdCn {
    width: 100%;
    max-width: 400px;
    margin: auto;
}
.mdCn small{
    display: block;
    color: #fc0000;
}
    .mdCn sup {
        color: #fc0000;
    }
.cDivider {
    height: 1px;
    background-color: #dee2e6;
    margin: 1rem 0;
}
.clbtn {
    border: unset;
    background-color: unset;
    position: absolute;
    right: 0;
    top: -10%;
    font-size: 30px;
    color: #DBDBDE;
}

    .clbtn:hover {
        color: white;
    }

.passVector {
    display: block;
    width: 60%;
    object-fit: contain;
}
@media all and (max-width:768px) {
    .mdlft {
        display: none;
    }

    .mdryt {
        width: 100%;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .mdryt {
        padding-right: 25px !important;
        padding-left: 25px !important;
    }
}
@media all and (max-width:576px) {
    .mdryt {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
}
