.popup {
    display: none;
    position: fixed;
    left: 0rem;
    top: 0rem;
    width: 100%;
    height: 100%;
    z-index: 1000000000000;
    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: 6rem 0rem;
    box-sizing: border-box;
}

.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: 1rem;
}

.popup__content {
    max-width: 44rem;
    width: 100%;
}

.popup__close {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: 0px;
    top: -3rem;
    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;
}

.popup__close:hover {
    opacity: .56;
}

.popup__content.--base {
    max-width: 60rem;
}

a.js-popup {
    color: var(--color__text-1);
    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%;
}

.order__form {
    margin-top: 4em;
}



/* media */

    @media screen and (max-width: 1680px) {

    }

    @media screen and (max-width: 1440px) {

    }

    @media screen and (max-width: 1366px) {

    }

    @media screen and (max-width: 1359px) {

    }

    @media screen and (max-width: 1199px) {

    }

    @media screen and (max-width: 1024px) {


    }

    @media screen and (max-width: 991px) {

    }

    @media screen and (max-width: 768px) {

    }

    @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;
        }
    }