

/* Start:/assets/css/section-menu.css?16987239691053*/
/*Меню раздела*/
.section-menu{
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    overflow-x: auto;
}
.section-menu::-webkit-scrollbar {
    height: 5px;
}
.section-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.section-menu::-webkit-scrollbar-thumb {
    background: #adaaaa;
    border-radius: 4px;
}
.section-menu__item{
    margin-right: 40px;
    white-space: nowrap;
}
.section-menu__item:last-child{
    margin-right: 0;
}
.section-menu__item:hover{
    color: var(--orange-color);
}
.section-menu__item--current{
    color: var(--orange-color);
    border-color: var(--orange-color);
}

.section-menu--md .section-menu__item:not(:last-child){
    margin-right: 27px;
}

@media screen and (max-width: 1024px){
    .section-menu__item{
        margin-right: 20px;
    }
    .section-menu--desktop{
        display: none;
    }
}
@media screen and (max-width: 768px){
    .section-menu{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
/* End */


/* Start:/assets/css/dropdown.css?16987239694367*/
/*Выпадающий список*/
.dropdown{
    width: fit-content;
    position: relative;
}
.dropdown__btn{
    background-color: #F6F6F6;
    padding: 15px 76px 15px 25px;
    color: var(--dark-blue-color);
    border: none;
    border-radius: 32px;
    position: relative;
    transition: .3s;
    text-align: left;
}
.dropdown__btn::before{
    content: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xLjY2NjYzIDEuMzMzMjVMNC45OTk5NiA0LjY2NjU5TDguMzMzMjkgMS4zMzMyNSIgc3Ryb2tlPSIjMDQxMjI5IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=');
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}
.dropdown__btn:hover{
    background-color: #DADDE7;
}
.dropdown__wrap{
    background-color: #F6F6F6;
    border-radius: 12px;
    min-width: 100%;
    width: max-content;
    max-width: 300px;
    position: absolute;
    top: 100%;
    margin-top: 8px;
    z-index: 10;
    display: none;
    overflow: hidden;
    padding-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.dropdown__wrap-inner{
    position: relative;
    max-height: 130px;
    overflow-y: auto;
}
.dropdown__wrap-inner::-webkit-scrollbar{
    width: 5px;
    background-color: transparent;
}
.dropdown__wrap-inner::-webkit-scrollbar-thumb{
    background: rgba(4, 18, 41, .3);
}

.dropdown__wrap.show{
    display: block;
}
.dropdown__item input{
    display: none;
}
.dropdown__item label, .dropdown__link{
    font-size: 15px;
    line-height: 140%;
    padding: 8px 25px;
    transition: .3s;
    cursor: pointer;
    display: block;
}
.dropdown__item.disable label, .dropdown__item input:checked~label, .dropdown__link--current{
    color: #A8A9AD;
    pointer-events: none;
}
.dropdown__item:not(.disable):hover label, .dropdown__link:not(.dropdown__link--current):hover{
    background-color: #DADDE7;
}
.dropdown__item:hover input:checked~label{
    background-color: transparent;
}

@media screen and (max-width:425px) {
    .dropdown__wrap-inner{
        max-height: none;
    }
}

@media screen and (min-width:1025px) {
    .dropdown--mobile{
        display: none;
    }
}

.dropdown--section{
    width: 50%;
    margin-bottom: 24px;
    margin-top: 8px;
}
.dropdown--section .dropdown__btn{
    width: 100%;
}
.dropdown--section .dropdown__wrap-inner{
    max-height: 200px;
}
@media screen and (max-width:768px){
    .dropdown--section{
        width: 100%;
    }
    .dropdown--section .dropdown__wrap-inner{
        max-height: 350px;
    }
}

.sub-list{
    padding-left: 25px;
}
.sub-list__link{
    font-size: 12px;
    line-height: normal;
}

@media screen and (min-width:769px) {
    .dropdown--desktop-destroy{
        width: unset;
    }
    .dropdown--desktop-destroy .dropdown__btn{
        display: none;
    }
    .dropdown--desktop-destroy .dropdown__wrap{
        display: block;
        position: relative;
        background: no-repeat;
        padding: 0;
        margin: 0;
        max-width: unset;
        width: auto;
        border-radius: 0;
        z-index: 1;
    }
    .dropdown--desktop-destroy .dropdown__menu{
        display: flex;
        gap: 20px;
    }
    .dropdown--desktop-destroy .dropdown__link{
        padding: unset;
    }
    .dropdown--desktop-destroy .dropdown__link:not(.dropdown__link--current):hover {
        background: none;
    }
    .dropdown--desktop-destroy .dropdown__wrap-inner{
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .dropdown--desktop-destroy .dropdown__wrap-inner::-webkit-scrollbar {
        height: 5px;
    }
    .dropdown--desktop-destroy .dropdown__wrap-inner::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    .dropdown--desktop-destroy .dropdown__wrap-inner::-webkit-scrollbar-thumb {
        background: #adaaaa;
        border-radius: 4px;
    }
    .dropdown--desktop-destroy .dropdown__item input:checked~label, .dropdown__link--current {
        color: var(--orange-color);
    }
}
@media screen and (max-width:768px) {
    .dropdown--desktop-destroy, .dropdown--desktop-destroy .dropdown__btn{
        width: 100%;
    }
    .dropdown--desktop-destroy .dropdown__wrap-inner{
        max-height: unset;
    }
}
/* End */


/* Start:/assets/css/heroblock.css?1698723969730*/
.heroblock{
    padding-top: 97px;
    padding-bottom: 97px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #E3EEF3;
}
.heroblock__descr{
    margin-top: 24px;
}
.heroblock--md{
    padding-top: 80px;
    padding-bottom: 80px;
}
.heroblock__content--center{
    text-align: center;
}
.heroblock__title{
    margin-bottom: 16px;
}

@media screen and (max-width:576px) {
    .heroblock__content .button{
        width: 100%;
    }
    .heroblock__content h1 br, .heroblock__content h2 br, .heroblock__content p br, .heroblock__content .text-large br{
        display: none;
    }
}

.heroblock__content.mark-list ul li:not(:last-child){
    margin-bottom: 8px;
}
/* End */


/* Start:/assets/css/company-info.css?17115985363589*/
.company-info__title{
    margin-bottom: 40px;
}
.company-info__list{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.company-info__item{
    width: calc(25% - 12px);
    min-width: 200px;
}

.company-info__img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 156px;
    min-width: 100px;
    height: 156px;
    border-radius: 50%;
    background: #F1FDFF;
    box-shadow: 3px 1px 3px #F2F9FA, 6px 6px 7px #FFFFFF, 9px 8px 7px #F2F9FA, inset -2px -8px 13px #FFFFFF, inset 0px 4px 10px #C9F8FF;
    transition: all linear .15s;
}

.company-info__img:hover {
    background: rgba(244, 119, 53, 0.1);
    box-shadow: 3px 1px 3px #F2F9FA, 6px 6px 7px #FFFFFF, 9px 8px 7px #F2F9FA, inset -2px -8px 13px #FFFFFF, inset 0px 4px 10px rgba(244, 119, 53, 0.1);
    transition: all linear .15s;
}
.company-info__img:hover path {
    stroke: var(--orange-color);
    transition: all linear .15s;
}
.company-info__content{
    margin-top: 40px;
}
.company-info__name{
    margin-bottom: 16px;
}
.company-info__text{
    padding-right: 10px;
}
.company-info__btn{
    margin-top: 40px;
}

@media screen and (min-width:1024px) {
    .company-info__title-90{
        width: 90%;
    }
}

.company-info__item--horizontal{
    width: calc(50% - 12px);
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.company-info__item--horizontal .company-info__img{
    width: 50px;
    min-width: 50px;
    height: 50px;
    box-shadow: 0.846154px 0.282051px 0.846154px #F2F9FA, 1.69231px 1.69231px 1.97436px #FFFFFF, 2.53846px 2.25641px 1.97436px #F2F9FA, inset -0.564103px -2.25641px 3.66667px #FFFFFF, inset 0px 1.12821px 2.82051px #C9F8FF;
}
.company-info__item--horizontal .company-info__img svg{
    width: 24px;
    height: 24px;
}
.company-info__item--horizontal .company-info__content {
    margin-left: 16px;
    margin-top: 0;
}
.company-info__item--horizontal .company-info__content p{
    font-size: 14px;
}

@media screen and (max-width:880px) {
    .col-md-6 .company-info__item--horizontal{
        min-width: 130px;
    }
}

@media screen and (max-width:768px) {
    .company-info__list{
        gap: 0px;
    }
    .company-info__item {
        width: calc(50% - 12px);
        margin-bottom: 24px;
        text-align: center;
    }
    .company-info__img{
        height: 120px;
        width: 120px;
        margin-inline: auto;
    }
    .company-info__item--horizontal .company-info__img{
        margin: 0;
    }
    .company-info__item--horizontal{
        text-align: left;
    }
}
@media screen and (max-width:500px) {
    .company-info__item {
        width: 100%;
        display: flex;
        text-align: left;
    }
    .company-info__item--align{
        align-items: center;
    }
    .company-info__img{
        height: 100px;
        width: 100px;
        margin: 0;
    }
    .company-info__img svg{
        height: 30px;
    }
    .company-info__content {
        margin-top: 0;
        margin-left: 24px;
    }
    .company-info__name{
        margin-bottom: 8px;
    }
    .company-info__btn {
        margin-top: 20px;
    }
    .company-info__item--horizontal .company-info__content p{
        font-size: 12px;
    }
}

@media screen and (min-width: 1280px) {
    .company-info__list--middle .company-info__item {
        width: calc(19% - 12px);
    }

    .company-info__list--middle .company-info__img {
        height: 120px;
        width: 120px;
    }

    .company-info__list--middle .company-info__content {
        font-size: 12px;
        margin-top: 24px;
    }
}
/* End */


/* Start:/assets/css/directions-list.css?16987239693043*/
.directions-list__item:not(:last-child){
    margin-bottom: 120px;
}
.direction-card{
    display: flex;
    gap: 24px;
    height: fit-content;
}
.direction-card__content, .direction-card__img{
    width: 100%;
}
.direction-card__img{
    width: 100%;
    object-fit: cover;
    transition: all 1s ease;
}
.direction-card__img img{
    width: 100%;
    object-fit: cover;
}
.direction-card__title{
    margin-bottom: 16px;
}

.direction-card__link{
    margin-top: 40px;
}

.direction-card__links{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}


@media screen and (min-width:1024px) {
    .direction-card__text{
        width: 80%;
    }
}

@media screen and (min-width:769px) {
    .direction-card--big .direction-card__content{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .direction-card--big .direction-card__title{
        width: 30%;
    }
    .direction-card--big .direction-card__body{
        width: 50%;
    }
    .direction-card--big .direction-card__text{
        width: 100%;
    }
}

@media screen and (min-width:601px){
    .direction-card__img{
        width: 50%;
        flex: 0 0 50%;
        max-height: 450px;
    }
    .direction-card__img img{
        max-height: 450px;
    }
    .direction-card--big{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }

    .direction-card--big .direction-card__img{
        width: 100%;
        flex: auto;
        max-height: 600px;
        max-width: 100%;
    }
    .direction-card--big .direction-card__img img{
        max-height: 600px;
    }

    .direction-card__img--tall{
        max-height: 560px;
    }
}

@media screen and (max-width:768px) {
    .direction-card__img{
        width: 40%;
        flex: 0 0 40%;
    }
    .directions-list__item:not(:last-child){
        margin-bottom: 60px;
    }
}

@media screen and (max-width:600px) {
    .direction-card{
        flex-direction: column;
    }
    .direction-card__img{
        width: 100%;
        flex: auto;
        height: 250px;
    }
    .direction-card__img img{
        height: 250px;
    }
    .direction-card__link:not(.button){
        display: none;
    }
    .direction-card__title br{
        display: none;
    }
}

@media screen and (min-width: 1025px) {
    .direction-card--reverse .direction-card__content {
        margin-left: 95px;
    }
}

@media screen and (min-width: 601px) {
    .direction-card--reverse {
        flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .direction-card--reverse .direction-card__text {
        width: 100%;
    }
}
/* End */


/* Start:/assets/css/other-pages.css?1698723969849*/
.other-pages__col{
    position: relative;
}
.other-pages__item{
    background: rgba(240, 241, 245, 0.8);
    padding: 32px 40px 40px;
    height: 100%;
}
.other-pages__item::after{
    content: '';
    position: absolute;
    height: 100%;
    width: calc(100% - 24px);
    left: 12px;
    top: 0;
    background: rgba(240, 241, 245, 0.8);
    z-index: -1;
}
.other-pages__title{
    margin-bottom: 16px;
}
.other-pages__link{
    margin-top: 40px;
}
.other-pages__link.btn-link:hover{
    color: #fff;
}

@media screen and (max-width:1024px) and (min-width:769px) {
    .other-pages__title{
        font-size: 33px;
    }
}

@media screen and (max-width: 768px){
    .other-pages__col:not(:last-child){
        margin-bottom: 24px;
    }
}

@media screen and (max-width:425px) {
    .other-pages__link:not(.button){
        display: none;
    }
}
/* End */


/* Start:/local/templates/helicon-corp/components/bitrix/news.list/news-block/style.css?16987239691503*/
.news-card:hover .news-card__title {
    color: var(--orange-color);
}

.news-card:hover .news-card__subtitle {
    color: var(--orange-color);
}

.news-card__img {
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.news-card__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-card__labels {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.news-card__labels-item {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    background-color: #fff;
    color: var(--orange-color);
    padding: 6px 8px;
}

.news-card__date {
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--mild-grey-color);
}

.news-card__title {
    margin-bottom: 8px;
    width: 85%;
    font-size: 19px;
    transition: color 0.5s ease;
}

.news-card__subtitle {
    width: 85%;
    font-size: 15px;
    transition: color 0.5s ease;
}

@media screen and (max-width: 640px) {
    .news-slider .slider-head {
        margin-bottom: 0;
    }
    .news-slider .slider-head__nav{
        display: none;
    }
    .news-slider__wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .news-slider__item:not(:first-child, :nth-child(2), :nth-child(3)) {
        display: none;
    }
}

@media screen and (max-width: 425px) {
    .news-slider .slider-head {
        margin-bottom: 0;
    }
    .news-card__img {
        margin-bottom: 16px;
    }
    .news-card__title {
        font-size: 18px;
    }
}
/* End */


/* Start:/local/templates/helicon-corp/components/general-itech/no.logic/form_question/style.css?1698723969798*/
.question-section__content {
    text-align: center;
}

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

.question-section__link {
    margin: 40px auto 0 auto;
}

.question-section__text {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .question-section__text {
        width: 70%;
    }
}

@media screen and (max-width: 425px) {
    .question-section__text {
        width: 100%;
    }
}

.question-section__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.question-section__links .question-section__link {
    margin: 0;
}
/* End */


/* Start:/local/templates/helicon-corp/components/bitrix/sender.subscribe/mailing/style.css?17593905563515*/
.subscribe-section{
    background-color: rgba(240, 241, 245, 0.8);
    position: relative;
}
.subscribe-section__img{
    position: absolute;
    left: 0;
    height: 100%;
    width: 47%;
    object-fit: cover;
}
.subscribe-section__content{
    padding-top: 56px;
    padding-bottom: 56px;
}
.subscribe-section__title, .subscribe-section__wrap{
    width: 42%;
    margin-left: auto;
}
.subscribe-section__title{
    margin-bottom: 16px;
}
.subscribe-form__input-box--white{
    background: #fff;
    border: 2px solid #fff;
}
.subscribe-section__form{
    margin-top: 25px;
}

.subscribe-section__form .main-form__box input:focus {
    border-color: #fff !important;
}

.checkbox-confirm-wrapper {
    justify-content: left;
}

.subscribe-section__form .error, .subscribe-section__form .error .checkbox__label {
    color: var(--error-color);
    border-color: var(--error-color);
}

.subscribe-section__form .error:not(input) {
    margin-top: 8px;
    font-size: 12px;
    display: block;
}

.subscribe-section .checkbox-field_floating,
.subscribe-section .text-field_floating {
	flex-direction: column;
}

.subscribe-section .checkbox__wrap > .checkbox__label a {
	font-weight: 400;
	color: inherit;
}
.subscribe-section .checkbox__wrap > .checkbox__label {
	display: block;
	padding-left: 24px;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	font-weight: 400;
	font-size: 10px;
	line-height: 1.1;
    opacity: 0.5;
    transition: opacity 0.5s ease;
	color: #676767;
}

.subscribe-section .checkbox__wrap > .checkbox__label:before {
	content: "";
	position: absolute;
	left: 0;
}
.subscribe-section .form__item-inner {
	position: relative;
	overflow: initial;
	max-height: 180px;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.subscribe-section .form__item-checkbox {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.mailing-field__wrapper {
    display: flex;
    gap: 5px;
	flex-direction: row;
    margin-bottom: 10px;
}

.mailing-field__wrapper .text-field-name {
    width: 35%;
}

@media screen and (max-width: 1120px) {
    .subscribe-section {
        background-size: 40%;
    }

    .subscribe-section__title, .subscribe-section__wrap{
        width: 50%;
    }
}

@media screen and (max-width:991px) {

    .subscribe-section__title{
        width: 100%;
        margin-bottom: 30px;
    }

    .subscribe-section__img{
        height: 56%;
        bottom: 56px;
    }
    .subscribe-section__wrap{
        padding: 30px 0;
    }
}

@media screen and (max-width: 768px) {
    .subscribe-section__img{
        display: none;
    }
    .subscribe-section__title, .subscribe-section__wrap{
        width: 100%;
    }
    .subscribe-section__title{
        margin-bottom: 16px;
    }
    .subscribe-section__wrap{
        padding: 0;
    }
    .mailing-field__wrapper {
        flex-direction: column;
    }
    .mailing-field__wrapper .text-field-name {
        width: 100%;
    }
}

@media screen and (max-width: 425px) {
    .subscribe-section__form input[type=submit] {
        width: 100%;
    }
    .subscribe-section__form .text-field__wrapper--inline{
        flex-direction: column;
        gap: 16px;
        background: none;
        border: none;
    }
    .subscribe-section__form .text-field__wrapper--inline input{
        background-color: #fff !important;
        height: 48px;
    }
    .subscribe__button{
        width: 100% !important;
    }
}
/* End */


/* Start:/local/templates/helicon-corp/components/bitrix/main.userconsent.request/sender.subscribe.mailing/user_consent.css?16987239694322*/
.main-user-consent-request a {
	cursor: pointer;
}

.main-user-consent-request-popup {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,0.5);
	overflow: hidden;
	z-index: 9000;
}

.main-user-consent-request-popup-cont {
	min-height: 290px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0 auto;
	padding: 20px;
	min-width: 320px;
	width: 100%;
	max-width: 600px;
	background: #fff;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-y: auto;
}

.main-user-consent-request-popup-header {
	margin: 0 0 10px 0;
	font: normal 18px "Helvetica Neue", Arial, Helvetica, sans-serif;
	color: #000;
	text-align: left;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	max-width: 260px;
}

.main-user-consent-request-popup-textarea-block {
	margin: 0 0 20px 0;
}

.main-user-consent-request-popup-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.main-user-consent-request-popup-button {
	display: inline-block;
	height: 39px;
	margin: 0 10px 5px 0;
	padding: 0 18px;
	border: none;
	border-radius: 2px;
	font: normal 12px/39px "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #535c69;
	outline: none;
	vertical-align: middle;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: none;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: background-color 0.2s linear, color 0.2s linear;
	transition: background-color 0.2s linear, color 0.2s linear;
	cursor: pointer;
}

.main-user-consent-request-popup-button-acc {
	background: #bbed21;
}

.main-user-consent-request-popup-button-acc:hover {
	background: #d2f95f;
}

.main-user-consent-request-popup-button-rej {
	-webkit-box-shadow: inset 0 0 0 1px #a1a6ac;
	box-shadow: inset 0 0 0 1px #a1a6ac;
	background: none;
}

.main-user-consent-request-popup-button-rej:hover {
	background: #cfd4d8;
}

.main-user-consent-request-popup-text {
	border: 1px solid #999;
	overflow: auto;
	padding: 8px;
	text-align: left;
	color: rgb(84, 84, 84);
}

.main-user-consent-request-popup-link {
	height: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.main-user-consent-request-popup-link a {
	display: block;
	margin: 20px 0 0 0;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 260px;
}

/** LOADER **/
.main-user-consent-request-loader {
	position: relative;
	height: 100px;
	width: 100px;
	margin: 0 auto;
	-webkit-transform: translate(0, 50%);
	transform: translate(0, 50%);
}

.main-user-consent-request-path {
	stroke: #80868e;
	stroke-dasharray: 100, 200;
}

.main-user-consent-request-loader:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.main-user-consent-request-circular {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: inherit;
	width: inherit;
	-webkit-animation: rotate 1s linear infinite;
	animation: rotate 1s linear infinite;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

.main-user-consent-request-path {
	stroke: #ccc;
	stroke-dasharray: 60, 200;
	stroke-dashoffset: 0;
	-webkit-animation: dash 1.5s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite;
	stroke-linecap: round;
}

.main-user-consent-request-announce{
	color: #333;
	font-size:13px;
	line-height: 15px;
}
.main-user-consent-request-announce-link{
	cursor: pointer;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes rotate {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@media (min-width: 1000px) {

	.main-user-consent-request-popup-cont {
		min-height: 400px;
		min-width: 640px;
	}

	.main-user-consent-request-popup-header {
		max-width: 590px;
	}

	.main-user-consent-request-popup-text,
	.main-user-consent-request-popup-link {
		height: 240px;
	}
	.main-user-consent-request-popup-link a {
		max-width: 200px;
	}
}

@media (max-width: 768px) {
	.main-user-consent-request-popup-cont {
		height: 100%;
	}
}
/* End */
/* /assets/css/section-menu.css?16987239691053 */
/* /assets/css/dropdown.css?16987239694367 */
/* /assets/css/heroblock.css?1698723969730 */
/* /assets/css/company-info.css?17115985363589 */
/* /assets/css/directions-list.css?16987239693043 */
/* /assets/css/other-pages.css?1698723969849 */
/* /local/templates/helicon-corp/components/bitrix/news.list/news-block/style.css?16987239691503 */
/* /local/templates/helicon-corp/components/general-itech/no.logic/form_question/style.css?1698723969798 */
/* /local/templates/helicon-corp/components/bitrix/sender.subscribe/mailing/style.css?17593905563515 */
/* /local/templates/helicon-corp/components/bitrix/main.userconsent.request/sender.subscribe.mailing/user_consent.css?16987239694322 */
