* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
    font-size: 16px;
    color: #000;
}

.wrapper {
    max-width: 1340px;
    width: 95%;
    margin: 0 auto;
}

img {
    display: block;
}

a {
    text-decoration: none;
    display: block;
}

button {
    cursor: pointer;
}

.header {
    padding: 16px 0;
    border-bottom: 1px solid #DCDCDC;
    background-color: #fff;
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
}

.header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: auto;
    margin-right: auto;
    gap: 2px;
}

.header__logo-img:last-child {
    max-width: 80px;
    margin-top: 5px;
}

.switch-languages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    right: 0;
    top: calc(50% - 12px);
}

.switch-languages__item {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #e8e8e8;
    -webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
}
.switch-languages__link .switch-languages__item {
    border-bottom: 1px solid transparent;
}

.switch-languages__link .switch-languages__item:hover {
    color: #00A0E3;
    border-bottom: 1px solid #00A0E3;
}

.arrow-tr {
    color: #e8e8e8;
}

.switch-languages__active {
    margin-right: 4px;
    color: #00A0E3;
}

.main {
    padding: 90px 0;
    padding-top: 0;
    overflow: hidden;
}

.first-screen {
    position: relative;
    margin-bottom: 120px;
}

.first-screen::before,
.first-screen::after {
    content: "";
    position: absolute;
    z-index: -1;
}

.first-screen::before {
    background-image: url('../images/vector-l.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 75px;
    height: 600px;
    left: 0;
    top: 500px;
}
.first-screen::after {
    background-image: url('../images/vector-r.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 75px;
    height: 500px;
    right: 0;
    top: 0;
}

.first-screen__content {
    /* max-width: 700px;
    margin: 0 auto;
    text-align: center; */
    /* margin-bottom: 90px; */
    margin-bottom: -50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.first-screen__text {
    max-width: 640px;
}

.section__title {
    font-weight: normal;
    font-size: 45px;
    line-height: 100%;
    color: #00A0E3;
    margin-top: 0;
    margin-bottom: 30px;
}

.section__title .section__title--fw {
    font-weight: bold;
}

.section__text {
    font-weight: normal;
    font-size: 24px;
    line-height: 34px;
    color: #191919;
    margin-top: 0;
    margin-bottom: 0;
}

.section__text--accent {
    color: #00A0E3;
}

.section__text:not(:last-child) {
    margin-bottom: 15px;
}

.form__prod {
	flex-wrap: wrap;
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    -webkit-box-shadow: 0px 2px 8px rgb(0 0 0 / 5%);
            box-shadow: 0px 2px 8px rgb(0 0 0 / 5%);
    border-radius: 5px;
    padding: 51px 116px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.form__prod.collapse {
    position: relative;
}

.form__item {
    position: relative;
}

.form__item:not(:last-child) {
    margin-bottom: 30px;
}

.form__prod-left {
    max-width: 422px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.form__label-title {
    font-size: 30px;
    line-height: 35px;
    color: #000000;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.form__label {
    max-width: 422px;
    width: 100%;
}

.form__input {
    border: 1px solid #00A0E3;
    border-radius: 6px;
    height: 40px;
    padding: 6px 12px;
    width: 100%;
}

.form__input.form__input--imei.invalid,
.form__input.form__input--imei.invalid:-webkit-autofill {
    border: 1px solid #C22525;
    -webkit-box-shadow: 0 0 0px 100px rgb(254 166 163 / 40%) inset;
            box-shadow: 0 0 0px 100px rgb(254 166 163 / 40%) inset;
}

.form__input.form__input--imei.success,
.form__input.form__input--imei.success:-webkit-autofill {
    background-color: rgb(178 255 164 / 40%);
    border: 1px solid green;
    -webkit-box-shadow: 0 0 0px 100px rgb(178 255 164 / 40%) inset;
            box-shadow: 0 0 0px 100px rgb(178 255 164 / 40%) inset;
}

.form__price,
.form__label-check,
.form__error-message {
    max-width: 380px;
    margin-top: 10px;
    font-size: 18px;
    line-height: 21px;
}

.form__price {
    color: #373737;
}

.form__label-check,
.form__error-message {
    color: #C22525;
    height: 21px;
}

.form__label--calendar {
    position: relative;
}

.form__label--calendar::after {
    content: "";
    position: absolute;
    background-image: url('../images/calendar.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 24px;
    top: calc(50% - 12px);
    right: 8px;
    cursor: text;
}

.question {
    margin-left: 18px;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #00A0E3;
    background-image: url('../images/question.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    cursor: pointer;
}

.form__prod-right {
    position: relative;
}

.question-info {
    background: #00A0E3;
    max-width: 350px;
    border-radius: 5px;
    position: absolute;
    top: -85px;
    right: -10px;
    padding: 16px 50px;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    opacity: 0;
    -webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
}

.question-info .bold {
    font-weight: 600;
}

.question-info.show {
    opacity: 1;
}

.question-info::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: -26px;
    border: 14px solid transparent;
    border-top: 14px solid #00A0E3;
}

.simcard {
    background-image: url('../images/simcard-shadow-lg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 655px;
    height: 660px;
    margin-right: 15px;
    /* padding-top: 37px;
    padding-bottom: 43px; */
}

.simcard.mob {
    display: none;
}
.simcard.desk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.pop-up {
    background: rgba(5, 68, 94, 0.29);
    -webkit-backdrop-filter: blur(19px);
            backdrop-filter: blur(19px);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 111;
    opacity: 0;
    visibility: hidden;
}

.pop-up__container {
    background: #FFFFFF;
    border-radius: 5px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 42px;
    padding-right: 42px;
    max-width: 350px;
    width: 100%;
    position: absolute;
    top: -100%;
    left: calc(50% - 175px);
    -webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
}

.pop-up__close {
    border: none;
    background-color: transparent;
}

.pop-up__close img {
    pointer-events: none;
}

.pop-up__close.arrow {
    position: absolute;
    padding: 0;
    right: 5px;
    top: 5px;
}

.pop-up__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #00A0E3;
    margin-bottom: 30px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.pop-up__text .bold {
    font-weight: 600;
}

.pop-up__close.btn {
    background-color: #00A0E3;
    border-radius: 5px;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    padding: 10px;
}

.form__link {
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
    color: #00A0E3;
    text-align: center;
    margin-bottom: 60px;
}

.form__link--close {
    position: absolute;
    right: 15px;
    top: 15px;
    margin-bottom: 0;
}

.form__link--close img {
    pointer-events: none;
}

.form__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
}

.form__bottom-left,
.form__bottom-right {
    max-width: 616px;
    width: 100%;
}

.form__bottom-left .form__prod {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 32px 96px;
}

.form__bottom-right .form__prod {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 47px 36px;
}

.form__bottom-right .form__prod .form__label-title {
    margin-bottom: 0;
}

.form__total-price {
    font-weight: bold;
    font-size: 72px;
    line-height: 84px;
    text-align: center;
    letter-spacing: 0.015em;
    color: #00A0E3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 30px;
}

.form__total-price h2 {
    font-weight: bold;
    font-size: 72px;
    line-height: 84px;
    margin-bottom: 0;
}

.form__submit {
    background: #00A0E3;
    -webkit-box-shadow: 0px 0px 8px rgb(0 160 227 / 63%);
            box-shadow: 0px 0px 8px rgb(0 160 227 / 63%);
    border-radius: 7px;
    border: none;
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    color: #FFFFFF;
    padding: 11px;
    width: 100%;
    -webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
}

.form__submit:disabled {
    cursor: default;
    -webkit-filter: grayscale(.5);
            filter: grayscale(.5);
    -webkit-box-shadow: 0px 0px 8px transparent;
            box-shadow: 0px 0px 8px transparent;
}
.form__submit:disabled:hover {
    -webkit-box-shadow: 0px 0px 8px transparent;
            box-shadow: 0px 0px 8px transparent;
}

.form__submit:hover {
    -webkit-box-shadow: 0px 0px 18px rgb(0 160 227 / 100%);
            box-shadow: 0px 0px 18px rgb(0 160 227 / 100%);
}

.form__bottom-left .form__prod:first-child {
    margin-bottom: 21px;
}

.form__bottom-left .form__label-title {
    margin-bottom: 18px;
}

.simple {
    margin-bottom: 120px;
}

.simple .section__title {
    text-align: center;
    margin-bottom: 60px;
}

.simple__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
}

.simple__item {
    max-width: 400px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.simple__image {
    max-width: 180px;
    max-height: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.simple__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    color: #000000;
    margin-top: 45px;
    margin-bottom: 20px;
}

.simple__text {
    font-weight: 300;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    letter-spacing: 0.015em;
    color: #191919;
    margin-bottom: 0;
}

.device-list {
    margin-bottom: 90px;
    position: relative;
}

.device-list::before,
.device-list::after {
    content: "";
    position: absolute;
    z-index: -1;
}

.device-list::before {
    background-image: url('../images/vector-l2.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100px;
    height: 550px;
    left: 0;
    bottom: -300px;
}

.device-list::after {
    background-image: url('../images/vector-r2.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100px;
    height: 1200px;
    right: 0;
    top: 0;
}

.device-list .section__title {
    max-width: 834px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 90px;
}

.device-list__container,
.success-page__data {
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    -webkit-box-shadow: 0px 2px 8px rgb(0 0 0 / 5%);
            box-shadow: 0px 2px 8px rgb(0 0 0 / 5%);
    border-radius: 5px;
    padding: 60px 68px;
}

.device-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(206, 206, 206, 0.59);
}

.device-list__brand {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    color: #000000;
    max-width: 300px;
    width: 100%;
}

.device-list__info {
    max-width: 875px;
    width: 100%;
}

.plr10 {
    padding-left: 10px;
    padding-right: 10px;
}

.mt30 {
    margin-top: 30px;
}

.mt15 {
    margin-top: 15px;
}

.pt30 {
    padding-top: 30px;
}

.device-list__block.device-list__block--border {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(206, 206, 206, 0.59);
}

.device-list__name {
    font-size: 24px;
    line-height: 100%;
    color: #000000;
}

.device-list__name.light {
    font-weight: 300;
}

.device-list__name.light .light {
    font-weight: 400;
}

.device-list__name-list {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.95);
    margin-top: 15px;
}

.device-list__warning {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #C22525;
    display: block;
}

.mobile-warning {
    display: none;
}
.desktop-warning {
    display: block;
}

.detail {
    position: relative;
}

.detail::after {
    content: "";
    position: absolute;
    z-index: -1;
}

.detail::after {
    background-image: url('../images/vector-r3.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 75px;
    height: 600px;
    right: 0;
    top: 200px;
}

.detail .section__title {
    text-align: center;
    margin-bottom: 90px;
}

.detail__container {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(206, 206, 206, 0.59);
}

.accordion__item {
    overflow: hidden;
    max-height: 100vh;
}

.accordion__item:not(:last-child) {
    margin-bottom: 0;
    -webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
}

.accordion__item.active:not(:last-child) {
    margin-bottom: 30px;
}

.detail__item-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 31px;
    color: #00A0E3;
    margin-bottom: 15px;
    position: relative;
    padding-right: 30px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    cursor: pointer;
}

.accordion__item .detail__item-title::after {
    content: "";
    position: absolute;
    background-image: url('../images/arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 15px;
    height: 10px;
    right: 0;
    top: calc(50% - 5px);
    -webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.accordion__item.active .detail__item-title::after {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}

.accordion__item .detail__item-descript {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
}

.accordion__item.active .detail__item-descript {
    height: auto;
    opacity: 1;
    visibility: visible;
}

.detail__info-bottom {
    font-weight: bold;
    font-size: 28px;
    line-height: 32px;
    color: #00A0E3;
    margin-bottom: 0;
    margin-top: 30px;
}

.footer {
    background-color: #00A0E3;
    height: auto;
    padding: 35px 0;
}


.footer__container,
.footer__links,
.footer__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__container {
    gap: 100px;
}

.footer__links {
    gap: 50px;
}

.footer__link {
    gap: 15px;
}

.footer__link-text {
    font-size: 24px;
    line-height: 32px;
    color: #000000;
}

.socials .footer__link {
    margin-top: 15px;
}

.socials .footer__link .footer__link-text {
    font-size: 16px;
    line-height: 18px;
}


.success-page {
    padding: 100px 0;
    text-align: center;
}

.success-page .first-screen {
    margin-bottom: 0;
}

.success-page .section__title {
    font-size: 42px;
    margin-bottom: 90px;
}

.section__title--error {
    color: #C22525;
}

.success-page__data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 90px 200px;
    margin-bottom: 90px;
}

.success-page__data .form {
    margin-top: 60px;
    margin-bottom: 0;
    max-width: 400px;
    margin-left: auto;
}

.success-page__code {
    max-width: 293px;
    width: 100%;
}

.success-page__code .code {
    max-width: 293px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.success-page__info {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: 90px;
}

.success-page__info-item {
    width: 100%;
}

.success-page__info-item .section__text {
    font-weight: 300;
    font-size: 30px;
    line-height: 42px;
    letter-spacing: 0.015em;
    color: #191919;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.success-page__info-item .section__text:not(:last-child) {
    margin-bottom: 10px;
}

.success-page__info-item .section__text .accent {
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
}

.success-page__period .section__text .accent {
    color: #00A0E3;
}
.success-page__personal .section__text .accent {
    color: #000000;
}

.success-page__period {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(206, 206, 206, 0.59);
}

.active-sim .section__title {
    margin-bottom: 60px;
}

.active-sim__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
    margin-bottom: 55px;
}

.active-sim__item {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
}

.active-sim__item:first-child {
    margin-right: 70px;
}

.active-sim__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 31px;
    color: #000000;
    margin-bottom: 15px;
}

.active-sim__list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.active-sim__list-item {
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
}

.success-page .t-left {
    text-align: left;
}

.success-page .form__submit {
    position: relative;
}

.message-text {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #00A0E3;
}
  
.uForm__error-msg {
    display: none;
    color: #C22525;
}
.uForm__extended {
    display: none;
}
.uForm__preload {
    display: none;
    position: absolute;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../uForm/img/loading.gif') no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 auto;
    background-color: #fff;
}

.form__input--imei::-webkit-outer-spin-button,
.form__input--imei::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.external-link {
    display: inline-block;
    color: #00A0E3;
    border-bottom: 2px solid #00A0E3;
}

.socials {
    /* max-width: 120px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.socials__list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}

.socials__list-link .icon {
    min-width: 34px;
}

.privacy {
    margin-top: 100px;
}

.privacy__title {
    text-align: center;
    font-size: 30px;
    line-height: 36px;
}

.privacy ol,
.privacy ul {
    list-style: none;
    font-size: 24px;
    line-height: 32px;
}

.privacy ol a {
    display: inline-block;
}

@media (max-width: 1440px) {
    .success-page__data {
        padding: 90px;
    }
    .success-page__info {
        margin-left: 30px;
    }
}

@media (max-width: 1200px) {
    .form__prod {
        padding: 50px;
    }
    .form__bottom-left, 
    .form__bottom-right {
        max-width: 500px;
    }
    .form__bottom-left .form__prod {
        padding: 32px 40px;
    }
    .success-page__data {
        padding: 60px;
    }
}

@media (max-width: 992px) {
    .form__prod {
        padding: 40px;
    }
    .form__label-title {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .form__prod-left,
    .form__label {
        max-width: 280px;
    }
    .form__price, 
    .form__label-check,
    .form__error-message {
        font-size: 16px;
    }
    .form__bottom-right .form__prod {
        padding: 45px 36px;
    }
    .form__bottom-left .form__prod:first-child {
        margin-bottom: 22px;
    }
    .simple__container {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .first-screen__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-bottom: 90px;
    }
    .simcard.desk {
        height: 450px;
        width: inherit;
        margin-right: 0;
    }
    .device-list__brand {
        max-width: 150px;
    }
    .success-page__data {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    .success-page__info {
        margin-left: 0;
        margin-top: 30px;  
        width: 100%;
    }
    .active-sim__item:first-child {
        margin-right: 35px;
    }
    .footer__container {
        gap: 50px;
    }
    .footer__links {
        gap: 25px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .form__prod {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .question-info {
        display: none;
    }
    .form__prod-left,
    .form__prod-right {
        max-width: 350px;
    }
    .form__prod-left {
        margin-bottom: 30px;
    }
    .pop-up.show {
        opacity: 1;
        visibility: visible;
    }
    .pop-up.show .pop-up__container {
        top: 25%;
    }
    .form__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .form__bottom .form__label {
        max-width: inherit;
    }
    .device-list__container {
        padding: 30px;
    }
    .success-page .section__title,
    .success-page__data {
        margin-bottom: 60px;
    }
    .success-page__info-item .section__text,
    .success-page__info-item .section__text .accent {
        font-size: 25px;
    }
    .success-page__info-item .section__text {
        line-height: 35px;
    }
    .success-page__info-item .section__text .accent {
        line-height: 30px;
    }
    .active-sim__item:first-child {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .active-sim__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .main {
        padding: 60px 0;
    }
    .section__title {
        font-size: 35px;
    }
    .section__text {
        font-size: 18px;
    }
    .form__label-title {
        font-size: 20px;
        line-height: 25px;
    }
    .form__prod-left, 
    .form__prod-right {
        max-width: 300px;
    }
    .form__label-title {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .question {
        margin-left: 0;
    }
    .form__link {
        font-size: 22px;
        line-height: 26px;
    }
    .form__link--close {
        right: 5px;
        top: 5px;
    }
    .simcard {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .form__bottom-right .form__prod {
        padding: 35px;
    }
    .form__total-price {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 52px;
        line-height: 64px;
    }
    .form__total-price h2 {
        font-size: 52px;
        line-height: 64px;
    }
    .form__submit {
        font-size: 26px;
        line-height: 32px;
    }
    .first-screen,
    .simple {
        margin-bottom: 90px;
    }
    .simple .section__title {
        margin-bottom: 30px;
    }
    .simple__title {
        font-size: 25px;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .simple__text {
        font-size: 20px;
        line-height: 25px;
    }
    .simple__image {
        max-width: 120px;
        max-height: 120px;
    }
    .simple__image .image {
        width: 100%;
    }
    .device-list {
        margin-bottom: 75px;
    }
    .device-list .section__title {
        margin-bottom: 60px;
    }
    .simcard.mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: inherit;
        padding-top: 47px;
        padding-bottom: 43px;
        width: inherit;
    }
    .simcard.desk {
        display: none;
    }
    .device-list__container {
        padding: 0;
        background: transparent;
        border: none;
        -webkit-box-shadow: none;
                box-shadow: none;
        border-radius: 0px;
    }
    .device-list__item {
        padding: 30px 40px;
        background: #FFFFFF;
        border: 1px solid #DCDCDC;
        -webkit-box-shadow: 0px 2px 8px rgb(0 0 0 / 5%);
                box-shadow: 0px 2px 8px rgb(0 0 0 / 5%);
        border-radius: 5px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .device-list__item:not(:last-child) {
        margin-bottom: 15px;
    }
    .device-list__brand {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .plr10 {
        padding: 0;
    }
    .device-list__name {
        font-size: 17px;
    }
    .device-list__name-list {
        margin-top: 7px;
        font-size: 17px;
        line-height: 100%;
    }
    .device-list__warning {
        font-size: 17px;
    }
    .device-list__block.device-list__block--border {
        padding-bottom: 0;
        border: none;
    }
    .mobile-warning {
        display: block;
    }
    .desktop-warning {
        display: none;
    }
    .detail .section__title {
        margin-bottom: 60px;
    }
    .detail__item-title {
        font-size: 25px;
        line-height: 26px;
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
        width: 400px;
    }
    .accordion__item .detail__item-descript {
        font-size: 20px;
    }
    .detail__info-bottom {
        font-size: 22px;
    }
    .footer {
        padding: 25px 0;
    }
    .success-page {
        padding: 75px 0;
    }
    .success-page .section__title {
        font-size: 25px;
    }
    .success-page__data {
        padding: 0;
        border: none;
        background-color: transparent;
        -webkit-box-shadow: none;
                box-shadow: none;
        margin-bottom: 45px; 
    }
    .success-page__code,
    .success-page__code .code {
        max-width: 240px;
    }
    .success-page__info {
        max-width: 400px;
    }
    .success-page__personal  {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(206, 206, 206, 0.59);
    }
    .success-page__info-item .section__text {
        line-height: 30px;
    }
    .success-page__info-item .section__text, 
    .success-page__info-item .section__text .accent {
        font-size: 20px;
    }
    .active-sim .section__title {
        margin-bottom: 30px;
    }
    .active-sim__title {
        font-size: 25px;
        line-height: 26px;
    }
    .active-sim__list-item {
        font-size: 20px;
        line-height: 28px;
    }
    .active-sim__container {
        margin-bottom: 15px;
    }
    .success-page__data .form {
        margin-right: auto;
        margin-top: 0;
    }
    .footer__container {
        gap: 25px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer__link svg {
        width: 30px;
        height: 30px;
    }
    .footer__link-text {
        font-size: 18px;
        line-height: 22px;
    }
}
@media (max-width: 414px) {
    .detail__item-title {
        font-size: 20px;
        line-height: 21px;
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
        width: 330px;
    }
}
@media (max-width: 375px) {
    .switch-languages__item {
        font-size: 16px;
        line-height: 20px;
    }
    .main {
        padding: 30px 0;
    }
    .header {
        padding: 6px 0;
    }
    .header__logo .header__logo-img {
        max-width: 47px;
        width: 100%;
    }
    .header__logo .header__logo-img:last-child {
        max-width: 39px;
        margin-top: 2px;
    }
    .first-screen,
    .simple {
        margin-bottom: 60px;
    }
    .first-screen__content {
        margin-bottom: 15px;
    }
    .section__title {
        font-size: 20px;
        margin-bottom: 0;
        text-align: center;
    }
    .section__text {
        font-size: 16px;
        line-height: 22px;
    }
    .form__prod {
        padding-top: 20px;
    }
    .form__label-title {
        font-size: 18px;
        line-height: 21px;
    }
    .form__prod-left, 
    .form__prod-right {
        max-width: inherit;
        width: 100%;
    }
    .form__label {
        max-width: 260px;
    }
    .form__input {
        padding: 4px 8px;
        height: 24px;
    }
    .form__price, 
    .form__label-check,
    .form__error-message {
        font-size: 11px;
        line-height: 13px;
        margin-top: 8px;
    }
    .form__label--calendar::after {
        width: 15px;
        height: 15px;
        top: calc(50% - 8px);
    }
    .question {
        width: 15px;
        height: 15px;
        background-size: 6px;
        margin-right: 18px;
    }
    .form__bottom-left .form__prod {
        padding: 20px 40px;
    }
    .form__bottom-left .form__prod:first-child {
        margin-bottom: 15px;
    }
    .form__bottom-right .form__prod {
        padding: 25px 40px;
    }
    .form__total-price {
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 40px;
        line-height: 47px;
    }
    .form__total-price h2 {
        font-size: 40px;
        line-height: 47px;
    }
    .form__submit {
        font-size: 20px;
        line-height: 23px;
        padding: 6px;
    }
    .simple__item {
        max-width: 330px;
    }
    .simple__title {
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 5px;
    }
    .simple__text {
        font-size: 17px;
        line-height: 22px;
    }
    .simple__image {
        max-width: 84px;
        max-height: 84px;
    }
    .device-list {
        margin-bottom: 60px;
    }
    .device-list .section__title {
        margin-bottom: 30px;
        font-size: 18px;
    }
    .detail .section__title {
        margin-bottom: 30px;
    }
    .detail__item-descript {
        font-size: 17px;
    }
    .detail__info-bottom {
        font-size: 16px;
        line-height: 20px;
        color: #000000;
    }
    .detail__item-title {
        width: 300px;
    }
    .footer {
        padding: 15px 0;
        margin-bottom: 46px;
    }
    .success-page {
        padding: 30px 0;
    }
    .success-page .section__title {
        margin-bottom: 30px;
        font-size: 18px;
    }
    .success-page__code,
    .success-page__code .code {
        max-width: 192px;
    }
    .success-page__info-item .section__text {
        line-height: 25px;
    }
    .success-page__info-item .section__text, 
    .success-page__info-item .section__text .accent {
        font-size: 18px;
    }
    .success-page__info-item .section__text {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .active-sim__title,
    .active-sim__list-item {
        font-size: 17px;
    }
    .active-sim__title {
        line-height: 18px;
    }
    .active-sim__list-item {
        line-height: 22px;
    }
    .success-page .t-left {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .question {
        margin-right: 0;
    }
    .form__label-title {
        font-size: 16px;
    }
    .pop-up__container {
        padding-left: 35px;
        padding-right: 35px;
        max-width: 320px;
        left: calc(50% - 160px);
    }
}