:root {
    --primary-color: #11709b;
    --primary-dark: #0e5e82;
    --primary-light: #ECF6FD;
    --color-danger: #b60d10;
    --color-warning: #b65f0f;
    --color-success: #0e816c;
    --color-info: #5a67bf;
    --bg-primary: #fefefe;
    --bg-disabled: #dfdfdf;
    --bg-outline: #efefef;
    --bg-danger: #F1E8E9;
    --font-family-default: lato-regular;
    --fs-300: 0.75rem;
    --fs-400: 0.875rem;
    --fs-500: 1rem;
    --fs-600: 1.125rem;
    --fs-700: 1.5rem;
    --text-white: #fefefe;
    --text-contrast: #1D1617;
    --text-primary: #11709b;
    --text-disabled: #5C5C5C;
    --system-colours-danger-dark: #B60D10;
    --text-black-high-emphasis: #514f4f;
    --clr-neutral-100: #242424;
    --clr-neutral-200: #666666;
    --clr-neutral-300: #5C5C5C;
    --clr-neutral-600: #DFDFDF;
    --clr-neutral-700: #fefefe;
    --background-color: #fefefe;
    --text-black-medium-emphasis: #666666;
    --card-border: 1px solid transparent;
}

.h1 {
    font-family: lato-bold !important;
    font-size: var(--fs-700);
    font-style: normal;
    font-weight: 700;
    line-height: 2.25rem;
}

.h2 {
    font-family: lato-bold !important;
    font-size: var(--fs-600);
    font-style: normal;
    font-weight: 700;
    line-height: 1.6875rem;
}

.subtitle {
    font-family: lato-regular;
    font-size: var(--fs-500);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}

.p {
    font-family: lato-medium !important;
    font-size: var(--fs-500);
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
}

.p-bold {
    font-family: lato-bold !important;
    font-size: var(--fs-500);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
}

.caption {
    color: var(--text-black-high-emphasis);
    font-family: lato-medium;
    font-size: var(--fs-400);
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
}

.caption-bold {
    font-family: lato-bold;
    font-size: var(--fs-400);
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
}

.caption-small {
    font-family: lato-medium;
    font-size: var(--fs-300);
    font-style: normal;
    font-weight: 500;
    line-height: 1.125rem;
}

.text-danger {
    color: var(--system-colours-danger-dark) !important;
}

.text-black {
    color: var(--text-black-high-emphasis) !important;
}

.logout-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    margin-right: 10px;
}

button {
    border: none;
    border-radius: 2rem;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--text-white);
}

    button.btn-small {
        padding: 0.875rem;
    }

    button:active {
        background-color: var(--primary-dark);
    }

    button:disabled, button[disabled] {
        background-color: var(--clr-neutral-600);
        color: var(--text-disabled);
    }

    button.btn-secondary {
        color: var(--primary-color);
        border: 1px solid var(--primary-color, #11709B);
        background: var(--clr-neutral-700, #FEFEFE);
        box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
    }

        button.btn-secondary:active {
            background: var(--primary-light, #ECF6FD);
        }

        button.btn-secondary:disabled, button.btn-secondary[disabled] {
            border: 1px solid #DFDFDF;
            background-color: var(--clr-neutral-700);
            color: var(--text-disabled);
        }

    button.btn-text {
        border: none;
        padding: 0;
        background-color: transparent;
        color: var(--primary-color);
        font-size: 1.2rem;
        font-weight: bold;
    }

        button.btn-text:disabled, button.btn-text[disabled] {
            color: var(--text-disabled);
        }

    button.btn-warning {
        padding: 0.875rem;
        border-radius: 2rem;
        color: var(--color-danger);
        border: 1px solid var(--color-danger);
        background: var(--clr-neutral-700);
        box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
    }

        button.btn-warning:active {
            background: var(--bg-danger);
        }

        button.btn-warning:disabled, button.btn-warning[disabled] {
            border: 1px solid #DFDFDF;
            background-color: var(--clr-neutral-700);
            color: var(--text-disabled);
        }

    button.btn-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 2.8125rem;
        border: 1px solid var(--primary-color);
        background: var(--clr-neutral-700);
        padding: 0;
        width: 2rem;
        height: 2rem;
        color: var(--primary-color);
    }

        button.btn-icon:active {
            background: var(--primary-light, #ECF6FD);
        }

        button.btn-icon:disabled, button.btn-icon[disabled] {
            border-color: #DFDFDF;
        }

            button.btn-icon:disabled > svg > path, button.btn-icon[disabled] > svg > path {
                fill: var(--text-disabled);
            }

.card {
    padding: 1rem;
    border-radius: 1.25rem;
    background: var(--bg-primary);
    box-shadow: 0px 4px 8px 0px rgba(29, 22, 23, 0.07);
    -webkit-appearance: none;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(29, 22, 23, 0.07);
    border: 1px solid transparent;
}

.card-selected {
    border: 1px solid var(--primary-color);
}

select {
    margin-block: 10px;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
    outline: none;
    background-position: right 5rem top 50%;
    border: 1px solid transparent;
}

    select:focus {
        border: 1px solid var(--primary-color);
    }

    select:disabled {
        background: var(--bg-disabled);
        color: var(--text-disabled);
    }

    select:required:invalid {
        color: var(--text-black-medium-emphasis, #666);
    }

    select option[value=""][disabled] {
        display: none;
    }

    select option {
        color: var(--clr-neutral-100);
    }

    select::-ms-expand {
        display: none;
    }

.toggle {
    position: relative;
    display: inline-block;
    width: 3.5rem !important;
    height: 1.75rem;
}

    .toggle input {
        opacity: 0;
        width: 0;
        height: 0;
        outline: none;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 34px;
}

    .slider:before {
        border-radius: 50%;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 1.25rem;
        width: 1.25rem;
        left: 0.25rem;
        bottom: 0.25rem;
        background-color: white;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

input:checked + .slider {
    background-color: #11709B;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(1.625rem);
    -ms-transform: translateX(1.625rem);
    transform: translateX(1.625rem);
}

input[type=radio] {
    -webkit-appearance: none;
    appearance: none;
    height: 1.75rem;
    width: 1.75rem;
    padding: 0.5rem !important;
    border-radius: 100%;
    margin: 0.25rem;
    border: 1px solid var(--clr-neutral-300);
    align-self: center;
}

    input[type=radio]:checked {
        border-radius: 100%;
        border: 1px solid var(--primary-color);
    }

        input[type=radio]:checked::before {
            position: relative;
            content: url("data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20id%3D%22Checkbox%22%3E%20%3Cpath%20id%3D%22Vector%22%20d%3D%22M16%204C9.33333%204%204%209.33333%204%2016C4%2022.6667%209.33333%2028%2016%2028C22.6667%2028%2028%2022.6667%2028%2016C28%209.33333%2022.6667%204%2016%204ZM22.2667%2012.9333L14.9333%2020.9333C14.6667%2021.2%2014.2667%2021.3333%2014%2021.3333C13.7333%2021.3333%2013.3333%2021.2%2013.0667%2020.9333L9.73333%2017.3333C9.2%2016.8%209.33333%2016%209.86667%2015.4667C10.4%2014.9333%2011.2%2015.0667%2011.7333%2015.6L14%2018.1333L20.4%2011.2C20.9333%2010.6667%2021.7333%2010.6667%2022.2667%2011.0667C22.8%2011.4667%2022.8%2012.4%2022.2667%2012.9333Z%22%20fill%3D%22%2311709B%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fsvg%3E");
            top: 3px;
            right: 11px;
            transform: scale(120%);
        }

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

    .form-group > * {
        width: 100%;
    }

.form-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: auto;
}

    .form-actions > * {
        flex: 1;
    }

.form-group-check {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

label {
    color: var(--text-black-medium-emphasis, #666);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3125rem;
}

input,
select {
    position: relative;
    display: flex;
    padding: 1rem;
    align-items: center;
    gap: 0.5rem;
    align-self: stretch;
    border-radius: 1rem;
    background: var(--surface-white, #FEFEFE);
    box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
    -webkit-appearance: none;
    -webkit-box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
    height: 55px;
    border: 1px solid transparent;
    outline: none;
}

    input:not(.input-validation-error):hover,
    select:not(.input-validation-error):hover {
        border: 1px solid var(--primary-color);
    }

    input:not(.input-validation-error):not(.error):focus,
    select:not(.input-validation-error):not(.error):focus {
        border: 1px solid var(--primary-color) !important;
    }

    input[type=date],
    select[type=date] {
        display: block;
    }

        input[type=date]::-webkit-calendar-picker-indicator {
            background: transparent;
            bottom: 0;
            color: transparent;
            cursor: pointer;
            height: auto;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            width: auto;
        }

.stripe-input {
    padding: 0.75rem;
    background-color: #fff;
    border-radius: 5px;
    transition: background 0.15s ease, border 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 400;
    color: #30313d;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 4px;
}

.stripe-label {
    margin-bottom: 0.25rem;
    font-size: 0.93rem;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #30313d;
    font-size: 0.875rem;
    font-weight: 400;
}

.error,
.invalid-feedback {
    margin-top: 0.25rem;
    color: #df1b41;
    font-size: 0.93rem;
}

input.error,
.input-validation-error {
    outline: none;
    color: #df1b41;
    border-color: #df1b41 !important;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02), 0 0 0 1px #df1b41;
}

::-webkit-input-placeholder { /* WebKit browsers */
    text-transform: none;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    text-transform: none;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    text-transform: none;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    text-transform: none;
}

::placeholder { /* Recent browsers */
    text-transform: none;
}

.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    padding: 1rem;
    align-items: center;
    z-index: 1;
    left: auto;
    right: 1rem;
}

    .dropdown-content.show {
        padding: 0rem;
        box-shadow: 0px 10px 40px 0px rgba(29, 22, 23, 0.07);
        display: flex;
        flex-direction: column;
        width: 13.75rem;
        align-items: stretch;
    }

        .dropdown-content.show > button {
            padding: 1rem;
            display: flex;
            flex-direction: row;
            gap: 0.5rem;
            align-items: center;
        }

#modal-container {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    opacity: 0.3;
    background: #757575;
    z-index: 40000;
    top: 0;
    left: 0;
    overflow: hidden;
}

.modal {
    display: none;
    top: 0;
    position: fixed;
    z-index: 40001;
    width: 100vw;
    justify-content: stretch;
    align-items: center;
    height: 100vh;
    height: 100dvh;
}

    .modal > .card {
        margin-inline: 1rem;
    }

.modal-open {
    overflow: hidden;
}

.modal-close {
    overflow: inherit;
    height: auto;
}

.modal-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border: none;
    gap: 1.25rem;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 0.75rem;
    align-items: flex-start;
}

.modal-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

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

.modal-body {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    max-height: 80%;
}

.space-modal {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-modal {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

@font-face {
    font-family: "lato-bold";
    src: url("../fonts/lato-bold.woff2") format("woff2");
}

@font-face {
    font-family: "lato-medium";
    src: url("../fonts/lato-medium.woff2") format("woff2");
}

@font-face {
    font-family: "lato-regular";
    src: url("../fonts/lato-regular.woff2") format("woff2");
}

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

.validation-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#validation-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.logo {
    max-width: 200px;
    margin-inline: auto;
    margin-bottom: 32px;
}

#login-form {
    padding: 1rem 2rem 1rem 2rem;
}

#validation-form {
    padding: 1rem 2rem 1rem 2rem;
}

.send-code {
    margin-top: 32px;
    width: 100%;
}

.enter-code-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard {
    display: flex;
    flex-direction: column;
    height: calc(100svh - 60px);
    height: 100%;
}

.logo {
    max-width: 200px;
    max-height: 150px;
    margin-bottom: 32px;
    margin-inline: auto;
    border-radius: 20px;
    margin-top: 16px;
}

.title {
    margin-inline: auto;
}

.remaining-hours {
    margin-inline: auto;
    margin-block: 24px;
}

#dashboard-form {
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem 1rem 2rem;
    height: 100%;
}

.lot-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow-y: auto;
    padding-left: 0;
    padding-bottom: 1rem;
}

.lot-card {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    height: auto;
}

    .lot-card > .lot-card-body {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-grow: 1;
    }

        .lot-card > .lot-card-body > .lot-card-title {
            display: flex;
            align-self: center;
            flex-direction: column;
        }

.select-lot {
    max-width: 844px;
    height: calc(100svh - 60px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem 1rem 2rem;
}

.select-lot-section {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.duration-section {
    flex: 1;
}

.lot-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow-y: auto;
    padding-left: 0;
    padding-bottom: 1rem;
}

.lot-card {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    height: auto;
}

    .lot-card > .lot-card-body {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-grow: 1;
    }

        .lot-card > .lot-card-body > .lot-card-title {
            display: flex;
            align-self: center;
            flex-direction: column;
        }

#btn-next {
    width: 100%;
}

.hour-picker {
    width: 240px;
    height: 194px;
    margin: 20px auto;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: y mandatory;
    background: #fff;
    text-align: center;
    position: relative;
}

    .hour-picker::-webkit-scrollbar {
        display: none;
    }

    .hour-picker ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .hour-picker li {
        font-size: 1rem;
        padding: 20px 0;
        scroll-snap-align: center;
        opacity: 0.4;
        transition: transform 0.2s, opacity 0.2s;
    }

        .hour-picker li.active {
            font-weight: bold;
            font-size: 1.2rem;
            opacity: 1;
            transform: scale(1.1);
            text-wrap: nowrap;
        }

        .hour-picker li.spacer {
            opacity: 0;
            pointer-events: none;
        }

#plate-form {
    display: flex;
    flex-direction: column;
    height: calc(100svh - 60px);
    padding: 1rem 2rem 1rem 2rem;
}

.plate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-box {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
    align-items: center;
}

    .filter-box > input {
        width: 100%;
    }

#addButton {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
}

    #addButton > svg {
        height: 32px;
        width: 32px;
        transform: scale(1.5);
    }

.plate-list {
    display: flex;
    gap: 1.25rem;
    flex-direction: column;
    overflow-y: auto;
    padding-bottom: 16px;
    flex: 1;
}

.vehicle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

    .vehicle .card-title {
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
        flex-grow: 1;
    }

#upsert-plate {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 8px;
    padding: 1rem 2rem 1rem 2rem;
    height: calc(100svh - 60px);
}

.remember-vehicle {
    margin-top: 8px;
}

.summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 1rem 2rem 1rem 2rem;
    height: calc(100svh - 60px);
}

.logo {
    max-width: 200px;
    margin-inline: auto;
    margin-bottom: 32px;
}

.summary-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

    .summary-row > button {
        display: flex;
        flex-direction: row;
        gap: 0.25rem;
        align-items: normal;
    }

.summary-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

    .summary-wrapper > .card {
        display: flex;
        gap: 0.5rem;
        flex-direction: column;
    }

#confirm-text-btn {
    width: 100%;
    margin-top: 16px;
}

.complete {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logo {
    max-width: 200px;
    margin-inline: auto;
    margin-bottom: 32px;
}

.title {
    text-align: center;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
    color: var(--text-black-high-emphasis);
}

.container {
    padding: 0;
    margin: 0;
    height: 100svh;
    background-color: var(--background-color);
    width: 100%;
}

.fill-space {
    flex: 1;
}

.header {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--surface-outline, #EFEFEF);
    height: 60px;
}

    .header img {
        max-width: 50px;
    }

    .header div {
        text-align: right;
    }

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