.popup {
    position: fixed;
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.4117647059);
    top: 0;
    left: 0;
    font-family: 'Roboto Condensed', sans-serif;
}
.popup__container {
    position: relative;
    width: 95%;
    max-width: 26.875rem;
    border-radius: 0.625rem;
}
.popup__close {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.375rem 0.5rem;
}
.popup__close svg {
    width: 1.125rem;
    height: 1.125rem;
    color: #42490E;
}
.popup__content {
    padding: 1.5rem 1.25rem;
    text-align: center;
}
.popup__logo {
    width: 10rem;
    margin: 0 auto 1.25rem;
}
.popup__title {
    font-weight: 700;
    font-size: 1.875rem;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.9375rem;
}
.popup__subtitle {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4;
    text-align: center;
}
.popup__subtitle b {
    font-weight: bold;
}
.popup__product {
    max-width: 100%;
    max-height: 10.625rem;
    margin: 0 auto 0.625rem;
}
.popup__button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    width: 100%;
    max-width: 18.75rem;
    background: radial-gradient(100% 1603.14% at 0% 50.65%, #fdcc00 0%, #fffa45 50%, #fdcc00 100%);
    border: 0.0625rem solid #c49209;
    color: #42490e;
    border-radius: 0.625rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
    margin: 0 auto 1.25rem;
    text-decoration: none;
}
.popup__badges {
    width: 100%;
    max-width: 22.5rem;
    margin: 0 auto 0.9375rem;
}
.popup__rating {
    width: 60%;
    margin: 0 auto;
    max-width: 14.0625rem;
}
.popup--exit .popup__container {
    background-color: #FFFDDA;
    border: 0.25rem solid #059237
}
.popup--exit .popup__close {
    background-color: #CDE27E;
    color: #FFFDDA;
}
.popup--exit .popup__close svg {
    color: #059237;
}
.popup--exit .popup__title {
    color: #42490E;
}
.popup--exit .popup__subtitle {
    color: #42490E;
    margin-bottom: 0.875rem;
}
.popup--discount .popup__container {
    background: #c12d2d;
    background-size: contain;
    border: 4px solid #cc204e;
    color: #fff;
}
.popup--discount .popup__close {
    background-color: #d02250;
    color: #fff;
}
.popup--discount .popup__close svg {
    color: #fff;
}
.popup--discount .popup__subtitle {
    margin-bottom: 0.625rem;
}
.popup--discount .popup__button {
    color: #13090c;
}
.popup--discount .popup__badges {
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6.25rem;
}
@media (min-width: 992px) {
    .popup__container {
        width: 100%;
        max-width: 30rem;
    }
    .popup__logo {
        width: 12rem;
    }
    .popup__title {
        font-size: 2.375rem;
    }
    .popup__subtitle {
        font-size: 1.375rem;
    }
    .popup__product {
        max-height: 200px;
    }
    .popup__button {
        font-size: 1.5rem;
        max-width: 22.5rem;
    }
}
