#cookie-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 28px;
    z-index: 5;
}

#cookie-box p {
    max-width: calc(100% - 118px - 25px);
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000;
}

#cookie-box p a {
    color: #000;
    text-decoration: underline;
    text-decoration-color: rgba(153, 9, 227, .5);
    transition: background-color .2s ease-in-out;
    cursor: pointer;
}

#cookie-box p a:hover {
    text-decoration-color: transparent;
}

.cookie-box__button {
    width: 118px;
    height: 36px;
    background-color: #9909e3;
    border-radius: 3px;
    line-height: 36px;
    text-align: center;
    margin-left: 25px;
    cursor: pointer;
    transition: background-color .2s ease-in-out;
}

.cookie-box__button:hover {
    background-color: #8101c2;
}

.popup-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(41, 21, 54, 0.9);
    overflow: auto;
    z-index: 15;
    transition: opacity .25s ease-in-out;
}

.popup-shop__wrapper,
.popup-channel__wrapper,
.popup-tariff__wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-wrapper:not(.animation-open) {
    opacity: 0;
    display: none;
}

.popup-container {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 567px;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 60px 52px;
}

.popup-container h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.02em;
    color: #202124;
    padding-bottom: 35px;
    border-bottom: 1px solid #e7e8eb;
    margin-bottom: 30px;
}

.popup-container > p,
.popup-container ol {
    font-size: 15px;
    line-height: 22px;
    color: #000;
}

ol {
    list-style: none;
    counter-reset: li;
    position: relative;
}

ol li {
    padding-left: 40px;
    margin: 10px 0;
    position: relative;
}

ol li:before {
    position: absolute;
    text-align: right;
    right: calc(100% - 30px);
    counter-increment: li;
    content: counters(li, ".") ". ";
}

.call-order-popup__form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    position: relative;
}

.call-order-popup__form:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #9909e3;
    transition: width 1.5s ease-in-out;
}

.call-order-popup__form.check-form__loading:after {
    width: 100%;
}

.input-block {
    position: relative;
}

#call-order-popup .input-block {
    margin: 5px 0;
}

.input-block input {
    width: 100%;
    height: 52px;
    background-color: #fff;
    border-radius: 3px;
    padding: 20px 13px 5px 13px;
    color: #000;
    font-size: 16px;
    border: 1px solid #e4eaec;
    outline: none;
}

.input-block label {
    position: absolute;
    color: #979797;
    font-size: 13px;
    line-height: 13px;
    top: calc((100% - 13px) / 2);
    left: 13px;
    transition: top .2s ease-in-out;
    pointer-events: none;
}

.input-block input:focus ~ label, .input-block input:valid ~ label, .input-block input:not(:placeholder-shown) ~ label {
    font-weight: 500;
    font-size: 11px;
    line-height: 11px;
    color: #9909e3;
    top: 10px;
}

.call-order-popup__form-call,
.channel-order-form,
.tariff-order__form-button {
    background-color: #9909e3;
    border-radius: 3px;
    height: 52px;
    width: 100%;
    line-height: 52px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color .2s ease-in-out;
}

.call-order-popup__form-call:hover,
.channel-order-form:hover,
.tariff-order__form-button:hover {
    background-color: #8101c2;
}

.popup-close {
    width: 55px;
    height: 55px;
    background-color: #9909e3;
    border-radius: 3px;
    transition: background-color .2s ease-in-out;
    cursor: pointer;
    position: absolute;
    left: -26px;
    top: 105px;
    text-align: center;
}

.popup-close:hover {
    background-color: #8101c2;
}

.popup-close span {
    position: relative;
    display: inline-block;
    width: 31px;
    height: 2px;
    background-color: #fff;
}

.popup-close span:first-child {
    top: 15px;
    transform: rotate(45deg);
}

.popup-close span:last-child {
    top: -2px;
    transform: rotate(-45deg);
}

.popup-shop__container {
    position: relative;
    max-width: 797px;
    min-height: 550px;
    padding: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.popup-shop__left {
    max-width: 245px;
    width: 100%;
}

.popup-shop__image {
    width: 221px;
    height: 221px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-shop__image img {
    max-width: 100%;
}

.popup-shop__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #000;
    margin-top: 5px;
}

.popup-shop__description {
    font-size: 16px;
    line-height: 21px;
    color: #000;
    margin-top: 15px;
}

.popup-shop__price {
    font-weight: 500;
    font-size: 46px;
    line-height: 56px;
    color: #202124;
    margin-top: 20px;
}

.popup-shop__price span {
    font-size: 18px;
    line-height: 25px;
}

.popup-shop__right {
    max-width: 360px;
    width: 100%;
    color: #000;
}

.popup-shop__right hr {
    margin: 20px 0 30px;
}

.popup-shop__right .check-form__checkbox label a {
    color: #9909E3;
}

.popup-channel__container,
.popup-tariff__container {
    position: relative;
    max-width: 900px;
    min-height: 490px;
    display: flex;
    padding: 0;
    flex-direction: row;
    justify-content: space-between;
    color: #000;
}

.popup-channel__left,
.popup-tariff__left {
    display: flex;
    flex-direction: column;
    max-width: 410px;
    padding: 60px;
    width: 100%;
}

.popup-channel__title,
.popup-tariff__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #000;
    margin-top: 5px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E7E8EB;
}

.popup-channel__left .channel__block-price,
.popup-tariff__left .tariff__block-price {
    margin: auto 0 0 0;
    font-size: 46px;
}

.popup-channel__right,
.popup-tariff__right {
    max-width: 480px;
    width: 100%;
    padding: 60px;
    border-left: 1px solid #E7E8EB;
}

.popup-channel__right h3,
.popup-tariff__right h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.02em;
    color: #202124;
    padding-bottom: 20px;
    border-bottom: 1px solid #E7E8EB;
    margin-bottom: 30px;
}

.popup-channel__right > p,
.popup-tariff__right > p {
    font-size: 15px;
    line-height: 22px;
    color: #000000;
}

.popup-channel__right .check-form__checkbox label a,
.popup-tariff__right .check-form__checkbox label a {
    color: #9909E3;
}

#channel-popup .input-block,
#tariff-popup .input-block {
    margin: 5px 0;
}

.popup-tariff__info {
    margin: 25px 0;
}

.popup-tariff__info li {
    font: 400 14px/21px Montserrat;
    color: #000000;
    margin-bottom: 5px;
}

.popup-tariff__info li:first-letter {
    color: #9909E3;
}

.popup-tariff__rates.house-rates__setting {
    margin: 0;
    padding: 0;
    border: none;
}

.popup-tariff__rates.house-rates__setting .house-rates__info {
    display: none;
}
