@charset "UTF-8";
:root {
    --theme-color: #5465ff;
    --bs-body-color: #00162e;
}
@keyframes textNoise1 {
    0% {
        clip-path: inset(65% 0 69% 0);
    }
    10% {
        clip-path: inset(50% 0 87% 0);
    }
    20% {
        clip-path: inset(48% 0 53% 0);
    }
    30% {
        clip-path: inset(41% 0 22% 0);
    }
    40% {
        clip-path: inset(31% 0 61% 0);
    }
    50% {
        clip-path: inset(18% 0 3% 0);
    }
    60% {
        clip-path: inset(36% 0 5% 0);
    }
    70% {
        clip-path: inset(40% 0 65% 0);
    }
    80% {
        clip-path: inset(29% 0 53% 0);
    }
    90% {
        clip-path: inset(2% 0 95% 0);
    }
    to {
        clip-path: inset(62% 0 53% 0);
    }
}
@keyframes textNoise2 {
    0% {
        clip-path: inset(10% 0 63% 0);
    }
    10% {
        clip-path: inset(97% 0 59% 0);
    }
    20% {
        clip-path: inset(59% 0 63% 0);
    }
    30% {
        clip-path: inset(27% 0 19% 0);
    }
    40% {
        clip-path: inset(69% 0 37% 0);
    }
    50% {
        clip-path: inset(45% 0 43% 0);
    }
    60% {
        clip-path: inset(28% 0 59% 0);
    }
    70% {
        clip-path: inset(79% 0 89% 0);
    }
    80% {
        clip-path: inset(10% 0 62% 0);
    }
    90% {
        clip-path: inset(66% 0 74% 0);
    }
    to {
        clip-path: inset(97% 0 43% 0);
    }
}
body {
    font-family: Poppins, sans-serif;
    position: relative;
    background-color: #f6f6f699;
    font-size: 14px;
    overflow-x: hidden;
    color: #313131;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}
h1 {
    font-size: 60px;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
}
h1 span {
    font-size: 107px;
    font-weight: 700;
    color: var(--primary-color);
}
h2 {
    font-size: 36px;
    color: #222;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}
h3 {
    font-size: 24px;
    font-weight: 400;
    color: #777;
    letter-spacing: 0.03em;
}
h4 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1;
}
h5 {
    font-size: 16px;
    font-weight: 400;
    color: #00162e;
    line-height: 24px;
    letter-spacing: 0.05em;
}
h6 {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    line-height: 24px;
}
ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
    padding-right: 0;
}
li {
    display: inline-block;
}
p {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.7px;
    color: #777;
}
a {
    transition: 0.5s ease;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    transition: 0.5s ease;
}
a:focus {
    outline: none;
}
* a {
    color: #5465ff;
}
label {
    margin-bottom: 0.5rem;
}
:focus {
    outline: none;
}
.form-control:focus {
    box-shadow: none;
}
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
:focus {
    outline-color: #5465ff;
}
.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
svg {
    vertical-align: baseline;
}
input:focus {
    outline-color: transparent;
}
.form-group {
    margin-bottom: 24px;
}
.form-group:last-child {
    margin-bottom: 0;
}
.col-md-2 {
    width: 20%;
}
.col-md-10 {
    width: 80%;
}
.col-sm-3 {
    width: 30%;
}
.col-sm-9 {
    width: 70%;
}
.col-sm-1 {
    width: 14%;
}
.col-sm-11 {
    width: 86%;
}
.media {
    display: flex;
    align-items: flex-start;
}
.media .media-body {
    flex: 1;
}
.form-check,
.form-radio,
.input-group-append {
    display: flex;
}
.row div[class*="col-"],
.row .col {
    position: relative;
}
.text-muted {
    color: #00162e !important;
}
.image-list {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.image-list .image-list-detail {
    position: relative;
}
.image-list .image-list-item {
    width: 90px;
    height: 90px;
    background-color: #edeff199;
    border-radius: 8px;
    margin: 0 0 0 2px;
    border: 1px solid #edeff1;
    padding: 7px;
    object-fit: contain;
    box-shadow: 1px 5px 24px #4466f20d;
}
.image-list .close-icon {
    position: absolute;
    right: -11px;
    top: -10px;
    width: 20px;
    height: 20px;
    color: #fff;
    cursor: pointer;
    background-color: #00162e;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-list .close-icon svg {
    width: 16px;
    height: 16px;
}
.error-note {
    background-color: #ff4b4b1a;
    border: 1px solid rgba(255, 75, 75, 0.14);
    color: #ff4b4b;
    padding: 5px 10px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 12px;
}
.error-note p {
    margin: 0;
    line-height: 1.5;
    color: #ff4b4b;
}
.error-note svg {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    color: #ff4b4b;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.color-picker {
    font-size: 15px;
    font-weight: 400;
    color: #00162e;
}
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s infinite linear;
    -webkit-animation: spin 1s infinite linear;
}
.spinner.dark-spinner {
    border: 2px solid #00162e;
    border-top-color: transparent;
}
@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
.custom-scrollbar::-webkit-scrollbar-track,
.custom-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #e8ebf2;
}
.custom-scrollbar::-webkit-scrollbar,
.custom-scroll::-webkit-scrollbar {
    width: 6px;
    height: 5px;
}
.custom-scrollbar::-webkit-scrollbar-thumb,
.custom-scroll::-webkit-scrollbar-thumb {
    background-color: #5465ff1a;
    border-radius: 100px;
}
.h-custom-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #e8ebf2;
}
.h-custom-scroll::-webkit-scrollbar {
    width: 6px;
    height: 4px;
}
.h-custom-scroll::-webkit-scrollbar-thumb {
    background-color: #5465ff1a;
}
.select2-results__options::-webkit-scrollbar-track {
    background-color: #00162e0a;
}
.select2-results__options::-webkit-scrollbar {
    width: 3px;
}
.select2-results__options::-webkit-scrollbar-thumb {
    background-color: #5465ff;
    height: 4px;
}
.p-sticky {
    position: sticky;
    top: 107px;
}
.cursor-pointer {
    cursor: pointer;
}
.theme-color {
    color: #5465ff;
}
.activity-dot-FDB448 {
    background-color: #fdb448;
    outline: 5px solid rgba(253, 180, 72, 0.25);
}
.activity-dot-48BFFD {
    background-color: #48bffd;
    outline: 5px solid rgba(72, 191, 253, 0.25);
}
.activity-dot-AD46FF {
    background-color: #ad46ff;
    outline: 5px solid rgba(173, 70, 255, 0.25);
}
.activity-dot-FF4B4B {
    background-color: #ff4b4b;
    outline: 5px solid rgba(255, 75, 75, 0.25);
}
.activity-dot-FF7456 {
    background-color: #ff7456;
    outline: 5px solid rgba(255, 116, 86, 0.25);
}
.activity-dot-FF1D53 {
    background-color: #ff1d53;
    outline: 5px solid rgba(255, 29, 83, 0.25);
}
.activity-dot-5465FF {
    background-color: #27af4d;
    outline: 5px solid rgba(39, 175, 77, 0.25);
}
.activity-dot-5498FF {
    background-color: #5498ff;
    outline: 5px solid rgba(84, 152, 255, 0.25);
}
.activity-dot-primary {
    background-color: #5465ff;
    outline: 5px solid rgba(84, 101, 255, 0.25);
}
@keyframes round {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}
.booking-status-FDB448 {
    background-color: #fdb4481a;
    color: #fdb448 !important;
}
.booking-status-FDB448:hover {
    color: #fdb448;
}
.booking-status-48BFFD {
    background-color: #48bffd1a;
    color: #48bffd !important;
}
.booking-status-48BFFD:hover {
    color: #48bffd;
}
.booking-status-AD46FF {
    background-color: #ad46ff1a;
    color: #ad46ff !important;
}
.booking-status-AD46FF:hover {
    color: #ad46ff;
}
.booking-status-FF4B4B {
    background-color: #ff4b4b1a;
    color: #ff4b4b !important;
}
.booking-status-FF4B4B:hover {
    color: #ff4b4b;
}
.booking-status-FF7456 {
    background-color: #ff74561a;
    color: #ff7456 !important;
}
.booking-status-FF7456:hover {
    color: #ff7456;
}
.booking-status-FF1D53 {
    background-color: #ff1d531a;
    color: #ff1d53 !important;
}
.booking-status-FF1D53:hover {
    color: #ff1d53;
}
.booking-status-5465FF {
    background-color: #27af4d1a;
    color: #27af4d !important;
}
.booking-status-5465FF:hover {
    color: #27af4d;
}
.booking-status-5498FF {
    background-color: #5498ff1a;
    color: #5498ff !important;
}
.booking-status-5498FF:hover {
    color: #5498ff;
}
.badge {
    font-weight: 600;
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}
.badge-primary {
    background-color: #5465ff;
    color: #fff;
}
.badge-success {
    background-color: #27af4d;
    color: #fff;
}
.badge-warning {
    background-color: #ffbc58;
    color: #fff;
}
.badge-info {
    background-color: #00a8ff;
    color: #fff;
}
.badge-danger {
    background-color: #ff4b4b;
    color: #fff;
}
.badge-light {
    background-color: #f7f8f9;
    color: #fff;
}
.badge-primary-light {
    background-color: #5465ff1a;
    color: #5465ff;
}
.badge-success-light {
    background-color: #27af4d1a;
    color: #27af4d;
}
.badge-warning-light {
    background-color: #ffbc581a;
    color: #ffbc58;
}
.badge-info-light {
    background-color: #00a8ff1a;
    color: #00a8ff;
}
.badge-danger-light {
    background-color: #ff4b4b1a;
    color: #ff4b4b;
}
.badge-light-light {
    background-color: #f7f8f91a;
    color: #f7f8f9;
}
.text-primary {
    color: #5465ff !important;
}
.text-success {
    color: #27af4d !important;
}
.text-warning {
    color: #ffbc58 !important;
}
.text-info {
    color: #00a8ff !important;
}
.text-danger {
    color: #ff4b4b !important;
}
.text-light {
    color: #f7f8f9 !important;
}
.btn-primary {
    background-color: #5465ff;
    color: #fff !important;
    border-color: #5465ff;
}
.btn-primary:hover,
.btn-primary:active {
    background-color: #5465ffe6;
    color: #fff !important;
    border-color: #5465ffe6;
}
.btn-success {
    background-color: #27af4d;
    color: #fff !important;
    border-color: #27af4d;
}
.btn-success:hover,
.btn-success:active {
    background-color: #27af4de6;
    color: #fff !important;
    border-color: #27af4de6;
}
.btn-warning {
    background-color: #ffbc58;
    color: #fff !important;
    border-color: #ffbc58;
}
.btn-warning:hover,
.btn-warning:active {
    background-color: #ffbc58e6;
    color: #fff !important;
    border-color: #ffbc58e6;
}
.btn-info {
    background-color: #00a8ff;
    color: #fff !important;
    border-color: #00a8ff;
}
.btn-info:hover,
.btn-info:active {
    background-color: #00a8ffe6;
    color: #fff !important;
    border-color: #00a8ffe6;
}
.btn-danger {
    background-color: #ff4b4b;
    color: #fff !important;
    border-color: #ff4b4b;
}
.btn-danger:hover,
.btn-danger:active {
    background-color: #ff4b4be6;
    color: #fff !important;
    border-color: #ff4b4be6;
}
.btn-light {
    background-color: #f7f8f9;
    color: #fff !important;
    border-color: #f7f8f9;
}
.btn-light:hover,
.btn-light:active {
    background-color: #f7f8f9e6;
    color: #fff !important;
    border-color: #f7f8f9e6;
}
.btn-outline-primary {
    background-color: transparent;
    color: #5465ff !important;
    border-color: #5465ff;
}
.btn-outline-primary input {
    color: #5465ff !important;
}
.btn-outline-primary:hover {
    background-color: #5465ff;
    color: #fff;
    border-color: #5465ff;
}
.btn-outline-primary:hover input {
    color: #fff !important;
}
.btn-outline-primary:hover i {
    --Iconsax-Color: #fff;
}
.btn-outline-success {
    background-color: transparent;
    color: #27af4d !important;
    border-color: #27af4d;
}
.btn-outline-success input {
    color: #27af4d !important;
}
.btn-outline-success:hover {
    background-color: #27af4d;
    color: #fff;
    border-color: #27af4d;
}
.btn-outline-success:hover input {
    color: #fff !important;
}
.btn-outline-success:hover i {
    --Iconsax-Color: #fff;
}
.btn-outline-warning {
    background-color: transparent;
    color: #ffbc58 !important;
    border-color: #ffbc58;
}
.btn-outline-warning input {
    color: #ffbc58 !important;
}
.btn-outline-warning:hover {
    background-color: #ffbc58;
    color: #fff;
    border-color: #ffbc58;
}
.btn-outline-warning:hover input {
    color: #fff !important;
}
.btn-outline-warning:hover i {
    --Iconsax-Color: #fff;
}
.btn-outline-info {
    background-color: transparent;
    color: #00a8ff !important;
    border-color: #00a8ff;
}
.btn-outline-info input {
    color: #00a8ff !important;
}
.btn-outline-info:hover {
    background-color: #00a8ff;
    color: #fff;
    border-color: #00a8ff;
}
.btn-outline-info:hover input {
    color: #fff !important;
}
.btn-outline-info:hover i {
    --Iconsax-Color: #fff;
}
.btn-outline-danger {
    background-color: transparent;
    color: #ff4b4b !important;
    border-color: #ff4b4b;
}
.btn-outline-danger input {
    color: #ff4b4b !important;
}
.btn-outline-danger:hover {
    background-color: #ff4b4b;
    color: #fff;
    border-color: #ff4b4b;
}
.btn-outline-danger:hover input {
    color: #fff !important;
}
.btn-outline-danger:hover i {
    --Iconsax-Color: #fff;
}
.btn-outline-light {
    background-color: transparent;
    color: #f7f8f9 !important;
    border-color: #f7f8f9;
}
.btn-outline-light input {
    color: #f7f8f9 !important;
}
.btn-outline-light:hover {
    background-color: #f7f8f9;
    color: #fff;
    border-color: #f7f8f9;
}
.btn-outline-light:hover input {
    color: #fff !important;
}
.btn-outline-light:hover i {
    --Iconsax-Color: #fff;
}
.btn-outline-primary i {
    --Iconsax-Color: var(--theme-color);
}
.btn-outline-secondary i {
    --Iconsax-Color: #ff6161;
}
.btn-outline-success i {
    --Iconsax-Color: #27af4d;
}
.btn-outline-info i {
    --Iconsax-Color: #00a8ff;
}
.btn-outline-warning i {
    --Iconsax-Color: #ffbc58;
}
.btn-outline-danger i {
    --Iconsax-Color: #27af4d;
}
.btn-outline-tertairy i {
    --Iconsax-Color: #ad46ff;
}
.instruction-box {
    margin-top: 28px;
}
.instruction-box .instruction-title h4 {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 9px;
}
.instruction-box .list-box {
    margin-top: 20px;
}
.instruction-box .list-box h5,
.instruction-box .list-box .h5 {
    margin-bottom: 9px;
    font-size: 17px;
    color: #00162ecc;
    font-weight: 600;
}
.instruction-box .list-box ul {
    list-style-type: disc;
    padding-left: 20px;
    display: grid;
    gap: 5px;
}
.instruction-box .list-box ul li {
    color: #4a5568;
    font-weight: 300;
    display: list-item;
}
.instruction-box p {
    line-height: 1.7;
    letter-spacing: 0.4px;
    font-weight: 600;
    font-size: 14px;
}
.notify-main {
    position: relative;
    width: calc(273px + (300 - 273) * ((100vw - 991px) / (1920 - 991)));
    margin: 0 auto;
}
@media (max-width: 991.98px) {
    .notify-main {
        width: calc(225px + (280 - 225) * ((100vw - 320px) / (992 - 320)));
    }
}
.notify-img {
    width: 100%;
    height: 100%;
}
.push-notification .form-group:last-child {
    margin-top: calc(17px + (30 - 17) * ((100vw - 320px) / (1920 - 320)));
    padding-top: calc(15px + 0.00625 * (100vw - 320px));
    border-top: 1px dashed rgba(0, 22, 46, 0.1);
}
.notification-mobile-box {
    background-color: #edeff166;
    border: 1px solid #edeff1;
    border-radius: 10px;
    padding: calc(9px + (12 - 9) * ((100vw - 320px) / (1920 - 320))) calc(9px + (16 - 9) * ((100vw - 320px) / (1920 - 320)));
}
.notify-content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%);
    width: 84%;
    border-radius: 8px;
    box-shadow: 0 4px 8px #0000001a;
    opacity: 0.9;
    padding: 5px;
}
.notify-content .current-time {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
}
.notify-content .notifi-head {
    margin-top: 3px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
}
.notify-content .notifi-head h5 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #00162e80;
    line-height: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    text-align: start;
    word-break: break-all;
    font-size: 15px;
    color: #222;
    display: inline-block;
    width: auto;
}
.notify-content .notifi-footer {
    margin-top: 11px;
}
.notify-content .notifi-footer h5 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #00162e;
    line-height: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    text-align: start;
    word-break: break-all;
}
.notify-content .notifi-footer p {
    text-align: start;
    font-size: 11px;
    line-height: 1.4;
    margin-top: 5px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0;
}
.notify-content .notify-data {
    background-color: #ffffffe6;
    padding: 15px 13px;
    border-radius: 7px;
    margin: 5px;
    position: relative;
}
.notify-content .notify-data .title {
    display: flex;
    align-items: center;
    gap: 2px;
    border-radius: 6px;
}
.notify-content .notify-data .title i {
    font-size: 1px;
    color: #00162e;
    line-height: 1;
}
.notify-content .notify-data .title h5 {
    font-size: 10px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
}
.notify-content .notify-data i {
    color: #00162e80;
    font-size: 2px;
    line-height: 1;
}
.notify-content .notify-data .message {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    border-radius: 6px;
}
.notify-content .notify-data .message img {
    width: 20px;
    height: auto;
}
.notify-content .notify-data .message span {
    font-size: 10px;
    font-weight: 400;
    color: #00162ea6;
    line-height: 1;
    text-transform: capitalize;
    white-space: nowrap;
}
.notify-content .notify-data .message p {
    text-align: start;
    font-size: 11px;
    line-height: 1.2;
    margin-top: 4px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0;
}
.note {
    font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
    color: #7a8591;
    margin-bottom: 33px;
    padding-bottom: 19px;
    border-bottom: 1px solid #f7f8f9;
}
.note a {
    font-weight: 600;
}
label.error:empty {
    display: none !important;
}
.theme-accordion {
    margin-top: 18px;
}
.theme-accordion .accordion-item {
    border: 1px solid #edeff1;
    background-color: transparent;
    border-radius: 6px;
}
.theme-accordion .accordion-item + .accordion-item {
    margin-top: 19px;
}
.theme-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    font-weight: 400;
    color: #00162e;
    background-color: #edeff166;
    box-shadow: none;
    font-family: inherit;
    padding: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320))) calc(17px + (22 - 17) * ((100vw - 320px) / (1920 - 320)));
}
.theme-accordion .accordion-item .accordion-header .accordion-button:after {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    border: none;
    background: unset;
    width: auto;
    height: auto;
    font-size: 21px;
    line-height: 1;
    color: #777;
}
.theme-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: #edeff1;
    font-weight: 500;
}
.theme-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
    font-weight: 400;
    color: #222;
}
.theme-accordion .accordion-item .accordion-body {
    padding: calc(10px + 0.00375 * (100vw - 320px)) calc(14px + 0.00375 * (100vw - 320px));
}
button {
    cursor: pointer;
}
button:focus {
    outline: none;
}
button:disabled {
    cursor: not-allowed;
}
.btn {
    font-size: 14px;
    padding: calc(7px + 0.00125 * (100vw - 320px)) calc(14px + 0.00375 * (100vw - 320px));
    border-radius: 6px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    --Iconsax-Size: 20px;
    --Iconsax-Color: #fff;
}
.btn.btn-primary {
    background-color: #5465ff;
    border: 1px solid #5465ff;
}
.btn:focus {
    box-shadow: none !important;
}
.btn.btn-secondary {
    background-color: #ff6161;
    border: 1px solid #ff6161;
}
.btn.btn-secondary:active,
.btn.btn-secondary:focus {
    background-color: #ff6161;
    border: 1px solid #ff6161;
    box-shadow: none;
}
.btn.btn-secondary .cancel {
    background-color: #00162e0a;
    color: #00162ecc;
}
.btn.btn-secondary span {
    color: #fff !important;
    font-size: 14px !important;
}
.btn.btn-secondary.deleteConfirmationBtn {
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn.btn-gray {
    background-color: #00162e0a;
    border: 1px solid rgba(0, 22, 46, 0.01);
    color: #00162ecc;
}
.btn.btn-gray:focus {
    background-color: #00162e0a;
    border: 1px solid rgba(0, 22, 46, 0.01);
    color: #00162ecc;
}
.remove-time-slot {
    background-color: #ff4b4b;
    height: 35px;
    width: 35px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remove-time-slot svg {
    height: 18px;
    width: 18px;
    color: #fff;
}
.btn-close:focus {
    box-shadow: none;
}
.edit-button {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-left: auto;
    margin-top: 24px;
}
.btn-popup a {
    background-color: #5465ff;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-popup a.btn:hover {
    color: #fff;
    background-color: #5465ff;
}
.btn-popup i {
    --Iconsax-Size: 19px;
    --Iconsax-Color: White;
}
.credit,
.debit {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px !important;
}
.credit input,
.debit input {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #fff;
    font-size: 14px;
}
.credit svg,
.debit svg {
    width: 20px;
    height: 20px;
}
.badge-version-primary {
    background-color: #5465ff1a !important;
    color: #5465ff;
    border: 1px solid #5465ff;
}
.badge-version-secondary {
    background-color: #ff61611a !important;
    color: #ff6161;
    border: 1px solid #ff6161;
}
.badge-version-success {
    background-color: #27af4d1a !important;
    color: #27af4d;
    border: 1px solid #27af4d;
}
.badge-version-danger {
    background-color: #ff4b4b1a !important;
    color: #ff4b4b;
    border: 1px solid #ff4b4b;
}
.badge-version-info {
    background-color: #00a8ff1a !important;
    color: #00a8ff;
    border: 1px solid #00a8ff;
}
.badge-version-light {
    background-color: #f7f8f91a !important;
    color: #f7f8f9;
    border: 1px solid #f7f8f9;
}
.badge-version-dark {
    background-color: #00162e1a !important;
    color: #00162e;
    border: 1px solid #00162e;
}
.badge-version-warning {
    background-color: #ffbc581a !important;
    color: #ffbc58;
    border: 1px solid #ffbc58;
}
[class*="badge-version-"].badge {
    border-radius: 0.3125rem;
    padding: 5px 10px;
    display: inline-block;
    width: max-content;
    height: auto;
    font-weight: 700;
    letter-spacing: 0.75px;
    line-height: 1.1;
}
.flatpickr-calendar {
    z-index: 3;
    width: 324.875px;
    padding: 16px;
}
.flatpickr-calendar.open {
    z-index: 6;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
    display: none;
}
.flatpickr-calendar .flatpickr-innerContainer {
    font-size: 14px;
    background-color: #edeff166;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}
.flatpickr-calendar .flatpickr-weekdays {
    padding: 16px 16px 0;
}
.flatpickr-calendar .flatpickr-weekdays .flatpickr-weekdaycontainer .flatpickr-weekday {
    color: #5465ff;
    font-size: 16px;
}
.flatpickr-calendar .flatpickr-day {
    max-width: 37px;
    height: 35px;
    line-height: 35px;
    color: #00162e;
    font-size: 16px;
    box-shadow: none !important;
}
.flatpickr-calendar .flatpickr-day:hover {
    background-color: #5465ff1a;
    color: #5465ff;
    font-weight: 600;
}
.flatpickr-calendar .flatpickr-day.today {
    background-color: transparent;
    color: #00162e;
    border: none;
}
.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.startRange,
.flatpickr-calendar .flatpickr-day.endRange {
    color: #fff;
    background-color: #5465ff;
    box-shadow: none !important;
}
.flatpickr-calendar .flatpickr-day.prevMonthDay,
.flatpickr-calendar .flatpickr-day.flatpickr-disabled,
.flatpickr-calendar .flatpickr-day.flatpickr-disabled:hover,
.flatpickr-calendar .flatpickr-day.nextMonthDay,
.flatpickr-calendar .flatpickr-day.notAllowed,
.flatpickr-calendar .flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-calendar .flatpickr-day.notAllowed.nextMonthDay {
    color: #898989;
}
.flatpickr-calendar .flatpickr-day.inRange {
    background-color: #5465ff1a;
    box-shadow: none;
}
.flatpickr-calendar .flatpickr-day.inRange.today {
    background-color: #5465ff;
}
.flatpickr-calendar .flatpickr-day.nextMonthDay.selected,
.flatpickr-calendar .flatpickr-day.nextMonthDay.startRange,
.flatpickr-calendar .flatpickr-day.nextMonthDay.endRange {
    color: #fff;
    background-color: #5465ff;
    box-shadow: none !important;
}
.flatpickr-calendar .dayContainer {
    padding: 16px;
}
.flatpickr-calendar .flatpickr-months {
    margin-bottom: 16px;
}
.flatpickr-calendar .flatpickr-months .flatpickr-month {
    color: #00162e;
}
.flatpickr-calendar .flatpickr-months .flatpickr-current-month {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.flatpickr-calendar .flatpickr-months .flatpickr-current-month input.cur-year {
    font-size: 16px;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
    background-color: #edeff166;
    border-radius: 100%;
    padding: 8px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 18px;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover svg {
    fill: #00162e;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month svg {
    width: 12px;
    height: 12px;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month {
    left: 16px !important;
}
.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
    right: 16px !important;
}
.flatpickr-calendar .flatpickr-months .flatpickr-monthDropdown-months {
    background-color: #edeff166;
    border-radius: 6px;
    font-size: 16px;
    padding: 6px 12px;
}
.flatpickr-calendar .flatpickr-months .numInputWrapper {
    background-color: #edeff166;
    border-radius: 6px;
    font-size: 14px;
    padding: 6px 12px;
    width: 80px;
}
.flatpickr-calendar .numInputWrapper:hover {
    background-color: #5465ff0a;
}
.flatpickr-calendar .numInputWrapper:hover span {
    border: none;
}
.flatpickr-calendar .numInputWrapper span:hover {
    background-color: unset;
    border: none;
}
.flatpickr-calendar .numInputWrapper span.arrowUp:after {
    top: 55%;
}
.flatpickr-calendar .numInputWrapper span.arrowDown:after {
    top: 20%;
}
.flatpickr-calendar.hasTime .flatpickr-time {
    border: none;
    line-height: unset;
    gap: 10px;
}
.flatpickr-calendar.hasTime .flatpickr-time:after {
    display: none;
}
.flatpickr-calendar.hasTime .flatpickr-time .numInputWrapper input {
    border: 1px solid rgba(84, 101, 255, 0.6);
    border-radius: 8px;
}
.flatpickr-calendar.hasTime .flatpickr-time .numInputWrapper input:hover,
.flatpickr-calendar.hasTime .flatpickr-time .numInputWrapper input:focus {
    background: transparent;
}
.flatpickr-calendar.hasTime .flatpickr-time .numInputWrapper span {
    right: 16px;
}
.flatpickr-calendar.hasTime .flatpickr-time .numInputWrapper span.arrowUp:after {
    border-bottom-color: #5465ff;
    border-width: 5px;
    top: unset;
    bottom: 13%;
}
.flatpickr-calendar.hasTime .flatpickr-time .numInputWrapper span.arrowDown:after {
    border-top-color: #5465ff;
    border-width: 5px;
    top: 13%;
}
.flatpickr-calendar.hasTime .flatpickr-time input {
    text-align: left;
    padding-left: 20px;
    font-size: 18px;
    color: #5465ff;
    font-weight: 500;
}
.flatpickr-calendar.hasTime .flatpickr-time .flatpickr-time-separator {
    width: 2%;
    color: #5465ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.flatpickr-calendar.hasTime .flatpickr-time .flatpickr-am-pm {
    height: 40px;
    position: relative;
    z-index: 0;
    width: 29%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #5465ff;
    border: 1px solid rgba(84, 101, 255, 0.6);
    border-radius: 8px;
}
.flatpickr-calendar.hasTime .flatpickr-time .flatpickr-am-pm:hover {
    background-color: #5465ff0a;
}
.main-inline-calender.input-group {
    flex-direction: column;
}
.main-inline-calender.input-group .form-control {
    width: 100%;
    border-radius: 6px !important;
    color: #5465ff;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
}
.main-inline-calender.input-group .form-control:focus {
    border: none;
}
.main-inline-calender.input-group .form-control:focus,
.main-inline-calender.input-group .form-control:disabled {
    box-shadow: unset;
    border: none;
    background-color: unset;
}
.main-inline-calender.input-group .form-control[readonly] {
    box-shadow: unset;
    border: none;
    background-color: unset;
}
.main-inline-calender.input-group .flatpickr-calendar.inline {
    width: 100%;
    border-radius: 6px !important;
}
.main-inline-calender.input-group .flatpickr-innerContainer,
.main-inline-calender.input-group .flatpickr-rContainer {
    display: block;
}
.main-inline-calender.input-group .flatpickr-rContainer .flatpickr-weekdays,
.main-inline-calender.input-group .flatpickr-rContainer .flatpickr-days {
    width: 100%;
}
.main-inline-calender.input-group .flatpickr-rContainer .flatpickr-days .dayContainer {
    width: 100%;
    max-width: none;
    min-width: unset;
    gap: 20px;
}
.main-inline-calender.input-group .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day {
    border-radius: 100%;
    width: 100%;
    color: #00162e;
}
.main-inline-calender.input-group .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day:hover {
    color: #5465ff;
}
.main-inline-calender.input-group .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day.selected,
.main-inline-calender.input-group .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day.today {
    color: #fff;
}
.input-icon {
    position: absolute;
    top: 14px;
    right: 28px;
    --Iconsax-Size: 20px;
    --Iconsax-Color: #808b97;
    z-index: 3;
}
.card {
    border: 0px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 8px;
    box-shadow: 1px 5px 24px #4466f20d;
}
.card .card-header {
    background-color: #fff;
    border-bottom: none;
    padding: 20px;
    border-bottom: 1px solid #f7f8f9;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px;
}
.card .card-header .header-img {
    display: flex;
    align-items: center;
    gap: 8px;
}
.card .card-header .header-img img {
    height: 20px;
}
.card .card-header .status-div {
    display: flex;
    align-items: center;
    gap: 16px;
}
.card .card-header .status-div label {
    margin: 0;
    font-weight: 500;
}
.card .card-header .select2 {
    width: 149px !important;
    margin: 0;
}
.card .card-header .nav-material {
    margin-bottom: -13px;
}
.card .card-header .card-header-right {
    border-radius: 0 0 0 7px;
    right: 20px;
    top: 25px;
    display: inline-block;
    padding: 7px 0;
    position: absolute;
}
.card .card-header .card-header-right .card-option {
    text-align: right;
    width: 35px;
    height: 20px;
    overflow: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.card .card-header .card-header-right .card-option li {
    display: inline-block;
}
.card .card-header .card-header-right i {
    margin: 0 5px;
    cursor: pointer;
    color: #2a3142;
    line-height: 20px;
}
.card .card-header .card-header-right i.icofont-refresh {
    font-size: 13px;
}
.card .card-header .btn-action {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.card .card-header h5 {
    font-size: 20px;
    margin-bottom: 0;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 25px;
    color: #00162e;
}
.card .card-header > span {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
    display: block;
    letter-spacing: 1px;
}
.card .card-header .btn-popup a {
    background-color: #5465ff;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.card .card-header .btn-popup a.link-btn {
    background-color: transparent;
    padding: 0;
    text-decoration: underline;
    border: none;
}
.card .card-header .btn-popup svg {
    width: 18px;
    height: 18px;
    color: #fff;
}
.card .card-header span {
    font-size: 13px;
    color: #00162eb3;
}
.card .card-header .view-all {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}
.card .card-header .view-all svg {
    width: 20px;
    height: 20px;
    color: #5465ff;
    transform: translate(0);
    transition: all 0.2s ease;
}
.card .card-header .view-all:hover {
    text-decoration: underline;
    color: #5465ff;
}
.card .card-header .view-all:hover svg {
    transform: translate(5px);
    transition: all 0.2s ease;
}
.card .card-body {
    padding: 20px;
    background-color: transparent;
}
.card .card-body p:last-child {
    margin-bottom: 0;
}
.card .sub-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    margin-bottom: 8px;
    font-size: 18px;
}
.card-header:has(.btn-action .btn-popup) ~ .card-body .common-table-select {
    top: 101px;
}
.footer,
.profile-btn {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 24px;
    gap: 12px;
}
.footer .submit-form,
.footer .cancel,
.profile-btn .submit-form,
.profile-btn .cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 !important;
}
.footer .submit-form input,
.footer .submit-form a,
.footer .cancel input,
.footer .cancel a,
.profile-btn .submit-form input,
.profile-btn .submit-form a,
.profile-btn .cancel input,
.profile-btn .cancel a {
    color: #fff;
    border: none;
    background-color: transparent;
    margin: 0;
    padding: calc(7px + 0.00125 * (100vw - 320px)) calc(14px + 0.00375 * (100vw - 320px));
    font-size: calc(14px + 0.00125 * (100vw - 320px));
}
.footer .submit-form .spinner-border,
.footer .cancel .spinner-border,
.profile-btn .submit-form .spinner-border,
.profile-btn .cancel .spinner-border {
    margin-right: 20px;
    margin-left: -8px;
}
.footer .cancel,
.profile-btn .cancel {
    background-color: #00162e0a;
    border: 1px solid rgba(0, 22, 46, 0.01);
    border-radius: 6px;
    font-size: 14px;
    padding: calc(7px + 0.00125 * (100vw - 320px)) calc(14px + 0.00375 * (100vw - 320px)) !important;
    color: #00162ecc;
}
.footer .cancel .spinner-border,
.profile-btn .cancel .spinner-border {
    color: #00162eb3;
    border-width: 0.18em;
}
.footer .cancel:focus,
.footer .cancel:active,
.profile-btn .cancel:focus,
.profile-btn .cancel:active {
    border: 1px solid rgba(0, 22, 46, 0.01);
    background-color: #00162e0a;
}
.footer .btn-primary:hover {
    background-color: #5465ffe6;
    border-color: transparent;
}
.footer .btn.cancel:hover {
    background-color: #00162e0f;
}
.button-container {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 11px;
}
.button-container .shortcode-button {
    background-color: #5465ff21;
    border: none;
    color: var(--theme-color);
    padding: 12px 21px;
    font-size: 15px;
    border-radius: 6px;
    font-weight: 500;
    white-space: nowrap;
}
.button-container .shortcode-button.active {
    background-color: var(--theme-color);
    color: #fff;
}
.button-container .shortcode-button:active {
    background-color: #5465ff33;
    color: var(--theme-color);
}
.user-details-dashboard .button-container {
    margin-bottom: calc(18px + (23 - 18) * ((100vw - 320px) / (1920 - 320)));
    display: flex;
    align-items: center;
    padding: calc(11px + 0.0025 * (100vw - 320px)) 0 0;
    gap: calc(6px + (11 - 6) * ((100vw - 320px) / (1920 - 320)));
    border-bottom: 1px solid #edeff1;
    overflow-x: hidden;
}
.user-details-dashboard .button-container .shortcode-button {
    border: none;
    border-bottom: 1px solid transparent;
    padding: 0 calc(14px + (21 - 14) * ((100vw - 320px) / (1920 - 320))) calc(7px + 0.0025 * (100vw - 320px));
    font-size: calc(14px + 0.00125 * (100vw - 320px));
    border-radius: 0;
    font-weight: 500;
    color: #777;
    background-color: transparent;
}
.user-details-dashboard .button-container .shortcode-button.active {
    border-color: var(--theme-color);
    color: var(--theme-color);
    font-weight: 600;
}
@media (max-width: 575px) {
    .user-details-dashboard .button-container .shortcode-button.active {
        font-weight: 500;
    }
}
.user-details-dashboard .button-container .shortcode-button:active {
    border-color: var(--theme-color);
    color: var(--theme-color);
}
@media (max-width: 575px) {
    .user-details-dashboard .button-container .shortcode-button:active {
        font-weight: 500;
    }
}
.user-details-dashboard > .card .card-body.common-table {
    padding: 0;
}
.tox.tox-tinymce {
    background-color: #edeff166;
    border: 1px solid #edeff1 !important;
    border-radius: 10px !important;
    padding: 0;
    min-height: 350px;
}
.tox.tox-tinymce .tox-toolbar-overlord {
    background-color: unset !important;
}
.tox.tox-tinymce .tox-toolbar-overlord .tox-toolbar {
    background: unset !important;
    border-bottom: 1px solid rgba(0, 22, 46, 0.2);
    cursor: pointer;
}
.tox.tox-tinymce .tox-edit-area__iframe {
    background-color: unset !important;
}
.tox.tox-tinymce .tox-statusbar__path {
    font-size: 14px;
}
.tox.tox-tinymce .tox-statusbar {
    height: 30px !important;
    padding: 16px 12px !important;
    background-color: unset !important;
}
.tox.tox-tinymce .tox-tbtn svg {
    color: #222f3ecc;
}
.tox .tox-split-button:hover {
    box-shadow: none !important;
}
.mce-content-body {
    font-size: 14px !important;
    height: calc(100% - 20px);
}
.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks):before {
    color: #00162e80;
    content: attr(data-mce-placeholder);
    position: absolute;
    font-weight: 400;
    font-size: 14px;
}
.contentbox {
    position: relative;
    background: #ffffff;
    letter-spacing: 0.5px;
    border-radius: 12px;
}
.contentbox .contentbox-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 25px;
}
.contentbox .contentbox-title h3 {
    font-size: calc(17px + 0.00125 * (100vw - 320px));
    font-weight: 600;
    color: #00162e;
}
.contentbox .contentbox-title .header-action {
    display: flex;
    align-items: center;
}
.contentbox .contentbox-title .header-action i {
    font-size: 22px;
    line-height: 1;
    color: #00162e;
    cursor: pointer;
}
.contentbox .contentbox-title .action-btn {
    gap: 6px;
}
.contentbox .contentbox-title .action-btn .btn {
    border: none;
    padding: 0;
    border-radius: 0;
    background-color: unset;
}
.contentbox .contentbox-title .action-btn .btn i {
    font-size: 20px;
}
.contentbox .contentbox-title .action-btn .btn.gray i {
    color: #00162eb3;
}
.contentbox .contentbox-title .action-btn .btn.secondary i {
    color: #ff6161;
}
.contentbox .contentbox-title .contentbox-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.contentbox .contentbox-title .contentbox-subtitle a {
    line-height: 1;
}
.contentbox .contentbox-title .contentbox-subtitle a i {
    font-weight: 900;
}
.contentbox .contentbox-title .more-action {
    padding: 4px 17px;
    gap: 6px !important;
    line-height: 1.6;
}
.contentbox .contentbox-title .more-action i {
    font-size: 16px;
}
.contentbox .inside {
    padding: 20px;
    font-size: 13px;
}
.contentbox .inside .table-main {
    margin-top: -12px;
}
.contentbox .inside .blog-item-tab .nav-tabs .nav-item .nav-link {
    font-size: 12px !important;
    padding: 4px 8px;
    background-color: transparent;
    color: #5465ff;
}
.contentbox .inside .blog-item-tab .nav-tabs .nav-item .nav-link.active {
    color: #00162ecc;
}
.contentbox .inside .blog-item-tab .tab-content {
    border: 1px solid #dee2e6;
    margin-top: -1px;
}
.contentbox .inside .blog-item-tab .tab-content .tab-pane {
    padding: 0 12px;
}
.contentbox .inside .categorychecklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 13px 0;
    min-height: 42px;
    max-height: 200px;
    overflow: auto;
}
.contentbox .inside .categorychecklist li {
    font-size: 13px;
    line-height: 1;
    display: block;
}
.contentbox .inside .categorychecklist li label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    width: 100%;
    cursor: pointer;
    color: #00162ecc;
    font-size: 14px;
    font-weight: 400;
}
.contentbox .inside .categorychecklist li label .form-check {
    padding: 0;
    margin: 0;
    min-height: unset;
}
.contentbox .inside .categorychecklist li label .form-check .form-check-input {
    padding: 0;
    margin: 0;
}
.contentbox .inside .categorychecklist.category {
    background-color: transparent;
    border: 1px solid rgba(0, 22, 46, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin: 0;
}
.contentbox .inside .categorychecklist.category li {
    font-size: 14px;
}
.contentbox .inside .categorychecklist.category li .form-check {
    padding: 0;
    min-height: unset;
}
.contentbox .inside .categorychecklist.category li .form-check .form-check-input {
    margin-right: 8px;
}
.contentbox .inside .categorychecklist.category li ul {
    width: 100%;
    padding-left: 26px;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contentbox .inside .categorychecklist .no-data img {
    width: calc(100px + 0.0125 * (100vw - 320px));
}
.contentbox .inside h6 {
    color: #00162e;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 22, 46, 0.15);
}
.contentbox .inside .publishing p {
    margin: 0;
}
.contentbox .inside .publishing h4 {
    font-size: 13px;
    font-weight: 500;
    color: #00162e;
    line-height: 1;
}
.contentbox .inside .publishing ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contentbox .inside .publishing ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}
.contentbox .inside .publishing ul li p {
    color: #313131;
}
.contentbox .inside .publishing ul li i {
    font-size: 16px;
    color: #7a8591;
}
.contentbox .inside .variant-main {
    border: 1px solid rgba(0, 22, 46, 0.2);
    border-radius: 8px;
}
.contentbox .inside .variant-main .variant-item {
    padding: 14px;
}
.contentbox .inside .variant-main .variant-item .col-11 {
    width: 97%;
}
.contentbox .inside .variant-main .variant-item .col-1 {
    width: 3%;
}
.contentbox .inside .variant-main .variant-item + .variant-item {
    border-top: 1px solid rgba(0, 22, 46, 0.2);
}
.contentbox .inside .variant-main .variant-item .variant-values > .row {
    margin-bottom: 8px;
}
.contentbox .inside .variant-main .variant-item .variant-values > .row:last-child {
    margin-bottom: 0;
}
.contentbox .inside .variant-main .variant-footer {
    padding: 14px;
    border-top: 1px solid rgba(0, 22, 46, 0.2);
}
.contentbox .inside .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.contentbox + .contentbox {
    margin-top: 20px;
}
@media (max-width: 1199px) {
    .contentbox + .contentbox {
        margin-top: 16px;
    }
}
.contentbox .publish-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 12px;
}
.contentbox .major-publish-actions .post-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.contentbox .major-publish-actions .post-status i {
    font-size: 16px;
    color: #00162ecc;
}
.contentbox .major-publish-actions .post-status .post-status-display {
    font-weight: 600;
}
.contentbox .major-publish-actions .post-status:last-child {
    margin-bottom: 0;
}
.contentbox .input-group.weight {
    gap: 8px;
}
.contentbox .input-group.weight input {
    border-radius: 4px !important;
}
.contentbox .footer {
    padding-top: 20px !important;
    border-top: 1px solid #eeeeee;
    display: flex;
    justify-content: flex-end;
}
.contentbox.column-count-3 .inside .form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contentbox.column-count-3 .inside .form-group label {
    margin-bottom: 0;
}
.icon-position i {
    position: unset !important;
    color: #5465ff;
}
.icon-position .feather {
    width: 18px;
}
.more-detail-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}
.media-upload-message {
    text-align: center;
}
.media-upload-message h5 {
    font-weight: 500;
    font-size: 14px;
    color: #00162e;
}
.media-upload-message button {
    color: #5465ff;
    border: 1px solid #5465ff;
    background: #f6f7f7;
    font-size: 14px;
    min-height: 46px;
    line-height: 3.14285714;
    padding: 0 36px;
    cursor: pointer !important;
    border-radius: 5px;
}
.media-upload-message button.btn-sm {
    font-size: 12px;
    min-height: unset;
    line-height: 1;
    padding: 8px 10px;
}
.media-upload-message span {
    margin-top: 4px;
    font-size: 14px;
}
#attribute_values .form-group:first-child:last-child .remove-value {
    display: none;
}
#attribute_values .form-group .invalid-error {
    display: none;
    color: #ff6161;
    font-size: 13px;
    font-weight: 500;
    margin: 4px 0 0;
    letter-spacing: 0.7px;
    line-height: 1.5;
}
#attribute_values .form-group .form-control.invalid {
    border: 1px solid rgba(255, 97, 97, 0.6);
    box-shadow: 0 0 0 2px #ff61611a;
}
.color-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: calc(4px + (5 - 4) * ((100vw - 320px) / (1920 - 320))) calc(6px + (7 - 6) * ((100vw - 320px) / (1920 - 320)));
    border: 1px solid rgba(0, 22, 46, 0.45);
    width: max-content;
    border-radius: 8px;
}
.color-box .form-control {
    border: none;
    padding: 0;
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.color-box .form-control:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.color-box h6 {
    color: #00162e;
    font-weight: 400;
    font-size: 14px;
    padding: 0 !important;
    margin: 0;
    border: none !important;
}
.variants .form-group.variant-group:first-child:last-child .variant-action {
    display: none;
}
.permalink-section {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 15px;
}
.wallet-main .wallet-detail-content {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.wallet-main .wallet-detail-content .wallet-amount {
    width: 25%;
    display: flex;
    align-items: center;
    gap: 15px;
}
.wallet-main .wallet-detail-content .wallet-amount .wallet-icon {
    line-height: 1.25;
}
.wallet-main .wallet-detail-content .wallet-amount .wallet-icon img {
    width: 40px;
    height: 40px;
}
.wallet-main .wallet-detail-content .wallet-amount .wallet-icon i {
    font-size: 40px;
    color: var(--primary-color);
}
.wallet-main .wallet-detail-content .wallet-amount h5 {
    text-wrap: nowrap;
    color: #00162eb3;
    margin-bottom: 1px;
}
.wallet-main .wallet-detail-content .wallet-amount h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    display: flex;
    align-items: center;
}
.wallet-main .wallet-detail-content .wallet-amount div[class*="col-"] {
    padding: 0;
}
.wallet-main .wallet-detail-content .wallet-amount .form-group {
    margin: 0;
}
.wallet-main .wallet-detail-content .wallet-amount .form-group .form-control:disabled,
.wallet-main .wallet-detail-content .wallet-amount .form-group .form-control[readonly] {
    background-color: unset !important;
    padding: 0 !important;
    font-size: 20px;
    color: #00162e;
    font-weight: 600;
}
.wallet-main .wallet-detail-content .wallet-form {
    width: 75%;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin: 0;
}
.wallet-main .wallet-detail-content .wallet-form .form-group {
    margin: 0;
    width: 70%;
}
.wallet-main .wallet-detail-content .wallet-form .form-group.row div[class*="col-"] {
    margin: 0;
    padding: 0;
    width: 100%;
}
.wallet-main .wallet-detail-content .wallet-form .credit i,
.wallet-main .wallet-detail-content .wallet-form .debit i {
    font-size: 20px;
    line-height: 1.2;
}
.wallet-main .wallet-detail-content .amount .error-div .input-group .input-group-text {
    border-color: #00162e0a;
    border-right: none;
    border-radius: 5px 0 0 5px;
    padding: 0;
    height: calc(46px + (47 - 46) * ((100vw - 768px) / (1920 - 768)));
    width: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edeff1;
    font-size: 19px;
    color: #00162e99;
    font-weight: 500;
}
.wallet-main .wallet-detail-content .amount .error-div .input-group .form-control {
    border-radius: 0 5px 5px 0;
    border-left: 1px solid #edeff1;
}
.wallet-main .wallet-detail-content .amount .error-div .input-group .form-control::-webkit-inner-spin-button {
    display: none;
}
@media (max-width: 1400px) {
    .wallet-main .wallet-detail-content {
        flex-wrap: wrap;
    }
    .wallet-main .wallet-detail-content .wallet-form {
        width: 100%;
    }
}
.select-item .select2-container .select2-selection--single {
    height: 50px;
}
.select-item .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 6px 8px !important;
    height: 100%;
}
.select-item .select2-container .select2-selection--single .select2-selection__arrow {
    height: 43px;
}
.selected-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.selected-item img {
    width: 30px;
    height: 20px;
}
.selected-item .detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.selected-item .detail h6 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    border: none;
    line-height: 1;
    color: #00162ecc;
}
.selected-item .detail p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #00162e99;
    line-height: 1;
}
.top-part {
    clear: both;
    height: 36px;
}
.top-part .btn {
    padding: 10px;
    line-height: 1;
}
.top-part .top-part-left {
    float: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
}
.top-part .top-part-left li {
    border-right: 1px solid #ddd;
    padding: 0px calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.5;
    font-size: calc(12px + 0.00125 * (100vw - 320px));
    display: flex;
    align-items: center;
    gap: 2px;
}
.top-part .top-part-left li:first-child {
    padding-left: 0;
}
.top-part .top-part-left li:last-child {
    border: none;
    padding-right: 0;
}
.top-part .top-part-left li a {
    color: #00162ecc;
}
.top-part .top-part-left li a.current {
    color: #00162e;
    font-weight: 600;
}
.top-part .top-part-left li a.current ~ .count {
    color: #00162e;
    font-weight: 600;
}
.top-part .top-part-left .form-select {
    padding: 6px 30px 6px 12px;
}
.top-part .top-part-right {
    float: right;
    margin-bottom: 16px;
}
.top-part .top-part-right .form-control {
    width: 200px;
}
.bottom-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}
.bottom-part .form-select,
.bottom-part .form-control {
    padding: 6px 30px 6px 12px;
}
.title-panel {
    padding: 14px;
    background-color: #f8f8f8;
    border-radius: 6px;
}
.profile-contentbox .driver-detail-card .detail-card {
    padding: 20px;
    background-color: #00162e0a;
    border-radius: 8px;
}
.profile-contentbox .driver-detail-card .detail-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
    border: none;
    padding: 0;
}
.profile-contentbox .driver-detail-card .detail-card + .detail-card {
    margin-top: 20px;
}
.profile-contentbox .driver-detail-card .detail-card .profile-bg {
    background-color: #e5e8ea;
    padding: 50px;
    border-radius: 8px;
}
.profile-contentbox .driver-detail-card .detail-card .profile {
    text-align: center;
    margin-top: -50px;
}
.profile-contentbox .driver-detail-card .detail-card .profile .img {
    border-radius: 100%;
    width: 90px;
    height: 90px;
}
.profile-contentbox .driver-detail-card .detail-card .profile h4 {
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    line-height: 1;
}
.profile-contentbox .driver-detail-card .detail-card .profile .rate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 6px;
}
.profile-contentbox .driver-detail-card .detail-card .profile .rate i {
    color: #e5e8ea;
    font-size: 16px;
    line-height: 1;
}
.profile-contentbox .driver-detail-card .detail-card .profile .rate i.fill {
    color: #ffbc58;
}
.profile-contentbox .driver-detail-card .detail-card .profile .balance {
    margin: 12px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}
.profile-contentbox .driver-detail-card .detail-card .profile .more-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.profile-contentbox .driver-detail-card .detail-card .profile .more-detail li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}
.profile-contentbox .driver-detail-card .detail-card .profile .more-detail li i {
    font-size: 18px;
    color: var(--primary-color);
}
.customer-detail .profile {
    text-align: center;
    margin-bottom: 20px;
}
.customer-detail .profile .img {
    border-radius: 100%;
    width: 90px;
    height: 90px;
}
.customer-detail .profile h4 {
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    line-height: 1;
}
.customer-detail .profile .rate-box {
    width: max-content;
    padding: 3px 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    border-radius: 4px;
    color: #fff;
    background-color: #ffbc58;
}
.dropdown .dropdown-menu {
    top: 9px !important;
    margin: 0;
    padding: 10px;
    width: max-content !important;
    min-width: 13rem;
    left: 0;
}
.dropdown .dropdown-menu .form-check-label {
    margin-bottom: 0;
    font-size: 14px;
}
.dropdown .dropdown-menu .form-check {
    margin-bottom: 4px;
}
.btn-group .dropdown-menu {
    top: 55px;
    margin: 0;
    padding: 10px;
    width: max-content !important;
    min-width: 13rem;
}
.btn-group .dropdown-menu #table-filter-status-wrapper,
.btn-group .dropdown-menu #coupons-filter-status-wrapper {
    padding: 0 !important;
}
.btn-group .dropdown-menu #table-filter-status-wrapper label,
.btn-group .dropdown-menu #coupons-filter-status-wrapper label {
    font-size: 14px;
    font-weight: 500;
}
.btn-group .dropdown-menu #table-filter-status-wrapper .form-select,
.btn-group .dropdown-menu #coupons-filter-status-wrapper .form-select {
    width: 100%;
}
.btn-group .dropdown-menu #table-filter-status-wrapper .form-select option:hover,
.btn-group .dropdown-menu #coupons-filter-status-wrapper .form-select option:hover {
    background-color: #ff0;
}
.btn-group .dropdown-menu button.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    background-color: #5465ff;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    margin-top: 10px;
}
.btn-group .dropdown-menu button.dropdown-item:hover {
    color: #5465ff !important;
    background-color: #5465ff1a;
}
.btn-group .dropdown-menu .dropdown-divider {
    display: none;
}
.dropdown-item:hover {
    color: #5465ff !important;
    background-color: #5465ff1a;
}
.shortcode-dropdown-box .dropdown-btn {
    background-color: #edeff1;
    border: 1px solid #edeff1;
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 15px;
    gap: 7px;
    line-height: 1.3;
    color: #00162e;
}
.shortcode-dropdown-box .dropdown-btn:active {
    background-color: #edeff166;
    border: 1px solid #edeff1;
}
.shortcode-dropdown-box .dropdown-btn:after {
    content: "";
    font-family: remixicon;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin-left: calc(13px + 0.0025 * (100vw - 320px));
    font-size: calc(18px + 0.00125 * (100vw - 320px));
    line-height: 1;
}
.shortcode-dropdown-box .dropdown-menu {
    padding-inline: 0;
    border: 1px solid #edeff1;
    width: 100% !important;
}
.shortcode-dropdown-box .dropdown-menu li {
    display: block;
}
.shortcode-dropdown-box .dropdown-menu li .dropdown-item {
    font-size: 15px;
    cursor: pointer;
    line-height: 1.3;
    padding: 9px 15px;
    color: #777;
}
.shortcode-dropdown-box .dropdown-menu li .dropdown-item:hover {
    color: #00162e !important;
    background-color: #f8f9f9;
}
input::-webkit-inner-spin-button {
    display: none;
}
.auth-form .form-control {
    border-radius: 25px;
    padding: 9px 25px;
    border: 1px solid #eaeaea;
}
.forgot-pass {
    padding: 0;
    margin-left: auto;
    color: #5465ff;
}
.form-control,
.roles .form-control {
    background-color: #edeff166;
    border: 1px solid rgba(0, 22, 46, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #00162e;
    font-family: Poppins, sans-serif;
}
.form-control::placeholder,
.roles .form-control::placeholder {
    color: #7a8591;
}
.form-control:focus,
.form-control:active,
.roles .form-control:focus,
.roles .form-control:active {
    background-color: #edeff166;
    border: 1px solid rgba(0, 22, 46, 0.1);
}
.form-control[type="color"],
.roles .form-control[type="color"] {
    width: 50px;
    height: 40px;
    padding: 8px !important;
}
.form-control.is-invalid:focus,
.roles .form-control.is-invalid:focus {
    box-shadow: none;
}
.form-group label {
    font-size: calc(14px + 0.00125 * (100vw - 320px));
    font-weight: 400;
    color: #00162e;
    letter-spacing: 0.45px;
}
.form-group label span {
    color: #fe3d3d;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
    font-weight: 500;
}
.form-group label.error {
    color: #ff4b4b !important;
    font-size: 13px;
    font-weight: 400;
    margin: 4px 0 0;
    letter-spacing: 0.7px;
    line-height: 1.5;
}
.form-group.percentage {
    display: none;
}
.start-time input[type="time" i]::-webkit-calendar-picker-indicator,
.end-time input[type="time" i]::-webkit-calendar-picker-indicator {
    width: 100%;
    background-position-x: right;
    position: relative;
    z-index: 0;
}
.start-time .form-control::-webkit-datetime-edit,
.end-time .form-control::-webkit-datetime-edit {
    position: absolute;
}
.was-validated .form-control:valid:focus {
    box-shadow: unset;
    outline: none;
    border: 1px solid rgba(0, 22, 46, 0.1);
}
.was-validated .form-check-input:valid {
    border-color: #00162e1a;
}
.was-validated .form-check-input:valid ~ .form-check-label {
    color: #00162e;
}
.was-validated .form-check-input:valid:focus {
    box-shadow: 0 0 0 0.25rem #5465ff40;
}
.form-check-input.is-valid {
    border-color: #00162e1a;
}
.form-check-input.is-valid ~ .form-check-label {
    color: #00162e;
}
.form-control.is-valid:focus {
    box-shadow: unset;
    outline: none;
    border: 1px solid rgba(0, 22, 46, 0.1);
}
.search-form,
.search-full {
    position: relative;
}
.search-form svg,
.search-full svg {
    position: absolute;
    left: 18px;
    top: 14px;
    width: 20px;
    height: 20px;
    color: #7a8591;
}
.form-control.search-input {
    padding: 12px 48px !important;
}
.form-check {
    align-items: center;
    margin: 0 !important;
}
.form-check .form-check-input {
    border: 1px solid rgba(0, 22, 46, 0.1);
    height: 20px;
    width: 20px;
}
.form-check.form-switch .form-check-input {
    position: relative;
    width: 50px;
    height: 25px;
    background-color: #00162e1a;
    border: none;
}
.form-check.form-switch .form-check-input:checked {
    background-color: #00162e;
    border-color: #00162e;
}
.form-check.form-switch .form-check-input:focus {
    box-shadow: none;
}
.form-check.form-radio {
    padding: 0;
}
.form-check.form-radio .form-check-input {
    width: 14px;
    height: 14px;
}
.form-check.form-radio .form-check-input:before,
.form-check.form-radio .form-check-input:after {
    content: "";
    position: absolute;
    width: 1.05rem;
    height: 1.05rem;
    top: -2px;
    left: -2px;
    border-radius: 100%;
}
.form-check.form-radio .form-check-input:after {
    border: 1px solid rgba(0, 22, 46, 0.1);
}
.form-check.form-radio .form-check-input:before {
    border: 5px solid #5465ff;
}
.editor-space {
    display: flex;
    align-items: center;
    gap: 8px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 36.25px;
    height: 20px;
    margin-bottom: 0;
}
.switch input {
    display: none;
}
.switch input:checked + .switch-state {
    background-color: #5465ff33;
}
.switch input:checked + .switch-state:before {
    transform: translate(17px);
    background-color: #5465ff;
}
.switch input.toggle-status:disabled ~ .switch-state {
    cursor: auto;
    opacity: 0.6;
}
.switch .switch-state {
    border-radius: 20px;
    position: absolute;
    transition: 0.4s;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00162e1a;
}
.switch .switch-state:before {
    content: "";
    height: 15px;
    width: 15px;
    left: 2px;
    bottom: 2.6px;
    background-color: #fff;
    border-radius: 20px;
    position: absolute;
    transition: 0.4s;
}
.switch-sm .switch {
    width: 25px;
    height: 16px;
    margin-top: 0;
    margin-bottom: 0;
}
.form-group {
    position: relative;
    align-items: center;
}
.form-group label {
    font-size: 16px;
    font-weight: 400;
    color: #00162e;
}
.form-group label span {
    color: #fe3d3d;
    font-size: 16px;
    font-weight: 500;
}
.form-group .input-group .select2-selection {
    border-radius: 10px 0 0 10px !important;
}
.form-group .input-group .form-control {
    border-radius: 0 10px 10px 0;
}
.form-group .input-group .w-100:first-child .form-control {
    border-radius: 8px 0 0 8px !important;
}
.form-group .input-group.mb-3 {
    margin-bottom: 0 !important;
}
.form-group .input-group .input-group-text {
    border-color: #00162e0a;
    border-right: none;
    border-radius: calc(6px + 0.0025 * (100vw - 320px));
    padding: 12px 16px;
    height: calc(46px + (47 - 46) * ((100vw - 768px) / (1920 - 768)));
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edeff1;
}
@media (max-width: 768px) {
    .form-group .input-group .input-group-text {
        padding: 7px 12px !important;
        height: 42px;
    }
}
.form-group .input-group.phone-detail {
    position: relative;
}
.form-group .input-group.phone-detail .select2.select2-container .select2-selection.select2-selection--single {
    border-radius: 10px 0 0 10px !important;
}
.form-group .col-md-10 .editor-space {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: baseline;
}
.form-group .position-relative .toggle-password {
    position: absolute;
    top: calc(11px + 0.00125 * (100vw - 320px));
    right: 16px;
    left: unset;
    cursor: pointer;
}
.form-group .position-relative .toggle-password svg {
    width: 20px;
    height: 20px;
    color: #7a8591;
}
.form-group .position-relative input[type="password"] ~ .toggle-password svg.eye {
    display: block;
}
.form-group .position-relative input[type="password"] ~ .toggle-password svg.eye-off {
    display: none;
}
.form-group .position-relative input[type="text"] ~ .toggle-password svg.eye {
    display: none;
}
.form-group .position-relative input[type="text"] ~ .toggle-password svg.eye-off {
    display: block;
}
.invalid-feedback {
    color: #ff4b4b;
    font-size: 13px;
    font-weight: 400;
    margin: 4px 0 0;
    letter-spacing: 0.7px;
    line-height: 1.5;
}
.invalid-feedback strong {
    font-weight: 400;
}
.help-text {
    margin-top: 6px;
    font-size: 14px;
    color: #777;
    font-weight: 400;
    display: inline-block;
}
.input-group .btn.btn-outline-secondary {
    border: 1px solid rgba(0, 22, 46, 0.1);
    border-left: none;
    background-color: #edeff166;
}
.input-group .btn.btn-outline-secondary svg {
    width: 16px !important;
    height: 16px !important;
}
.form-control:disabled,
.form-control[readonly] {
    opacity: 0.6;
    background-color: #00162e26 !important;
}
.parameters,
.bodies,
.head {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr calc(75px + (100 - 75) * ((100vw - 320px) / (1920 - 320)));
    gap: calc(12px + 0.005 * (100vw - 320px));
}
@media (max-width: 575.98px) {
    .parameters,
    .bodies,
    .head {
        display: flex;
        flex-wrap: wrap;
    }
    .parameters > div,
    .bodies > div,
    .head > div {
        flex: 0 0 auto;
        width: calc(50% - 7px);
    }
    .parameters > div:last-child,
    .bodies > div:last-child,
    .head > div:last-child {
        margin-left: auto;
    }
    .parameters > div:last-child button,
    .bodies > div:last-child button,
    .head > div:last-child button {
        width: calc(56px + (74 - 56) * ((100vw - 320px) / (576 - 320))) !important;
        margin-left: auto;
    }
}
.bodies:first-child:last-child,
.head:first-child:last-child,
.parameters:first-child:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.bodies:first-child:last-child > div,
.head:first-child:last-child > div,
.parameters:first-child:last-child > div {
    width: 100%;
}
.bodies:first-child:last-child > div > *,
.head:first-child:last-child > div > *,
.parameters:first-child:last-child > div > * {
    width: 100%;
}
.bodies:first-child:last-child > div .btn,
.head:first-child:last-child > div .btn,
.parameters:first-child:last-child > div .btn {
    display: none;
}
.delete-param {
    background-color: #ff4b4b;
    color: #fff;
    font-size: calc(20px + 0.00125 * (100vw - 320px)) !important;
    line-height: 1;
    height: 100%;
    padding: 7px;
    padding: calc(10px + 0.00125 * (100vw - 320px)) calc(8px + 0.005 * (100vw - 320px));
    border: 1px solid transparent;
}
.delete-param:hover,
.delete-param:active {
    background-color: #ff4b4b !important;
    color: #fff !important;
}
.service-address {
    background-color: #f7f8f9;
    border-radius: 10px;
    padding: 20px;
}
.service-address .service-add-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}
.service-address .service-add-detail .address {
    display: flex;
    align-items: center;
    gap: 14px;
}
.service-address .service-add-detail .address .address-detail h4 {
    color: #00162e;
    font-size: calc(13px + 0.00125 * (100vw - 320px));
    margin: 0 0 2px;
    line-height: 1.3;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.service-address .service-add-detail .address .address-detail h5 {
    color: #808b97;
    font-size: calc(13px + 0.00125 * (100vw - 320px));
    margin: 0;
    line-height: 1.3;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.service-address .service-add-detail .action i {
    --Iconsax-Size: 20px;
    --Iconsax-Color: #7a8591;
}
.address-body {
    padding: 0 !important;
    height: 445px;
    overflow-y: auto;
    overflow-x: hidden;
}
.address-body .service-address-box:first-child:last-child .service-address .service-add-detail .action .delete-icon {
    display: none;
}
.location-icon {
    background-color: #5465ff26;
    padding: 10px;
    border-radius: 100%;
}
.delete-icon {
    background-color: #ff4b4b26;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 100%;
}
.delete-icon svg {
    width: 18px;
    height: 18px;
    color: #ff4b4bcc;
}
.edit-icon {
    background-color: #00162e1a;
    padding: 10px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.edit-icon svg {
    width: 18px;
    height: 18px;
    color: #00162eb3;
}
.add-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.add-more h5 {
    font-size: 18px;
    margin-bottom: 0;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 25px;
    color: #00162ecc;
}
.add-more .add-more-div {
    background-color: #edeff18c;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.add-more .add-more-div svg {
    width: 20px;
    height: 20px;
    color: #00162e;
}
.address-list {
    max-height: 500px;
    overflow: auto;
}
.withdraw-icon {
    background-image: url(https://laravel.webiots.co.in/fixit/build/assets/add-a6d4a4d3.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    width: 40px;
    height: 40px;
}
#toast-container.toast-top-center {
    top: 12px;
}
#toast-container .toast {
    border: 1px solid;
    border-left: 5px solid;
    border-radius: 5px;
    font-size: 16px;
    width: max-content !important;
    background-color: #fff !important;
    max-width: 500px !important;
    box-shadow: #1d23271a 0 4px 12px;
}
#toast-container .toast.toast-success {
    border-color: #5465ff;
    color: #5465ff;
    background-image: url(https://laravel.webiots.co.in/fixit/build/assets/primary-6911773a.svg) !important;
}
#toast-container .toast.toast-success .toast-progress {
    background-color: transparent;
}
#toast-container .toast.toast-warning {
    border-color: #ffbc58;
    color: #ffbc58;
    box-shadow: 0 0 12px #ffbc582b !important;
    background-image: url(https://laravel.webiots.co.in/fixit/build/assets/warning-95198772.svg) !important;
}
#toast-container .toast.toast-warning .toast-progress {
    background-color: transparent;
}
#toast-container .toast.toast-error {
    border-color: #ff4b4b;
    color: #ff4b4b;
    box-shadow: 0 0 12px #ff4b4b2b !important;
    background-image: url(https://laravel.webiots.co.in/fixit/build/assets/danger-9f03517f.svg) !important;
}
#toast-container .toast.toast-error .toast-progress {
    background-color: transparent;
}
#toast-container > div {
    opacity: 1;
}
#toast-container > div:hover {
    box-shadow: 0 0 7px #7777778a;
}
.checkbox_animated,
.form-check .form-check-input {
    cursor: pointer;
    position: relative;
    margin: 0 1rem 0 0;
    filter: none;
}
.checkbox_animated:focus,
.form-check .form-check-input:focus {
    box-shadow: none;
}
.checkbox_animated:before,
.form-check .form-check-input:before {
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: rotate(-45deg) scale(0);
    content: "";
    position: absolute;
    left: 0.25rem;
    top: 0.25rem;
    z-index: 1;
    width: 0.75rem;
    height: 0.375rem;
    border: 2px solid #5465ff;
    border-top-style: none;
    border-right-style: none;
}
.checkbox_animated:after,
.form-check .form-check-input:after {
    content: "";
    position: absolute;
    top: -0.125rem;
    left: -1px;
    width: 1.35rem;
    height: 1.35rem;
    background: #ffffff;
    border: 2px solid #e8ebf2;
    cursor: pointer;
    border-radius: 4px;
}
.checkbox_animated:checked:before,
.form-check .form-check-input:checked:before {
    transform: rotate(-45deg) scale(1);
}
.radio_animated {
    position: relative;
    margin: 0 1rem 0 0;
    cursor: pointer;
}
.radio_animated:before {
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transform: scale(0);
    content: "";
    position: absolute;
    top: 0;
    left: 0.125rem;
    z-index: 1;
    width: 0.75rem;
    height: 0.75rem;
    background: #5465ff;
    border-radius: 50%;
}
.radio_animated:after {
    content: "";
    position: absolute;
    top: -0.25rem;
    left: -0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    background: #ffffff;
    border: 2px solid #e8ebf2;
    border-radius: 50%;
}
.radio_animated:checked:before {
    transform: scale(1);
}
.error-div {
    display: flex;
    flex-direction: column-reverse;
}
.error-div .input-group .form-control.error ~ label.error {
    margin-left: -42px;
}
.error-div .input-group .form-control ~ label.error {
    margin-left: -42px;
}
.error-div .input-group .percent .form-control.error ~ label.error {
    margin-left: 0;
}
.error-div .input-group .percent .form-control ~ label.error {
    margin-left: 0;
}
.percentage .price .input-group .form-control {
    border-radius: 8px 0 0 8px !important;
}
.percentage .price .input-group .form-control.fix-input {
    border-radius: 0 8px 8px 0 !important;
}
.map-warper {
    height: calc(250px + 0.09375 * (100vw - 320px));
}
.page-wrapper .page-body-wrapper footer {
    margin-left: 270px;
    transition: all 0.3s ease;
    z-index: 8;
    background-color: #fff;
    padding: 20px 15px;
    bottom: 0;
    left: 0;
}
.page-wrapper .page-body-wrapper footer p {
    color: #00162ecc;
    font-size: 14px;
}
.page-wrapper .page-body-wrapper footer p i {
    color: #ff4b4b;
    margin-left: 5px;
}
.page-wrapper .page-body-wrapper footer a {
    font-weight: 600;
}
.page-wrapper .page-body-wrapper footer.footer-starter-kit {
    bottom: -52px;
}
.onhover-show-div {
    box-shadow: 1px 2px 3px -3px #00162e99;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    left: 0;
}
.nav-menus .onhover-dropdown:hover .onhover-show-div {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.page-wrapper {
    position: relative;
}
.page-wrapper .page-main-header {
    background-color: #fff;
    height: 80px;
    position: fixed;
    top: 0;
    z-index: 8;
    width: calc(100% - 270px);
    display: flex;
    align-items: center;
    margin-left: 270px;
    transition: 0.3s;
}
@media (max-width: 1199.98px) {
    .page-wrapper .page-main-header {
        margin-left: 0;
        width: 100%;
    }
}
@media (max-width: 575.98px) {
    .page-wrapper .page-main-header {
        margin: 0;
    }
}
.page-wrapper .page-main-header.open {
    margin-left: 0;
    width: 100%;
    transition: 0.3s;
}
@media (max-width: 1199.98px) {
    .page-wrapper .page-main-header.open {
        margin-left: 270px;
        width: calc(100% - 270px);
    }
}
@media (max-width: 575.98px) {
    .page-wrapper .page-main-header.open {
        margin: 0;
        width: 100%;
    }
}
.page-wrapper .page-body-wrapper .page-body {
    min-height: calc(100vh - 158px);
    margin-top: 80px;
    padding: calc(16px + (27 - 16) * ((100vw - 320px) / (1920 - 320))) calc(4px + (15 - 4) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
    background-color: #f7f8f9;
}
@media (max-width: 1199.98px) {
    .page-wrapper .page-body-wrapper .page-body {
        margin-left: 0;
    }
}
.page-main-header {
    max-width: 100vw;
}
.page-main-header .main-header-right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 25px;
    margin: 0;
}
.page-main-header .main-header-right .mobile-sidebar {
    padding: 0;
    margin-top: 6px;
}
.page-main-header .main-header-right .mobile-sidebar i {
    --Iconsax-Size: 24px;
    --Iconsax-Color: #00162e;
}
.page-main-header .main-header-right .nav-left i {
    margin-right: 20px;
}
.page-main-header .main-header-right .nav-left input:focus {
    outline: 0 !important;
}
.page-main-header .main-header-right .nav-right {
    text-align: right;
    padding: 0;
}
.page-main-header .main-header-right .nav-right ul li svg {
    width: 22px;
    height: 22px;
}
.page-main-header .main-header-right .nav-right ul li a {
    color: #313131;
}
.page-main-header .main-header-right .nav-right .notification {
    position: absolute;
    top: 21px;
    right: -1px;
    font-size: 9px;
    animation: blink 1.5s infinite;
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
    to {
        opacity: 0;
    }
}
.page-main-header .main-header-right .nav-right .icon-user {
    font-size: 16px;
}
@keyframes heartbit {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.1);
        opacity: 0.1;
    }
    50% {
        transform: scale(0.5);
        opacity: 0.3;
    }
    75% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}
.page-main-header .main-header-right .nav-right > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.page-main-header .main-header-right .nav-right > ul > li {
    position: relative;
    border-right: 1px solid rgba(0, 22, 46, 0.1);
    padding: 0 12px;
    line-height: 0;
    color: #00162ecc;
}
.page-main-header .main-header-right .nav-right > ul > li:first-child {
    border-left: none;
}
.page-main-header .main-header-right .nav-right > ul > li:last-child {
    padding-right: 0;
    border-right: none;
}
.page-main-header .main-header-right .nav-right > ul > li h6 {
    margin-top: 4px;
    margin-bottom: 4px;
    color: #00162e;
    font-size: 16px;
    line-height: 1;
}
.page-main-header .main-header-right .nav-right > ul > li h6 ul {
    left: inherit;
    right: -10px;
    width: 130px;
}
.page-main-header .main-header-right .nav-right > ul > li h6 ul:before,
.page-main-header .main-header-right .nav-right > ul > li h6 ul:after {
    left: inherit;
    right: 10px;
}
.page-main-header .main-header-right .nav-right > ul > li h6 ul li {
    display: block;
}
.page-main-header .main-header-right .nav-right > ul > li h6 ul li a {
    font-size: 14px;
    color: #2a3142;
}
.page-main-header .main-header-right .nav-right > ul > li h6 ul li a i {
    margin-left: 10px;
    font-size: 13px;
    color: #2a3142;
}
.page-main-header .main-header-right .nav-right > ul .dark-light-mode {
    cursor: pointer;
}
.page-main-header .main-header-right .nav-right > ul .dark-light-mode .light-mode {
    display: flex;
}
.page-main-header .main-header-right .nav-right > ul .dark-light-mode .dark-mode {
    display: none;
}
.page-main-header .main-header-right .nav-right > ul .flag-icon {
    font-size: 16px;
}
.page-main-header .main-header-right .nav-right .notification-dropdown {
    top: 32px;
}
.page-main-header .main-header-right .nav-right .language-dropdown {
    min-width: 160px;
    width: max-content;
    text-align: left;
    top: 32px;
    left: unset;
    right: 0;
}
.page-main-header .main-header-right .nav-right .language-dropdown li {
    padding-top: 10px;
    display: block;
}
.page-main-header .main-header-right .nav-right .language-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.page-main-header .main-header-right .nav-right .language-dropdown li a i {
    margin-right: 10px;
}
.page-main-header .main-header-right .nav-right .language-dropdown li a span {
    transition: all 0.35s ease;
    transform: translate(0);
}
.page-main-header .main-header-right .nav-right .language-dropdown li img {
    width: 25px;
}
.page-main-header .main-header-right .nav-right .language-dropdown li:first-child {
    padding-top: 0;
}
.page-main-header .main-header-right .nav-right .language-dropdown li:hover a span {
    transition: all 0.35s ease;
    transform: translate(4px);
    color: #5465ff;
}
.page-main-header .main-header-right .nav-right .profile-dropdown {
    right: -10px;
    left: inherit;
    width: 150px;
    top: 42px;
}
.page-main-header .main-header-right .nav-right .profile-dropdown:before,
.page-main-header .main-header-right .nav-right .profile-dropdown:after {
    left: inherit;
    right: 10px;
}
.page-main-header .main-header-right .nav-right .profile-dropdown li {
    display: block;
    text-align: left;
    padding-top: 10px;
}
.page-main-header .main-header-right .nav-right .profile-dropdown li:nth-child(3) {
    padding-bottom: 10px;
}
.page-main-header .main-header-right .nav-right .profile-dropdown li:nth-child(4) {
    border-top: 1px solid #eff0f1;
}
.page-main-header .main-header-right .nav-right .profile-dropdown li:first-child {
    padding-top: 0;
}
.page-main-header .main-header-right .nav-right .profile-dropdown li:hover a span {
    transition: all 0.35s ease;
    transform: translate(4px);
    color: #5465ff;
}
.page-main-header .main-header-right .nav-right .profile-dropdown li a {
    color: #00162e;
    display: flex;
    align-items: center;
}
.page-main-header .main-header-right .nav-right .profile-dropdown li a span {
    transition: all 0.35s ease;
    transform: translate(0);
}
.page-main-header .main-header-right .nav-right .profile-dropdown li a svg {
    margin-right: 10px;
    color: #00162e;
}
.page-main-header .main-header-right li {
    display: inline-block;
    position: relative;
}
.page-main-header .main-header-right .search-full {
    background-color: #fff;
    position: absolute;
    right: 0;
    z-index: 1;
    height: 0;
    width: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    top: 7px;
}
.page-main-header .main-header-right .search-full.open {
    height: auto;
    width: 100%;
    animation: zoomIn 0.5s ease-in-out;
    transform: scale(1);
    transition: all 0.3s ease;
}
.page-main-header .main-header-right .search-full input {
    padding-left: 60px;
    width: 100% !important;
}
.page-main-header .main-header-right .search-full input:focus {
    outline: none !important;
}
.page-main-header .main-header-right .search-full .form-group .close-search {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #898989;
    cursor: pointer;
    left: unset;
    transform: rotate(45deg);
    --Iconsax-Size: 24px;
}
[dir="rtl"] .page-main-header .main-header-right .search-full .form-group .close-search {
    left: 30px;
    right: unset;
}
@media (min-width: 768px) and (max-width: 991px) {
    .page-main-header .main-header-right .search-full {
        top: 18px;
    }
}
.nav-menus .notification-badge {
    position: absolute;
    right: 7px;
    top: -7px;
    padding: 3px 5px;
    border-radius: 100%;
    font-size: 10px;
    font-weight: 600;
    background-color: #fe3d3d;
    color: #fff;
}
.nav-menus .onhover-dropdown {
    cursor: pointer;
    position: relative;
}
.nav-menus .onhover-dropdown:before {
    display: none;
}
.notification-dropdown {
    padding: 0 !important;
}
.notification-dropdown li {
    padding: 0 16px;
    display: flex;
    text-align: left;
    align-items: center;
    gap: 8px;
}
.notification-dropdown li:first-child {
    padding: 0;
}
.notification-dropdown li:first-child h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #e8ebf2;
    padding: calc(14px + 0.00375 * (100vw - 320px));
    margin-bottom: 0;
}
.notification-dropdown li:last-child {
    margin-top: 15px;
    border-top: 1px solid #e8ebf2;
    padding: 15px;
}
.notification-dropdown li:last-child a {
    display: block;
    width: 100%;
}
.notification-dropdown li svg {
    width: 14px !important;
    height: 14px !important;
    color: #5465ff;
}
.notification-dropdown li p {
    margin: 0;
    font-size: 14px;
    text-transform: capitalize;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all 0.35s ease;
    transform: translate(0);
}
.notification-dropdown li + li {
    padding-top: 20px;
    padding-bottom: 0;
}
.notification-dropdown .no-data-detail img {
    height: 110px;
    width: 110px;
    margin: 20px auto;
}
ul .notification-dropdown.onhover-show-div {
    width: 330px;
    right: 0;
    left: initial;
}
ul .notification-dropdown.onhover-show-div:before,
ul .notification-dropdown.onhover-show-div:after {
    left: inherit !important;
    right: 35px !important;
}
ul .notification-dropdown.onhover-show-div li {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 8px;
}
ul .notification-dropdown.onhover-show-div li h4 {
    font-size: 20px;
    font-weight: 500;
}
ul .notification-dropdown.onhover-show-div li h6 small {
    padding-top: 5px;
    color: #898989;
    font-size: 12px;
}
ul .notification-dropdown.onhover-show-div li span svg {
    margin-top: 0 !important;
    margin-right: 10px;
    vertical-align: text-top;
}
ul .notification-dropdown.onhover-show-div li + li:hover p {
    color: #5465ff;
    transition: all 0.35s ease;
    transform: translate(4px);
}
ul .notification-dropdown .clear-box-link {
    padding-top: 0 !important;
}
ul .notification-dropdown .notification-main-box {
    max-height: 240px;
    overflow: auto;
}
ul .notification-dropdown .notification-main-box::-webkit-scrollbar {
    width: 5px;
}
ul .notification-dropdown .notification-main-box::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px transparent;
    border-radius: 10px;
}
ul .notification-dropdown .notification-main-box::-webkit-scrollbar-thumb {
    background-color: #0003;
    border-radius: 10px;
}
ul .notification-dropdown .notification-main-box .notification-box {
    display: block !important;
    width: 100%;
}
ul .notification-dropdown .notification-main-box .notification-box + .notification-box {
    padding-top: 12px;
}
ul .notification-dropdown .notification-main-box .notification-box p {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    line-height: 1.5;
}
ul .notification-dropdown .notification-main-box .notification-box p:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 1px;
    border-top: 1px solid #7f786d;
}
.onhover-show-div {
    top: 80px;
    position: absolute;
    z-index: 8;
    background-color: #fff;
    transition: all linear 0.3s;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 1px 2px 8px -3px #00162e99;
}
.onhover-show-div li a svg {
    margin-top: 0 !important;
    color: #00162e;
}
.nav-menus .search-form input {
    border: 1px solid #eff0f1;
    padding: 10px 10px 10px 70px;
    border-radius: 50px;
    background-color: #f7f8f9;
}
.search-list {
    position: absolute;
    top: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(84, 101, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 6px 10px 4px #00162e1a;
    max-height: 333px;
    overflow: auto;
    padding: 0;
}
.search-list li {
    font-size: 15px;
    padding: 0;
    border-bottom: 1px solid rgba(84, 101, 255, 0.1);
    position: relative;
}
.search-list li a {
    padding: calc(8px + 0.0025 * (100vw - 320px)) calc(12px + (15 - 12) * ((100vw - 320px) / (1920 - 320)));
}
.search-list li a svg {
    display: none;
}
.search-list li .sidebar-header,
.search-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #313131;
}
.search-list li:last-child {
    border-bottom: none;
}
.search-list li:hover {
    background-color: #edeff166;
}
.search-list li:hover:before {
    content: "";
    width: 3px;
    height: 45px;
    background-color: #5465ff;
    position: absolute;
    top: 0;
    left: 0;
}
.search-list li:hover a {
    color: #00162e;
}
.search-list li .sidebar-header {
    position: relative;
}
.search-list li .sidebar-header:hover {
    background-color: #edeff166;
}
.search-list li .sidebar-header:hover:before {
    content: "";
    width: 3px;
    height: 45px;
    background-color: #5465ff;
    position: absolute;
    top: 0;
    left: 0;
}
.search-list li .sidebar-header:hover a {
    color: #00162e;
}
.search-list li .sidebar-submenu {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(84, 101, 255, 0.1);
}
.search-list li .sidebar-submenu li {
    padding: calc(8px + 0.0025 * (100vw - 320px)) calc(12px + (15 - 12) * ((100vw - 320px) / (1920 - 320)));
}
.search-list li .sidebar-submenu li:last-child {
    border-bottom: none;
}
.search-list li .sidebar-submenu li a {
    color: #313131;
    padding: 0 0 0 30px;
}
.search-list li.no-data {
    text-align: center;
    padding: 12px;
}
.profile-box {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    gap: 8px;
    color: #00162e;
    line-height: 1;
}
.profile-box .profile-image {
    width: 33px;
    height: 33px;
    min-width: 33px;
}
.img-fix {
    width: 40px;
    min-width: 40px;
    background: transparent;
    height: 40px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin-right: 8px;
}
.notification-setting {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.notification-setting li {
    padding: 14px;
    border-radius: 5px;
    position: relative;
    background-color: #00162e0a;
    text-transform: capitalize;
}
.notification-setting li.unread {
    background-color: #5465ff1a;
    border-left: 2px solid #5465ff;
}
.notification-setting li i {
    --Iconsax-Size: 16px;
    --Iconsax-Color: #00162e8c;
}
.notification-setting li h4 {
    margin-bottom: 6px;
    color: #00162ecc;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
    font-weight: 500;
    line-height: 1.25;
}
.notification-setting li h5 {
    color: #00162e80;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 14px;
}
.notification-setting li h5 svg {
    width: 18px;
    height: 18px;
}
.notification-setting .no-data-detail {
    min-height: 700px;
    align-items: center;
    justify-content: center;
}
.notification-setting .no-data-detail img {
    height: 150px;
    width: 150px;
    margin: 20px auto;
}
.auth-page {
    background-color: #00162e;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;
    min-height: 100vh;
    overflow: auto;
    background-repeat: no-repeat;
    background-size: cover;
    padding: calc(25px + 35 * (100vw - 320px) / 1600) 0 calc(70px + 0.01875 * (100vw - 320px));
    background-position: center;
}
@media (max-width: 1199px) {
    .auth-page .ms-auto {
        margin: 0 auto;
    }
}
.auth-page [class*="badge-version-"].badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
}
.auth-page .auth-card {
    border-radius: 20px;
    position: relative;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 0 35px 2px #0000000d;
}
.auth-page .auth-card .login-img {
    width: 120px;
}
.auth-page .auth-card .welcome {
    border-left: 3px solid #5465ff;
    padding: 4px 0 4px 16px;
    margin: 30px 0;
}
.auth-page .auth-card .welcome h3 {
    font-size: 26px;
    font-weight: 600;
    color: #00162e;
    margin-bottom: 4px;
}
.auth-page .auth-card .welcome p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #808b97;
}
.auth-page .auth-card .main svg {
    width: 22px;
    height: 22px;
    color: #7a8591;
    position: absolute;
    top: 44px;
    left: 16px;
    z-index: 1;
}
.auth-page .auth-card .main .submit {
    display: block;
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
    background-color: #5465ff;
    padding: 12px;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    margin-top: 30px;
}
.auth-page .auth-card .main .forgot-pass {
    padding: 10px 0 0;
    text-align: end;
    font-size: 14px;
}
.auth-page .auth-card .main .forgot-pass a {
    padding: 0;
    color: #5465ff;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 6px;
}
.auth-page .auth-card .main .forgot-pass a svg {
    position: static;
    color: #5465ff;
    transform: translate(0);
    transition: all 0.2s ease;
}
.auth-page .auth-card .main .forgot-pass a:hover svg {
    transform: translate(-5px);
    transition: all 0.2s ease;
}
.auth-page .auth-card .main .form-group .position-relative .toggle-password i {
    position: unset;
}
.auth-page .alert.alert-success {
    color: #27af4d;
    background-color: #27af4d1a;
    padding: 12px 16px;
    border-color: #27af4d80;
    border-radius: 8px;
}
@media (max-width: 1199px) {
    .auth-page .animate-object {
        display: none;
    }
}
.auth-page .animate-object .vase-img {
    position: absolute;
    left: 100px;
    bottom: 60px;
    height: 140px;
}
@media (min-width: 1399px) {
    .auth-page .animate-object .vase-img {
        height: 170px;
    }
}
.auth-page .animate-object .girl-img {
    position: absolute;
    left: 250px;
    bottom: 30px;
    height: 390px;
}
@media (min-width: 1399px) {
    .auth-page .animate-object .girl-img {
        height: 430px;
    }
}
.auth-page .animate-object .lamp-img {
    position: absolute;
    left: 250px;
    top: 0;
    height: 330px;
}
.auth-page .animate-object .clockbox {
    position: absolute;
    top: 160px;
    opacity: 0.3;
    padding: 8px;
    left: 43%;
}
.clockbox {
    background-color: #8396ab;
    border-radius: 4px;
    box-shadow: 6px 1px 13px 5px #001324;
}
.clockbox svg {
    width: 75px;
    height: 75px;
}
.circle {
    fill: #bccfe5;
    stroke: #485a7029;
    stroke-width: 80px;
    stroke-miterlimit: 10;
}
.mid-circle {
    fill: #000;
}
.hour-marks {
    fill: none;
    stroke: #000;
    stroke-width: 9;
    stroke-miterlimit: 10;
}
.hour-hand {
    fill: none;
    stroke: #000;
    stroke-width: 17;
    stroke-miterlimit: 10;
}
.minute-hand {
    fill: none;
    stroke: #000;
    stroke-width: 11;
    stroke-miterlimit: 10;
}
.second-hand {
    fill: none;
    stroke: #000;
    stroke-width: 15px;
    stroke-miterlimit: 10;
}
.sizing-box {
    fill: none;
}
#hour,
#minute,
#second {
    transform-origin: 300px 300px;
    transition: transform 0.5s ease-in-out;
}
.demo-credential {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.demo-credential .btn {
    width: 100%;
    background-color: transparent;
    color: #5465ff;
    border: 1px solid #5465ff;
    line-height: 1.75;
}
.demo-credential .btn:hover {
    background-color: #5465ff;
    color: #fff;
}
.copy-data {
    margin-top: 24px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    background: rgba(242, 242, 242, 0.1);
    border-radius: 4px;
    border: none;
    padding: 10px 13px;
    box-shadow: none;
    outline: none;
    border: 1px dashed #ffffff42;
}
.copy-data .copy-data-div label {
    font-size: 16px;
    color: #00162ef2;
}
.copy-data .copy-data-div p {
    color: #00162ef2;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}
.copy-data .copy-data-div p span i {
    font-size: 20px;
}
.copy-data .copy-data-div p:last-child {
    margin-bottom: 0;
}
.copy-data .code-box-copy__btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
}
#loader {
    position: absolute;
    background: white;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}
.notLoaded {
    height: 100vh;
    overflow: hidden;
    position: fixed;
    margin: 0;
    width: 100%;
}
.page-loader .page-loader-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 12px;
}
.page-loader .page-loader-wrapper img {
    width: 50px;
    height: 50px;
}
div.dataTables_wrapper:has(.dataTables_processing[style="display: block;"]):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffb0;
    z-index: 1;
    -webkit-backdrop-filter: blur(1.1px);
    backdrop-filter: blur(1.1px);
}
div.dataTables_wrapper div.dataTables_processing {
    z-index: 2;
    font-size: 20px;
    font-weight: 500;
    color: #222;
    width: 100%;
    transform: translate(-50%);
    left: 50%;
    margin-left: 0;
    height: 56px;
    margin-top: -34px;
}
div.dataTables_wrapper .dataTable thead,
div.dataTables_wrapper .dataTables_length,
div.dataTables_wrapper .dataTables_filter,
div.dataTables_wrapper .dataTables_info,
div.dataTables_wrapper .dataTables_paginate {
    z-index: 1;
    position: relative;
}
.table-responsive table.dataTable thead .sorting:before,
.table-responsive table.dataTable thead .sorting_desc:before,
.table-responsive table.dataTable thead .sorting_asc:before,
.table-responsive table.dataTable thead .sorting_desc_disabled:before {
    right: 20px !important;
}
table.dataTable.table thead td.sorting_asc,
table.dataTable.table thead td.sorting_desc,
table.dataTable.table thead td.sorting,
table.dataTable.table thead th.sorting_asc,
table.dataTable.table thead th.sorting_desc,
table.dataTable.table thead th.sorting {
    padding-right: 38px;
}
table.dataTable.table thead td:first-child,
table.dataTable.table thead th:first-child {
    padding-right: 9px;
}
.selected-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    color: var(--theme-color);
    padding: 4px 9px 3px;
    border-radius: 100px;
    gap: 3px;
    background-color: #5465ff14;
}
.selected-booking > span {
    line-height: 1.3;
    font-weight: 500;
    font-size: 12px;
    white-space: nowrap;
}
.select-service-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
#map-container {
    height: 100%;
    width: 100%;
}
#coords {
    margin-top: 10px;
}
.map-instruction {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.map-instruction h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
}
.map-instruction p {
    font-size: 14px;
    color: #00162e;
    margin: 0;
    font-weight: 500;
}
.map-instruction .map-detail {
    display: flex;
    align-items: start;
    gap: 8px;
    color: #00162ebf;
}
.map-instruction .map-detail svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 3px;
}
.map-instruction .notify-img {
    height: 100%;
    width: 100%;
    margin-top: 10px;
}
.ui-menu.ui-widget {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(84, 101, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 6px 10px 4px #00162e1a;
    max-height: 333px;
    overflow: auto;
    padding: 0;
    background-color: #fff;
    width: 39% !important;
    z-index: 13;
}
.ui-menu.ui-widget .ui-menu-item {
    font-size: 15px;
    white-space: wrap;
    word-break: break-all;
    border-bottom: 1px solid rgba(84, 101, 255, 0.1);
    position: relative;
    cursor: pointer;
    padding: calc(8px + 0.0025 * (100vw - 320px)) calc(12px + (15 - 12) * ((100vw - 320px) / (1920 - 320)));
}
.ui-menu.ui-widget .ui-menu-item:last-child {
    border-bottom: none;
}
.ui-menu.ui-widget::-webkit-scrollbar-track {
    background-color: #00162e0a;
}
.ui-menu.ui-widget::-webkit-scrollbar {
    width: 3px;
}
.ui-menu.ui-widget::-webkit-scrollbar-thumb {
    background-color: #5465ff;
    height: 4px;
}
.location-list {
    display: flex;
    flex-direction: column;
    max-height: 500px;
    overflow: auto;
    gap: 16px;
}
.location-list li {
    display: flex;
    align-items: center;
    gap: calc(8px + 0.0025 * (100vw - 320px));
    flex-wrap: wrap;
}
.location-list li + li {
    padding-top: 16px;
    border-top: 1px solid rgba(229, 232, 234, 0.5);
}
.location-list li .user-image {
    width: calc(44px + 0.0075 * (100vw - 320px));
    height: calc(44px + 0.0075 * (100vw - 320px));
    border-radius: 4px;
    overflow: hidden;
}
.location-list li .user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-list li .user-name {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: calc(100% - (8px + 0.0025 * (100vw - 320px)) - (44px + 0.0075 * (100vw - 320px)));
}
.location-list li .user-name h5 {
    font-size: calc(14px + 0.00125 * (100vw - 320px));
    line-height: 1.4;
    font-weight: 500;
    color: #00162ecc;
}
.location-list li .user-name .rate-box {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 500;
}
@media (max-width: 420px) {
    .location-list li .user-name .rate-box {
        font-weight: 400;
    }
}
.location-list li .user-name .rate-box i {
    color: #ffbc58;
}
.location-list li .btn {
    padding: calc(6px + 0.00125 * (100vw - 320px)) calc(11px + 0.0025 * (100vw - 320px));
    letter-spacing: 0.5px;
}
.location-list li .user-box {
    gap: 10px;
}
.location-list li .user-box img {
    position: relative;
}
.location-list li .user-box span[class*="driver-"] {
    min-width: 6px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 1;
    animation: round 1.3s ease-in-out infinite;
    font-size: 0;
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 3px;
}
.location-list li .user-box .rate-box {
    padding: 2px 4px;
}
.gm-style .gm-style-iw {
    border: none;
    padding: 15px !important;
}
.gm-style .gm-ui-hover-effect {
    width: 28px !important;
    height: 28px !important;
    position: absolute !important;
    top: 8px;
    right: 10px;
    background-color: var(--theme-color) !important;
    opacity: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.gm-style .gm-ui-hover-effect > span {
    margin: 0 !important;
    background-color: #fff;
    width: 18px !important;
    height: 18px !important;
}
.gm-style img {
    max-width: none;
    width: 72px;
    aspect-ratio: auto 72/72;
    height: 72px;
    border-radius: 9px !important;
}
.gm-style p {
    font-weight: 500;
}
.gm-style p strong {
    color: #313131;
    font-weight: 500;
}
.gm-style p + p {
    margin-top: 6px !important;
}
.gm-style h3 {
    margin: 5px 0 8px !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    color: var(--theme-color) !important;
}
.gm-style .gm-style-iw-ch:empty {
    display: none;
}
.gm-style .gm-style-iw-d {
    padding: 0;
    max-height: unset !important;
    overflow: unset !important;
}
.gm-style .gm-style-iw-d > div > div {
    font-family: Poppins !important;
}
.modal {
    z-index: 13;
    padding-left: 0 !important;
}
.modal .modal-content {
    border-radius: 12px;
    border: none;
    border-top: 6px solid #5465ff;
}
.modal .modal-content .modal-header h5 {
    font-size: 20px;
    margin-bottom: 0;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 25px;
    color: #00162e;
}
.modal .modal-content .modal-header .btn-close {
    background: unset;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal .modal-content .modal-header .btn-close img,
.modal .modal-content .modal-header .btn-close svg {
    width: 16px;
    height: 16px;
    color: #00162e;
}
.modal .modal-content .modal-body {
    padding: calc(16px + 0.01 * (100vw - 320px));
    padding-bottom: 12px;
}
.modal .modal-content .modal-body .main-img {
    background-color: #edeff166;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal .modal-content .modal-body .main-img i {
    --Iconsax-Size: calc(30px + 0.0125 * (100vw - 320px));
    --Iconsax-Color: #00162e;
    background-color: #edeff166;
}
.modal .modal-content .modal-body .main-img img,
.modal .modal-content .modal-body .main-img svg {
    width: 39px;
    height: auto;
    color: #00162ebf;
}
.modal .modal-content .modal-body .text-center {
    margin: 0 calc(0px + 0.025 * (100vw - 320px));
}
.modal .modal-content .modal-body .modal-title {
    font-weight: 500;
    color: #00162ee0;
    font-size: calc(17px + 0.00375 * (100vw - 320px));
    margin-bottom: 7px;
}
.modal .modal-content .modal-body p {
    font-size: 14px;
    color: #7a8591;
    white-space: normal;
    line-height: 1.5;
}
.modal.wallet-modal .modal-content .modal-body {
    padding: 1rem;
}
.modal.wallet-modal .modal-content .modal-body .col-md-2,
.modal.wallet-modal .modal-content .modal-body .col-md-10 {
    width: 100%;
}
.modal.wallet-modal .modal-content .modal-body .form-group {
    margin-bottom: 0;
}
.modal.wallet-modal .modal-content .modal-body .wallet h5 {
    font-size: 16px;
    margin: 0;
    color: #00162ecc;
}
.modal.wallet-modal .modal-content .modal-body .wallet h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: #00162e;
}
.modal.wallet-modal .modal-content .modal-body .wallet-icon {
    height: 40px;
    width: 40px;
    padding: 0;
    background-color: unset;
    color: #5465ff;
}
.modal.wallet-modal .modal-content .modal-footer .btn {
    margin: 0;
    width: 100%;
    padding: 0.75rem;
    justify-content: center;
}
.modal.wallet-modal .modal-content .modal-footer .btn svg {
    height: 20px;
    width: 20px;
}
.modal .submit-form {
    display: flex;
    align-items: center;
    justify-content: end;
    width: max-content;
    margin-left: auto;
    margin-top: 24px;
}
.modal .submit-form input {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #fff;
}
.modal.withdrow-modal .modal-body {
    padding: 1rem;
}
.modal.withdrow-modal .modal-body .form-group .col-md-10 {
    width: 100%;
}
.modal.withdrow-modal .modal-body textarea.form-control {
    min-height: 80px;
}
.modal.withdrow-modal .modal-body .modal-message {
    color: #00162e;
    opacity: 0.8;
}
.modal.withdrow-modal .modal-footer {
    justify-content: center;
}
.modal.withdrow-modal .modal-footer .submit-form {
    margin: 0;
    width: 100%;
    justify-content: center;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
    padding: 0.75rem;
}
.modal.withdrow-modal .modal-footer .submit-form input {
    line-height: 1.25;
}
.modal-header {
    padding: 1rem;
}
.modal-footer {
    padding: 1rem;
    border: none;
    gap: 12px;
    flex-wrap: nowrap;
}
.modal-footer .btn {
    margin: 0 !important;
}
.modal-footer.category-footer .btn {
    margin: 0;
}
.modal-footer.category-footer input {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
}
.modal-footer.category-footer input.confirm {
    background-color: #5465ff;
}
.modal-footer form {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}
.modal-footer .cancel {
    width: 100%;
    background-color: #00162e0a;
    border: none;
    border-radius: 6px;
    padding: 0.75rem;
    color: #00162ecc;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
}
.modal-footer .cancel:active {
    background-color: #00162e0a;
    color: #00162ecc;
}
.modal-footer .delete,
.modal-footer .confirm {
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 0.75rem;
    color: #fff;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
}
.service-man .modal-body {
    padding: 20px !important;
}
.service-man .service-man-detail .form-group .col-md-2,
.service-man .service-man-detail .form-group .col-md-10 {
    width: 100%;
}
.service-man .assign-btn {
    background-color: #5465ff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
}
.modal-backdrop {
    z-index: 12;
}
.pagination-main {
    display: flex;
    flex-direction: row-reverse;
    border-top: 1px dashed rgba(0, 22, 46, 0.1);
    padding-top: 24px;
}
.pagination-main .text-muted {
    color: #00162e !important;
}
.pagination-main .text-muted strong {
    font-weight: 400 !important;
}
.pagination-main .pagination {
    gap: 12px;
    justify-content: end;
    overflow: hidden;
}
.pagination-main .pagination .page-item.active span {
    background-color: #5465ff !important;
    color: #fff;
}
.pagination-main .pagination .page-item:first-child span,
.pagination-main .pagination .page-item:first-child button,
.pagination-main .pagination .page-item:last-child span,
.pagination-main .pagination .page-item:last-child button {
    font-size: 26px !important;
    font-weight: 300 !important;
}
.pagination-main .pagination .page-item .page-link {
    font-size: 14px;
    font-weight: 400;
    width: 24px;
    height: 24px;
    border-radius: 100% !important;
    border: none;
}
.pagination-main .pagination .page-item.disabled {
    color: #7a8591;
}
@media (max-width: 991px) {
    .pagination-main {
        justify-content: unset;
    }
}
.pagination-main .page-item:first-child .page-link {
    border-radius: 4px;
}
.pagination-main .page-item:first-child > span,
.pagination-main .page-item:first-child a,
.pagination-main .page-item:last-child > span,
.pagination-main .page-item:last-child a {
    font-size: 18px;
    line-height: 0.1;
}
.pagination-main .page-item:not(:first-child) .page-link {
    margin: 0;
    border-radius: 4px;
}
.pagination-main .page-item.active span {
    background-color: #5f57ea;
    border-color: #5f57ea;
}
.pagination-main .page-link {
    color: #222;
    border-radius: 4px;
    border-color: #ddd;
    width: 32px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.pagination-main .page-link:focus {
    box-shadow: none;
}
.pagination-main .page-link:hover {
    background-color: #fff;
}
.page-item.active .page-link {
    background-color: #5465ff;
    border-color: #5465ff;
}
.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}
.pagination .page-item {
    box-shadow: none;
    outline: none;
}
.pagination .page-item .page-link {
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    line-height: 1;
    color: #00162ecc;
    font-size: 14px;
    border: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
}
.pagination .page-item .page-link[aria-label="« Previous"],
.pagination .page-item .page-link[aria-label="Next »"] {
    width: 60px;
    color: #00162ecc !important;
    background: unset !important;
}
.pagination .page-item .page-link[aria-label="« Previous"] .page-link,
.pagination .page-item .page-link[aria-label="Next »"] .page-link {
    color: #00162ecc !important;
}
.pagination .page-item.active .page-link,
.pagination .page-item.active:hover .page-link {
    border-color: #5465ff;
    background-color: #5465ff;
    color: #fff !important;
}
.pagination .page-item:hover .page-link,
.pagination .page-item:focus .page-link {
    color: #5465ff !important;
    border-color: #5465ff03;
    background-color: #5465ff1a;
    box-shadow: unset;
}
.pagination .page-item[aria-label="« Previous"] .page-link,
.pagination .page-item[aria-label="Next »"] .page-link {
    color: #00162ecc !important;
    background: unset !important;
    width: 60px;
}
.pagination span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.roles .card-header {
    padding: 0 0 20px;
}
@media (max-width: 575px) {
    .roles .card-header {
        padding: 0 0 15px !important;
    }
}
.roles .card-body {
    padding: 20px 0 0;
}
@media (max-width: 575px) {
    .roles .card-body {
        padding: 15px 0 0 !important;
    }
}
.permission {
    position: relative;
}
.permission .card-header {
    border: none;
    display: block;
    padding: 20px 0;
}
@media (max-width: 575px) {
    .permission .card-header {
        padding: 15px 0 !important;
    }
}
.permission .card-header h5 {
    font-size: 16px;
    font-weight: 400;
}
.permission .card-header span {
    color: #fe3d3d;
}
.permission .permission-section {
    display: flex;
    flex-direction: column;
}
.permission .permission-section ul {
    background-color: #fff;
    padding: calc(12px + 0.00375 * (100vw - 320px)) 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    overflow: auto;
    border-bottom: 1px solid rgba(237, 239, 241, 0.8);
    margin-bottom: 0 !important;
}
@media (max-width: 1399px) {
    .permission .permission-section ul {
        column-count: 1;
    }
}
.permission .permission-section li {
    width: 14%;
    white-space: nowrap;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}
.permission .permission-section li:first-child {
    font-weight: 600;
    width: 20%;
}
@media (max-width: 768px) {
    .permission .permission-section li,
    .permission .permission-section li:first-child {
        width: max-content;
    }
}
.permission .permission-section li h5 {
    font-weight: 500;
    margin-bottom: 0;
    text-transform: capitalize;
    width: 200px;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
}
.permission .permission-section li .form-group {
    width: calc(100% - 180px);
}
.permission .permission-section li label {
    text-transform: capitalize;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 0;
    white-space: nowrap;
    color: #00162ecc;
    width: 100%;
}
.permission .permission-section li label + label {
    margin-left: 26px;
}
.permission .footer {
    padding: 20px 0 0;
    margin-top: 0;
}
.page-wrapper .page-body-wrapper .sidebar {
    height: calc(100vh - 80px);
    overflow: auto;
    box-shadow: 0 0 11px #8fa4e814;
}
.page-wrapper .page-body-wrapper .sidebar.custom-scrollbar::-webkit-scrollbar {
    width: 0;
    transition: 0.1s;
}
.page-wrapper .page-body-wrapper .sidebar.custom-scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
}
.page-wrapper .page-body-wrapper .sidebar.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #f7f7f74d;
    border-radius: 100px;
}
.page-wrapper .page-body-wrapper .sidebar.custom-scrollbar:hover::-webkit-scrollbar {
    width: 6px;
}
.page-wrapper .page-body-wrapper .page-sidebar {
    width: 270px;
    position: fixed;
    background:#003E6B;
    top: 0;
    height: 100vh;
    z-index: 9;
    transition: 0.3s;
    border-radius: 0 20px 20px 0;
}
@media (max-width: 1199.98px) {
    .page-wrapper .page-body-wrapper .page-sidebar {
        display: block;
        margin-left: -275px;
    }
    .page-wrapper .page-body-wrapper .page-sidebar.open {
        margin-left: 0;
    }
}
.page-wrapper .page-body-wrapper .page-sidebar .main-header-left {
    display: inline-flex;
    width: 100%;
    height: 80px;
    padding: 0 25px;
    align-items: center;
    background-color: transparent;
    z-index: 8;
    box-shadow: -3px 1px 3px 1px #4466f21a;
}
.page-wrapper .page-body-wrapper .page-sidebar .main-header-left .logo-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.page-wrapper .page-body-wrapper .page-sidebar .main-header-left .logo-wrapper a {
    height: 75px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
.page-wrapper .page-body-wrapper .page-sidebar .main-header-left .logo-wrapper a img {
    height: 40px;
}
.page-wrapper .page-body-wrapper .page-sidebar .main-header-left .logo-wrapper a i {
    --Iconsax-Size: 18px;
    --Iconsax-Color: White;
}
.page-wrapper .page-body-wrapper .page-sidebar .main-header-left .logo-wrapper .close-sidebar {
    color: #fff;
    width: 22px;
    height: 22px;
    cursor: pointer;
    display: none;
}
@media (max-width: 991px) {
    .page-wrapper .page-body-wrapper .page-sidebar .main-header-left .logo-wrapper .close-sidebar {
        display: flex;
    }
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 20px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .sidebar-main-title {
    border-top: 1px solid rgba(247, 247, 247, 0.15);
    margin-top: 12px;
    padding-top: 20px;
    padding-bottom: 10px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .sidebar-main-title div h6 {
    font-size: 14px;
    font-weight: 500;
    color: #fffc;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 0.75px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu .sidebar-main-title:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li {
    width: 100%;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-header {
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-weight: 400;
    color: #f7f7f7e6;
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px 0 15px 8px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-header .stroke-icon {
    width: 18px;
    height: 18px;
    stroke: #fff;
    margin-left: auto;
    margin-right: 0;
    filter: invert(1) brightness(100);
    transition: all 0.25s ease;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-header .inactive-icon {
    margin-right: 14px;
    stroke-width: 2px;
    vertical-align: text-bottom;
    width: 20px;
    height: 20px;
    filter: invert(1) brightness(100);
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-header svg {
    margin-right: 14px;
    stroke-width: 2px;
    vertical-align: text-bottom;
    width: 20px;
    height: 20px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-header .active-icon {
    width: 20px;
    height: 20px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-header.active .feather {
    display: none;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-header.active .active-icon {
    display: block;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu {
    display: none;
    transform-style: preserve-3d;
    transform: rotateX(-90deg);
    list-style: none;
    position: relative;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu:before {
    content: "";
    width: 1px;
    height: calc(100% - 16px);
    background-color: #f7f7f7;
    position: absolute;
    left: -7px;
    top: -7px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu > li {
    padding-left: 12px;
    position: relative;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu > li .badge {
    margin-left: auto;
    background-color: #5465ff66;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu > li > a {
    font-size: 14px;
    color: #f7f7f780;
    transition: 0.3s;
    text-transform: capitalize;
    position: relative;
    padding: 15px 0 15px 10px;
    line-height: 2.5;
    letter-spacing: 0.7px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu > li > a:before {
    content: "";
    position: absolute;
    top: 0;
    width: 16px;
    height: 26px;
    border-bottom-left-radius: 9px;
    border-left: 1.5px solid #f7f7f7;
    border-bottom: 1.5px solid #f7f7f7;
    left: -19px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu > li > a:hover {
    color: #f7f7f7;
    font-weight: 600;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu > li > a.active {
    color: #f7f7f7;
    font-weight: 600;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu > li > a.active:after {
    content: "";
    position: absolute;
    height: 7px;
    width: 7px;
    border-right: 1.5px solid #f7f7f7;
    border-bottom: 1.5px solid #f7f7f7;
    top: 22px;
    transform: rotate(318deg);
    left: -10px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu > li > a.active ~ .badge {
    background-color: #5465ff99;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu > li.active > a {
    color: #313131;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu > li.active > a.active {
    color: #5465ff;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu.menu-open {
    display: block;
    transform: rotateX(0);
    transform-origin: 10% 10%;
    transition: transform 0.3s, opacity 0.3s;
    transform-style: preserve-3d;
    margin-left: 23px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu.menu-open li.active .fa-angle-down:before {
    content: "";
    transition: 0.3s;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li.active .stroke-icon {
    transform: rotate(90deg);
    transition: all 0.25s ease;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu > li > a {
    display: block;
    transition: 0.3s;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu > li > a span {
    line-height: 1;
    transform: translate(0);
    transition: all 0.3s ease;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu > li > a:hover span {
    transform: translate(3px);
    transition: all 0.3s ease;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu > li > a.active {
    font-weight: 600;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu > li > a.active .without-active {
    display: none;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu > li > a.active .inactive-icon {
    display: none;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu > li > a.active .active-icon {
    display: none;
    filter: invert(1) brightness(100);
    margin-right: 14px;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu > li > a .active-icon {
    display: none;
}
.page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu > li > a i {
    --Iconsax-Size: 20px;
    --Iconsax-Color: White;
}
.page-wrapper .page-body-wrapper .page-sidebar ~ .page-body {
    margin-left: 270px;
    transition: 0.3s;
}
@media (max-width: 1199.98px) {
    .page-wrapper .page-body-wrapper .page-sidebar ~ .page-body {
        margin-left: 0;
    }
}
.page-wrapper .page-body-wrapper .page-sidebar.open {
    display: block;
    margin-left: -275px;
}
@media (max-width: 1199.98px) {
    .page-wrapper .page-body-wrapper .page-sidebar.open {
        margin-left: 0;
    }
}
.page-wrapper .page-body-wrapper .page-sidebar.open ~ .page-body {
    margin-left: 0;
    transition: 0.3s;
}
@media (max-width: 1199.98px) {
    .page-wrapper .page-body-wrapper .page-sidebar.open ~ .page-body {
        margin-left: 270px;
    }
}
@media (max-width: 575.98px) {
    .page-wrapper .page-body-wrapper .page-sidebar.open ~ .page-body {
        margin: 0;
    }
}
.page-wrapper .page-body-wrapper .page-sidebar.open ~ footer {
    margin-left: 0;
    padding-right: 15px;
}
.page-wrapper .page-body-wrapper .sidebar-close .page-sidebar {
    transition: 0.3s;
    transform: translate(-270px);
}
.page-wrapper .page-body-wrapper .sidebar-close .page-body {
    transition: 0.3s;
    margin-left: 0 !important;
}
.select2-container .select2-dropdown {
    transition: none !important;
}
.select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option {
    display: block;
}
.select2-container.select2-container--disabled .selection .select2-selection {
    opacity: 0.6;
    background-color: #00162e26 !important;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #00162e14;
}
.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above {
    border: 1px solid rgba(84, 101, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 6px 10px 4px #00162e1a;
    top: 0;
    left: 0;
    right: 0;
    z-index: 13;
}
.select2-container--open .select2-dropdown--below .select2-search--dropdown,
.select2-container--open .select2-dropdown--above .select2-search--dropdown {
    padding: 6px;
}
.select2-container--open .select2-dropdown--below .select2-search--dropdown .select2-search__field,
.select2-container--open .select2-dropdown--above .select2-search--dropdown .select2-search__field {
    background-color: transparent;
    border: 1px solid rgba(84, 101, 255, 0.1);
    border-radius: 4px;
    padding: 9px 11px;
    font-size: 14px;
    font-weight: 400;
    color: #00162e;
}
.select2-container--open .select2-dropdown--below .select2-search--dropdown .select2-search__field .selected-item,
.select2-container--open .select2-dropdown--above .select2-search--dropdown .select2-search__field .selected-item {
    gap: 12px;
}
.select2-container--open .select2-dropdown--below .select2-results .select2-results__options .select2-results__option,
.select2-container--open .select2-dropdown--above .select2-results .select2-results__options .select2-results__option {
    font-size: 15px;
    padding: 11px 11px 11px 15px;
    border-bottom: 1px solid rgba(84, 101, 255, 0.1);
    border-left: 3px solid transparent;
    color: #00162e99;
}
.select2-container--open .select2-dropdown--below .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted,
.select2-container--open .select2-dropdown--above .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted {
    background-color: #edeff166;
    color: #00162e;
    border-left: 3px solid #5465ff;
}
.select2-container--open .select2-dropdown--below .select2-results .select2-results__options .select2-results__option .flag-img,
.select2-container--open .select2-dropdown--above .select2-results .select2-results__options .select2-results__option .flag-img {
    width: 22px;
}
.select2-container--open .select2-dropdown--below .select2-results .select2-results__options .select2-results__option .selected-item,
.select2-container--open .select2-dropdown--above .select2-results .select2-results__options .select2-results__option .selected-item {
    gap: 12px;
}
.select2-container--open .select2-dropdown--below .select2-results .select2-results__options .select2-results__option .selected-item .initial-letterP .detail:has(p:empty) h6,
.select2-container--open .select2-dropdown--above .select2-results .select2-results__options .select2-results__option .selected-item .initial-letterP .detail:has(p:empty) h6 {
    margin-bottom: 0;
}
.select2-container--open .select2-dropdown--below .select2-results .select2-results__options .select2-results__option .selected-item .initial-letterP .detail h6,
.select2-container--open .select2-dropdown--above .select2-results .select2-results__options .select2-results__option .selected-item .initial-letterP .detail h6 {
    font-size: 15px;
    color: #222;
    line-height: 1.3;
}
.select2-container--open .select2-dropdown--below .select2-results .select2-results__options .select2-results__option .selected-item .initial-letterP .detail p,
.select2-container--open .select2-dropdown--above .select2-results .select2-results__options .select2-results__option .selected-item .initial-letterP .detail p {
    margin: 0;
}
.select2-container--open .select2-dropdown--below .select2-results .select2-results__options .select2-results__option .selected-item .initial-letterP .detail p:empty,
.select2-container--open .select2-dropdown--above .select2-results .select2-results__options .select2-results__option .selected-item .initial-letterP .detail p:empty {
    display: none;
}
.phone-detail > div.col-sm-11 > .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.profile-detail .phone-detail .select2.select2-container .select2-selection.select2-selection--single {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #e9ecef;
}
.profile-detail .phone-detail .select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered {
    color: #00162e;
}
.profile-detail .phone-detail .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.select2.select2-container {
    width: 100% !important;
}
.select2.select2-container .select2-selection.select2-selection--multiple,
.select2.select2-container .select2-selection.select2-selection--single {
    background-color: #edeff166;
    border: 1px solid #edeff1;
    border-radius: calc(6px + 0.0025 * (100vw - 320px));
    min-height: auto;
    height: auto;
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered {
    color: #7a8591;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    flex-wrap: wrap;
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.5 !important;
}
@media (max-width: 767.98px) {
    .select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered,
    .select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered {
        padding: 10px 12px !important;
    }
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered .selected-item,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered .selected-item {
    gap: 12px;
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered .selected-item .detail h6,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered .selected-item .detail h6 {
    font-size: 15px;
    color: #222;
    line-height: 1.3;
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered .selected-item .detail .small,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered .selected-item .detail .small {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered .select2-selection__choice,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered .select2-selection__choice {
    border: none;
    background-color: #5465ff1a;
    color: #5465ff;
    border-radius: 5px;
    font-size: 14px;
    margin: 0;
    line-height: 1;
    padding: 6px 13px 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    position: relative;
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
    color: #5465ff;
    border: none;
    height: auto;
    padding: 0;
    margin: 0;
    line-height: 1;
    position: relative;
    inset: unset;
    font-size: 18px;
    font-weight: 500;
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover {
    background-color: transparent;
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered .select2-search--inline .select2-search__field,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered .select2-search--inline .select2-search__field {
    margin-top: 0;
    height: unset;
    margin-left: 0;
    line-height: 1;
    font-family: Poppins, sans-serif;
    width: max-content !important;
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered .select2-selection__clear,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered .select2-selection__clear {
    margin: 0;
    right: 10px;
    top: 8px;
    font-size: 18px;
    font-weight: 500;
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__placeholder,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__placeholder {
    color: #7a8591;
    font-size: 14px;
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__arrow,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    right: 17px;
    width: 12px;
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__arrow b,
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__arrow b {
    border: 2px solid rgba(0, 22, 46, 0.6);
    width: 8px;
    height: 8px;
    transform: rotate(45deg) scale(-1);
    border-bottom: 0;
    border-right: 0;
    margin-top: -6px;
}
.select2.select2-container .select2-selection.select2-selection--multiple {
    padding: 0 16px;
}
@media (max-width: 768px) {
    .select2.select2-container .select2-selection.select2-selection--multiple {
        padding: 0 12px !important;
    }
}
.select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered {
    margin: 0 !important;
    padding: 12px 0 !important;
}
@media (max-width: 768px) {
    .select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered {
        padding: 9px 0 !important;
    }
}
.select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered {
    color: #00162e !important;
}
.select2.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(45deg);
    margin-top: -4px;
}
.phone-detail .select2-selection.select2-selection--single {
    background-color: #edeff1 !important;
}
.select-2.language ~ .select2.select2-container.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search--inline {
    padding-left: 16px;
}
.select-2.language ~ .select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered {
    padding-top: 13px;
    padding-left: 0;
    margin-left: 16px;
}
.select-2.language ~ .select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered .select2-search--inline {
    padding-left: 0;
}
.phone-detail .phone-fill-input {
    background-color: #edeff166;
    border: 1px solid #edeff1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #00162e;
    border-radius: 0 10px 10px 0;
    border-left: unset;
    font-family: Poppins, sans-serif;
    width: 100%;
}
.horizontal-tab {
    border: none;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.horizontal-tab .nav-item .nav-link {
    margin: 0;
    border-radius: 6px;
    padding: 9px 17px;
    font-size: 14px;
    background-color: #edeff166;
    border: 1px solid rgba(0, 22, 46, 0.1);
    color: #7a8591;
    font-weight: 500;
}
.horizontal-tab .nav-item .nav-link.active {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #fff;
}
.tab2-card .media {
    align-items: center;
}
.tab2-card .media img {
    margin-right: 20px;
}
.tab2-card .nav-tabs {
    margin-bottom: 25px;
    border: 1px solid rgba(0, 22, 46, 0.01);
    background-color: #edeff166;
    border-radius: calc(6px + 0.0025 * (100vw - 320px));
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
}
.tab2-card .nav-tabs .nav-item {
    border-right: 1px solid rgba(122, 133, 145, 0.3);
}
.tab2-card .nav-tabs .nav-item:first-child .nav-link {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.tab2-card .nav-tabs .nav-link {
    color: #7a8591;
    padding: calc(12px + 0.00125 * (100vw - 320px)) calc(14px + 0.00375 * (100vw - 320px));
    border-radius: unset;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}
.tab2-card .nav-tabs .nav-link.active,
.tab2-card .nav-tabs .nav-link:focus,
.tab2-card .nav-tabs .nav-link.active:hover {
    font-weight: 500;
    color: #5465ff !important;
    background-color: #5465ff1a;
    border: none;
    border-right: 1px solid #5465ff;
}
.tab2-card .nav-tabs .nav-link.active svg,
.tab2-card .nav-tabs .nav-link:focus svg,
.tab2-card .nav-tabs .nav-link.active:hover svg {
    color: #5465ff;
}
.tab2-card .nav-tabs .nav-link:hover {
    border-color: transparent;
}
.tab2-card .nav-tabs .nav-link svg {
    width: 18px;
    height: 18px;
}
.tab2-card.card .form-group .input-group.mb-3 {
    margin-bottom: 0 !important;
}
.tab2-card.card .input-group:has(.input-group-text) .w-100 .form-control {
    border-radius: 0 10px 10px 0;
}
.tab2-card.card .form-control {
    background-color: #edeff166;
    border: 1px solid #edeff1;
    border-radius: calc(6px + 0.0025 * (100vw - 320px));
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #00162e;
}
.tab2-card.card .form-control::placeholder {
    color: #7a8591;
}
.tab2-card.card .form-control.flatpickr-input {
    background-color: #edeff166 !important;
    border: 1px solid #edeff1;
    opacity: 1;
}
.tab2-card.card form {
    margin: 0;
}
.tab2-card.card .tab-content .tab-pane .row .form-group:last-child {
    margin-bottom: 0 !important;
}
.phone-detail .form-control ~ .error {
    margin-left: -16%;
}
.category-label {
    font-size: 16px;
    font-weight: 400;
    color: #00162e;
}
.category-label span {
    color: #fe3d3d;
    font-size: 16px;
    font-weight: 500;
}
.booking-detail,
.wallet-detail {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 1px 5px 24px #4466f20d;
}
.booking-detail .booking-header,
.booking-detail .wallet-header,
.wallet-detail .booking-header,
.wallet-detail .wallet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.booking-detail .booking-header .btn-popup,
.booking-detail .wallet-header .btn-popup,
.wallet-detail .booking-header .btn-popup,
.wallet-detail .wallet-header .btn-popup {
    margin: 0 !important;
}
.booking-detail .booking-header .btn-popup a,
.booking-detail .wallet-header .btn-popup a,
.wallet-detail .booking-header .btn-popup a,
.wallet-detail .wallet-header .btn-popup a {
    padding: 8px 16px;
}
.booking-detail .send-req button,
.wallet-detail .send-req button {
    background-color: unset;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    font-family: Poppins;
}
.booking-detail:last-child,
.wallet-detail:last-child {
    margin-bottom: 0;
}
.booking-detail h4,
.wallet-detail h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}
.booking-detail ul,
.wallet-detail ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.booking-detail ul li,
.wallet-detail ul li {
    flex-direction: column;
    align-items: start;
    justify-content: unset;
    gap: 4px;
    display: flex;
}
.booking-detail ul li p,
.booking-detail ul li span,
.wallet-detail ul li p,
.wallet-detail ul li span {
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    margin: 0;
}
.booking-detail ul li span,
.wallet-detail ul li span {
    font-weight: 500;
}
.booking-detail.summary-detail ul li,
.wallet-detail.summary-detail ul li {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}
.booking-detail .position-relative ~ h4,
.wallet-detail .position-relative ~ h4 {
    font-weight: 400;
    line-height: 1.2;
}
.booking-detail-2 {
    padding: 0;
    background-color: #fff;
}
.booking-detail-2 .provider-details-box {
    display: flex;
    gap: 20px;
    padding: 16px 21px;
}
.booking-detail-2 .provider-details-box:has(.customer-image) .list-unstyled {
    width: calc(100% - 108px);
}
.booking-detail-2 .provider-details-box .customer-image {
    width: 88px;
    height: 88px;
    object-fit: cover;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}
.booking-detail-2 .provider-details-box .customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}
.booking-detail-2 .provider-details-box .list-unstyled {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.booking-detail-2 .provider-details-box .list-unstyled li {
    display: flex;
}
.booking-detail-2 .provider-details-box .list-unstyled li p {
    margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 11px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 1.3;
}
.booking-detail-2 .provider-details-box .list-unstyled li p span {
    font-weight: 400;
    font-size: 16px;
    width: 170px;
    display: block;
    line-height: 1.3;
    color: #777;
}
.user-details-box {
    text-align: center;
    padding: 64px 33px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.user-details-box .cover-image {
    height: calc(145px + (280 - 145) * ((100vw - 320px) / (1920 - 320)));
    overflow: hidden;
    border-radius: calc(5px + (8 - 5) * ((100vw - 320px) / (1920 - 320)));
}
.user-details-box .cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-details-box .left-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: auto;
}
.user-details-box .right-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 22%;
    height: auto;
}
.user-details-box .customer-image {
    width: calc(89px + (120 - 89) * ((100vw - 320px) / (1920 - 320)));
    height: calc(89px + (120 - 89) * ((100vw - 320px) / (1920 - 320)));
    overflow: hidden;
    border-radius: 100%;
    margin: 0 auto calc(11px + (16 - 11) * ((100vw - 320px) / (1920 - 320)));
    box-shadow: 1px 5px 24px #4466f20d;
    border: 4px solid rgba(0, 22, 46, 0.07);
    position: relative;
}
.user-details-box .customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user-details-box .customer-image .initial-letter {
    width: 100%;
    height: 100%;
    min-width: 100%;
    background-color: #e5e7e9;
    font-size: calc(40px + 0.01 * (100vw - 320px));
    color: #00162ecc;
}
.user-details-box .customer-name {
    display: inline-block;
    margin-bottom: 6px;
}
.user-details-box .customer-name h3 {
    font-weight: 500;
    color: #00162e;
    letter-spacing: 0.3px;
    font-size: calc(19px + 0.0025 * (100vw - 320px));
}
@media (max-width: 575px) {
    .user-details-box .list-unstyled {
        margin-bottom: 0 !important;
    }
}
.user-details-box .list-unstyled li {
    position: relative;
}
.user-details-box .list-unstyled li + li {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(122, 133, 145, 0.15);
}
@media (max-width: 575.98px) {
    .user-details-box .list-unstyled li + li {
        margin-left: unset;
        padding-left: unset;
        border-left: 0;
        margin-top: 7px;
    }
}
.user-details-box .list-unstyled li p {
    margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 5px;
    font-size: 15px;
    color: #222;
    line-height: 1.3;
}
@media (max-width: 575.98px) {
    .user-details-box .list-unstyled li p {
        justify-content: center;
    }
}
.user-details-box .list-unstyled li p .iconsax {
    --Iconsax-Color: #222;
    --Iconsax-Size: 17px;
}
@media (max-width: 575.98px) {
    .user-details-box .list-unstyled li p .iconsax {
        display: none;
    }
}
.user-details-box .list-unstyled li p span {
    font-weight: 400;
    display: block;
    line-height: 1.3;
    color: #777;
}
.user-details-box ~ .card-body .card {
    box-shadow: none;
}
.wallet-detail-content {
    display: flex;
    gap: 15px;
    align-items: start;
    width: 100%;
    justify-content: space-between;
}
.wallet-detail-content .wallet-amount {
    width: 25%;
    display: flex;
    align-items: center;
    gap: 15px;
}
.wallet-detail-content .wallet-amount .wallet-icon {
    line-height: 1;
}
.wallet-detail-content .wallet-amount .wallet-icon svg {
    width: 40px;
    height: 40px;
    color: #5465ff;
}
.wallet-detail-content .wallet-amount h5 {
    text-wrap: nowrap;
    color: #00162eb3;
    margin-bottom: 3px;
}
.wallet-detail-content .wallet-amount div[class*="col-"] {
    padding: 0;
}
.wallet-detail-content .wallet-amount .form-group {
    margin: 0;
}
.wallet-detail-content .wallet-amount .form-group .form-control:disabled,
.wallet-detail-content .wallet-amount .form-group .form-control[readonly] {
    background-color: unset !important;
    padding: 0 !important;
    border: none !important;
    font-size: 20px;
    opacity: 0.9;
    color: #00162e;
    font-weight: 500;
}
.wallet-detail-content .wallet-form {
    width: 75%;
    display: flex;
    align-items: start;
    gap: 20px;
    justify-content: space-between;
}
.wallet-detail-content .wallet-form .form-group {
    margin: 0;
    width: 70%;
}
.wallet-detail-content .wallet-form .form-group.row div[class*="col-"] {
    margin: 0;
    padding: 0;
}
@media (max-width: 1400px) {
    .wallet-detail-content {
        flex-wrap: wrap;
    }
    .wallet-detail-content .wallet-form {
        width: 100%;
    }
}
.wallet-detail-content .credit,
.wallet-detail-content .debit {
    padding: 14px;
}
.service-detail.table-responsive .table {
    border: 1px solid rgba(0, 22, 46, 0.08);
}
.booking-status .booking-log {
    margin-left: 8px;
    box-shadow: #959da533 0 8px 24px;
    border-radius: 8px;
    padding: 20px;
}
.booking-status .booking-log .status-body {
    height: 400px;
    overflow: auto;
}
.booking-status .booking-log ul {
    position: relative;
}
.booking-status .booking-log ul:before {
    position: absolute;
    content: "";
    border: 1px dashed #52526c;
    opacity: 0.3;
    top: 12px;
    left: 2px;
    height: calc(100% - 12px);
}
.booking-status .booking-log li {
    padding-bottom: 22px;
}
.booking-status .booking-log li:last-child {
    padding-bottom: 0;
}
.booking-status .booking-log div[class*="activity-dot-"] {
    min-width: 6px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    position: relative;
    z-index: 2;
    margin-top: 12px;
    animation: round 1.3s ease-in-out infinite;
    font-size: 0;
}
.booking-status .booking-log .no-status {
    margin: 8px 0;
}
.booking-status .booking-log .date-content {
    background-color: #00162e0a;
    padding: 8px 10px;
    border-radius: 4px;
}
.fill-alert {
    height: 20px;
    width: 20px;
    margin-left: 16px;
}
.fill-alert.error {
    display: flex !important;
}
.nav-pills .nav-link.active,
.nav-pills .nav-link > .nav-link,
.nav-pills .show.active,
.nav-pills .show > .nav-link {
    background-color: #5465ff;
}
.user-info {
    display: flex;
    align-items: center;
    text-align: left;
    gap: calc(8px + 0.00125 * (100vw - 320px));
    color: #00162eb3;
}
.user-info:hover .user-details .user-email .feather {
    opacity: 1;
}
.user-info .initial-letter {
    width: calc(40px + 0.0025 * (100vw - 320px));
    min-width: auto;
    height: calc(38px + 0.00375 * (100vw - 320px));
    font-size: calc(20px + 0.00125 * (100vw - 320px));
    font-weight: 600;
}
.user-info .user-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: unset;
    color: #00162e;
}
.user-info .user-name:has(.rate) {
    display: flex;
    align-items: center;
    gap: 8px;
}
.user-info .user-name .rate {
    gap: 4px;
}
.user-info .user-name .rate img.star {
    width: 14px;
    height: auto;
    margin-top: -3px;
}
.user-info .user-name .rate small {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}
.user-info .user-email {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    margin-top: calc(1px + 0.00125 * (100vw - 320px));
    display: flex;
    align-items: flex-end;
}
.user-info .user-email a {
    line-height: 1;
    color: #777;
}
.user-info .user-email .feather {
    width: 14px;
    height: auto;
    margin-left: 10px;
    color: #00162e;
    cursor: pointer;
}
.user-info .user-details .user-email .feather {
    opacity: 0;
    transition: all 0.1s ease-in-out;
}
.service-list-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: calc(8px + 0.00125 * (100vw - 320px));
    color: #00162eb3;
}
.service-list-item .img-thumbnail {
    margin: 0;
}
.service-list-item .initial-letter {
    width: calc(40px + 0.0025 * (100vw - 320px));
    min-width: auto;
    height: calc(38px + 0.00375 * (100vw - 320px));
    font-size: calc(20px + 0.00125 * (100vw - 320px));
    font-weight: 600;
}
.service-list-item .details h5 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: unset;
}
.service-list-item .details h5 a {
    color: #222;
}
.service-list-item .user-email {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 400;
    margin-top: calc(1px + 0.00125 * (100vw - 320px));
}
.action-div > .d-inline-block > a {
    color: #00162eb3;
}
.table.dataTable:has(tbody tr td:nth-child(2) .action-div .user-info) thead tr th:nth-child(2) {
    text-align: left;
}
.table.dataTable .action-div > .d-inline-block > a {
    color: #00162eb3;
}
.table.dataTable .action-div:has(.switch) {
    display: flex;
    align-items: center;
    justify-content: center;
}
.table.dataTable .action-div .switch {
    width: 46px;
    height: 24px;
}
.table.dataTable .action-div .switch input:checked + .switch-state:before {
    transform: translate(24px) translateY(-50%);
    background-color: var(--theme-color);
}
.table.dataTable .action-div .switch .switch-state {
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
}
.table.dataTable .action-div .switch .switch-state:before {
    bottom: unset;
    top: 50%;
    transform: translate(3px) translateY(-50%);
}
.common-table .d-flex.flex-column .mb-3 small {
    font-size: 14px;
}
.common-table .d-flex.flex-column .mb-3 .badge.bg-info {
    background-color: #5465ff !important;
    line-height: 1.5;
    padding: 0.25em 0.65em;
}
.common-table .d-flex.flex-column .mb-3 .badge.rounded-pill {
    font-weight: 500;
    font-size: 12px;
    padding: 3px 8px;
}
.common-table .d-flex.flex-column .mb-3 .badge.rounded-pill a .visually-hidden {
    display: none;
}
.common-table .d-flex.flex-column .mb-3 .badge.rounded-pill a svg {
    width: 8px !important;
    height: 8px !important;
}
.common-table .d-flex.flex-column .d-md-flex.justify-content-between.mb-3 {
    flex-direction: row-reverse !important;
}
.common-table .d-flex.flex-column .d-md-flex.justify-content-between.mb-3 .d-md-flex {
    flex-direction: row-reverse;
    gap: 12px;
    position: relative;
}
.common-table .d-flex.flex-column .d-md-flex.justify-content-between.mb-3 .d-md-flex .ms-md-2 {
    margin-left: 0 !important;
}
.common-table .d-flex.flex-column .d-md-flex.justify-content-between.mb-3 .d-md-flex .btn.dropdown-toggle {
    background-color: #edeff166;
    border: 1px solid rgba(0, 22, 46, 0.1);
    padding: 12px 16px;
    font-size: calc(12px + 0.00125 * (100vw - 320px));
    font-weight: 400;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .common-table .d-flex.flex-column .d-md-flex.justify-content-between.mb-3 .d-md-flex .btn.dropdown-toggle {
        padding: 10px 12px;
    }
}
.common-table .d-flex.flex-column .d-md-flex.justify-content-between.mb-3 .d-md-flex .form-select {
    background-color: #edeff166;
    border: 1px solid rgba(0, 22, 46, 0.1);
    padding: 12px 16px;
    font-size: calc(12px + 0.00125 * (100vw - 320px));
    font-weight: 400;
    border-radius: 8px;
    width: 80px;
}
.common-table .d-flex.flex-column .d-md-flex.justify-content-between.mb-3 .d-md-flex .form-select:focus {
    box-shadow: none;
}
@media (max-width: 768px) {
    .common-table .d-flex.flex-column .d-md-flex.justify-content-between.mb-3 .d-md-flex .form-select {
        padding: 10px 12px;
    }
}
.common-table .d-flex.flex-column .d-md-flex.justify-content-between.mb-3 .d-md-flex .dropdown-menu .form-select {
    width: 100%;
}
.common-table:has(.common-table-select) .table-responsive .dataTables_wrapper .dataTables_filter {
    right: 185px;
}
.table-responsive {
    border-radius: 8px;
    position: relative;
}
.table-responsive .dataTables_wrapper {
    font-family: Poppins;
    position: static;
    overflow: auto;
}
.table-responsive .dataTables_wrapper .dataTables_length {
    position: absolute;
    left: 0;
    top: 0;
}
.table-responsive .dataTables_wrapper .dataTables_length label {
    display: flex;
    align-items: center;
    gap: 10px;
}
.table-responsive .dataTables_wrapper .dataTables_length select {
    background-color: #edeff166;
    border: 1px solid #edeff1;
    padding: 12px 16px;
    font-size: calc(12px + 0.00125 * (100vw - 320px));
    font-weight: 400;
    border-radius: 5px;
    width: 80px;
    background-image: url(https://laravel.webiots.co.in/fixit/build/assets/down-arrow-5e57c732.svg);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 18px 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.table-responsive .dataTables_wrapper .dataTables_length select:focus {
    box-shadow: none;
}
@media (max-width: 768px) {
    .table-responsive .dataTables_wrapper .dataTables_length select {
        padding: 10px 12px;
    }
}
.table-responsive .dataTables_wrapper .dataTables_filter {
    position: absolute;
    right: 0;
    top: 0;
}
.table-responsive .dataTables_wrapper .dataTables_filter input {
    background-color: #edeff166;
    border: 1px solid #edeff1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #00162e;
    width: 220px !important;
    margin-top: 0;
    margin-left: 8px;
    border-radius: 5px;
}
.table-responsive .dataTables_wrapper .dataTables_filter input::placeholder {
    color: #7a8591;
}
.table-responsive .dataTables_wrapper .dataTables_filter input:focus,
.table-responsive .dataTables_wrapper .dataTables_filter input:active {
    background-color: #edeff166;
    border: 1px solid rgba(0, 22, 46, 0.1);
}
.table-responsive .dataTables_wrapper .dataTables_filter input[type="color"] {
    width: 50px;
    height: 40px;
    padding: 8px !important;
}
.table-responsive .dataTables_wrapper .dataTables_info {
    position: absolute;
    bottom: 10px;
    left: 0;
}
.table-responsive .dataTables_wrapper .dataTables_paginate {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 10px;
    right: 0;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    line-height: 1;
    color: #00162ecc !important;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: #5465ff !important;
    border-color: #5465ff03;
    background: rgba(84, 101, 255, 0.1);
    box-shadow: unset;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: #fff !important;
    border-color: #5465ff;
    background: #5465ff;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.next {
    padding: 0;
    background: unset;
    box-shadow: unset;
    border: unset;
    outline: unset;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover,
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.previous:active,
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.next:hover,
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.next:active {
    background: unset;
    box-shadow: unset;
    border: unset;
    outline: unset;
    color: #00162ecc !important;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.previous {
    width: 60px;
}
.table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button.next {
    width: 35px;
}
.table-responsive .dataTables_wrapper .dataTables_paginate span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.table-responsive table {
    margin-top: 15px;
    display: inline-table;
    width: 100% !important;
    height: 100%;
}
.table-responsive table .form-check {
    padding: 0;
    width: fit-content;
}
.table-responsive table .form-check input {
    margin: 0;
}
.table-responsive table thead tr th {
    background-color: #5465ff;
    color: #fff;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
    font-weight: 400;
    padding: calc(12px + 0.0025 * (100vw - 320px)) calc(16px + 0.0025 * (100vw - 320px));
    vertical-align: middle;
    white-space: nowrap;
    border: none !important;
    text-align: center;
}
.table-responsive table thead tr th .form-check .form-check-input:after {
    background-color: #5465ff;
    border: 1px solid #ffffff;
}
.table-responsive table thead tr th .form-check .form-check-input:checked:before {
    border: 2px solid #ffffff;
    border-top-style: none !important;
    border-right-style: none !important;
}
.table-responsive table thead tr th div {
    gap: 20px;
}
.table-responsive table thead tr th:first-child {
    border-radius: 10px 0 0;
}
.table-responsive table thead tr th:last-child {
    border-radius: 0 10px 0 0;
}
.table-responsive table tbody tr {
    border: none;
}
.table-responsive table tbody tr td {
    padding: calc(12px + 0.00375 * (100vw - 320px)) calc(16px + 0.0025 * (100vw - 320px));
    padding-inline: 18px;
    font-size: 14px;
    font-weight: 400;
    border: none;
    color: #00162e;
    vertical-align: middle;
    text-align: center;
}
.table-responsive table tbody tr td.title {
    padding-right: 9px;
}
.table-responsive table tbody tr td .badge.badge-success {
    background-color: #27af4d;
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
    border: 1px solid #27af4d;
    padding: 0.25em 0.65em;
}
.table-responsive table tbody tr td .edit-icon,
.table-responsive table tbody tr td .show-icon,
.table-responsive table tbody tr td .lock-icon,
.table-responsive table tbody tr td .delete-svg {
    background-color: #00162e1a;
    border-radius: 6px;
    padding: 8px;
    width: calc(32px + (35 - 32) * ((100vw - 320px) / (1920 - 320)));
    height: calc(32px + (35 - 32) * ((100vw - 320px) / (1920 - 320)));
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-responsive table tbody tr td .edit-icon img,
.table-responsive table tbody tr td .show-icon img,
.table-responsive table tbody tr td .lock-icon img,
.table-responsive table tbody tr td .delete-svg img {
    width: calc(18px + 0.00125 * (100vw - 320px));
    height: calc(18px + 0.00125 * (100vw - 320px));
}
.table-responsive table tbody tr td .edit-icon svg,
.table-responsive table tbody tr td .show-icon svg,
.table-responsive table tbody tr td .lock-icon svg,
.table-responsive table tbody tr td .delete-svg svg {
    width: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
    height: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
    color: #00162eb3;
}
.table-responsive table tbody tr td .show-icon {
    background-color: #00162e0a;
}
.table-responsive table tbody tr td .delete-svg {
    background-color: #ff4b4b1a;
}
.table-responsive table tbody tr td .delete-svg svg {
    color: #ff4b4bcc;
}
.table-responsive table tbody tr td .wallet-icon {
    background-color: #ffbc5833;
    border-radius: 6px;
    padding: 8px;
    width: calc(32px + (35 - 32) * ((100vw - 320px) / (1920 - 320)));
    height: calc(32px + (35 - 32) * ((100vw - 320px) / (1920 - 320)));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffbc58;
}
.table-responsive table tbody tr td .wallet-icon svg {
    width: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
    height: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
}
.table-responsive table tbody tr td:last-child .action-div {
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.table-responsive table tbody tr td .switch {
    margin-bottom: -6px;
}
.table-responsive table tbody tr td .input-group-text {
    border: none;
}
.table-responsive table tbody tr:nth-child(2n) {
    background-color: #00162e0a;
}
.table-responsive table tbody tr:nth-child(2n) td {
    background: transparent;
}
.table-responsive table tbody tr:nth-child(odd) {
    background-color: #fff;
    background-image: unset;
}
.table-responsive table tbody tr:nth-child(odd) td {
    background: transparent;
}
.table-responsive table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}
.table-responsive table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}
.table-responsive table.dataTable thead .sorting,
.table-responsive table.dataTable thead .sorting_asc,
.table-responsive table.dataTable thead .sorting_desc,
.table-responsive table.dataTable thead .sorting_asc_disabled,
.table-responsive table.dataTable thead .sorting_desc_disabled {
    position: relative;
}
.table-responsive table.dataTable thead .sorting:before,
.table-responsive table.dataTable thead .sorting:after,
.table-responsive table.dataTable thead .sorting_asc:before,
.table-responsive table.dataTable thead .sorting_asc:after,
.table-responsive table.dataTable thead .sorting_desc:before,
.table-responsive table.dataTable thead .sorting_desc:after,
.table-responsive table.dataTable thead .sorting_asc_disabled:before,
.table-responsive table.dataTable thead .sorting_asc_disabled:after,
.table-responsive table.dataTable thead .sorting_desc_disabled:before,
.table-responsive table.dataTable thead .sorting_desc_disabled:after {
    top: 50% !important;
    transform: translateY(-50%);
    bottom: unset;
    font-size: 20px !important;
}
.table-responsive table.dataTable thead .sorting:before,
.table-responsive table.dataTable thead .sorting_asc:before,
.table-responsive table.dataTable thead .sorting_desc:before,
.table-responsive table.dataTable thead .sorting_asc_disabled:before,
.table-responsive table.dataTable thead .sorting_desc_disabled:before {
    right: 14px;
}
.table-responsive table.dataTable.no-footer {
    margin-block: 62px 56px !important;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(0, 22, 46, 0.1);
}
.table-responsive.modal-table {
    overflow-x: unset;
}
.table-responsive.modal-table table {
    margin: 0 !important;
    box-shadow: 0 0 0 1px #00162e1a;
    border-radius: 8px;
    overflow: hidden;
}
.table-responsive.modal-table table tbody tr td {
    padding: 12px;
    text-align: left;
    font-size: 14px;
}
.table-responsive.modal-table table tbody tr td:first-child {
    min-width: 170px;
    font-weight: 500;
}
.table-responsive.modal-table table tbody tr td textarea.form-control {
    min-height: 80px;
}
.table-responsive.modal-table table tbody tr td .form-control {
    background: unset !important;
    border: none !important;
    padding: 0;
    opacity: 0.8;
}
.table-responsive.language-table table {
    margin-top: 12px !important;
}
.table-responsive.language-table table thead tr th {
    min-width: 250px;
}
.table-responsive.language-table table tbody tr td input {
    background-color: transparent;
}
.table-responsive.service-detail table {
    margin: 0 !important;
}
.table-responsive.service-detail table thead tr th:first-child {
    width: 250px;
}
.table-responsive.service-detail table tbody tr td .booking-icon {
    display: inline-block;
    width: max-content;
}
.table-responsive.review-box {
    border: 1px solid #edeff1;
}
.table-responsive.review-box .table {
    margin: 0 !important;
}
.table-responsive.review-box .table tbody tr {
    background-color: #fff !important;
    border-bottom: 1px solid #edeff1;
}
.table-responsive.review-box .table tbody tr:last-child {
    border-bottom: none;
}
.table-responsive.review-box .table tbody tr td {
    padding: 12px 13px;
    vertical-align: middle;
}
.table-responsive.review-box .table tbody tr td .review-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.table-responsive.review-box .table tbody tr td .review-content .img-box {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.table-responsive.review-box .table tbody tr td .review-content span {
    text-align: left;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.table-responsive.review-box .table tbody tr td.review-rate {
    white-space: nowrap;
}
.table-responsive.review-box .table tbody tr td:nth-child(1) {
    width: auto;
    min-width: 218px;
}
.table-responsive.review-box .table tbody tr td:nth-child(2) {
    width: auto;
    min-width: 150px;
    text-align: center;
}
.table-responsive.provider-box .table {
    margin: 0 !important;
}
.table-responsive.provider-box tbody tr td {
    padding: 12px 14px;
}
.table-responsive.provider-box tbody tr td .provider-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}
.table-responsive.provider-box tbody tr td .provider-detail .provider-img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
}
.table-responsive.provider-box tbody tr td .provider-detail .location svg {
    width: 18px;
    height: 18px;
    color: #898989;
}
.table-responsive.provider-box tbody tr td .provider-detail h5 {
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0;
}
.table-responsive.provider-box tbody tr td:first-child {
    width: auto;
    min-width: 320px;
}
.table-responsive.provider-box tbody tr td:last-child {
    width: auto;
    min-width: 70px;
}
.table-responsive.provider-box tbody tr:last-child td {
    border: none;
}
.table-responsive.provider-box tbody .rate small {
    line-height: 1;
    padding-top: 2px;
}
.table-responsive.service-box .table {
    margin: 0 !important;
}
.table-responsive.service-box thead tr th:last-child {
    text-align: end;
}
.table-responsive.service-box thead tr th:first-child {
    text-align: start;
}
.table-responsive.service-box tbody tr td {
    padding: 12px 14px;
}
.table-responsive.service-box tbody tr td .service-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}
.table-responsive.service-box tbody tr td .service-detail .service-img {
    width: 45px;
    height: 45px;
    border-radius: 6px;
}
.table-responsive.service-box tbody tr td .service-detail h5 {
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0;
}
.table-responsive.service-box tbody tr td:nth-child(1) {
    width: 100%;
    min-width: 310px;
}
.table-responsive.service-box tbody tr td:nth-child(2) {
    width: auto;
    min-width: 95px;
}
.table-responsive.service-box tbody tr td:nth-child(3) {
    width: auto;
    min-width: 80px;
}
.table-responsive.service-box tbody tr:last-child td {
    border: none;
}
.table-responsive.booking-box .table {
    margin: 0 !important;
}
.table-responsive.booking-box thead tr th:last-child {
    text-align: end;
}
.table-responsive.booking-box thead tr th:first-child {
    text-align: start;
}
.table-responsive.booking-box tbody tr td {
    padding: 14px 16px;
}
.table-responsive.booking-box tbody tr td .booking-data {
    display: flex;
    align-items: center;
    gap: 10px;
}
.table-responsive.booking-box tbody tr td .booking-data .booking-img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
}
.table-responsive.booking-box tbody tr td .booking-data h5 {
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 0;
    color: #00162e;
}
.table-responsive.booking-box tbody tr td .booking-data h5:hover {
    color: #5465ff;
}
.table-responsive.booking-box tbody tr td .booking-data h6 {
    color: #808b97;
    text-align: left;
}
.table-responsive.booking-box tbody tr td:first-child {
    width: 100%;
    min-width: 270px;
}
.table-responsive.booking-box tbody tr td:nth-last-child(2) {
    width: auto;
}
.table-responsive.booking-box tbody tr:last-child td {
    border: none;
}
.latest-blogs .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.latest-blogs .no-data-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.table-no-data {
    text-align: center;
    padding: 60px 0;
}
.table-no-data h4 {
    font-size: calc(18px + 0.00125 * (100vw - 320px));
    font-weight: 500;
    color: #898989;
}
.initial-letter {
    width: calc(38px + 0.00125 * (100vw - 320px));
    min-width: 38px;
    height: calc(38px + 0.00125 * (100vw - 320px));
    border-radius: 100%;
    display: inline-flex;
    color: #00162eb3;
    align-items: center;
    justify-content: center;
    background-color: #00162e14;
    font-size: 20px;
    text-transform: uppercase;
}
.data-not-found {
    text-align: center;
    padding: 8px 0;
}
.data-not-found span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #00162eb3;
}
.wallet-main label.col-md-2 {
    display: none;
}
.wallet-main .col-md-10,
.full-width {
    width: 100%;
}
.user-table .table.dataTable thead .sorting:first-child:before,
.user-table .table.dataTable thead .sorting:first-child:after,
.user-table .table.dataTable thead .sorting_asc:first-child:before,
.user-table .table.dataTable thead .sorting_asc:first-child:after,
.user-table .table.dataTable thead .sorting_desc:first-child:before,
.user-table .table.dataTable thead .sorting_desc:first-child:after,
.user-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.user-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.user-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.user-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.user-table .table thead tr th:nth-child(3) {
    min-width: 150px;
}
.user-table .table thead tr th:nth-child(4) {
    min-width: 150px;
}
.user-table .table thead tr th:nth-child(5) {
    min-width: 140px;
}
.user-table .table thead tr th:nth-child(6) {
    min-width: 240px;
}
.user-table .table thead tr th:nth-child(7) {
    min-width: 80px;
}
.user-table .table thead tr th:last-child {
    min-width: 150px;
}
.user-table .table tbody tr td:last-child .action-div {
    justify-content: center;
}
.customer-table .table.dataTable thead .sorting:first-child:before,
.customer-table .table.dataTable thead .sorting:first-child:after,
.customer-table .table.dataTable thead .sorting_asc:first-child:before,
.customer-table .table.dataTable thead .sorting_asc:first-child:after,
.customer-table .table.dataTable thead .sorting_desc:first-child:before,
.customer-table .table.dataTable thead .sorting_desc:first-child:after,
.customer-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.customer-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.customer-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.customer-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.customer-table .table thead tr th:nth-child(3) {
    min-width: 245px;
}
.customer-table .table thead tr th:nth-child(4) {
    min-width: 150px;
}
.customer-table .table thead tr th:nth-child(6) {
    min-width: 230px;
}
.customer-table .table thead tr th:nth-child(7) {
    min-width: 80px;
}
.customer-table .table tbody tr td .action-div {
    text-align: left;
}
.customer-table .table tbody tr td .action-div .user-info {
    display: flex;
    align-items: center;
    gap: calc(0px + (7 - 0) * ((100vw - 320px) / (1920 - 320)));
}
.customer-table .table tbody tr td .action-div .user-details {
    color: #222;
}
.role-table .table.dataTable thead .sorting:first-child:before,
.role-table .table.dataTable thead .sorting:first-child:after,
.role-table .table.dataTable thead .sorting_asc:first-child:before,
.role-table .table.dataTable thead .sorting_asc:first-child:after,
.role-table .table.dataTable thead .sorting_desc:first-child:before,
.role-table .table.dataTable thead .sorting_desc:first-child:after,
.role-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.role-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.role-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.role-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.role-table .table thead tr th:nth-child(2) {
    min-width: 220px;
}
.role-table .table thead tr th:nth-child(3) {
    min-width: 200px;
}
.role-table .table thead tr th:nth-child(4) {
    min-width: 200px;
}
.provider-table .table.dataTable thead .sorting:first-child:before,
.provider-table .table.dataTable thead .sorting:first-child:after,
.provider-table .table.dataTable thead .sorting_asc:first-child:before,
.provider-table .table.dataTable thead .sorting_asc:first-child:after,
.provider-table .table.dataTable thead .sorting_desc:first-child:before,
.provider-table .table.dataTable thead .sorting_desc:first-child:after,
.provider-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.provider-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.provider-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.provider-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.provider-table .table thead tr th:nth-child(2) {
    min-width: 50px;
}
.provider-transaction-table .table thead tr th:nth-child(1) {
    min-width: 170px;
}
.provider-transaction-table .table thead tr th:nth-child(2) {
    min-width: 120px;
}
.provider-transaction-table .table thead tr th:nth-child(3) {
    min-width: 300px;
}
.provider-transaction-table .table thead tr th:nth-child(4) {
    min-width: 240px;
}
.provider-transaction-table .table tbody tr td .badge {
    padding: 7px 12px;
    border-radius: 6px;
}
.provider-wallet-table .table {
    margin-top: 0 !important;
}
.provider-wallet-table .table thead tr th:nth-child(2) {
    min-width: 160px;
}
.provider-wallet-table .table thead tr th:nth-child(3) {
    min-width: 170px;
}
.provider-wallet-table .table thead tr th:nth-child(4) {
    min-width: 350px;
}
.provider-wallet-table .table thead tr th:nth-child(5) {
    min-width: 250px;
}
.provider-document-table .table.dataTable thead .sorting:first-child:before,
.provider-document-table .table.dataTable thead .sorting:first-child:after,
.provider-document-table .table.dataTable thead .sorting_asc:first-child:before,
.provider-document-table .table.dataTable thead .sorting_asc:first-child:after,
.provider-document-table .table.dataTable thead .sorting_desc:first-child:before,
.provider-document-table .table.dataTable thead .sorting_desc:first-child:after,
.provider-document-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.provider-document-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.provider-document-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.provider-document-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.provider-document-table .table thead tr th:nth-child(2) {
    min-width: 100px;
}
.provider-document-table .table thead tr th:nth-child(3) {
    min-width: 240px;
}
.provider-document-table .table thead tr th:nth-child(4) {
    min-width: 170px;
}
.provider-time-slot-table .table.dataTable thead .sorting:first-child:before,
.provider-time-slot-table .table.dataTable thead .sorting:first-child:after,
.provider-time-slot-table .table.dataTable thead .sorting_asc:first-child:before,
.provider-time-slot-table .table.dataTable thead .sorting_asc:first-child:after,
.provider-time-slot-table .table.dataTable thead .sorting_desc:first-child:before,
.provider-time-slot-table .table.dataTable thead .sorting_desc:first-child:after,
.provider-time-slot-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.provider-time-slot-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.provider-time-slot-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.provider-time-slot-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.provider-time-slot-table .table thead tr th:nth-child(2) {
    min-width: 250px;
}
.provider-time-slot-table .table thead tr th:nth-child(3) {
    min-width: 80px;
}
.provider-time-slot-table .table thead tr th:nth-child(4) {
    min-width: 200px;
}
.service-table .table.dataTable thead .sorting:first-child:before,
.service-table .table.dataTable thead .sorting:first-child:after,
.service-table .table.dataTable thead .sorting_asc:first-child:before,
.service-table .table.dataTable thead .sorting_asc:first-child:after,
.service-table .table.dataTable thead .sorting_desc:first-child:before,
.service-table .table.dataTable thead .sorting_desc:first-child:after,
.service-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.service-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.service-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.service-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.service-table .table.dataTable thead tr th:nth-child(2),
.service-table .table.dataTable thead tr th:nth-child(3) {
    text-align: left;
}
.service-table .table thead tr th:nth-child(2) {
    min-width: 350px;
}
.service-package-table .table.dataTable thead .sorting:first-child:before,
.service-package-table .table.dataTable thead .sorting:first-child:after,
.service-package-table .table.dataTable thead .sorting_asc:first-child:before,
.service-package-table .table.dataTable thead .sorting_asc:first-child:after,
.service-package-table .table.dataTable thead .sorting_desc:first-child:before,
.service-package-table .table.dataTable thead .sorting_desc:first-child:after,
.service-package-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.service-package-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.service-package-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.service-package-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.service-package-table .table thead tr th:nth-child(2) {
    min-width: 100px;
}
.service-package-table .table thead tr th:nth-child(3) {
    min-width: 300px;
}
.service-package-table .table thead tr th:nth-child(4) {
    min-width: 140px;
}
.service-package-table .table thead tr th:nth-child(5) {
    min-width: 240px;
}
.service-package-table .table thead tr th:nth-child(6) {
    min-width: 80px;
}
.zone-table .table thead tr th:nth-child(2) {
    min-width: 300px;
}
.blog-table .table.dataTable thead .sorting:first-child:before,
.blog-table .table.dataTable thead .sorting:first-child:after,
.blog-table .table.dataTable thead .sorting_asc:first-child:before,
.blog-table .table.dataTable thead .sorting_asc:first-child:after,
.blog-table .table.dataTable thead .sorting_desc:first-child:before,
.blog-table .table.dataTable thead .sorting_desc:first-child:after,
.blog-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.blog-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.blog-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.blog-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.blog-table .table thead tr th:nth-child(2) {
    min-width: 320px;
}
.blog-table .table thead tr th:nth-child(3) {
    min-width: 240px;
}
.blog-table .table thead tr th:nth-child(4) {
    min-width: 160px;
}
.blog-table .table thead tr th:nth-child(5) {
    min-width: 80px;
}
.tag-table .table.dataTable thead .sorting:first-child:before,
.tag-table .table.dataTable thead .sorting:first-child:after,
.tag-table .table.dataTable thead .sorting_asc:first-child:before,
.tag-table .table.dataTable thead .sorting_asc:first-child:after,
.tag-table .table.dataTable thead .sorting_desc:first-child:before,
.tag-table .table.dataTable thead .sorting_desc:first-child:after,
.tag-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.tag-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.tag-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.tag-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.tag-table .table thead tr th:nth-child(2) {
    min-width: 230px;
}
.tag-table .table thead tr th:nth-child(3) {
    min-width: 240px;
}
.tag-table .table thead tr th:nth-child(4) {
    min-width: 80px;
}
.page-table .table.dataTable thead .sorting:first-child:before,
.page-table .table.dataTable thead .sorting:first-child:after,
.page-table .table.dataTable thead .sorting_asc:first-child:before,
.page-table .table.dataTable thead .sorting_asc:first-child:after,
.page-table .table.dataTable thead .sorting_desc:first-child:before,
.page-table .table.dataTable thead .sorting_desc:first-child:after,
.page-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.page-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.page-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.page-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.page-table .table thead tr th:nth-child(2) {
    min-width: 100px;
}
.page-table .table thead tr th:nth-child(3) {
    min-width: 240px;
}
.page-table .table thead tr th:nth-child(4) {
    min-width: 240px;
}
.page-table .table thead tr th:nth-child(5) {
    min-width: 80px;
}
.tax-table .table.dataTable thead .sorting:first-child:before,
.tax-table .table.dataTable thead .sorting:first-child:after,
.tax-table .table.dataTable thead .sorting_asc:first-child:before,
.tax-table .table.dataTable thead .sorting_asc:first-child:after,
.tax-table .table.dataTable thead .sorting_desc:first-child:before,
.tax-table .table.dataTable thead .sorting_desc:first-child:after,
.tax-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.tax-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.tax-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.tax-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.tax-table .table thead tr th:nth-child(2) {
    min-width: 220px;
}
.tax-table .table thead tr th:nth-child(3) {
    min-width: 240px;
}
.tax-table .table thead tr th:nth-child(4) {
    min-width: 80px;
}
.zone-table .table.dataTable thead .sorting:first-child:before,
.zone-table .table.dataTable thead .sorting:first-child:after,
.zone-table .table.dataTable thead .sorting_asc:first-child:before,
.zone-table .table.dataTable thead .sorting_asc:first-child:after,
.zone-table .table.dataTable thead .sorting_desc:first-child:before,
.zone-table .table.dataTable thead .sorting_desc:first-child:after,
.zone-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.zone-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.zone-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.zone-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.zone-table .table thead tr th:nth-child(2) {
    min-width: 220px;
}
.zone-table .table thead tr th:nth-child(3) {
    min-width: 240px;
}
.zone-table .table thead tr th:nth-child(4) {
    min-width: 80px;
}
.currency-table .table.dataTable thead .sorting:first-child:before,
.currency-table .table.dataTable thead .sorting:first-child:after,
.currency-table .table.dataTable thead .sorting_asc:first-child:before,
.currency-table .table.dataTable thead .sorting_asc:first-child:after,
.currency-table .table.dataTable thead .sorting_desc:first-child:before,
.currency-table .table.dataTable thead .sorting_desc:first-child:after,
.currency-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.currency-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.currency-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.currency-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.currency-table .table thead tr th:nth-child(2) {
    min-width: 100px;
}
.currency-table .table thead tr th:nth-child(3) {
    min-width: 240px;
}
.currency-table .table thead tr th:nth-child(4) {
    min-width: 80px;
}
.transaction-table .table thead tr th:nth-child(1) {
    min-width: 100px;
}
.transaction-table .table thead tr th:nth-child(2) {
    min-width: 150px;
}
.transaction-table .table thead tr th:nth-child(3) {
    min-width: 150px;
}
.transaction-table .table thead tr th:nth-child(4) {
    min-width: 300px;
}
.transaction-table .table thead tr th:nth-child(5) {
    min-width: 230px;
}
.serviceman-table .table.dataTable thead .sorting:first-child:before,
.serviceman-table .table.dataTable thead .sorting:first-child:after,
.serviceman-table .table.dataTable thead .sorting_asc:first-child:before,
.serviceman-table .table.dataTable thead .sorting_asc:first-child:after,
.serviceman-table .table.dataTable thead .sorting_desc:first-child:before,
.serviceman-table .table.dataTable thead .sorting_desc:first-child:after,
.serviceman-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.serviceman-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.serviceman-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.serviceman-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.serviceman-table .table thead tr th:nth-child(3) {
    min-width: 240px;
}
.serviceman-table .table thead tr th:nth-child(5) {
    min-width: 240px;
}
.serviceman-table .table thead tr th:nth-child(6) {
    min-width: 80px;
}
.document-table .table.dataTable thead .sorting:first-child:before,
.document-table .table.dataTable thead .sorting:first-child:after,
.document-table .table.dataTable thead .sorting_asc:first-child:before,
.document-table .table.dataTable thead .sorting_asc:first-child:after,
.document-table .table.dataTable thead .sorting_desc:first-child:before,
.document-table .table.dataTable thead .sorting_desc:first-child:after,
.document-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.document-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.document-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.document-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.document-table .table thead tr th:nth-child(2) {
    min-width: 250px;
}
.document-table .table thead tr th:nth-child(3) {
    min-width: 240px;
}
.document-table .table thead tr th:nth-child(4) {
    min-width: 80px;
}
.coupon-table .table.dataTable thead .sorting:first-child:before,
.coupon-table .table.dataTable thead .sorting:first-child:after,
.coupon-table .table.dataTable thead .sorting_asc:first-child:before,
.coupon-table .table.dataTable thead .sorting_asc:first-child:after,
.coupon-table .table.dataTable thead .sorting_desc:first-child:before,
.coupon-table .table.dataTable thead .sorting_desc:first-child:after,
.coupon-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.coupon-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.coupon-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.coupon-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.coupon-table .table thead tr th:nth-child(2) {
    min-width: 150px;
}
.coupon-table .table thead tr th:nth-child(3) {
    min-width: 240px;
}
.coupon-table .table thead tr th:nth-child(4) {
    min-width: 80px;
}
.plan-table .table thead tr th:nth-child(2) {
    min-width: 160px;
}
.plan-table .table thead tr th:nth-child(3) {
    min-width: 150px;
}
.plan-table .table thead tr th:nth-child(6) {
    min-width: 230px;
}
.banner-table .table.dataTable thead .sorting:first-child:before,
.banner-table .table.dataTable thead .sorting:first-child:after,
.banner-table .table.dataTable thead .sorting_asc:first-child:before,
.banner-table .table.dataTable thead .sorting_asc:first-child:after,
.banner-table .table.dataTable thead .sorting_desc:first-child:before,
.banner-table .table.dataTable thead .sorting_desc:first-child:after,
.banner-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.banner-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.banner-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.banner-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.banner-table .table thead tr th:nth-child(2) {
    min-width: 100px;
}
.banner-table .table thead tr th:nth-child(3) {
    min-width: 230px;
}
.banner-table .table thead tr th:nth-child(4) {
    min-width: 180px;
}
.banner-table .table thead tr th:nth-child(5) {
    min-width: 240px;
}
.banner-table .table thead tr th:nth-child(6) {
    min-width: 80px;
}
.common-table-select {
    position: absolute;
    top: 87px;
    right: 20px;
    z-index: 1;
    width: 170px;
}
.common-table-select .select2.select2-container .select2-selection.select2-selection--single .select2-selection__placeholder {
    line-height: 1.2;
}
.booking-table .table thead tr th:nth-child(2) {
    min-width: 170px;
}
.booking-table .table thead tr th:nth-child(3) {
    min-width: 160px;
}
.booking-table .table thead tr th:nth-child(4) {
    min-width: 120px;
}
.booking-table .table thead tr th:nth-child(5) {
    min-width: 140px;
}
.booking-table .table thead tr th:nth-child(6) {
    min-width: 90px;
}
.booking-table .table thead tr th:nth-child(7) {
    min-width: 150px;
}
.booking-table .table thead tr th:nth-child(8) {
    min-width: 126px;
}
.booking-table tbody tr td .form-controll {
    color: #00162e;
}
.booking-table tbody tr td .form-controll:hover {
    color: #5465ff;
}
.booking-table tbody tr td .badge {
    padding-block: 6px;
}
.booking-table tbody tr td .badge.COMPLETED {
    color: #27af4d;
    background-color: #27af4d1a;
}
.booking-table tbody tr td .badge.PENDING {
    color: #ffbc58;
    background-color: #ffbc581a;
}
.booking-table tbody tr td .badge.FAILED {
    color: #ff4b4b;
    background-color: #ff4b4b1a;
}
.booking-table tbody tr td span {
    color: var(--theme-color);
}
.sub-booking-table .table thead tr th:nth-child(2) {
    min-width: 260px;
}
.sub-booking-table .table thead tr th:nth-child(3) {
    min-width: 250px;
}
.sub-booking-table .table thead tr th:nth-child(4) {
    min-width: 160px;
}
.commission-history-table .table.dataTable thead .sorting:first-child:before,
.commission-history-table .table.dataTable thead .sorting:first-child:after,
.commission-history-table .table.dataTable thead .sorting_asc:first-child:before,
.commission-history-table .table.dataTable thead .sorting_asc:first-child:after,
.commission-history-table .table.dataTable thead .sorting_desc:first-child:before,
.commission-history-table .table.dataTable thead .sorting_desc:first-child:after,
.commission-history-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.commission-history-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.commission-history-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.commission-history-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.commission-history-table .table thead tr th:nth-child(2) {
    min-width: 180px;
}
.commission-history-table .table thead tr th:nth-child(3) {
    min-width: 250px;
}
.commission-history-table .table thead tr th:nth-child(4) {
    min-width: 170px;
}
.commission-history-table .table thead tr th:nth-child(5) {
    min-width: 170px;
}
.serviceman-info-table .table thead tr th:nth-child(1) {
    min-width: 210px;
}
.serviceman-info-table .table thead tr th:nth-child(2) {
    min-width: 270px;
}
.serviceman-info-table .table thead tr th:nth-child(3) {
    min-width: 180px;
}
.withdraw-request-table .table thead tr th:nth-child(1) {
    min-width: 250px;
}
.withdraw-request-table .table thead tr th:nth-child(2) {
    min-width: 170px;
}
.withdraw-request-table .table thead tr th:nth-child(3) {
    min-width: 170px;
}
.withdraw-request-table .table thead tr th:nth-child(4) {
    min-width: 250px;
}
.notification-table .table.dataTable thead .sorting:first-child:before,
.notification-table .table.dataTable thead .sorting:first-child:after,
.notification-table .table.dataTable thead .sorting_asc:first-child:before,
.notification-table .table.dataTable thead .sorting_asc:first-child:after,
.notification-table .table.dataTable thead .sorting_desc:first-child:before,
.notification-table .table.dataTable thead .sorting_desc:first-child:after,
.notification-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.notification-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.notification-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.notification-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.notification-table .table thead tr th:nth-child(2) {
    min-width: 230px;
}
.notification-table .table thead tr th:nth-child(3) {
    min-width: 300px;
}
.notification-table .table thead tr th:nth-child(4) {
    min-width: 200px;
}
.notification-table .table thead tr th:nth-child(5) {
    min-width: 200px;
}
.consumer-transaction-table .table thead tr th:nth-child(1) {
    min-width: 180px;
}
.consumer-transaction-table .table thead tr th:nth-child(2) {
    min-width: 200px;
}
.consumer-transaction-table .table thead tr th:nth-child(3) {
    min-width: 300px;
}
.consumer-transaction-table .table thead tr th:nth-child(4) {
    min-width: 240px;
}
.userreview-table .table.dataTable thead .sorting:first-child:before,
.userreview-table .table.dataTable thead .sorting:first-child:after,
.userreview-table .table.dataTable thead .sorting_asc:first-child:before,
.userreview-table .table.dataTable thead .sorting_asc:first-child:after,
.userreview-table .table.dataTable thead .sorting_desc:first-child:before,
.userreview-table .table.dataTable thead .sorting_desc:first-child:after,
.userreview-table .table.dataTable thead .sorting_asc_disabled:first-child:before,
.userreview-table .table.dataTable thead .sorting_asc_disabled:first-child:after,
.userreview-table .table.dataTable thead .sorting_desc_disabled:first-child:before,
.userreview-table .table.dataTable thead .sorting_desc_disabled:first-child:after {
    display: none !important;
}
.userreview-table .table thead tr th:nth-child(2) {
    min-width: 230px;
}
.userreview-table .table thead tr th:nth-child(3) {
    min-width: 230px;
}
.userreview-table .table thead tr th:nth-child(4) {
    min-width: 120px;
}
.userreview-table .table thead tr th:nth-child(5) {
    min-width: 300px;
}
.language-table table thead tr th:nth-child(2) {
    min-width: 250px;
}
.language-table table thead tr th:nth-child(3) {
    min-width: 140px;
}
.language-table table thead tr th:nth-child(4) {
    min-width: 140px;
}
.language-table table thead tr th:nth-child(5) {
    min-width: 80px;
}
.language-table table thead tr th:nth-child(6) {
    min-width: 80px;
}
.language-table table thead tr th:nth-child(7) {
    min-width: 240px;
}
.service-list-item {
    display: flex;
    align-items: center;
}
.service-list-item .img-thumbnail {
    width: 50px;
    height: 50px;
}
.service-list-item .details {
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
}
.service-list-item .details h5 {
    margin-bottom: 0;
}
.service-list-item .details .info {
    font-size: small;
    color: #6c757d;
    display: flex;
    margin-top: 3px;
}
.service-list-item .details .info span {
    position: relative;
}
.service-list-item .details .info span + span {
    margin-left: 6px;
    padding-left: 6px;
}
.service-list-item .details .info span + span:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: calc(100% - 4px);
    border-left: 1px solid #6c757d38;
}
.service-table thead tr th:first-child,
.service-table thead tr td:first-child,
.service-table tbody tr th:first-child,
.service-table tbody tr td:first-child {
    width: auto;
}
.jstree-default .jstree-anchor {
    width: auto;
    line-height: calc(26px + (29 - 26) * ((100vw - 320px) / (1920 - 320)));
}
.jstree-default .jstree-hovered {
    box-shadow: unset;
}
.jstree-default .jstree-children ul[role="group"] .jstree-node {
    margin-left: 30px;
}
@media (max-width: 575px) {
    .jstree-default .jstree-children ul[role="group"] .jstree-node {
        margin-left: 15px;
    }
}
.jstree-default .jstree-search {
    color: #00162ee6;
    font-weight: 400;
    font-style: normal;
}
.jstree-default .jstree-icon,
.jstree-default .jstree-node {
    color: #00162ee6;
}
.jstree .edit-icon {
    background-color: unset;
    border-radius: 0;
    padding: 0;
}
.jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor {
    position: relative;
    border: none;
    margin: 0;
    font-size: 14px;
}
.jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor .jstree-icon {
    background-image: url(https://laravel.webiots.co.in/fixit/build/assets/folder-7e891edb.svg) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    margin: 0 !important;
}
.jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor .actions {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    transition: all 0.2s ease;
    position: absolute;
    right: -60px;
    top: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
@media (max-width: 575px) {
    .jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor .actions {
        right: -40px;
    }
}
.jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor .actions .edit-icon,
.jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor .actions .remove-icon,
.jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor .actions .edit-child,
.jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor .actions .delete-child {
    width: calc(16px + 0.00125 * (100vw - 320px));
    height: calc(16px + 0.00125 * (100vw - 320px));
}
@media (min-width: 992px) {
    .jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor .actions {
        opacity: 0;
        transform: scale(0.8);
        visibility: hidden;
    }
    .jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor:hover .actions {
        opacity: 1;
        transform: scale(1);
        visibility: visible;
        transition: all 0.2s ease;
    }
}
.jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor.jstree-hovered {
    background: unset;
}
.jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor.jstree-clicked {
    color: #5465ff;
    background: unset;
    border: unset;
    box-shadow: none;
}
.jstree .jstree-container-ul.jstree-children .jstree-node.jstree-open .jstree-anchor .jstree-icon {
    background-image: url(https://laravel.webiots.co.in/fixit/build/assets/folder-7e891edb.svg) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
}
.jstree .jstree-container-ul.jstree-children .jstree-node ul li .jstree-anchor .jstree-icon.ti-file {
    background-image: url(https://laravel.webiots.co.in/fixit/build/assets/file-caf1015a.svg) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
}
.jstree .jstree-container-ul.jstree-children .jstree-node ul li .jstree-anchor .jstree-icon.ti-file:before {
    display: none;
}
.jstree .jstree-container-ul.jstree-children i {
    --Iconsax-Size: 20px;
    --Iconsax-Color: #0b64c3;
}
.no-data .form-group {
    margin-bottom: 0;
}
.no-data .jstree {
    min-height: 220px;
    padding-top: 24px;
}
.no-data-detail {
    margin-left: 0 !important;
}
.no-data-detail .jstree-anchor {
    height: 220px;
}
.no-data-detail img {
    height: calc(170px + 0.0125 * (100vw - 320px));
    width: calc(220px + 0.01875 * (100vw - 320px));
}
.no-data-detail .jstree-icon {
    display: none;
}
.address-body .no-data-detail {
    align-items: center;
    justify-content: center;
}
.address-body .no-data-detail .data-not-found {
    margin-top: 20px;
}
.vertical-tabs .nav-pills {
    border: none;
    position: sticky !important;
    top: 87px;
    flex-wrap: nowrap;
    flex-direction: column;
}
.vertical-tabs .nav-pills .nav-link {
    margin: 0 0 6px;
    position: relative;
    border-radius: 6px;
    width: 100%;
    text-align: left;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #00162e99;
    font-size: calc(14px + 0.00125 * (100vw - 320px));
    font-weight: 500;
    text-transform: capitalize;
    background-color: #edeff166;
    border: 1px solid #edeff1;
}
.vertical-tabs .nav-pills .nav-link + .nav-link {
    margin-top: 8px;
}
.vertical-tabs .nav-pills .nav-link.active {
    background-color: #5465ff;
    color: #fff;
}
.vertical-tabs .nav-pills .nav-link.active i {
    --Iconsax-Color: #ffff;
}
.vertical-tabs .nav-pills .nav-link svg {
    width: 18px !important;
    height: 18px !important;
}
.vertical-tabs .nav-pills .nav-link i {
    font-size: 18px;
}
.vertical-tabs .tab-content {
    border-left: 1px dashed #ddd;
    padding-left: 24px;
    height: 100%;
}
.vertical-tabs .tab-content .tab-content {
    border-left: none;
    padding-left: 0;
}
.vertical-tabs .tab-content .button-box {
    border-top: 1px dashed #edeff1;
    margin-top: calc(20px + (25 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.vertical-tabs .tab-content .btn {
    display: flex;
    margin-left: auto;
    margin-top: calc(20px + 0.0025 * (100vw - 320px));
    padding: calc(9px + 0.00125 * (100vw - 320px)) calc(24px + (29 - 24) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(14px + 0.00125 * (100vw - 320px));
}
.vertical-tabs .col-md-2 {
    width: 25%;
}
.vertical-tabs .col-md-10 {
    width: 75%;
}
.vertical-tabs .submit-form {
    display: flex;
    align-items: center;
    justify-content: end;
    width: max-content;
    margin-left: auto;
    margin-top: 24px;
}
.vertical-tabs .submit-form input {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #fff;
}
.service-package-section .service-package-content .service-detail {
    color: #fff;
    margin: 30px;
    width: auto;
}
.service-package-section .service-package-content .service-detail .service-icon {
    border-radius: 10px;
    background-color: #e5e8ea;
    padding: 12px;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}
.service-package-section .service-package-content .service-detail .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-top: 6px;
}
.service-package-section .service-package-content .service-detail .price span {
    font-size: 26px;
    font-weight: 700;
    line-height: 33px;
}
.service-package-section .service-package-content .service-detail .price i {
    --Iconsax-Size: 24px;
    --Iconsax-Color: white;
    transform: translate(0);
    transition: all 0.2s ease;
}
.service-package-section .service-package-content .service-detail .price:hover i {
    transform: translate(5px);
    transition: all 0.2s ease;
}
.service-package-section .service-package-content .service-bg {
    width: 100%;
    border-radius: 15px;
    height: 200px;
    position: relative;
    overflow: hidden;
}
.service-package-section .service-package-content .service-bg .service-1 {
    position: absolute;
    bottom: -90px;
    right: -160px;
    height: 250px;
}
.service-package-section .service-package-content .service-bg .service-2 {
    position: absolute;
    top: -120px;
    right: -90px;
    height: 250px;
    transform: rotate(230deg);
}
.service-package-section .service-package-content .service-bg .service-3 {
    position: absolute;
    bottom: -100px;
    left: -70px;
    height: 250px;
    transform: rotate(49deg);
}
.service-package-section .service-package-content .service-bg .service-4 {
    position: absolute;
    top: -92px;
    left: -80px;
    height: 250px;
    transform: rotate(190deg);
}
.service-package-section .service-package-content .service-bg:hover .service-icon img {
    animation: tada 1.5s ease infinite;
}
.service-package-section .service-package-content .service-bg-primary {
    background-color: #5465ffcc;
}
.service-package-section .service-package-content .service-bg-secondary {
    background-color: #ff6161;
}
.service-package-section .service-package-content .service-bg-info {
    background-color: #00a8ff;
}
.service-package-section .service-package-content .service-bg-success {
    background-color: #27af4d;
}
.service-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.service-title h4,
.service-title h4 a {
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    text-overflow: ellipsis;
}
.service-title span {
    font-size: 14px;
    line-height: 20px;
    color: #f7f8f9;
}
.service-title small {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}
.service-detail ul {
    display: flex;
    align-items: start;
}
.service-detail ul li {
    border-right: 1px solid #e5e8ea;
    padding: 0 10px;
}
[dir="rtl"] .service-detail ul li {
    border-left: 1px solid #e5e8ea;
    border-right: unset;
}
[dir="rtl"] .service-detail ul li:first-child {
    padding-left: unset;
    padding-right: 0;
}
[dir="rtl"] .service-detail ul li:last-child {
    padding-right: unset;
    padding-left: 0;
}
.service-detail ul li:first-child {
    padding-left: 0;
}
.service-detail ul li:last-child {
    border: none;
    padding-right: 0;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.service-detail p {
    font-size: 14px;
    color: #f7f8f9;
    position: relative;
    padding: 0 0 0 22px;
    margin: 12px 0 0;
    line-height: 23px;
}
.service-detail p:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #f7f8f9;
    border-radius: 100%;
    top: 10px;
    left: 6px;
}
.time {
    display: flex;
    align-items: start;
    gap: 4px;
    color: #27af4d;
    font-size: 14px;
}
.time i {
    --Iconsax-Size: 18px;
    --Iconsax-Color: #27af4d;
}
.time span {
    font-weight: 500;
}
.date-time li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    flex-wrap: wrap;
}
.date-time li span {
    color: #f7f8f9;
    font-size: 16px;
}
.date-time li small {
    font-weight: 500;
    color: #00162e;
    font-size: 16px;
}
.service-list-section {
    background-color: #7f786d;
}
.service-list-section.bg-white {
    background-color: #fff;
}
.service-list-section .service-list-content .card .card-footer {
    position: relative;
}
.service-list-section .service-list-content .card .card-footer:before {
    content: "";
    width: 91%;
    position: absolute;
    height: 1px;
    border: 1px dashed #e5e8ea;
    left: 15px;
    top: 0;
    transform: translateY(-50%);
}
.service-list-section .service-list-content .card .card-footer:after {
    content: "";
    position: absolute;
    right: 14px;
    top: -3px;
    border-bottom: 2px solid #e5e8ea;
    border-right: 2px solid #e5e8ea;
    width: 6px;
    height: 6px;
    transform: rotate(312deg);
}
.service-list-section .service-list-content .card .card-footer .footer-detail {
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-list-section .service-list-content .card .card-footer .footer-detail img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
}
.service-list-section .service-list-content .card .card-footer .footer-detail img.star {
    width: 16px;
    height: 16px;
}
.service-list-section .service-list-content .card .card-footer .footer-detail p {
    margin: 0;
    font-weight: 500;
    color: #00162e;
    font-size: 14px;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    text-overflow: ellipsis;
}
.service-list-section .service-list-content .card .card-footer .footer-detail i {
    --Iconsax-Size: 18px;
    --Iconsax-Color: #ffc412;
}
.service-list-section .service-list-content .card .card-footer a {
    display: flex;
    align-items: center;
    gap: 2px;
}
.service-list-section .service-list-content .card .card-footer a.btn {
    width: max-content;
}
.service-list-section .service-list-content .card .card-footer a.btn.btn-outline {
    color: #5465ff;
    font-size: 18px;
    line-height: 1;
}
.service-list-section .service-list-content .card .card-footer a i {
    --Iconsax-Size: 19px;
    --Iconsax-Color: #0019ff;
}
.service-list-section .service-list-content .service-detail-slider .service-img {
    border-radius: 15px;
}
.service-list-section .service-list-content .service-detail p {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.detail-content {
    margin-top: 24px;
}
.detail-content .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: none;
    margin: 0;
    padding-bottom: 4px;
}
.detail-content .title:before {
    display: none;
}
.detail-content .title h3 {
    font-size: calc(20px + 0.0025 * (100vw - 320px));
    font-weight: 500;
}
.detail-content p {
    color: #f7f8f9;
    font-size: 16px;
    margin: 12px 0;
}
.detail-content label {
    font-size: 16px;
    margin-bottom: 4px;
}
.detail-content .lists {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.detail-content .detail-sec {
    background-color: #7f786d;
    border-radius: 10px;
}
.detail-content .detail-sec .overview-list {
    color: #f7f8f9;
}
.service-item {
    gap: 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e8ea;
}
.service-item:first-child {
    padding-top: 0;
}
.service-item:last-child {
    border: none;
    padding-bottom: 0;
}
.service-item img {
    width: calc(80px + 0.025 * (100vw - 320px));
    height: calc(80px + 0.025 * (100vw - 320px));
}
.amount-value {
    font-weight: 700;
    font-size: 22px;
    line-height: 40px;
}
.amount {
    border-radius: 12px;
}
.amount-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #5465ff1a;
    color: #5465ff;
    padding: 16px;
}
.amount-header span {
    font-size: 16px;
}
.amount-header small {
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
}
.amount-detail {
    padding: 16px;
}
.amount-detail i {
    --Iconsax-Size: 24px;
    --Iconsax-Color: #00162e;
    border-right: 1px solid #e5e8ea;
    padding-right: 10px;
}
.amount-detail ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.amount-detail ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #00162e;
}
.service-img .favourite {
    top: calc(10px + 0.0125 * (100vw - 320px));
    right: calc(10px + 0.0125 * (100vw - 320px));
    left: unset;
}
.favourite {
    width: max-content;
    border-radius: 100%;
    background-color: #ff4b4b;
    padding: calc(5px + (8 - 5) * ((100vw - 320px) / (1920 - 320)));
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
}
.favourite .nolike {
    --Iconsax-Size: calc(16px + 0.0025 * (100vw - 320px));
    --Iconsax-Color: white;
    display: block;
}
.favourite .nolike.hide {
    display: none;
}
.favourite .like {
    height: calc(16px + 0.0025 * (100vw - 320px)) !important;
    width: calc(16px + 0.0025 * (100vw - 320px)) !important;
    display: none;
}
.favourite .like.show {
    display: block;
}
.servicemen-lists {
    background-color: #5465ff1a;
    width: 100%;
    padding: 16px;
    border: 1px dashed #5465ff;
    color: #5465ff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
}
.time-container .time-slot:first-child:last-child .remove-time-slot {
    display: none;
}
.time-container .time-slot + .time-slot {
    padding-top: 24px;
    border-top: 1px dashed rgba(0, 22, 46, 0.1);
}
.time-slots-structure .form-group .form-control.is-invalid {
    padding-right: 26px !important;
}
.time-slots-structure .form-group .position-relative {
    font-family: Poppins, sans-serif;
}
.time-slots-structure .form-group .position-relative input {
    font-size: 14px;
    letter-spacing: 0.7px;
    z-index: 1;
    position: relative;
}
.time-slots-structure .form-group .position-relative svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #00162ecc;
}
.faq-container .faqs-structure:first-child:last-child .remove-time-slot {
    display: none;
}
.faq-container .faqs-structure + .faqs-structure {
    border-top: 1px dashed rgba(0, 22, 46, 0.1);
    padding-top: 20px;
}
.email-template-box {
    height: 40rem;
    box-shadow: none;
}
.email-template-box .card-body {
    background-color: #f8f9f9;
    border-radius: 6px;
}
.email-template-box .card-title {
    border-bottom: 1px solid #edeff1;
    padding-bottom: 9px;
    color: #00162ea3;
    font-weight: 500;
}
.email-template-box .card-text:empty {
    display: none;
}
.email-template-box .email-btn {
    margin-top: 15px;
    border-top: 1px solid #edeff1;
    padding-top: 15px;
}
.email-template-box .card-footer {
    border-top: 1px dashed rgba(0, 22, 46, 0.1);
}
.dark {
    background-color: #1a1c28;
    color: #f1f1f1;
}
.dark h1 {
    color: #fff;
}
.dark h2 {
    color: #f1f3f5;
}
.dark h3 {
    color: #eaedef;
}
.dark h4 {
    color: #e7eaec;
}
.dark h5 {
    color: #dee2e6;
}
.dark h6,
.dark p,
.dark li {
    color: #cfd4da;
}
.dark .mobile-logo .dark-logo {
    display: none;
}
.dark .mobile-logo .light-logo {
    display: flex;
}
.dark .form-control,
.dark .select2-selection {
    color: #f1f1f1;
    background-color: #1a1c28 !important;
    transition: all 0.3s ease;
    border: 1px solid #404040 !important;
}
.dark .form-control::-webkit-inner-spin-button,
.dark .select2-selection::-webkit-inner-spin-button {
    filter: invert(1);
}
.dark .form-control:disabled,
.dark .form-control[readonly] {
    background-color: #1a1c2873 !important;
}
.dark select {
    color: #f1f1f1;
    background-color: #1a1c28;
    border: #404040;
}
.dark select:focus {
    box-shadow: none;
}
.dark option {
    background-color: #1a1c28;
    transition: all 0.3s ease;
}
.dark .dark-light-mode .light-mode {
    display: none !important;
}
.dark .dark-light-mode .dark-mode {
    display: flex !important;
}
.dark .page-main-header .main-header-right .nav-right ul li {
    color: #f1f1f1;
    border-right-color: #ffffff4d;
}
.dark .page-main-header .main-header-right .nav-right ul li h6,
.dark .page-main-header .main-header-right .nav-right ul li .profile-box {
    color: #f1f1f1;
}
.dark .page-main-header .main-header-right .nav-right ul li .profile-box .initial-letter {
    color: #f1f1f1;
    background-color: #f1f1f114;
}
.dark .page-main-header .main-header-right .nav-right .profile-dropdown li a svg {
    color: #f1f1f1;
}
.dark .page-main-header .main-header-right .mobile-sidebar i {
    --Iconsax-Color: #f1f1f1;
}
.dark .jstree-loader {
    background-color: #262935;
}
.dark .tab2-card .nav-tabs .nav-link {
    color: #cbcbcb;
}
.dark .tab2-card.card .form-control {
    color: #f1f1f1;
    background-color: #1a1c28;
    transition: all 0.3s ease;
    border: 1px solid #404040;
}
.dark .tab2-card.card .form-control.flatpickr-input {
    background-color: #1a1c28 !important;
}
.dark .initial-letter {
    color: #f1f1f1;
    background-color: #f1f1f114;
}
.dark .page-wrapper .page-main-header {
    background-color: #262935;
}
.dark .page-wrapper .page-body-wrapper,
.dark .page-wrapper .page-body-wrapper .page-body,
.dark .page-wrapper .page-body-wrapper .page-sidebar {
    background-color: #1a1c28;
}
.dark .page-wrapper .page-body-wrapper footer {
    background-color: #262935;
}
.dark .page-wrapper .page-body-wrapper footer p {
    color: #cfd4da;
}
.dark .page-wrapper .main-header-right .nav-right ul li a,
.dark .widget-card h3,
.dark .booking-widget-card h3 {
    color: #f1f1f1;
}
.dark .booking-status-main .booking-status-card .booking-widget-card {
    border-color: #3a3d48;
}
.dark .booking-status-main .booking-status-card:nth-child(4) .booking-widget-card {
    border-bottom-color: #ffffff80;
}
.dark .booking-status-main .booking-status-card:nth-child(4) .booking-widget-card .booking-widget-icon {
    background-color: #ffffff14;
}
.dark .booking-status-main .booking-status-card:nth-child(4) .booking-widget-card .booking-widget-icon svg {
    color: #f1f1f1cc;
}
.dark .card {
    background-color: #262935;
}
.dark .card .card-header {
    background-color: #262935;
    border-color: #3a3d48;
}
.dark .card .card-header h5,
.dark .card .card-header .status-div label {
    color: #f1f1f1;
}
.dark .card .card-body {
    background-color: #262935;
}
.dark .tab2-card .nav-tabs {
    background-color: #1a1c28;
}
.dark .vertical-tabs .nav-pills .nav-link {
    background-color: #1a1c28;
    color: #f1f1f1b3;
}
.dark .vertical-tabs .nav-pills .nav-link.active {
    background-color: #5465ff;
    color: #f1f1f1;
}
.dark .booking-detail ul li p,
.dark .wallet-detail ul li p {
    color: #f1f1f180;
}
.dark .booking-detail .send-req button,
.dark .wallet-detail .send-req button,
.dark .booking-detail ul li span,
.dark .wallet-detail ul li span,
.dark .table-responsive .dataTables_wrapper .dataTables_info,
.dark .table-responsive .dataTables_wrapper .dataTables_length,
.dark .table-responsive .dataTables_wrapper .dataTables_filter {
    color: #f1f1f1;
}
.dark .table-responsive .dataTables_wrapper .dataTables_length select,
.dark .table-responsive .dataTables_wrapper .dataTables_length input,
.dark .table-responsive .dataTables_wrapper .dataTables_filter select,
.dark .table-responsive .dataTables_wrapper .dataTables_filter input {
    background-color: #1a1c28;
    border-color: #404040;
    color: #f1f1f1;
}
.dark .table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button,
.dark .table-responsive .dataTables_wrapper .dataTables_paginate .ellipsis,
.dark .table-responsive .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.dark .table-responsive .dataTables_wrapper .dataTables_paginate .ellipsis:hover {
    color: #f1f1f1cc !important;
}
.dark .table-responsive .dataTables_wrapper .dataTables_processing {
    background: #262935;
    color: #f1f1f1;
}
.dark .table-responsive table tbody tr:nth-child(2n) {
    background-color: #1a1c28;
}
.dark .table-responsive table tbody tr:nth-child(2n) td {
    background: transparent;
}
.dark .table-responsive table tbody tr:nth-child(odd) {
    background-color: #262935;
    background-image: unset;
}
.dark .table-responsive table tbody tr:nth-child(odd) td {
    background: transparent;
}
.dark .table-responsive table tbody tr td {
    color: #808b97;
}
.dark .table-responsive table tbody tr td .show-icon {
    background-color: #3a3d4899;
}
.dark .table-responsive table tbody tr td .show-icon img {
    filter: invert(0.6);
}
.dark .table-responsive table tbody tr td .show-icon svg {
    color: #f1f1f199;
}
.dark .table-responsive table tbody tr td .edit-icon,
.dark .table-responsive table tbody tr td .show-icon,
.dark .table-responsive table tbody tr td .lock-icon {
    background-color: #3a3d4899;
}
.dark .table-responsive table tbody tr td .edit-icon img,
.dark .table-responsive table tbody tr td .show-icon img,
.dark .table-responsive table tbody tr td .lock-icon img {
    filter: invert(0.6);
}
.dark .table-responsive table tbody tr td .edit-icon svg,
.dark .table-responsive table tbody tr td .show-icon svg,
.dark .table-responsive table tbody tr td .lock-icon svg {
    color: #f1f1f199;
}
.dark .table-responsive table.dataTable.no-footer {
    border-bottom-color: #3a3d48;
}
.dark .table-responsive.provider-box tbody tr td .location svg {
    color: #808b97;
}
.dark .table-responsive.booking-box tbody tr td .booking-data h6 {
    color: #808b97;
}
.dark .table-responsive.review-box {
    border-color: #3a3d48;
}
.dark .table-responsive.review-box .table tbody tr {
    background-color: #262935 !important;
    border-color: #3a3d48;
}
.dark .table-responsive.modal-table table tbody tr td:first-child,
.dark .blog-box .blog-content a {
    color: #f1f1f1;
}
.dark .blog-box .blog-content h6 {
    color: #808b97;
}
.dark .onhover-show-div {
    background-color: #1a1c28;
}
.dark .notification-dropdown li:first-child,
.dark .notification-dropdown li:last-child {
    border-color: #3a3d48;
}
.dark .notification-dropdown li:first-child h4,
.dark .notification-dropdown li:last-child h4 {
    border-color: #3a3d48;
}
.dark .search-list {
    background-color: #1a1c28;
    transition: all 0.3s ease;
    border: 1px solid #404040;
}
.dark .search-list li a {
    color: #f1f1f1;
}
.dark .search-list li .sidebar-header:hover,
.dark .search-list li:hover {
    background-color: #f1f1f10a;
}
.dark .checkbox_animated:after,
.dark .form-check .form-check-input:after {
    background-color: #262935;
    border-color: #e8ebf233;
}
.dark .form-check.form-radio .form-check-input:after {
    border-color: #404040;
}
.dark ::file-selector-button {
    background-color: #1a1c28;
    color: #f1f1f1;
}
.dark .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #262935;
    color: #f1f1f1;
}
.dark .form-group label {
    color: #f1f1f1;
}
.dark .select2-dropdown {
    background-color: #1a1c28;
}
.dark .select2-search__field {
    color: #f1f1f1 !important;
}
.dark .select2-results__option--highlighted {
    background-color: #ffffff0a !important;
    color: #f1f1f1 !important;
}
.dark .phone-detail .select2-selection.select2-selection--single {
    background-color: #3a3d4899 !important;
    border-color: #3a3d4899 !important;
}
.dark .phone-detail .select2-selection.select2-selection--single .select2-selection__rendered {
    color: #f1f1f1 !important;
}
.dark .modal .modal-content {
    background-color: #1a1c28;
}
.dark .modal .modal-content .modal-header {
    border-bottom-color: #3a3d48;
}
.dark .modal .modal-content .modal-body .modal-title {
    color: #f1f1f1;
}
.dark .modal .modal-content .modal-body p {
    color: #808b97;
}
.dark .modal .modal-content .modal-body .main-img {
    background-color: #262935;
}
.dark .modal .modal-content .modal-body .main-img img {
    filter: invert(0.5);
}
.dark .modal .modal-content .modal-body .main-img svg {
    color: #f1f1f1d9;
}
.dark .modal .modal-content .modal-footer .cancel {
    background-color: #262935;
    border-color: #262935;
    color: #f1f1f1;
}
.dark .modal.wallet-modal .modal-content .modal-body .wallet h5 {
    color: #f1f1f1cc;
}
.dark .modal.wallet-modal .modal-content .modal-body .wallet h3 {
    color: #f1f1f1;
}
.dark .select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered {
    color: #f1f1f1 !important;
}
.dark .select2-container--open .select2-dropdown--below,
.dark .select2-container--open .select2-dropdown--above {
    border-color: #3a3d48;
    box-shadow: 0 1px 8px -1px #787a8080;
}
.dark .select2-container--open .select2-dropdown--below .select2-search--dropdown .select2-search__field,
.dark .select2-container--open .select2-dropdown--above .select2-search--dropdown .select2-search__field {
    border-color: #3a3d48;
}
.dark .permission .permission-section ul {
    background-color: #262935;
    border-bottom-color: #3a3d48;
}
.dark .permission .permission-section ul li label {
    color: #cfd4da;
}
.dark .switch .switch-state {
    background-color: #3a3d48;
}
.dark .color-picker {
    color: #f1f1f1;
}
.dark .image-list .image-list-item {
    border: 1px solid #3a3d48;
}
.dark .service-address {
    background-color: #1a1c28;
}
.dark .service-address .service-add-detail .address .address-detail h4 {
    color: #f1f1f1;
}
.dark .edit-icon {
    background-color: #3a3d4899;
}
.dark .edit-icon svg {
    color: #f1f1f199;
}
.dark .add-more .add-more-div {
    background-color: #3a3d4899;
}
.dark .add-more .add-more-div svg {
    color: #fff;
}
.dark .form-group .input-group .input-group-text {
    background-color: #3a3d4899 !important;
    border-color: #3a3d4899 !important;
    color: #f1f1f1;
}
.dark .wallet-detail-content .wallet-amount h5 {
    color: #f1f1f180;
}
.dark .wallet-detail-content .wallet-amount .form-group .form-control[readonly] {
    color: #f1f1f1;
}
.dark .footer .cancel,
.dark .profile-btn .cancel {
    background-color: #3a3d48;
    border-color: #3a3d48;
    color: #f1f1f1;
}
.dark .data-not-found span {
    color: #f1f1f1;
}
.dark .faq-container .faqs-structure + .faqs-structure {
    border-top-color: #3a3d48;
}
.dark .jstree-default .jstree-icon,
.dark .jstree-default .jstree-node,
.dark .jstree-default .jstree-search {
    color: #f1f1f1e6;
}
.dark .jstree-default .jstree-icon.jstree-ocl {
    filter: invert(1);
}
.dark .actions .edit-icon,
.dark .actions .edit-child {
    background-color: unset;
    filter: invert(0.7);
}
.dark .flatpickr-calendar {
    background-color: #1a1c28;
    box-shadow: none;
    border: 1px solid #3a3d48;
}
.dark .flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.dark .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
    background-color: #262935;
    color: #f1f1f1;
    fill: #f1f1f1;
}
.dark .flatpickr-calendar .flatpickr-months .flatpickr-monthDropdown-months,
.dark .flatpickr-calendar .flatpickr-months .numInputWrapper,
.dark .flatpickr-calendar .flatpickr-innerContainer {
    background-color: #262935;
    color: #f1f1f1;
}
.dark .flatpickr-calendar .flatpickr-day.inRange {
    border: none;
    color: #f1f1f180;
}
.dark .notification-setting li {
    background-color: #1a1c28;
}
.dark .notification-setting li h4 {
    color: #f1f1f1cc;
}
.dark .notification-setting li h5 {
    color: #cfd4da80;
}
.dark .notification-setting li h5 i {
    --Iconsax-Color: #cfd4da80;
}
.dark .notification-setting li.unread {
    background-color: #5465ff1a;
}
.dark .tox.tox-tinymce {
    background-color: #1a1c28;
    color: #f1f1f1;
    border-color: #404040 !important;
}
.dark .tox.tox-tinymce .tox-statusbar {
    background-color: #1a1c28 !important;
    border-top-color: #404040;
}
.dark .tox.tox-tinymce .tox-statusbar .tox-statusbar__path-item {
    color: #f1f1f1;
}
.dark .tox.tox-tinymce .tox-toolbar-overlord .tox-toolbar {
    border-bottom: 1px solid #404040;
}
.dark .tox.tox-tinymce .tox-sidebar-wrap {
    filter: invert(0.85);
}
.dark .tox .tox-collection--list .tox-collection__item--active,
.dark .tox .tox-collection--toolbar .tox-collection__item--active {
    background-color: #262935;
    color: #f1f1f1;
}
.dark .tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled),
.dark .tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
    color: #f1f1f1;
}
.dark .tox .tox-menu {
    background-color: #1a1c28;
    color: #f1f1f1;
    border-color: #404040 !important;
}
.dark .tox .tox-menu .tox-collection__item {
    color: #f1f1f1;
}
.dark .tox .tox-menu .tox-collection__item.tox-collection__item--enabled {
    background-color: #262935;
}
.dark .tox .tox-tbtn {
    color: #f1f1f199;
}
.dark .tox .tox-tbtn svg {
    color: #f1f1f199;
    fill: #f1f1f199;
}
.dark .tox .tox-tbtn:hover {
    background: #262935;
    color: #f1f1f1;
}
.dark .tox .tox-tbtn:hover svg {
    color: #f1f1f199;
    fill: #f1f1f199;
}
.dark .tox .tox-tbtn--enabled:hover,
.dark .tox .tox-tbtn--enabled {
    background: rgba(58, 61, 72, 0.2);
}
.dark .tox:not([dir="rtl"]) .tox-toolbar__group:not(:last-of-type) {
    border-right: 1px solid #404040;
}
.dark .apexcharts-text tspan {
    fill: #f1f1f1;
}
.dark .apexcharts-svg .apexcharts-inner .apexcharts-xaxis-tick,
.dark .apexcharts-svg .apexcharts-inner .apexcharts-grid .apexcharts-gridlines-horizontal .apexcharts-gridline,
.dark .apexcharts-svg .apexcharts-inner .apexcharts-grid-borders .apexcharts-gridline {
    stroke: #e8ebf24d;
}
.dark .image-list-item {
    color: #f1f1f1;
}
.dark #toast-container .toast {
    background-color: #1a1c28 !important;
}
.dark .modal .modal-header h5 {
    color: #f1f1f1;
}
.dark .switch input:checked + .switch-state {
    background-color: #5465ff66;
}
.dark .start-time input[type="time" i]::-webkit-calendar-picker-indicator,
.dark .end-time input[type="time" i]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
.dark .instruction-box .list-box h5,
.dark .instruction-box .list-box ul li {
    color: #f1f1f1e6;
}
@media (max-width: 1660px) {
    .col-sm-1 {
        width: 17%;
    }
    .col-sm-11 {
        width: 83%;
    }
    #phone-error.error {
        margin-left: -20%;
    }
}
@media (max-width: 1600px) {
    .col-md-2 {
        width: 25%;
    }
    .col-md-10 {
        width: 75%;
    }
    .ui-menu.ui-widget {
        width: 37% !important;
    }
    .widget-card h5,
    .booking-widget-card h5 {
        font-size: 14px;
    }
    .widget-card .widget-icon,
    .widget-card .booking-widget-icon,
    .booking-widget-card .widget-icon,
    .booking-widget-card .booking-widget-icon {
        width: 40px !important;
        height: 40px !important;
    }
    .widget-card .widget-icon i,
    .widget-card .booking-widget-icon i,
    .booking-widget-card .widget-icon i,
    .booking-widget-card .booking-widget-icon i {
        --Iconsax-Size: 22px;
    }
}
@media (max-width: 1500px) {
    .col-sm-1 {
        width: 19%;
    }
    .col-sm-11 {
        width: 81%;
    }
    #phone-error.error {
        margin-left: -23%;
    }
    .map-instruction .notify-img {
        width: 100% !important;
    }
}
@media (max-width: 1399px) {
    .col-sm-1 {
        width: 18%;
    }
    .col-sm-11 {
        width: 82%;
    }
    #phone-error.error {
        margin-left: -22%;
    }
}
@media (max-width: 1367px) {
    h2 {
        font-size: 32px;
    }
}
@media (max-width: 1199px) {
    .vertical-tabs .nav-pills {
        flex-direction: row;
        gap: calc(10px + (15 - 10) * ((100vw - 320px) / (1200 - 320)));
        overflow: auto hidden;
    }
    .vertical-tabs .nav-pills .nav-link {
        white-space: nowrap;
        margin: 0;
        padding: calc(11px + (12 - 11) * ((100vw - 320px) / (1200 - 320))) calc(15px + (25 - 15) * ((100vw - 320px) / (1200 - 320)));
        gap: calc(10px + (13 - 10) * ((100vw - 320px) / (1200 - 320)));
    }
    .vertical-tabs .nav-pills .nav-link:last-child {
        margin-bottom: 0;
    }
    .vertical-tabs .nav-pills .nav-link + .nav-link {
        margin: 0;
    }
    .vertical-tabs .tab-content {
        border-top: 1px dashed #ddd;
        border-left: none;
        padding-top: 16px;
        padding-left: 0;
    }
    .col-sm-1 {
        width: 19%;
    }
    .col-sm-11 {
        width: 81%;
    }
}
@media (max-width: 991px) {
    .ui-menu.ui-widget {
        width: 57% !important;
    }
    .sidebar.overflow-hidden {
        overflow: auto !important;
    }
    h2 {
        font-size: 28px;
    }
    h4 {
        font-size: 16px;
    }
    .col-sm-1 {
        width: 18%;
    }
    .col-sm-11 {
        width: 82%;
    }
    .mobile-logo {
        height: calc(80px + (49 - 24) * ((100vw - 320px) / (1920 - 320)));
    }
    .mobile-logo .dark-logo {
        display: flex;
        max-height: fit-content;
        max-width: 105px;
        margin-top: 20px;
    }
    .mobile-logo .light-logo {
        display: none;
    }
    #phone-error.error {
        margin-left: -22%;
    }
    .page-wrapper .page-body-wrapper .page-sidebar {
        top: 0 !important;
        height: 100vh !important;
        z-index: 12;
    }
    .page-wrapper .page-body-wrapper .page-sidebar ~ .page-body {
        margin-left: 0;
    }
    .page-wrapper .page-body-wrapper .sidebar {
        height: calc(100vh - 60px);
    }
    .page-wrapper .page-body-wrapper .page-sidebar.open ~ .page-body .activity .media .gradient-round.gradient-line-1:after {
        bottom: -45px;
    }
    .page-wrapper .page-body-wrapper .page-sidebar.open ~ .page-body .activity .media .gradient-round.small-line:after {
        bottom: -28px;
    }
    .page-wrapper .page-body-wrapper .page-sidebar.open ~ .page-body .activity .media .gradient-round.medium-line:after {
        bottom: -41px;
    }
    .page-wrapper .page-body-wrapper footer {
        margin-left: 0;
    }
    .page-wrapper .page-main-header {
        margin-left: 0;
        width: 100%;
        z-index: 11;
    }
}
@media (max-width: 767px) {
    .table.dataTable td.dataTables_empty,
    table.dataTable td.dataTables_empty {
        text-align: left !important;
    }
    .card-right {
        margin-left: 0;
    }
    .page-wrapper .page-body-wrapper .page-sidebar ~ .page-body {
        margin-top: 100px;
    }
    .page-wrapper .page-body-wrapper .page-sidebar .main-header-left {
        height: 60px;
    }
    .page-wrapper .page-body-wrapper .page-sidebar .main-header-left .logo-wrapper a img {
        max-width: 140px;
        filter: grayscale(100%) invert(100%) brightness(200%);
        max-height: fit-content;
    }

    .page-wrapper .page-body-wrapper footer .row div {
        text-align: center;
        display: block !important;
    }
    .common-table-select {
        position: inherit;
        top: 87px;
        right: 20px;
        z-index: 1;
        width: 100%;
        margin-bottom: 15px;
    }
    .page-wrapper .page-body-wrapper footer .row div .pull-right {
        float: none;
    }
    .page-wrapper .page-main-header {
        height: 90px;
    }
    .page-wrapper .main-header-right {
        padding: 0 20px;
    }
    .select2-container--open .select2-dropdown--below .select2-results .select2-results__options .select2-results__option,
    .select2-container--open .select2-dropdown--above .select2-results .select2-results__options .select2-results__option {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .col-md-2 {
        width: 100%;
    }
    .form-control,
    .roles .form-control {
        padding: 10px 12px !important;
    }
    .col-md-10 {
        width: 100%;
    }
    .ui-menu.ui-widget {
        width: 85% !important;
    }
    label {
        margin-bottom: 0.25rem;
    }
    .tab2-card.card .form-control {
        padding: 10px 12px !important;
    }
    .form-group {
        margin-bottom: 16px;
    }
    .phone-detail .col-md-2 {
        width: 30%;
    }
    .phone-detail .col-md-10 {
        width: 70%;
    }
    .card .card-header {
        flex-direction: column;
        align-items: start !important;
        gap: 10px;
    }
    .card .card-header .btn-popup {
        margin-left: 0 !important;
    }
    .vertical-tabs .col-md-2,
    .vertical-tabs .col-md-10 {
        width: 100%;
    }
    .wallet-detail-content .credit,
    .wallet-detail-content .debit {
        padding: 10px;
    }
    .select-2.language ~ .select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered {
        padding-top: 7px;
        margin-bottom: 0 !important;
        margin-left: 12px;
    }
    .select-2.language ~ .select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
        line-height: 1.25;
        font-size: 13px;
        margin-top: 0;
    }
    .table-responsive .dataTables_wrapper .dataTables_filter {
        margin-top: 0;
    }
    .table-responsive .dataTables_wrapper .dataTables_filter input {
        padding: 10px 12px;
    }
    .table-responsive .dataTables_wrapper .dataTables_info {
        left: 50%;
        transform: translate(-50%);
        bottom: 6px;
    }
    .table-responsive .dataTables_wrapper .dataTables_paginate {
        right: unset;
        left: 50%;
        transform: translate(-50%);
        bottom: 33px;
    }
    .table-responsive .dataTables_wrapper table {
        margin-top: 58px !important;
    }
    .table-responsive .dataTables_wrapper table.dataTable.no-footer {
        margin-bottom: 76px !important;
    }
}
@media (max-width: 577px) {
    footer {
        margin-bottom: 0 !important;
    }
    .col-sm-1 {
        width: 19%;
    }
    .col-sm-11 {
        width: 81%;
    }
}
@media (max-width: 575px) {
    .demo-credential {
        flex-wrap: wrap;
        justify-content: center;
    }
    .demo-credential .btn {
        width: auto;
        min-width: 118px;
    }
    .service-address {
        padding: 12px;
    }
    .service-address .location-icon {
        padding: 6px;
        width: 32px;
    }
    .service-address .service-add-detail .action i {
        --Iconsax-Size: 16px;
    }
    .ui-menu.ui-widget {
        width: 79% !important;
    }
    .page-wrapper .page-main-header .main-header-right {
        padding: 10px 14px;
    }
    .page-wrapper .page-main-header .main-header-right .nav-right > ul > li {
        padding: 0 8px;
    }
    .page-wrapper .page-main-header .main-header-right .nav-right > ul > li:last-child {
        padding-right: 0;
    }
    .page-wrapper .page-main-header .main-header-right .nav-right > ul > li svg {
        width: 20px;
        height: 20px;
    }
    .page-wrapper .page-body-wrapper .page-sidebar {
        position: fixed;
        top: 0;
        left: -350px;
        width: calc(300px + (320 - 300) * ((100vw - 320px) / (576 - 320)));
    }
    .page-wrapper .page-body-wrapper .page-sidebar.open {
        left: 0;
        padding-top: 30px;
    }
    .edit-icon,
    .delete-icon {
        padding: 6px;
    }
    .auth-page .auth-card {
        padding: 20px;
    }
    .card .card-header {
        padding: 15px;
    }
    .card .card-header h5 {
        font-size: 17px;
    }
    .card .card-header .card-header-right {
        right: 6px;
        top: 10px;
    }
    .card .card-body {
        padding: 15px;
    }
    .form-inline .form-control-plaintext {
        display: inline-block;
    }
    .d-sm-none:after {
        display: none;
    }
    ul.notification-dropdown.onhover-show-div {
        width: 284px;
        right: -55px;
    }
    ul.notification-dropdown.onhover-show-div:before,
    ul.notification-dropdown.onhover-show-div:after {
        right: 135px !important;
    }
    .profile-details img {
        margin-bottom: 15px;
    }
    .tab2-card ul {
        margin-bottom: 15px !important;
    }
    .tab2-card ul li {
        display: block;
    }
    .tab2-card ul li a {
        text-align: center;
    }
    .account-setting h5 {
        margin-bottom: 15px;
    }
    h2 {
        font-size: 24px;
    }
    .btn-solid,
    .btn-outline {
        padding: 7px 15px;
    }
    .wallet-detail-content {
        gap: 8px;
    }
    .wallet-detail-content .wallet-form {
        flex-direction: column;
        align-items: start;
        gap: 16px;
    }
    .wallet-detail-content .wallet-form .form-group {
        width: 100%;
    }
    .booking-detail.summary-detail ul {
        gap: 16px;
    }
    .booking-detail.summary-detail ul li {
        flex-direction: column;
        gap: 4px;
        justify-content: unset;
        align-items: start;
    }
    .table-responsive .dataTables_wrapper .dataTables_filter {
        left: 0;
        top: 56px;
        right: unset;
    }
    .table-responsive .dataTables_wrapper .dataTables_filter input {
        width: 190px !important;
    }
    .table-responsive .dataTables_wrapper table {
        margin-top: 116px !important;
    }
}
@media (max-width: 520px) {
    .col-sm-1 {
        width: 25%;
    }
    .col-sm-11 {
        width: 75%;
    }
    .col-sm-3 {
        width: 37%;
    }
    .col-sm-9 {
        width: 63%;
    }
    #phone-error.error {
        margin-left: -33%;
    }
}
@media (max-width: 420px) {
    h2 {
        font-size: 22px;
    }
    footer p {
        line-height: 25px;
    }
    .col-sm-1 {
        width: 35%;
    }
    .col-sm-11 {
        width: 65%;
    }
    .col-sm-3,
    .col-sm-9 {
        width: 50%;
    }
    .phone-detail .error {
        margin-left: -54%;
    }
    .jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor .jstree-anchor {
        width: auto;
    }
    .jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor .jstree-anchor span {
        width: 130px;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        white-space: normal;
    }
}
@media (max-width: 360px) {
    .notify-img {
        width: 260px !important;
    }
    .btn-solid,
    .btn-outline {
        padding: 10px 15px;
    }
    h2 {
        font-size: 25px;
    }
    footer .btn-solid {
        padding: 7px 8px;
    }
    .footer {
        padding-left: 0;
        padding-right: 0 !important;
    }
    .footer p {
        font-size: 12px;
    }
    .page-wrapper .page-main-header .main-header-right .nav-right > ul > li {
        padding: 0 6px;
    }
}
@media (min-width: 576px) {
    .form-inline .form-group {
        display: flex;
        flex: 0 0 auto;
        flex-flow: row wrap;
        align-items: center;
        margin-bottom: 0;
    }
}
body.rtl {
    direction: rtl;
}
.rtl .me-2 {
    margin-right: unset !important;
    margin-left: 0.5rem !important;
}
.rtl .text-end {
    text-align: left !important;
}
.rtl .text-start {
    text-align: right !important;
}
.rtl .form-check {
    padding-left: 0;
    padding-right: 1.5em;
}
.rtl .form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
    margin-left: 0;
}
.rtl .page-wrapper .page-main-header {
    margin-left: unset;
    margin-right: 270px;
}
.rtl .page-wrapper .page-main-header .nav-right > ul > li {
    border-right: unset;
    border-left: 1px solid rgba(0, 22, 46, 0.1);
}
.rtl .page-wrapper .page-main-header .nav-right > ul > li:last-child {
    padding-left: 0;
    padding-right: 12px;
    border-left: none;
}
.rtl .page-wrapper .page-main-header .nav-right .nav-menus .onhover-dropdown:hover .onhover-show-div {
    left: 0;
    right: unset;
}
.rtl .page-wrapper .page-main-header .nav-right .nav-menus ul.notification-dropdown.onhover-show-div li {
    text-align: right;
}
.rtl .page-wrapper .page-main-header .nav-right .profile-dropdown li a svg,
.rtl .page-wrapper .page-main-header .nav-right .language-dropdown li a svg {
    margin-left: 10px;
    margin-right: unset;
}
.rtl .page-wrapper .page-main-header .nav-right .profile-dropdown li:hover a span,
.rtl .page-wrapper .page-main-header .nav-right .language-dropdown li:hover a span {
    transform: translate(-4px);
}
.rtl .page-wrapper .page-main-header.open {
    margin-right: 0;
    margin-left: unset;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar ~ .page-body {
    margin-left: unset;
    margin-right: 270px;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-header .stroke-icon {
    margin-left: unset;
    margin-right: auto;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-header svg {
    margin-right: unset;
    margin-left: 14px;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-header:hover span {
    transform: translate(-3px);
    transition: all 0.3s ease;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu li {
    padding-right: 12px;
    padding-left: unset;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu li a {
    padding-right: 10px !important;
    padding-left: unset !important;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu li a:before {
    border-bottom-left-radius: unset !important;
    border-left: unset !important;
    border-bottom-right-radius: 9px;
    border-right: 1.5px solid #f7f7f7;
    left: unset;
    right: -19px;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu li a.active:after {
    border-right: unset;
    border-bottom: unset;
    border-left: 1.5px solid #f7f7f7;
    border-top: 1.5px solid #f7f7f7;
    right: -10px;
    left: unset;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu:before {
    left: unset;
    right: -7px;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar .sidebar-menu li .sidebar-submenu.menu-open {
    margin-right: 15px;
    margin-left: unset;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar.open {
    margin-left: unset;
    margin-right: -275px;
}
.rtl .page-wrapper .page-body-wrapper .page-sidebar.open ~ .page-body {
    margin-right: 0;
}
.rtl .form-group .position-relative .toggle-password {
    left: 16px;
    right: unset;
}
.rtl .form-group .input-group.phone-detail .select2.select2-container .select2-selection.select2-selection--single {
    border-radius: 0 10px 10px 0 !important;
}
.rtl .form-group .input-group .form-control {
    border-radius: 10px 0 0 10px !important;
}
.rtl .form-group .input-group .input-group-text,
.rtl .form-group .input-group .percent .form-control {
    border-radius: 0 10px 10px 0 !important;
}
.rtl .form-group .input-group .percent ~ .input-group-text {
    border-radius: 10px 0 0 10px !important;
}
.rtl .select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__arrow,
.rtl .select2.select2-container .select2-selection.select2-selection--single .select2-selection__arrow {
    right: unset;
    left: 10px;
}
.rtl .select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered,
.rtl .select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered {
    justify-content: end;
    padding-right: 14px;
}
.rtl .select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered .select2-search--inline .select2-search__field,
.rtl .select2.select2-container .select2-selection.select2-selection--single .select2-selection__rendered .select2-search--inline .select2-search__field {
    text-align: end;
}
.rtl .select2.select2-container .select2-selection.select2-selection--multiple .select2-selection__rendered {
    flex-direction: row-reverse;
}
.rtl .select2-container--open .select2-dropdown--below .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted,
.rtl .select2-container--open .select2-dropdown--above .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted {
    border-left: unset;
    border-right: 3px solid #5465ff;
}
.rtl .select2-container {
    direction: ltr;
}
.rtl .search-list li:hover:before {
    right: 0;
    left: unset;
}
.rtl .search-list li:hover .sidebar-header:before {
    display: none;
}
.rtl .table-responsive table {
    direction: ltr;
}
.rtl .table-responsive.booking-box tbody tr td .booking-data h6 {
    text-align: right;
}
.rtl .table-responsive .dataTables_wrapper .dataTables_filter input {
    margin-left: unset;
    margin-right: 8px;
}
.rtl .table-responsive .dataTables_wrapper .dataTables_length select {
    background-position: left 0.75rem center;
}
.rtl .apexcharts-canvas {
    direction: ltr;
}
.rtl .search-form svg,
.rtl .search-full svg {
    right: 18px;
    left: unset;
}
.rtl .checkbox_animated,
.rtl .form-check .form-check-input {
    margin: 0 0 0 1rem;
}
.rtl .tab2-card .nav-tabs .nav-item {
    border-left: 1px solid rgba(122, 133, 145, 0.3);
    border-right: unset;
}
.rtl .tab2-card .nav-tabs .nav-item:first-child .nav-link {
    border-radius: 0 10px 10px 0;
}
.rtl .tab2-card .nav-tabs .nav-item:first-child .nav-link.active {
    border-left: 1px solid #5465ff;
    border-right: unset;
}
.rtl .modal.wallet-modal .modal-content .modal-body .amount {
    text-align: left;
}
.rtl .modal.wallet-modal .modal-content .modal-body .amount .input-group .input-group-text {
    border-radius: 10px 0 0 10px !important;
}
.rtl .modal.wallet-modal .modal-content .modal-body .amount .input-group .form-control {
    border-radius: 0 10px 10px 0 !important;
}
.rtl .jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor {
    padding-right: 8px;
    padding-left: unset;
}
.rtl .jstree .jstree-container-ul.jstree-children .jstree-node .jstree-anchor .actions {
    right: unset;
    left: -60px;
}
.rtl .jstree-default .jstree-children ul[role="group"] .jstree-node {
    margin-right: 30px;
    margin-left: unset;
}
.rtl .jstree-default.jstree-rtl .jstree-node {
    min-height: 24px;
    line-height: 32px;
    margin: 0 0 0 24px;
    min-width: 24px;
    background-position: -291px -4px;
    background-repeat: repeat-y;
}
@media (max-width: 991px) {
    .rtl .page-wrapper .page-main-header {
        margin-right: 0;
    }
    .rtl .page-wrapper .page-body-wrapper .page-sidebar ~ .page-body {
        margin-right: 0;
    }
}
.rtl.dark .page-wrapper .page-main-header .nav-right > ul > li {
    border-left-color: #f1f1f14d;
}
.jstree-loader {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.jstree-loader img {
    width: 70px;
}
.no-icons li i,
.no-icons li svg,
.no-icons li img {
    display: none;
}
.row > div:nth-child(1) .widget-card {
    background-color: #89898933;
}
.row > div:nth-child(1) .widget-card .widget-icon {
    background-color: #898989;
}
.row > div:nth-child(2) .widget-card {
    background-color: #ffbc5833;
}
.row > div:nth-child(2) .widget-card .widget-icon {
    background-color: #ffbc58;
}
.row > div:nth-child(3) .widget-card {
    background-color: #27af4d33;
}
.row > div:nth-child(3) .widget-card .widget-icon {
    background-color: #27af4d;
}
.row > div:nth-child(4) .widget-card {
    background-color: #ad46ff33;
}
.row > div:nth-child(4) .widget-card .widget-icon {
    background-color: #ad46ff;
}
.row > div:nth-child(5) .widget-card {
    background-color: #ff4b4b33;
}
.row > div:nth-child(5) .widget-card .widget-icon {
    background-color: #ff4b4b;
}
.widget-card,
.booking-widget-card {
    padding: 16px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 4px;
}
.widget-card h3,
.booking-widget-card h3 {
    color: #00162e;
    font-size: calc(20px + 0.005 * (100vw - 320px));
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 0;
    display: flex;
    align-items: end;
    gap: 4px;
}
.widget-card h5,
.booking-widget-card h5 {
    margin-bottom: 0;
}
.widget-card svg,
.booking-widget-card svg {
    color: #fff;
    width: 22px;
    height: 22px;
}
.widget-card .widget-icon,
.widget-card .booking-widget-icon,
.booking-widget-card .widget-icon,
.booking-widget-card .booking-widget-icon {
    padding: 10px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.row > div:nth-child(1) .widget-card-2 {
    background-color: #89898933;
}
.row > div:nth-child(1) .widget-card-2 .widget-icon {
    background-color: #898989;
}
.row > div:nth-child(2) .widget-card-2 {
    background-color: #ffbc5833;
}
.row > div:nth-child(2) .widget-card-2 .widget-icon {
    background-color: #ffbc58;
}
.row > div:nth-child(3) .widget-card-2 {
    background-color: #27af4d33;
}
.row > div:nth-child(3) .widget-card-2 .widget-icon {
    background-color: #27af4d;
}
.row > div:nth-child(4) .widget-card-2 {
    background-color: #ad46ff33;
}
.row > div:nth-child(4) .widget-card-2 .widget-icon {
    background-color: #ad46ff;
}
.row > div:nth-child(5) .widget-card-2 {
    background-color: #ff4b4b33;
}
.row > div:nth-child(5) .widget-card-2 .widget-icon {
    background-color: #ff4b4b;
}
.widget-card-2 {
    padding: calc(12px + 0.0025 * (100vw - 320px));
    display: flex;
    flex-direction: row;
    justify-content: unset;
    gap: calc(9px + 0.0025 * (100vw - 320px));
    align-items: flex-start;
    border-radius: calc(6px + 0.00125 * (100vw - 320px));
}
.widget-card-2 h3 {
    display: block;
    font-size: calc(20px + 0.00375 * (100vw - 320px));
    line-height: 1;
    margin-top: calc(4px + 0.00125 * (100vw - 320px));
    font-weight: 500;
    color: #00162e;
    margin-bottom: 0;
}
.widget-card-2 h5 {
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: #777;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
}
.widget-card-2 .widget-icon {
    padding: 0;
    width: calc(38px + 0.005 * (100vw - 320px));
    height: calc(38px + 0.005 * (100vw - 320px));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.widget-card-2 .widget-icon svg {
    width: calc(20px + 0.0025 * (100vw - 320px));
    height: auto;
    color: #fff;
}
.booking-status-main .booking-status-card .booking-widget-card {
    border: 1px solid #edeff1;
    background-color: transparent;
}
.booking-status-main .booking-status-card .booking-widget-card .booking-widget-icon svg {
    width: 22px;
    height: 22px;
}
.booking-status-main .booking-status-card:nth-child(1) .booking-widget-card {
    border-bottom: 2px solid #5465ff;
}
.booking-status-main .booking-status-card:nth-child(1) .booking-widget-card .booking-widget-icon {
    background-color: #5465ff33;
}
.booking-status-main .booking-status-card:nth-child(1) .booking-widget-card .booking-widget-icon svg {
    color: #5465ff;
}
.booking-status-main .booking-status-card:nth-child(2) .booking-widget-card {
    border-bottom: 2px solid #ffbc58;
}
.booking-status-main .booking-status-card:nth-child(2) .booking-widget-card .booking-widget-icon {
    background-color: #ffbc5833;
}
.booking-status-main .booking-status-card:nth-child(2) .booking-widget-card .booking-widget-icon svg {
    color: #ffbc58;
}
.booking-status-main .booking-status-card:nth-child(3) .booking-widget-card {
    border-bottom: 2px solid #ad46ff;
}
.booking-status-main .booking-status-card:nth-child(3) .booking-widget-card .booking-widget-icon {
    background-color: #ad46ff33;
}
.booking-status-main .booking-status-card:nth-child(3) .booking-widget-card .booking-widget-icon svg {
    color: #ad46ff;
}
.booking-status-main .booking-status-card:nth-child(4) .booking-widget-card {
    border-bottom: 2px solid #00162e;
}
.booking-status-main .booking-status-card:nth-child(4) .booking-widget-card .booking-widget-icon {
    background-color: #00162e33;
}
.booking-status-main .booking-status-card:nth-child(4) .booking-widget-card .booking-widget-icon svg {
    color: #00162e;
}
.booking-status-main .booking-status-card:nth-child(5) .booking-widget-card {
    border-bottom: 2px solid #ff4b4b;
}
.booking-status-main .booking-status-card:nth-child(5) .booking-widget-card .booking-widget-icon {
    background-color: #ff4b4b33;
}
.booking-status-main .booking-status-card:nth-child(5) .booking-widget-card .booking-widget-icon svg {
    color: #ff4b4b;
}
.booking-status-main .booking-status-card:nth-child(6) .booking-widget-card {
    border-bottom: 2px solid #00a8ff;
}
.booking-status-main .booking-status-card:nth-child(6) .booking-widget-card .booking-widget-icon {
    background-color: #00a8ff33;
}
.booking-status-main .booking-status-card:nth-child(6) .booking-widget-card .booking-widget-icon svg {
    color: #00a8ff;
}
.blog-box .blog-img {
    margin-bottom: 12px;
    display: block;
    overflow: hidden;
}
.blog-box .blog-img img {
    object-fit: cover;
    width: 100%;
    height: 180px;
    border-radius: 8px;
}
.blog-box .blog-content a {
    color: #00162ecc;
    font-size: 16px;
    margin-bottom: 4px;
    display: block;
    font-weight: 500;
    letter-spacing: 0.01em;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog-box .blog-content h6 {
    color: #00162e99;
    margin-bottom: 0;
    line-height: 1.3;
}
.rate {
    display: flex;
    align-items: center;
    gap: 6px;
}
.rate small {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}
.rate img.star {
    width: 15px;
    height: 15px;
}
.location {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 4px;
}
.location i {
    --Iconsax-Size: 18px;
    --Iconsax-Color: #808b97;
    margin-top: 3px;
}
.location h6 {
    line-height: 20px;
    color: #898989;
    margin: 0;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.static-top-widget {
    gap: 15px;
}
.static-top-widget div.align-self-center svg {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}
.static-top-widget .media-body {
    align-self: center !important;
}
.static-top-widget .media-body h3 {
    font-family: Poppins, sans-serif;
    color: #fff;
}
.static-top-widget .media-body h3 small {
    font-size: 11px;
}
.static-top-widget .icons-widgets .text-center {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.account-setting h5 {
    margin-bottom: 20px;
}
