/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.delivery-popup--visible {
    overflow: hidden;
}

.delivery-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0;
    pointer-events: none;
    transition: 1s ease opacity;

    --green: #25a24e;
    --spacer: 20px;
}

.delivery-popup a {
    color: inherit;
}

.delivery-popup--show {
    opacity: 1;
    pointer-events: auto;
}

.delivery-popup__container {
    width: 1000px;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(16,50,52,0.7);
    padding: 50px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 5px 20px -5px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 5px 20px -5px rgba(0,0,0,0.5);
    box-shadow: 0px 5px 20px -5px rgba(0,0,0,0.5);
    overflow-y: auto;
}

.delivery-popup__row {
    display: flex;
}

.delivery-popup__primary { 
    width: 60%;
}

.delivery-popup__side { 
    width: 40%;
}

.delivery-popup__footer { 
    font-family: 'SantEliaRough-Bold';
    color: var(--green);
    font-size: 2em;
    text-align: center;
    padding-top: 50px;
}
.delivery-popup__footer-info {
    color: #fff;
    font-family: "Gotham SSm A", "Gotham SSm B", "Arial";
    font-size: 16px;
    margin-top: 1rem;
    margin-bottom: 0px;
}
.delivery-popup__thanks {
    line-height: 1;
    margin-bottom: 0;
}

.delivery-popup__heading {
    font-family: 'SantEliaRough-Bold';
    font-size: 3em;
    line-height: 1;
    margin-bottom: 15px;
}

.delivery-popup__sub-heading {
    font-family: 'SantEliaRough-Bold';
    font-size: 1.75em;
}

.delivery-popup__dates,
.delivery-popup__dates-sub {
    text-transform: uppercase;
    font-family: "Gotham SSm A", "Gotham SSm B", "Arial";
    font-weight: 600;
}

.delivery-popup__dates {
    margin-bottom: 0;
    font-size: 1.3em;
}

.delivery-popup__dates-sub {
    font-size: 1em;
}

.delivery-popup__heading2 {
    font-family: "Gotham SSm A", "Gotham SSm B", "Arial";
    text-transform: uppercase;
    font-weight: 600;
    color: var(--green)
}

.delivery-popup__divider,
.delivery-popup__hr {
    border-color: var(--green);
    border-style: solid;
    border-width: 0;
}

.delivery-popup__divider {
    border-left-width: 1px;
    margin: 0 var(--spacer);
}

.delivery-popup__hr {
    border-top-width: 1px;
    margin: var(--spacer) 0;
}

.delivery-popup__menus {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    line-height: 1;
    margin: 0;
}

.delivery-popup__menus a {
    font-family: 'SantEliaRough-Bold';
    font-size: 3em;
    color: #fff;
}

.delivery-popup__menus a:first-child {
    padding-right: 10px;
}

.delivery-popup__options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.delivery-popup__options img {
    margin: 20px auto;
}

.delivery-popup__close {
    appearance: none;
    background: none;
    border: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    padding: 0;
}

.delivery-popup__close img {
    width: 100%;
    height: 100%;
}

.delivery-popup__options {
    display: flex;
}

.delivery-popup__option {
    min-width: 30%;
}

.delivery-popup__option-item {
    font-size: 18px;
    font-family: "Gotham SSm A", "Gotham SSm B", "Arial";
    font-weight: 600;
    margin: 0;
}

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

    .delivery-popup__row {
        flex-direction: column;
    }

    .delivery-popup__divider {
        border-top-width: 1px;
        border-left-width: 0;
        margin: var(--spacer) 0;
    }

    .delivery-popup__primary,
    .delivery-popup__side { 
        width: 100%;
    }
}

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

    .delivery-popup {
        font-size: 14px;
    }
    
}

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

    .delivery-popup {
        font-size: 12px;
    }
    
}