

/* Start:/local/templates/is_new/components/siv/order.form/intro-block/style.css?175397171715118*/
.intro-form {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: -65px;
    padding-top: 26px;
    padding-bottom: 20px;
    -webkit-box-shadow: 0 8px 15px rgba(33, 33, 33, 0.15);
    box-shadow: 0 8px 15px rgba(33, 33, 33, 0.15);
    background: #FFFFFF;
}

.intro-form__container {
    width: calc(100% / 6 * 5 - 26px);
    height: auto;
    display: grid;
    position: relative;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: 100%;
    grid-gap: 26px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.intro-form__text {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 22px;
    line-height: 122.3%;
    color: #575757;
}

.intro-form__form {
    width: 100%;
    height: auto;
    display: grid;
    position: relative;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 26px;
    grid-template-areas: "input button" "text text";
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    justify-items: flex-start;
}

.intro-form__input {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    border-radius: 4px;
    border: none;
    border-bottom: 2px solid #ACACAC;
    padding: 13px 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    font-size: 1.25em;
    line-height: 140%;
    color: #575757;
    background-color: #F7F7F7;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    -webkit-transition-property: border-bottom-color;
    transition-property: border-bottom-color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    width: 100%;
    grid-area: input;
    margin-bottom: 8px;
}

.intro-form__input::-webkit-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.intro-form__input::-moz-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -moz-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.intro-form__input:-ms-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -ms-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.intro-form__input::-ms-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -ms-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.intro-form__input::placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.intro-form__input:-webkit-autofill, .intro-form__input:-webkit-autofill:hover, .intro-form__input:-webkit-autofill:active, .intro-form__input:-webkit-autofill:focus {
    -webkit-box-shadow: inset 0 0 0 50px #F7F7F7;
    box-shadow: inset 0 0 0 50px #F7F7F7;
    -webkit-text-fill-color: #2C6BBE;
}

.intro-form__input:hover {
    border-bottom-color: #757575;
}

.intro-form__input:hover::-webkit-input-placeholder {
    color: #757575;
}

.intro-form__input:hover::-moz-placeholder {
    color: #757575;
}

.intro-form__input:hover:-ms-input-placeholder {
    color: #757575;
}

.intro-form__input:hover::-ms-input-placeholder {
    color: #757575;
}

.intro-form__input:hover::placeholder {
    color: #757575;
}

.intro-form__input:focus {
    border-bottom-color: #2C6BBE;
}

.intro-form__input:not(:focus) {
    color: #2C6BBE;
}

.intro-form__input[readonly] {
    color: #575757;
    background-color: #F7F7F7;
}

.intro-form__input[readonly]:hover {
    border-bottom-color: #ACACAC;
}

.intro-form__input[readonly]:focus {
    border-bottom-color: #ACACAC;
}

.intro-form__button {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    grid-area: button;
    width: auto;
    height: auto;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 14px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #FFFFFF;
    background-color: #CA2121;
    -webkit-box-shadow: 0px 8px 8px rgba(201, 17, 17, 0.15);
    box-shadow: 0px 8px 8px rgba(201, 17, 17, 0.15);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition-property: background-color, -webkit-box-shadow;
    transition-property: background-color, -webkit-box-shadow;
    transition-property: box-shadow, background-color;
    transition-property: box-shadow, background-color, -webkit-box-shadow;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    margin-bottom: 8px;
}

.intro-form__button:hover {
    background-color: #AD1414;
}

.intro-form__button[data-active=true] {
    padding: 14px 25px;
}

.intro-form__button[data-active=true] .button__badge {
    width: 20px;
    margin-right: 10px;
    visibility: visible;
    opacity: 1;
}

.intro-form__button[data-success=true] {
    padding: 14px 40px;
    background-color: #3AA928;
    -webkit-box-shadow: 3px 4px 7px rgba(42, 130, 28, 0.7) inset;
    box-shadow: 3px 4px 7px rgba(42, 130, 28, 0.7) inset;
}

.intro-form__button[data-success=true] .button__badge {
    width: 0;
    margin-right: 0;
    visibility: hidden;
    opacity: 0;
}

.intro-form__button .button__badge {
    width: 0;
    height: 20px;
    margin-right: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.intro-form__button .button__spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

.intro-form__button .button__path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    stroke: #FFFFFF;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite;
}

.intro-form__button .button__icon {
    width: 10px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 12px;
}

.intro-form__button[disabled] {
    background-color: #ACACAC;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: not-allowed;
}

.intro-form__info {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    grid-area: text;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding-right: calc(100% / 6 - 26px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.875em;
    line-height: 142.9%;
    font-size: 12px;
}

.intro-form__info a {
    color: #2C6BBE;
    text-decoration: none;
}

.pol .js-pola-open {
    cursor: pointer;
}

.pol .pol-click {
    text-decoration: underline;
    margin-top: 0;
}

.pol .pol-slide {
    display: none;
    margin-top: 5px;
}

.pol .pol-slide span {
    display: block;
}

.pol a {
    color: #666;
}

.pol__white-link a {
    color: #FFFFFF;
}

.pol .pol-slide .polago {
    text-decoration: underline;
    display: inline-block;
    cursor: pointer;
}


@media screen and (max-width: 1440px) {
    .intro-form {
        padding-top: 26px;
    }

    .intro-form {
        padding-bottom: 20px;
    }

    .intro-form__input {
        font-size: 1.125em;
        line-height: 140%;
    }

    .intro-form__input {
        margin-bottom: 8px;
    }

    .intro-form__button {
        margin-bottom: 8px;
    }

    .intro-form__info {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .intro-form__info {
        font-size: 12px;
    }
}

@media screen and (max-width: 1024px) {
    .intro-form__info {
        display: initial;
        text-align: center;
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .intro-form {
        padding-top: 30px;
    }

    .intro-form {
        padding-bottom: 24px;
    }

    .intro-form__container {
        width: 85%;
        grid-template-rows: repeat(2, auto);
        grid-template-columns: 100%;
        grid-gap: 24px;
    }

    .intro-form__text {
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        color: #4D4D4D;
        text-transform: none;
        letter-spacing: 0;
        font-size: 1.375em;
        line-height: 105.28%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .intro-form__form {
        grid-template-columns: 1fr 0.8fr;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .intro-form__input {
        margin-bottom: 12px;
    }

    .intro-form__input {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .intro-form__button {
        margin-bottom: 12px;
    }

    .intro-form__button {
        width: 100%;
    }

    .intro-form__info {
        font-size: 1em;
        line-height: 142.9%;
    }

    .intro-form__info {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) and (max-width: 320px) {
    .intro-form__text {
        font-size: 1.25em;
        line-height: 116.67%;
    }
}

@media screen and (max-width: 768px) and (max-width: 414px) {
    .intro-form__text {
        font-size: 1.375em;
        line-height: 116.67%;
    }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
    .intro-form__text {
        font-size: 1.625em;
        line-height: 105.28%;
    }
}

@media screen and (max-width: 414px) {
    .intro-form {
        padding-top: 20px;
    }

    .intro-form {
        padding-top: 28px;
    }

    .intro-form {
        padding-bottom: 16px;
    }

    .intro-form {
        padding-bottom: 20px;
    }

    .intro-form {
        margin-bottom: -140px;
    }

    .intro-form__container {
        width: calc(100% - 40px);
        grid-gap: 16px;
    }

    .intro-form__text {
        font-size: 22px;
        line-height: 116.67%;
    }

    .intro-form__form {
        grid-template-columns: 100%;
        grid-template-rows: repeat(3, auto);
        grid-template-areas: "input" "button" "text";
    }

    .intro-form__input {
        font-size: 1.375em;
        line-height: 140%;
    }

    .intro-form__input {
        margin-bottom: 8px;
    }

    .intro-form__input {
        margin-bottom: 20px;
    }

    .intro-form__input::-webkit-input-placeholder {
        font-size: 100%;
    }

    .intro-form__input::-moz-placeholder {
        font-size: 100%;
    }

    .intro-form__input:-ms-input-placeholder {
        font-size: 100%;
    }

    .intro-form__input::-ms-input-placeholder {
        font-size: 100%;
    }

    .intro-form__input::placeholder {
        font-size: 100%;
    }

    .intro-form__button {
        margin-bottom: 8px;
    }

    .intro-form__button {
        margin-bottom: 16px;
    }

    .intro-form__button {
        width: 100%;
    }

    .intro-form__info {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .intro-form__info {
        font-size: 12px;
        padding-right: 0;
    }
}

@media screen and (max-width: 320px) {
    .intro-form {
        padding-top: 16px;
    }

    .intro-form {
        padding-top: 24px;
    }

    .intro-form {
        padding-bottom: 12px;
    }

    .intro-form {
        padding-bottom: 16px;
    }

    .intro-form__input {
        font-size: 1.25em;
        line-height: 140%;
    }

    .intro-form__input {
        margin-bottom: 6px;
    }

    .intro-form__input {
        margin-bottom: 16px;
    }

    .intro-form__input {
        font-size: 18px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .intro-form__button {
        margin-bottom: 6px;
    }

    .intro-form__button {
        margin-bottom: 12px;
    }

    .intro-form__button {
        font-size: 18px;
    }

    .intro-form__info {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .intro-form__info {
        font-size: 12px;
    }
}
/* End */


/* Start:/local/templates/is_new/components/bitrix/news.list/private_plans_new/style.css?175397171627216*/
.plans-block {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -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;
    margin-bottom: 100px;
}

.plans-block__title {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0;
    margin-bottom: 44px;
    font-family: "Roboto Slab", "Arial", sans-serif;
    font-style: normal;
    font-weight: bold;
    color: #2C6BBE;
    text-transform: none;
    letter-spacing: 0;
    font-size: 2em;
    line-height: 111.1%;
}

.plans-block__plans-container {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -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;
}

.plans-block__plans-row {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.plans-block__plans-row:nth-of-type(2){
    max-width: 1200px;
}

.plans-block__plans-row:nth-of-type(3) {
    display: none;
}

.plans-block__plans-info {
    width: auto;
    max-width: 1200px;
    height: auto;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.875em;
    line-height: 142.9%;
    color: #ACACAC;
}

.plans-block__dots {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.plans-block__dot {
    width: 8px;
    height: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    border-radius: 10px;
    margin-right: 6px;
    background: #DFDFDF;
    -webkit-transition-property: background;
    transition-property: background;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.plans-block__dot:last-of-type {
    margin-right: 0;
}

.plans-block__dot.plans-block__dot_active {
    width: 26px;
    background: #87B3ED;
}

.plans-scroll-button {
    width: auto !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.plans-block__plans {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding-bottom: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.plans-block__plans::-webkit-scrollbar {
    width: 0px;
}

.plans-block__plan {
    width: calc(100% / 4 - 20px);
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    padding: 0 20px;
    padding-top: 36px;
    padding-bottom: 36px;
    margin: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #FFFFFF;
    -webkit-box-shadow: 0 5px 15px rgba(57, 57, 58, 0.15);
    box-shadow: 0 5px 15px rgba(57, 57, 58, 0.15);
    scroll-snap-align: start;
    -webkit-transition-property: background, -webkit-box-shadow, -webkit-transform;
    transition-property: background, -webkit-box-shadow, -webkit-transform;
    transition-property: background, box-shadow, transform;
    transition-property: background, box-shadow, transform, -webkit-box-shadow, -webkit-transform;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.plans-block__plan.plans-block__plan_endless .plans-block__plan-speed {
    margin-top: -6px;
}

.plans-block__plan.plan_selected {
    background: #2C6BBE;
    -webkit-box-shadow: 0 7px 20px rgba(57, 57, 58, 0.15);
    box-shadow: 0 7px 20px rgba(57, 57, 58, 0.15);
}

.plans-block__plan.plan_selected .plans-block__plan-title {
    color: #FFFFFF;
}

.plans-block__plan.plan_selected .plans-block__plan-subtitle {
    color: #FFFFFF;
}

.plans-block__plan.plan_selected .plans-block__plan-speed-block .plans-block__plan-progress::shadow svg {
    -webkit-box-shadow: -4px -4px 4px rgba(0, 0, 0, 0.25), inset -2px -2px 4px rgba(177, 177, 177, 0.25);
    box-shadow: -4px -4px 4px rgba(0, 0, 0, 0.25), inset -2px -2px 4px rgba(177, 177, 177, 0.25);
}

.plans-block__plan.plan_selected .plans-block__plan-description-icon {
    -webkit-filter: invert(92%) sepia(93%) saturate(0%) hue-rotate(202deg) brightness(106%) contrast(106%) !important;
    filter: invert(92%) sepia(93%) saturate(0%) hue-rotate(202deg) brightness(106%) contrast(106%) !important;
}

.plans-block__plan.plan_selected .plans-block__plan-description-text {
    color: #FFFFFF;
}

.plans-block__plan.plan_selected .plans-block__plan-tv-icon {
    -webkit-filter: invert(92%) sepia(93%) saturate(0%) hue-rotate(202deg) brightness(106%) contrast(106%);
    filter: invert(92%) sepia(93%) saturate(0%) hue-rotate(202deg) brightness(106%) contrast(106%);
}

.plans-block__plan.plan_selected .plans-block__plan-tv-text a {
    color: #FFFFFF;
}

.plans-block__plan.plan_selected .plans-block__price-block-title {
    color: #FFFFFF;
}

.plans-block__plan.plan_selected .plans-block__price-block-price p {
    color: #FFFFFF;
}

.plans-block__plan.plan_selected .plans-block__button {
    background: #8DDA81;
    color: #FFFFFF;
    border: none;
}

.plans-block__plan:nth-of-type(1) .plans-block__plan-description-icon {
    background-image: url('/local/templates/is_old/img/icons/x0.5/search.svg');
}

.plans-block__plan:nth-of-type(2) .plans-block__plan-description-icon {
    background-image: url('/local/templates/is_old/img/icons/x0.5/tv_inet.svg');
}

.plans-block__plan:nth-of-type(3) .plans-block__plan-description-icon {
    background-image: url('/local/templates/is_old/img/icons/x0.5/speed.svg');
}

.plans-block__plan:nth-of-type(4) .plans-block__plan-description-icon {
    background-image: url('/local/templates/is_old/img/icons/x0.5/devices.svg');
}

.plans-block__plan:nth-of-type(5) .plans-block__plan-description-icon {
    background-image: url('/local/templates/is_old/img/icons/x0.5/tv_inet.svg');
}

.plans-block__plan-spacer {
    width: 36px;
    min-width: 36px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.plans-block__plan-title {
    width: 100%;
    height: auto;
    min-height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0;
    margin-bottom: 8px;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 116.67%;
    letter-spacing: 0.02em;
    color: #575757;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.plans-block__plan-subtitle {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 20px;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.875em;
    line-height: 142.9%;
}

.plans-block__plan-speed-block {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 26px;
}

.plans-block__plan-speed-text {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.plans-block__plan-speed-pretext {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 2px;
    font-family: "Roboto Slab", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 100%;
    color: #ACACAC;
}

.plans-block__plan-speed {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Roboto Slab", "Arial", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 100%;
    color: #264796;
}

.plans-block__plan-speed-subtext {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Roboto Slab", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 100%;
    color: #264796;
}

.plans-block__plan-description {
    width: 100%;
    height: auto;
    max-height: 150px;
    display: grid;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    grid-template-rows: 100%;
    grid-template-columns: auto 1fr;
    grid-gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 16px;
}

.plans-block__plan-description-icon {
    width: 22px;
    height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition-property: -webkit-filter;
    transition-property: -webkit-filter;
    transition-property: filter;
    transition-property: filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-filter: invert(66%) sepia(43%) saturate(560%) hue-rotate(183deg) brightness(100%) contrast(87%);
    filter: invert(66%) sepia(43%) saturate(560%) hue-rotate(183deg) brightness(100%) contrast(87%);
}

.plans-block__plan-description-text {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1em;
    line-height: 150%;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.plans-block__plan-tv {
    width: 100%;
    height: auto;
    display: grid;
    position: relative;
    grid-template-rows: 100%;
    grid-template-columns: auto 1fr;
    grid-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 26px;
}

.plans-block__plan-tv-icon {
    width: 22px;
    height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    background-image: url('/local/templates/is_old/img/icons/x0.5/tv.svg');
    -webkit-filter: invert(68%) sepia(65%) saturate(391%) hue-rotate(65deg) brightness(89%) contrast(89%);
    filter: invert(68%) sepia(65%) saturate(391%) hue-rotate(65deg) brightness(89%) contrast(89%);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.plans-block__plan-tv-text {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.875em;
    line-height: 142.9%;
    color: #4382D6;
    -webkit-transition-property: -webkit-filter;
    transition-property: -webkit-filter;
    transition-property: filter;
    transition-property: filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.plans-block__plan-tv-text a {
    color: #4382D6;
    text-decoration: none;
}

.plans-block__price-block {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px;
}

.plans-block__price-block-title {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 150%;
    color: #ACACAC;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.plans-block__price-block-price {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    color: #4382D6;
}

.plans-block__price-block-price p {
    font-style: normal;
    line-height: 115.4%;
    letter-spacing: -0.02em;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.plans-block__price-block-price p:nth-of-type(1) {
    font-family: "Roboto", "Arial", sans-serif;
    font-weight: bold;
    font-size: 28px;
}

.plans-block__price-block-price p:nth-of-type(2) {
    font-family: "Roboto", "Arial", sans-serif;
    font-weight: normal;
    font-size: 16px;
}

.plans-block__button {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #4382D6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px 0;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #4382D6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #FFFFFF;
    -webkit-box-shadow: 0 0 7px rgba(43, 102, 190, 0.2);
    box-shadow: 0 0 7px rgba(43, 102, 190, 0.2);
    cursor: pointer;
    outline: none;
    -webkit-transition-property: background, color, -webkit-transform, -webkit-box-shadow;
    transition-property: background, color, -webkit-transform, -webkit-box-shadow;
    transition-property: transform, box-shadow, background, color;
    transition-property: transform, box-shadow, background, color, -webkit-transform, -webkit-box-shadow;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

@media screen and (max-width: 1440px) {
    .plans-block {
        margin-bottom: 100px;
    }

    .plans-block__title {
        margin-bottom: 44px;
    }

    .plans-block__title {
        font-size: 2em;
        line-height: 111.1%;
    }

    .plans-block__plans-info {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .plans-block__plan {
        padding-top: 36px;
    }

    .plans-block__plan {
        padding-bottom: 36px;
    }

    .plans-block__plan-title {
        margin-bottom: 8px;
    }

    .plans-block__plan-subtitle {
        margin-bottom: 20px;
    }

    .plans-block__plan-subtitle {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .plans-block__plan-speed-block {
        margin-bottom: 26px;
    }

    .plans-block__plan-description {
        margin-bottom: 16px;
    }

    .plans-block__plan-description-text {
        font-size: 1em;
        line-height: 150%;
    }

    .plans-block__plan-tv {
        margin-bottom: 26px;
    }

    .plans-block__plan-tv-text {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .plans-block__price-block {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 1024px) {
    .plans-block__title {
        width: calc(100% - 72px);
        max-width: 1024px;
    }

    .plans-block__plans {
        overflow: auto;
        -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
        scroll-padding-inline-start: 36px;
    }

    .plans-block__plan {
        width: 30%;
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .plans-block__plan:first-of-type {
        margin-left: 36px;
    }
}

@media screen and (max-width: 768px) {
    .plans-block {
        margin-bottom: 112px;
    }

    .plans-block__title {
        margin-bottom: 48px;
    }

    .plans-block__title {
        font-size: 2.25em;
        line-height: 115.4%;
    }

    .plans-block__plans-info {
        font-size: 1em;
        line-height: 142.9%;
    }

    .plans-block__plans {
        padding-bottom: 24px;
    }

    .plans-block__plan {
        padding-top: 40px;
    }

    .plans-block__plan {
        padding-bottom: 40px;
    }

    .plans-block__plan {
        width: 40%;
    }

    .plans-block__plan:nth-last-child(2) {
        margin-right: 0;
    }

    .plans-block__plan-title {
        margin-bottom: 12px;
    }

    .plans-block__plan-title {
        margin-bottom: 8px;
    }

    .plans-block__plan-subtitle {
        margin-bottom: 24px;
    }

    .plans-block__plan-subtitle {
        margin-bottom: 20px;
    }

    .plans-block__plan-subtitle {
        font-size: 1em;
        line-height: 142.9%;
    }

    .plans-block__plan-speed-block {
        margin-bottom: 30px;
    }

    .plans-block__plan-speed-block {
        margin-bottom: 24px;
    }

    .plans-block__plan-description {
        margin-bottom: 20px;
    }

    .plans-block__plan-description {
        margin-bottom: 12px;
    }

    .plans-block__plan-description-text {
        font-size: 1.25em;
        line-height: 150%;
    }

    .plans-block__plan-tv {
        margin-bottom: 30px;
    }

    .plans-block__plan-tv-text {
        font-size: 1em;
        line-height: 142.9%;
    }

    .plans-block__price-block {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 414px) {
    .plans-block {
        margin-bottom: 88px;
    }

    .plans-block__title {
        margin-bottom: 36px;
    }

    .plans-block__title {
        font-size: 1.75em;
        line-height: 111.1%;
    }

    .plans-block__title {
        width: calc(100% - 40px);
        max-width: 414px;
    }

    .plans-block__plans-row:nth-of-type(2) {
        order: 3;
        margin-block-start: 8px;
    }

    .plans-block__plans-row:nth-of-type(3) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .plans-block__plans-info {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .plans-block__plans {
        scroll-padding-inline-start: 36px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .plans-block__plan {
        padding-top: 28px;
    }

    .plans-block__plan {
        padding-bottom: 28px;
    }

    .plans-block__plan {
        width: 80%;
        margin-right: 0;
        margin-left: 20px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .plans-block__plan.plan_active {
        width: 80%;
    }

    .plans-block__plan:first-of-type {
        margin-left: 20px;
    }

    .plans-block__plan-spacer {
        width: 20px;
        min-width: 20px;
    }

    .plans-block__plan-title {
        margin-bottom: 8px;
    }

    .plans-block__plan-subtitle {
        margin-bottom: 16px;
    }

    .plans-block__plan-subtitle {
        margin-bottom: 12px;
    }

    .plans-block__plan-subtitle {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .plans-block__plan-speed-block {
        margin-bottom: 20px;
    }

    .plans-block__plan-speed-block {
        margin-bottom: 16px;
    }

    .plans-block__plan-description {
        margin-bottom: 12px;
    }

    .plans-block__plan-description {
        margin-bottom: 8px;
    }

    .plans-block__plan-description-text {
        font-size: 1.125em;
        line-height: 150%;
    }

    .plans-block__plan-tv {
        margin-bottom: 20px;
    }

    .plans-block__plan-tv-text {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .plans-block__price-block {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 320px) {
    .plans-block {
        margin-bottom: 74px;
    }

    .plans-block__title {
        margin-bottom: 30px;
    }

    .plans-block__title {
        font-size: 1.5em;
        line-height: 111.1%;
    }

    .plans-block__title {
        width: calc(100% - 32px);
    }

    .plans-block__plans-info {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .plans-block__plan {
        padding-top: 24px;
    }

    .plans-block__plan {
        padding-bottom: 24px;
    }

    .plans-block__plan:first-of-type {
        margin-left: 16px;
    }

    .plans-block__plan-spacer {
        width: 16px;
    }

    .plans-block__plan-title {
        margin-bottom: 6px;
    }

    .plans-block__plan-subtitle {
        margin-bottom: 12px;
    }

    .plans-block__plan-subtitle {
        margin-bottom: 8px;
    }

    .plans-block__plan-subtitle {
        margin-bottom: 12px;
    }

    .plans-block__plan-subtitle {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .plans-block__plan-speed-block {
        margin-bottom: 16px;
    }

    .plans-block__plan-speed-block {
        margin-bottom: 12px;
    }

    .plans-block__plan-description {
        margin-bottom: 8px;
    }

    .plans-block__plan-description {
        margin-bottom: 6px;
    }

    .plans-block__plan-description-text {
        font-size: 1em;
        line-height: 150%;
    }

    .plans-block__plan-tv {
        margin-bottom: 16px;
    }

    .plans-block__plan-tv-text {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .plans-block__price-block {
        margin-bottom: 8px;
    }
}

@media (pointer: fine) {
    .plans-block__plan:hover {
        background: #4382D6;
        -webkit-box-shadow: 0 7px 20px rgba(57, 57, 58, 0.15);
        box-shadow: 0 7px 20px rgba(57, 57, 58, 0.15);
    }

    .plans-block__plan:hover .plans-block__plan-title {
        color: #FFFFFF;
    }

    .plans-block__plan:hover .plans-block__plan-subtitle {
        color: #FFFFFF;
    }

    .plans-block__plan:hover .plans-block__plan-speed-block .plans-block__plan-progress::shadow svg {
        -webkit-box-shadow: -4px -4px 4px rgba(0, 0, 0, 0.25), inset -2px -2px 4px rgba(177, 177, 177, 0.25);
        box-shadow: -4px -4px 4px rgba(0, 0, 0, 0.25), inset -2px -2px 4px rgba(177, 177, 177, 0.25);
    }

    .plans-block__plan:hover .plans-block__plan-description-icon {
        -webkit-filter: invert(92%) sepia(93%) saturate(0%) hue-rotate(202deg) brightness(106%) contrast(106%) !important;
        filter: invert(92%) sepia(93%) saturate(0%) hue-rotate(202deg) brightness(106%) contrast(106%) !important;
    }

    .plans-block__plan:hover .plans-block__plan-description-text {
        color: #FFFFFF;
    }

    .plans-block__plan:hover .plans-block__plan-tv-icon {
        -webkit-filter: invert(92%) sepia(93%) saturate(0%) hue-rotate(202deg) brightness(106%) contrast(106%);
        filter: invert(92%) sepia(93%) saturate(0%) hue-rotate(202deg) brightness(106%) contrast(106%);
    }

    .plans-block__plan:hover .plans-block__plan-tv-text a {
        color: #FFFFFF;
    }

    .plans-block__plan:hover .plans-block__price-block-title {
        color: #FFFFFF;
    }

    .plans-block__plan:hover .plans-block__price-block-price p {
        color: #FFFFFF;
    }
}

/* End */


/* Start:/local/templates/is_new/components/siv/order.form/question-block/style.css?175397171711763*/
.question-block__form-block {
    width: calc(50% - 13px);
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 26px;
}

.question-block__phone {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    border-radius: 4px;
    border: none;
    border-bottom: 2px solid #ACACAC;
    padding: 13px 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    font-size: 1.25em;
    line-height: 140%;
    color: #575757;
    background-color: #FFFFFF;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    -webkit-transition-property: border-bottom-color;
    transition-property: border-bottom-color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    width: calc(50% - 13px);
    margin-bottom: 8px;
}

.question-block__phone::-webkit-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.question-block__phone::-moz-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -moz-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.question-block__phone:-ms-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -ms-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.question-block__phone::-ms-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -ms-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.question-block__phone::placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.question-block__phone:-webkit-autofill, .question-block__phone:-webkit-autofill:hover, .question-block__phone:-webkit-autofill:active, .question-block__phone:-webkit-autofill:focus {
    -webkit-box-shadow: inset 0 0 0 50px #FFFFFF;
    box-shadow: inset 0 0 0 50px #FFFFFF;
    -webkit-text-fill-color: #2C6BBE;
}

.question-block__phone:hover {
    border-bottom-color: #757575;
}

.question-block__phone:hover::-webkit-input-placeholder {
    color: #757575;
}

.question-block__phone:hover::-moz-placeholder {
    color: #757575;
}

.question-block__phone:hover:-ms-input-placeholder {
    color: #757575;
}

.question-block__phone:hover::-ms-input-placeholder {
    color: #757575;
}

.question-block__phone:hover::placeholder {
    color: #757575;
}

.question-block__phone:focus {
    border-bottom-color: #2C6BBE;
}

.question-block__phone:not(:focus) {
    color: #2C6BBE;
}

.question-block__phone[readonly] {
    color: #575757;
    background-color: #F7F7F7;
}

.question-block__phone[readonly]:hover {
    border-bottom-color: #ACACAC;
}

.question-block__phone[readonly]:focus {
    border-bottom-color: #ACACAC;
}

.question-block__button {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 14px 48px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #FFFFFF;
    background-color: #CA2121;
    -webkit-box-shadow: 0px 8px 8px rgba(201, 17, 17, 0.15);
    box-shadow: 0px 8px 8px rgba(201, 17, 17, 0.15);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition-property: background-color, -webkit-box-shadow;
    transition-property: background-color, -webkit-box-shadow;
    transition-property: box-shadow, background-color;
    transition-property: box-shadow, background-color, -webkit-box-shadow;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    width: calc(100% / 6 * 2.5 - 13px);
    margin-left: 26px;
    margin-bottom: 8px;
}

.question-block__button:hover {
    background-color: #AD1414;
}

.question-block__button[data-active=true] {
    padding: 14px 33px;
}

.question-block__button[data-active=true] .button__badge {
    width: 20px;
    margin-right: 10px;
    visibility: visible;
    opacity: 1;
}

.question-block__button[data-success=true] {
    padding: 14px 48px;
    background-color: #3AA928;
    -webkit-box-shadow: 3px 4px 7px rgba(42, 130, 28, 0.7) inset;
    box-shadow: 3px 4px 7px rgba(42, 130, 28, 0.7) inset;
}

.question-block__button[data-success=true] .button__badge {
    width: 0;
    margin-right: 0;
    visibility: hidden;
    opacity: 0;
}

.question-block__button .button__badge {
    width: 0;
    height: 20px;
    margin-right: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.question-block__button .button__spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

.question-block__button .button__path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    stroke: #FFFFFF;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite;
}

.question-block__button .button__icon {
    width: 10px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 12px;
}

.question-block__button[disabled] {
    background-color: #ACACAC;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: not-allowed;
}

.question-block__form-info {
    width: 100%;
    height: auto;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 142.9%;
    color: #575757;
    text-align: center;
}

.question-block__form-info a {
    text-decoration: none;
    color: #2C6BBE;
}

.pol .js-pola-open {
    cursor: pointer;
}

.pol .pol-click {
    text-decoration: underline;
    margin-top: 0;
}

.pol .pol-slide {
    display: none;
    margin-top: 5px;
}

.pol .pol-slide span {
    display: block;
}

.pol a {
    color: #666;
}

.pol__white-link a {
    color: #FFFFFF;
}

.pol .pol-slide .polago {
    text-decoration: underline;
    display: inline-block;
    cursor: pointer;
}

@media screen and (max-width: 1440px) {
    .question-block__phone {
        font-size: 1.125em;
        line-height: 140%;
    }

    .question-block__phone {
        margin-bottom: 8px;
    }

    .question-block__button {
        margin-bottom: 8px;
    }

}

@media screen and (max-width: 1024px) {
    .question-block__form-block {
        width: calc(100% / 8 * 7 - 12px);
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .question-block__phone {
        margin-bottom: 12px;
    }

    .question-block__phone {
        width: calc(100% / 7 * 3.5);
    }
    .question-block__phone {
        font-size: 1.375em;
        line-height: 140%;
    }

    .question-block__phone {
        margin-bottom: 8px;
    }

    .question-block__phone {
        margin-bottom: 16px;
    }


    .question-block__phone::-webkit-input-placeholder {
        font-size: 20px;
    }

    .question-block__phone::-moz-placeholder {
        font-size: 20px;
    }

    .question-block__phone:-ms-input-placeholder {
        font-size: 20px;
    }

    .question-block__phone::-ms-input-placeholder {
        font-size: 20px;
    }

    .question-block__phone::placeholder {
        font-size: 20px;
    }

    .question-block__button {
        margin-bottom: 12px;
    }

    .question-block__button {
        width: calc(100% / 7 * 3 + 12px);
    }

    .question-block__form-info {
        font-size: 14px;
    }
}

@media screen and (max-width: 414px) {
    .question-block__form-block {
        width: 100%;
    }

    .question-block__phone {
        width: 100%;
    }

    .question-block__button {
        margin-bottom: 8px;
    }

    .question-block__button {
        margin-bottom: 16px;
    }

    .question-block__button {
        width: 100%;
        margin-left: 0;
    }

}

@media screen and (max-width: 320px) {
    .question-block__phone {
        font-size: 1.25em;
        line-height: 140%;
    }

    .question-block__phone {
        margin-bottom: 6px;
    }

    .question-block__phone {
        margin-bottom: 12px;
    }

    .question-block__phone {
        font-size: 18px;
    }

    .question-block__phone::-webkit-input-placeholder {
        font-size: 18px;
    }

    .question-block__phone::-moz-placeholder {
        font-size: 18px;
    }

    .question-block__phone:-ms-input-placeholder {
        font-size: 18px;
    }

    .question-block__phone::-ms-input-placeholder {
        font-size: 18px;
    }

    .question-block__phone::placeholder {
        font-size: 18px;
    }

    .question-block__button {
        margin-bottom: 6px;
    }

    .question-block__button {
        margin-bottom: 12px;
    }

    .question-block__button {
        font-size: 18px;
    }
}
/* End */


/* Start:/local/templates/is_new/components/bitrix/news.list/mobile_app/style.css?1753971716558*/
.mobile-app-container{
    background-image: url("/local/templates/is_new/components/bitrix/news.list/mobile_app/images/background.svg");
}
.android_button:hover {
    background-color: #2C6BBE !important;
}

.android_button:hover img {
    content: url("/local/templates/is_new/components/bitrix/news.list/mobile_app/images/android_button_hover.svg");
}

.ios_button:hover {
    background-color: #2C6BBE !important;
}

.ios_button:hover img {
    content: url("/local/templates/is_new/components/bitrix/news.list/mobile_app/images/ios_button_hover.svg");
}
/* End */


/* Start:/local/templates/is_new/components/bitrix/news.list/cctv_faq/style.css?17539717164642*/
.cctv__faq-block__items {
    width: calc(100% / 3 * 2 - 13px);
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 64px;
}

.cctv__faq-block__item {
    width: 100%;
    height: auto;
    display: grid;
    position: relative;
    grid-template-columns: 1fr 28px;
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "question arrow" "answer answer";
    grid-gap: 0 26px;
    padding: 12px 0;
    border-bottom: 1px solid #DFDFDF;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    overflow: hidden;
    -webkit-transition-property: height;
    transition-property: height;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-tap-highlight-color: transparent;
}

.cctv__faq-block__item:first-of-type {
    padding-top: 0;
}

.cctv__faq-block__item[data-expanded="true"] .cctv__faq-block__arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.cctv__faq-block__question {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    grid-area: question;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.25em;
    line-height: 140%;
    cursor: pointer;
}

.cctv__faq-block__arrow {
    width: 28px;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    grid-area: arrow;
    background-image: url(/local/templates/is_new/components/bitrix/news.list/cctv_faq/images/faq_arrow.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-filter: invert(38%) sepia(52%) saturate(1222%) hue-rotate(183deg) brightness(86%) contrast(89%);
    filter: invert(38%) sepia(52%) saturate(1222%) hue-rotate(183deg) brightness(86%) contrast(89%);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    cursor: pointer;
}

.cctv__faq-block__arrow-transform {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.cctv__faq-block__answer {
    display:none;
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 12px;
    grid-area: answer;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1em;
    line-height: 150%;
    color: #757575;
}

.cctv__faq-block__answer a {
    color: #2C6BBE;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
}

.cctv__faq-block__answer ul {
    list-style-type: disc;
}

.cctv__faq-block__answer ul li ul{
    list-style-type: circle;
}

span.cctv__faq-block__answer ul, span.cctv__faq-block__answer ul li {
  margin-left: 10px;
}

@media screen and (max-width: 1440px) {
    .cctv__faq-block__items {
        margin-bottom: 64px;
    }

    .cctv__faq-block__question {
        font-size: 1.25em;
        line-height: 140%;
    }

    .cctv__faq-block__answer {
        font-size: 1em;
        line-height: 150%;
    }

}

@media screen and (max-width: 768px) {
    .cctv__faq-block__items {
        margin-bottom: 76px;
    }

    .cctv__faq-block__items {
        width: 100%;
    }

    .cctv__faq-block__question {
        font-size: 1.5em;
        line-height: 140%;
    }

    .cctv__faq-block__answer {
        font-size: 1.25em;
        line-height: 150%;
    }
}

@media screen and (max-width: 414px) {
    .cctv__faq-block__items {
        margin-bottom: 52px;
    }

    .cctv__faq-block__question {
        font-size: 1.25em;
        line-height: 140%;
    }

    .cctv__faq-block__answer {
        font-size: 1.125em;
        line-height: 150%;
    }
}

@media screen and (max-width: 320px) {
    .cctv__faq-block__items {
        margin-bottom: 44px;
    }

    .cctv__faq-block__question {
        font-size: 1.125em;
        line-height: 140%;
    }

    .cctv__faq-block__answer {
        font-size: 1em;
        line-height: 150%;
    }
}


/* End */


/* Start:/local/templates/is_new/components/siv/order.form/outro-block/style.css?175397171742863*/
.outro-block__form {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 26px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.6);
}

.outro-block__form-phone-group {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
}

.outro-block__form-phone-group label {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 4px;
    padding-left: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1em;
    line-height: 150%;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.outro-block__form-phone-group input {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    border-radius: 4px;
    border: none;
    border-bottom: 2px solid #ACACAC;
    padding: 13px 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    font-size: 1.25em;
    line-height: 140%;
    color: #575757;
    background-color: #FFFFFF;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    -webkit-transition-property: border-bottom-color;
    transition-property: border-bottom-color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.outro-block__form-phone-group input::-webkit-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.outro-block__form-phone-group input::-moz-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -moz-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.outro-block__form-phone-group input:-ms-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -ms-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.outro-block__form-phone-group input::-ms-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -ms-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.outro-block__form-phone-group input::placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.outro-block__form-phone-group input:-webkit-autofill, .outro-block__form-phone-group input:-webkit-autofill:hover, .outro-block__form-phone-group input:-webkit-autofill:active, .outro-block__form-phone-group input:-webkit-autofill:focus {
    -webkit-box-shadow: inset 0 0 0 50px #FFFFFF;
    box-shadow: inset 0 0 0 50px #FFFFFF;
    -webkit-text-fill-color: #2C6BBE;
}

.outro-block__form-phone-group input:hover {
    border-bottom-color: #757575;
}

.outro-block__form-phone-group input:hover::-webkit-input-placeholder {
    color: #757575;
}

.outro-block__form-phone-group input:hover::-moz-placeholder {
    color: #757575;
}

.outro-block__form-phone-group input:hover:-ms-input-placeholder {
    color: #757575;
}

.outro-block__form-phone-group input:hover::-ms-input-placeholder {
    color: #757575;
}

.outro-block__form-phone-group input:hover::placeholder {
    color: #757575;
}

.outro-block__form-phone-group input:focus {
    border-bottom-color: #2C6BBE;
}

.outro-block__form-phone-group input:not(:focus) {
    color: #2C6BBE;
}

.outro-block__form-phone-group input[readonly] {
    color: #575757;
    background-color: #F7F7F7;
}

.outro-block__form-phone-group input[readonly]:hover {
    border-bottom-color: #ACACAC;
}

.outro-block__form-phone-group input[readonly]:focus {
    border-bottom-color: #ACACAC;
}

.outro-block__form-phone-group .input__error {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-top: 4px;
    padding-left: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    font-size: 0.875em;
    line-height: 149.2%;
    color: #CA2121;
}

.outro-block__form-phone-group:focus-within label {
    color: #2C6BBE;
}

.outro-block__form-phone-group:focus-within[data-readonly="true"] label {
    color: #575757;
}

.outro-block__form-phone-group[data-valid="true"] input {
    color: #575757;
    border-bottom-color: #3AA928;
}

.outro-block__form-phone-group[data-valid="false"] label {
    color: #CA2121;
}

.outro-block__form-phone-group[data-valid="false"] input {
    color: #575757;
    border-bottom-color: #CA2121;
}

.outro-block__form-phone-group[data-disabled="true"] {
    opacity: 0.6;
}

.outro-block__form-phone-group[data-disabled="true"] input {
    cursor: not-allowed;
    background-color: #F7F7F7;
}

.outro-block__form-phone-group[data-disabled="true"] input:not(:focus) {
    color: #575757;
}

.outro-block__form-phone-group[data-disabled="true"] input:hover {
    border-bottom-color: #ACACAC;
}

.outro-block__form-comment-group {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-bottom: 26px;
}

.outro-block__form-comment-group label {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 4px;
    padding-left: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1em;
    line-height: 150%;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.outro-block__form-comment-group textarea {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    border-radius: 4px;
    border: none;
    border-bottom: 2px solid #ACACAC;
    padding: 13px 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    font-size: 1.25em;
    line-height: 140%;
    color: #575757;
    background-color: #FFFFFF;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    -webkit-transition-property: border-bottom-color;
    transition-property: border-bottom-color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.outro-block__form-comment-group textarea::-webkit-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.outro-block__form-comment-group textarea::-moz-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -moz-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.outro-block__form-comment-group textarea:-ms-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -ms-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.outro-block__form-comment-group textarea::-ms-input-placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -ms-transition-property: color;
    transition-property: color;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.outro-block__form-comment-group textarea::placeholder {
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    line-height: 140%;
    color: #ACACAC;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.outro-block__form-comment-group textarea:-webkit-autofill, .outro-block__form-comment-group textarea:-webkit-autofill:hover, .outro-block__form-comment-group textarea:-webkit-autofill:active, .outro-block__form-comment-group textarea:-webkit-autofill:focus {
    -webkit-box-shadow: inset 0 0 0 50px #FFFFFF;
    box-shadow: inset 0 0 0 50px #FFFFFF;
    -webkit-text-fill-color: #2C6BBE;
}

.outro-block__form-comment-group textarea:hover {
    border-bottom-color: #757575;
}

.outro-block__form-comment-group textarea:hover::-webkit-input-placeholder {
    color: #757575;
}

.outro-block__form-comment-group textarea:hover::-moz-placeholder {
    color: #757575;
}

.outro-block__form-comment-group textarea:hover:-ms-input-placeholder {
    color: #757575;
}

.outro-block__form-comment-group textarea:hover::-ms-input-placeholder {
    color: #757575;
}

.outro-block__form-comment-group textarea:hover::placeholder {
    color: #757575;
}

.outro-block__form-comment-group textarea:focus {
    border-bottom-color: #2C6BBE;
}

.outro-block__form-comment-group textarea:not(:focus) {
    color: #2C6BBE;
}

.outro-block__form-comment-group textarea[readonly] {
    color: #575757;
    background-color: #F7F7F7;
}

.outro-block__form-comment-group textarea[readonly]:hover {
    border-bottom-color: #ACACAC;
}

.outro-block__form-comment-group textarea[readonly]:focus {
    border-bottom-color: #ACACAC;
}

.outro-block__form-comment-group .input__error {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-top: 4px;
    padding-left: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    font-size: 0.875em;
    line-height: 149.2%;
    color: #CA2121;
}

.outro-block__form-comment-group:focus-within label {
    color: #2C6BBE;
}

.outro-block__form-comment-group:focus-within[data-readonly="true"] label {
    color: #575757;
}

.outro-block__form-comment-group[data-valid="true"] input {
    color: #575757;
    border-bottom-color: #3AA928;
}

.outro-block__form-comment-group[data-valid="false"] label {
    color: #CA2121;
}

.outro-block__form-comment-group[data-valid="false"] input {
    color: #575757;
    border-bottom-color: #CA2121;
}

.outro-block__form-comment-group[data-disabled="true"] {
    opacity: 0.6;
}

.outro-block__form-comment-group[data-disabled="true"] input {
    cursor: not-allowed;
    background-color: #F7F7F7;
}

.outro-block__form-comment-group[data-disabled="true"] input:not(:focus) {
    color: #575757;
}

.outro-block__form-comment-group[data-disabled="true"] input:hover {
    border-bottom-color: #ACACAC;
}

.outro-block__form-button {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 14px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #FFFFFF;
    background-color: #CA2121;
    -webkit-box-shadow: 0px 8px 8px rgba(201, 17, 17, 0.15);
    box-shadow: 0px 8px 8px rgba(201, 17, 17, 0.15);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition-property: background-color, -webkit-box-shadow;
    transition-property: background-color, -webkit-box-shadow;
    transition-property: box-shadow, background-color;
    transition-property: box-shadow, background-color, -webkit-box-shadow;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    font-size: 18px;
}

.outro-block__form-button:hover {
    background-color: #AD1414;
}

.outro-block__form-button[data-active=true] {
    padding: 14px 33px;
}

.outro-block__form-button[data-active=true] .button__badge {
    width: 20px;
    margin-right: 10px;
    visibility: visible;
    opacity: 1;
}

.outro-block__form-button[data-success=true] {
    padding: 14px 48px;
    background-color: #3AA928;
    -webkit-box-shadow: 3px 4px 7px rgba(42, 130, 28, 0.7) inset;
    box-shadow: 3px 4px 7px rgba(42, 130, 28, 0.7) inset;
}

.outro-block__form-button[data-success=true] .button__badge {
    width: 0;
    margin-right: 0;
    visibility: hidden;
    opacity: 0;
}

.outro-block__form-button .button__badge {
    width: 0;
    height: 20px;
    margin-right: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.outro-block__form-button .button__spinner {
    -webkit-animation: rotator 1.4s linear infinite;
    animation: rotator 1.4s linear infinite;
}

.outro-block__form-button .button__path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
    stroke: #FFFFFF;
    -webkit-animation: dash 1.4s ease-in-out infinite;
    animation: dash 1.4s ease-in-out infinite;
}

.outro-block__form-button .button__icon {
    width: 10px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 12px;
}

.outro-block__form-button[disabled] {
    background-color: #ACACAC;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: not-allowed;
}

.outro-block__form-info {
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    font-family: "Roboto", "Arial", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #4D4D4D;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.875em;
    line-height: 142.9%;
    color: #FFFFFF;
}

.outro-block__form-info a {
    color: #FFFFFF;
}

.pol .js-pola-open {
    cursor: pointer;
}

.pol .pol-click {
    text-decoration: underline;
    margin-top: 0;
}

.pol .pol-slide {
    display: none;
    margin-top: 5px;
}

.pol .pol-slide span {
    display: block;
}

.pol a {
    color: #666;
}

.pol__white-link a {
    color: #FFFFFF;
}

.pol .pol-slide .polago {
    text-decoration: underline;
    display: inline-block;
    cursor: pointer;
}

@media screen and (max-width: 1440px) {
    .outro-block__form {
        margin-bottom: 8px;
    }

    .outro-block__form-phone-group label {
        font-size: 1em;
        line-height: 150%;
    }

    .outro-block__form-phone-group input {
        font-size: 1.125em;
        line-height: 140%;
    }

    .outro-block__form-phone-group .input__error {
        font-size: 0.875em;
        line-height: 149.2%;
    }

    .outro-block__form-phone-group {
        margin-bottom: 20px;
    }

    .outro-block__form-comment-group label {
        font-size: 1em;
        line-height: 150%;
    }

    .outro-block__form-comment-group textarea {
        font-size: 1.125em;
        line-height: 140%;
    }

    .outro-block__form-comment-group .input__error {
        font-size: 0.875em;
        line-height: 149.2%;
    }

    .outro-block__form-comment-group {
        margin-bottom: 26px;
    }

    .outro-block__form-info {
        font-size: 0.875em;
        line-height: 142.9%;
    }
}

@media screen and (max-width: 1024px) {
    .outro-block__form-phone-group label {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .outro-block__form {
        margin-bottom: 12px;
    }

    .outro-block__form {
        padding: 30px 26px;
    }

    .outro-block__form-phone-group label {
        font-size: 1.25em;
        line-height: 150%;
    }

    .outro-block__form-phone-group {
        margin-bottom: 24px;
    }

    .outro-block__form-phone-group {
        margin-bottom: 20px;
    }

    .outro-block__form-comment-group label {
        font-size: 1.25em;
        line-height: 150%;
    }

    .outro-block__form-comment-group {
        margin-bottom: 30px;
    }

    .outro-block__form-comment-group {
        margin-bottom: 40px;
    }

    .outro-block__form-info {
        font-size: 1em;
        line-height: 142.9%;
    }

    .outro-block__form-info {
        font-size: 14px;
    }
}

@media screen and (max-width: 414px) {
    .outro-block__form {
        margin-bottom: 8px;
    }

    .outro-block__form {
        background: #FFFFFF;
        padding: 20px;
    }

    .outro-block__form-phone-group label {
        font-size: 1.125em;
        line-height: 150%;
    }

    .outro-block__form-phone-group label {
        font-size: 16px;
    }

    .outro-block__form-phone-group input {
        font-size: 1.375em;
        line-height: 140%;
    }

    .outro-block__form-phone-group .input__error {
        font-size: 0.875em;
        line-height: 149.2%;
    }

    .outro-block__form-phone-group {
        margin-bottom: 16px;
    }

    .outro-block__form-phone-group {
        margin-bottom: 12px;
    }

    .outro-block__form-phone-group {
        width: auto;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .outro-block__form-phone-group label {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        margin-bottom: 4px;
        padding-left: 4px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        color: #4D4D4D;
        text-transform: none;
        letter-spacing: 0;
        font-size: 1em;
        line-height: 150%;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.15s;
        transition-duration: 0.15s;
        -webkit-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-phone-group input {
        width: auto;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        border-radius: 4px;
        border: none;
        border-bottom: 2px solid #ACACAC;
        padding: 13px 12px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        color: #4D4D4D;
        text-transform: none;
        font-size: 1.25em;
        line-height: 140%;
        color: #575757;
        background-color: #F7F7F7;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        resize: none;
        -webkit-transition-property: border-bottom-color;
        transition-property: border-bottom-color;
        -webkit-transition-duration: 0.15s;
        transition-duration: 0.15s;
        -webkit-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-phone-group input::-webkit-input-placeholder {
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        line-height: 140%;
        color: #ACACAC;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.15s;
        transition-duration: 0.15s;
        -webkit-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-phone-group input::-moz-placeholder {
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        line-height: 140%;
        color: #ACACAC;
        -moz-transition-property: color;
        transition-property: color;
        transition-duration: 0.15s;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-phone-group input:-ms-input-placeholder {
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        line-height: 140%;
        color: #ACACAC;
        -ms-transition-property: color;
        transition-property: color;
        transition-duration: 0.15s;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-phone-group input::-ms-input-placeholder {
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        line-height: 140%;
        color: #ACACAC;
        -ms-transition-property: color;
        transition-property: color;
        transition-duration: 0.15s;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-phone-group input::placeholder {
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        line-height: 140%;
        color: #ACACAC;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.15s;
        transition-duration: 0.15s;
        -webkit-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-phone-group input:-webkit-autofill, .outro-block__form-phone-group input:-webkit-autofill:hover, .outro-block__form-phone-group input:-webkit-autofill:active, .outro-block__form-phone-group input:-webkit-autofill:focus {
        -webkit-box-shadow: inset 0 0 0 50px #F7F7F7;
        box-shadow: inset 0 0 0 50px #F7F7F7;
        -webkit-text-fill-color: #2C6BBE;
    }

    .outro-block__form-phone-group input:hover {
        border-bottom-color: #757575;
    }

    .outro-block__form-phone-group input:hover::-webkit-input-placeholder {
        color: #757575;
    }

    .outro-block__form-phone-group input:hover::-moz-placeholder {
        color: #757575;
    }

    .outro-block__form-phone-group input:hover:-ms-input-placeholder {
        color: #757575;
    }

    .outro-block__form-phone-group input:hover::-ms-input-placeholder {
        color: #757575;
    }

    .outro-block__form-phone-group input:hover::placeholder {
        color: #757575;
    }

    .outro-block__form-phone-group input:focus {
        border-bottom-color: #2C6BBE;
    }

    .outro-block__form-phone-group input:not(:focus) {
        color: #2C6BBE;
    }

    .outro-block__form-phone-group input[readonly] {
        color: #575757;
        background-color: #F7F7F7;
    }

    .outro-block__form-phone-group input[readonly]:hover {
        border-bottom-color: #ACACAC;
    }

    .outro-block__form-phone-group input[readonly]:focus {
        border-bottom-color: #ACACAC;
    }

    .outro-block__form-phone-group .input__error {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        margin-top: 4px;
        padding-left: 4px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        color: #4D4D4D;
        text-transform: none;
        font-size: 0.875em;
        line-height: 149.2%;
        color: #CA2121;
    }

    .outro-block__form-phone-group:focus-within label {
        color: #2C6BBE;
    }

    .outro-block__form-phone-group:focus-within[data-readonly="true"] label {
        color: #575757;
    }

    .outro-block__form-phone-group[data-valid="true"] input {
        color: #575757;
        border-bottom-color: #3AA928;
    }

    .outro-block__form-phone-group[data-valid="false"] label {
        color: #CA2121;
    }

    .outro-block__form-phone-group[data-valid="false"] input {
        color: #575757;
        border-bottom-color: #CA2121;
    }

    .outro-block__form-phone-group[data-disabled="true"] {
        opacity: 0.6;
    }

    .outro-block__form-phone-group[data-disabled="true"] input {
        cursor: not-allowed;
        background-color: #F7F7F7;
    }

    .outro-block__form-phone-group[data-disabled="true"] input:not(:focus) {
        color: #575757;
    }

    .outro-block__form-phone-group[data-disabled="true"] input:hover {
        border-bottom-color: #ACACAC;
    }

    .outro-block__form-phone-group input {
        font-size: 20px !important;
    }

    .outro-block__form-phone-group input::-webkit-input-placeholder {
        font-size: 100% !important;
    }

    .outro-block__form-phone-group input::-moz-placeholder {
        font-size: 100% !important;
    }

    .outro-block__form-phone-group input:-ms-input-placeholder {
        font-size: 100% !important;
    }

    .outro-block__form-phone-group input::-ms-input-placeholder {
        font-size: 100% !important;
    }

    .outro-block__form-phone-group input::placeholder {
        font-size: 100% !important;
    }

    .outro-block__form-comment-group label {
        font-size: 1.125em;
        line-height: 150%;
    }

    .outro-block__form-comment-group label {
        font-size: 16px;
    }

    .outro-block__form-comment-group textarea {
        font-size: 1.375em;
        line-height: 140%;
    }

    .outro-block__form-comment-group .input__error {
        font-size: 0.875em;
        line-height: 149.2%;
    }

    .outro-block__form-comment-group {
        margin-bottom: 20px;
    }

    .outro-block__form-comment-group {
        margin-bottom: 28px;
    }

    .outro-block__form-comment-group {
        width: auto;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .outro-block__form-comment-group label {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        margin-bottom: 4px;
        padding-left: 4px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        color: #4D4D4D;
        text-transform: none;
        letter-spacing: 0;
        font-size: 1em;
        line-height: 150%;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.15s;
        transition-duration: 0.15s;
        -webkit-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-comment-group textarea {
        width: auto;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        border-radius: 4px;
        border: none;
        border-bottom: 2px solid #ACACAC;
        padding: 13px 12px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        color: #4D4D4D;
        text-transform: none;
        font-size: 1.25em;
        line-height: 140%;
        color: #575757;
        background-color: #F7F7F7;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        resize: none;
        -webkit-transition-property: border-bottom-color;
        transition-property: border-bottom-color;
        -webkit-transition-duration: 0.15s;
        transition-duration: 0.15s;
        -webkit-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-comment-group textarea::-webkit-input-placeholder {
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        line-height: 140%;
        color: #ACACAC;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.15s;
        transition-duration: 0.15s;
        -webkit-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-comment-group textarea::-moz-placeholder {
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        line-height: 140%;
        color: #ACACAC;
        -moz-transition-property: color;
        transition-property: color;
        transition-duration: 0.15s;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-comment-group textarea:-ms-input-placeholder {
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        line-height: 140%;
        color: #ACACAC;
        -ms-transition-property: color;
        transition-property: color;
        transition-duration: 0.15s;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-comment-group textarea::-ms-input-placeholder {
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        line-height: 140%;
        color: #ACACAC;
        -ms-transition-property: color;
        transition-property: color;
        transition-duration: 0.15s;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-comment-group textarea::placeholder {
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 100%;
        line-height: 140%;
        color: #ACACAC;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.15s;
        transition-duration: 0.15s;
        -webkit-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
    }

    .outro-block__form-comment-group textarea:-webkit-autofill, .outro-block__form-comment-group textarea:-webkit-autofill:hover, .outro-block__form-comment-group textarea:-webkit-autofill:active, .outro-block__form-comment-group textarea:-webkit-autofill:focus {
        -webkit-box-shadow: inset 0 0 0 50px #F7F7F7;
        box-shadow: inset 0 0 0 50px #F7F7F7;
        -webkit-text-fill-color: #2C6BBE;
    }

    .outro-block__form-comment-group textarea:hover {
        border-bottom-color: #757575;
    }

    .outro-block__form-comment-group textarea:hover::-webkit-input-placeholder {
        color: #757575;
    }

    .outro-block__form-comment-group textarea:hover::-moz-placeholder {
        color: #757575;
    }

    .outro-block__form-comment-group textarea:hover:-ms-input-placeholder {
        color: #757575;
    }

    .outro-block__form-comment-group textarea:hover::-ms-input-placeholder {
        color: #757575;
    }

    .outro-block__form-comment-group textarea:hover::placeholder {
        color: #757575;
    }

    .outro-block__form-comment-group textarea:focus {
        border-bottom-color: #2C6BBE;
    }

    .outro-block__form-comment-group textarea:not(:focus) {
        color: #2C6BBE;
    }

    .outro-block__form-comment-group textarea[readonly] {
        color: #575757;
        background-color: #F7F7F7;
    }

    .outro-block__form-comment-group textarea[readonly]:hover {
        border-bottom-color: #ACACAC;
    }

    .outro-block__form-comment-group textarea[readonly]:focus {
        border-bottom-color: #ACACAC;
    }

    .outro-block__form-comment-group .input__error {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        margin-top: 4px;
        padding-left: 4px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        font-family: "Roboto", "Arial", sans-serif;
        font-style: normal;
        font-weight: normal;
        color: #4D4D4D;
        text-transform: none;
        font-size: 0.875em;
        line-height: 149.2%;
        color: #CA2121;
    }

    .outro-block__form-comment-group:focus-within label {
        color: #2C6BBE;
    }

    .outro-block__form-comment-group:focus-within[data-readonly="true"] label {
        color: #575757;
    }

    .outro-block__form-comment-group[data-valid="true"] input {
        color: #575757;
        border-bottom-color: #3AA928;
    }

    .outro-block__form-comment-group[data-valid="false"] label {
        color: #CA2121;
    }

    .outro-block__form-comment-group[data-valid="false"] input {
        color: #575757;
        border-bottom-color: #CA2121;
    }

    .outro-block__form-comment-group[data-disabled="true"] {
        opacity: 0.6;
    }

    .outro-block__form-comment-group[data-disabled="true"] input {
        cursor: not-allowed;
        background-color: #F7F7F7;
    }

    .outro-block__form-comment-group[data-disabled="true"] input:not(:focus) {
        color: #575757;
    }

    .outro-block__form-comment-group[data-disabled="true"] input:hover {
        border-bottom-color: #ACACAC;
    }

    .outro-block__form-comment-group textarea {
        font-size: 20px !important;
    }

    .outro-block__form-comment-group textarea::-webkit-input-placeholder {
        font-size: 100% !important;
    }

    .outro-block__form-comment-group textarea::-moz-placeholder {
        font-size: 100% !important;
    }

    .outro-block__form-comment-group textarea:-ms-input-placeholder {
        font-size: 100% !important;
    }

    .outro-block__form-comment-group textarea::-ms-input-placeholder {
        font-size: 100% !important;
    }

    .outro-block__form-comment-group textarea::placeholder {
        font-size: 100% !important;
    }

    .outro-block__form-info {
        font-size: 0.875em;
        line-height: 142.9%;
    }

    .outro-block__form-info {
        font-size: 12px;
    }
}

@media screen and (max-width: 414px) and (max-width: 1440px) {
    .outro-block__form-phone-group label {
        font-size: 1em;
        line-height: 150%;
    }

    .outro-block__form-phone-group input {
        font-size: 1.125em;
        line-height: 140%;
    }

    .outro-block__form-phone-group .input__error {
        font-size: 0.875em;
        line-height: 149.2%;
    }

    .outro-block__form-comment-group label {
        font-size: 1em;
        line-height: 150%;
    }

    .outro-block__form-comment-group textarea {
        font-size: 1.125em;
        line-height: 140%;
    }

    .outro-block__form-comment-group .input__error {
        font-size: 0.875em;
        line-height: 149.2%;
    }
}

@media screen and (max-width: 414px) and (max-width: 320px) {
    .outro-block__form-phone-group label {
        font-size: 1em;
        line-height: 150%;
    }

    .outro-block__form-phone-group label {
        font-size: 16px;
    }

    .outro-block__form-phone-group input {
        font-size: 1.25em;
        line-height: 140%;
    }

    .outro-block__form-phone-group .input__error {
        font-size: 0.75em;
        line-height: 120%;
    }

    .outro-block__form-comment-group label {
        font-size: 1em;
        line-height: 150%;
    }

    .outro-block__form-comment-group label {
        font-size: 16px;
    }

    .outro-block__form-comment-group textarea {
        font-size: 1.25em;
        line-height: 140%;
    }

    .outro-block__form-comment-group .input__error {
        font-size: 0.75em;
        line-height: 120%;
    }
}

@media screen and (max-width: 414px) and (max-width: 414px) {
    .outro-block__form-phone-group label {
        font-size: 1.125em;
        line-height: 150%;
    }

    .outro-block__form-phone-group label {
        font-size: 16px;
    }

    .outro-block__form-phone-group input {
        font-size: 1.375em;
        line-height: 140%;
    }

    .outro-block__form-phone-group .input__error {
        font-size: 0.875em;
        line-height: 149.2%;
    }

    .outro-block__form-comment-group label {
        font-size: 1.125em;
        line-height: 150%;
    }

    .outro-block__form-comment-group label {
        font-size: 16px;
    }

    .outro-block__form-comment-group textarea {
        font-size: 1.375em;
        line-height: 140%;
    }

    .outro-block__form-comment-group .input__error {
        font-size: 0.875em;
        line-height: 149.2%;
    }
}

@media screen and (max-width: 414px) and (max-width: 768px) {
    .outro-block__form-phone-group label {
        font-size: 1.25em;
        line-height: 150%;
    }

    .outro-block__form-comment-group label {
        font-size: 1.25em;
        line-height: 150%;
    }
}

@media screen and (max-width: 320px) {
    .outro-block__form {
        margin-bottom: 6px;
    }

    .outro-block__form-phone-group label {
        font-size: 1em;
        line-height: 150%;
    }

    .outro-block__form-phone-group label {
        font-size: 16px;
    }

    .outro-block__form-phone-group input {
        font-size: 1.25em;
        line-height: 140%;
    }

    .outro-block__form-phone-group .input__error {
        font-size: 0.75em;
        line-height: 120%;
    }

    .outro-block__form-phone-group {
        margin-bottom: 12px;
    }

    .outro-block__form-phone-group {
        margin-bottom: 8px;
    }

    .outro-block__form-phone-group input {
        font-size: 18px !important;
    }

    .outro-block__form-comment-group label {
        font-size: 1em;
        line-height: 150%;
    }

    .outro-block__form-comment-group label {
        font-size: 16px;
    }

    .outro-block__form-comment-group textarea {
        font-size: 1.25em;
        line-height: 140%;
    }

    .outro-block__form-comment-group .input__error {
        font-size: 0.75em;
        line-height: 120%;
    }

    .outro-block__form-comment-group {
        margin-bottom: 16px;
    }

    .outro-block__form-comment-group {
        margin-bottom: 24px;
    }

    .outro-block__form-comment-group textarea {
        font-size: 18px !important;
    }

    .outro-block__form-info {
        font-size: 0.875em;
        line-height: 142.9%;
    }
}
/* End */
/* /local/templates/is_new/components/siv/order.form/intro-block/style.css?175397171715118 */
/* /local/templates/is_new/components/bitrix/news.list/private_plans_new/style.css?175397171627216 */
/* /local/templates/is_new/components/siv/order.form/question-block/style.css?175397171711763 */
/* /local/templates/is_new/components/bitrix/news.list/mobile_app/style.css?1753971716558 */
/* /local/templates/is_new/components/bitrix/news.list/cctv_faq/style.css?17539717164642 */
/* /local/templates/is_new/components/siv/order.form/outro-block/style.css?175397171742863 */
