/* =========================================================
   NANCYS CHECKOUT UPGRADES V0.11.5
   ========================================================= */


/*
|--------------------------------------------------------------------------
| Vorname / Nachname
|--------------------------------------------------------------------------
*/

.nancys-name-fields {

    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        14px;

    width:
        100%;
}


.nancys-name-field {

    display:
        flex;

    flex-direction:
        column;

    gap:
        7px;
}


.nancys-name-field label {

    font-weight:
        800;

    color:
        #142334;
}


.nancys-name-field input {

    width:
        100%;
}


/*
|--------------------------------------------------------------------------
| Liefertage
|--------------------------------------------------------------------------
*/

.nancys-delivery-date-select {

    width:
        100%;

    min-height:
        52px;

    padding:
        0 15px;

    border:
        1px solid
        rgba(43, 53, 63, 0.18);

    border-radius:
        13px;

    background:
        #fff;

    color:
        #142334;

    font:
        inherit;
}


.nancys-delivery-date-hint {

    margin:
        7px 0 0;

    color:
        #687789;

    font-size:
        12px;

    line-height:
        1.4;
}


/*
|--------------------------------------------------------------------------
| Lieferadresse in Bestellübersicht
|--------------------------------------------------------------------------
*/

.nancys-review-address {

    display:
        flex;

    flex-direction:
        column;

    gap:
        3px;

    margin:
        12px 18px;

    padding:
        15px;

    border:
        1px solid
        rgba(18, 68, 112, 0.10);

    border-radius:
        14px;

    background:
        #f7f9fb;

    color:
        #142334;
}


.nancys-review-address strong {

    margin-bottom:
        4px;

    color:
        #084c87;

    font-size:
        14px;
}


.nancys-review-address span {

    font-size:
        13px;

    line-height:
        1.4;
}


.nancys-review-delivery-date {

    margin-top:
        7px;

    padding-top:
        7px;

    border-top:
        1px solid
        rgba(18, 68, 112, 0.10);

    font-weight:
        700;
}


@media (max-width: 760px) {

    .nancys-name-fields {

        grid-template-columns:
            1fr;

        gap:
            12px;
    }


    .nancys-delivery-date-select {

        min-height:
            54px;

        font-size:
            16px;
    }


    .nancys-review-address {

        margin:
            10px 12px;

        padding:
            14px;
    }

}
