html {
    height: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: 'Museo Sans', Arial, sans-serif;
}
.popup {
    max-width: 640px;
    max-height: 360px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.popup__wrapper {
    width: 62%;
    height: 100%;
    max-height: 360px;
    position: relative;
}
.popup__img {
    height: 100%;
    position: absolute;
    /*top: 0;*/
    /*left: 0;*/
    width: 100%;
}
.loading {
    position: absolute;
    background: url('../img/loading.svg') no-repeat 50% 100% / 100%;
    animation: spinner 0.6s linear infinite;
    display: inline-block;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    margin-left: -30px;
    margin-top: -30px;
}
@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.popup__info {
    width: 38%;
    height: 100%;
    max-height: 360px;
    padding: 0 2% 2%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
.popup__text {
    font-size: 11px;
    max-height: 130px;
    overflow-y: auto;
    margin: 15px 0;
    display: none !important;
}
.popup__title {
    text-transform: uppercase;
    font-size: 18px;
    width: 100%;
    font-family: "adineuePRO-Black", Arial, sans-serif;
}
.popup__price {
    font-size: 18px;
    width: 100%;
}
.popup__button {
    font-size: 28px;
    color: #fff;
    background: #000;
    padding: 15px;
    text-transform: uppercase;
    display: inline-block;
    box-sizing: border-box;
    margin-bottom: 15px;
    cursor: pointer;
    text-decoration: none;
}

.popup__button:hover {
    outline: none;
}

.popup__button:active {
    outline: none;
}

.popup__button:focus {
    outline: none;
}

@media (max-width: 580px){
    body {
        width: 100%;
        height: 100%;
    }

    .popup {
        top: 0;
        left: 0;
        transform: translate(0, 0);
    }

    .popup__wrapper {
        width: 100%;
    }
    .popup__info {
        width: 100%;
        max-height: auto;
    }
    .popup__text {
        font-size: 13px;
        display: none !important;
    }

    .popup__title {
        font-size: 22px;
    }
    .popup__price {
        font-size: 22px;
    }
}