:root {
    --greenBg: green;
    --backgroundColor: #333333;
    --bgLight: #e8e8e8;
    --bgDark: #17191c;
    --bgDark2: #272a2f;
    --lowOpacityTextColor: rgba(59, 59, 59, 0.56);
    --purpleColor1:#ccccff;
    --borderColor1: rgba(206, 206, 206, 0.72);
    --borderColor2: #eeeeee;
    --borderColor3: #e8e8e8;
    --borderColor4: #f8f8f8;
    --borderColor5: #2c2c2c;
    --gray1: #eaeaea;
    --darkOpacity100: rgba(0, 0, 0, 1);
    --darkOpacity75: rgba(0, 0, 0, 0.75);
    --darkOpacity50: rgba(0, 0, 0, 0.50);
    --darkOpacity25: rgba(0, 0, 0, 0.25);
    --darkOpacity10: rgba(0, 0, 0, 0.10);
    --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);
    --lightRed2: #feeded;
    --hoverBtnColor4: rgb(72, 72, 72);
    --clickBtnColor: rgba(0, 0, 0, 0.96);
    --clickBtnColor2: #464646;
    --orange: #ff7300;
    --gold: #ffc400;
    --hoverBackgroundColor: rgb(236, 255, 235);
    --focusItemColor: rgb(255, 250, 232);
    --headerBackgroundColor: #222222;
    --headerScrolledBackgroundColor: rgba(34, 34, 34, 0.85);
    --selectedItemColor1: 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;
}

*::-webkit-scrollbar {
    width: 7px; /* width of the entire scrollbar */
}

*::-webkit-scrollbar-track {
    background-color: #c9c9c9; /*bg color */
}

*::-webkit-scrollbar-thumb {
    background: #5b5b5b; /*    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: var(--bs-danger);
}

#snackbar > p.warning {
    background-color: var(--bs-warning);
}

#snackbar > p.success {
    background-color: var(--bs-success);
}

#snackbar > p.light {
    color: var(--bs-dark);
    background-color: var(--bs-light);
}

#snackbar > p.dark,
#snackbar > p.default {
    color: var(--bs-light);
    background-color: var(--bs-dark);
}

/*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: -23px;
    margin-left: -5px;
    color: black;
    transition: 300ms;
}

.maentech-text-field > input:valid ~ label {
    font-size: 13px;
    margin-top: -23px;
    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: -23px;
    margin-left: -5px;
    color: black;
    transition: 300ms;
}

.maentech-password-field > input:valid ~ label {
    font-size: 13px;
    margin-top: -23px;
    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-slider-content {
    display: flex;
}

.mt-slider-content > .mt-slider-options {
    position: absolute;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.opt-btn {
    color: var(--bs-light);
    background-color: var(--bs-dark);
    margin-left: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

.mt-editable-text {
    border-radius: 10px;
    height: auto;
    font-weight: 400;
    font-family: 'Roboto Slab', serif;
    line-height: 1.1;
    text-indent: 4px;
    text-align: center;
    text-decoration: none;
    /*background-color: rgba(34, 255, 0, 0.41);*/
    /*color: white;*/
    background-color: rgba(255, 255, 255, 0.77);
    color: #222222;
    border: none;
}
.mt-editable-text.size-05x{
    height: 1rem;
}

.mt-editable-text.size-2x {
    height: 1.25rem;
}

.mt-editable-text.size-4x {
    height: 1.5rem;
}

.mt-editable-text.size-5x {
    height: 2rem;
}

.mt-editable-text.size-6x {
    height: 2.5rem;
}

.mt-editable-text:invalid {
    font-weight: 400;
    font-family: 'Roboto Slab', serif;
    line-height: 1.1;
    text-indent: 4px;
    text-align: center;
    text-decoration: none;
    background-color: rgba(255, 0, 0, 0.27);
    border: none;
    color: white;
}

.mt-slider-content > .mt-slider-dir-btn {
    position: absolute;
    cursor: pointer;
    display: flex;
    height: 100%;
    top: 0;
    width: 30%;
    align-items: center;
}

.mt-slider-content > .mt-slider-dir-btn.left {
    justify-content: start;
	margin-left: 30px;
    left: 0;
}

.mt-slider-content > .mt-slider-dir-btn.right {
    justify-content: end;
	margin-right: 30px;
    right: 0;
}

.mt-slider-content > .mt-slider-dir-btn img {
    width: 100px;
    height: 100px;
    transition: 300ms;
    opacity: 0%;
}

.mt-slider-content > .mt-slider-dir-btn:hover img {
    transition: 300ms;
    opacity: 60%;
}

.mt-slider-content > .mt-slider-image {
    width: 100%;
    height: 600px;
    transition: 500ms;
    animation: sliderImageFadeIn 500ms;
}

@media (max-width: 767px) {
    .mt-slider-content > .mt-slider-image {
        width: 100%;
        min-height: 300px;
        max-height: 400px;
        transition: 500ms;
    }
    .mt-slider-content > .mt-slider-dir-btn img {
        width: 100px;
        height: 100px;
        transition: 300ms;
    }
}

@media (max-width: 550px) {
    .mt-slider-content > .mt-slider-image {
        width: 100%;
        min-height: 200px;
        max-height: 300px;
        transition: 500ms;
    }
    .mt-slider-content > .mt-slider-dir-btn img {
        width: 64px;
        height: 64px;
        transition: 300ms;
    }
}
@media (max-width: 470px) {
    .mt-slider-content > .mt-slider-image {
        width: 100%;
        min-height: 100px;
        max-height: 200px;
        transition: 500ms;
    }
    .mt-slider-content > .mt-slider-dir-btn img {
        width: 32px;
        height: 32px;
        transition: 300ms;
    }
}
.mt-slider-content > .mt-slider-image.fadeOut {
    animation: sliderImageFadeOut 800ms;
}

.mt-slider-content > .mt-slider-image.fadeIn {
    animation: sliderImageFadeIn 800ms;
}

@keyframes sliderImageFadeIn {
    from {
        opacity: 0%;
    }
    to {
        opacity: 100%;
    }
}

@keyframes sliderImageFadeOut {
    from {
        opacity: 100%;
    }
    to {
        opacity: 0%;
    }
}

.mt-slider-content > .mt-slider-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
    user-select: none;
}


.mt-slider-content > .mt-slider-pagination {
    display: flex;
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    justify-content: center;
    margin-bottom: 5px;
}

.mt-slider-content > .mt-slider-pagination > .mt-slider-pagination-item {
    width: 35px;
    height: 100%;
    background-color: #FFFFFF;
    margin-right: 5px;
    opacity: 50%;
    cursor: pointer;
    transition: 500ms;
}

.mt-slider-content > .mt-slider-pagination > .mt-slider-pagination-item.active {
    background-color: var(--selectedItemColor1);
    opacity: 90%;
    transition: 500ms;
}

.mt-header-content {

}

.mt-header-content > .mt-header-image {
    width: 100%;
    height: 500px;
    transition: 500ms;
}

.mt-header-content > .mt-header-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

@media (max-width: 767px) {
    .mt-header-content > .mt-header-image {
        width: 100%;
        max-height: 500px;
        transition: 500ms;
    }
    .mt-slider-content > .mt-slider-text {
        position: absolute;
        bottom: 0;
        width: 100%;
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 550px) {
    .mt-header-content > .mt-header-image {
        width: 100%;
        min-height: 300px;
        max-height: 400px;
        transition: 500ms;
    }

    .mt-slider-content > .mt-slider-text {
        position: absolute;
        bottom: 0;
        width: 100%;
        font-size: 1.5rem;
        text-align: center;
    }
}


.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mt-hoverable-item {
    opacity: 1;
    transition: 500ms;
}

.mt-hoverable-item:hover {
    opacity: 75%;
    transition: 500ms;
}

.mt-hoverable-item.low-opacity:hover {
    opacity: 25%;
    transition: 500ms;
}
.mt-hoverable-item.anim1:hover {
    transition: 500ms;
    opacity: 85%;
    box-shadow: 2px 3px #919191;
    border-radius: 10px;
}
.mt-hoverable-item.anim2:hover {
    transition: 500ms;
    opacity: 85%;
    box-shadow: 2px -3px #919191;
    border-radius: 10px;
}
.mt-hoverable-item.anim3:hover {
    transition: 500ms;
    opacity: 85%;
    box-shadow: 3px 5px #d0d0d0;
    border-radius: 10px;
}
.mt-hoverable-item.anim4:hover {
    transition: 500ms;
    opacity: 85%;
    box-shadow: 3px -5px #d0d0d0;
    border-radius: 10px;
}

.mt-disabled {
    pointer-events: none;
    user-select: none;
    opacity: 60%;
}

.mt-disabled.low-opacity {
    pointer-events: none;
    opacity: 25%;
}

.rawPageTextArea {

}

.message-item{
    cursor: pointer;
    overflow: hidden;
}

.message-item:hover{
background-color: var(--borderColor1);
 }
/*region Maentech Table*/

.mt-row{
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #222222;
    min-height: 50px;
    width: 100%;
    overflow: hidden;
}
.mt-row>.mt-col {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: none;
}
.mt-col.mt-2x{
    width: 80px;
}
.mt-col.mt-3x{
    width: 300px;
}
.mt-col.mt-4x{
    width: 500px;
}
.mt-col.mt-5x{
    width: 800px;
}
.mt-col.mt-spx{
    width: 130%;
}
.mt-col.mt-spx2{
    width: 200%;
}
/*region Row Borders*/
.mt-row.mt-b-right{
    border-right: 1px solid var(--borderColor1);
}
.mt-row.mt-b-right.dark{
    border-right: 1px solid var(--borderColor3);
}
.mt-row.mt-b-left{
    border-left: 1px solid var(--borderColor1);
}
.mt-row.mt-b-left.dark{
    border-right: 1px solid var(--borderColor3);
}
.mt-row.mt-b-bottom{
    border-bottom: 1px solid var(--borderColor1);
}
.mt-row.mt-b-bottom.dark{
    border-bottom: 1px solid var(--borderColor3);
}
.mt-row.mt-b-top{
    border-top: 1px solid var(--borderColor1);
}
.mt-row.mt-b-top.dark{
    border-top: 1px solid var(--borderColor3);
}
.mt-row.mt-b-all{
    border:1px solid var(--borderColor1);
}
.mt-row.mt-b-all.dark{
    border:1px solid var(--borderColor3);
}
/*endregion*/
/*region Column Borders*/
.mt-col.mt-b-right{
    border-right: 1px solid var(--borderColor1);
}
.mt-col.mt-b-right.dark{
    border-right: 1px solid var(--borderColor3);
}
.mt-col.mt-b-left{
    border-left: 1px solid var(--borderColor1);
}
.mt-col.mt-b-left.dark{
    border-right: 1px solid var(--borderColor3);
}
.mt-col.mt-b-bottom{
    border-bottom: 1px solid var(--borderColor1);
}
.mt-col.mt-b-bottom.dark{
    border-bottom: 1px solid var(--borderColor3);
}
.mt-col.mt-b-top{
    border-top: 1px solid var(--borderColor1);
}
.mt-col.mt-b-top.dark{
    border-top: 1px solid var(--borderColor3);
}
.mt-col.mt-b-all{
    border:1px solid var(--borderColor1);
}
.mt-col.mt-b-all.dark{
    border:1px solid var(--borderColor3);
}
/*endregion*/
.mt-row.mt-col.auto-width{
    width: auto;
}

.mt-col-text{
    font-size: 1rem; font-family: 'Roboto Slab',serif;
}
.mt-col-text.mt-text-2x{
    font-size: 1.25rem; font-family: 'Roboto Slab',serif;
}
/*endregion*/

@media (max-width: 800px) {
    #cari1_container{
        width: 700px;
    }
}
@media (max-width: 550px) {
    #cari0_container{
        width: 700px;
    }
}


.mt-vertical-btn {
    padding:0px 0px 0px 0px;
    text-align: center;
    margin:0px;
    width: 160px;
    height:40px;
    background: #222222;
    -moz-transform:rotate(-90deg);
    -ms-transform:rotate(-90deg);
    -o-transform:rotate(-90deg);
    -webkit-transform:rotate(-90deg);
    transform-origin: bottom right;
    position: fixed;
    right: 0;
    top: 0;
    cursor: pointer;
    user-select: none;
    line-height: 40px;
}
#mtImageViewer{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    #align-items: top;
    z-index: 9999999;
	padding-top: 10%;
}
#mtImageViewer::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 0;
    padding-top: 56.25%; /* 16:9 aspect ratio (9 / 16 * 100) */
}
#mtImageViewer img{
    #width: 80%;
    #height: 45%;
	max-height: 720px;
	max-width: 1280px;
}
