@import 'vendors/bootstrap.min.css';
@import "vendors/bootstrap-datepicker.min.css";
@import 'vendors/fontAwesome.css';
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --clr-1: #317c67;
    --clr-2: #b1f4d7;
    --clr-text: rgba(0, 0, 0, 0.75);
    --bg-1: #e0e0e0;
    --bg-1-hvr: #bfbfbf;
    --bg-2: #d2d2d2;
    --title-0: 48px;
    --title-1: 40px;
    --title-2: 32px;
    --title-3: 28px;
    --title-4: 24px;
    --title-5: 22px;
    --title-6: 20px;
    --title-7: 18px;
    --title-8: 18px;
    --title-16-14: 16px;
    --title-14-12: 14px;
}

/*------------- #responsive --------------*/
@media not (min-width: 640px) {
    :root {
        --title-0: 36px;
        --title-1: 32px;
        --title-2: 28px;
        --title-3: 24px;
        --title-4: 22px;
        --title-5: 20px;
        --title-6: 18px;
        --title-7: 16px;
        --title-16-14: 14px;
        --title-14-12: 12px;
    }
}

/*------------- #MAIN LTR STYLES --------------*/
[dir=rtl] {
    direction: rtl;
    text-align: right;
}

[dir=rtl] .rotate-lang {
    transform: rotate(180deg);
}

[dir=rtl] .scale-x-100 {
    transform: scale(-1);
}

/*------------- #general --------------*/
@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    position: relative;
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    direction: inherit;
    text-align: start;
    scroll-behavior: smooth;
    overflow-x: hidden;
    color: var(--clr-text);
    font-size: 16px;
}

.demo-extra-space {
    padding-block: 5rem;
}

body[data-panel=noScroll] {
    overflow-y: hidden;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--clr-text);
    transition: all 0.3s ease;
}

a,
a:hover {
    text-decoration: none;
    color: inherit;
}

i {
    vertical-align: middle;
}

button {
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    padding: 0;
    transition: all 0.3s ease;
}

ul:not(.unstyle-ul) {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

/**** utilities classes ****/
.clr-text {
    color: var(--clr-text);
}

.title-0 {
    font-size: var(--title-0);
}

.title-1 {
    font-size: var(--title-1);
}

.title-2 {
    font-size: var(--title-2);
}

.title-3 {
    font-size: var(--title-3);
}

.title-4 {
    font-size: var(--title-4);
}

.title-5 {
    font-size: var(--title-5);
}

.title-6 {
    font-size: var(--title-6);
}

.title-7 {
    font-size: var(--title-7);
}

.title-8 {
    font-size: var(--title-8);
}

.title-16-14 {
    font-size: var(--title-16-14);
}

.title-18 {
    font-size: 18px;
}

.title-14-12 {
    font-size: var(--title-14-12);
}

.title-14 {
    font-size: 14px;
}

.title-12 {
    font-size: 12px;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.scroll::-webkit-scrollbar {
    width: var(--scrollbar-dim, 3px);
    height: var(--scrollbar-dim, 3px);
}

.scroll::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track, rgba(0, 0, 0, 0.1));
    border-radius: 20px;
}

.scroll::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb, rgba(0, 0, 0, 0.2));
    border-radius: 20px;
    cursor: pointer;
}

.draggable-list.is-dragging {
    cursor: grabbing;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.draggable-list.is-dragging img,
.draggable-list.is-dragging a {
    pointer-events: none;
}

/**** tab-content & accordion_body style ****/
.tabs-content-area .tab-content {
    display: none;
}

.tabs-content-area .tab-content.active {
    display: block;
}

.accordion-panels .panel-item:not(.opened):not(:has(> a.accordion_header)) > .accordion_body {
    display: none;
}

/**** side-overlay ****/
.side-overlay {
    width: 0;
    height: 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    z-index: -999999;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.panel-responsive-item.active .side-overlay,
.side-overlay.active {
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 999;
}

/*------------- #buttons--------------*/
.theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    border-radius: 25px;
    padding: 0.75rem 1rem;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.theme-btn.outline-style {
    background-color: transparent !important;
    border: 1px solid var(--black-65, rgba(0, 0, 0, 0.6509803922));
}

.btn-hvr {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn-hvr::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1;
}

.btn-hvr:hover::after, .btn-hvr:focus-visible::after {
    opacity: 1;
}

.btn-hvr > * {
    position: relative;
    z-index: 2;
}

.btn_primary {
    background-color: var(--clr-1);
}

.btn_green {
    background-color: var(--clr-2);
}

.btn_secondary {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff !important;
}

/*------------- #forms--------------*/
.input-focus:focus {
    border-color: var(--clr-1) !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(13, 101, 76, 0.6) !important;
}

.search-form {
    max-width: var(--form-width, 350px);
    width: 100%;
    position: relative;
}

.search-form .search-input {
    background-color: var(--bg-1);
    color: #000;
    border-radius: 25px;
    border-color: var(--bg-1);
    box-shadow: none;
    font-weight: 500;
    padding: 1rem 0.75rem;
    padding-inline-start: calc(24px + 0.75rem + 6px);
    width: 100%;
    height: var(--input-h, 50px);
}

.search-form .search-input::-moz-placeholder {
    color: var(--clr-text);
}

.search-form .search-input::placeholder {
    color: var(--clr-text);
}

.search-form .input-icon {
    position: absolute;
    inset-inline-start: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.search-form .input-icon:hover {
    color: var(--clr-1);
}

.search-form .input-icon svg {
    width: 24px;
    height: 24px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--clr-1);
}

.input-check-box .input-label {
    padding: 12px 16px;
    background-color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 16px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.input-check-box .input-label input:not(.form-check-input) {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.input-check-box .input-label:has(input:checked) {
    background-color: rgba(0, 0, 0, 0.65);
    border-color: rgba(0, 0, 0, 0.65);
    color: #fff;
}

.input-check-box .input-label.border-style {
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.input-check-box .input-label.circle-style {
    width: 100px;
    height: 100px;
    padding: 8px;
    border-radius: 100%;
}

.input-check-box .input-label.sm-style {
    padding: 6px 12px;
    font-weight: 400;
}

.form-group {
    position: relative;
}

.form-group .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: start;
    gap: 4px;
    font-size: var(--input-font, 16px);
    padding-inline-start: 0.75rem;
}

.form-group .form-control,
.form-group .form-select {
    border-radius: 25px;
    transition: all 0.3s ease;
    background-color: var(--input-bg, #fff);
    border-color: var(--input-border, #fff);
    height: var(--input-h, 50px);
    font-size: var(--input-font, 16px);
    font-weight: 500;
    color: var(--clr-text);
    direction: inherit;
}

.form-group .form-control:disabled, .form-group .form-control[readOnly],
.form-group .form-select:disabled,
.form-group .form-select[readOnly] {
    opacity: 0.6;
}

.form-group .form-select {
    min-width: 80px;
}

.form-group .form-control::-moz-placeholder {
    color: var(--clr-text);
}

.form-group .form-control::placeholder {
    color: var(--clr-text);
}

.form-group textarea.form-control {
    height: auto;
    resize: none;
}

.form-group .form-select {
    cursor: pointer;
    padding: 0.375rem 0.75rem;
    padding-inline-end: 2rem !important;
    background-position: right 0.75rem center;
}

.form-group .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    min-height: inherit;
    font-size: var(--input-font);
}

.form-group .form-check.vertical {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 0.25rem;
    cursor: pointer;
}

.form-group .form-check.align-items-start .form-check-input {
    margin-top: 0.25rem;
}

.form-group .form-check .form-check-input {
    float: none;
    flex-shrink: 0;
    margin: 0;
    transition: all 0.3s ease;
    box-shadow: none !important;
    background-color: var(--input-bg, #fff);
    border-color: var(--input-clr, var(--clr-1));
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
    border-width: 2px;
}

.form-group .form-check-input:active {
    filter: none !important;
}

.form-group .form-check .form-check-input:checked {
    background-color: var(--input-clr, var(--clr-1));
    border-color: var(--input-clr, var(--clr-1));
}

.form-group .form-check .form-check-label {
    cursor: pointer;
    font-weight: 500;
}

.form-group .form-switch .form-check-input {
    border-width: 2px;
    width: 70px;
    height: var(--input-h, 40px);
}

.form-group .form-switch .form-check-input:focus,
.form-group .form-switch .form-check-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}

.form-group .form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-group .password-field .form-control {
    padding-inline-end: 45px !important;
}

.form-group .password-field .eye-icon {
    position: absolute;
    inset-inline-end: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: calc(100% - 2px);
    font-size: 30px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Capa_1' x='0px' y='0px' viewBox='0 0 511.992 511.992' style='enable-background:new 0 0 511.992 511.992;' xml:space='preserve' fill='%239CA4AB'%3E%3Clink xmlns='' type='text/css' rel='stylesheet' id='dark-mode-custom-link'/%3E%3Clink xmlns='' type='text/css' rel='stylesheet' id='dark-mode-general-link'/%3E%3Cstyle xmlns='' lang='en' type='text/css' id='dark-mode-custom-style'/%3E%3Cstyle xmlns='' lang='en' type='text/css' id='dark-mode-native-style'/%3E%3Cstyle xmlns='' lang='en' type='text/css' id='dark-mode-native-sheet'/%3E%3Cg%3E%3Cg%3E%3Cpath d='M510.096,249.937c-4.032-5.867-100.928-143.275-254.101-143.275C124.56,106.662,7.44,243.281,2.512,249.105 c-3.349,3.968-3.349,9.792,0,13.781C7.44,268.71,124.56,405.329,255.995,405.329S504.549,268.71,509.477,262.886 C512.571,259.217,512.848,253.905,510.096,249.937z M255.995,383.996c-105.365,0-205.547-100.48-230.997-128 c25.408-27.541,125.483-128,230.997-128c123.285,0,210.304,100.331,231.552,127.424 C463.013,282.065,362.256,383.996,255.995,383.996z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M255.995,170.662c-47.061,0-85.333,38.272-85.333,85.333s38.272,85.333,85.333,85.333s85.333-38.272,85.333-85.333 S303.056,170.662,255.995,170.662z M255.995,319.996c-35.285,0-64-28.715-64-64s28.715-64,64-64s64,28.715,64,64 S291.28,319.996,255.995,319.996z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
    transition: all 0.15s ease-in-out;
    background-size: cover;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.form-group .password-field .eye-icon.hide {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Capa_1' x='0px' y='0px' viewBox='0 0 512.001 512.001' style='enable-background:new 0 0 512.001 512.001;' xml:space='preserve' fill='%239CA4AB'%3E%3Clink xmlns='' type='text/css' rel='stylesheet' id='dark-mode-custom-link'/%3E%3Clink xmlns='' type='text/css' rel='stylesheet' id='dark-mode-general-link'/%3E%3Cstyle xmlns='' lang='en' type='text/css' id='dark-mode-custom-style'/%3E%3Cstyle xmlns='' lang='en' type='text/css' id='dark-mode-native-style'/%3E%3Cstyle xmlns='' lang='en' type='text/css' id='dark-mode-native-sheet'/%3E%3Cg%3E%3Cg%3E%3Cpath d='M316.332,195.662c-4.16-4.16-10.923-4.16-15.083,0c-4.16,4.16-4.16,10.944,0,15.083 c12.075,12.075,18.752,28.139,18.752,45.248c0,35.285-28.715,64-64,64c-17.109,0-33.173-6.656-45.248-18.752 c-4.16-4.16-10.923-4.16-15.083,0c-4.16,4.139-4.16,10.923,0,15.083c16.085,16.128,37.525,25.003,60.331,25.003 c47.061,0,85.333-38.272,85.333-85.333C341.334,233.187,332.46,211.747,316.332,195.662z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M270.87,172.131c-4.843-0.853-9.792-1.472-14.869-1.472c-47.061,0-85.333,38.272-85.333,85.333 c0,5.077,0.619,10.027,1.493,14.869c0.917,5.163,5.419,8.811,10.475,8.811c0.619,0,1.237-0.043,1.877-0.171 c5.781-1.024,9.664-6.571,8.64-12.352c-0.661-3.627-1.152-7.317-1.152-11.157c0-35.285,28.715-64,64-64 c3.84,0,7.531,0.491,11.157,1.131c5.675,1.152,11.328-2.859,12.352-8.64C280.534,178.702,276.652,173.155,270.87,172.131z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M509.462,249.102c-2.411-2.859-60.117-70.208-139.712-111.445c-5.163-2.709-11.669-0.661-14.379,4.587 c-2.709,5.227-0.661,11.669,4.587,14.379c61.312,31.744,110.293,81.28,127.04,99.371c-25.429,27.541-125.504,128-230.997,128 c-35.797,0-71.872-8.64-107.264-25.707c-5.248-2.581-11.669-0.341-14.229,4.971c-2.581,5.291-0.341,11.669,4.971,14.229 c38.293,18.496,77.504,27.84,116.523,27.84c131.435,0,248.555-136.619,253.483-142.443 C512.854,258.915,512.833,253.091,509.462,249.102z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M325.996,118.947c-24.277-8.171-47.829-12.288-69.995-12.288c-131.435,0-248.555,136.619-253.483,142.443 c-3.115,3.669-3.371,9.003-0.597,12.992c1.472,2.112,36.736,52.181,97.856,92.779c1.813,1.216,3.84,1.792,5.888,1.792 c3.435,0,6.827-1.664,8.875-4.8c3.264-4.885,1.92-11.52-2.987-14.763c-44.885-29.845-75.605-65.877-87.104-80.533 c24.555-26.667,125.291-128.576,231.552-128.576c19.861,0,41.131,3.755,63.189,11.157c5.589,2.005,11.648-1.088,13.504-6.699 C334.572,126.862,331.585,120.825,325.996,118.947z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath d='M444.865,67.128c-4.16-4.16-10.923-4.16-15.083,0L67.116,429.795c-4.16,4.16-4.16,10.923,0,15.083 c2.091,2.069,4.821,3.115,7.552,3.115c2.731,0,5.461-1.045,7.531-3.115L444.865,82.211 C449.025,78.051,449.025,71.288,444.865,67.128z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
}

[dir=rtl] .form-select {
    background-position: left 0.75rem center;
}

/* Resetting default styles */
.date-input {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.date-input::-webkit-calendar-picker-indicator,
.date-input::-webkit-inner-spin-button,
.date-input::-webkit-clear-button,
.date-input::-webkit-datetime-edit-fields-wrapper {
    display: none;
}

.date-input::-webkit-datetime-edit-day-field,
.date-input::-webkit-datetime-edit-month-field,
.date-input::-webkit-datetime-edit-year-field {
    display: none;
}

/* Custom input file  */
.custom-input-file {
    position: relative;
    width: 100%;
}

.custom-input-file .file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.custom-input-file .input-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 25px;
    cursor: pointer;
    background: #fff;
    color: var(--clr-text);
    font-weight: bold;
    transition: all 0.3s ease;
}

.custom-input-file .input-label p {
    font-size: 14px;
    margin-bottom: 0px;
}

.custom-input-file .input-label i {
    font-size: 18px;
}

.custom-input-file .input-label.bg_green {
    background-color: #96d1b1;
}

.custom-input-file .input-label:hover {
    background: #f3f3f3;
}

.h-130 {
    height: 130px !important;
}

.h-80 {
    height: 80px !important;
}

.h-var {
    height: var(--height) !important;
}

/*------------- #modal--------------*/
.modal .modal-dialog {
    padding: 0.5rem;
    max-width: 600px;
}

.modal .modal-dialog.modal-xl {
    max-width: 1000px;
}

.modal .modal-content {
    border-radius: 0px;
    border: none;
    background-color: transparent;
}

.modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 50px;
    padding: 0.5rem 1.25rem;
    border: none;
    background-color: var(--clr-1);
    border-radius: 25px 25px 0 0;
    color: #fff;
    font-size: 14px;
}

.modal .modal-header .modal-var + .modal-title {
    text-align: center;
}

.modal .modal-header .modal-title {
    font-weight: bold;
    margin-bottom: 0;
}

.modal .modal-header .btn-close-wrap {
    display: flex;
    justify-content: end;
    margin-inline-start: auto;
}

.modal .modal-header .btn-close {
    background-color: rgba(224, 224, 224, 0.7490196078);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0;
    opacity: 1;
    color: var(--clr-1);
    background-image: none;
}

.modal .modal-header .btn-close:hover {
    background-color: var(--bg-1);
}

@media (min-width: 576px) {
    .modal .modal-header {
        font-size: 16px;
    }

    .modal .modal-header > * {
        flex: 1;
    }

    .modal .modal-header .modal-title {
        font-size: 18px;
    }
}

.modal .modal-body {
    --input-font: 14px;
    --input-h: 45px;
    padding: 1.5rem 1.25rem;
    background-color: #d9e6dc;
}

.modal .modal-body .form-modal-gap {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 20px;
}

@media (min-width: 576px) {
    .modal .modal-body .form-modal-gap {
        --bs-gutter-x: 32px;
    }
}

.modal .modal-body .form-divider {
    border: 2px solid var(--black-65, rgba(0, 0, 0, 0.6509803922));
    text-align: center;
    height: 100%;
}

.modal .modal-body .form-section {
    display: flex;
    align-items: center;
    background-color: var(--bg, var(--clr-1));
    color: #fff;
    font-weight: bold;
    color: #000000;
    font-size: 16px;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    min-height: 40px;
}

@media not (min-width: 576px) {
    .modal .modal-body .row .col-6:not(.row-col) {
        width: 100%;
    }
}

.modal .modal-footer {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
    height: 50px;
    padding: 0.5rem 1.25rem;
    border: none;
    background-color: var(--clr-1);
    border-radius: 0 0 25px 25px;
}

.modal .modal-footer .modal-footer-btn {
    background-color: rgba(255, 255, 255, 0.7490196078);
    border-radius: 16px;
    padding: 0 1rem;
    height: 35px;
    width: 100px;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: var(--clr-text);
}

.modal .modal-footer .modal-footer-btn:not([data-bs-dismiss=modal]) {
    color: #0d654c;
}

/*------------- #page wrapper--------------*/
.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    overflow: hidden;
    background-color: var(--bg-2);
}

.page-flex .content-col {
    min-width: 0;
    flex: 1 1 auto;
}

/*------------- #container and grid--------------*/
.container-fluid {
    max-width: 1920px;
}

@media (min-width: 640px) {
    .container-fluid {
        padding-inline: 1.25rem;
    }
}

.gx-36 {
    --bs-gutter-x: 2.25rem;
    -moz-column-gap: 2.25rem;
    column-gap: 2.25rem;
}

.gx-40 {
    --bs-gutter-x: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
}

@media (min-width: 992px) {
    .row-cols-lg-7 > * {
        flex: 0 0 auto;
        max-width: 14.2857142857%;
    }
}

/*------------- #header--------------*/
.nav-bar {
    padding-top: 1.5rem;
    position: relative;
}

.nav-bar .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-bar .nav-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-bar .nav-toggle .nav-barnd {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-bar .nav-toggle .nav-barnd span {
    font-size: var(--title-2);
    font-weight: bold;
}

.nav-bar .nav-toggle .nav-barnd img {
    max-height: 40px;
}

.nav-bar .nav-toggle .nav-toggle-btn {
    display: flex;
}

.nav-bar .nav-toggle .nav-toggle-btn svg {
    width: 32px;
    height: 32px;
}

.nav-bar .nav-toggle .nav-toggle-btn:hover {
    color: var(--clr-1);
}

.nav-bar .nav-btns {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-bar .nav-btns .action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 16px;
    height: 100%;
    border-radius: 25px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
}

.nav-bar .nav-btns .action-btn svg {
    width: 28px;
    height: 28px;
}

.nav-bar .nav-btns .action-btn.active {
    background-color: var(--clr-2);
    color: var(--clr-text);
}

.nav-bar .nav-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 50px;
}

.nav-bar .nav-info .nav-date {
    background-color: var(--bg-1);
    border-radius: 25px;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-bar .nav-info .info-group {
    background-color: var(--bg-1);
    border-radius: 25px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    height: 100%;
}

.nav-bar .nav-info .info-group .notify-btn {
    display: flex;
    position: relative;
}

.nav-bar .nav-info .info-group .notify-btn svg {
    width: 24px;
    height: 24px;
}

.nav-bar .nav-info .info-group .notify-btn::after {
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    width: 8px;
    height: 8px;
    background-color: #ba0d0d;
    content: "";
    border-radius: 100%;
    display: none;
}

.nav-bar .nav-info .info-group .notify-btn.active::after {
    display: block;
}

.nav-bar .nav-info .info-group .account-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
}

.nav-bar .nav-info .info-group .account-btn span {
    max-width: 150px;
}

.nav-bar .nav-info .info-group .account-btn img {
    width: 36px;
    height: 36px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100%;
    border: 1px solid #fff;
}

@media (min-width: 1400px) {
    .nav-bar .nav-content {
        gap: 1.5rem;
    }

    .nav-bar .nav-toggle {
        min-width: 225px;
    }

    .nav-bar .nav-toggle .nav-toggle-btn {
        display: none;
    }
}

@media not (min-width: 1200px) {
    .nav-bar .nav-content {
        flex-wrap: wrap;
    }

    .nav-bar .nav-content > * {
        margin-inline: auto;
    }

    .nav-bar .nav-content .nav-btns,
    .nav-bar .nav-content .nav-info {
        flex-wrap: wrap;
        height: auto;
    }

    .nav-bar .nav-content .nav-btns > *,
    .nav-bar .nav-content .nav-info > * {
        margin-inline: auto;
        min-height: 50px;
    }
}

@media not (min-width: 576px) {
    .nav-bar .nav-toggle .nav-toggle-btn svg {
        width: 24px;
        height: 24px;
    }
}

/*------------- #sidebar--------------*/
.sidebar {
    width: 250px;
    transition: width 0.3s ease;
}

.sidebar.icons-style .accordion_body {
    display: none !important;
}

.sidebar .close-menu {
    display: none;
    align-items: center;
    justify-content: end;
    font-size: 24px;
    margin-bottom: 1rem;
}

.sidebar .toggle-head {
    display: flex;
    margin-bottom: 8px;
    height: 80px;
}

.sidebar .toggle-head img {
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-start-start-radius: 25px;
    border-end-start-radius: 25px;
    flex: 1;
}

.sidebar .toggle-head .sidebar-toggle-btn {
    transition-property: background-color;
    background-color: var(--bg-1);
    border-start-end-radius: 25px;
    border-end-end-radius: 25px;
    min-width: 36px;
    flex-shrink: 0;
}

.sidebar .toggle-head .sidebar-toggle-btn:hover {
    background-color: var(--bg-1-hvr);
}

.sidebar .sidebar-menu .menu-item {
    position: relative;
}

.sidebar .sidebar-menu .menu-item .item-btn {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--bg-1);
    font-weight: 400;
    gap: 16px;
    border-radius: 25px;
    padding: 16px;
    font-size: 16px;
    margin-top: 6px;
}

.sidebar .sidebar-menu .menu-item .item-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.sidebar .sidebar-menu .menu-item .item-btn.active {
    background-color: var(--clr-2);
    color: #3D7C68 !important;
}


.sidebar .sidebar-menu .menu-item button.item-btn:not(.active):hover {
    background-color: var(--bg-1-hvr);
}

/* Expanded sidebar: hover for links without sub-links */
.sidebar .sidebar-menu .menu-item a.item-btn:not(.active) {
    border: 2px solid transparent;
    border-inline-start: 4px solid transparent;
}

.sidebar .sidebar-menu .menu-item a.item-btn:not(.active):hover {
    background-color: white;
    border-color: var(--clr-1);
    border-inline-start-color: var(--clr-1);
    border-inline-start-width: 4px;
}

/* Collapsed sidebar: circle hover with left accent */
.sidebar.icons-style .sidebar-menu .menu-item .item-btn:not(.active) {
    border: 2px solid transparent;
    border-inline-start: 4px solid transparent;
    border-radius: 50%;
    justify-content: center;
    padding: 14px;
}

.sidebar.icons-style .sidebar-menu .menu-item .item-btn:not(.active):hover {
    background-color: white;
    border-color: var(--clr-1);
    border-inline-start-color: var(--clr-1);
    border-inline-start-width: 4px;
}

.sidebar .sidebar-menu .menu-item .item-sub-list {
    padding-block: 4px 8px;
    padding-inline-start: 48px;
}

.sidebar .sidebar-menu .menu-item .item-sub-list .item-btn {
    padding: 6px 10px;
    gap: 10px;
    font-size: 14px;
    margin-top: 8px;
}

.sidebar .sidebar-menu .menu-item .item-sub-list .item-btn::before {
    content: "";
    position: relative;
    width: 8px;
    height: 8px;
    border: 2px solid rgba(13, 101, 76, 0.6509803922);
    border-radius: 100%;
    flex-shrink: 0;
}

.sidebar .sidebar-menu .menu-item .item-sub-list .nested-list {
    padding-inline-start: 28px;
}

.sidebar .sidebar-menu .menu-item .item-sub-list .nested-list .item-btn {
    padding: 0 4px;
    margin-inline-start: -4px;
    border: 2px solid transparent;
}

.sidebar .sidebar-menu .menu-item .item-sub-list .nested-list .item-btn::before {
    border-color: var(--clr-text);
    width: 6.5px;
    height: 6.5px;
}

.sidebar .sidebar-menu .menu-item .item-sub-list .nested-list .item-btn:not(:hover) {
    background-color: transparent;
}

.sidebar .sidebar-menu .menu-item .item-sub-list .nested-list .item-btn.active {
    background-color: transparent;
    border-color: var(--clr-2);
}

.sidebar.icons-style {
    width: 55px;
}

.sidebar.icons-style .toggle-head img {
    display: none;
}

.sidebar.icons-style .toggle-head .sidebar-toggle-btn {
    width: 100%;
    border-radius: 25px;
}

.sidebar.icons-style .sidebar-menu .menu-item .item-btn span {
    display: none;
}

.sidebar.icons-style .sidebar-menu .menu-item .item-sub-list {
    display: none;
}

@media not (min-width: 1400px) {
    .sidebar {
        position: fixed !important;
        top: 0;
        bottom: 0;
        z-index: 99999;
        overflow-y: auto;
        inset-inline-start: -120%;
        width: 400px;
        max-width: 95%;
        transition: all 0.3s ease;
        display: block;
        background-color: #fff;
        -webkit-overflow-scrolling: touch;
        display: block;
        padding: 1.5rem 1rem;
        margin: 0 !important;
    }

    .sidebar .toggle-head img {
        border-radius: 25px;
    }

    .sidebar .toggle-head .sidebar-toggle-btn {
        display: none;
    }

    .sidebar .close-menu {
        display: flex;
    }
}

.sidebar-col.active .sidebar {
    inset-inline-start: 0;
}

/*------------- #tracking--------------*/
.tracking-section .tracking-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    flex-wrap: nowrap;
    --scrollbar-dim: 5px;
}

.tracking-section .tracking-row .row-col {
    min-width: 160px;
    flex: 0 0 auto;
}

.tracking-section .tracking-row.scrolled {
    padding-bottom: 12px;
}

.tracking-section .tracking-row .tracking-box {
    background-color: var(--bg-1);
    border-radius: 70px;
    padding: 32px 14px;
    padding-top: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    position: relative;
    height: 100%;
    min-height: 400px;
}

.tracking-section .tracking-row .tracking-box .box-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0;
}

.tracking-section .tracking-row .tracking-box .box-icon {
    position: relative;
    background-color: #f9f9f9;
    width: 84px;
    height: 84px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.tracking-section .tracking-row .tracking-box .box-icon svg {
    width: 40px;
    height: 40p;
}

.tracking-section .tracking-row .tracking-box .box-icon::after {
    position: absolute;
    inset-inline-end: -150%;
    content: "";
    /*border: 6px dashed var(--white-75, rgba(255, 255, 255, 0.75));*/
    width: 150%;
    z-index: 5;
}

@media (min-width: 1536px) {
    .tracking-section .tracking-row .tracking-box .box-icon::after {
        inset-inline-end: -210%;
        width: 210%;
    }
}

.tracking-section .tracking-row .tracking-box .box-details {
    width: 100%;
}

.tracking-section .tracking-row .tracking-box .box-details .info-item {
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 25px;
    padding: 12px 6px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.tracking-section .tracking-row .tracking-box .box-details .info-item:not(:last-child) {
    margin-bottom: 10px;
}

.tracking-section .tracking-row .tracking-box .box-details .info-item.box-style {
    min-height: 110px;
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: #000;
}

.tracking-section .tracking-row .tracking-box.active .box-icon, .tracking-section .tracking-row .tracking-box.done .box-icon {
    background-color: var(--clr-2);
}

.tracking-section .tracking-row .tracking-box.done .box-icon::after {
    border-style: solid;
    border-color: var(--clr-2);
}

.tracking-section .tracking-row .row-col:last-child .tracking-box .box-icon::after {
    display: none;
}

@media (min-width: 1200px) {
    .tracking-section .tracking-row .row-col {
        min-width: auto;
    }
}

@media (min-width: 992px) {
    .tracking-section .tracking-row .row-col {
        flex: 1;
    }
}

.tracking-section .search-form {
    --form-width: 450px;
    --input-h: 60px;
}

.tracking-section .tracking-label {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80px;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    max-width: 300px;
    width: 100%;
    gap: 10px;
    border-radius: 50px;
}

/*------------- #activities--------------*/
.activities-section .activities-box {
    padding: 1.5rem;
    background-color: rgba(217, 217, 217, 0.7);
    border: 1px solid rgba(217, 217, 217, 0.3);
    border-radius: 25px;
    position: relative;
}

.activities-section .activities-box > img {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
    border-radius: inherit;
}

.activities-section .activities-box > *:not(img) {
    z-index: 10;
    position: relative;
}

.activities-section .activities-box .time-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activities-section .activities-box .time-box .box-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
    width: calc(100% - 32px);
    flex: 1;
}

.activities-section .activities-box .time-box .counters {
    display: flex;
    align-items: end;
    gap: 8px;
}

.activities-section .activities-box .time-box .counters .counter-item {
    width: 80px;
    height: 80px;
    background-color: rgb(107, 107, 107);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 40px;
    font-weight: bold;
    flex-shrink: 0;
}

.activities-section .activities-box .time-box .counters .counter-item.item-sm {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border-radius: 10px;
}

.activities-section .activities-box .details-box {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 25px;
    min-height: 220px;
    font-size: 14px;
    font-weight: bold;
    padding: 1rem;
    height: 100%;
}

.activities-section .activities-box .details-box p {
    margin-bottom: 0;
}

.activities-section .price-box {
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(217, 217, 217, 0.21);
    border-radius: 25px;
    padding: 1.5rem;
}

.activities-section .box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.activities-section .box-head .box-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}

.activities-section .box-head .refresh-btn {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.21);
    box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.25);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.activities-section .box-head .refresh-btn svg {
    width: 32px;
    height: 32px;
}

.activities-section .divider {
    border: 1px solid rgb(0, 0, 0);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.activities-section .summary-table {
    max-width: 500px;
}

.activities-section .price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 32px;
}

.activities-section .price-wrapper .price-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.21);
    box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.activities-section .price-wrapper .price-item.total-price {
    font-size: 28px;
    padding: 12px;
    min-width: 210px;
    min-height: 70px;
}

/*------------- #tables--------------*/
.table-box {
    background-color: var(--bg-1);
    border-radius: 25px;
    --scrollbar-dim: calc(var(--title-14-12) - 5px);
    --scrollbar-thumb: var(--clr-1);
}

.table-box .box-head {
    padding: 1.5rem 1rem;
    background-color: var(--bg-1);
    /*border-radius: 25px;*/
    margin-bottom: 0;
}

.table-box .box-head .table-filters {
    --input-font: 14px;
}

.table-box .box-head .table-filters .row-space {
    display: none;
}

.data-table .table{
    background: rgba(240, 240, 240, 0.96) !important;
    padding-left: 10px;
    padding-right: 10px;
}

.data-table-section select, .data-table-section .date-input {
    border-radius: 20px !important;
    background: #e0e0e0 !important;
}

.table-box .box-head .table-filters select,
.table-box .box-head .table-filters input {
    --input-h: 35px;
    --input-bg: white;
    --input-border: rgba(0, 0, 0, 0.2);
}

@media (min-width: 1400px) {
    .table-box .box-head .table-filters {
        --bs-gutter-x: 10px;
        overflow: auto;
        flex-wrap: nowrap;
    }

    .table-box .box-head .table-filters.scrolled {
        padding-bottom: 0.75rem;
    }

    .table-box .box-head .table-filters .row-space {
        display: block;
        padding: 0;
        margin: 0 auto;
        min-width: 50px;
    }

    .table-box .box-head .table-filters select,
    .table-box .box-head .table-filters input {
        min-width: 125px;
    }
}

.table-box .box-head #datatable_length {
    --input-bg: white;
    --input-border: rgba(0, 0, 0, 0.2);
}

.table-box .box-head .search-form .search-input {
    background-color: #fff;
}

.table-box .box-body {
    background-color: #f7f7f7;
    padding: 1.5rem 1rem;
    border-radius: inherit;
}

.table-box .action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    border-radius: 25px;
    padding: 0.75rem;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.table-box .action-btn svg {
    width: 20px;
    height: 20px;
}

.table-box .action-outline-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    border: 1px solid var(--black-65, rgba(0, 0, 0, 0.6509803922));
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    padding: 12px 24px;
}

.table-box .export-btns .action-outline-btn {
    height: 35px;
    font-size: 14px;
    padding-block: 8px;
}

.data-table.scrolled {
    padding-bottom: 0.75rem;
}

.data-table .table {
    vertical-align: middle;
    border-collapse: separate;
    border-spacing: 0 8px;
    width: 100%;
}

.data-table .table th {
    color: #fff;
    background-color: var(--clr-1);
    white-space: nowrap;
}

.data-table .table th.td-auto {
    min-width: auto;
}

.data-table .table th.td-sm {
    min-width: calc(60px + 1.5rem);
}

.data-table .table th.td-md {
    min-width: calc(140px + 1.5rem);
}

.data-table .table th.td-lg {
    min-width: calc(180px + 1.5rem);
}

.data-table .table th.td-xl {
    min-width: calc(300px + 1.5rem);
}

.data-table .table th,
.data-table .table td {
    padding: 0.75rem;
    vertical-align: middle;
    font-size: var(--title-16-14);
    font-weight: 500;
    font-size: 14px;
}

.data-table .table th:first-child,
.data-table .table td:first-child {
    border-start-start-radius: 25px;
    border-end-start-radius: 25px;
}

.data-table .table th:last-child,
.data-table .table td:last-child {
    border-start-end-radius: 25px;
    border-end-end-radius: 25px;
}

.data-table .table tr {
    border-radius: 25px;
    background-color: #fff;
}

.data-table .table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.data-table .table p {
    margin: 0;
}

.data-table .table img {
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.data-table .table .info-style {
    color: rgba(0, 81, 255, 0.6509803922);
}

.data-table .table .danger-style {
    color: #ba0d0d;
}

.data-table .table .waring-style {
    color: #fe9f06;
}

.data-table .table .table-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.data-table .table .table-actions.gap-lg {
    gap: 2rem;
}

.data-table .table .table-actions .table-btn {
    flex-shrink: 0;
}

.data-table .table .table-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 2px solid rgba(0,0,0,0.15);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.data-table .table .table-action:hover {
    border-color: rgba(0,0,0,0.3);
}

.data-table .table .table-action svg {
    width: 22px;
    height: 22px;
}

.data-table .table .table-action.active {
    border-color: var(--clr-1);
    background-color: var(--clr-1);
}

.data-table .table .table-action.active svg {
    color: white !important;
}

.data-table .table .table-action.active svg path {
    fill: white !important;
    fill-opacity: 1 !important;
}

.custom-pagination {
    width: 100%;
    background-color: var(--bg-1);
    border-radius: 25px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.custom-pagination .pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
    width: 60px;
    height: 30px;
    padding: 4px;
    border: 1px solid #adadad;
    font-weight: 500;
    font-size: 14px;
}

.custom-pagination .pagination-btn.active {
    background-color: var(--clr-2);
    border-color: var(--clr-2);
}

.custom-pagination .pagination-btn:hover:not(.active) {
    background-color: #ccc;
}

.custom-pagination .arrow-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #adadad;
    font-size: 16px;
    border-radius: 100%;
}

.custom-pagination .arrow-btn:hover:not(.active) {
    background-color: #ccc;
}

.custom-pagination .arrow-btn.prev-btn {
    margin-inline-end: 4px;
}

.custom-pagination .arrow-btn.next-btn {
    margin-inline-start: 4px;
}

@media (min-width: 576px) {
    .custom-pagination {
        width: -moz-fit-content;
        width: fit-content;
    }
}

/*------------- #login-wrapper--------------*/
.login-wrapper {
    padding: 1rem;
    background: linear-gradient(180deg, rgba(13, 101, 76, 0.75) 6.18%, rgba(26, 203, 153, 0.75) 100%);
    min-height: 100vh;
}

.login-wrapper .login-info {
    flex: 1;
    min-width: 0;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 auto;
}

.login-wrapper .login-info .info-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.login-wrapper .login-info .info-head .nav-barnd {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-wrapper .login-info .info-head .nav-barnd span {
    font-size: var(--title-2);
    font-weight: bold;
    color: #fff;
}

.login-wrapper .login-info .info-head .nav-barnd img {
    max-height: 40px;
}

.login-wrapper .login-info .info-head .head-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--title-7);
}

.login-wrapper .login-info .info-head .head-link:hover {
    color: #000;
}

.login-wrapper .login-info .info-slider-container {
    overflow: hidden;
}

.login-wrapper .login-info .info-slider-container .info-slide .slide-title {
    font-size: var(--title-1);
    font-weight: bold;
    color: #000;
    margin-bottom: 0.5rem;
}

.login-wrapper .login-info .info-slider-container .info-slide .slide-title.sub-title {
    color: #fff;
}

.login-wrapper .login-info .info-slider-container .info-slide p {
    font-size: var(--title-7);
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 0;
    margin-top: 2rem;
}

.login-wrapper .login-info .info-slider-container .swiper-pagination {
    position: relative;
    inset: 0;
    display: flex;
    gap: 0.5rem;
}

.login-wrapper .login-info .info-slider-container .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0;
    padding: 0;
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.login-wrapper .login-info .info-slider-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
    width: 36px;
}

@media (min-width: 992px) {
    .login-wrapper .login-info {
        padding-inline: 4rem;
        padding-block: 2rem 0;
        margin-inline-start: -20px;
    }

    .login-wrapper .login-info .swiper-pagination {
        padding-block: 4rem;
    }
}

.login-wrapper .login-box {
    flex: 1;
    background: var(--white-75, rgba(255, 255, 255, 0.7490196078));
    border-radius: 25px;
    padding: 2rem 1.5rem;
}

.login-wrapper .login-box .box-container {
    max-width: 500px;
    margin: 0 auto;
}

.login-wrapper .login-box .box-head {
    padding-bottom: 2rem;
}

.login-wrapper .login-box .box-head .box-title {
    font-size: var(--title-1);
    font-weight: bold;
    color: #000;
    margin-bottom: 0.5rem;
}

.login-wrapper .login-box .box-head p {
    margin-bottom: 0;
}

.login-wrapper .login-box .login-form {
    --input-h: 50px;
}

.login-wrapper .login-box .login-form .form-label {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    padding: 0;
}

.login-wrapper .login-box .login-form .form-group:not(:last-child) {
    margin-bottom: 2rem;
}

.login-wrapper .login-box .login-form .flex-note {
    color: rgba(0, 0, 0, 0.4);
}

.login-wrapper .login-box .login-form .form-control {
    border-radius: 10px;
}

.login-wrapper .login-box .login-form .form-control::-moz-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.login-wrapper .login-box .login-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.login-wrapper .login-box .login-form .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    width: 100%;
}

@media (min-width: 992px) {
    .login-wrapper .login-box {
        max-width: 700px;
    }

    .login-wrapper .login-box .box-head {
        padding-block: 2rem 4rem;
    }
}

@media (min-width: 576px) {
    .login-wrapper {
        padding: 1.25rem;
    }
}

/*------------- #home--------------*/
.home-section {
    position: relative;
}

.home-section .section-img {
    position: absolute;
    top: 0;
    inset-inline-end: -20px;
    z-index: 1;
}

.home-section .section-container {
    position: relative;
    z-index: 2;
}

@media (min-width: 1400px) {
    .home-section .info-row.row-cols-xxl-auto > .row-col {
        flex: 1;
        max-width: calc(215px + var(--bs-gutter-x));
    }

    .home-section .info-row.row-cols-xxl-auto > .row-col:last-child {
        max-width: none;
        min-width: calc(260px + var(--bs-gutter-x));
    }
}

.home-section .info-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0;
}

.home-section .info-card {
    font-size: 14px;
    background-color: #e0e0e0;
    padding: 1.25rem 1rem;
    border-radius: 25px;
    height: 100%;
}

.home-section .info-card .info-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-section .info-card .info-item:not(:last-child) {
    margin-bottom: 2rem;
}

.home-section .info-card .info-val {
    font-weight: bold;
    font-size: var(--title-5);
    margin-bottom: 0;
}

.home-section .info-card .info-ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.home-section .info-card .info-ul li {
    display: flex;
    gap: 0.25rem;
}

.home-section .info-card .info-btn {
    display: inline-flex;
    align-items: center;
    color: var(--clr-text);
}

.home-section .info-card .info-btn svg {
    width: 28px;
    height: 28px;
}

.home-section .info-card .status-card.info-card {
    background-color: #fff;
}

.home-section .info-card .status-card.bg_green {
    background-color: rgb(177, 244, 215);
}

.home-section .info-card .status-card .card-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.home-section .info-card .status-card p {
    margin-bottom: 0;
}

.home-section .info-card .arrived-points {
    display: flex;
    gap: 0;
    justify-content: space-between;
    position: relative;
}

.home-section .info-card .arrived-points::after {
    position: absolute;
    left: 0;
    top: 24px;
    content: "";
    width: 100%;
    border: 1px dashed rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.home-section .info-card .arrived-points .point {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
}

.home-section .info-card .arrived-points .point .icon {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 4px;
}

.home-section .info-card .arrived-points .point .icon::after {
    position: absolute;
    top: 0;
    content: "";
    width: 51%;
    height: 100%;
    background-color: #fff;
    z-index: 2;
}

.home-section .info-card .arrived-points .point .icon i {
    font-size: 24px;
    position: relative;
    z-index: 3;
}

.home-section .info-card .arrived-points .point .icon svg {
    position: relative;
    z-index: 3;
    width: 24px;
    height: 24px;
}

.home-section .info-card .arrived-points .point:first-child .icon::after {
    inset-inline-start: 0;
}

.home-section .info-card .arrived-points .point:last-child .icon::after {
    inset-inline-end: 0;
}

.home-section .info-card .containers-img {
    -o-object-fit: contain;
    object-fit: contain;
    position: relative;
    inset-inline-start: -1rem;
}

.home-section .info-card-wrapper {
    background-color: rgba(217, 217, 217, 0.8);
    border-radius: 25px;
    padding: 1.25rem 1rem;
    height: 100%;
}

.home-section .info-card-wrapper .info-card {
    height: auto;
    background-color: rgba(255, 255, 255, 0.75);
}

.home-section .info-card-wrapper .info-card:not(:last-child) {
    margin-bottom: 1.25rem;
}

.home-section .info-danger {
    color: rgba(134, 10, 10, 0.8);
}

.home-section .info-green {
    color: rgba(13, 101, 76, 0.8);
}

.home-section .car-list {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 500px;
    --scrollbar-dim: 5px;
    --scrollbar-thumb: var(--clr-1);
    margin-inline: -0.5rem;
    padding-inline: 0.5rem;
}

.home-section .car-list .row .row-col:not(:last-child) {
    margin-bottom: 1.25rem;
}

.home-section .car-list .car-box {
    display: flex;
    gap: 0.75rem;
    padding: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
}

.home-section .car-list .car-box img {
    width: 60px;
    border-radius: 25px;
    display: block;
    flex-shrink: 0;
    height: 100%;
    min-height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
}

.home-section .car-list .car-box .box-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 12px;
    font-weight: bold;
    padding-block: 10px;
}

.home-section .car-list .car-box .box-info p {
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .home-section .info-card,
    .home-section .info-card-wrapper {
        height: auto;
    }
}

.home-section .info-card .info-val.val-sm {
    font-size: var(--title-6);
}

/*# sourceMappingURL=main.css.map */
