
/* Reset CSS
========================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

:root {
    --header-height: 66px;
    --sidebar-width: 56px;
    --primary-color: #C39130;
    --primary-hover-color: #d79f34;
    --secondary-color: #7B3373;
    --primary-color-light: #ECEBFA;
    --grey-color: #888888;
    --greydark-color: #929292;
    --gray-100: #ACACAC;
    --black-color: #000000;
    --white-color: #ffffff;
    --body-font: 'Poppins', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

body {
    background: #FFFBFE;
    color: var(--black-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    overflow-x: hidden;
}

*, ::before, ::after {
    box-sizing: border-box
}

/* Common CSS
========================================================================== */
ol, ul {
    list-style: none;
}

a, .btn {
    transition: all 0.5s ease;
}

    *:focus, a:active, a:hover, a:focus, .btn:focus, .btn:active, .btn:hover, button:focus {
        outline: 0;
    }

a {
    color: var(--primary-color);
    text-decoration: none;
}

    a:focus, a:hover {
        color: var(--primary-hover-color);
        text-decoration: none;
    }

b, strong {
    font-weight: bold;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 72%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.4em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
    vertical-align: middle;
}

svg:not(:root) {
    overflow: hidden;
}

.link-gray {
    color: var(--grey-color) !important;
}

    .link-gray:hover {
        color: var(--primary-color) !important;
    }

.radius4 {
    border-radius: 4px !important;
}

.radius6 {
    border-radius: 6px !important;
}

/* Text color CSS
========================================================================== */
.font-14 {
    font-size: 14px;
}

.font-12 {
    font-size: 12px !important;
}

.font-10 {
    font-size: 10px !important;
}

.bg-color-primary {
    background: #4B43D0;
}

.bg-color-1 {
    background: #FFE6C2;
}

.bg-color-2 {
    background: #FFDCAB;
}

.bg-color-3 {
    background: #FBD6F4;
}

.bg-color-4 {
    background: #FFC7F6;
}

.bg-color-5 {
    background: #C4F7FF;
}

.bg-color-6 {
    background: #A1E0EB;
}

.bg-color-7 {
    background: #E1DEFF;
}

.bg-color-8 {
    background: #D1CCFF;
}

.bg-color-9 {
    background: #E7F8C8;
}

.bg-color-10 {
    background: #DAFC9E;
}

.bg-color-11 {
    background: #FFAFAF;
}

.bg-color-12 {
    background: #FC8B8B;
}

.bg-color-13 {
    background: #DDE5FF;
}

.bg-color-14 {
    background: #f5f5f5 !important;
}

.bg-color-15 {
    background: #fff;
}

.text-primary {
    color: var(--primary-color) !important;
}

.badge {
    border-radius: 8px;
    font-weight: 400;
    padding: .25em 1.064em;
    font-size: 10px;
}

.bg-success {
    background: #DDF5DB !important;
    color: #12B800;
}

.bg-danger {
    background: #F1DBDB !important;
    color: #C20000;
}

.bg-lightblue {
    background: #DDE5FF;
    color: #1F53FB;
}

/* Button CSS
========================================================================== */
.btn {
    border-radius: 4px;
    padding: 0.625rem 1rem;
    font-size: 12px;
    font-weight: 500;
}

.btn-lg {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 16px;
    font-weight: 400;
}

.btn-md {
    padding: 0.313rem 1rem;
}

.btn-sm {
    padding: 0rem 0.5rem;
}

.btn-xs {
    padding: 0rem 0.5rem;
}

.btn:hover, .btn:focus, .btn:not(:disabled):not(.disabled):active, .btn-close:focus {
    box-shadow: none;
    outline: 0;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFFFFF;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active {
        background: var(--primary-hover-color);
        border-color: var(--primary-hover-color);
        color: #ffffff;
    }

.btn-transparent {
    background: transparent;
    color: var(--primary-color);
}

    .btn-transparent:hover, .btn-transparent:focus, .btn-transparent:not(:disabled):not(.disabled):active {
        background: transparent;
        color: #111111;
    }

.btn-border {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

    .btn-border:hover, .btn-border:focus, .btn-border:not(:disabled):not(.disabled):active {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #ffffff;
    }

.btn-border-white {
    background: transparent;
    border-color: #ffffffff;
    color: #ffffffff;
}

    .btn-border-white:hover, .btn-border-white:focus, .btn-border-white:not(:disabled):not(.disabled):active {
        background: #ffffffff;
        border-color: #ffffffff;
        color: var(--primary-color);
    }

.btn-primary-light {
    background: var(--primary-color-light);
    border-color: var(--primary-color-light);
    color: var(--primary-color);
}

    .btn-primary-light:hover, .btn-primary-light:focus, .btn-primary-light:not(:disabled):not(.disabled):active {
        background: var(--primary-hover-color);
        border-color: var(--primary-hover-color);
        color: var(--white-color);
    }

.btn-badge {
    border-radius: 9px;
    font-size: 10px;
    padding: 0.19rem 0.43rem;
    line-height: 1;
}

/* Form CSS
========================================================================== */
.control-label {
    color: var(--greydark-color);
    font-size: 14px;
    margin-bottom: 13px;
}

.control-label-sm {
    color: #888888;
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 2px;
}

.control-label-md {
    color: #888888;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-control-line {
    background: transparent;
    border: 0px;
    border-bottom: 1px solid rgba(3, 1, 76, 0.2);
    color: var(--black-color);
    font-size: 16px;
    width: 100%;
    padding: 6px 12px;
}

.field-icon {
    position: relative;
}

    .field-icon input {
        padding-right: 23px;
    }

    .field-icon .form-icon {
        position: absolute;
        right: 0;
        color: var(--grey-color);
        font-size: 15px;
        top: 10px;
        opacity: 0.3;
        cursor: pointer;
    }

::-webkit-input-placeholder {
    color: var(--black-color);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--black-color);
    opacity: 1;
}

::placeholder {
    color: var(--black-color);
    opacity: 1;
}

.form-fieldset {
    border-top: 1px solid #CFCFCF;
    margin-top: 15px;
}

    .form-fieldset legend {
        background: #F5F5F5;
        border: 1px solid #E4E4E4;
        border-radius: 19px;
        color: #111111;
        font-size: 12px;
        display: inline-block;
        width: auto;
        padding: 0.4rem 1rem;
        margin-top: -14px;
        margin-bottom: 17px;
    }

.table-fieldset legend {
    background: #fff;
    border: 0px;
    border-radius: 0px;
    padding-left: 0;
    padding-right: 12px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group-sm {
    margin-bottom: 6px;
}

.form-control {
    border-color: #E4E4E4;
    border-radius: 4px;
    color: #000000;
}

    .form-control:hover, .form-control:focus {
        outline: 0;
        box-shadow: none;
    }

    .form-control:focus {
        border-color: var(--primary-color);
    }

.form-control-sm {
    font-size: 10px;
    padding: .285rem .5rem;
}

.resize-none {
    resize: none;
}

.form-check-input, .form-check-input:focus, .form-check-input[type=checkbox] {
    border-radius: 2px;
    border-color: #E4E4E4;
    box-shadow: none;
}

    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.form-check-input-v2[type=checkbox], .form-check-input-v2[type=radio] {
    border-color: #1E1E1E;
    border-radius: 4px;
}

.form-select {
    background-image: url(../images/select-arrow.svg);
    background-size: 10px 5px;
    border-color: #E0E0E0;
    border-radius: 8px;
    box-shadow: none;
}

    .form-select:hover, .form-select:focus {
        box-shadow: none;
        border-color: #E0E0E0;
    }

.form-select-sm {
    display: inline-block;
    width: auto;
    font-size: 10px;
    color: #000000;
    padding-top: 0.285rem;
    padding-bottom: 0.28rem;
    padding-left: 12px;
}

.form-group-inline {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

    .form-group-inline label.control-label {
        font-size: 10px;
        color: #888888;
        font-weight: 500;
        margin-bottom: 0;
    }

    .form-group-inline .value {
        color: #000000;
        font-size: 10px;
        position: relative;
        padding-left: 6px;
        font-weight: 400;
    }

        .form-group-inline .value:before {
            content: ":";
            position: absolute;
            left: 0;
            top: 0;
        }

.input-group-icon {
    position: relative;
}

    .input-group-icon .icon {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 6px;
        color: #888888;
    }

    .input-group-icon .form-control {
        padding-right: 17px;
    }

.toggle-switch {
    padding: 0;
    cursor: pointer;
}

    .toggle-switch input {
        display: none;
    }

        .toggle-switch input + .slider {
            position: relative;
            display: inline-block;
            width: 56px;
            height: 28px;
            background: #D6D6D6;
            border-radius: 50px;
            transition: all 0.3s ease-in-out;
        }

            .toggle-switch input + .slider:before {
                content: "";
                position: absolute;
                display: block;
                width: 50%;
                height: 93%;
                background: #fff;
                border-radius: 50%;
                transition: all 0.3s ease-in-out;
                left: 1px;
                top: 1px;
            }

        .toggle-switch input:checked + .slider {
            background: #4B43D0;
            border-color: #4B43D0;
        }

            .toggle-switch input:checked + .slider:before {
                left: 49%;
                transform: none;
            }

.toggle-switch-md input + .slider {
    width: 38px;
    height: 20px;
    border-radius: 14px;
}

    .toggle-switch-md input + .slider:before {
        width: 14px;
        height: 14px;
        top: 3px;
        left: 3px;
    }

.toggle-switch-md input:checked + .slider:before {
    left: 55%;
}

.toggle-success input + .slider {
    background: #BBC5D5;
}

.toggle-success input:checked + .slider {
    background: #38E25E;
    border-color: #38E25E;
}

.toggle-switch-secondary input + .slider {
    background: #888888;
}

/* Grid CSS
========================================================================== */
.row-xs {
    margin-right: -5px;
    margin-left: -5px;
}

    .row-xs [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }

.mw-146 {
    min-width: 146px;
}

/*
::-webkit-scrollbar {
width: 6px;
}

::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}*/

::-webkit-scrollbar-thumb {
    background-color: #c9c9c9;
    border-radius: 25px;
    width: 10px;
}

::-webkit-scrollbar {
    background-color: #fff;
    border-radius: 25px;
    width: 10px;
    height: 10px;
}

.grid-table {
    background: #fff;
    border: 1px solid #E4E4E4;
    border-radius: 4px;
    min-height: calc(100vh - 130px);
    overflow: auto;
}

.grid-message {
    padding: 5% 0;
    text-align: center;
}

    .grid-message h3 {
        font-size: 24px;
        margin-bottom: 2rem;
    }

/* Component CSS
========================================================================== */
.dropdown-menu {
    border: none;
    box-shadow: 0 0 8px 2px rgb(119 119 119 / 16%);
    border-radius: 5px;
    padding: 0;
}

    .dropdown-menu:before {
        content: " ";
        position: absolute;
        left: 16px;
        top: -10px;
        border-top: none;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-bottom: 10px solid #ffffff;
    }

    .dropdown-menu li .dropdown-item {
        font-size: 14px;
        padding: 0.6rem 15px;
    }

    .dropdown-menu li .dropdown-divider {
        opacity: 0.06;
        margin: 0rem 0;
    }

.dropdown-toggle::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 5px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 0px;
    transform: rotate(225deg);
}

.user-dropdown .dropdown-menu {
    border-radius: 12px;
}

.no-arrow::after, .no-arrow::before {
    display: none;
}

.dropdown-link .dropdown-toggle {
    padding: 0px;
}


/* Table CSS
========================================================================== */
.table-border td, .table-border th {
    border-bottom: 1px solid #E4E4E4;
    box-shadow: none;
    padding: 0.44rem 0.25rem;
}

.table-border th {
    color: #888888;
    font-weight: 500;
}

.table-border td {
    vertical-align: middle;
}

.table-sm {
    font-size: 12px;
}

    .table-sm td, .table-sm th {
        font-size: 12px;
    }

.table-fixed thead {
    position: sticky;
    top: 0px;
    z-index: 1;
}

.table-background thead {
    background: #F3F3FE;
    border-radius: 11px;
    overflow: hidden;
}

    .table-background thead th {
        background: #F3F3FE;
        border: 0px;
        font-size: 14px;
        padding: 0.98rem 0.25rem;
    }

        .table-background thead th:first-child {
            border-radius: 8px 0px 0 8px;
            padding-left: 28px;
        }

        .table-background thead th:last-child {
            border-radius: 0px 8px 8px 0px;
            padding-right: 28px;
        }

.table-background td {
    padding: 0.77rem 0.25rem;
}

.table-grid {
    width: 100%;
    border: 0px;
    border-collapse: collapse;
    table-layout: fixed;
}

    .table-grid thead th {
        background: #F5F5F5;
        border: 1px solid #F5F5F5;
        color: #888888;
        font-size: 10px;
        font-weight: 500;
        padding: 0.625rem 0.5rem;
    }

    .table-grid td {
        border: 1px solid #E4E4E4;
        font-size: 10px;
        color: #000000;
        padding: 0.91rem 0.5rem;
    }

@media (max-width: 1200px) {
    .table-background thead th:first-child {
        padding-left: 10px;
    }

    .table-background thead th:last-child {
        padding-right: 10px;
    }
}


/* Authentication Pages CSS
========================================================================== */
.authentication-container {
    max-width: 1678px;
    margin: auto;
    display: flex;
    justify-content: center;
    padding: 1rem 30px 0;
    min-height: 100vh;
}

    .authentication-container .graphic-img {
        margin-top: auto;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

        .authentication-container .graphic-img img {
            object-fit: cover;
            max-height: 100%;
        }

.auth-form {
    width: 400px;
    height: 440px;
    background: #fff;
    border-radius: 8px;
    padding: 30px 40px;
    margin: auto;
    box-shadow: 0px 0px 5px rgb(0,0,0,10%);
}
    .auth-form .form-group {
        margin-bottom: 25px;
    }

    .auth-form .logo {
        margin-bottom: 28px;
    }

    .auth-form h1.title {
        color: var(--primary-color);
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 4rem;
    }

    .auth-form .subtitle {
        font-size: 16px;
        color: var(--greydark-color);
        width: 325px;
        line-height: 1.5;
        margin-bottom: 33px;
    }

.reset-form {
    max-width: 300px;
    padding-right: 0px;
}

    .reset-form .subtitle {
        width: 100%;
    }

@media (max-width: 1024px) {
    .authentication-container {
        flex-wrap: wrap;
    }

    .auth-form {
        padding-right: 0;
        max-width: 300px;
        padding-bottom: 2rem;
        padding-top: 3rem;
        position: relative;
    }
}

@media (max-width: 767px) {
    .auth-form {
        padding-top: 2rem;
    }

    .added-cards {
        flex-direction: column;
    }

    .payment-method-sec .payment-card-row {
        width: 100% !important;
    }

    .payment-method-sec .add-btn-sec {
        width: 100% !important;
    }
}

/* Common page CSS
========================================================================== */
.wrapper {
    padding-left: calc(var(--sidebar-width) + 191px);
    padding-top: calc(var(--header-height) + 24px);
}

    .wrapper.sidebar-close {
        padding-left: calc(var(--sidebar-width) + 55px);
    }

@media (max-width: 1200px) {
    .wrapper {
        padding-left: calc(var(--sidebar-width) + 163px);
    }
}

@media (max-width: 990px) {
    .wrapper {
        padding-left: calc(var(--sidebar-width) + 17px);
    }
}

.blank-message {
    text-align: center;
    color: #000000;
    font-size: 25px;
    padding: 5% 0;
}

hr {
    background: #E4E4E4;
    opacity: 1;
    margin: 0px;
}



/* Modal CSS
========================================================================== */
.modal-backdrop {
    background-color: #888888;
}

.modal-body {
    padding: 1.25rem;
}

.modal-header {
    border-color: #BABABA;
    padding: 1.1rem 1.25rem;
}

.modal-content {
    border-radius: 8px;
    border: 0px;
}

.modal-header .modal-title {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
}

.modal-header .btn-close {
    background-size: 12px;
    opacity: 0.9;
}

.modal-footer {
    border-top: 0px;
    padding: 1.25rem;
}

.modal-button {
    padding: 1rem 0 0;
    display: flex;
    justify-content: end;
}

.modal-dialog {
    max-width: 434px;
}

.modal-lg {
    max-width: 98%;
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 836px;
    }
}

/* Modal Right Side CSS
========================================================================== */
.modal-rightslide {
    background: #FFFFFF;
    box-shadow: -5px 10px 30px #bcbcbc;
    max-width: 1222px;
    position: fixed;
    right: -1222px;
    height: calc(100% - var(--header-height));
    top: var(--header-height);
    width: 96%;
    transition: right 0.5s ease;
    z-index: 1;
}

    .modal-rightslide.show {
        right: 0px;
        transition: right 0.7s ease;
    }

    .modal-rightslide.full-screen {
        max-width: calc(100% - var(--sidebar-width) - 136px);
        width: calc(100% - var(--sidebar-width) - 136px);
    }

    .modal-rightslide.modal-lg {
        width: 75%;
    }

[data-toggle="screen-resize"] .minimize-icon, .full-screen [data-toggle="screen-resize"] .maximize-icon {
    display: none;
}

.full-screen [data-toggle="screen-resize"] .minimize-icon {
    display: block;
}



/* Print Container CSS
========================================================================== */

@page {
    size: A4;
    margin: 0;
}

@media print {
    html, body {
        width: 21cm;
        height: 29.7cm;
    }

    .print-container {
        margin: 0;
        border: initial;
        border-radius: initial;
        width: initial;
        min-height: initial;
        box-shadow: initial;
        background: initial;
        page-break-after: always;
    }

    .sidebar, .navbar-header {
        display: none;
    }

    .print-container {
        width: 21cm;
        min-height: 29.7cm;
        padding: 13mm 13mm 1mm;
        margin: 7mm auto;
        background: white;
        -webkit-print-color-adjust: exact;
    }
}

/* Admin pages CSS
========================================================================== */
.content {
    padding-right: 3.3rem;
    padding-top: 17px;
}

.content-box {
    background: #fff;
    border-radius: 8px;
    padding: 32px 40px;
    width: 100%;
    min-height: calc(100vh - var(--header-height) - 90px);
    margin-bottom: 30px;
}

.container-box {
    max-width: 1392px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
}

.content-box .tab-content {
    flex-basis: 100%;
}

.content-box .adminsetting-table {
    height: calc(100% - 152px);
}

@media (max-width: 1200px) {
    .content {
        padding-right: 15px;
        padding-top: 15px;
    }
}

.main-title {
    color: #000000;
    font-size: 14px;
    margin-bottom: 2.5rem;
}

    .main-title h1 {
        color: #292929;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 13px;
    }


/* Loading CSS
========================================================================== */
.dots-spinner {
    display: inline-block;
    height: 1em;
    width: 1em;
    line-height: 1;
    vertical-align: middle;
    border-radius: 1em;
    transition: all 150ms linear 0s;
    transform: scale(0);
    opacity: 0;
    box-shadow: 2em 0em 0 0em, 1.41421356em 1.41421356em 0 -0.4375em, 0em 2em 0 -0.375em, -1.41421356em 1.41421356em 0 -0.3125em, -2em 0em 0 -0.25em, -1.41421356em -1.41421356em 0 -0.1875em, 0em -2em 0 -0.125em, 1.41421356em -1.41421356em 0 -0.0625em;
}

    .dots-spinner.loading {
        transform: scale(0.6);
        color: #4B43D0;
        opacity: 1;
        -webkit-animation: 1.5s linear 150ms normal infinite forwards running dots-rotation;
        animation: 1.5s linear 150ms normal infinite forwards running dots-rotation;
    }

@-webkit-keyframes dots-rotation {
    100% {
        box-shadow: 2em 0em 0 0em, 1.41421356em 1.41421356em 0 -0.4375em, 0em 2em 0 -0.375em, -1.41421356em 1.41421356em 0 -0.3125em, -2em 0em 0 -0.25em, -1.41421356em -1.41421356em 0 -0.1875em, 0em -2em 0 -0.125em, 1.41421356em -1.41421356em 0 -0.0625em;
    }

    87.5% {
        box-shadow: 2em 0em 0 -0.4375em, 1.41421356em 1.41421356em 0 -0.375em, 0em 2em 0 -0.3125em, -1.41421356em 1.41421356em 0 -0.25em, -2em 0em 0 -0.1875em, -1.41421356em -1.41421356em 0 -0.125em, 0em -2em 0 -0.0625em, 1.41421356em -1.41421356em 0 0em;
    }

    75% {
        box-shadow: 2em 0em 0 -0.375em, 1.41421356em 1.41421356em 0 -0.3125em, 0em 2em 0 -0.25em, -1.41421356em 1.41421356em 0 -0.1875em, -2em 0em 0 -0.125em, -1.41421356em -1.41421356em 0 -0.0625em, 0em -2em 0 0em, 1.41421356em -1.41421356em 0 -0.4375em;
    }

    62.5% {
        box-shadow: 2em 0em 0 -0.3125em, 1.41421356em 1.41421356em 0 -0.25em, 0em 2em 0 -0.1875em, -1.41421356em 1.41421356em 0 -0.125em, -2em 0em 0 -0.0625em, -1.41421356em -1.41421356em 0 0em, 0em -2em 0 -0.4375em, 1.41421356em -1.41421356em 0 -0.375em;
    }

    50% {
        box-shadow: 2em 0em 0 -0.25em, 1.41421356em 1.41421356em 0 -0.1875em, 0em 2em 0 -0.125em, -1.41421356em 1.41421356em 0 -0.0625em, -2em 0em 0 0em, -1.41421356em -1.41421356em 0 -0.4375em, 0em -2em 0 -0.375em, 1.41421356em -1.41421356em 0 -0.3125em;
    }

    37.5% {
        box-shadow: 2em 0em 0 -0.1875em, 1.41421356em 1.41421356em 0 -0.125em, 0em 2em 0 -0.0625em, -1.41421356em 1.41421356em 0 0em, -2em 0em 0 -0.4375em, -1.41421356em -1.41421356em 0 -0.375em, 0em -2em 0 -0.3125em, 1.41421356em -1.41421356em 0 -0.25em;
    }

    25% {
        box-shadow: 2em 0em 0 -0.125em, 1.41421356em 1.41421356em 0 -0.0625em, 0em 2em 0 0em, -1.41421356em 1.41421356em 0 -0.4375em, -2em 0em 0 -0.375em, -1.41421356em -1.41421356em 0 -0.3125em, 0em -2em 0 -0.25em, 1.41421356em -1.41421356em 0 -0.1875em;
    }

    12.5% {
        box-shadow: 2em 0em 0 -0.0625em, 1.41421356em 1.41421356em 0 0em, 0em 2em 0 -0.4375em, -1.41421356em 1.41421356em 0 -0.375em, -2em 0em 0 -0.3125em, -1.41421356em -1.41421356em 0 -0.25em, 0em -2em 0 -0.1875em, 1.41421356em -1.41421356em 0 -0.125em;
    }

    0% {
        box-shadow: 2em 0em 0 0em, 1.41421356em 1.41421356em 0 -0.4375em, 0em 2em 0 -0.375em, -1.41421356em 1.41421356em 0 -0.3125em, -2em 0em 0 -0.25em, -1.41421356em -1.41421356em 0 -0.1875em, 0em -2em 0 -0.125em, 1.41421356em -1.41421356em 0 -0.0625em;
    }
}

@keyframes dots-rotation {
    100% {
        box-shadow: 2em 0em 0 0em, 1.41421356em 1.41421356em 0 -0.4375em, 0em 2em 0 -0.375em, -1.41421356em 1.41421356em 0 -0.3125em, -2em 0em 0 -0.25em, -1.41421356em -1.41421356em 0 -0.1875em, 0em -2em 0 -0.125em, 1.41421356em -1.41421356em 0 -0.0625em;
    }

    87.5% {
        box-shadow: 2em 0em 0 -0.4375em, 1.41421356em 1.41421356em 0 -0.375em, 0em 2em 0 -0.3125em, -1.41421356em 1.41421356em 0 -0.25em, -2em 0em 0 -0.1875em, -1.41421356em -1.41421356em 0 -0.125em, 0em -2em 0 -0.0625em, 1.41421356em -1.41421356em 0 0em;
    }

    75% {
        box-shadow: 2em 0em 0 -0.375em, 1.41421356em 1.41421356em 0 -0.3125em, 0em 2em 0 -0.25em, -1.41421356em 1.41421356em 0 -0.1875em, -2em 0em 0 -0.125em, -1.41421356em -1.41421356em 0 -0.0625em, 0em -2em 0 0em, 1.41421356em -1.41421356em 0 -0.4375em;
    }

    62.5% {
        box-shadow: 2em 0em 0 -0.3125em, 1.41421356em 1.41421356em 0 -0.25em, 0em 2em 0 -0.1875em, -1.41421356em 1.41421356em 0 -0.125em, -2em 0em 0 -0.0625em, -1.41421356em -1.41421356em 0 0em, 0em -2em 0 -0.4375em, 1.41421356em -1.41421356em 0 -0.375em;
    }

    50% {
        box-shadow: 2em 0em 0 -0.25em, 1.41421356em 1.41421356em 0 -0.1875em, 0em 2em 0 -0.125em, -1.41421356em 1.41421356em 0 -0.0625em, -2em 0em 0 0em, -1.41421356em -1.41421356em 0 -0.4375em, 0em -2em 0 -0.375em, 1.41421356em -1.41421356em 0 -0.3125em;
    }

    37.5% {
        box-shadow: 2em 0em 0 -0.1875em, 1.41421356em 1.41421356em 0 -0.125em, 0em 2em 0 -0.0625em, -1.41421356em 1.41421356em 0 0em, -2em 0em 0 -0.4375em, -1.41421356em -1.41421356em 0 -0.375em, 0em -2em 0 -0.3125em, 1.41421356em -1.41421356em 0 -0.25em;
    }

    25% {
        box-shadow: 2em 0em 0 -0.125em, 1.41421356em 1.41421356em 0 -0.0625em, 0em 2em 0 0em, -1.41421356em 1.41421356em 0 -0.4375em, -2em 0em 0 -0.375em, -1.41421356em -1.41421356em 0 -0.3125em, 0em -2em 0 -0.25em, 1.41421356em -1.41421356em 0 -0.1875em;
    }

    12.5% {
        box-shadow: 2em 0em 0 -0.0625em, 1.41421356em 1.41421356em 0 0em, 0em 2em 0 -0.4375em, -1.41421356em 1.41421356em 0 -0.375em, -2em 0em 0 -0.3125em, -1.41421356em -1.41421356em 0 -0.25em, 0em -2em 0 -0.1875em, 1.41421356em -1.41421356em 0 -0.125em;
    }

    0% {
        box-shadow: 2em 0em 0 0em, 1.41421356em 1.41421356em 0 -0.4375em, 0em 2em 0 -0.375em, -1.41421356em 1.41421356em 0 -0.3125em, -2em 0em 0 -0.25em, -1.41421356em -1.41421356em 0 -0.1875em, 0em -2em 0 -0.125em, 1.41421356em -1.41421356em 0 -0.0625em;
    }
}


 /*   Order FORM*/
/* ===Form wapper 
===================================== */
body {
    font-family: "Montserrat", sans-serif;
}

.form-wapper {
    max-width: 800px;
    margin: auto;
}
/* login button */
.form-wapper .signin-link a {
        font-size: 20px;
        font-weight: 600;
        color: #000;
        margin-left: auto;
    }
/* form-wapper logo */
.form-wapper .form-wapper_logo {
        text-align: center;
    }
/* form-wapper logo */
    .form-wapper .form-wapper_header {
        text-align: center;
        padding: 36px 48px;
        font-size: 32px;
        font-weight: bold;
        line-height: 39px;
    }
/*== Main form css==
 =================================================== */
.form-wapper .form-wapper_form {
        padding: 56px;
        background: #fff;
        box-shadow: 0px 6px 60px rgb(0,0,0,7%);
        border-radius: 20px;
    }
    .form-wapper .form-wapper_form .errormsg {
        font-size: 12px;
    }

.form-wapper .form-wapper_form .form-header h2 {
    color: #7B3373;
    font-size: 24px;
    font-weight: 600;
    padding-left: 24px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.form-wapper .form-wapper_form .form-header h2:before {
        content: "";
        width: 6px;
        height: 22px;
        background: #7B3373;
        left: 0;
        position: absolute;
    }

.form-wapper .form-wapper_form .form-group {
        margin-bottom: 16px;
    }

.form-wapper .form-wapper_form .form-group label {
        margin-bottom: 8px;
        font-size: 12px;
        font-weight: 500;
        color: #767676;
    }

.form-wapper .form-wapper_form .check {
    padding: 24px 0px;
}
/*== Main form css==
 ================================End=================== */

/*==== middle banner
============================ */
    .form-wapper .form-middle-banner {
        max-width: 460px;
        min-width: 320px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: auto;
        text-align: center;
        background: rgb(195, 145, 48, 10%);
        margin-top: 46px;
        margin-bottom: 36px;
        padding: 22px 62px;
        border-radius: 8px;
    }

.form-wapper .form-middle-banner p {
        color: #504D4D;
        margin-bottom: 0px;
        font-weight: 600;
        font-size: 20px;
    }
    .form-wapper .form-middle-banner h2 {
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 0px;
    }
    /*==== middle banner
========================End=================== */
    /* Button css */
    .form-wapper .btn:hover {
        background-color: #C39130 !important;
        border-color: #d79f34 !important;
        color: #fff !important;
    }
.form-wapper .btn-primary {
        background-color: #C39130 !important;
        border-color: #C39130 !important;
    }
 .form-wapper .btn-primary:hover {
        background-color: #d79f34 !important;
        border-color: #d79f34 !important;
    }
.form-wapper input::placeholder {
    font-size: 12px;
}
.form-wapper select {
    font-size: 12px;
    padding: 9px 6px;
}

/* ===Form wapper 
==========================End=========== */

/* Checkbox override Css
================================================ */
.form-wapper .check input[type=checkbox] {
        position: relative;
        border: 1px solid #0D0C0A;
        border-radius: 4px;
        background: none;
        cursor: pointer;
        line-height: 0;
        margin: 0 .6em 0 0;
        outline: 0;
        padding: 0 !important;
        vertical-align: text-top;
        height: 18px;
        width: 18px;
        -webkit-appearance: none;
    }

.form-wapper .check input[type=checkbox]:hover {
        opacity: 1;
    }

.form-wapper .check input[type=checkbox]:checked {
        background-color: #0D0C0A;
        opacity: 1;
    }

.form-wapper .check input[type=checkbox]:before {
        content: '';
        position: absolute;
        right: 50%;
        top: 50%;
        width: 6px;
        height: 10px;
        border: solid #FFF;
        border-width: 0 2px 2px 0;
        margin: -1px -1px 0 -1px;
        transform: rotate(45deg) translate(-50%, -50%);
        z-index: 2;
    }
    .form-wapper .form-wapper_form input:focus {
        box-shadow: none !important;
    }
    .form-wapper .form-wapper_form input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
    }
    .form-wapper .form-wapper_form input[type=number]::-webkit-inner-spin-button,.form-wapper .form-wapper_form
    input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none !important;
        margin: 0 !important;
    }
        /* Checkbox override Css
=====================================End=========== */
    /* ===Form wapper 
            =====================End========---------------- */
/*Thank you and Error popup Css
    =========================================================*/

        .donate-inner-wrapper {
    background: #f7f8fa;
    width: 100%;
    height: auto;
    /*padding: 63px 0 90px;*/
    background: url(../images/bottom-banner.png) no-repeat;
    background-size: cover;
    background-attachment: fixed
}

.donate-carousel .carousel-item > img {
    height: 420px;
    background-size: contain;
    background-position: 100%;
    min-height: 125px
}

donate-inner-wrapper h2 {
    font-size: 44px;
    font-weight: 700;
    color: #07a19b;
    margin-bottom: 40px;
    line-height: 50px;
    text-align: right
}

.donation-gray-outer {
    background: #f3f4f6;
    padding: 20px 40px;
    border-radius: 6px;
    max-width: 576px;
    margin: auto;
}

.donate-shadow-box {
    height: 900px;
    display: flex;
}
.thankyou-box {
    text-align: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 70px 50px 80px;
    /* margin-left: auto; */
    font-family: "Poppins", sans-serif !important;
    margin: auto;
}

    .donate-shadow-box .image > img {
        width: 100px !important;
        height: auto;
        max-height: 100px
    }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 9999; /* Ensure it's on top of other elements */
    pointer-events: none; /* Allow click-through when not visible */
}

.overlay {
    display: flex; /* Show the overlay */
    justify-content: center;
    align-items: center;
    pointer-events: auto; /* Disable click-through to elements below */
}

.modal-body.delete-complete {
    min-height: 200px;
    max-height: 280px;
}

.modal-body.delete-complete h2 {
    font-size: 20px;
    font-weight:700;
    padding-bottom:36px;
}

.modal-body.delete-complete p {
    padding-bottom: 20px;
}
/*Thank you and Error popup Css
    ==========================================End=======================*/

/*form City charge Csss
        =====================================================================================*/
.city-charge {
    max-width: 670px !important;
}
.city-charge .addcity-charge {
        display: flex;
        justify-content:space-between;
        align-items: center;
}
  .city-charge .addcity-charge .add-icon {
        font-size: 18px;
        padding: 4px 12px;

}
.city-charge .addcity-charge input::placeholder {
    font-size: 12px;
}

/*form City charge Csss
        ===========================================End==========================================*/

/*Header navbar Css=
    ===========================================================*/
.navbar {
    background-color: var(--primary-color) !important;
    color: #ffffff;
}
.navbar .navbar-nav a {
    color: #ffffff !important;
    font-size: 14px;
}

/*Header navbar Css=
    ====================================End=======================*/

/*Sidebar Css
    ============================================================*/
.sidebar {
    background-color: #fff;
    height: 100vh;
    width: 204px;
    position: relative;
    box-shadow: 0px 5px 5px rgb(0,0,0,10%);
}
    .sidebar .menu-list {
        margin-top: 50px;
    }
        .sidebar .menu-list .nav-link {
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            text-align: center;
            padding: 8px 20px;
            background-color: #a04696;
        }

 .sidebar .menu-list .nav-link:hover {
            background-color: var(--secondary-color);
}

/*Sidebar Css
    ==========================================End==================*/

.city-charge input[type=number]::-webkit-inner-spin-button,
.city-charge input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.city-charge label {
    font-weight: 500;
    width: 70px;
}


.main-wrapper_header {
    font-family: poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #bb9c72;
    min-height: 40px;
}
.p-15{
    padding:15px!important;
}

/*** 09March2024 */
.container {
    max-width: 1454px;
    width: 100%;
    height: calc(100% - 63px);
}
    .customerinfopage {
    padding-top: 5rem;
    display: flex;
}

    .customerinfopage ul.sidegallery {
        display: flex;
        flex-direction: column;
        grid-gap: 54px;
        padding: 0;
        margin: 0;
    }

        .customerinfopage  .form-wapper .form-wapper_header {
            padding: 40px 48px 74px;
        }
        .customerinfopage .form-header {
            display: flex;
            flex-wrap: wrap;
        }

            .customerinfopage  .form-header p.subdesc {
                margin-left: auto;
                font-size: 22px;
                font-weight: 500;
                margin-bottom: 30px;
            }

    .customerinfopage .form-wapper {
        max-width: 800px;
        margin: auto;
    }

    .customerinfopage #charge-card {
        margin: 0 auto;
        padding:0px 15px;
    }

    .customerinfopage .form-wapper .form-wapper_form {
        padding: 60px;
    }

        .customerinfopage .form-wapper .form-wapper_form .check {
            padding: 22px 0 38px;
            align-items: center;
            display: flex;
        }

        .customerinfopage .form-wapper .form-middle-banner {
            margin-top: 30px;
            margin-bottom: 38px;
            gap: 10px;
            padding: 2rem 15px;
            min-width: auto;
        }
 

        .customerinfopage .form-wapper .form-middle-banner p {
            font-size: 16px;
            font-weight: 500;
        }

            .customerinfopage .form-wapper .form-middle-banner p.price {
                font-weight: 700;
                color: #000000;
                font-size: 20px; 
            }

        .customerinfopage .btn-md {
            padding: 1.1rem 2.8rem;
            font-size: 16px;
            font-weight: 500;
        }

    .customerinfopage .form-wapper .btn-reset:hover {
        background-color: #545454 !important;
        border-color: #545454 !important;
        color: #fff !important;
    }
        .customerinfopage .form-footer {
            display: flex;
            justify-content: flex-end;
            grid-gap: 10px;
        }
footer.footer {
    background: #272222;
    text-align: center;
    padding: 21px 0px;
    margin-top: 7rem;
}

    footer.footer a {
        color: #fff;
        font-size: 12px;
        text-decoration: none;
    }

    footer.footer .link {
        display: flex;
        align-items: center;
        justify-content: center;
        grid-gap: 9px;
    }

        footer.footer .link .seperator {
            background: #fff;
            width: 6px;
            height: 6px;
            border-radius: 100%;
        }

    footer.footer a:hover {
        text-decoration: underline;
    }
@media (max-width: 767px) {
    .customerinfopage {
        flex-wrap: wrap;
        padding-top: 3rem;
    }
        .customerinfopage .btn-md {
            padding: 1.1rem 1.5rem;
        }


        .customerinfopage #charge-card {
            order: 0;
            padding: 0;
            margin-bottom: 32px;
        }

        .customerinfopage ul.sidegallery {
            flex-direction: row;
            grid-gap: 15px;
            order: 1;
            margin: 15px 0;
        }
        .customerinfopage .form-wapper .form-wapper_form {
            padding: 20px;
        }

    .form-wapper .form-wapper_logo svg {
        width: 100%;
        height: auto;
    }

    .form-wapper .form-wapper_header {
        padding: 20px 15px 30px;
    }
    footer.footer{
        margin-top: 3rem;
    }
}
   
/*Grid Wrapper css
    ===================================================*/
.content-inner-wrapper {
    background-color: var(--color-white);
    height: calc(100vh - 146px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 6px #0000001a;
}


/*main wrapper css
    ==========================================*/
.main-wrapper {
    height: 100vh;
}
    .main-wrapper .main-wrapper_content {
        height: 100%;
        width: calc(100% - 56px);
    }
        .main-wrapper .main-wrapper_content  .ag-theme-balham.all-City {
            height: 100%;
        }
        .main-wrapper .main-wrapper_content .ag-theme-balham.all-User {
            height: 100%;
        }
        .main-wrapper .main-wrapper_content .ag-grid-wrapper {
            height: 100%;
        }
        .main-wrapper .main-wrapper_content .ag-theme-balham .ag-root-wrapper {
            height: 100%;
            border-radius: 10px;
        }
/*main wrapper css
    =======================End===================*/

/*Sidebar css
    ==============================================*/
.sidebar {
    display: flex;
    flex-direction: column;
    width: 204px;
    background-color: #48484A;
    height: 100vh;
    transition: 0.3s ease-in-out;
    transition: var(--transition-primary);
    z-index: 2;
}

.sidebar-btn {
    width: 24.5px;
    height: 24.5px;
    right: -10px;
    padding: 2px;
    top: 10px;
    background-color: var(--secondary-color);
    border: 0.5px solid #fff;
    border-radius: 5.75px;
}
    .sidebar-btn:hover {
        background-color: var(--secondary-color);
        border-color: #fff;
    }
.sidebar .logo {
    z-index: 1;
    padding: 10px 15px 30px;
}

.sidebar .nav {
    flex-wrap: nowrap;
    max-height: calc(100% - 227px);
    overflow: auto;
    overflow-x: hidden;
}

.sidebar .nav-item ul {
    display: none;
}

    .sidebar .nav-item ul li a {
        padding-left: 48px;
        position: relative;
    }

    .sidebar .nav-item ul .active:before {
        content: "";
        width: 5px;
        height: 5px;
        background: #fff;
        position: absolute;
        border-radius: 100%;
        left: 24px;
    }

.sidebar .nav-item .nav-link {
    color: #fff;
    padding: 12px 21px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    grid-gap: 16px;
}
}

    .sidebar .nav-item .nav-link .menu-label {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .sidebar .nav-item .nav-link:hover, .sidebar .nav-item .nav-link.active {
        background-color: #3c3c3c;
        color: #fff;
    }

.sidebar .nav .toggleClass {
    background: #505050;
}

    .sidebar .nav .toggleClass .menu-label .icon svg {
        transform: rotate(180deg);
    }

    .sidebar .nav .toggleClass ul {
        display: block;
    }

/* Collapse Sidebar CSS ========================================================================== */
/*.collapseSidebar .sidebar {
    width: var(--collapse-sidebar-width) !important;
}

    .collapseSidebar .sidebar .logo {
        padding: 15px 6px !important;
    }

        .collapseSidebar .sidebar .logo img {
            width: 40px;
        }

    .collapseSidebar .sidebar .nav-item ul {
        display: none !important;
    }

    .collapseSidebar .sidebar .nav-item .menu-label {
        display: none !important;
    }

    .collapseSidebar .sidebar .tracker {
        flex-direction: column;
        width: 62px;
        padding: 8px !important;
        flex-direction: column-reverse;
    }

    .collapseSidebar .sidebar .tracker-box {
        min-width: 47px !important;
        height: 110px !important;
        padding: 8px !important;
        font-size: 9px !important;
    }

        .collapseSidebar .sidebar .tracker-box span {
            font-size: 9px !important;
        }

.collapseSidebar .sidebar-btn svg {
    transform: rotate(180deg);
}

.collapseSidebar .page-wrapper {
    */padding-left: var(--collapse-sidebar-width) !important;
}
/* Mobile Sidebar CSS ========================================================================== */
/*.mobileSidebar .sidebar {
    width: var(--sidebar-width) !important;
}

    .mobileSidebar .sidebar .nav {
        max-height: 100% !important;
    }*/
 
/*Sidebar css
    =================End=============================*/


.sidebar {
    width: 204px;
    height: 100vh;
    background-color: #333;
    position: fixed;
    top: 0;
    left: 0;
    transition: left 0.3s ease;
}

    .sidebar.hidden {
        width: 56px
    }

.btn {
    cursor: pointer;
}

/* Coupon Code css ===================*/

.coponcodeSection {
    position: relative;
    margin-left: auto;
}
@media (max-width: 490px) {
    .coponcodeSection {
        margin-bottom: 15px;
        width: 100%;
    }
}

.coponcodeSection .appliedcode { 
    width: 242px;
    background: #e9faf1;
    border-radius: 5px;
    border: 1px solid #01b57e;
    display: flex;
    align-items: center;
    grid-gap: 5px;
    padding: 5px;
}

.coponcodeSection .couponfield {
    position: relative;
    width: 227px;
}

    .coponcodeSection .couponfield .form-control {
        padding-right: 65px;
        max-width: 227px;
    }

    .coponcodeSection .couponfield .btn-apply {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0px 0.625rem;
        background: transparent !important;
        border: 0px;
        color: #d79f34 !important;
        font-weight: 500;
        height: 100%;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

.coponcodeSection .appliedcode .icon svg {
    width: 28px;
    color: #01b57e;
    fill: #01b57e;
}

.coponcodeSection .appliedcode .text {
    font-size: 10px;
    color: #525454;
    line-height: 1.3;
}

    .coponcodeSection .appliedcode .text h6 {
        font-weight: 600;
        font-size: 12px;
        color: #010101;
    }


.coponcodeSection .appliedcode .closecoupon, .coponcodeSection .appliedcode .closecoupon:hover {
    background-color: transparent !important;
    border: 0 !important;
    margin-left: auto;
    padding: 0.2rem;
    cursor: pointer;
}

    .coponcodeSection .appliedcode .closecoupon svg {
        width: 13px;
        fill: #989898;
    }

    .coponcodeSection .appliedcode .closecoupon:hover svg {
        fill: #000;
    }