:root {
    --museo_rounded_100: 'MuseoSansRounded100Regular';
    --museo_rounded_300: 'MuseoSansRounded300Regular';
    --museo_rounded_500: 'MuseoSansRounded500Regular';
    --museo_rounded_700: 'MuseoSansRounded700Regular';

    --orange_light: #FF9F00;
    --orange: #FF7A00;
    --red: #FF6761;
    --yellow: #FFB61A;
    --green: #00AB76;
    --purple: #B87DD7;
    --gray: #F5F5F5;
    --gray_light: #4d4d4d;
    --gray_bright: #999999;
    --soft_gray: #A3A3AE;
    --soft_gray_2: #EDEDED;
    --fleet_red: #BF355C;
    --black_text: #58595B;
    --red_text: #ED6767;
    --gray_line: #E0DFDF;

    --icon: "›";
}

html, body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    font-family: var(--museo_rounded_300);
    background-color: white;
    color: var(--gray_light);
}

a {
    text-decoration: none;
}

strong {
    font-family: var(--museo_rounded_700);
}

h1 {
    color: var(--fleet_red);
    font: 17px/22px var(--museo_rounded_500);
    position: relative;
    top: 15px;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;


    span {
        font: 16px/28px var(--museo_rounded_300);
        display: block;
        text-transform: none;
    }
}

.errorlist {
    font: 14px/22px var(--museo_rounded_300);
    color: var(--red);
    margin: 0px;

    li {
        margin-bottom: 5px;
    }
}

form {
    margin-bottom: 0px;
}

ul {
    list-style: none;

    a {
        display: block;
    }
}

.left {
    float: left;
}

.right {
    float: right;
}

.table {
    color: var(--gray_bright);

    th {
        color: var(--gray_bright);
    }

    th.gray {
        color: var(--gray_light);
    }

    .th-padding {
        padding: 2px 0px;
    }

    pre {
        margin: 0;
        font: 14px/20px var(--museo_rounded_300);
    }
}

table {
    width: 100%;

    th {
        font: 16px/16px var(--museo_rounded_300);
        color: var(--gray_light);
    }

    td {
        font: 14px/20px var(--museo_rounded_500);
    }

    a {
        font: 14px/18px var(--museo_rounded_500);
        color: var(--gray_light);

        &:hover {
            color: var(--g);
        }
    }

    td.small {
        font: 15px/18px var(--museo_rounded_700);
        text-transform: uppercase;
    }

    .pad-right {
        padding-right: 15px;
    }

    .text-center {
        text-align: center;
    }

    select:disabled {
        background: #f2f2f2;
    }
}

/* START INPUT */
.input-v2 {
    outline: none;
    border: none;
    font: 14px/1.5 var(--museo_rounded_300);
    border: 1px solid var(--gray_line);
    color: #000000;
    border-radius: 4px;
    box-sizing: border-box;

    /* reset current styling */
    margin-bottom: 0;

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

    &::placeholder {
        font: 14px/1.2 var(--museo_rounded_300);
        color: var(--soft_gray);
    }

    &:focus,
    &[type="date"]:focus,
    &[type="time"]:focus,
    &[type="text"]:focus {
        border: 1px solid var(--orange_light);
    }

    &:not([type="checkbox"], [type="radio"]) {
        padding: 7px 10px;
    }

    &[type="checkbox"] {
        cursor: pointer;
        width: 18px;
        height: 18px;
        aspect-ratio: 1;
        color: white;
        border-radius: 2px;
        overflow: hidden;
        display: flex;
        appearance: none;

        &:checked {
            border-color: var(--orange_light);

            &::after {
                content: '\2714';
                background-color: var(--orange_light);
                height: 100%;
                width: 100%;
                line-height: 1;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        /* reset current styling */
        &:focus {
            border: 1px solid #D1D1D1;
        }

        &:focus:checked,
        &:checked {
            border: 1px solid var(--orange_light);
        }
    }

    &[type="date"]::-webkit-calendar-picker-indicator,
    &[type="time"]::-webkit-calendar-picker-indicator {
        width: 18px;
        position: relative;
        right: -5px;
        cursor: pointer;
    }

    &[type="date"]::-webkit-calendar-picker-indicator {
        background: transparent url("/static/img/new_icons/calendar.svg") center no-repeat;
        background-size: 18px;
    }

    &[type="time"]::-webkit-calendar-picker-indicator {
        background: transparent url("/static/img/new_icons/time.svg") center no-repeat;
        background-size: 17px;
    }
}

.textarea-v2 {
    outline: none;
    border: none;
    font: 14px/1.5 var(--museo_rounded_300);
    border: 1px solid var(--gray_line);
    color: #000000;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 0;
    resize: none;
    min-height: 150px;
    max-height: 300px;

    &:focus {
        border: 1px solid var(--orange_light);
    }
}

.select-v2 {
    appearance: none;
    background-image: url('/static/img/new_icons/dropdown-arrow-gray.webp');
    background-position: calc(100% - 5px) center;
    background-repeat: no-repeat;
    background-size: 18px;
    padding-right: 20px;
    cursor: pointer;
    border-radius: 4px;
    font: inherit;
    margin-bottom: 0;
    font: 14px/1.2 var(--museo_rounded_300);
    color: #000000;

    &:focus {
        border: 1px solid var(--orange_light);
    }
}
/* END INPUT */

.text_align_right {
    text-align: right;
}

.mb-25 {
    margin-bottom: 25px;
}

.green {
    color: var(--green);
}

.gray {
    color: var(--gray_light);
}

a.orange {
    color: var(--orange);

    &:hover {
        color: var(--orange);
    }
}

.orange-bg {
    background-color: var(--orange_light);

    &.button {
        color: white;
        background-color: var(--orange_light);
        border: 1px solid var(--orange_light);
    }
}

.white-bg {
    background-color: white;
}

.green-bg {
    background-color: var(--green);

    &.button {
        color: white;
        background-color: var(--green);
        border: 1px solid var(--green);
    }
}

.red-bg {
    background-color: var(--red);

    &.button {
        color: white;
        background-color: var(--red);
    }
}

.yellow-bg {
    background-color: var(--yellow);
}

.gray-bg {
    background-color: var(--gray);
}

.orange.button {
    color: var(--orange);
    border: 1px solid var(--orange);
    background-color: transparent;

    &:hover {
        color: var(--orange);
    }
}

.red.button {
    color: var(--red);
    border: 1px solid var(--red);
    background-color: transparent;

    &:hover {
        color: var(--red);
    }
}

.gray.button {
    margin-top: 5px;
    color: gray;
    border: 1px solid gray;
    background-color: transparent;

    &:hover {
        color: black;
    }
}

.green.button {
    color: var(--green);
    border: 1px solid var(--green);
    background-color: transparent;

    &:hover {
        color: var(--green);
    }

    &:after {
        color: var(--green)
    }
}

.delete-image {
    position: absolute;
    right: -6px;
    top: -6px;
    z-index: 10;

    .delete-image-icon {
        width: 18px;
        height: 18px;
    }
}

.imports-exportss-lists {
    font-size: 2rem;
}

.font_orange {
    color: orange;
}

.width-7 {
    width: 7%;
}

.width-32 {
    width: 32%;
}

.content_wrapper.reports {
    padding-top: 0px;
    column-count: 2;
    column-gap: 15px;
    counter-reset: item-counter;
    display: table-cell;
}

.header-title {
    float: left;
}

button.save {
    margin: 14px 0;
    padding: 10px 20px;
    font-size: 18px;
}

.generate-report {
    position: absolute;
}

.columns.bottom-border {
    border-bottom: 1px solid #E1E1E1;
}

.columns.top-border {
    border-top: 1px solid #E1E1E1;
}

.top-pagination {
    padding-bottom: 10px;
    margin-top: 20px;
}

.bottom-pagination {
    padding-top: 12px;
    margin-top: 38px;
}

.text-center {
    text-align: center;
}

.second-title {
    padding-top: 6px;
}

hr.border {
    margin: 1px 0 0 0;
}

hr.border-table {
    margin: 0 0 0 33px;
}

.small-title {
    font-size: 18px;
    font-weight: 600;
}

.small-title.first-title {
    margin-left: 32px;
}

.detail-report, .form-report {
    h2 {        color: var(--fleet_red);
        letter-spacing: 1px;

        span {
            font: 22px/22px var(--museo_rounded_300);
            display: block;
            color: var(--gray_light);
            margin-top: 10px;
            opacity: 0.5;
        }
    }

    h3 {
        font: 22px/22px var(--museo_rounded_500);
        margin-top: 4px;
        margin-bottom: 15px;
    }

    h4 {
        font: 16px/22px var(--museo_rounded_300);
        margin-bottom: 15px;
    }

    .description {
        font: 15px/30px var(--museo_rounded_300);
        max-width: 60%;
        margin-bottom: 40px;
    }

    .details {
        margin-bottom: 50px;

        td, th {
            font: 16px/22px var(--museo_rounded_300);
            border-bottom: none;
        }

        .td-left {
            padding-left: 0px;
        }

        th {
            padding: 5px 0px;
            width: 30%;
        }

        td {
            padding: 5px 15px 5px 0;
        }

        td:nth-child(2) {
            width: 5px;
        }

        a {
            font-size: 16px;
        }

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

    .table {
        th {
            padding-bottom: 0px;
        }
    }

    .no-border{
        border-bottom: none;
    }
}

.details td.text-bold {
    font: 15px/22px var(--museo_rounded_500);
}

.form-report {

    .content_wrapper label {
        font: 15px/22px var(--museo_rounded_500);
        color: var(--gray_light);
        margin-top: 20px;
    }

    .form-checkbox>.parent-row>.row {
        display: flex;
        align-items: center;
    }

    .awesomplete {
        width: 100%;
    }

    input, select, textarea {
        height: 30px;
        padding: 2px 10px;
        max-height: 100px;
        font: 15px/22px var(--museo_rounded_500);
        color: var(--gray_light);
        margin-bottom: 5px;
        border-radius: 5px;
    }

    textarea {
        min-height: 180px;
    }

    input[type="checkbox"] {
        width: auto;
        height: auto;
    }

    input[type="file"] {
        border-radius: 0px;
    }

    input[type="number"] {
        margin-bottom: 0px;
    }

    input[type="date"] {
        max-width: unset;
        border: 1px solid #e0e0e0;
        height: 30px;
        border-radius: 4px;
        padding: 3px 10px;
        box-sizing: border-box;

        &:focus-visible {
            outline: 1px solid #D1D1D1;
        }
    }

    form {
        max-width: 90%;

        .helptext {
            font: 14px/22px var(--museo_rounded_500);
            color: var(--gray_bright);
        }
    }

    form .button_wrapper {
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid #D1D1D1;
        display: table;
        width: 100%;
    }

    form .button {
        padding: 7px 22px;
        border-radius: 5px;
        font: 16px/22px var(--museo_rounded_500);

        &:last-child {
            margin-right: 0px;
        }
    }

    form .multiple-checkbox-field {
        label {
            margin-top: 10px;
        }
    }

    .form-checkbox .multiple-checkbox {
        padding: 10px 0;
        margin-top: 0px;

        span {
            left: 32px;
            top: 7px;
            border: none;
        }

        a {
            font: 15px/18px var(--museo_rounded_500);
            color: var(--gray_light);

            &:hover {
                color: var(--green);
            }
        }

        .text-left {
            text-align: left;
        }
    }
}

.thumbnails {
    margin: 40px 0px;

    .image {
        width: 100%;
        min-height: 160px;
        max-width: 160px;
        position: relative;
        margin-bottom: 10px;
        background-size: cover;
        background-position: center center;
        background-color: var(--gray);
    }

    .columns {
        float: left;
        width: 17%;
        min-width: 160px;
        margin-left: 1%;
        position: relative;

        &:first-child {
            margin-left: 0px;
        }
    }

    .image.empty {
        border: 1px solid var(--orange);
        color: var(--orange);
        text-align: center;
        background-color: transparent;
        font: 75px/75px var(--museo_rounded_100);
        display: table;

        span {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }
}

.box_wrapper {
    border-radius: 3px;
    padding: 8px 12px;
    box-sizing: border-box;
    color: white;
}

.status {
    color: white;
    font: 15px/22px var(--museo_rounded_700);

    &.green {
        color: var(--green);
    }

    &.yellow {
        color: var(--yellow);
    }

    &.red {
        color: var(--red);
    }
}

#otp-form-errors {
    li {
        color: #FF6761;
        background: #ffcecc;
    }
}

#resend-otp{
    cursor: pointer;
}

#otp-form-message {
    li {
        color: var(--gray_light);
        background: var(--gray);
    }
}

.otp-button-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.tabs {
    margin-top: 35px;

    input[name='tab'], section > tab {
        display: none;
    }

    .label_wrapper {
        border-bottom: 1px solid var(--gray_line);
        width: 100%;
        display: table;
        padding-bottom: 0px;
    }

    .label_wrapper label, .label_wrapper span {
        cursor: pointer;
        float: left;
        margin-right: 30px;
        font: 20px/26px var(--museo_rounded_300);
        margin-bottom: 0px;
        position: relative;
        opacity: 0.5;
    }

    .label_wrapper label, .label_wrapper a {
        color: var(--gray_light);
        padding: 10px 0;
    }

    section {
        clear: both;
        display: block;
        margin-top: 30px;

        .tab {
            display: none;
        }
    }

    #tab1:checked ~ .label_wrapper label[for="tab1"],
    #tab2:checked ~ .label_wrapper label[for="tab2"],
    #tab3:checked ~ .label_wrapper label[for="tab3"],
    #tab4:checked ~ .label_wrapper label[for="tab4"],
    #tab5:checked ~ .label_wrapper label[for="tab5"],
    #tab6:checked ~ .label_wrapper label[for="tab6"],
    #tab7:checked ~ .label_wrapper label[for="tab7"],
    #tab8:checked ~ .label_wrapper label[for="tab8"],
    #tab9:checked ~ .label_wrapper label[for="tab9"] {
        opacity: 1;

        &:after {
            content: '';
            width: 100%;
            background: var(--gray_bright);
            position: absolute;
            bottom: 0px;
            height: 2px;
            left: 50%;
            transform: translate(-50%, 0%);
        };
    }

    #tab1:checked ~ section .tab1,
    #tab2:checked ~ section .tab2,
    #tab3:checked ~ section .tab3,
    #tab4:checked ~ section .tab4,
    #tab5:checked ~ section .tab5,
    #tab6:checked ~ section .tab6,
    #tab7:checked ~ section .tab7,
    #tab8:checked ~ section .tab8,
    #tab9:checked ~ section .tab9 {
        display: block;
    }
}

.tabs--no-margin-top {
    margin-top: 0;
}

.title {
    font: 23px var(--museo_rounded_500);
    color: var(--gray_light);
    margin-bottom: -20px;
}

.container {
    background-color: white;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: table;
    background: #f5f5f5;
    border-right: 1px solid white;
    overflow: hidden;

    .content {
        height: 100%;
        min-height: 100%;
        display: table-cell;
    }
}

.selected {
    clear: both;
    margin-top: 30px;
}

.hide {
    display: none;
}

.menu-button {
    border-color: var(--yellow);
    cursor: pointer;

    &:before {
        content: '';
        -webkit-tap-highlight-color: transparent;
        width: 38px;
        height: 38px;
        background-color: rgba(255, 182, 26, .85);
        position: absolute;
        top: -14px;
        right: -6px;
        border-radius: 50%;
        z-index: 100;
    }

    ul {
        width: 25px;
        height: 25px;
        margin: 0px;
        z-index: 200;
        position: relative;
    }
}

.menu-icon-stripe {
    background-color: white;
    height: 1px;
    margin-bottom: 4px;
}

.content_wrapper {
    padding: 20px 7% 20px;
    box-sizing: border-box;

    table {
        margin-bottom: 10px;
    }

    tr:last-child td {
        border-bottom: none;
    }
}

.header {
    background: white;
    box-shadow: 0px 1px 1px #F1F1F1;
    padding: 3px 7%;
    margin-bottom: 25px;
    min-height: 58px;
}

.content {
    display: flex;
    background-color: white;
}

.actions {
    position: relative;
    display: table;

    label {
        display: none;
    }

    input[type='checkbox'], .dropdown {
        display: none;
    }

    input[type='checkbox']:checked ~ .dropdown {
        display: table;
        width: 120px;
    }

    select {
        width: 125px;
        padding: 5px 12px 8px;
        height: 33px;
        border-radius: 3px;
        font: 14px/22px var(--museo_rounded_300);
        background-color: var(--gray);
        color: var(--gray_bright);
        cursor: pointer;
        outline-style:none;
        box-shadow:none;
        border-color:transparent;

        option {
            background-color: var(--gray);
        }
    }

    .dropdown {
        position: absolute;
        top: 30px;
        padding: 10px 15px;
        margin-top: 7px;
        background: white;
        width: 125px;
        border-radius: 3px;
        font: 14px/22px var(--museo_rounded_300);
        z-index: 1100;

        li {
            margin-bottom: 7px;
        }

        li:last-child {
            margin-bottom: 0px;
        }
    }

    .button, .dropdown {
        float: left;
        background-color: white;
        border: 1px solid var(--green);
    }


    .button a, .dropdown a {
        color: var(--gray_bright);
    }

    .button {
        color: var(--green);
        padding-right: 30px;
        display: block;
        width: 150px;

        &:hover {
            color: var(--green);
        }
    }

    .button:after {
        content: var(--icon);
        font-size: 32px;
        position: absolute;
        top: 29%;
        right: 12%;
        transform: rotate(90deg);
        color: var(--green);
        font-weight: normal;
        font-family: var(--museo_rounded_100);
    }
}

.actions_wrapper {
    margin-top: 8px;
    width: 100%;

    tr.field select ~ .required {
        display: none;
    }

    select[multiple] {
        min-height: 150px;
    }

    .filter-regency {
        display: inline-block;
        margin-right: 10px;
        float: right;
    }

    .filter-regency select {
        height: 33px;
        font-size: 14px;
    }

    input:not([type="checkbox"]) {
        color: white;
        background-color: white;
        margin-right: 10px;
        max-width: 100px;
        font: 14px/15px var(--museo_rounded_300);
        height: 33px;
        width: 100%;
    }

    input[type="date"] {
        color: var(--gray_light);
        max-width: unset;
        border: 1px solid #e0e0e0;
        height: 26px;
        border-radius: 5px;
        padding: 3px 10px;
        width: 150px;
    }

    .right a:last-child {
        margin-right: 0px;
    }

    .right .button-dropdown-trigger {
        margin-right: 0px;
    }

    .actions {
        float: left;
        left: 0px;
    }

    .green .dropdown {
        background-color: white;
        border: 1px solid var(--green);

        a {
            color: var(--green);

            &:hover {
                font-family: var(--museo_rounded_300);
            }
        }
    }

    .search {
        width: 25%;
        display: table;
        padding-top: 0px;
        position: relative;

        button {
            padding: 0px;
            margin: 0px;
            height: 0px;
            border: none;
        }

        input {
            max-width: 100%;
            color: var(--gray_light);
            padding: 6px 10px 6px 35px;

            &::placeholder {
                color: var(--gray_bright);
            }
        }
    }

    .search-popup {
        width: 100%;
        display: table;
        padding-top: 0;
        position: relative;

        button {
            padding: 0;
            margin: 0;
            height: 0;
            border: none;
        }

        input {
            max-width: 100%;
            color: var(--gray_light);
            padding: 6px 10px 6px 35px;

            &::placeholder {
                color: var(--gray_bright);
            }
        }
    }

    .search-driver {
        width: 100%;
        display: table;
        padding-top: 0;
        position: relative;

        button {
            padding: 0;
            margin: 0;
            height: 0;
            border: none;
        }

        input {
            max-width: 100%;
            color: var(--gray_light);
            padding: 6px 10px 6px 35px;

            &::placeholder {
                color: var(--gray_bright);
            }
        }
    }
}

.actions_wrapper.long-wrapper {
    width: 100%;

    .search, input {
        width: 65%
    }

    .select-all, .deselect-all {
        color: #e86731
    }
}

.actions_wrapper.medium-wrapper {
    width: 100%;
    margin-top: 30px;

    .search, input {
        width: 100%
    }
}

.small-wrapper {
    width: 100%;

    .search, input {
        width: 50%
    }
}

.mutations-wrapper {
    margin-top: 50px;

    .inventory {
        vertical-align: initial;
    }
}

.icon-mglass {
    top: -2px;
    left: 12px;
    position:relative;
    display:inline-block;
    background: transparent;
    border-radius: 30px;
    height: 6px;
    width: 6px;
    border: 2px solid var(--gray_bright);

    &:after {
        content: "";
        height: 2px;
        width: 6px;
        background: var(--gray_bright);
        position:absolute;
        top:7px;
        left:5px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }
}

.button {
    color: white;
    padding: 8px 12px;
    background-color: var(--fleet_red);
    border: none;
    height: auto;
    line-height: normal;
    float: left;
    margin-right: 15px;
    font: 13px/15px var(--museo_rounded_300);
    position: relative;
    text-transform: none;

    &.main-bg {
        background-color: var(--fleet_red);
    }

    &.transparent-bg {
        background-color: transparent;
    }

    span {
        font: 18px/15px var(--museo_rounded_300);
    }

    &:hover {
        color: white;
    }

    label {
        margin: 0px;
    }
}

.button--no-margin {
    margin: 0px;
}

.button-dropdown-wrapper {
    position: relative;
    display: inline-block;

    .button-dropdown-toggle {
        display: none;
    }
    
    /* Dropdown menu */
    .button-dropdown-menu {
        position: absolute;
        top: 80%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.15s ease;
        z-index: 1000;
        overflow: hidden;
    }
    
    .button-dropdown-item {
        display: block;
        padding: 12px 16px;
        color: #333;
        text-decoration: none;
        font-size: 13px;
        border-bottom: 1px solid #f0f0f0;
        transition: background-color 0.15s ease;
        white-space: nowrap;
        
        &:last-child {
            border-bottom: none;
        }
    }
    
    .button-dropdown-toggle:checked ~ .button-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.ten.columns {
    width: 84.66666%;
}

.breadcrumb {
    color: white;
    margin-bottom: 20px;

    span {
        position: relative;
        margin: 0px 2px;
    }

    span:before {
        content: var(--icon);
        color: white;
        position: relative;
        top: 3px;
        font: 25px/22px var(--museo_rounded_300);
    }

    a {
        color: white;
    }
}

.columns.sidebar_wrapper {
    width: 18%;
    max-width: 240px;
    min-width: 180px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    transition: margin 0.3s ease;
    z-index: 5;
    margin: 0;
    box-sizing: unset;
    overflow-y: auto;

    &.sidebar-dropdown-active {
        padding-left: 180px;
    }

    .sidebar {
        padding: 20px 12px 50px;
        background-color: var(--gray);
        min-height: 100%;
        box-sizing: border-box;
    }

    input[type='checkbox'] {
        display: none;
    }

    .dropdown {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    input[type='checkbox']:checked ~ .dropdown {
        gap: 2px;
        max-height: 80px;
    }

    label {
        font: 14px/1.3 var(--museo_rounded_500);
        color: var(--black_text);
        cursor: pointer;
        width: 100%;
        margin: 0;
        position: relative;

        a, span {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--black_text);
            background-color: transparent;
            padding: 8px 30px 8px 10px;
            border-radius: 16px;
            /* Add transition for smoother hover effect */
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        &.active:not(.dropdown-active) {
            img,
            span:before {
                filter: brightness(0) invert(1);
            }

            a, span {
                color: white;
                background-color: var(--fleet_red);
            }
        }

        &:not(.active):hover,
        &.active.dropdown-active {
            a, span {
                background-color: var(--soft_gray_2);
            }

            .dropdown a {
                color: var(--black_text);
                background-color: transparent;

                &:hover {
                    background-color: var(--soft_gray_2);
                }
            }

            li.active a,
            li.active:hover a {
                color: white;
                background-color: var(--fleet_red);
            }
        }
    }

    input[type="checkbox"] ~ span:before {
        content:"";
        position: absolute;
        background: url('/static/img/new_sidebar/icon-collapse.svg') center no-repeat;
        background-size: 20px;
        display: inline-block;
        width: 20px;
        height: 20px;
        right: 10px;
        top: 10px;
        transform: rotate(180deg);
    }

    input[type="checkbox"]:checked ~ span:before {
        transform: rotate(0);
    }

    ul {
        margin: 8px 0 0;
        padding-left: 0;

        li {
            width: 100%;
            margin: 0;
            padding: 0;
        }

        a:before {
            content: '';
            position: relative;
            width: 24px;
            height: 24px;
            display: table;
            aspect-ratio: 1;
        }
    }

    .more-column-button {
        position: relative;
        line-height: 0;

        img {
            rotate: 180deg;
            transition: rotate 0.3s ease;
        }
    }

    .logo-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        padding: 0 0 0 12px;
    }

    .logo-icon {
        max-width: 85px;
        display: table;
        cursor: pointer;
        position: relative;
        transform: unset;
    }

    .icon {
        max-width: 24px;
    }

    .merchant-name {
        font: 14px/1.2 var(--museo_rounded_500);
        color: var(--fleet_red);
        display: block;
        margin: 22px 17px 12px;
    }

    .list {
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        row-gap: 2px;
    }
}

.menu-toggle, .backdrop {
    display: none;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding-top: 0;
}

.form__header {
        font: 24px/1.2 var(--museo_rounded_500);
    }

.form__subheader {
    font: 16px/1.2 var(--museo_rounded_500);
    color: var(--orange);
}

.form__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__row {
    display: grid;
    gap: 6px 14px;
    max-width: 600px;
    justify-items: flex-start;
    grid-template-columns: 200px 1fr;
    grid-template-areas: "label input" "label helptext";

    .errorlist {
        grid-area: errorlist;
    }
}

.form__row--error {
    grid-template-areas: "label input" "label helptext" "label errorlist";

    & > div input,
    & > div select,
    & > div input[type="checkbox"]:focus:not(:checked),
    & > div textarea {
        border-color: rgba(255, 103, 97, 0.6);
    }
}

.form__row--one-row {
    grid-template-areas: "label input" "label errorlist";
}

.form__row--disabled {
    opacity: .5;
    pointer-events: none;
}

.form__multiple-items {
    table {
        width: 100%;
        table-layout: fixed;

        input,
        textarea {
            width: 100%;
            margin-bottom: 0;
        }

        input[type="number"] {
            &::-webkit-outer-spin-button,
            &::-webkit-inner-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }
        }
    }

    th {
        padding-bottom: 0;
        border-bottom: none;
    }

    th:not(:last-child),
    td:not(:last-child) {
        padding-right: 5px;
    }

    th:not(:first-child),
    td:not(:first-child) {
        padding-left: 5px;
    }

    td:last-child {
        position: relative;
    }

    textarea {
        min-height: 0;
        margin-top: 6px;
        resize: none;
    }

    img {
        display: block;
        width: 20px;
        height: 20px;
    }

    button {
        padding: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.form__helptext {
    grid-area: helptext;
    font: 14px/1.2 var(--museo_rounded_300);
    color: var(--soft_gray);
}

.form__button {
    font: 16px/1.2 var(--museo_rounded_500);
    min-height: 40px;
    padding: 10px 22px;
    margin: 0;
    color: white;
    background-color: var(--yellow);
    border: none;
    height: auto;
    line-height: normal;
    float: left;
    margin-right: 15px;
    position: relative;
    text-transform: none;
}

.form__field_wrapper {
    width: 100%;
    display: inline-flex;
    line-height: 1;

    & > label {
        font: 16px/1.2 var(--museo_rounded_300);
        margin-bottom: 0; /* reset current styling */
        cursor: pointer;
        grid-area: label;
    }

    & > input {
        outline: none;
        border: none;
        font: 14px/1.5 var(--museo_rounded_300);
        border: 1px solid var(--gray_line);
        color: #000000;
        border-radius: 4px;
        box-sizing: border-box;
        margin-bottom: 0;
        grid-area: input;
        width: 100%;
    }

    & > textarea,
    & > .markdownx textarea {
        outline: none;
        border: none;
        font: 14px/1.5 var(--museo_rounded_300);
        border: 1px solid var(--gray_line);
        color: #000000;
        border-radius: 4px;
        box-sizing: border-box;
        margin-bottom: 0;
        resize: none;
        min-height: 150px;
        max-height: 300px;
        grid-area: input;
        width: 100%;
    }

    & > .errorlist {
        font: 12px/1.2 var(--museo_rounded_300);
        grid-area: errorlist;
        color: var(--red);
        margin: 0px;

        li {
            margin-bottom: 5px;
        }
    }

    & > select {
        appearance: none;
        background-image: url('/static/img/new_icons/dropdown-arrow-gray.webp');
        background-position: calc(100% - 5px) center;
        background-repeat: no-repeat;
        background-size: 18px;
        padding-right: 20px;
        cursor: pointer;
        border-radius: 4px;
        font: inherit;
        margin-bottom: 0; /* reset current styling */
        font: 14px/1.2 var(--museo_rounded_300);
        color: #000000;
        grid-area: input;
        width: 100%;

        &[multiple] {
            padding: 0;
            height: 132px;
            background-image: none;

            option {
                padding: 6px 10px;
                min-block-size: 0;
            }
        }
    }

    & > label,
    & > textarea,
    & > input,
    & > .awesomplete input,
    & > .markdownx textarea {
        margin-bottom: 0;
    }

    & > .awesomplete,
    & > .markdownx {
        width: 100%;
    }
}

/* START MODAL */

body .overlay{
    display: none;
    color: #5d5d5d;
    border-radius: 12px;

    label {
        font-weight: 400;
        height: 18px;
    }

    .items {
        width: 100%;

        .items-list {
            padding-top: 4px;
        }
    }

    button.button, button.button:hover {
        background-color: var(--orange);
        border: none;
        border-radius: 3px;
        margin-top: 22px;
        border-radius: 5px;
        font-size: 13px;
    }

    .button_done {
        float: right;
        width: 17%;
    }
}

.overlay .tabs {
    .label_wrapper label {
        color: #5d5d5d;
        font-size: 23px;
        padding: 10px 0px 28px;
    }

    .label_wrapper {
        border-bottom: 1px solid #E1E1E1;
        margin-bottom: 22px;
    }

    #tab1:checked ~ .label_wrapper label[for="tab1"],
    #tab2:checked ~ .label_wrapper label[for="tab2"] {

        &:after {
            content: '';
            width: 100%;
            background: #5d5d5d;
            height: 5px;
        };
    }
}

body.show-overlay .overlay-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
}

.close-overlay {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 0.5;
    cursor: pointer;

    &:hover {
        opacity: 1;
    }

    &:before, &:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 2px;
        background-color: var(--orange);
    }

    &:before {
        transform: rotate(45deg);
    }

    &:after {
        transform: rotate(-45deg);
    }
}

body.show-overlay .overlay {
    font-weight: normal;
    position: absolute;
    display: block;
    width: 900px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: white;
}

.overlay .overlay-content {
    padding: 36px 32px 20px;
}

.overlay-content .select_all {
    color: var(--orange);
    font-size: 21px;
    padding-bottom: 8px;

    label {
        display: initial;
        cursor: pointer;
    }
}

body.dashboard .overlay-title {
    color: #b2b2b2;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}

.overlay .row {
    margin-bottom: 4px;
    min-height: 30px;
}

.row_title {
    height: 32px;
}

.stores-search {
    position: relative;

    .awesomplete {
        display: inherit;
    }

    .icon-mglass {
        position: absolute;
        border-color: #5d5d5d;

        &:after {
            background-color: #5d5d5d;
        }
    }

    input {
        padding: 8px 33px;
        border-radius: 5px;
        width: 100%;
        max-width: 250px;
        font-size: 14px;
        border: 1px solid #5d5d5d;

        &:placeholder {
            color: #E1E1E1;
        }
    }
}

.overlay-content .items {
    height: 220px;
    overflow-y: scroll;

    ul[hidden] {
        width: 100%;
    }

    ul[hidden] li {
        margin-right: 4%;

        &:nth-child(3n+1) {
            margin-right: 0px;
        }

        &:last-child {
            margin-right: 0px;
        }
    }

    .columns {
        font-size: 14px;
        line-height: 20px;
    }

    input {
        position: relative;
        top: 3px;
        float: left;
        margin-right: 10px;
    }

    label {
        float: left;
        width: 85%;
        font-size: 14px;
        line-height: 18px;
        color: #5d5d5d;
        cursor: pointer;
        display: table;
    }
}

.checkbox_overlay, #select_all {
    margin-right: 5px;
}
/* END MODAL */

.logs-wrapper {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;

    .container {
        background: #fff;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
    }

    .header {
        text-align: center;
        min-height: 45px;
        padding: 20px 0;
    }

    .title {
        font-size: 18px;
        font-family: Arial, Helvetica, sans-serif;
        margin: 0;
    }

    .subtitle {
        font-size: 14px;
    }

    ol {
        padding: 0;
        margin: 0;
    }

    ol li {
        list-style: none;
    }

    li:hover:not(.divider) {
        background-color: #ffda9e;
    }

    .divider {
        font-weight: bold;
        margin-top: 30px;
        margin-bottom: 5px;
    }

    .menu-item {
        padding: 5px 0px 5px 15px;
        border-radius: 3px;
        margin-top: 5px;
    }

    a {
        color: #4d4d4d;
        outline: none;
    }

    .table {
        border-collapse: collapse;
    }

    .table thead tr {
        background-color: #FFC728;
        height: 50px;
    }

    .table th, .table td {
        font-family: Arial, Helvetica, sans-serif;
        color: #4d4f4d;
        padding: 8px;
        vertical-align: top;
    }

    .table th {
        font-weight: 600;
        vertical-align: middle;
        width: 25%;
    }

    .table th:nth-of-type(1), .table th:nth-of-type(2) {
        width: 12.5%
    }

    .table tbody tr:nth-child(odd) {
        background-color: rgba(231, 231, 231, .2);
    }

    .table tbody tr:nth-child(even) {
        background-color: rgb(252, 255, 206);
    }

    .table tr td {
        word-break: break-all;
    }
}

.search .awesomplete {
    input {
        margin-right: 0px;
        margin-bottom: 0px;

        &:focus, &:hover, &:active {
            border: 1px solid #D1D1D1;
        }
    }

    ul {
        line-height: 22px;
        margin: -2px 0px 0px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-top: 1px solid #D1D1D1;
        border-color: #D1D1D1;
        box-shadow: none;

        &:before {
            content: '';
            display: none;
        }

        li[aria-selected="true"] mark, li:hover mark, mark {
            color: var(--gray_light);
            font-weight: normal;
            background: transparent;
        }

        li {
            font-size: 14px;
            color: var(--gray_light);
            padding: 7px 12px;
            margin-bottom: 0px;
            border-bottom: 1px solid var(--gray);

            &:last-child {
                border-bottom: none;
            }
        }

        li[aria-selected="true"], li:hover, li:focus {
            color: var(--gray_light);
            background-color: var(--gray);
        }
    }
}

@media screen and (max-width: 1024px) {
    .content_wrapper {
        padding: 30px 5%;
    }

    .detail-report .header {
        padding: 65px 5% 3px;
    }

    .ten.columns {
        width: 100%;
    }

    /* START MAIN-MENU */
    .menu-toggle {
        display: table;
        position: absolute;
        top: 34px;
        right: 5%;
    }

    .sidebar_wrapper.main-menu {
        position: absolute;
        transition: right .5s ease, box-shadow 0.3s ease;
        width: 25%;
        right: -26%;
        top: 0;
        height: 100%;
        z-index: 999;
    }

    .main-menu .menu-close {
        position: absolute;
        right: 0;
        top: 0;
    }

    .sidebar_wrapper.main-menu:target,
    .sidebar_wrapper.main-menu[aria-expanded="true"] {
        right: 0%;
        position: fixed;
        box-shadow: 3px 0 12px rgba(0,0,0,.25);
    }

    .main-menu:target .menu-close,
    .main-menu[aria-expanded="true"] .menu-close {
        z-index: 1001;
    }

    .main-menu:target ul,
    .main-menu[aria-expanded="true"] ul {
        position: relative;
        z-index: 1000;
    }

    .main-menu:target + .backdrop,
    .main-menu[aria-expanded="true"] + .backdrop {
        position: fixed;
        display: block;
        content: "";
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 998;
        background: rgba(0,0,0,.6);
        cursor: default;
    }
    /* END MAIN-MENU */
}

@media screen and (max-width: 768px) {
    .sidebar_wrapper.main-menu {
        width: 30%;
        right: -31%;
    }

    .box_wrapper {
        td {
            font-size: 11px;
        }
    }
}

.photos {
    margin: 5px;
    float: left;
    position: relative;
    margin-right: 10px;

}

.photos:hover {
    opacity: 0.7;
}

h5 {
    font-size: 18px;
    line-height: 0.7;
}

.product_photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.check {
    display: none;
    width: 23px;
}

.image_product {
    cursor: pointer;
    box-sizing: border-box;
    border: 4px solid transparent;
    margin-bottom: 0;
    outline: 0;
}

.delete-image {
    position: absolute;
    right: -6px;
    top: -6px;
    z-index: 10;

    .delete-image-icon {
        width: 18px;
        height: 18px;
    }
}

.main_photo {
    form {
        max-width: 90%;
    }
}

.main_photo_top_button {
    margin-top: 25px;
    padding-top: 0px;
    border-bottom: 1px solid #D1D1D1;
    border-top: none;
    display: table;
    width: 100%;

    .errorlist {
        margin: 0px 20px;
    }

    button {
        margin-top: -8px;
    }
}

.image_product .check {
    position: absolute;
    color: #4A79A3;
    right: -6px;
    top: 12px;
}

.checked {
    border-color: var(--orange);
    width: 188px;
    height: 188px;

}

.checked .check {
    display: block;
}

.display-mini-map {
    width: 160px;
    height: 160px;
}

.add-location {
    width: 160px;
    height: 160px;
    border: var(--orange) solid 0.5px;
    background-image: url('/static/img/location-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90px 90px;
    position: relative;

    span {
        font-size: 15px;
        color: #E86731;
        position: absolute;
        bottom: 10px;
        width: 70%;
        left: 24px;
    }
}

.gmnoprint a, .gmnoprint span {
    display:none;
}
.gmnoprint div {
    background:none !important;
}

.edit-location {
    height: 25px;
    width: 25px;
    background-image: url('/static/img/editbutton.png');
    z-index: 1;
    position: absolute;
    margin-left: 145px;
    margin-top: -10px;
}

.address {
    width: 73%;
    float: left;
    margin-top: 10px;
}

.display-map-input {
    width:640px;
    height:320px;
}

input[type="text"].search-address, textarea.search-address, textarea.address-notes {
    margin: 10px 0 20px;
    width: 640px;
}

textarea.search-address {
    min-height: 60px;
}

.remove {
    padding-left: 16px;
    color: #FC3838;
    font-weight: normal;
    border: transparent;
    margin-bottom: 0;
    line-height: 10px;
    height: auto;

    span::before {
        position: absolute;
        margin-left: -20px;
        margin-top: 0;
        background-image: url('/static/img/x-icon.png');
        background-size: 13px 10px;
        width: 13px;
        height: 10px;
        content:"";
    }
}

.login {
    height: 100%;
    background-color: var(--gray);
    max-height: 100%;

    input {
        width: 100%;
        display: block;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid var(--gray_line);
        font-size: 16px;
        height: 35px;
        margin-bottom: 0;
        background-color: transparent;
        padding: 6px 0;
    }

    input:focus {
        border: none;
        border-bottom: 1px solid var(--gray_line);
    }

    input::placeholder {
        color: var(--soft_gray);
    }

    label {
        color: white;
        font-family: var(--museo_rounded_100);
        margin-top: 20px;
    }

    button {
        font: 16px/1.2 var(--museo_rounded_700);
        width: 100%;
        margin: 0;
        height: 44px;
        border: none;
        outline: none;
    }

    .errorlist {
        background: rgba(255, 255, 255, 0.5);
    }

    .messages li {
        background-color: white;
        color: var(--soft_gray);
        font: 14px/1.2 var(--museo_rounded_300);
        padding: 0;
    }

    li {
        color: var(--red);
        text-align: justify;
        background-color: transparent;
    }
}

.login__content {
    margin: 0px auto;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 350px;
    border: none;
    border-radius: 8px;
    padding: 30px;
    background-color: white;
}

.login__logo {
    display: block;
    height: 48px;
    margin: 0 auto 30px;
}

.login__title {
    text-align: center;
    font: 20px/1.2 var(--museo_rounded_300);
    margin: 20px 0 10px;
}

.login__subtitle {
    text-align: center;
    font: 16px/1.2 var(--museo_rounded_300);
    color: var(--black_text);
    margin-bottom: 20px;
}

.login__subtitle--small {
    font-size: 14px;
}

.login__subtitle--gray {
    color: var(--soft_gray);
}

.login__form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.login__icon {
    margin-bottom: 4px;
}
.login__icon--no-margin {
    margin: 0;
}

.login__icon--email {
    grid-area: icon;
}

.login__errors {
    grid-area: errors;

    ul li {
        margin-top: 5px;
    }
}

.login__field {
    display: grid;
    grid-template-columns: 15px 1fr;
    grid-template-areas: none;
    column-gap: 15px;
    align-items: center;

    img {
        display: block;
        width: 100%;
    }
}

.login__field--email {
    grid-template-columns: 18px 1fr;
    grid-template-areas: 'icon .' ' . errors';
}

.login__forgot-password {
    color: var(--red_text);
    margin: 15px 0 25px;
    font-size: 16px;

    &:hover {
        color: var(--red_text);
    }
}

.login__forgot-password--gray {
     color: var(--soft_gray);

        &:hover {
            color: var(--soft_gray);
            cursor: default;
        }
}

.forget_password h1 {
    font: 35px/20px var(--museo_rounded_100);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.field-extended {
    width: 100%;
    position: relative;

    .icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        margin: 0;
        left: 10px;
        border: none;

        &:focus {
            border: none;
        }

        & + input, & + select, & + textarea {
            padding-left: 38px;
        }
    }
    .icon--right {
        left: unset;
        right: 10px;

        & + input, & + select, & + textarea {
            padding-left: 0;
            padding-right: 38px;
        }
    }
}

.show-password-checkbox {
    appearance: none;
    background: center / contain url('/static/img/new_icons/icon-new-hide.webp') no-repeat;
    cursor: pointer;

    &:checked {
        background-image: url('/static/img/new_icons/icon-new-show.webp');
        transform: translateY(-55%);
    }
}

.form-checkbox {
    label {
        font: 16px/16px "MuseoSansRounded300Regular";
        position: relative;
        padding: 15px 0;
        margin: 0;
        overflow: hidden;
    }

    span {
        position: absolute;
        left: 24px;
        top: 18px;
        padding-bottom: 10px;
        border-bottom: 1px solid #E1E1E1;
        width: 98%;
    }

    input[type="checkbox"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeSpeed;
        width: 17px;
        height: 17px;
        margin: 0;
        margin-right: 1px;
        display: block;
        float: left;
        position: relative;
        cursor: pointer;
        background: #d1d3d4;
    }

    input[type='checkbox']:after {
        content: "";
        vertical-align: middle;
        text-align: center;
        line-height: 17px;
        position: absolute;
        cursor: pointer;
        height: 17px;
        width: 17px;
        left: 0;
        top: 0;
        font-size: 17px;
    }

    input[type='checkbox']:checked:after {
        background: var(--green);
        content: '\2714';
        color: #fff;
    }

    .level-0 span {
        font-size: 20px;
    }

    .level-1 {
        padding-left: 20px;

        span {
            left: 44px;
            max-width: 96%;
        }
    }

    .level-2 {
        padding-left: 40px;

        span {
            left: 64px;
            max-width: 94%;
        }
    }
}

.parent {
    margin-top: 35px;
}

.add_photo {
    width: 100%;

    form {
        max-width: 90%;
    }

    .button.orange {
        margin-top: 0px;
    }
    input[type="file"] {
        display: none;
    }

    .preview_image {
        float: right;
        position: relative;
        bottom: 50px;
    }

    img {
        object-fit: cover;
        width: 300px;
        height: 300px;
    }
}

.pagination {
    a {
        color: #FF7A00;
    }

    span {
        font-size: 22px;
        line-height: 0px;
        position: relative;
        top: 2px;
    }

    .prev {
        float: left;
    }

    .next {
        float: right;
    }
}

.filter {
    margin-right: 60px;
    select {
        -moz-appearance:none;
        -webkit-appearance:none;
        appearance:none;
    }

}

.filter:after {

    content: var(--icon);
    font-size: 32px;
    position: absolute;
    top: -16%;
    right: 12%;
    transform: rotate(90deg);
    color: var(--gray_bright);
    font-weight: normal;
    cursor: pointer;
    font-family: var(--museo_rounded_100);
}

.messages {
    margin-top: 0px;
    background: rgba(187, 210, 149, 0.5);
    color: #6D956D;
    text-align: center;

    .info {
        background: rgba(255, 205, 88, 0.5);
        color: #D78B00;
    }

    .error {
        background: rgba(255, 205, 184, 0.5);
        color: #BD796A;
    }

    li {
        padding: 7px;
    }

}

.no-margin {
    margin: 0 !important;
}

ul.messages {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.awesomplete-input {
    width: 60%;

    .awesomplete {
        width: 100%;
    }

    .input {
        width: 100%;
    }
}

.awesomplete-text {
    position: relative;
    width: 100%;

    /* awesomplete styling */
    .awesomplete {
        width: 100%;

        & > ul {
            line-height: 22px;
            margin: -2px 0 0;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            border-top: 1px solid var(--gray);
            border-color: var(--gray);
            box-shadow: none;
            max-height: 250px;
            overflow: auto;
            background-color: white;
            -ms-overflow-style: none;
            scrollbar-width: none;

            &::-webkit-scrollbar {
                display: none;
            }

            &:before {
                content: '';
                display: none;
            }

            li[aria-selected="true"] mark, li:hover mark, mark {
                color: var(--gray_light);
                font-weight: normal;
                background: transparent;
            }

            li {
                font-size: 14px;
                color: var(--gray_light);
                padding: 7px 12px;
                margin-bottom: 0;
                border-bottom: 1px solid var(--gray_line);

                &:last-child {
                    border-bottom: none;
                }
            }

            li[aria-selected="true"], li:hover, li:focus {
                color: var(--gray_light);
                background-color: var(--gray_line);
            }
        }
    }
}

.awesomplete-text--loading .awesomplete-text__loader {
    display: block;
}

.awesomplete-text--error .awesomplete-text__input,
.awesomplete-text--error .awesomplete-text__input[type="text"]:focus {
    border-color: var(--orange_light);
}

.awesomplete-text__loader {
    display: none;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translate(0, -50%);
}

.awesomplete-text__input {
    outline: none;
    border: none;
    font: 14px/1.5 var(--museo_rounded_300);
    border: 1px solid var(--gray_line);
    color: #000000;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 0;
    width: 100%;

    &[type="text"]:focus {
        border-color: var(--orange);
    }
}

form .result-wrapper .result-button {
    padding-right: 37px;
    cursor: default;
    margin-top: 6px;
}

.result-close {
    position: absolute;
    top: 10px;
    width: 30px;
    height: 23px;
    opacity: 0.4;
}

.result-close:hover {
    opacity: 1;
}

.result-close:before, .result-close:after {
    position: absolute;
    content: ' ';
    height: 15px;
    width: 2px;
    background-color: var(--green);
}

.result-close:before {
    transform: rotate(45deg);
}

.result-close:after {
    transform: rotate(-45deg);
}

.warning-settings{
    background: rgba(255, 205, 184, 0.5);
    padding: 5px 135px 0px 0px;
    font-size: 12px;
}

/* start filter */
.popup-filter {
    position: absolute;
    margin-top: 11px;
    margin-left: -10px;
    border-radius: 2px;
    font-size: 14px;
    background-color: white;
    text-align: left;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    padding: 12px 20px 12px 20px;
    z-index: 1001;

    &.scroll {
        max-height: 200px;
        overflow-y: auto;
    }
}

.popup-filter__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    align-items: center;

    label {
        display: flex;
        align-items: center;
        gap: 5px;

        input {
            margin-bottom: 3px;
            cursor: pointer;
        }
    }
}

.popup-filter__buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;

    button {
        margin: 0;
        font-size: 16px;
        height: 32px;
    }

    .clear-button {
        border: none;
        padding: 0;
        color: var(--red);
        text-transform: none;
    }
}

.popup-filter a {
    display: block;
    text-decoration: none;
    color: var(--gray_bright);
    cursor: pointer;
    padding: 6px 0px;
    font: 15px/18px var(--museo_rounded_300);
    text-transform: none;

    &.active {
        background-color: var(--gray);
    }

}

.popup-filter a:hover {
    color: var(--green);

}

.filter-wrapper {
    cursor: pointer;
}

/* end filter */

.is-hidden {
    display: none;

}

.image-filter {
    height: 12px;
    width: 12px;

}

.search-form {
    display: flex;
    gap: 11px;
}

.report-form__container {
    display: flex;
    flex-direction: column;

    input[type="file"] {
        margin-bottom: 0;
    }
}

.report-form__button {
    width: fit-content;
}

.button-dowload-csv {
    color: white;
    background-color: var(--green);
    border: 1px solid var(--green);
    height: 37px;
    margin-top: 20px;
}

.tabel-report {
    width: 35px;
}

.tabel-report-filter-map {
    width: auto;
}

.maps {
    height: 22px;
    margin-bottom: 0px;
    padding: 3px 0px;
    width: 105px;
}

.lines {
    margin-top: 0px;
    margin-bottom: 0px;
}

.operating-hours-table td {
    vertical-align: baseline;
    padding: 12px 15px 0px 15px;
    color: var(--gray_light);
    text-align: left;
}

.modifier {
    width: 73%;
    float: left;
    margin-top: 0px;
}

.tingle-modal {
    box-sizing:border-box;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 1000;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,.8);
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    transition: transform .2s ease;
}

.tingle-modal--noClose .tingle-modal__close, .tingle-modal__closeLabel {
    display: none;
}

.tingle-modal__close {
    position: fixed;
    top: 10px;
    right: 28px;
    z-index: 1000;
    padding: 0;
    width: 25px;
    border: none;
    background-color: transparent;
    color: #f0f0f0;
    font-size: 40px;
    font-family: monospace;
    line-height: 1;
    cursor: pointer;
    transition: color .3s ease;
}

.tingle-modal-box {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
    width: 35%;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    cursor: auto;
    transition: transform .3s cubic-bezier(.175,.885,.32,1.275);
    -ms-transform: scale(.8);
    transform: scale(.8);
    text-align: center;
}

.tingle-modal-box__content {
    padding: 20px 40px 10px;

    h1 {
        color: var(--gray_light);
        font: 17px/22px "MuseoSansRounded500Regular";
        text-transform: none;
    }
}

.tingle-modal-box__footer {
    padding: 20px 36px 32px;
    width: auto;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    cursor: auto;
}

.tingle-modal--visible .tingle-modal-box__footer {
    bottom:0;
}

.tingle-modal--visible {
    visibility: visible;
    opacity:1;
}

.tingle-modal--visible .tingle-modal-box {
    -ms-transform: scale(1);
    transform:scale(1);
}

.tingle-btn {
    display: inline-block;
    margin: 5px;
    padding: 10px 30px;
    background-color: transparent;
    border: 1px solid #bbb;
    box-shadow: none;
    font-family: var(--museo_rounded_700);
    font-size: 12px;
    vertical-align: middle;
    text-decoration: none;
    line-height: normal;
    cursor: pointer;
    transition: background-color .4s ease;
}

.tingle-btn--primary {
    color: white;
    background-color: #00AB76;
}

.tingle-btn--cancel {
    color: white;
    background-color: var(--red);
}

.items-report-box {
    display: flex;
    background-color: white;
    border: 2px solid #eaeaea;
    padding: 50px 50px 20px;
    justify-content: space-between;
    border-radius: 15px;

    .chart-wrapper {
        width: 60%;
    }

    .table-wrapper {
        width: 35%;

        .table-title {
            font-size: 18px;
            font-family: var(--museo_rounded_700);
        }

        table {
            tr, th, td {
                border: 0;
                padding: 5px 0px;
            }

            th {
                font-family: var(--museo_rounded_700);
                font-size: 14px;
            }

            td:nth-child(2), th:nth-child(2), td:nth-child(3), th:nth-child(3) {
                text-align: right;
            }
        }
    }
}

@media (max-width :540px) {
    .tingle-modal {
        top: 0;
        display: block;
        padding-top: 60px;
        width: 100%;
    }

    .tingle-modal-box {
        width: auto;
        border-radius: 0;
    }

    .tingle-modal-box__content {
        overflow-y: scroll;
    }

    .tingle-modal-box__footer .tingle-btn {
        display: block;
        float: none;
        margin-bottom: 5px;
        width: 100%;
    }

    .tingle-modal__close {
        top: 0px;
        right: 0px;
        left: 0px;
        display: block;
        width: 100%;
        height: 60px;
        border: none;
        background-color: #2c3e50;
        box-shadow: none;
        color: #fff;
        line-height: 55px;
    }

    .tingle-modal__closeLabel {
        display: inline-block;
        vertical-align: middle;
        font-size: 15px;
        font-family: var(--museo_rounded_300);
    }

    .tingle-modal__closeIcon {
        display: inline-block;
        margin-right: 15px;
        vertical-align: middle;
        font-size: 5px;
    }
}

@supports ((-webkit-backdrop-filter:blur(12px)) or (backdrop-filter:blur(12px))) {
    .tingle-modal {
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
    }

    @media (max-width :540px) {
        .tingle-modal {
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
        }
    }

    .tingle-content-wrapper {
        filter: none;
    }
}

.group {
    clear: both;
    margin-top: 0px;
}

.edit-table {
    width: 16px;
}

.search-popup-wrapper {
    .icon-mglass {
        z-index: 2;
    }

    #search_stores {
        width: 300px;
    }
}

.select2-selection__rendered {
    line-height: 35px !important;
}
.select2-container .select2-selection--single {
    height: 38px !important;
    border: 1px solid #e0e0e0;
}
.select2-selection__arrow {
    height: 35px !important;
}

.button-filter-area{
    color: white;
    background-color: var(--green);
    border: 1px solid var(--green);
    height: 37px;
    margin-top: 25px;
}

.dashboard {

    h3 {
        font-family: var(--museo_rounded_700);
        color: orange;
    }
}

#id_permissions {
    height: 100%;
}


.table-report-dashboard {

    tr {
        display: flex;
        justify-content: end;
    }

    td {
        vertical-align: top;
        padding: 12px 5px;
    }

    .button-dowload-csv {
        margin-top: 25px;
    }

    .date-report {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: left;
        font-size: 30px;
        color: white;
    }
}

.content-wrapper-dashboard {
    padding: 30px 5% 20px;
    box-sizing: border-box;

    table {
        margin-bottom: 10px;
        label{
            color: white;
        }
    }

    tr:last-child td {
        border-bottom: none;
    }

    .empty {
        font: 38px/42px var(--museo_rounded_100);
        padding: 65px;
        margin-top: 20px;
        width: 100%;
        background: white;
        display: table;
        border-radius: 5px;
        box-shadow: 0px 1px 3px #ccc;
        text-align: center;
        box-sizing: border-box;

        img {
            display: block;
            margin: 0 auto;
            padding-bottom: 15px;
        }
    }
}

.row.content-wrapper-dashboard {
    background-color: #0094e8;
    height: 250px;

    h3 {
        color: white;
        margin-left: 3px;
    }
}

.form-report .form-multi-select {
    height: 100px;
}

.tingle-modal-box {
    text-align: left;
}

.tingle-modal-box__title {
    font-size: 28px !important;
}

.tingle-modal-box__description {
    margin-top: 32px;
    margin-bottom: 10px;
}

.tingle-modal-box__footer {
    padding-top: 10px;
}

.exports-imports__download {
    color: var(--orange);
    font: 700 16px/24px var(--museo_rounded_700);
    margin-bottom: 16px;
    display: block;

    &:hover {
        color: var(--yellow);
    }
}

.tingle-btn--delete{
    background-color: #FF6761;
    color: #fff;
    border: none;
}

.tingle-btn--cancel{
    background-color: #a0a0a0;
    color: #fff;
    border: none;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.list-disc {
    list-style: disc;
}

.text-2xl {
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
}

.font-bold {
    font-weight: 700;
}

.flex {
    display: flex;

    &.items-center {
        align-items: center;
    }

    &.end {
        justify-content: flex-end;
    }
}

.deliveries-add {
    .payload-form > .header {
        box-shadow: initial;
        padding: 0;
        min-height: initial;
        margin: 20px 0 0 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .add {
        margin-top: 20px;
    }
}

.awesomplete ul {
    max-height: 50vh;
    overflow-y: scroll;
}

label.required::after {
    content: ' *';
    color: red;
}

.sso-login {
    display: flex;
    flex-direction: column;
    align-items: center;

    label {
        margin: 0;
    }

    /* Dropdown container */
    .dropdown-container {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Hide the checkbox */
    .dropdown-toggle {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    /* Dropdown select button */
    .dropdown-select {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        background-color: white;
        border: 1px solid var(--fleet_red);
        border-radius: 4px;
        cursor: pointer;
        color: var(--fleet_red);
        font: 16px/1 var(--museo_rounded_500);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    /* Arrow icon */
    .dropdown-arrow {
        transition: transform 0.2s;
    }

    .option:hover {
        color: var(--fleet_red);
    }

    /* Show dropdown when checkbox is checked */
    .dropdown-toggle:checked ~ .dropdown-options {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Rotate arrow when dropdown is open */
    .dropdown-toggle:checked ~ .dropdown-select .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Option links */
    .option {
        display: block;
        padding: 12px 16px;
        text-decoration: none;
        text-align: left;
        transition: background-color 0.2s;
        font: 16px var(--museo_rounded_500);
        color: var(--black_text);
    }
}

.sso_login__heading {
    font: 16px/1 var(--museo_rounded_300);
    color: var(--black_text);
    margin: 32px 0;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 25px;

    &::before, &::after {
        content: "";
        display: block;
        flex: 1;
        border-bottom: 1px solid var(--gray_line);
    }
}

.sso_login__buttons {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr;
}

.sso_login__button {
    border: 1px solid white;
    border-radius: 4px;
    text-align: center;
    padding: 5px 10px;
}

.dropdown-options {
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    background-color: white;
    margin-top: 0;
    box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.05);
    z-index: -1;
    opacity: 0;
    border: 1px solid var(--gray_line);
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}


.bulk-assign {
    display: flex;
    gap: 20px;
    

    h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .orders {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background-color: var(--gray);
        padding: 15px;
        border-radius: 5px;
        min-width: 200px;
    }

    .order-card {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background-color: white;
        padding: 15px;
        border-radius: 5px;
        width: 100%;
        box-sizing: border-box;
        cursor: grab;

        &:active {
            cursor: grabbing;
        }

        &:hover {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        p {
            margin: 0;
            font-size: 12px;
        }
    }

    .order-card__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .riders {
        display: flex;
        gap: 10px;
        height: fit-content;
    }

    .rider-card {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background-color: var(--gray);
        padding: 15px;
        border-radius: 5px;
        min-width: 200px;
    }
    .rider-card__drop-place {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .rider-card__drop-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .rider-card__drag-icon {
        width: 20px;
    }
}