@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Nunito:wght@400;500;600;700&display=swap');

/* Fonts */
h1, h2, h3, h4, h5, h6, a {
    font-family: 'Nunito', sans-serif;
    margin: 0;
}

p, span, li, label, input, textarea, select, button, td, th {
    font-family: Inter, sans-serif;
    margin: 0;
}

body {
    margin: 0;
}

.hidden {
    display: none !important;
}

.systems-booking {
    background-color: #F4F4F4;
    min-height: 100dvh;
}

.systems-booking-container {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    background-color: #fff;
    padding: 50px;
    border-radius: 0.5rem;
    border-bottom: 4px solid;
    border-image: linear-gradient(to right, #F37620 10%, #EA3593 30%, #28388D 50%, #07803F 70%, #FFCA1B 90%) 5;
}

/* Max Width */
.max-w-xl {
    max-width: 36rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Flex */
.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

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

.items-start {
    align-items: flex-start;
}

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

/* Position */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    inset: 0px;
}

/* Spacing */
.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.gap-1 {
    gap: 0.625rem;
}

.gap-2 {
    gap: 0.75rem;
}

.pt-1 {
    padding-top: 0.625rem;
}

.pt-2 {
    padding-top: 0.75rem;
}

/* Height */
.h-7 {
    height: 4rem;
}

/* Container */
.container {
    max-width: 100%;
}

/* Text */
.text-center {
    text-align: center;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

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

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

.uppercase {
    text-transform: uppercase;
}

.underline {
    text-decoration: underline;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.text-green {
    color: #07803F;
}

.text-red {
    color: #EE3E29;
}

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

/* Border Radius */
.rounded-lg {
    border-radius: 0.5rem;
}

/* Components */
.evolve-logo {
    width: 90px;
    height: 30px;
    object-fit: contain;
    object-position: center;
}

.rewind {
    width: 15px;
    height: 15px;
    object-fit: contain;
    object-position: center;
}

.rewind-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

button.green-button, a.green-button {
    background-color: #07803F;
    color: #fff;
}

a {
    text-decoration: none;
    color: #000;
}

.button {
    width: 100%;
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding: 1rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    border-radius: 0.5rem;
    border: 0;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    background-color: #F4F4F4;
    color: #000;
    box-sizing: border-box;
}

.multi-select-button {
    padding: 1rem 0 !important;
    position: relative;
}

.multi-select-button span {
    padding-inline: 2.5rem;
}

.button:hover {
    transform: scale(1.02);
}

.answer-button {
    position: relative;
    padding-inline: 2.5rem;
}

.answer-button.active {
    transform: scale(1.02);
    background-color: #07803F;
    color: #fff;
}

.answer-button.active::before, .multi-select-button input:checked+span::before {
    content: url('../images/checkmark.svg');
    display: inline-block;
    position: absolute;
    width: 18px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    vertical-align: middle;
}

.next-button {
    color: #07803F;
    font-size: 1.25rem;
    margin-left: auto;
    margin-top: 1rem;
    background-color: transparent;
    border: 0;
    font-size: 1.125rem;
    line-height: 1.75rem;
    cursor: pointer;
}

.next-button svg {
    height: 14px;
}

label.multi-select-button input:checked+span {
    background-color: #07803F;
    color: #fff;
}

/* 2xl */
@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
        padding: 50px;
    }
}

/* xl */
@media ( (min-width: 1280px) and (max-width: 1535px) ) {
    .container {
        max-width: 1280px;
        padding: 50px;
    }
}

/* lg */
@media ( (min-width: 1024px) and (max-width: 1279px) ) {
    .container {
        max-width: 1024px;
        padding: 50px;
    }
}

/* md */
@media ( ( min-width: 768px ) and ( max-width: 1023px ) ) {
    .container {
        max-width: 640px;
        padding: 20px;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 2.875rem;
    }

    h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    h4 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    h5 {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    h6 {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

/* sm */
@media ( max-width: 767px ) {
    .container {
        max-width: 640px;
        padding: 20px;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 2.875rem;
    }

    h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    h4 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    h5 {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    h6 {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

@media ( max-width: 1023px ) {
    .systems-booking-container {
        padding: 30px;
    }
}

@media ( max-width: 768px ) {
    .systems-booking-container {
        padding: 30px 20px;
    }
}