/* =========================================================
   BloemEasy - byBloemi
   ========================================================= */


/* =========================================================
   PAGINA & BASISLAYOUT
   ========================================================= */

.bloemeasy-page-content {
    width: 100%;
    margin-top: 8px;
}

.bloemeasy-section {
    width: 100%;
    padding: 0 0 60px;
}

.bloemeasy-formulier {
    width: 100%;
    max-width: 100%;
}


/* =========================================================
   BLOEMEASY INTRO
   ========================================================= */

.webflow-content > .title + .bloemeasy-page-content {
    margin-top: 8px;
}

.bloemeasy-intro {
    width: 100%;
    max-width: 100%;
    margin: 0 0 65px;
}

.bloemeasy-intro h1 {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 24px;
}

.bloemeasy-intro p {
    width: 100%;
    max-width: 100%;
}


/* =========================================================
   ORANJE LIJN ONDER BLOEMEASY HOOFDTITEL
   ========================================================= */

.bloemeasy-intro > .divider {
    margin-top: 0;
    margin-bottom: 30px;
}


/* =========================================================
   ORANJE LIJN BIJ OVER / QUOTE-TEXT PAGINA'S
   ========================================================= */

.quote-text h2:first-of-type {
    position: relative;
    margin-bottom: 38px;
}

.quote-text h2:first-of-type::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    margin-top: 18px;
    background-color: #f47a20;
}


/* =========================================================
   FORMULIER SECTIES
   ========================================================= */

.bloemeasy-step {
    width: 100%;
    margin-bottom: 65px;
}

.bloemeasy-step-content {
    width: 100%;
}

.bloemeasy-step-content h3 {
    margin-top: 0;
    margin-bottom: 28px;
}

.bloemeasy-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}


/* =========================================================
   BOEKETTEN & GELEGENHEDEN
   ========================================================= */

.bloemeasy-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 35px;
}

.bloemeasy-card-choice {
    display: flex;
    align-items: center;
    min-height: 90px;
    padding: 24px 28px;
    background-color: #f5f5f5;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.bloemeasy-card-choice:hover {
    background-color: #efefef;
}

.bloemeasy-card-choice:has(input:checked) {
    background-color: #faf8fc;
    box-shadow: inset 0 0 0 2px #5b2d90;
}

.bloemeasy-card-choice input {
    flex: 0 0 auto;
    margin: 0 18px 0 0;
}

.bloemeasy-card-choice span {
    display: block;
}


/* =========================================================
   OPTIONELE BOEKETFOTO'S
   ========================================================= */

.bloemeasy-bouquet-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bloemeasy-bouquet-image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.bloemeasy-bouquet-card .bloemeasy-card-choice {
    flex: 1;
}


/* =========================================================
   JA / NEE KEUZES
   ========================================================= */

.bloemeasy-inline-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
}

.bloemeasy-inline-choices label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.bloemeasy-inline-choices input {
    margin: 0 8px 0 0;
}


/* =========================================================
   TWEE KOLOMMEN
   ========================================================= */

.bloemeasy-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
}

.bloemeasy-full {
    grid-column: 1 / -1;
}


/* =========================================================
   INVOERVELDEN
   ========================================================= */

.bloemeasy-formulier .input {
    width: 100%;
    min-height: 68px;
    margin: 0;
    padding: 18px 28px;
    border: 0;
    border-radius: 0;
    background-color: #f5f5f5;
    color: #444;
    font-family: Lato, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    box-sizing: border-box;
}

.bloemeasy-formulier .input:focus {
    outline: 1px solid #5b2d90;
}

.bloemeasy-formulier .input::placeholder {
    color: #929292;
    opacity: 1;
}

.bloemeasy-formulier textarea.input {
    min-height: 220px;
    resize: vertical;
}


/* =========================================================
   DATE INPUT
   ========================================================= */

#bloemeasy-bezorgdatum {
    max-width: 100%;
}


/* =========================================================
   CONDITIONELE VELDEN
   ========================================================= */

.bloemeasy-conditional {
    display: none;
    margin-top: 20px;
}


/* =========================================================
   VISUEEL VERBORGEN LABELS
   ========================================================= */

.bloemeasy-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* =========================================================
   HULPTEKSTEN
   ========================================================= */

.bloemeasy-help {
    margin-top: 18px;
    margin-bottom: 0;
}

.bloemeasy-help a {
    color: #5b2d90;
    text-decoration: underline;
}


/* =========================================================
   BEZORGRESULTAAT
   ========================================================= */

.bloemeasy-delivery-result {
    margin-top: 20px;
}


/* =========================================================
   AANVULLENDE INFORMATIE
   ========================================================= */

#bloemeasy-opmerking {
    width: 100%;
}


/* =========================================================
   BESTELLINGSSAMENVATTING
   ========================================================= */

.bloemeasy-summary {
    width: 100%;
    margin-bottom: 30px;
}

.bloemeasy-summary-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.bloemeasy-summary-row span,
.bloemeasy-summary-row strong {
    text-align: left;
}

.bloemeasy-summary-row strong {
    justify-self: start;
}

.bloemeasy-total {
    margin-top: 8px;
    font-size: 20px;
}


/* =========================================================
   AKKOORD CHECKBOX
   ========================================================= */

.bloemeasy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 28px 0;
}

.bloemeasy-checkbox input {
    flex: 0 0 auto;
    margin-top: 6px;
}

.bloemeasy-checkbox span {
    display: block;
}

.bloemeasy-checkbox a {
    color: #5b2d90;
    text-decoration: underline;
}


/* =========================================================
   BETALEN
   ========================================================= */

.bloemeasy-submit {
    margin-top: 10px;
}

.bloemeasy-payment-note {
    margin-top: 18px;
    margin-bottom: 0;
}


/* =========================================================
   FOUTMELDINGEN
   ========================================================= */

.bloemeasy-form-error {
    margin: 20px 0;
    padding: 16px 20px;
    background-color: #f5f5f5;
}

.bloemeasy-error-icon {
    display: inline-block;
}


/* =========================================================
   ADRESSTATUS
   ========================================================= */

.bloemeasy-address-status {
    margin-top: 14px;
    font-size: 15px;
}

.bloemeasy-address-status.is-error {
    color: #b42318;
}

#bloemeasy-bezorg-straat[readonly],
#bloemeasy-bezorg-plaats[readonly] {
    cursor: default;
}


/* =========================================================
   BLOEMEASY BEDANKPAGINA
   ========================================================= */

.bloemeasy-result {
    width: 100%;
    max-width: 100%;
}

.bloemeasy-result > h1 {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 24px;
}

.bloemeasy-result > .divider {
    margin-top: 0;
    margin-bottom: 30px;
}

.bloemeasy-result-summary {
    width: 100%;
    margin: 35px 0;
    border-top: 1px solid #e8e8e8;
}

.bloemeasy-result-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.bloemeasy-result-row span,
.bloemeasy-result-row strong {
    text-align: left;
}

.bloemeasy-result-row strong {
    justify-self: start;
}

.bloemeasy-result .button {
    margin-top: 10px;
}

.bloemeasy-payment-check {
    margin-top: 24px;
    margin-bottom: 0;
    opacity: 0.7;
    font-style: italic;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 991px) {

    .bloemeasy-step {
        margin-bottom: 55px;
    }
}


/* =========================================================
   MOBIEL
   ========================================================= */

@media screen and (max-width: 767px) {

    .bloemeasy-section {
        padding-bottom: 50px;
    }

    .bloemeasy-intro {
        margin-bottom: 45px;
    }

    .bloemeasy-step {
        margin-bottom: 50px;
    }

    .bloemeasy-choice-grid,
    .bloemeasy-columns {
        grid-template-columns: 1fr;
    }

    .bloemeasy-full {
        grid-column: auto;
    }

    .bloemeasy-card-choice {
        min-height: 76px;
        padding: 20px;
    }

    .bloemeasy-formulier .input {
        min-height: 62px;
        padding: 16px 20px;
        font-size: 16px;
    }

    .bloemeasy-formulier textarea.input {
        min-height: 180px;
    }

    .bloemeasy-summary-row {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }

    .bloemeasy-summary-row strong {
        margin-top: 0;
        text-align: left;
    }

    .bloemeasy-inline-choices {
        gap: 20px;
    }

    .bloemeasy-result-summary {
        margin: 30px 0;
    }

    .bloemeasy-result-row {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }

    .bloemeasy-result-row strong {
        margin-top: 0;
        text-align: left;
    }
}
/* =========================================================
   BLOEMEASY VALIDATIE
   ========================================================= */

.bloemeasy-client-error {
    margin-top: 8px;
    color: #b42318;
    font-size: 14px;
    line-height: 20px;
}

.bloemeasy-error-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-right: 4px;
    border-radius: 50%;
    background-color: #b42318;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

.bloemeasy-formulier .input.bloemeasy-is-invalid {
    outline: 2px solid #b42318;
    outline-offset: -2px;
}

.bloemeasy-choice-grid.bloemeasy-is-invalid {
    padding: 4px;
    outline: 2px solid #b42318;
    outline-offset: 2px;
}

.bloemeasy-checkbox.bloemeasy-is-invalid {
    padding: 12px;
    outline: 2px solid #b42318;
}

.bloemeasy-general-validation-error {
    margin-bottom: 30px;
}
/* =========================================================
   BLOEMEASY BOEKETFOTO'S
   ========================================================= */

.bloemeasy-bouquet-choice {
    overflow: hidden;
}

.bloemeasy-bouquet-choice > input + .bloemeasy-bouquet-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    overflow: hidden;
}


/* Foto */

.bloemeasy-bouquet-image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.bloemeasy-bouquet-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Naam en prijs */

.bloemeasy-bouquet-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 14px;
    text-align: center;
}

.bloemeasy-bouquet-info strong {
    display: block;
}

.bloemeasy-bouquet-price {
    display: block;
}


/* =========================================================
   MOBIEL
   ========================================================= */

@media screen and (max-width: 767px) {

    .bloemeasy-bouquet-info {
        padding: 14px 10px;
    }

}