:root {
    --greenBg: green;
    --backgroundColor: #333333;
    --borderColor1: rgba(206, 206, 206, 0.72);
    --borderColor2: #eeeeee;
    --borderColor3: #e8e8e8;
    --borderColor4: #f8f8f8;
    --shadowColor1: rgba(0, 0, 0, 0.78);
    --shadowColor2: rgba(255, 0, 0, 0.38);
    --validColor: #0ec400;
    --successColor: #11ff00;
    --unsuccessColor: #ff6b00;
    --dangerColor: #ffd1d1;
    --invalidColor: red;
    --softInvalidColor: #ff9898;
    --hoverBtnColor: rgb(21, 21, 21);
    --hoverBtnColor2: rgb(255, 0, 0);
    --hoverBtnColor3: rgb(33, 218, 0);
    --lightGreen: rgb(233, 255, 233);
    --lightGreen2: rgb(23, 255, 23);
    --lightOrange: rgb(255, 241, 229);
    --lightRed: rgba(185, 99, 99, 0.72);
    --hoverBtnColor4: rgb(72, 72, 72);
    --clickBtnColor: rgba(0, 0, 0, 0.96);
    --clickBtnColor2: #464646;
    --orange: #ff7300;
    --hoverBackgroundColor: rgb(236, 255, 235);
    --focusItemColor: rgb(255, 250, 232);
    --headerBackgroundColor: #222222;
    --headerScrolledBackgroundColor: rgba(34, 34, 34, 0.85);
    /*region Animated Border Variables*/
    --d: 2500ms;
    --angle: 90deg;
    --gradX: 100%;
    --gradY: 50%;
    --c1: rgb(0, 157, 255);
    --c2: rgba(168, 239, 255, 0.1);
    /*endregion*/

}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body::-webkit-scrollbar {
    width: 7px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: white; /*bg color */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--orange); /* color of the scroll thumb */
    /*    scroll fg color */
}

#snackbar {
    position: fixed;
    visibility: hidden;
    z-index: 2147483647;
}

#snackbar.bottom {
    bottom: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
    user-select: none;
    margin-bottom: 30px;
}

#snackbar.top {
    top: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
    user-select: none;
    margin-top: 30px;
}

#snackbar.bottom.show {
    visibility: visible;
    -webkit-animation: fadeinBottom 0.5s, fadeoutBottom 0.5s 2.5s;
    animation: fadeinBottom 0.5s, fadeoutBottom 0.5s 2.5s;
}

#snackbar.top.show {
    visibility: visible;
    -webkit-animation: fadeinTop 0.5s, fadeoutTop 0.5s 2.5s;
    animation: fadeinTop 0.5s, fadeoutTop 0.5s 2.5s;
}

#snackbar.show > p {
    display: inline-flex;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    border-radius: 10px;
    padding: 16px;
    font-size: 17px;
}

@-webkit-keyframes fadeinBottom {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeoutBottom {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@-webkit-keyframes fadeinTop {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeoutTop {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

#snackbar > p.danger {
    background-color: #DC3545FF;
}

#snackbar > p.warning {
    background-color: #FFC800FF;
}

#snackbar > p.success {
    background-color: #00CE32FF;
}

#snackbar > p.light {
    color: #212529FF;
    background-color: #F8F9FAFF;
}

#snackbar > p.dark,
#snackbar > p.default {
    color: #F8F9FAFF;
    background-color: #212529FF;
}
/*region MAENTECH CIRCLE*/
.maentech-circle{
    user-select:none; height: 28px; width: 28px; border-radius: 50%; border:1px solid var(--borderColor2); text-align: center;
}
.maentech-circle.borderless{
    user-select:none; height: 28px; width: 28px; border-radius: 50%; border:none; text-align: center;
}

.maentech-circle.size-2x{
    user-select:none; height: 48px; width: 48px; border-radius: 50%; border:1px solid var(--borderColor2); text-align: center;
}
.maentech-circle.size-3x{
    user-select:none; height: 72px; width: 72px; border-radius: 50%; border:1px solid var(--borderColor2); text-align: center;
}
.maentech-circle.size-4x{
    user-select:none; height: 96px; width: 96px; border-radius: 50%; border:1px solid var(--borderColor2); text-align: center;
}
.maentech-circle.size-5x{
    user-select:none; height: 120px; width: 120px; border-radius: 50%; border:1px solid var(--borderColor2); text-align: center;
}
.maentech-circle.size-6x{
    user-select:none; height: 144px; width: 144px; border-radius: 50%; border:1px solid var(--borderColor2); text-align: center;
}
.maentech-circle.borderless.size-2x{
    user-select:none; height: 48px; width: 48px; border-radius: 50%;border:none; text-align: center;
}
.maentech-circle.borderless.size-3x{
    user-select:none; height: 72px; width: 72px; border-radius: 50%;border:none; text-align: center;
}
.maentech-circle.borderless.size-4x{
    user-select:none; height: 96px; width: 96px; border-radius: 50%;border:none; text-align: center;
}
.maentech-circle.borderless.size-5x{
    user-select:none; height: 120px; width: 120px; border-radius: 50%; border:none; text-align: center;
}
.maentech-circle.borderless.size-6x{
    user-select:none; height: 144px; width: 144px; border-radius: 50%; border:none; text-align: center;
}
/*endregion*/
.maentech-hr {
    width: 100%;
    border-color: var(--borderColor1);
}

.maentech-close-btn {
    margin: 20px;
    position: absolute;
    top: 0;
    right: 0;
    color: #da6d77;
    cursor: pointer;
    transition: 300ms;
}

.maentech-close-btn:hover {
    color: #da3444;
    transition: 300ms;
}

.maentech-title {
    text-align: center;
    text-shadow: 0 0 2px var(--shadowColor1);
}

/*region MAENTECH-TEXT-FIELD*/
.maentech-text-field {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 60px;
    padding-top: 10px;
    width: 90%;
    transform: translateX(5%);
}

.maentech-text-field > label {
    transition: 300ms;
    position: absolute;
    padding-left: 10px;
    user-select: none;
}

.maentech-text-field > b {
    position: absolute;
    user-select: none;
    right: 0;
    bottom: 0;
    font-size: 10px;
    padding: 0 10px 5px 0;
}

.maentech-text-field > input {
    height: 100%;
    width: 100%;
    text-indent: 6px;
    font-size: 15px;
    border-radius: 15px;
    border: 1px solid #e8e8e8;
}

.maentech-text-field > input.show-warning {
    background-color: var(--softInvalidColor);
}

.maentech-text-field > input:focus {
    border: 1px solid #e8e8e8;
    background-color: var(--focusItemColor);
}

.maentech-text-field > input:focus ~ label {
    font-size: 12px;
    margin-top: -30px;
    margin-left: -5px;
    color: black;
    transition: 300ms;
}

.maentech-text-field > input:valid ~ label {
    font-size: 13px;
    margin-top: -30px;
    margin-left: -5px;
    color: var(--validColor);
    transition: 300ms;
}

/*endregion MAENTECH-TEXT-FIELD*/

/*region MAENTECH-PASSWORD-FIELD*/
.maentech-password-field {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 60px;
    padding-top: 10px;
    width: 90%;
    transform: translateX(5%);
}

.maentech-password-field > .password-visibility {
    position: absolute;
    right: 0;
    cursor: pointer;
    height: 100%;
    text-align: center;
    top: 35%;
    width: 40px;
}

.maentech-password-field > .password-visibility:hover {
    color: var(--hoverBtnColor4);
}

.maentech-password-field > .password-visibility.visible {
    color: green;
}

.maentech-password-field > .password-visibility.visible:hover {
    color: #00ab00;
}

.maentech-password-field > label {
    transition: 300ms;
    position: absolute;
    padding-left: 10px;
    user-select: none;
}

.maentech-password-field > b {
    position: absolute;
    user-select: none;
    right: 0;
    bottom: 0;
    font-size: 10px;
    padding: 0 10px 5px 0;
}

.maentech-password-field > input {
    height: 100%;
    width: 100%;
    text-indent: 6px;
    font-size: 15px;
    border-radius: 15px;
    border: 1px solid #e8e8e8;
}

.maentech-password-field > input.show-warning {
    background-color: var(--softInvalidColor);
}

.maentech-password-field > input:focus {
    background-color: var(--focusItemColor);
}

.maentech-password-field > input:focus ~ label {
    font-size: 12px;
    margin-top: -30px;
    margin-left: -5px;
    color: black;
    transition: 300ms;
}

.maentech-password-field > input:valid ~ label {
    font-size: 13px;
    margin-top: -30px;
    margin-left: -5px;
    color: var(--validColor);
    transition: 300ms;
}

/*endregion MAENTECH-PASSWORD-FIELD*/

/*region MAENTECH-OPTIMIZED ROW*/
@media only screen and (max-width: 574px) {
    /* width<500 */
    .maentech-optimized-row {
        display: block;
    }
}

/* width>500 */
@media only screen and (min-width: 574px) {
    .maentech-optimized-row {
        display: flex;
    }
}

/*endregion*/
.maentech-smart-bg.show-danger {
    background-color: var(--softInvalidColor);
}

/*region MAENTECH-SUBMIT BUTTON*/
.maentech-submit-btn {
    border-style: none;
    border-radius: 10px;
    height: 35px;
    color: #ffffff;
    background-color: var(--clickBtnColor);
    transition: 300ms;
}

.maentech-submit-btn.success {
    color: #ffffff;
    background-color: #198754FF;
    transition: 300ms;
}

.maentech-submit-btn.danger {
    color: #ffffff;
    background-color: #DC3545FF;
    transition: 300ms;
}

.maentech-submit-btn.warning {

    color: #ffffff;
    background-color: #FFC107FF;
    transition: 300ms;
}

.maentech-submit-btn.primary {

    color: #ffffff;
    background-color: #0D6EFDFF;
    transition: 300ms;
}

.maentech-submit-btn:hover {
    background-color: var(--hoverBtnColor4);
    transition: 300ms;
}

.maentech-submit-btn.status-correct {
    background-color: var(--validColor);
    transition: 300ms;
}

.maentech-submit-btn.status-incorrect {
    background-color: var(--invalidColor);
    font-size: 15px;
    transition: 300ms;
}

.maentech-submit-btn.status-correct:hover {
    background-color: rgb(10, 157, 0);
    transition: 300ms;
}

.maentech-submit-btn.status-incorrect:hover {
    background-color: rgb(218, 0, 0);
    transition: 300ms;
}

/*endregion*/

.order-filter-options {

    width: 100%;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.order-filter-options li {
    display: inline-flex;
    margin-right: 10px;
    margin-bottom: 10px;
    height: 40px;
}

.order-filter-options .date input {
    border-style: none;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: whitesmoke;
}

.order-card .badge {
    color: black;
    background-image: linear-gradient(to right, #f8d0c4, rgba(255, 188, 132, 0.72));
}

.order-card .badge:hover {
    color: whitesmoke;
}

@media only screen and (min-width: 620px) {
    .order-card {
        list-style: none;
        width: 100%;
        background-image: linear-gradient(to right, #f8f8f8, rgb(255, 255, 255));
        border-radius: 15px;
        border: 1px solid var(--borderColor2);
        cursor: pointer;
        user-select: none;
    }

    .order-card:hover {
        background-image: linear-gradient(to top, #dedede, rgb(246, 246, 246));
    }

    .order-card.completed {
        background-image: linear-gradient(to right, #e1fde2, rgb(252, 248, 243));
    }

    .order-card.completed:hover {
        background-image: linear-gradient(to right, #c3ffc5, rgb(252, 248, 243));
    }

    .order-card.canceled {
        background-image: linear-gradient(to right, #fde4e4, rgb(252, 248, 243));
    }

    .order-card.canceled:hover {
        background-image: linear-gradient(to right, #ffcccc, rgb(252, 248, 243));
    }

    .order-card.planned {
        background-image: linear-gradient(to right, #fdf1e4, rgb(252, 248, 243));
    }

    .order-card.planned:hover {
        background-image: linear-gradient(to right, #ffeedc, rgb(252, 248, 243));
    }
}

@media only screen and (max-width: 620px) and (min-width: 400px) {
    .order-card {
        list-style: none;
        width: 100%;
        background-image: linear-gradient(to right, #f8f8f8, rgb(255, 255, 255));
        border-radius: 15px;
        border: 1px solid var(--borderColor2);
        cursor: pointer;
        user-select: none;
        padding: 10px;
    }

    .order-card:hover {
        background-image: linear-gradient(to top, #dedede, rgb(246, 246, 246));
    }

    .order-card.completed {
        background-image: linear-gradient(to right, #e1fde2, rgb(252, 248, 243));
    }

    .order-card.completed:hover {
        background-image: linear-gradient(to right, #c3ffc5, rgb(252, 248, 243));
    }

    .order-card.canceled {
        background-image: linear-gradient(to right, #fde4e4, rgb(252, 248, 243));
    }

    .order-card.canceled:hover {
        background-image: linear-gradient(to right, #ffcccc, rgb(252, 248, 243));
    }
}

@media only screen and (max-width: 400px) {
    .order-card {
        list-style: none;
        width: 100%;
        background-image: linear-gradient(to right, #f8f8f8, rgb(255, 255, 255));
        border-radius: 15px;
        border: 1px solid var(--borderColor2);
        cursor: pointer;
        user-select: none;
        overflow: hidden;
        padding: 10px;
    }

    .order-card:hover {
        background-image: linear-gradient(to top, #dedede, rgb(246, 246, 246));
    }

    .order-card.completed {
        background-image: linear-gradient(to right, #e1fde2, rgb(252, 248, 243));
    }

    .order-card.completed:hover {
        background-image: linear-gradient(to right, #c3ffc5, rgb(252, 248, 243));
    }

    .order-card.canceled {
        background-image: linear-gradient(to right, #fde4e4, rgb(252, 248, 243));
    }

    .order-card.canceled:hover {
        background-image: linear-gradient(to right, #ffcccc, rgb(252, 248, 243));
    }
}

#navTopButton {
    position: fixed;
    visibility: hidden;
    z-index: 100;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    margin: 30px;
    border-radius: 20px;
    border-style: none;
    background-color: var(--orange);
    color: white;
    transition: 300ms;
    text-align: center;

}

#navTopButton i {
    font-size: 25px;
    padding-top: 6px;
}

#navTopButton.show {
    visibility: visible;
    transition: 300ms;
}

.open-file-btn > input[type="file"] {
    visibility: hidden;
    position: absolute;
}

.open-file-btn.show-detail > input[type = "file"] {
    color: whitesmoke;
    visibility: visible;
    position: relative;
}

.maentech-timeline ul {
    list-style: none;
    overflow: hidden;
}

.maentech-timeline ul .detail-items {
    position: relative;
    display: block;
}

.maentech-timeline ul .line {
    position: absolute;
    height: 100%;
    width: 5px;
    background-color: #f6f6f6;
    border-radius: 30px;
    margin-top: 15px;
    margin-left: 26px;
    z-index: 3;
}

.maentech-timeline ul .detail-items li {
    position: relative;
    display: inline-flex;
    padding: 20px;
    width: 100%;
}

.maentech-timeline ul .detail-items li .dot {
    background-color: #d9d9d9;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 4;
    margin-top: 15px;
}

.maentech-timeline ul .detail-items li .dot .dot-item {
    position: absolute;
    background-color: #9b9b9b;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 4px;
    margin-top: 5px;
}

.maentech-timeline ul .detail-items li.danger .dot .dot-item {
    background-color: var(--dangerColor);
}

.maentech-timeline ul .detail-items li.success .dot .dot-item {
    background-color: var(--successColor);
}

.maentech-timeline ul .detail-items li.warning .dot .dot-item {
    background-color: var(--unsuccessColor);
}

.maentech-timeline ul .detail-items li .item {
    display: grid;
    margin-left: 10px;
    z-index: 3;
    color: black;
    background-color: #f3f3f3;
    border-radius: 8px;
    width: 100%;
    min-height: 100px;
}

.maentech-timeline ul .detail-items li.danger .item {
    background-color: var(--dangerColor);
    color: black;
}

.maentech-timeline ul .detail-items li.success .item {
    background-color: var(--lightGreen);
    color: black;
}

.maentech-timeline ul .detail-items li.warning .item {
    background-color: var(--lightOrange);
    color: black;
}

.maentech-timeline ul .detail-items li .item .item-header {
    padding-left: 20px;
}

.maentech-timeline ul .detail-items li .item .item-body {
    padding-left: 20px;
    padding-bottom: 10px;
}

.pac-container {
    z-index: 999999;
    border-radius: 15px;
}

.notification-item.unread {
    background-color: #eff5fb;
}

.maentech-colored-text.light {
    color: #fff;
    transition: 300ms;
    text-decoration: none;
}

.maentech-colored-text.light:hover {
    transition: 300ms;
    color: #3f3f3f;
    text-decoration: underline;

}

.maentech-colored-text.dark {
    color: #282828;
    transition: 1000ms;
    text-decoration: none;
}

.maentech-colored-text.dark:hover {
    transition: 1000ms;
    color: #090909;
    text-decoration: underline;
}

.maentech-colored-text.danger {
    color: #c40000;
    transition: 1000ms;
    text-decoration: none;
}

.maentech-colored-text.danger:hover {
    transition: 1000ms;
    color: #ff0000;
    text-decoration: underline;
}

.maentech-colored-text.success {
    color: #009d06;
    transition: 1000ms;
    text-decoration: none;
}

.maentech-colored-text.success:hover {
    transition: 1000ms;
    color: #00e109;
    text-decoration: underline;
}

.maentech-colored-text.primary {
    color: #0c52bd;
    transition: 1000ms;
    text-decoration: none;
}

.maentech-colored-text.primary:hover {
    transition: 1000ms;
    color: #0D6EFDFF;
    text-decoration: underline;
}

.busy-color-stat-0 {
    color: #222;
    background-color: #fff;
}

.busy-color-stat-1 {
    color: #222;
    background-color: #fceeee;
}

.busy-color-stat-2 {
    color: #222;
    background-color: #ff7b7b;
}

.busy-color-stat-3 {
    color: #222;
    background-color: #ff5454;
}

@media only screen and (min-width: 471px) {
    /*Other Screens [470 -> infinity]*/
    .maentech-animated-button {
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 1.3px;
        font-weight: 700;
        background: linear-gradient(90deg, rgb(255, 154, 109) 0%, rgb(255, 104, 61) 100%);
        border: none;
        border-radius: 1000px;
        box-shadow: 12px 12px 24px rgba(209, 114, 79, 0.64);
        transition: all 0.3s ease-in-out 0s;
        cursor: pointer;
        outline: none;
        position: relative;
    }

    maentech-animated-button::before {
        content: '';
        border-radius: 500px;
        min-width: calc(300px + 12px);
        min-height: calc(60px + 12px);
        border: 2px solid #ff3c00;
        box-shadow: 0 0 60px rgba(255, 68, 0, 0.64);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: all .3s ease-in-out 0s;
    }
}

@media only screen and (max-width: 470px) {
    /*Big smartphones [0 -> 470px]*/
    .maentech-animated-button {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1.3px;
        font-weight: 700;
        background: linear-gradient(90deg, rgb(255, 154, 109) 0%, rgb(255, 104, 61) 100%);
        border: none;
        border-radius: 1000px;
        box-shadow: 12px 12px 24px rgba(209, 114, 79, 0.64);
        transition: all 0.3s ease-in-out 0s;
        cursor: pointer;
        outline: none;
        position: relative;
    }

    maentech-animated-button::before {
        content: '';
        border-radius: 250px;
        min-width: calc(300px + 12px);
        min-height: calc(60px + 12px);
        border: 2px solid #ff3c00;
        box-shadow: 0 0 60px rgba(255, 68, 0, 0.64);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: all .3s ease-in-out 0s;
    }
}

@media only screen and (max-width: 370px) {
    /*Small smartphones [325px -> 370px]*/
    .maentech-animated-button {
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 1.3px;
        font-weight: 700;
        background: linear-gradient(90deg, rgb(255, 154, 109) 0%, rgb(255, 104, 61) 100%);
        border: none;
        border-radius: 1000px;
        box-shadow: 12px 12px 24px rgba(209, 114, 79, 0.64);
        transition: all 0.3s ease-in-out 0s;
        cursor: pointer;
        outline: none;
        position: relative;
    }

    maentech-animated-button::before {
        content: '';
        border-radius: 250px;
        min-width: calc(300px + 12px);
        min-height: calc(60px + 12px);
        border: 2px solid #ff3c00;
        box-shadow: 0 0 60px rgba(255, 68, 0, 0.64);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: all .3s ease-in-out 0s;
    }
}


.maentech-animated-button:hover, .maentech-animated-button:focus {
    color: #313133;
    transform: translateY(2px);
}

.maentech-animated-button:hover::before, maentech-animated-button:focus::before {
    opacity: 1;
}

.maentech-animated-button::after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 2px solid #ff4d00;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

maentech-animated-button:hover::after, maentech-animated-button:focus::after {
    animation: none;
    display: none;
}

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

.mt-disabled{
    pointer-events: none;
    opacity: 25%;
    user-select: none;
}

.body-content{
/*    position: fixed;*/
    margin-top: 20px;
    width: 100%;
}

.body-content .left-section {
    position: absolute;
    left: 0;
    z-index: 999999;
    width: 300px;
    /*height: 100%;*/
    height: auto;
    background-color: #eeeeee;
    color: var(--bs-dark);
    display: block;
    opacity: 100%;
    border-bottom-right-radius: 20px;
}

.body-content .left-section.collapsing {
    animation-duration: 350ms;
    animation-name: rightToLeftMenu;
}

.body-content .left-section.showing {
    display: block;
    animation-duration: 350ms;
    animation-name: leftToRightMenu;
}

.body-content .left-section.collapsed {
    transform: translateX(-400px);
    display: none;
    transition: 350ms;
}

@keyframes leftToRightMenu {
    from {
        transform: translateX(-400px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes rightToLeftMenu {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-400px);
    }
}

.body-content .left-section .ls-list {
    width: 84%;
    height: 100%;
    max-height: 100vh;
    overflow-y:auto;
    overflow-x: hidden;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}

.body-content .left-section .ls-list-item {
    transition: 300ms;
    height: 40px;
    margin-top: 5px;
    display: flex;
    justify-content: start;
    align-items: center;
    cursor: pointer;
    padding-left: 5px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.body-content .left-section .ls-list-item:hover {
    background-color: var(--borderColor1);
    transform: translateX(5px);
    transition: 350ms;
}
#hide-menu-btn {
    position: absolute;
    background-color: #ffffff;
    color: #000000;
    top: 0;
    right: 0;
    width: 30px;
    height: 50px;
    cursor: pointer;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    transform: translateX(30px);
    z-index: 200;
    text-align: center;
}

#show-menu-btn {
    position: absolute;
    background-color: var(--bs-dark);
    color: var(--bs-light);
    width: 30px;
    height: 50px;
    cursor: pointer;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
    z-index: 99999;
}
.mt-background{
    position: relative;
    height: 100vh;
    min-height: 500px;
    background: url(../imgs/bg/wp1.jpg) no-repeat center center fixed;
    background-size: cover;
   /* overflow: hidden;*/
}
.mt-background .overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}