@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1270px;
    }
    }
    
    html{
        --primary-color: #477923;
        --second-color: #ccb510;
    }
    
    body{
        font-family: 'Nunito Sans', sans-serif;
    }
    /* login page */
    .login-form.thanku {
        text-align: center;
    }
    .login-form.thanku i {
        display: block;
        width: 100px;
        height: 100px;
        margin: auto;
        font-size: 40px;
        border: solid 1px #08b108;
        color: #08b108;
        border-radius: 50%;
        padding-top: 26px;
    }
    .login-form.thanku h4 {
        font-size: 32px;
        color: #08b108;
        margin: 14px 0px;
    }
    .login-form.thanku p {
        padding: 0px 20px;
        line-height: 30px;
        color: #000000c2;
    }
    .site-button {
        background-color: var(--primary-color);
        color: #fff;
        display: inline-block;
        padding: 10px 42px;
        border-radius: 3px;
        margin-top: 20px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-decoration: none !important;
        cursor: pointer;
        transition: 0.5s;
        font-weight: 700;
        text-transform: uppercase;
    }
    .site-button:after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 0%;
        background-color: var(--second-color);
        left: 0;
        z-index: -1;
        transition: 0.5s;
    }
    .site-button:hover {
        background-color: var(--second-color);
        color: #000;
    }
    .site-button:hover:after {
        top: 0;
        bottom: auto;
        height: 100%;
    }
    /*end thanku page css*/
    body.login-register {
        padding: 100px 0px;
        background-color: #00000012;
    }
    body.login-register:after {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #000000b0;
        z-index: -1;
    }
    .login-form {
        background-color: #fff;
        padding: 22px;
        border-radius: 5px;
        width: 85%;
        margin: auto;
        box-shadow: 0px 0px 14px -10px;
    }
    .form-head {
        text-align: center;
        padding: 30px 0px;
    }
    .form-head img {
        width: 200px;
        filter: brightness(0.6);
    }
    .login-form input {
        height: fit-content;
        padding: 12px 10px;
        box-shadow: unset !important;
    }
    .login-form input:focus {
        border-color: var(--primary-color);
    }
    .login-form button {
        padding: 12px 20px;
        width: 100%;
        border: none;
    }
    p.rember a {
        float: right;
        color: var(--primary-color);
    }
    span.text.text-danger a {
        display: inline-block;
        padding: 4px 7px 3px;
        margin-top: 10px;
        background-color: #3ba647;
        color: #fff;
        border-radius: 2px;
        font-size: 12px;
        text-decoration: none;
    }
    i#show_password {
        position: absolute;
        right: 10px;
        margin-top: -34px;
        color: var(--primary-color);
        cursor: pointer;
    }
    .form-group {
        position: relative;
    }
    .payments{
        display:none;
    }
    /* end login page */
    
    .btn-primary {
        background-color: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
    }
    main.login-main {
        margin: 0px !important;
    }
    
    
    @media (max-width:767px){
        .header-menu {
            text-align: left;
            overflow: auto;
            height: 100%;
            padding: 20px 0px;
            overflow-x: hidden;
        }
        .col-md-9.header_nav {
            position: fixed;
            right: -100%;
            top: 0;
            background-color: #fff;
            height: 100%;
            z-index: 99999;
            width: 90%;
            transition: 0.5s;
        }
        .header-menu li {
            display: block;
        }
        .header-menu li a {
            display: inline-block;
            padding: 20px 25px;
        }
        li.has-child:after {
            top: 15px;
            right: 10px;
            border: solid 1px var(--primary-color);
            padding: 2px 9px;
        }
        ul.sub-menu {
            width: 100%;
            position: unset;
            transform: unset  !important;
            transition: 0.5s;
            max-height: 0px;
            overflow: hidden;
            margin-bottom: 0px !important;
            box-shadow: unset !important;
            margin-left: 20px;
            /* border-left: solid; */
        }
        i#mobile_nav_close {
            display: block;
            color: #fff;
            position: absolute;
            left: -30px;
            top: 20px;
            background-color: #9b0c0c;
            width: 30px;
            height: 30px;
            text-align: center;
            border-radius: 10px 0px 0px 10px;
            padding-top: 5px;
        }
        .logo {
            padding: 20px 0px;
        }
        i#mobile_nav_open {
            display: block;
            float: right;
            font-size: 32px;
            margin-top: 12px;
            color: var(--primary-color);
        }
        .header_nav.show {
            right: 0;
        }
        body:after {
            content: "";
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: #000000bf;
            z-index: 99;
            transition: 0.5s;
            opacity: 0;
            pointer-events: none;
        }
        body.shadow:after {
            opacity: 1;
            pointer-events: all;
        }
        li.button a {
            padding: 10px 40px;
            margin-top: 30px;
        }
        li.show_sub_menu ul {
            max-height: 1500px;
        }
        li.has-child:hover:after {
            transform: unset;
        }
        li.show_sub_menu:after {
            transform: rotate(180deg) !important;
            background-color: var(--primary-color);
            color: #fff;
        }
        .top-user-account {
            text-align: center;
        }
        .top-txt {
            display: none;
        }
        .review-txt {
            width: 100%;
        }
        .footer-box {
            padding-left: 0px !important;
            margin: 10px 0px;
        }
        .copyright-menu, .copyright-txt {
            text-align: center;
            padding: 3px 0px;
            line-height: 30px;
        }
        .about-img {
            margin-bottom: 40px;
        }
        .banner-video {
            padding-top: 60px;
        }
        section.banner {
            height: fit-content !important;
            padding: 70px 0px;
        }
        i#play_video {margin: 0px;}
        .contact-form {
            padding: 20px;
        }
        section.contact-section {
            margin-top: 0px;
        }
        .contact_box {
            padding-top: 40px;
        }
        section.contact-section .container {
            box-shadow: unset;
        }
        .step-flex label {
            width: 100%;
            margin-top: 20px;
        }
        .booking-fields {
            width: 100%;
            margin-top: 20px;
        }
        .exp-imgs img {
            width: 100%;
        }
        p.head-desc {
            width: 90%;
        }
    }
    
    
    /*dashboard css*/
    .dashboard-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #fff;
    width: 220px;
    box-shadow: 0px 0px 14px -10px;
    transition: 0.5s;
    z-index: 999;
}
body {
    background-color: #0000000a;
}
.dashboard-logo img {
    width: 150px;
    filter: brightness(0.4);
}
.dashboard-logo {
    text-align: center;
    height: 52px;
    padding-top: 10px;
}
.side-nav {
    padding-top: 20px;
}
.side-nav li {
    list-style: none;
}
.side-nav a {
    display: block;
    padding: 14px;
    color: #000000d4;
    text-decoration: none;
    transition: 0.5s;
    border-bottom: solid 1px #00000012;
}
.side-nav a i {
    float: right;
    font-size: 22px;
}
.side-nav a:hover, .side-nav a.active, li.active a {
    background-color: var(--primary-color);
    color: #fff;
}
ul.sub-menu a {
    color: #000;
}
.dashboard-header {
    margin-left: 220px;
    background-color: #fff;
    height: 52px;
}
.dashboard-search input {
    width: 100%;
    padding: 5px 10px;
    border-radius: 50px;
    border: solid 1px #00000024;
    outline: none;
}
.dashboard-search {
    position: relative;
    padding-top: 7px;
}
.dashboard-search button {
    position: absolute;
    right: 10px;
    border: none;
    background: none;
    font-size: 20px;
    color: var(--primary-color);
}
.user-dropdown span {
    display: block;
    text-align: right;
    padding: 14px 0px;
    cursor: pointer;
}
.user-dropdown li {
    position: relative;
    list-style: none;
}
.user-dropdown span i {
    margin-left: 8px;
}
.user-dropdown ul {
    position: absolute;
    right: 0;
    background-color: #fff;
    box-shadow: 0px 0px 14px -10px;
    width: 200px;
    padding: 0px;
    max-height: 0px;
    transition: 0.6s;
    overflow: hidden;
    z-index: 99;
}
.user-dropdown ul a {
    color: #000;
    padding: 10px;
    display: block;
    text-decoration: none;
    transition: 0.5s;
}
.user-dropdown ul a i {
    float: right;
    margin-top: 4px;
}
.user-dropdown ul a:hover {
    background-color: var(--primary-color);
    color:#fff;
}
.user-dropdown li:hover > ul {
    max-height: 400px;
}
ul.sub-menu a {
    background: none !important;
    border: none;
    padding: 10px;
}
ul.sub-menu {
    padding-left: 10px;
    transition: 0.5s;
    margin: 0px;
    border-left: solid var(--primary-color);
    max-height: 0px;
    overflow: hidden;
    background-color: #f5f5f5a1;
}
ul.sub-menu a:hover, ul.sub-menu a.active {
    color: var(--primary-color);
}

li.active ul.sub-menu{
    max-height:600px;

}
main, footer {
    margin-left: 220px;
}
.panel {
    padding: 40px 0px;
}
.panel-body {
    background-color: #fff;
    padding: 25px;
    box-shadow: 0px 0px 12px -10px;
    border-radius: 5px;
}
.panel-head a {
    padding: 10px 20px;
    display: inline-block;
    background-color: #fff;
    margin-right: 10px;
    border-radius: 10px 10px 0px 0px;
    color: #000000cf;
    transition: 0.5s;
}
.panel-head a.active, .panel-head a:hover {
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
.modal-dialog {
    margin-top: 100px;
}
.modal-header h4 {
    font-size: 22px;
}
.modal-header button {color: #fff !important;background-color: var(--primary-color);opacity: 1 !important;padding: 11px 0px 0px !important;height: 28px;width: 28px;border-radius: 2px;margin: -25px -25px 0px 0px !important;line-height: 0px !important;font-size: 20px;display: flex;justify-content: center;}
.input label {
    display: block;
}
.input input, .input select, .input textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: solid 1px #00000029;
    outline: none;
    border-radius: 2px;
}
.admin-button {
    background-color: var(--primary-color);
    border: none;
    outline: none;
    padding: 13px 30px;
    border-radius: 2px;
    color:#fff;
}
.input {
    margin-top: 20px;
}
td.action {
    display: flex;
    column-gap: 10px;
}
.btn {
    box-shadow: unset !important;
}
.panel-body h2 {
    font-size: 23px;
    margin-bottom: 20px;
}
a.paginate_button.current {
    background-color: var(--primary-color) !important;
}
div#DataTables_Table_0_paginate {
    margin-top: 20px;
}
.input {
    position: relative;
}
span.input-text {
    position: absolute;
    left: 0;
    width: 40px;
    height: 45px;
    background-color: var(--primary-color);
    font-size: 23px;
    text-align: center;
    padding-top: 5px;
}
.employee_box.border-right {
    padding-right: 25px;
    border-color: var(--primary-color) !important;
}
.employee_box h4 {
    font-size: 20px;
    color: var(--primary-color);
}
.input-flex {
    display: flex;
    column-gap: 20px;
}
.input.time {
    width: 80%;
}
.input.time input {
    padding: 4px 6px;
}
.input.plus-btn button {
    padding: 6px 12px;
    margin-top: 31px;
}
.employee_box.timing {
    max-height: 420px;
    overflow: auto;
}
.more-time button.admin-button {
    margin-top: 0px;
    background-color: red;
    color: #fff;
}
i#nav_toggle {
    display: none;
}
i#close_sidebar{
    display: none;
}
.input textarea {
    height: 110px;
}
.panel-body td img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid var(--primary-color);
}
.modal-lg .modal-dialog {
    max-width: 100%;
}
.modal-lg {
    margin: auto;
    left: 0;
    right: 0;
}
.modal-lg button.close {
    margin: 0px !important;
}
.input img {
    position: absolute;
    top: 33px;
    right: 0px;
    border-radius: 0px !important;
    width: 50px !important;
    height: 50px !important;
}
.modal-body .input.plus-btn button {
    margin-top: 0px !important;
}

.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 50px auto;
}
.avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
}
.avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
label.site-logo {
    display: block;
    border: dashed 1px #00000042;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    width: fit-content;
    position:relative;
}
label.site-logo input {
    position: absolute;
    opacity: 0;
    left: 0;
}
label.site-logo p {
    font-size: 20px;
    color: var(--primary-color);
}
label.site-logo i {
    font-size: 32px;
}
label.site-logo img {
    position: unset;
    width: 150px !important;
    height: auto !important;
}
label.site-logo .fa-edit {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #0cbd0c;
}
.dashboard-box.panel-body h4 {
    border-bottom: solid 1px #00000014;
    padding-bottom: 17px;
    font-weight: 400;
    color:#fff;
}
.dashboard-box.panel-body i {
    float: right;
    font-size: 20px;
    
}
.dashboard-box.panel-body p {
    margin-bottom: 0px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color:#fff;
}
.dashboard-box.panel-body {background: linear-gradient( 45deg , #44a948 , #fde85f)!important;}
.service_images img {
    position: unset;
}
.service_images {
    display: flex;
    column-gap: 20px;
    margin-bottom: 10px;
    position: relative;
}
.service_image{
    position: relative;
}
p.delete-service-img {
    position: absolute;
    right: 0;
    font-size: 10px;
    width: 15px;
    height: 15px;
    background-color: red;
    color: #fff;
    text-align: center;
    cursor: pointer;
    opacity: 0;
}

.service_image:hover>p {
    opacity: 1;
}
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
button.site-button {
    border: none;
}
label.error {position: absolute;bottom: -34px;font-size: 10px;background-color: red;color: #fff;padding: 2px 11px;right: 0;border-radius: 2px;}
label.error:after {
    content: "";
    position: absolute;
    top: -8px;
    left: 3px;
    border-top: solid 5px #0000;
    border-bottom: solid 5px #0000;
    border-right: solid 6px #f00;
    transform: rotate(90deg);
}
ul.client-list {
    position: absolute;
    left: 0;
    padding: 0;
    width: 200px;
    list-style: none;
    z-index: 9;
    background-color: var(--primary-color);
    display: none;
}
ul.client-list li {
    color: #fff;
    padding: 6px 10px;
    cursor: pointer;
    border-bottom: solid 1px #ffffff17;
    font-size: 11px;
}
ul.nav.nav-tabs a.active {
    background-color: var(--primary-color);
    color: #fff;
}
ul.nav.nav-tabs a {
    color: #000000d9;
    border: none !important;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 4px;
}
ul.nav.nav-tabs {
    border: none;
    padding-left: 13px;
}
select#account option.hide, #account_select {display: none;}
div#account_select label {
    text-transform: capitalize;
}
.hide-form h4 {
    margin: 30px 0px 0px;
    font-size: 20px;
}
.hide-form input, .hide-form select {
    padding: 7px;
    font-size: 14px;
}
.hide-form {
    display: none;
}
select#curr {
    position: absolute;
    right: 0;
    width: 60px;
    top: 0;
    padding: 7px 0px;
}
.hide-form .input-flex .input {
    width: 29%;
}
.hide-form .input-flex {
    flex-wrap: wrap;
}
.input.plus-btn, .input.minus-btn {
    width: 5% !important;
}
.input.minus-btn button {
    background-color: red;
    padding: 5px 12px;
}

.per-g {
    border: dashed 1px #0000001f;
    border-radius: 5px;
    padding: 8px;
    margin: 9px 0px;
}
.per-g h5 {
    font-size: 15px;
    color: var(--primary-color);
}
.permissonwise p {
    font-size: 11px;
    margin-bottom: 5px;
}
.permissonwise {
    width: 25%;
}

.perm-row {
    display: flex;
    flex-wrap: wrap;
}
label.permissoncheck {
    width: 40px;
    height: 20px;
    position: relative;
}
label.permissoncheck span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000026;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}
label.permissoncheck input {
    opacity: 0;
}
label.permissoncheck span:after {
    content: """";
    position: absolute;
    left: 4px;
    top: 2px;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}
label.permissoncheck input:checked + span {
    background-color: green;
}
label.permissoncheck input:checked + span:after {
    margin-left: 17px;
}

@media (max-width:767px){
    .dashboard-sidebar {
        left: -100%;
        width: 280px;
    }
    .dashboard-header, main, footer {
        margin-left: 0px;
        transition: 0.5s;
    }
    .dashboard-search {
        display: none;
    }
    i#nav_toggle {
        position: absolute;
        width: 50px;
        height: 40px;
        background-color: var(--primary-color);
        z-index: 99;
        text-align: center;
        padding-top: 7px;
        margin-top: 6px;
        font-size: 25px;
        border-radius: 4px;
        display: block;
        color: #fff;
    }
    .dashboard-sidebar.open_nav {
        left: 0px !important;
        
    }
    body.nav_open {
        overflow-x: hidden;
    }
    .panel-body {
        overflow-x: auto;
    }
    body:after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        top: 0;
        height: 100%;
        background-color: #000000b8;
        z-index: 99;
        transition: 0.5s;
        opacity: 0;
        pointer-events: none;
    }
    body.nav_open:after {
        opacity: 1;
        pointer-events: all;
    }
    .dashboard-logo {
        text-align: left;
        padding: 24px 20px;
    }
    i#close_sidebar {
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: red;
        color: #fff;
        text-align: center;
        font-size: 18px;
        padding-top: 5px;
        border-radius: 3px;
        right: 9px;
        display: block;
        top: 26px;
    }
    .dashboard-box.panel-body {
        margin-top: 20px;
    }
}