main {
    margin: 0;
}

div.action-button {
    background-color: var(--wp--preset--color--thrifty-main);
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px 30px;
    color: white;
    border-radius: 999px;
    align-content: center;
    align-items: center;
    font-family: 'Avenir';
    cursor: pointer;
    transition: 0.18s;
    font-size: 1rem;
}

div.action-button:hover {
    background-color: var(--wp--preset--color--thrifty-main-highlight) !important;
}

div.action-button:active {
    background-color: var(--wp--preset--color--thrifty-main-pressed) !important;
}

div.action-button img.arrow {
    height: 18px;
}

/* HERO */

div.hero {
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

div.hero {
    display: flex;
    height: 50vh;
}

.hero-image {
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

div.hero-tag-container {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
}

div.her-tag-spacer {
    display: flex;
    width: 100%;
    padding-top: 130px;
}

.hero-tag {
    color: white;
    font-size: 4rem
}

@media (max-width: 600px) {
    .hero-tag {
        font-size: 3rem
    }

    div.her-tag-spacer {
        padding-top: 70px;
    }
}

/* Booking Form */

div.booking-form {
    background-color: #F8F1E9;
    box-sizing: border-box;
    padding: 100px;
    font-family: 'Avenir';
}

div.form-fields-container {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
}

div.form-field-set {
    width: 40%;
    min-width: min(100%, 300px, 300px);
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

div.form-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    gap: 10px;
}

div.form-field input{
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #D5D5D5;
    padding: 15px 15px;
}

div.select-wrapper{
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #D5D5D5;
    background-color: white;
}

div.form-field select {
    padding: 15px 15px;
    width: 100%;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
}

.select-wrapper {
    position: relative;
}

.select-wrapper > img {
    font-size: 1rem;
    top: 0;
    right: 18px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    object-fit: contain;
    width: 15px;
    pointer-events: none
}

div.submit-container {
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

div.form-action-button-big {
    background-color: #F36C3D;
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 15px 0;
    width: 450px;
    color: white;
    border-radius: 12px;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-family: 'Avenir';
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.18s;
}

div.form-action-button-big:hover {
    opacity: 50%;
}

div.form-action-button-big:active {
    scale: 0.956;
}

div.form-action-button-big img.arrow {
    height: 22px;
}

div.link-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

a.link-orange {
    color: #F36C3D;
    font-family: 'Avenir';
    font-size: 1.2rem;
    transition: 0.18s;
}

a.link-orange:hover {
    opacity: 50%;
}

@media (max-width: 600px) {
    div.booking-form {
        padding: 40px;
    }

    div.form-field-set {
        flex-wrap: wrap;
    }
}

/* Need Help */

div.need-help {
    padding-top: 100px;
    margin-bottom: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

div.need-help p.subtext {
    margin-top: 60px;
    font-family: 'Avenir';
    font-size: 1.2rem;
}

div.need-help-content {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    gap: 75px;
    align-items: center;
}

div.need-help-row {
    max-width: 80%;
}

div.need-help-row-main {
    display: flex;
    width: 100%;
}

div.need-help-row-sub {
    margin-left: 150px;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

div.need-help-row-sub a {
    text-decoration: none;
}

div.sub-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

div.need-help-row-sub div.tip {
    font-family: 'Avenir';
    color: #5A5A5A;
    font-size: 0.9rem;
    font-weight: 100;
}

div.need-help-row-main .index {
    color: var(--wp--preset--color--thrifty-main);
    min-width: 150px;
    font-size: 2rem;
}

div.need-help-row-main .text {
    text-align: left;
    font-family: 'Avenir';
    font-size: 1.1rem;
}

@media (max-width: 600px) {

    div.need-help-row {
        max-width: 100%;
    }

    div.need-help-row-main .index {
        min-width: 70px;
    }

    div.need-help-row-sub {
        margin-left: 70px;
    }
}

/* Booking */

div.booking {
    margin-top: 70px;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

div.booking p.subtext {
    margin-top: 60px;
    font-family: 'Avenir';
    font-size: 1.2rem;
}

div.booking p.subtext strong {
    font-weight: 600;
}

.home-action-button-big.check-availability {
    margin-top: 100px;
}