@import url("fonts.css");

html {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

/*--font face end--*/
body {
    background-color: #F5F0EC;
    font-family: "Mabry Pro";
    font-size: 14px;
    color: #000;
}

.container-fluid {
    background-color: #F5F0EC;
}

:root {
    --primarycolor: #ECE0D2;
    --secondarycolor: #1B4D47;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
    color: #0A0A0A;
}

.login-wrapper {
    min-height: 100vh;
}

.login-left {
    background: #F5F0EC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    max-width: 460px;
    padding: 20px;
    background: #F5F0EC;
    width: 100%;
}

    .login-container h4 {
        color: #333333;
        font-size: 40px;
        font-weight: 300;
        margin: 0 0 10px;
    }

input.icon-holder {
    padding-left: 45px;
}

input.icon-holder-right {
    padding-right: 35px;
}

.form-control.icon-holder-right + .input-icon-right {
    position: absolute;
    top: 8px;
    right: 10px;
}

.input-icon {
    position: absolute;
    left: 13px;
    top: 5px;
}

.form-control-lg + .input-icon, .form-control-lg ~ .password-eye-icon {
    top: 14px;
}

.form-check {
    padding-left: 30px;
}

    .form-check .form-check-label {
        padding-top: 4px;
        font-size: 13px;
    }

    .form-check .form-check-input {
        margin-left: -30px;
    }

.form-check-input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border-color: var(--primarycolor);
}

.form-check-input[type="radio"] {
    width: 20px;
    height: 20px;
}

.form-check-input:checked {
    background-color: var(--primarycolor);
    border-color: var(--primarycolor);
}

.password-eye-icon {
    position: absolute;
    right: 13px;
    top: 13px;
}

.form-control, .form-select {
    border-color: #D4D4D4;
    font-size: 14px;
    height: 45px;
    border-radius: 10px;
}

    .form-select.form-select-sm {
        height: 38px;
    }


.page-title-row {
    display: flex;
    align-items: center;
    margin: 17px 0;
}

    .page-title-row h5 {
        font-size: 26px;
        color: #0A0A0A;
        font-weight: 400;
    }

    .page-title-row img.backarrow {
        margin-top: -5px;
    }

.btn.btn-lg {
    height: 50px;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.btn.btn-sm {
    font-size: 13px;
}

.btn.btn-primary.disabled {
    opacity: .5;
    background: #56C1C8;
    border-color: #56C1C8;
}

.btn:focus-visible {
    background: #1B4D47;
    border-color: #1B4D47;
    outline: 0;
    box-shadow: none;
}

.btn-primary {
    background: var(--primarycolor);
    border-color: var(--primarycolor);
}

.btn-light {
    background: #F6F2F5;
    border-color: #F6F2F5;
    color: #B1B1B1;
}

.btn.btn-secondary:hover, .btn.btn-secondary:active {
    background: #8EECCA !important;
    border-color: #8EECCA !important;
}

.btn-outline-danger {
    border-color: #F14336;
    color: #F14336;
}

.btn-outline-light {
    background: #F6F2F5;
    border-color: #F6F2F5;
    color: #B1B1B1;
}

    .btn-outline-light:hover {
        background: #56C1C8;
        border-color: #56C1C8;
        color: #fff;
    }

.btn.btn-outline-danger:hover {
    color: #fff;
    border-color: #F14336;
    background-color: #F14336;
}


.text-link {
    color: var(--secondarycolor)
}

.form-label {
    color: #3E3E3E;
    font-size: 14px;
    font-weight: 500;
}

    .form-label sup {
        color: red;
    }

.tp-search {
    position: relative;
    margin: 0 0 0 20px;
    max-width: 330px;
    width: 100%;
}

    .tp-search input {
        border: solid 1px #D4D4D4;
        border-radius: 10px;
        padding: 10px 10px 10px 40px;
        width: 100%;
    }

    .tp-search .searchicon {
        position: absolute;
        left: 13px;
        top: 10px;
    }
/*--sidebar--*/
.closemenu-btn {
    display: none;
}

.sidebar {
    z-index: 9999;
    overflow: auto;
    position: fixed;
    width: 100%;
    max-width: 270px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primarycolor);
    padding: 23px 20px;
    color: #fff;
}

.menubar-holder {
    display: flex;
    flex-flow: column;
    min-height: calc(100vh - 224px);
    overflow: auto;
    justify-content: space-between;
}

.menubar {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .menubar li {
        margin-bottom: 2px;
    }

        .menubar li > a {
            border-radius: 25px;
            padding: 25px;
        }

        .menubar li > a {
            display: flex;
            align-items: center;
            color: #000;
            font-size: 16px;
            text-decoration: none;
            height: 55px;
            font-weight: 300;
            position: relative;
            z-index: 10;
        }

            .menubar li > a img {
                margin-right: 10px;
            }

        .menubar li.active > a img {
            filter: invert(100%) brightness(100%);
        }

        .menubar li > a:hover,
        .menubar li a {
            color: #000;
            background: var(--primarycolor);
        }

        .menubar li.active a {
            background: var(--secondarycolor);
            color: #F5F0EC;
        }

        .menubar li > a.has-submenu::after {
            content: "";
            position: absolute;
            right: 10px;
            top: 20px;
            width: 12px;
            height: 12px;
            background: url(../images/arrow-right-menu.svg) 0 0 no-repeat;
            transition: all .2s ease;
        }

        .menubar li > a.has-submenu.active::after {
            transform: rotate(90deg);
        }

.has-submenu.active + .submenu {
    display: block;
}

.submenu {
    list-style: none;
    padding: 15px;
    background: #3C3C3C;
    position: relative;
    z-index: 8;
    top: -5px;
    border-radius: 0 0 8px 8px;
    display: none;
}
    /* .submenu li{
  
} */
    .submenu li a {
        padding: 5px 5px 5px 15px;
        border-radius: 0;
        height: auto;
        font-size: 14px;
        position: relative;
    }

        .submenu li a.active {
            background: transparent;
            color: var(--secondarycolor);
        }

        .submenu li a:hover {
            background: transparent;
            color: var(--secondarycolor);
        }

            .submenu li a:hover::after, .submenu li a.active::after {
                background: #D87EBD;
            }

        .submenu li a::after {
            content: "";
            position: absolute;
            left: 0;
            top: 14px;
            width: 5px;
            height: 5px;
            border-radius: 100%;
            background: #D9D9D9;
        }

.sildebarlogo .large-logo {
    margin: 30px 0 40px;
}

.sildebarlogo .small-logo {
    display: none;
    margin: 30px auto 40px;
}
/*--sidebar--*/


.content-body {
    padding: 30px 30px 20px 80px;
}

.footer {
    text-align: center;
    border-top: solid 1px #E7E7E7;
    padding: 10px 0;
    font-size: 14px;
    color: #969696;
}

/*--dashboard css--*/
.dash-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    font-size: 32px;
    align-items: center;
    font-weight: 600;
    margin-bottom: 20px;
}

    .dash-item a {
        display: flex;
        width: 100%;
        text-decoration: none;
        align-items: center;
    }

        .dash-item a p {
            font-size: 30px;
            color: #0A0A0A;
            font-weight: 300;
        }

    .dash-item .dash-item-icon {
        border-radius: 10px;
        background: #F9F9F9;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 77px;
        height: 77px;
        margin-right: 10px;
    }

    .dash-item h6 {
        font-size: 12px;
        font-weight: 400;
        color: #32475C;
        margin: 0;
    }

.innerbody {
    padding-left: 270px;
    background: #F5F0EC;
    transition: all .3s ease-in;
}

.user-set-menu {
    /* background: #F8EBF4; */
    color: #000;
    border-radius: 27px;
    padding: 3px 10px 3px 3px;
    margin-right: 10px;
    margin-left: auto;
}

    .user-set-menu .dropdown-toggle {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

        .user-set-menu .dropdown-toggle small {
            font-size: 10px;
            color: #4D4D4D;
        }

        .user-set-menu .dropdown-toggle h6 {
            font-size: 16px;
            margin: 0;
        }

        .user-set-menu .dropdown-toggle small {
            font-size: 10px;
        }

    .user-set-menu .dropdown-menu {
        font-size: 15px;
        color: #000;
        box-shadow: 0 0 3px rgba(0,0,0,.2);
    }

        .user-set-menu .dropdown-menu .dropdown-item {
            color: #000;
        }

    .user-set-menu a {
        color: var(--secondarycolor);
    }

.pate-content-wrapper {
    min-height: calc(100vh - 122px);
    padding: 0 5px
}
/*--dashboard css--*/

.white-body-card {
    background: #F5F0EC;
    padding: 20px;
    min-height: calc(100vh - 230px);
    margin-bottom: 20px;
    border-radius: 10px;
}

.table > thead {
    vertical-align: middle;
}

.table thead th {
    background: #333333;
    color: #ECF0F5;
    font-weight: 500;
    font-size: 12px;
}

.table {
    border: solid 1px #e4cdb3;
    color: #333333;
    font-size: 13px;
    font-weight: 300;
}

.table-result {
    display: flex;
    align-items: center;
}

    .table-result p {
        font-size: 13px;
        color: #535353;
    }

.pagination .page-link {
    color: #293854;
}

.pagination .page-item.active .page-link {
    background: var(--secondarycolor);
    border-color: var(--secondarycolor);
    color: #fff;
}

.pagination .page-link img {
    margin-top: -3px;
}

.header {
    background: #F5F0EC;
    border-bottom: var(--primarycolor);
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px
}

.headerserarch {
    position: relative;
    width: 260px;
}

    .headerserarch .inputicon {
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .headerserarch .inputicon-rt {
        position: absolute;
        top: 6px;
        right: 14px;
        cursor: pointer;
    }

    .headerserarch .form-control {
        padding-left: 35px;
        padding-right: 35px;
    }

.filterby {
    display: flex;
    font-size: 16px;
    align-items: center;
}

    .filterby label {
        white-space: nowrap;
        margin-right: 10px;
    }

.card {
    border-radius: 10px;
}

.text-light {
    color: #B9B8B8 !important;
}

.label-heading {
    font-size: 14px;
}

.uploadbtn {
    position: relative;
}

    .uploadbtn input {
        visibility: hidden;
        position: absolute;
    }

    .uploadbtn label {
        border: solid 1px #E0E0E0;
        font-size: 10px;
        color: #77797D;
        font-weight: 500;
        border-radius: 10px;
        text-align: center;
        max-width: 250px;
        width: 100%;
        padding: 20px 10px;
    }

        .uploadbtn label p {
            font-size: 12px;
            color: #000;
        }

.m-card-min-hight {
    min-height: calc(100vh - 210px);
}


.profile-srt-info {
    display: flex;
    font-size: 12px;
    color: #A9A9A9;
}

    .profile-srt-info h6 {
        font-size: 15px;
    }


.backdrop-div {
    background: rgba(0,0,0,.5);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


.dropdown-item.active, .dropdown-item:active {
    background: var(--primarycolor);
}

.uploaded img {
    margin-right: 0;
}

.dataTables_wrapper .dataTables_paginate {
    border-radius: 8px;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button.current,
    .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        border: 0;
        background: var(--secondarycolor);
        color:#fff!important
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        border: 0;
        background: var(--secondarycolor);
    }
        .dataTables_wrapper .dataTables_paginate .paginate_button:hover img {
            filter:invert(1) brightness(100);
        }
    .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover img {
        filter: invert(0) brightness(0);
    }

.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--primarycolor) !important;
}

.sp {
    color: #E77F4B;
}


.form-check-input:checked {
    background-color: #1B4D47;
    border-color: #1B4D47;
}

.form-check-input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    border-color: #1B4D47;
}

.btn {
    background-color: #1B4D47;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 25px;
    padding: 12px 25px;
    color: #ffffff;
    font-weight: 500;
}

    .btn:hover {
        background: #1B4D47;
        border-color: #1B4D47;
        color: #fff;
    }

    .btn.active, .btn:first-child:active, :not(.btn-check) + .btn:active {
        background: #1B4D47;
        border-color: #1B4D47;
        color: #fff;
    }

.btn-ba {
    background-color: #F5F0EC;
    color: #000;
}


textarea.form-control {
    min-height: 250px;
}

.btn-ca {
    background-color: #C9A453;
    color: white;
    height: 40px;
    width: 101px;
    font-size: 15px;
    line-height: 1.4;
    border: none;
    border-radius: 25px;
    /* padding: 15px 40px; */
    color: #ffffff;
    font-weight: 500;
}

.btn-sa {
    background-color: var(--secondarycolor);
    border: var(--secondarycolor);
    color: white;
    height: 40px;
    width: 101px;
    font-size: 15px;
    line-height: 1.4;
    border: none;
    border-radius: 25px;
    /* padding: 15px 40px; */
    color: #ffffff;
    font-weight: 500;
}

    .btn-sa:hover {
        background-color: #337c74;
        border: var(--secondarycolor);
        color: #000;
    }

.btn-ca:hover {
    background: #e7c680;
    border-color: #C9A453;
    color: #000;
}

.h6, h6 {
    color: #333333;
    font-size: 22px;
    font-weight: 300;
}

.card {
    --bs-card-bg: #F5F0EC;
}

.form-label {
    color: #333333;
    font-size: 14px;
    font-weight: 300;
}

.required:after {
    content: " *";
    color: red;
}

.login-container-label {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}





.login-container .btn {
    background-color: #1B4D47;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 25px;
    padding: 12px 50px;
    color: #ffffff;
    font-weight: 500;
}

.form-label {
    margin-bottom: .2rem;
}

.input-with-icon {
    display: block;
    width: 100%;
    position: relative;
}

    .input-with-icon input.form-control {
        padding-left: 48px;
    }

.input-with-icon-rt {
    position: relative;
}

    .input-with-icon-rt input.form-control {
        padding-right: 48px;
    }

.input-img-rt {
    position: absolute;
    right: 10px;
    top: 11px;
}

.input-with-icon-rt .input-icon-card {
    position: absolute;
    right: 14px;
    top: 12px;
}

.input-icon {
    position: absolute;
    left: 13px;
    top: 8px;
}

.input-icon-rt {
    position: absolute;
    right: 13px;
    top: 9px;
    cursor: pointer
}

#ChangePasswordFrm .input-icon-rt {
    top: 9px
}

.form-control, .form-select {
    border-color: #ECE0D2;
    font-size: 14px;
    border-radius: 10px;
}

.dash-item-icon h6 {
    padding-bottom: 10px;
}

.text-danger {
    color: #dc3545 !important;
}

.form-control {
    display: block;
    font-weight: 100;
    line-height: 31px;
    color: #333;
}
/* .log span {
    color: #333333;
    font-size: 18px;
    padding-left: 10px;
    font-weight: 400;
}
.log a{
    text-decoration: none;
} */

/*.blog-btn{
    background-color: #1B4D47;
    border: #1B4D47;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 45px;
    height: 40px;*/
/* padding: 15px 40px; */
/*color: #ffffff;
    font-weight: 500;
}
.blog-btn:hover{
    background-color: #337c74;
    color: #000;
    border: #1B4D47;

}*/

.custom-upload {
    display: flex;
    align-items: center;
    border: 1px solid #ECE0D2;
    border-radius: 4px;
    background-color: #ffffff;
    max-width: 100%;
    height: 46px;
    border-radius: 10px;
    padding: 0 10px;
}

    .custom-upload label {
        flex: 1;
        font-size: 16px;
        cursor: pointer;
        color: #6c757d;
    }

    .custom-upload input[type="file"] {
        display: none;
    }

    .custom-upload label::after {
        content: "Browse...";
        color: #000;
        font-weight: 400;
        font-size: 16px;
    }

    .custom-upload span {
        font-size: 12px;
        color: var(--primarycolor);
    }

.form-label p {
    margin-bottom: 10px;
}

.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: var(--bs-pagination-color);
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid #F5F0EC;
}

.spa-max {
    color: #A08D7C;
}

.sta {
    content: " *";
    color: red;
}

.height-normal {
    height: auto;
}

.dataTables_length {
    margin-top: 6px;
    margin-left: 10px;
}

.ck.ck-editor__main .ck-content.ck-editor__editable {
    height: 240px;
}

.password-cont {
    max-width: 460px;
    width: 100%;
    padding: 0 30px;
    margin: auto;
}

/*--new css17/12/2024--*/

.form-switch .form-check-input[type="checkbox"] {
    width: 32px;
    margin-left: -39px;
}

.form-check.form-switch {
    padding-left: 40px;
}

.filter-date {
    display: flex;
    align-items: center;
    margin: 0 0 15px;
}

.date-input-wd {
    width: 150px;
}

.fnt-16 {
    font-size: 16px;
}

.fnt-20 {
    font-size: 20px;
}

.data-det-col {
    font-size: 16px;
}

    .data-det-col label {
        font-weight: 600;
    }
/*--mini-btn approve-btn---*/
.mini-btn {
    border-radius: 4px;
    background: #ccc;
    font-size: 11px;
    padding: 5px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.approve-btn {
    background: #3C9D40;
    cursor:pointer;
}

.decline-btn {
    background: #F43939;
    cursor: pointer;
}



.table.dataTable thead > tr > th.sorting:after {
    right:9px!important
}

 
table.dataTable thead > tr > th.sorting:before {   
    opacity: 0.5;
}

table.dataTable thead > tr > th.sorting:after {    
    opacity: 0.5;
}
 
table.dataTable thead > tr > th.sorting_asc:before {  
    opacity: 1;
}

table.dataTable thead > tr > th.sorting_asc:after {
     
    opacity: 0.3;
}
 
table.dataTable thead > tr > th.sorting_desc:before {     
    opacity: 0.3;
}

table.dataTable thead > tr > th.sorting_desc:after {   
    opacity: 1;
}


.copyrt-text {
    font-size: 28px;
    line-height: 1.1;
    vertical-align: middle;
}