.popup {
    display: none;
    position: fixed;
    left: 0rem;
    top: 0rem;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.popup__shade {
    position: fixed;
    left: 0rem;
    top: 0rem;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.64);
}
.popup__wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    /* overflow: auto; */
    padding: 4rem 0rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

.popup__content {
    background-color: white;
    position: relative;
    z-index: 2;
    padding: 3.5rem 5rem;
    font-size: 0.875rem;
    color: rgba(46, 46, 46, 0.80);
    padding-bottom: 3rem;
    border-radius: .5rem;
}

.popup__content {
    max-width: 38rem;
    width: 100%;
    padding: 2.5rem 3rem;
}

.popup__close {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: -3rem;
    top: -0rem;
    /* background-image: url(../../img/element__close--white.svg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.5rem;
    cursor: pointer;
    transition: all ease .24s;
    opacity: 1;
}

.popup__close {
    right: 0;
    top: -3rem;
} 

.popup__close:hover {
    opacity: 0.5;
}

.popup__content.--base {
    max-width: 60rem;
}

a.js-popup {
    color: var(--color__dark);
    text-decoration: none;
}


.order__row {
    width: calc(100% + 2rem);
}

.order__coll {
    flex: 1;
    margin-right: 2rem;
}

.order__coll.--mw-33 {
    max-width: calc(33% - 2rem);
    margin-top: 2.25rem;
}

.order__btn {
    width: 100%;
    max-width: 100%;
    height: 4.5rem;
    font-weight: 800 !important;
}

.order__form {
    margin-top: 2em;
}
.popup__content.--min {
    max-width: 40rem;
}


/* media */

    @media screen and (max-width: 640px) {  
        .popup__content {
            max-width:  100% !important;
            padding: 2rem;
        }

        .popup__wrap {
            padding: 6rem 1rem;
        }

        .order__coll {
            flex: inherit;
            width: 100%;
            max-width: 100% !important;
        }
    }

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

    }

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

    }

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

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

    }

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

    }

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

    }

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

    }

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

    }