.lightbox2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15000;
    display: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    box-sizing: content-box;
}

.lightbox-veil {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
    background: rgba(0, 0, 0, .5);
    transform: translateZ(0);
}

.lightbox-window {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    min-height: 100vh;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .lightbox-window {
        width: calc(100% - 32px);
        padding: 32px 0;
        height: auto;
    }
}

@media screen and (min-width: 991px) {
    .lightbox-window {
        padding: 64px 0;
    }
}

.lightbox-window__inner {
    width: 100%;
    min-width: 100%;
    min-height: 100vh;
    position: relative;
    text-align: left;
    background: #fff;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .15);
    animation: lightbox-window-fadeIn .15s ease-out;
    transform: translateZ(0);
    clear: both;
}


@media screen and (min-width: 768px) {
    .lightbox-window__inner {
        min-width: auto;
        min-height: auto;
        border-radius: 24px;
        animation: lightbox-window-fadeInUp .15s ease-out;
    }
}

.lightbox-title {
    font-size: 24px;
    line-height: 1.3333;
    font-weight: 700;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .lightbox-title {
        font-size: 32px;
        line-height: 1.25;
        font-weight: 700;
    }
}

@media screen and (min-width: 991px) {
    .lightbox-title {
        font-size: 36px;
        line-height: 1.16;
        margin-bottom: 32px;
    }
}

@media screen and (min-width: 1200px) {
    .lightbox-title {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 1440px) {
    .lightbox-title {
        margin-bottom: 48px;
    }
}

.lightbox-window__close {
    position: sticky;
    z-index: 20;
    top: 0;
    right: 0;
    padding: 8px;
    background: none;
    border: 0;
    cursor: pointer;
    color: #858585;
    float: right;
    margin-bottom: -100%;
}

@media screen and (min-width: 768px) {
    .lightbox-window__close {
        padding: 16px;
    }
}

.lightbox-window__content {
    text-align: left;
    padding: 20px;
}

@media screen and (min-width: 375px) {
    .lightbox-window__content {
        padding: 30px;
    }
}
    
@media screen and (min-width: 991px) {
    .lightbox-window__content {
        padding: 40px;
    }
}

@media screen and (min-width: 1200px) {
    .lightbox-window__content {
        padding: 48px;
    }
}

@media screen and (min-width: 1440px) {
    .lightbox-window__content {
        padding: 64px;
    }
}

.lightbox-window__cross {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .8);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    transform: translateZ(0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-window__close:hover {
    color: #222222;
}

.lightbox-window__cross:after,
.lightbox-window__cross:before {
    content: '';
    position: absolute;
    height: 22px;
    width: 2px;
    transition: .15s ease color;
    background: currentColor;
}

.lightbox-window__cross:after {
    transform: rotate(45deg);
}

.lightbox-window__cross:before {
    transform: rotate(-45deg);
}

.lb-on {
    margin-bottom: 0;
    border: none;
    min-width: 0;
    overflow-y: hidden;
}

#pageWrapper {
    margin: 0;
    padding: 0;
}

#pageWrapper.lb-open {
    position: relative;
    overflow: auto;
    filter: blur(4px);
    transform: translateZ(0);
}

.lightbox-window__bottom-panel {
    margin-top: 24px;
}

.lightbox-window__bottom-panel:empty {
    display: none;
}

@media screen and (min-width: 768px) {
    .lightbox-window__bottom-panel {
        margin-top: 32px;
    }
}

@media screen and (min-width: 991px) {
    .lightbox-window__bottom-panel {
        margin-top: 40px;
    }
}

@media screen and (min-width: 1200px) {
    .lightbox-window__bottom-panel {
        margin-top: 48px;
    }
}

.lightbox-window__button {
    display: inline-block;
    border: 0;
    color: white;
    padding: 11px 24px;
    background: var(--color-primary-button, #F03B36);
    font-family: inherit;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44;
    border-radius: 100px;
    outline-width: 0;
    transition: .15s ease filter;
    transform: translateZ(0);
    cursor: pointer;
}

.lightbox-window__button:hover {
    filter: brightness(112%);
}

.lightbox-window__button:focus-visible {
    outline-width: 2px;
}

@media screen and (min-width: 1200px) {
    .lightbox-window__button {
        font-size: 20px;
        padding: 11px 32px;
    }
}

@keyframes lightbox-window-fadeIn {
    0% {
        opacity: 0;
        transform: translateZ(0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes lightbox-window-fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0%, 32px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0%, 0%, 0);
    }
}

[data-videoid],
[data-videoId] {
    cursor: pointer;
}
@font-face {
    font-family: 'konturIconic';
    src: url(/front/build/assets/theme/layout/konturIconic/Kontur-Iconic-eco-webfont-6fa65ab2d1d47b620189..eot);
    src: url(/front/build/assets/theme/layout/konturIconic/Kontur-Iconic-eco-webfont-bde95e0fd54a243f405d..woff) format('woff'),
        url(/front/build/assets/theme/layout/konturIconic/Kontur-Iconic-eco-webfont-7c0a1275886db078d0dc..ttf) format('truetype'),
        url(/front/build/assets/theme/layout/konturIconic/Kontur-Iconic-eco-webfont-08748acdec9446f06149..svg) format('svg');
    font-style: normal;
}

.konturIconic {
    font-family: 'konturIconic' !important;
    font-size: 14px;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
}
a .konturIconic,
.link .konturIconic
{
    cursor: pointer;
}
.konturIconic span {
    display: none;
    *display: inline;
}

.konturIconic-space:before, .icon_0020:before { content: "\0020"; }
.konturIconic-hyphen:before, .icon_002D:before { content: "\002d"; }
.konturIconic-underscore:before, .icon_005F:before { content: "\005f"; }
.konturIconic-ellipsis:before, .icon_2026:before { content: "\2026"; }
.konturIconic-ruble:before, .icon_20BD:before { content: "\20bd"; }
.konturIconic-shadelight:before, .icon_2591:before { content: "\2591"; }
.konturIconic-dot12:before, .icon_E001:before { content: "\e001"; }
.konturIconic-cloud:before, .icon_E002:before { content: "\e002"; }
.konturIconic-baseline:before, .icon_E003:before { content: "\e003"; }
.konturIconic-error:before, .icon_E004:before { content: "\e004"; }
.konturIconic-warning:before, .icon_E005:before { content: "\e005"; }
.konturIconic-ok:before, .icon_E006:before { content: "\e006"; }
.konturIconic-star:before, .icon_E007:before { content: "\e007"; }
.konturIconic-fired:before, .icon_E008:before { content: "\e008"; }
.konturIconic-search:before, .icon_E009:before { content: "\e009"; }
.konturIconic-certificate:before, .icon_E00A:before { content: "\e00a"; }
.konturIconic-emoticon-happy:before, .icon_E00B:before { content: "\e00b"; }
.konturIconic-emoticon-sad:before, .icon_E00C:before { content: "\e00c"; }
.konturIconic-add:before, .icon_E00D:before { content: "\e00d"; }
.konturIconic-delete:before, .icon_E00E:before { content: "\e00e"; }
.konturIconic-edit:before, .icon_E00F:before { content: "\e00f"; }
.konturIconic-print:before, .icon_E010:before { content: "\e010"; }
.konturIconic-mail:before, .icon_E011:before { content: "\e011"; }
.konturIconic-undo:before, .icon_E012:before { content: "\e012"; }
.konturIconic-arrow-chevron2-right:before, .icon_E013:before { content: "\e013"; }
.konturIconic-arrow-chevron2-left:before, .icon_E014:before { content: "\e014"; }
.konturIconic-download:before, .icon_E015:before { content: "\e015"; }
.konturIconic-tag:before, .icon_E016:before { content: "\e016"; }
.konturIconic-video:before, .icon_E017:before { content: "\e017"; }
.konturIconic-settings:before, .icon_E018:before { content: "\e018"; }
.konturIconic-card:before, .icon_E019:before { content: "\e019"; }
.konturIconic-import:before, .icon_E01A:before { content: "\e01a"; }
.konturIconic-list-rows:before, .icon_E01B:before { content: "\e01b"; }
.konturIconic-list-group:before, .icon_E01C:before { content: "\e01c"; }
.konturIconic-menu:before, .icon_E01D:before { content: "\e01d"; }
.konturIconic-remove:before, .icon_E01E:before { content: "\e01e"; }
.konturIconic-arrow-parallel-vertical:before, .icon_E01F:before { content: "\e01f"; }
.konturIconic-user:before, .icon_E020:before { content: "\e020"; }
.konturIconic-clock:before, .icon_E021:before { content: "\e021"; }
.konturIconic-trash:before, .icon_E022:before { content: "\e022"; }
.konturIconic-calendar:before, .icon_E023:before { content: "\e023"; }
.konturIconic-document-solid:before, .icon_E024:before { content: "\e024"; }
.konturIconic-document-add:before, .icon_E025:before { content: "\e025"; }
.konturIconic-document-copy:before, .icon_E026:before { content: "\e026"; }
.konturIconic-export:before, .icon_E027:before { content: "\e027"; }
.konturIconic-document-folder:before, .icon_E028:before { content: "\e028"; }
.konturIconic-refresh:before, .icon_E029:before { content: "\e029"; }
.konturIconic-sum:before, .icon_E02A:before { content: "\e02a"; }
.konturIconic-shipment:before, .icon_E02B:before { content: "\e02b"; }
.konturIconic-upload:before, .icon_E02C:before { content: "\e02c"; }
.konturIconic-lock-opened:before, .icon_E02D:before { content: "\e02d"; }
.konturIconic-lock-closed:before, .icon_E02E:before { content: "\e02e"; }
.konturIconic-document-group:before, .icon_E02F:before { content: "\e02f"; }
.konturIconic-clear:before, .icon_E030:before { content: "\e030"; }
.konturIconic-document-type-doc:before, .icon_E031:before { content: "\e031"; }
.konturIconic-document-type-pdf:before, .icon_E032:before { content: "\e032"; }
.konturIconic-document-type-txt:before, .icon_E033:before { content: "\e033"; }
.konturIconic-document-type-xls:before, .icon_E034:before { content: "\e034"; }
.konturIconic-document-type-xml:before, .icon_E035:before { content: "\e035"; }
.konturIconic-function:before, .icon_E036:before { content: "\e036"; }
.konturIconic-help-book:before, .icon_E037:before { content: "\e037"; }
.konturIconic-help-lite:before, .icon_E038:before { content: "\e038"; }
.konturIconic-logout:before, .icon_E039:before { content: "\e039"; }
.konturIconic-facebook:before, .icon_E03A:before { content: "\e03a"; }
.konturIconic-phone:before, .icon_E03B:before { content: "\e03b"; }
.konturIconic-twitter:before, .icon_E03C:before { content: "\e03c"; }
.konturIconic-vkontakte:before, .icon_E03D:before { content: "\e03d"; }
.konturIconic-grid:before, .icon_E03E:before { content: "\e03e"; }
.konturIconic-infiniti:before, .icon_E03F:before { content: "\e03f"; }
.konturIconic-arrow-bold-down:before, .icon_E040:before { content: "\e040"; }
.konturIconic-arrow-bold-right:before, .icon_E041:before { content: "\e041"; }
.konturIconic-arrow-bold-up:before, .icon_E042:before { content: "\e042"; }
.konturIconic-eye-closed:before, .icon_E043:before { content: "\e043"; }
.konturIconic-eye-opened:before, .icon_E044:before { content: "\e044"; }
.konturIconic-attach:before, .icon_E045:before { content: "\e045"; }
.konturIconic-coin:before, .icon_E046:before { content: "\e046"; }
.konturIconic-statistic:before, .icon_E047:before { content: "\e047"; }
.konturIconic-menu-dots:before, .icon_E048:before { content: "\e048"; }
.konturIconic-arrow-triangle-up-down:before, .icon_E049:before { content: "\e049"; }
.konturIconic-arrow-triangle-right:before, .icon_E04A:before { content: "\e04a"; }
.konturIconic-arrow-triangle-left:before, .icon_E04B:before { content: "\e04b"; }
.konturIconic-arrow-triangle-down:before, .icon_E04C:before { content: "\e04c"; }
.konturIconic-arrow-triangle-up:before, .icon_E04D:before { content: "\e04d"; }
.konturIconic-map-pin:before, .icon_E04E:before { content: "\e04e"; }
.konturIconic-arrow-bold-left:before, .icon_E04F:before { content: "\e04f"; }
.konturIconic-forward:before, .icon_E050:before { content: "\e050"; }
.konturIconic-backward:before, .icon_E051:before { content: "\e051"; }
.konturIconic-reply:before, .icon_E052:before { content: "\e052"; }
.konturIconic-skip:before, .icon_E053:before { content: "\e053"; }
.konturIconic-comment-lite:before, .icon_E054:before { content: "\e054"; }
.konturIconic-help-dot:before, .icon_E055:before { content: "\e055"; }
.konturIconic-odnoklassniki:before, .icon_E056:before { content: "\e056"; }
.konturIconic-youtube:before, .icon_E057:before { content: "\e057"; }
.konturIconic-arrow-chevron-down:before, .icon_E058:before { content: "\e058"; }
.konturIconic-arrow-chevron-up:before, .icon_E059:before { content: "\e059"; }
.konturIconic-coins:before, .icon_E05A:before { content: "\e05a"; }
.konturIconic-user-settings:before, .icon_E05B:before { content: "\e05b"; }
.konturIconic-home:before, .icon_E05C:before { content: "\e05c"; }
.konturIconic-comment-solid:before, .icon_E05D:before { content: "\e05d"; }
.konturIconic-rss:before, .icon_E05E:before { content: "\e05e"; }
.konturIconic-document-refresh:before, .icon_E05F:before { content: "\e05f"; }
.konturIconic-filter:before, .icon_E060:before { content: "\e060"; }
.konturIconic-new-window:before, .icon_E061:before { content: "\e061"; }
.konturIconic-link:before, .icon_E062:before { content: "\e062"; }
.konturIconic-google-plus:before, .icon_E063:before { content: "\e063"; }
.konturIconic-document-type-rtf:before, .icon_E064:before { content: "\e064"; }
.konturIconic-arrow-chevron-left:before, .icon_E065:before { content: "\e065"; }
.konturIconic-arrow-chevron-right:before, .icon_E066:before { content: "\e066"; }
.konturIconic-login:before, .icon_E067:before { content: "\e067"; }
.konturIconic-dot8:before, .icon_E068:before { content: "\e068"; }
.konturIconic-p-c:before, .icon_E069:before { content: "\e069"; }
.konturIconic-android:before, .icon_E06A:before { content: "\e06a"; }
.konturIconic-pin:before, .icon_E06B:before { content: "\e06b"; }
.konturIconic-notification-bell:before, .icon_E06C:before { content: "\e06c"; }
.konturIconic-arrow-parallel-horizontal:before, .icon_E06D:before { content: "\e06d"; }
.konturIconic-lightbulb:before, .icon_E06E:before { content: "\e06e"; }
.konturIconic-info:before, .icon_E06F:before { content: "\e06f"; }
.konturIconic-heart:before, .icon_E070:before { content: "\e070"; }
.konturIconic-loading:before, .icon_E071:before { content: "\e071"; }
.konturIconic-instagram:before, .icon_E072:before { content: "\e072"; }
.konturIconic-thumb-up:before, .icon_E073:before { content: "\e073"; }
.konturIconic-thumb-down:before, .icon_E074:before { content: "\e074"; }
.konturIconic-marker:before, .icon_E075:before { content: "\e075"; }
.konturIconic-archive-pack:before, .icon_E076:before { content: "\e076"; }
.konturIconic-archive-unpack:before, .icon_E077:before { content: "\e077"; }
.konturIconic-mail2:before, .icon_E078:before { content: "\e078"; }
.konturIconic-mail2-in:before, .icon_E079:before { content: "\e079"; }
.konturIconic-mail2-out:before, .icon_E07A:before { content: "\e07a"; }
.konturIconic-shopping-cart-lite:before, .icon_E07B:before { content: "\e07b"; }
.konturIconic-shopping-cart-solid:before, .icon_E07C:before { content: "\e07c"; }
.konturIconic-handshake:before, .icon_E07D:before { content: "\e07d"; }
.konturIconic-briefcase:before, .icon_E07E:before { content: "\e07e"; }
.konturIconic-document-check:before, .icon_E07F:before { content: "\e07f"; }
.konturIconic-flag-lite:before, .icon_E080:before { content: "\e080"; }
.konturIconic-flag-solid:before, .icon_E081:before { content: "\e081"; }
.konturIconic-dot12-lite:before, .icon_E082:before { content: "\e082"; }
.konturIconic-dot8-lite:before, .icon_E083:before { content: "\e083"; }
.konturIconic-font-size:before, .icon_E084:before { content: "\e084"; }
.konturIconic-arrow-size-max:before, .icon_E085:before { content: "\e085"; }
.konturIconic-arrow-size-min:before, .icon_E086:before { content: "\e086"; }
.konturIconic-document-lite:before, .icon_E087:before { content: "\e087"; }
.konturIconic-arrow-size1:before, .icon_E088:before { content: "\e088"; }
.konturIconic-arrow-size2:before, .icon_E089:before { content: "\e089"; }
.konturIconic-arrow-size3:before, .icon_E08A:before { content: "\e08a"; }
.konturIconic-arrow-size4:before, .icon_E08B:before { content: "\e08b"; }
.konturIconic-vkontakte2:before, .icon_E08C:before { content: "\e08c"; }
.konturIconic-facebook2:before, .icon_E08D:before { content: "\e08d"; }
.konturIconic-twitter2:before, .icon_E08E:before { content: "\e08e"; }
.konturIconic-odnoklassniki2:before, .icon_E08F:before { content: "\e08f"; }
.konturIconic-google-plus2:before, .icon_E090:before { content: "\e090"; }
.konturIconic-phone2:before, .icon_E091:before { content: "\e091"; }
.konturIconic-rss2:before, .icon_E092:before { content: "\e092"; }
.konturIconic-people:before, .icon_E093:before { content: "\e093"; }
.konturIconic-baby:before, .icon_E094:before { content: "\e094"; }
.konturIconic-send:before, .icon_E095:before { content: "\e095"; }
.konturIconic-send2:before, .icon_E096:before { content: "\e096"; }
.konturIconic-copy:before, .icon_E097:before { content: "\e097"; }
.konturIconic-arrow-corner1:before, .icon_E098:before { content: "\e098"; }
.konturIconic-dot12-dashed:before, .icon_E099:before { content: "\e099"; }
.konturIconic-vacation:before, .icon_E09A:before { content: "\e09a"; }
.konturIconic-medical:before, .icon_E09B:before { content: "\e09b"; }
.konturIconic-redo:before, .icon_E09C:before { content: "\e09c"; }
.konturIconic-star2:before, .icon_E09D:before { content: "\e09d"; }
.konturIconic-add-column-left:before, .icon_E09E:before { content: "\e09e"; }
.konturIconic-add-column-right:before, .icon_E09F:before { content: "\e09f"; }
.konturIconic-add-row-top:before, .icon_E0A0:before { content: "\e0a0"; }
.konturIconic-add-row-bottom:before, .icon_E0A1:before { content: "\e0a1"; }
.konturIconic-delete-column:before, .icon_E0A2:before { content: "\e0a2"; }
.konturIconic-delete-row:before, .icon_E0A3:before { content: "\e0a3"; }
.konturIconic-border-all:before, .icon_E0A4:before { content: "\e0a4"; }
.konturIconic-border-outside:before, .icon_E0A5:before { content: "\e0a5"; }
.konturIconic-border-inside:before, .icon_E0A6:before { content: "\e0a6"; }
.konturIconic-border-top:before, .icon_E0A7:before { content: "\e0a7"; }
.konturIconic-border-right:before, .icon_E0A8:before { content: "\e0a8"; }
.konturIconic-border-bottom:before, .icon_E0A9:before { content: "\e0a9"; }
.konturIconic-border-left:before, .icon_E0AA:before { content: "\e0aa"; }
.konturIconic-border-none:before, .icon_E0AB:before { content: "\e0ab"; }
.konturIconic-drag-border:before, .icon_E0AC:before { content: "\e0ac"; }
.konturIconic-cells-merge:before, .icon_E0AD:before { content: "\e0ad"; }
.konturIconic-cells-split:before, .icon_E0AE:before { content: "\e0ae"; }
.konturIconic-cells-equal-height:before, .icon_E0AF:before { content: "\e0af"; }
.konturIconic-cells-equal-width:before, .icon_E0B0:before { content: "\e0b0"; }
.konturIconic-table-split:before, .icon_E0B1:before { content: "\e0b1"; }
.konturIconic-table-delete:before, .icon_E0B2:before { content: "\e0b2"; }
.konturIconic-para-to-cells:before, .icon_E0B3:before { content: "\e0b3"; }
.konturIconic-format-copy:before, .icon_E0B4:before { content: "\e0b4"; }
.konturIconic-text-nbsp:before, .icon_E0B5:before { content: "\e0b5"; }
.konturIconic-text-align-left:before, .icon_E0B6:before { content: "\e0b6"; }
.konturIconic-text-align-center:before, .icon_E0B7:before { content: "\e0b7"; }
.konturIconic-text-align-right:before, .icon_E0B8:before { content: "\e0b8"; }
.konturIconic-document-convert:before, .icon_E0B9:before { content: "\e0b9"; }
.konturIconic-crown:before, .icon_E0BA:before { content: "\e0ba"; }
.konturIconic-video2:before, .icon_E0BB:before { content: "\e0bb"; }
.konturIconic-text-width-fixed:before, .icon_E0BC:before { content: "\e0bc"; }
.konturIconic-sort-up:before, .icon_E0BD:before { content: "\e0bd"; }
.konturIconic-sort-down:before, .icon_E0BE:before { content: "\e0be"; }
.konturIconic-instagram2:before, .icon_E0BF:before { content: "\e0bf"; }
.konturIconic-apple:before, .icon_E0C0:before { content: "\e0c0"; }
.konturIconic-windows:before, .icon_E0C1:before { content: "\e0c1"; }
.konturIconic-ownership-car:before, .icon_E0C2:before { content: "\e0c2"; }
.konturIconic-ownership-boat:before, .icon_E0C3:before { content: "\e0c3"; }
.konturIconic-document-check2:before, .icon_E0C4:before { content: "\e0c4"; }
.konturIconic-shop-cashregister:before, .icon_E0C5:before { content: "\e0c5"; }
.konturIconic-shop-receipt:before, .icon_E0C6:before { content: "\e0c6"; }
.konturIconic-device-smartphone:before, .icon_E0C7:before { content: "\e0c7"; }
.konturIconic-arrow-drag:before, .icon_E0C8:before { content: "\e0c8"; }
.konturIconic-menu-kebab:before, .icon_E0C9:before { content: "\e0c9"; }
.konturIconic-comment-lite-add:before, .icon_E0CA:before { content: "\e0ca"; }
.konturIconic-arrow-triangle-up-down2:before, .icon_E0CB:before { content: "\e0cb"; }
.konturIconic-device-smartphone-no:before, .icon_E0CC:before { content: "\e0cc"; }
.konturIconic-telegram:before, .icon_E0CD:before { content: "\e0cd"; }
.konturIconic-telegram2:before, .icon_E0CE:before { content: "\e0ce"; }
.konturIconic-heart-lite:before, .icon_E0CF:before { content: "\e0cf"; }
.konturIconic-home-office:before, .icon_E0D0:before { content: "\e0d0"; }
.konturIconic-arrow-triangle-up-down3:before, .icon_E0D1:before { content: "\e0d1"; }
.konturIconic-arrow-triangle-up-down4:before, .icon_E0D2:before { content: "\e0d2"; }
.konturIconic-structure-tree:before, .icon_E0D3:before { content: "\e0d3"; }
.konturIconic-calculator:before, .icon_E0D4:before { content: "\e0d4"; }
.konturIconic-ok-double:before, .icon_E0D5:before { content: "\e0d5"; }
.konturIconic-key:before, .icon_E0D6:before { content: "\e0d6"; }
.konturIconic-u-s-b:before, .icon_E0D7:before { content: "\e0d7"; }
.konturIconic-document-type-csv:before, .icon_E0D8:before { content: "\e0d8"; }
.konturIconic-pause:before, .icon_E0D9:before { content: "\e0d9"; }
.konturIconic-link-off:before, .icon_E0DA:before { content: "\e0da"; }
.konturIconic-barcode-scanner:before, .icon_E0DB:before { content: "\e0db"; }

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
/*.mfp-hide  when (@mfp-use-visuallyhidden = true) {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}*/
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #000;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #000;
}
.mfp-preloader a:hover {
  color: #000;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #000;
  font-size: 12px;
  line-height: 18px;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
         * Remove all paddings around the image on small screen
         */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(255, 255, 255, 0.7);
    bottom: 0;
    margin: 0;
    top: auto;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    /*top: 0;
                right: 0;
                width: 35px;
                height: 35px;
                line-height: 35px;
                background: rgba(0, 0, 0, 0.6);
                position: fixed;
                text-align: center;
                padding: 0;*/
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    transform-origin: 0;
  }
  .mfp-arrow-right {
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
  padding: 0;
}
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}
.mfp-close:after,
button.mfp-arrow:after,
.mfp-a:after,
.mfp-zoom:after {
  background-image: url(/front/build/assets/theme/layout/lightbox3/img/sprite-lightboxcontrolls-ae45446c65fa9811d7bf..png);
}
.white-popup-block,
.mfp-iframe-scaler,
.mfp-img,
.white-popup-block,
.mfp-s-error .mfp-preloader {
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
}
.white-popup-block {
  background: #FFF;
  /*    padding: 20px 30px;
    text-align: left;
    max-width: 650px;
    margin: 40px auto;
    position: relative;

    //padding: 0;
    border-radius: 0;
    box-sizing: content-box;
    background-clip: padding-box;
    text-align: left;
    position: relative;
    //display: inline-block;
    background: #fff;*/
}
#small-dialog {
  background: white;
  text-align: left;
  max-width: 400px;
  margin: 40px auto;
  position: relative;
}
.mfp-title {
  font-size: 34px;
  text-align: center !important;
  font-weight: 300;
  margin: 0 20px 30px;
  line-height: 1;
}
.mfp-close {
  display: block;
  width: 150px;
  height: 150px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  /* HOVER OFF */
  transition: opacity 0.56s ease;
  z-index: 10300;
}
.mfp-close:hover {
  /* HOVER ON */
  transition: opacity 0.08s ease;
}
.mfp-close:after {
  content: '';
  position: absolute;
  top: 45px;
  right: 45px;
  width: 30px;
  height: 30px;
  margin: -15px -15px 0 0;
  background-repeat: no-repeat;
}
.mfp-iframe-scaler .mfp-title {
  bottom: 100%;
  color: white;
  left: -6px;
  font-size: 38px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
  text-align: center;
  position: absolute;
}
.mfp-iframe-holder .mfp-figcaption {
  display: block;
  caption-side: bottom;
  margin: 0;
  min-width: 220px;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
}
.mfp-iframe-holder .mfp-content {
  width: 1100px;
  max-width: 90%;
}
.mfp-inline-holder .mfp-content {
  padding: 30px;
  background: #fff;
  max-width: 40%;
  margin: 40px auto;
}
/*.mfp-figure {
    padding: 40px;
}
img.mfp-img {
    cursor: pointer; 
    //padding: 0;
    box-shadow: none;
}*/
.mfp-figure:after {
  box-shadow: none;
  background: none transparent;
}
.mfp-figure img.mfp-img,
.mfp-iframe-holder .mfp-iframe {
  padding: 0;
  filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr=#cc0d1012, endColorstr=#cc0d1012,GradientType=0 )";
  background: rgba(0, 0, 0, 0.7);
}
.mfp-image-holder .mfp-content {
  max-width: 80%;
}
.mfp-content {
  max-width: 1280px;
}
img.mfp-img {
  max-width: 100%;
}
.mfp-bottom-bar {
  margin-top: 0 !important;
  background: #fff;
  position: relative;
}
.mfp-buttons {
  background: #eeeeee;
}
.mfp-figure {
  max-width: 1280px;
  margin: 0 auto;
}
.mfp-figcaption {
  margin: 0;
  min-width: 220px;
}
.mfp-desc-inner {
  padding: 20px;
  word-break: break-word;
  line-height: 1.43;
}
.mfp-ajax-holder .mfp-content {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  overflow: hidden;
}
button.mfp-arrow {
  height: 100%;
  top: 55px;
  width: 50%;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  background: #3d3f41;
  background: rgba(0, 0, 0, 0);
  /* HOVER OFF */
  transition: opacity 0.56s ease;
  z-index: 1020;
}
button.mfp-arrow:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  /* HOVER ON */
  transition: opacity 0.2s ease;
}
button.mfp-arrow:before,
button.mfp-arrow .mfp-b {
  content: none;
  display: none;
}
button.mfp-arrow:after,
button.mfp-arrow .mfp-a {
  top: 50%;
  margin-top: -18.5px;
  width: 23px;
  height: 37px;
  border: 0;
  opacity: 1;
}
button.mfp-arrow:active {
  margin-top: -55px;
}
button.mfp-arrow-left:after,
button.mfp-arrow-left .mfp-a {
  background-position: 0px -60px;
}
button.mfp-arrow-right:after,
button.mfp-arrow-right .mfp-a {
  background-position: 0px -99px;
  left: auto;
  right: 0;
  margin-left: 0;
  margin-right: 31px;
}
.mfp-counter-btn {
  display: inline-block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  color: #c2c2c2;
  background: rgba(0, 0, 0, 0.5);
  line-height: 33px;
  padding: 0 9px;
  font-size: 6px;
  position: relative;
  z-index: -1;
  /* HOVER OFF */
  transition: font-size 0.56s ease 0.1s, opacity 0.56s ease 0.1s;
}
.mfp-arrow:hover .mfp-counter-btn {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  font-size: 17px;
  /* HOVER ON */
  transition: font-size 0.12s ease, opacity 0.2s ease;
}
.mfp-arrow-left .mfp-counter-btn {
  margin-left: 50px;
  float: left;
  padding: 0 9px 0 0;
  border-radius: 0 16.5px 16.5px 0;
}
.mfp-arrow-left .mfp-counter-btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16.5px 18px 16.5px 0;
  border-color: transparent #000 transparent transparent;
  border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent;
}
.mfp-arrow-right .mfp-counter-btn {
  margin-right: 50px;
  float: right;
  padding: 0 0 0 9px;
  border-radius: 16.5px 0 0 16.5px;
}
.mfp-arrow-right .mfp-counter-btn:after {
  content: '';
  position: absolute;
  top: 0;
  right: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16.5px 0 16.5px 18px;
  border-color: transparent transparent transparent #000;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.5);
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: default;
}
.mfp-buttons {
  text-align: center;
}
.mfp-buttons .btn {
  margin-right: 25px;
}
.mfp-zoom {
  position: relative;
  margin-top: -76px;
  float: right;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 76px 76px;
  border-color: transparent transparent #000 transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.4) transparent;
}
.mfp-zoom:after {
  content: '';
  position: absolute;
  top: 35px;
  right: 5px;
  width: 30px;
  height: 30px;
  background-position: 0px -30px;
}
.mfp-force-scrollbars.mfp-wrap {
  overflow-y: hidden !important;
  overflow-x: hidden !important;
}
.mfp-force-scrollbars .mfp-img,
.mfp-force-scrollbars .mfp-figure,
.mfp-force-scrollbars .mfp-image-holder .mfp-content,
.mfp-force-scrollbars .mfp-container {
  max-width: none;
  max-height: none !important;
  height: auto;
  width: auto;
  position: static;
}
.mfp-force-scrollbars .mfp-close,
.mfp-force-scrollbars .mfp-arrow {
  display: none;
}
.mfp-force-scrollbars .mfp-figure-wrap {
  padding: 50px 100px;
}
.mfp-force-scrollbars .mfp-zoom {
  cursor: zoom-out;
}
.mfp-force-scrollbars .mfp-zoom:after {
  background-position: 0 -155px;
}
.mfp-preloader {
  visibility: hidden;
  padding-top: 100px;
  /*-webkit-transition: opacity (@animationDuration * 0.5) ease (@animationDuration * 0.5);
    -moz-transition: opacity (@animationDuration * 0.5) ease (@animationDuration * 0.5);
    transition: opacity (@animationDuration * 0.5) ease (@animationDuration * 0.5);*/
}
.mfp-preloader:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  height: 70px;
  background: url(/front/build/assets/theme/layout/lightbox3/img/cloud-loader-521536f9f0222689037c..gif) top center no-repeat;
}
.mfp-preloader a {
  color: #000;
}
#page-wrapper {
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.mfp-bg {
  z-index: 10050;
  background: url(/front/build/assets/theme/layout/lightbox3/img/bg-a8243f19921e6c135d73..png);
  background: rgba(13, 16, 18, 0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mfp-wrap {
  z-index: 10100;
}
.mfp-container {
  visibility: hidden;
}
.mfp-loading .mfp-container,
.mfp-s-loading:not(mfp-s-ready-animate) .mfp-container,
.mfp-loading .mfp-title,
.mfp-s-loading:not(mfp-s-ready-animate) .mfp-title,
.mfp-loading .mfp-figcaption,
.mfp-s-loading:not(mfp-s-ready-animate) .mfp-figcaption {
  visibility: hidden;
}
.mfp-loading .mfp-preloader,
.mfp-s-loading:not(mfp-s-ready-animate) .mfp-preloader {
  animation: slideFromTop 0.4s normal ease forwards 0s;
}
.mfp-s-error .mfp-preloader {
  opacity: 1;
  width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  padding: 40px;
}
.mfp-s-error .mfp-preloader:after {
  background: none;
}
.mfp-ready.mfp-bg {
  opacity: 1;
}
.mfp-ready ~ #pageWrapper {
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-filter: blur(2px);
  -ms-filter: blur(2px);
  -o-filter: blur(2px);
  filter: blur(2px);
  filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius='2')";
}
.mfp-ready .mfp-s-ready-animate.mfp-container,
.mfp-ready .mfp-s-error .mfp-preloader {
  visibility: visible;
  animation: slideFromTop 0.4s normal ease forwards 0s;
}
@keyframes slideFromTop {
  0% {
    visibility: hidden;
  }
  50% {
    transform: translateY(-5%);
    visibility: hidden;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
  }
}
.mfp-ready.mfp-removing.mfp-bg {
  filter: none;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.56s ease 0.24s;
}
.mfp-ready.mfp-removing ~ #pageWrapper {
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.mfp-ready.mfp-removing .mfp-content,
.mfp-ready.mfp-removing button.mfp-arrow,
.mfp-ready.mfp-removing .mfp-close {
  opacity: 0;
  animation: slidetoBottom 0.4s normal ease forwards 0s;
}
.mfp-ready.mfp-removing .mfp-preloader {
  opacity: 0;
  animation: slidetoBottom 0.4s normal ease forwards 0.4s;
}
@keyframes slidetoBottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(5%);
    opacity: 0;
  }
}
.mfp-stop {
  animation: shake 0.4s normal ease forwards 0s;
}
.mfp-stop-first ~ .mfp-arrow-left,
.mfp-stop-last ~ .mfp-arrow-right {
  opacity: 0 !important;
  transition: opacity 0.4s ease;
}
@keyframes shake {
  0% {
    transform: translate(0px);
  }
  17% {
    transform: translate(10px);
  }
  34% {
    transform: translate(-10px);
  }
  51% {
    transform: translate(6px);
  }
  68% {
    transform: translate(-6px);
  }
  85% {
    transform: translate(3px);
  }
  100% {
    transform: translate(0px);
  }
}
.mfp-wrap + #pageWrapper #footer,
.mfp-wrap + #pageWrapper footer {
  position: relative;
}
.mfp-figure-wrap {
  margin: 35px 0;
}
:-webkit-full-screen-ancestor .mfp-s-ready-animate {
  animation: none !important;
}
.image-zoom {
  min-width: 76px;
  min-height: 76px;
  display: inline-block;
  position: relative;
  outline: none;
}
.image-zoom img {
  margin: 0;
  float: none;
  vertical-align: middle;
}
.image-zoom:before {
  content: '';
  border-style: solid;
  border-width: 0 0 76px 76px;
  border-color: transparent transparent #aaa;
  border-color: transparent transparent rgba(0, 0, 0, 0.4) transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.image-zoom:after {
  content: '';
  width: 30px;
  height: 30px;
  background-position: 0px -30px;
  background-image: url(/front/build/assets/theme/layout/lightbox3/img/sprite-lightboxcontrolls-ae45446c65fa9811d7bf..png);
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 5px 5px;
}
.image-zoom_min {
  min-width: 55px;
  min-height: 55px;
}
.image-zoom_min:before {
  border-width: 0 0 55px 55px;
  border-color: transparent transparent rgba(0, 0, 0, 0.3) transparent;
}
.image-zoom_min:after {
  width: 20px;
  height: 20px;
  background-position: 0px -185px;
}
@media (max-width: 1024px) {
  .mfp-inline-holder .mfp-content {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .mfp-inline-holder.mfp-container {
    padding: 0;
  }
  .mfp-inline-holder .mfp-content {
    margin: 0;
    max-width: 100vw;
    vertical-align: top;
    border-radius: 0;
    padding: 50px 20px 55px;
  }
  .mfp-inline-holder + .mfp-close::after,
  .mfp-inline-holder + .mfp-close::before {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 28px;
    height: 2px;
    background: #000;
    margin: 0;
    content: '';
  }
  .mfp-inline-holder + .mfp-close::before {
    transform: rotate(-45deg);
  }
  .mfp-inline-holder + .mfp-close::after {
    transform: rotate(45deg);
  }
}

/*[tools*/
/*tools]*/
/* [props */
/*
.buttonSprite(@sprite; @step; @afterWidth;) {
    background: url("@{sprite}") no-repeat !important;
    .lHeight(@step);
    .inlineBlock;
    .pointer;
    .relative;
    text-decoration: none;
    margin-right: @afterWidth;

    &:hover {
        background-position: 0 -@step !important;
    }
    &:active {
        background-position: 0 -@step*3 !important;
    }

    &:after {
        background: url("@{sprite}") no-repeat 0 0;
        .absolute;
        right: -@afterWidth;
        width: @afterWidth;
    }
    &:hover:after, &:hover .after {
        background-position: 0 -@step*2;
    }
    &:active:after, &:active .after {
        background-position: 0 -@step*4;
    }
}*/
/* props] */
.social-link-list {
  display: inline-flex;
  margin-top: 4px;
}
.social-link-list__item {
  margin-right: 8px;
}
.social-link {
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #4d4d4d;
  transition: color 0.15s ease;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.social-link:hover {
  background: #858585;
}
.social-link img {
  filter: invert(1);
}

.input-placeholder {
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 100%;
  cursor: text;
  z-index: 10;
  text-align: left;
  color: #AAAAAA;
  white-space: nowrap;
  overflow: hidden;
  background: url(/front/build/assets/theme/layout/framework/images/space-b2bc1d41a1d28dea9df4..png);
}

@charset "UTF-8";/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.hinge{animation-duration:2s}@keyframes bounce{0%,100%,20%,53%,80%{transition-timing-function:cubic-bezier(0.215,.61,.355,1);transform:translate3d(0,0,0)}40%,43%{transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transform:translate3d(0,-30px,0)}70%{transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transform:translate3d(0,-15px,0)}90%{transform:translate3d(0,-4px,0)}}.bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.flash{animation-name:flash}@keyframes pulse{0%{transform:scale3d(1,1,1)}50%{transform:scale3d(1.05,1.05,1.05)}100%{transform:scale3d(1,1,1)}}.pulse{animation-name:pulse}@keyframes rubberBand{0%{transform:scale3d(1,1,1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(0.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}100%{transform:scale3d(1,1,1)}}.rubberBand{animation-name:rubberBand}@keyframes shake{0%,100%{transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.shake{animation-name:shake}@keyframes swing{20%{transform:rotate3d(0,0,1,15deg)}40%{transform:rotate3d(0,0,1,-10deg)}60%{transform:rotate3d(0,0,1,5deg)}80%{transform:rotate3d(0,0,1,-5deg)}100%{transform:rotate3d(0,0,1,0deg)}}.swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scale3d(1,1,1)}10%,20%{transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}100%{transform:scale3d(1,1,1)}}.tada{animation-name:tada}@keyframes wobble{0%{transform:none}15%{transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}100%{transform:none}}.wobble{animation-name:wobble}@keyframes bounceIn{0%,100%,20%,40%,60%,80%{transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}100%{opacity:1;transform:scale3d(1,1,1)}}.bounceIn{animation-name:bounceIn;animation-duration:.75s}@keyframes bounceInDown{0%,100%,60%,75%,90%{transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}100%{transform:none}}.bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,100%,60%,75%,90%{transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}100%{transform:none}}.bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,100%,60%,75%,90%{transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}100%{transform:none}}.bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,100%,60%,75%,90%{transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}100%{transform:translate3d(0,0,0)}}.bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{animation-name:bounceOut;animation-duration:.75s}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}100%{opacity:0;transform:translate3d(0,2000px,0)}}.bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}100%{opacity:0;transform:translate3d(-2000px,0,0)}}.bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}100%{opacity:0;transform:translate3d(2000px,0,0)}}.bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}100%{opacity:0;transform:translate3d(0,-2000px,0)}}.bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}100%{opacity:1;transform:none}}.fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}100%{opacity:1;transform:none}}.fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}100%{opacity:1;transform:none}}.fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}100%{opacity:1;transform:none}}.fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}100%{opacity:1;transform:none}}.fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}100%{opacity:1;transform:none}}.fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}100%{opacity:1;transform:none}}.fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}100%{opacity:1;transform:none}}.fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}100%{opacity:0;transform:translate3d(0,100%,0)}}.fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}100%{opacity:0;transform:translate3d(0,2000px,0)}}.fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}100%{opacity:0;transform:translate3d(-100%,0,0)}}.fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}100%{opacity:0;transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}100%{opacity:0;transform:translate3d(100%,0,0)}}.fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}100%{opacity:0;transform:translate3d(2000px,0,0)}}.fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}100%{opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}100%{opacity:0;transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes flip{0%{transform:perspective(400px) rotate3d(0,1,0,-360deg);animation-timing-function:ease-out}40%{transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95);animation-timing-function:ease-in}100%{transform:perspective(400px);animation-timing-function:ease-in}}.animated.flip{backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotate3d(1,0,0,90deg);transition-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotate3d(1,0,0,-20deg);transition-timing-function:ease-in}60%{transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{transform:perspective(400px) rotate3d(1,0,0,-5deg)}100%{transform:perspective(400px)}}.flipInX{backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotate3d(0,1,0,90deg);transition-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotate3d(0,1,0,-20deg);transition-timing-function:ease-in}60%{transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{transform:perspective(400px) rotate3d(0,1,0,-5deg)}100%{transform:perspective(400px)}}.flipInY{backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}100%{transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.flipOutX{animation-name:flipOutX;animation-duration:.75s;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}100%{transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.flipOutY{backface-visibility:visible!important;animation-name:flipOutY;animation-duration:.75s}@keyframes lightSpeedIn{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg);opacity:1}100%{transform:none;opacity:1}}.lightSpeedIn{animation-name:lightSpeedIn;animation-timing-function:ease-out}@keyframes lightSpeedOut{0%{opacity:1}100%{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{animation-name:lightSpeedOut;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform-origin:center;transform:rotate3d(0,0,1,-200deg);opacity:0}100%{transform-origin:center;transform:none;opacity:1}}.rotateIn{animation-name:rotateIn}@keyframes rotateInDownLeft{0%{transform-origin:left bottom;transform:rotate3d(0,0,1,-45deg);opacity:0}100%{transform-origin:left bottom;transform:none;opacity:1}}.rotateInDownLeft{animation-name:rotateInDownLeft}@keyframes rotateInDownRight{0%{transform-origin:right bottom;transform:rotate3d(0,0,1,45deg);opacity:0}100%{transform-origin:right bottom;transform:none;opacity:1}}.rotateInDownRight{animation-name:rotateInDownRight}@keyframes rotateInUpLeft{0%{transform-origin:left bottom;transform:rotate3d(0,0,1,45deg);opacity:0}100%{transform-origin:left bottom;transform:none;opacity:1}}.rotateInUpLeft{animation-name:rotateInUpLeft}@keyframes rotateInUpRight{0%{transform-origin:right bottom;transform:rotate3d(0,0,1,-90deg);opacity:0}100%{transform-origin:right bottom;transform:none;opacity:1}}.rotateInUpRight{animation-name:rotateInUpRight}@keyframes rotateOut{0%{transform-origin:center;opacity:1}100%{transform-origin:center;transform:rotate3d(0,0,1,200deg);opacity:0}}.rotateOut{animation-name:rotateOut}@keyframes rotateOutDownLeft{0%{transform-origin:left bottom;opacity:1}100%{transform-origin:left bottom;transform:rotate3d(0,0,1,45deg);opacity:0}}.rotateOutDownLeft{animation-name:rotateOutDownLeft}@keyframes rotateOutDownRight{0%{transform-origin:right bottom;opacity:1}100%{transform-origin:right bottom;transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutDownRight{animation-name:rotateOutDownRight}@keyframes rotateOutUpLeft{0%{transform-origin:left bottom;opacity:1}100%{transform-origin:left bottom;transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutUpLeft{animation-name:rotateOutUpLeft}@keyframes rotateOutUpRight{0%{transform-origin:right bottom;opacity:1}100%{transform-origin:right bottom;transform:rotate3d(0,0,1,90deg);opacity:0}}.rotateOutUpRight{animation-name:rotateOutUpRight}@keyframes hinge{0%{transform-origin:top left;animation-timing-function:ease-in-out}20%,60%{transform:rotate3d(0,0,1,80deg);transform-origin:top left;animation-timing-function:ease-in-out}40%,80%{transform:rotate3d(0,0,1,60deg);transform-origin:top left;animation-timing-function:ease-in-out;opacity:1}100%{transform:translate3d(0,700px,0);opacity:0}}.hinge{animation-name:hinge}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}100%{opacity:1;transform:none}}.rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}100%{opacity:0;transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}100%{opacity:0}}.zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}100%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomOutDown{animation-name:zoomOutDown}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}100%{opacity:0;transform:scale(.1) translate3d(-2000px,0,0);transform-origin:left center}}.zoomOutLeft{animation-name:zoomOutLeft}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}100%{opacity:0;transform:scale(.1) translate3d(2000px,0,0);transform-origin:right center}}.zoomOutRight{animation-name:zoomOutRight}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}100%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform-origin:center bottom;animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomOutUp{animation-name:zoomOutUp}@keyframes slideInDown{0%{transform:translateY(-100%);visibility:visible}100%{transform:translateY(0)}}.slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translateX(-100%);visibility:visible}100%{transform:translateX(0)}}.slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translateX(100%);visibility:visible}100%{transform:translateX(0)}}.slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translateY(100%);visibility:visible}100%{transform:translateY(0)}}.slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateY(0)}100%{visibility:hidden;transform:translateY(100%)}}.slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateX(0)}100%{visibility:hidden;transform:translateX(-100%)}}.slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateX(0)}100%{visibility:hidden;transform:translateX(100%)}}.slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateY(0)}100%{visibility:hidden;transform:translateY(-100%)}}.slideOutUp{animation-name:slideOutUp}.animated.fast {animation-duration: 0.2s;}


@keyframes fadeInDownSm {
  0% {
    opacity: 0;
    transform: translate3d(0px, -20px, 0px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownSm {
  animation-name: fadeInDownSm;
  -webkit-animation-name: fadeInDownSm;
}
@keyframes fadeInUpSm {
  0% {
    opacity: 0;
    transform: translate3d(0px, 20px, 0px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpSm {
  animation-name: fadeInUpSm;
  -webkit-animation-name: fadeInUpSm;
}

@keyframes fadeInLeftSm {
  0% {
    opacity: 0;
    transform: translate3d(-30px, 0px, 0px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftSm {
  animation-name: fadeInLeftSm;
  -webkit-animation-name: fadeInLeftSm;
}

@keyframes fadeInRightSm {
  0% {
    opacity: 0;
    transform: translate3d(30px, 0px, 0px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightSm {
  animation-name: fadeInRightSm;
  -webkit-animation-name: fadeInRightSm;
}

@keyframes zoomInSm {
  0% {
    opacity: 0;
    transform: translate3d(30px, 0px, 0px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.zoomInSm {
  animation-name: zoomInSm;
  -webkit-animation-name: zoomInSm;
}
@font-face{font-family:"Lab Grotesque";font-style:normal;font-weight:100;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Thin.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Thin.woff) format("woff")}@font-face{font-family:"Lab Grotesque";font-style:normal;font-weight:300;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Light.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Light.woff) format("woff")}@font-face{font-family:"Lab Grotesque";font-style:normal;font-weight:400;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Regular.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Regular.woff) format("woff")}@font-face{font-family:"Lab Grotesque";font-style:normal;font-weight:500;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Medium.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Medium.woff) format("woff")}@font-face{font-family:"Lab Grotesque";font-style:normal;font-weight:600;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Medium.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Medium.woff) format("woff")}@font-face{font-family:"Lab Grotesque";font-style:normal;font-weight:700;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Bold.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Bold.woff) format("woff")}@font-face{font-family:"Lab Grotesque";font-style:normal;font-weight:900;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Black.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Black.woff) format("woff")}@font-face{font-family:"Lab Grotesque";font-style:italic;font-weight:100;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-ThinItalic.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-ThinItalic.woff) format("woff")}@font-face{font-family:"Lab Grotesque";font-style:italic;font-weight:300;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-LightItalic.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-LightItalic.woff) format("woff")}@font-face{font-family:"Lab Grotesque";font-style:italic;font-weight:400;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Italic.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-Italic.woff) format("woff")}@font-face{font-family:"Lab Grotesque";font-style:italic;font-weight:700;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-BoldItalic.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-BoldItalic.woff) format("woff")}@font-face{font-family:"Lab Grotesque";font-style:italic;font-weight:900;src:url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-BlackItalic.woff2) format("woff2"),url(https://s.kontur.ru/common-v2/fonts/LabGrotesque/LabGrotesque-BlackItalic.woff) format("woff")}body{font-family:"Lab Grotesque",-apple-system,BlinkMacSystemFont,Arial,"Liberation Sans","Nimbus Sans L",sans-serif;-webkit-font-smoothing:antialiased}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}*,*::after,*::before{box-sizing:border-box}body{color:var(--color-primary-text)}ul,ol{padding:0;margin:0;list-style:none}body{font-size:16px;line-height:1.5}
/* typographics */
.paragraph-margins {
  margin-bottom: 20px;
  margin-top: 0;
}
.paragraph-block-paddings {
  margin-bottom: 30px;
}
.paragraph-line-height {
  line-height: 1.45em;
}
.header-line-height {
  line-height: 1.3em;
}
.header-paddings {
  margin-bottom: 15px;
}
.list-margins {
  margin-left: 25px;
  margin-bottom: 7px;
  text-indent: -1.3em;
}
/* links */
a,
a:link,
.link,
a:visited,
.avisited {
  color: var(--color-primary-product, #015ccb);
  cursor: pointer;
  -webkit-text-decoration: none;
  text-decoration: none;
}
a:hover,
.link:hover,
.ahover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  color: var(--color-primary-product, #015ccb);
  cursor: pointer;
}
a:active,
a:visited:active {
  color: var(--color-primary-product, #015ccb);
}
/* END links */
/* Headers */
h6:first-child,
.h6:first-child {
  margin-top: 0px !important;
}
h5:first-child,
.h5:first-child {
  margin-top: 0px !important;
}
h4:first-child,
.h4:first-child {
  margin-top: 0px !important;
}
h3:first-child,
.h3:first-child {
  margin-top: 0px !important;
}
h2:first-child,
.h2:first-child {
  margin-top: 0px !important;
}
h1:first-child,
.h1:first-child {
  margin-top: 0px !important;
}
h1 + h1,
h1 + h2,
h1 + h3,
h1 + h4,
h1 + h5,
h1 + h6,
h2 + h1,
h2 + h2,
h2 + h3,
h2 + h4,
h2 + h5,
h2 + h6,
h3 + h1,
h3 + h2,
h3 + h3,
h3 + h4,
h3 + h5,
h3 + h6,
h4 + h1,
h4 + h2,
h4 + h3,
h4 + h4,
h4 + h5,
h4 + h6,
h5 + h1,
h5 + h2,
h5 + h3,
h5 + h4,
h5 + h5,
h5 + h6,
h6 + h1,
h6 + h2,
h6 + h3,
h6 + h4,
h6 + h5,
h6 + h6 {
  margin-top: 0px !important;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  margin-bottom: 15px;
  line-height: 1.3em;
  font-weight: normal;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 35px;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 25px;
  line-height: 1.45em;
  font-weight: normal;
}
h1,
.h1 {
  font-size: 32px;
}
h2,
.h2 {
  font-size: 26px;
}
h3,
.h3 {
  font-size: 22px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
  margin-bottom: 5px;
}
h2.chapter,
.h2.chapter {
  font-weight: 300;
  font-size: 38px;
}
/* END Headers */
p {
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 1.45em;
}
p.lead {
  margin-bottom: 20px;
  margin-top: 0;
  font-size: 22px;
  font-weight: 300;
}
hr {
  border: 0;
  margin-bottom: 20px;
  margin-top: 0;
  height: 1px;
  background: #DFDFDF;
}
.text {
  /* links */
  /* END links */
  /* выделение цветом */
  /* Цитата */
  /* END Цитата */
  /* lists */
  /* tables */
  /* images */
}
.text a:visited,
.text .avisited {
  color: var(--color-primary-product, #015ccb);
}
.text a:visited:hover,
.text .avisited:hover {
  color: var(--color-primary-product, #015ccb);
}
.text b,
.text strong {
  font-weight: 600;
}
.text b b,
.text strong strong,
.text b strong,
.text strong b {
  font-weight: 700;
}
.text small {
  font-size: 0.7em;
  opacity: 0.6;
}
.text big {
  background: #fafafa;
  border: none;
  border-bottom: 2px solid #eeeeee;
  padding: 27px 30px;
  font-size: 15px;
  display: block;
  line-height: 1.5;
  margin-bottom: 20px;
}
.text blockquote {
  margin: 0px;
  border-left: 5px solid #eee;
  padding: 10px 20px 15px 25px;
  margin-bottom: 20px;
  margin-top: 0;
}
.text blockquote :last-child {
  margin-bottom: 0px;
}
.text blockquote p {
  font-size: 18px;
  font-weight: 300;
}
.text ol,
.text ul {
  margin-bottom: 30px;
  line-height: 1.1em;
  padding-left: 12px;
  list-style: none;
  counter-reset: li;
}
.text ol {
  padding-left: 9px;
}
.text ul li {
  display: list-item;
  margin-left: 25px;
  margin-bottom: 7px;
  text-indent: -1.3em;
  line-height: 1.45em;
}
.text ol li {
  display: list-item;
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 7px;
  text-indent: -1.3em;
  text-indent: 0;
  line-height: 1.45em;
}
.text ul ul,
.text ul ol,
.text ol ol,
.text ol ul {
  margin-bottom: 0px;
  margin-top: 7px;
  padding-left: 0px;
}
.text ol ul li {
  list-style-type: none;
  margin-left: 25px;
  text-indent: -1.25em;
}
.text ul ol li {
  margin-left: 22px;
}
.text ul ol li:before {
  content: '';
}
.text ul li:before {
  color: #000;
  font-weight: 400;
  content: '\2014\a0';
  position: relative;
  right: 3px;
}
.text table {
  width: 100%;
  margin-bottom: 30px;
  border: none;
}
.text th,
.text td {
  line-height: 1.45em;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  height: 1.4em;
  border: 0;
  border-color: rgba(216, 216, 216, 0.3);
  border-style: solid;
  text-align: left;
}
.text th {
  border-bottom-width: 2px;
  color: grey;
  font-size: 0.85em;
  font-weight: 400;
}
.text table[border="1"] td {
  border-color: rgba(216, 216, 216, 0.3);
  border-bottom-width: 1px;
}
.text table[border="1"]:not(.table-border) tr:last-child td {
  border-bottom-width: 0;
}
.text .table-border td {
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.text .table-border th {
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
}
.text img {
  margin-bottom: 20px;
  margin-top: 0;
  margin-right: 20px;
  margin-top: 0.3em;
  max-width: 100%;
  height: auto !important;
}
.text img.bordered {
  border-color: rgba(216, 216, 216, 0.3);
  border-style: solid;
  border-width: 1px;
}
.text img.pull-left,
.text img[align=left] {
  margin-right: 20px;
  margin-left: 0;
}
.text img.pull-right,
.text img[align=right] {
  margin-right: 0;
  margin-left: 20px;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 16px;
}
h1,
.h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.44;
}
h2,
.h2 {
  margin-bottom: 26px;
  font-size: 32px;
  line-height: 1.39;
  font-weight: 400;
}
h3,
.h3 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.58;
  font-weight: 400;
}
h4,
.h4 {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.34;
  font-weight: 400;
}
h5,
.h5 {
  font-weight: 300;
  line-height: 1.37;
}
p.lead,
.lead p,
.lead {
  font-weight: 400;
  font-size: 22px;
  margin-top: 41px;
  margin-bottom: 26px;
  line-height: 1.45;
}
h1 + .lead,
.h1 + .lead {
  margin-top: -50px;
  margin-bottom: 70px;
}
p {
  font-size: 17px;
  margin-bottom: 26px;
  line-height: 1.53;
}
figure {
  margin: 18px 0 25px;
}
figure img + figcaption {
  margin-top: -14px;
}
address {
  font-style: normal;
}
hr {
  margin: 35px 0;
  height: 2px;
  background: rgba(216, 216, 216, 0.3);
}
ul,
ol {
  line-height: 1.5;
}
.text {
  /*p, ul, ol, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, blockquote, big, hr, .text-content{
        max-width: 664px;
        margin-left:auto;
        margin-right:auto;
    }*/
}
.text .novis:visited,
.text.novis-block a:visited,
.text .novis-block a:visited {
  color: var(--color-primary-product, #015ccb);
}
.text .novis:visited:hover,
.text.novis-block a:visited:hover,
.text .novis-block a:visited:hover {
  color: var(--color-primary-product, #015ccb);
}
.text img {
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.1);
  border: solid 2px #f2f2f2;
  padding: 12px;
  width: auto;
  height: auto;
  margin-right: 0;
  margin-top: 60px;
  margin-bottom: 60px;
  vertical-align: middle;
  position: relative;
  left: 50%;
  max-width: 100%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  display: block;
}
.text img.image,
.text img.pull-left,
.text img[align=left] {
  left: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}
.text img.image_center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.text img.default {
  box-shadow: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0px;
  margin-top: 0px;
  display: inline;
  left: 0px;
  transform: none;
}
.text figure {
  display: inline-block;
  position: relative;
  left: 50%;
  max-width: 100%;
  transform: translateX(-50%);
}
@supports (-webkit-appearance:none) {
  body {
    overflow-x: hidden;
  }
}
@media all and (-ms-high-contrast: none) {
  body {
    overflow-x: hidden;
  }
  /* IE11 */
}
:root body {
  overflow-x: hidden \9;
}
.text table {
  float: none;
}
/*
.text b,
.text strong {
    font-weight: 600;
}

.text b b,
.text strong strong,
.text b strong,
.text strong b {
    font-weight: 700;
}*/
.text .screenshot {
  border: 2px solid #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
  display: inline-block;
}
.text-light {
  font-weight: 200 !important;
}
.text-semilight {
  font-weight: 300 !important;
}
.text-normal {
  font-style: normal;
  font-weight: 400 !important;
  text-transform: none;
}
.text ul.list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 45px;
}
.text ul.list li {
  position: relative;
  padding-left: 40px;
  margin-left: 0;
  margin-bottom: 26px;
  text-indent: 0;
  line-height: 1.5em;
}
.text ul.list li:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: -2px;
  left: 0;
  background: url(/front/build/assets/theme/common/img/list-3df1c4e004b880d7b10b..svg) no-repeat;
}
.f-s-14 {
  font-size: 14px;
}
.text img {
  box-sizing: content-box;
  max-width: 98vw;
  transition: none;
}
@media (max-width: 970px) {
  .text img {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4 {
    font-weight: 600 !important;
  }
  h1,
  .h1 {
    font-size: 28px !important;
    line-height: 1.22;
  }
  h2,
  .h2 {
    font-size: 24px !important;
    margin-bottom: 20px;
  }
  h3,
  .h3 {
    font-size: 20px !important;
  }
  .text p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .text iframe {
    max-width: none !important;
  }
}
@media (max-width: 767px) {
  h2,
  .h2 {
    margin-bottom: 15px;
  }
  h6,
  .h6 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .text p {
    margin-bottom: 15px;
  }
  .text .lead {
    font-size: 16px !important;
  }
  .text img {
    margin-top: 40px;
    border: 0 !important;
    border-radius: initial !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
  }
  .text iframe {
    height: auto;
  }
  .text ol,
  .text ul {
    padding-left: 0;
  }
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media screen and (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 1000px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    width: 1070px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before,
.container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: 0%;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: 0%;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
.col-xs-1_10,
.col-sm-1_10,
.col-md-1_10,
.col-lg-1_10,
.col-xs-2_10,
.col-sm-2_10,
.col-md-2_10,
.col-lg-2_10,
.col-xs-3_10,
.col-sm-3_10,
.col-md-3_10,
.col-lg-3_10,
.col-xs-4_10,
.col-sm-4_10,
.col-md-4_10,
.col-lg-4_10,
.col-xs-5_10,
.col-sm-5_10,
.col-md-5_10,
.col-lg-5_10,
.col-xs-6_10,
.col-sm-6_10,
.col-md-6_10,
.col-lg-6_10,
.col-xs-7_10,
.col-sm-7_10,
.col-md-7_10,
.col-lg-7_10,
.col-xs-8_10,
.col-sm-8_10,
.col-md-8_10,
.col-lg-8_10,
.col-xs-9_10,
.col-sm-9_10,
.col-md-9_10,
.col-lg-9_10,
.col-xs-10_10,
.col-sm-10_10,
.col-md-10_10,
.col-lg-10_10 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  float: left;
}
.col-xs-10_10 {
  width: 100%;
}
.col-xs-9_10 {
  width: 90%;
}
.col-xs-8_10 {
  width: 80%;
}
.col-xs-7_10 {
  width: 70%;
}
.col-xs-6_10 {
  width: 60%;
}
.col-xs-5_10 {
  width: 50%;
}
.col-xs-4_10 {
  width: 40%;
}
.col-xs-3_10 {
  width: 30%;
}
.col-xs-2_10 {
  width: 20%;
}
.col-xs-1_10 {
  width: 10%;
}
.col-xs-0_10 {
  width: 0%;
}
@media screen and (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: 0%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: 0%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-xs-1_10,
  .col-sm-1_10,
  .col-md-1_10,
  .col-lg-1_10,
  .col-xs-2_10,
  .col-sm-2_10,
  .col-md-2_10,
  .col-lg-2_10,
  .col-xs-3_10,
  .col-sm-3_10,
  .col-md-3_10,
  .col-lg-3_10,
  .col-xs-4_10,
  .col-sm-4_10,
  .col-md-4_10,
  .col-lg-4_10,
  .col-xs-5_10,
  .col-sm-5_10,
  .col-md-5_10,
  .col-lg-5_10,
  .col-xs-6_10,
  .col-sm-6_10,
  .col-md-6_10,
  .col-lg-6_10,
  .col-xs-7_10,
  .col-sm-7_10,
  .col-md-7_10,
  .col-lg-7_10,
  .col-xs-8_10,
  .col-sm-8_10,
  .col-md-8_10,
  .col-lg-8_10,
  .col-xs-9_10,
  .col-sm-9_10,
  .col-md-9_10,
  .col-lg-9_10,
  .col-xs-10_10,
  .col-sm-10_10,
  .col-md-10_10,
  .col-lg-10_10 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    float: left;
  }
  .col-sm-10_10 {
    width: 100%;
  }
  .col-sm-9_10 {
    width: 90%;
  }
  .col-sm-8_10 {
    width: 80%;
  }
  .col-sm-7_10 {
    width: 70%;
  }
  .col-sm-6_10 {
    width: 60%;
  }
  .col-sm-5_10 {
    width: 50%;
  }
  .col-sm-4_10 {
    width: 40%;
  }
  .col-sm-3_10 {
    width: 30%;
  }
  .col-sm-2_10 {
    width: 20%;
  }
  .col-sm-1_10 {
    width: 10%;
  }
  .col-sm-0_10 {
    width: 0%;
  }
}
@media screen and (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: 0%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: 0%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-xs-1_10,
  .col-sm-1_10,
  .col-md-1_10,
  .col-lg-1_10,
  .col-xs-2_10,
  .col-sm-2_10,
  .col-md-2_10,
  .col-lg-2_10,
  .col-xs-3_10,
  .col-sm-3_10,
  .col-md-3_10,
  .col-lg-3_10,
  .col-xs-4_10,
  .col-sm-4_10,
  .col-md-4_10,
  .col-lg-4_10,
  .col-xs-5_10,
  .col-sm-5_10,
  .col-md-5_10,
  .col-lg-5_10,
  .col-xs-6_10,
  .col-sm-6_10,
  .col-md-6_10,
  .col-lg-6_10,
  .col-xs-7_10,
  .col-sm-7_10,
  .col-md-7_10,
  .col-lg-7_10,
  .col-xs-8_10,
  .col-sm-8_10,
  .col-md-8_10,
  .col-lg-8_10,
  .col-xs-9_10,
  .col-sm-9_10,
  .col-md-9_10,
  .col-lg-9_10,
  .col-xs-10_10,
  .col-sm-10_10,
  .col-md-10_10,
  .col-lg-10_10 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    float: left;
  }
  .col-md-10_10 {
    width: 100%;
  }
  .col-md-9_10 {
    width: 90%;
  }
  .col-md-8_10 {
    width: 80%;
  }
  .col-md-7_10 {
    width: 70%;
  }
  .col-md-6_10 {
    width: 60%;
  }
  .col-md-5_10 {
    width: 50%;
  }
  .col-md-4_10 {
    width: 40%;
  }
  .col-md-3_10 {
    width: 30%;
  }
  .col-md-2_10 {
    width: 20%;
  }
  .col-md-1_10 {
    width: 10%;
  }
  .col-md-0_10 {
    width: 0%;
  }
}
@media screen and (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: 0%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: 0%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-xs-1_10,
  .col-sm-1_10,
  .col-md-1_10,
  .col-lg-1_10,
  .col-xs-2_10,
  .col-sm-2_10,
  .col-md-2_10,
  .col-lg-2_10,
  .col-xs-3_10,
  .col-sm-3_10,
  .col-md-3_10,
  .col-lg-3_10,
  .col-xs-4_10,
  .col-sm-4_10,
  .col-md-4_10,
  .col-lg-4_10,
  .col-xs-5_10,
  .col-sm-5_10,
  .col-md-5_10,
  .col-lg-5_10,
  .col-xs-6_10,
  .col-sm-6_10,
  .col-md-6_10,
  .col-lg-6_10,
  .col-xs-7_10,
  .col-sm-7_10,
  .col-md-7_10,
  .col-lg-7_10,
  .col-xs-8_10,
  .col-sm-8_10,
  .col-md-8_10,
  .col-lg-8_10,
  .col-xs-9_10,
  .col-sm-9_10,
  .col-md-9_10,
  .col-lg-9_10,
  .col-xs-10_10,
  .col-sm-10_10,
  .col-md-10_10,
  .col-lg-10_10 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    float: left;
  }
  .col-lg-10_10 {
    width: 100%;
  }
  .col-lg-9_10 {
    width: 90%;
  }
  .col-lg-8_10 {
    width: 80%;
  }
  .col-lg-7_10 {
    width: 70%;
  }
  .col-lg-6_10 {
    width: 60%;
  }
  .col-lg-5_10 {
    width: 50%;
  }
  .col-lg-4_10 {
    width: 40%;
  }
  .col-lg-3_10 {
    width: 30%;
  }
  .col-lg-2_10 {
    width: 20%;
  }
  .col-lg-1_10 {
    width: 10%;
  }
  .col-lg-0_10 {
    width: 0%;
  }
}
.styles-form-isloaded {
  display: none;
}
/*** FORMS { ***/
.form-row {
  margin-top: 15px;
}
.form-row:first-child,
.form-row:first-of-type {
  margin-top: 0;
}
.form-row:after {
  clear: both;
  content: "";
  display: block;
}
.form-row_group {
  margin-top: 25px;
}
.form-row_group .form-label-wrap .form-label {
  margin-top: 0;
}
.form-row_group .form-checkbox:first-child,
.form-row_group .form-radio:first-child {
  padding-top: 0;
}
.form-row_group .form-checkbox:first-child .form-input-radio,
.form-row_group .form-radio:first-child .form-input-radio,
.form-row_group .form-checkbox:first-child .form-input-checkbox,
.form-row_group .form-radio:first-child .form-input-checkbox {
  top: 4px;
}
.form-row_group .form-checkbox:last-child,
.form-row_group .form-radio:last-child {
  padding-bottom: 0;
}
.form-group {
  margin-top: 35px;
}
.form-group:first-child,
.form-group:first-of-type {
  margin-top: 0;
}
.form-label-wrap {
  margin: 0;
}
.form-label-wrap .form-label {
  margin-top: 6px;
  display: inline-block;
}
.form-input-wrap {
  margin: 5px 0 0;
}
.form-input-wrap .form-text {
  padding: 5px 0 0 0;
}
.form-input-wrap .form-row:after {
  clear: none;
  display: none;
}
.form ::-webkit-input-placeholder {
  /* Chrome */
  color: #a1a1a1;
}
.form :-ms-input-placeholder {
  /* IE 10+ */
  color: #a1a1a1;
}
.form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #a1a1a1;
}
.form :-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #a1a1a1;
}
.form-input {
  padding: 5px 10px 6px;
  border: 1px solid #d9d9d9;
  width: 100%;
  border-radius: 1px;
  background: #FFFFFF;
  color: #000000;
  outline: none;
  font-size: 15px;
  line-height: 1.43em;
}
.form-input:focus,
.form-input.focus {
  background: #fff;
  border-color: #5199db;
  box-shadow: 0 0 0 1px #5199db;
}
.form-input[disabled] {
  background: #f9f9f9;
  color: #c3c3c3;
}
.form-input-radio,
.form-input-checkbox,
.form-input_radio,
.form-input_checkbox {
  top: 9px;
  left: 0;
  padding: 0;
  position: absolute;
}
.form-input-phone,
.form-input_phone {
  max-width: 180px;
}
.form-input-inn,
.form-input_inn {
  max-width: 130px;
}
.form-input-kpp,
.form-input_kpp {
  max-width: 100px;
}
.form-input-other,
.form-input_other {
  margin-top: 9px;
}
.form-input-comment_term-of-use {
  margin: 12px 0 0;
  line-height: 1.5;
  color: #a1a1a1;
}
textarea.form-input {
  resize: vertical;
  min-height: 70px;
  max-height: 700px;
  display: block;
}
textarea.form-input.resize-both {
  resize: both;
  min-width: 100%;
  max-width: 150%;
}
select.form-input {
  padding: 4px 10px;
  height: 33px;
}
.form-input.input-lg,
.form-lg .form-input {
  font-size: 18px;
  line-height: 1.33em;
  padding: 7px 10px 9px;
}
select.form-input.input-lg,
.form-lg select.form-input {
  padding: 7px 10px;
  height: 42px;
}
.form-input.input-sm,
.form-sm .form-input {
  font-size: 13px;
  line-height: 1.45em;
  padding: 2px 9px 5px;
}
select.form-input.input-sm,
.form-sm select.form-input {
  padding: 3px 9px;
  height: 27px;
}
.form-input.input-xs,
.form-xs .form-input {
  font-size: 13px;
  line-height: 1.45em;
  padding: 0 5px 2px;
}
select.form-input.input-xs,
.form-xs select.form-input {
  padding: 1px 5px;
  height: 22px;
}
.form-validation-error {
  margin-bottom: 10px;
}
.form-validation-error:empty {
  display: none;
}
.form-cell {
  float: left;
  margin: 0 0 0 10px;
}
.form-cell:first-child,
.form-cell:first-of-type {
  margin-left: 0;
}
.form-cell .form-input {
  width: 100%;
}
.form-label-required {
  color: #da0902;
}
.form-label-comment {
  font-size: 12px;
}
.form-input[type=text],
select.form-input {
  min-width: 100px;
}
.form-input-password-wrap {
  position: relative;
}
.form-input-password-wrap .form-input {
  width: 100% !important;
  padding-right: 25px;
}
.form-input-password-btn {
  color: #9e9e9e;
  cursor: pointer;
  height: 17px;
  margin-top: -11px;
  position: absolute;
  right: 10px;
  top: 50%;
  vertical-align: top;
  width: 15px;
}
.form-input-password-btn:before {
  content: "\e043";
  font-family: "konturIconic";
}
.form-input-password-btn.view:before {
  content: "\e044";
  font-family: "konturIconic";
}
.form-checkbox,
.form-radio {
  margin: 0;
  position: relative;
  padding: 5px 0 5px 18px;
}
.form-horizontal .form-label-wrap,
.form_horizontal .form-label-wrap {
  float: left;
  width: 185px;
}
.form-horizontal .form-input-wrap,
.form_horizontal .form-input-wrap {
  margin: 0 0 0 200px;
}
.form-horizontal .form-input-wrap .form-text,
.form_horizontal .form-input-wrap .form-text {
  padding: 5px 0 0 0;
}
.form-inline .form-label-wrap,
.form_inline .form-label-wrap {
  margin: 0 10px 0 0;
  display: inline-block;
  vertical-align: top;
  float: none;
  width: auto;
}
.form-inline .form-input-wrap,
.form_inline .form-input-wrap {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
.form-inline .form-input-wrap .form-text,
.form_inline .form-input-wrap .form-text {
  padding: 5px 0 0 0;
}
.form-vertical .form-label-wrap,
.form_vertical .form-label-wrap {
  float: none;
  width: auto;
}
.form-vertical .form-input-wrap,
.form_vertical .form-input-wrap {
  margin: 5px 0 0;
}
.form-vertical .form-input-wrap .form-text,
.form_vertical .form-input-wrap .form-text {
  padding: 0;
}
.form-input-error {
  background: #fff0f0;
  border-color: #d92b2b;
  box-shadow: 0 0 0 1px #d92b2b;
}
.form-input-error-text {
  color: #da0902;
  font-size: 13px;
}
.form-input-comment,
.form-input-comment-error {
  font-size: 13px;
  line-height: 1.2;
  margin: 5px 0 0;
  color: #a1a1a1;
}
.form-input-comment-error {
  color: #d92b2b;
}
.form-input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.form-input-group .form-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: table-cell;
  vertical-align: top;
}
.form-input-group-btn {
  display: table-cell;
  white-space: nowrap;
  vertical-align: top;
}
.form-input ~ .form-input-group-btn .btn {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form-input ~ .form-input-group-btn .btn:active {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-validation-error,
.input-validation-error:focus {
  background: #fff0f0;
  border-color: #d92b2b;
  box-shadow: 0 0 0 1px #d92b2b;
}
.field-validation-error {
  font-size: 13px;
  line-height: 1.2;
  margin: 5px 0 0;
  color: #a1a1a1;
  color: #d92b2b;
}
.form-input {
  border: 2px solid #e1e1e1;
  border-radius: 3px;
  color: #222222;
}
.form-input-error,
.form-input.input-validation-error,
.form-input.input-validation-error:focus,
.form-input-error:focus,
.form-input.input-validation-error:focus,
.form-input.input-validation-error:focus:focus {
  background: #ffffff;
  border-color: #ee4e4e;
  box-shadow: none;
}
.form-input-comment,
.form-input-error,
.form-input-comment-error {
  font-size: 15px;
}
.form-input:focus,
.form-input.focus {
  border-color: #a0a0a0;
  box-shadow: none;
}
.form-input,
select.form-input,
.form-input.input-validation-error:focus {
  font-size: 16px;
  line-height: 1.5;
  padding: 5px 9px 6px;
}
select.form-input {
  height: 39px;
}
.form-input.input-lg,
.form-lg .form-input,
select.form-input.input-lg,
.form-lg select.form-input {
  font-size: 18px;
  line-height: 1.33;
  padding: 11px 10px 13px;
}
.form-input.input-lg.input-validation-error:focus {
  font-size: 18px;
  line-height: 1.33;
  padding: 11px 10px 13px !important;
}
select.form-input.input-lg,
.form-lg select.form-input {
  height: 51px;
}
.form-input.input-sm,
.form-sm .form-input,
select.form-input.input-sm,
.form-sm select.form-input {
  font-size: 15px;
  line-height: 1.6;
  padding: 3px 7px 3px;
}
select.form-input.input-sm,
.form-sm select.form-input {
  height: 34px;
}
.form-input::-webkit-input-placeholder {
  color: #a0a0a0;
}
.form-input::-moz-placeholder {
  color: #a0a0a0;
}
.form-input:-ms-input-placeholder {
  color: #a0a0a0;
}
.form-input:-moz-placeholder {
  color: #a0a0a0;
}
.form-row {
  margin-top: 20px;
}
.form-group {
  margin-top: 40px;
}
.form-horizontal .form-input-wrap,
.form_horizontal .form-input-wrap {
  margin: 0 0 0 180px;
}
.form-horizontal .form-label-wrap,
.form_horizontal .form-label-wrap {
  float: left;
  width: 165px;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 0 -2px 0px 0px rgba(0, 0, 0, 0.2);
  border: none;
  -webkit-user-select: none;
  user-select: none;
  transition: background 0.2s, box-shadow 0.2s;
  -webkit-text-decoration: none;
  text-decoration: none;
  position: relative;
  outline: none;
}
.btn:hover,
.btn.hover,
.btn:focus {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.btn:active,
.btn.active {
  box-shadow: inset 0 2px 0px 0px rgba(0, 0, 0, 0.2);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn,
.btn.disabled:hover,
.btn[disabled]:hover,
fieldset[disabled] .btn:hover {
  cursor: not-allowed;
  pointer-events: none;
  color: #c3c3c3 !important;
  background-color: #f1f1f1 !important;
  box-shadow: inset 0 0px 0px 1px #d7d7d7;
}
.btn.disabled.btn-arrow-left,
.btn.disabled.btn-arrow-right {
  box-shadow: 0 0 0 1px #d7d7d7 inset;
}
.btn.disabled.btn-arrow-left:before {
  border-right-color: #d7d7d7;
}
.btn.disabled.btn-arrow-right:before {
  border-left-color: #d7d7d7;
}
.btn.btn-arrow-left,
.btn.btn-arrow-left:active,
.btn.btn-arrow-right,
.btn.btn-arrow-right:active {
  box-shadow: none;
  border-radius: 0!important;
  position: relative;
}
.btn.btn-arrow-left:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top-style: solid;
  border-top-color: transparent;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-right-style: solid;
  border-right-color: transparent;
  position: absolute;
  top: 50%;
  transition: border 0.2s;
}
.btn-secondary.btn-arrow-left:after,
.btn.disabled.btn-arrow-left:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 9px solid transparent;
  position: absolute;
  left: -8px;
  top: 50%;
  margin: -14px 0 0;
  transition: border 0.2s;
}
.btn.disabled.btn-arrow-left:after {
  border-right-color: #f1f1f1;
}
.btn.btn-arrow-right:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top-style: solid;
  border-top-color: transparent;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-left-style: solid;
  border-left-color: transparent;
  position: absolute;
  top: 50%;
  transition: border 0.2s;
}
.btn-secondary.btn-arrow-right:after,
.btn.disabled.btn-arrow-right:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 9px solid transparent;
  position: absolute;
  right: -8px;
  top: 50%;
  margin: -14px 0 0;
  transition: border 0.2s;
}
.btn.disabled.btn-arrow-right:after {
  border-left-color: #f1f1f1;
}
.btn {
  color: #222222 !important;
  background: #e6e6e6;
}
.btn:hover,
.btn.hover,
.btn:focus {
  color: #222222 !important;
  background: #f3f3f3;
}
.btn:active,
.btn.active {
  background: #e1e1e1;
  color: #222222 !important;
}
.btn.btn-arrow-left:before {
  border-right-color: #e6e6e6;
}
.btn.btn-arrow-left:hover:before,
.btn.btn-arrow-left:focus:before {
  border-right-color: #f3f3f3;
}
.btn.btn-arrow-left:active:before {
  border-right-color: #e1e1e1;
}
.btn.btn-arrow-right:before {
  border-left-color: #e6e6e6;
}
.btn.btn-arrow-right:hover:before,
.btn.btn-arrow-right:focus:before {
  border-left-color: #f3f3f3;
}
.btn.btn-arrow-right:active:before {
  border-left-color: #e1e1e1;
}
.btn-primary {
  color: #FFFFFF !important;
  background: #f03b36;
}
.btn-primary:hover,
.btn-primary.hover,
.btn-primary:focus {
  color: #FFFFFF !important;
  background: #f2524e;
}
.btn-primary:active,
.btn-primary.active {
  background: #ef322d;
  color: #FFFFFF !important;
}
.btn-primary.btn-arrow-left:before {
  border-right-color: #f03b36;
}
.btn-primary.btn-arrow-left:hover:before,
.btn-primary.btn-arrow-left:focus:before {
  border-right-color: #f2524e;
}
.btn-primary.btn-arrow-left:active:before {
  border-right-color: #ef322d;
}
.btn-primary.btn-arrow-right:before {
  border-left-color: #f03b36;
}
.btn-primary.btn-arrow-right:hover:before,
.btn-primary.btn-arrow-right:focus:before {
  border-left-color: #f2524e;
}
.btn-primary.btn-arrow-right:active:before {
  border-left-color: #ef322d;
}
.btn-secondary {
  color: #f03b36 !important;
  background: #FFFFFF;
  box-shadow: inset 0 0px 0px 1px #f03b36 !important;
  border: 1px solid #f03b36 \9 !important;
}
.btn-secondary:hover,
.btn-secondary.hover,
.btn-secondary:focus {
  color: #FFFFFF !important;
  background: #f2524e;
  box-shadow: inset 0 0px 0px 1px #f03b36;
}
.btn-secondary:active,
.btn-secondary.active {
  color: #FFFFFF !important;
  background: #ef322d;
  box-shadow: inset 0 2px 0px 0px rgba(0, 0, 0, 0.2);
}
.btn-secondary.btn-arrow-left:before {
  border-right-color: #f03b36;
}
.btn-secondary.btn-arrow-left:hover:before,
.btn-secondary.btn-arrow-left:focus:before,
.btn-secondary.btn-arrow-left:hover:after,
.btn-secondary.btn-arrow-left:focus:after {
  border-right-color: #f2524e;
}
.btn-secondary.btn-arrow-left:active:before,
.btn-secondary.btn-arrow-left:active:after {
  border-right-color: #ef322d;
}
.btn-secondary.btn-arrow-left:after {
  border-right-color: #FFFFFF;
}
.btn-secondary.btn-arrow-right:before {
  border-left-color: #f03b36;
}
.btn-secondary.btn-arrow-right:hover:before,
.btn-secondary.btn-arrow-right:focus:before,
.btn-secondary.btn-arrow-right:hover:after,
.btn-secondary.btn-arrow-right:focus:after {
  border-left-color: #f2524e;
}
.btn-secondary.btn-arrow-right:active:before,
.btn-secondary.btn-arrow-right:active:after {
  border-left-color: #ef322d;
}
.btn-secondary.btn-arrow-right:after {
  border-left-color: #FFFFFF;
}
.btn-link {
  color: var(--color-primary-product, #015ccb) !important;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link:focus,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  box-shadow: none;
}
.btn-link:hover {
  color: var(--color-primary-product, #015ccb) !important;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link:active,
.btn-link:focus {
  color: var(--color-primary-product, #015ccb) !important;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #c3c3c3 !important;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.btn-link.btn-arrow-left:before,
.btn-link.btn-arrow-right:before {
  display: none;
  margin: 0;
}
.btn-link.btn.btn-arrow-left,
.btn-link.btn.btn-arrow-right,
.btn-link.btn.btn-arrow-left:active,
.btn-link.btn.btn-arrow-right:active {
  margin: 0;
}
.btn-file {
  max-width: 340px;
  position: relative;
  overflow: hidden;
}
.btn-file input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
  filter: alpha(opacity=0);
  font-size: 200px !important;
  direction: ltr;
  cursor: pointer;
}
.btn {
  padding: 7px 20px 9px;
  font-size: 17px;
  line-height: 1.43;
  border-radius: 4px;
}
.btn:not(.btn-link):active,
.btn:not(.btn-link).active {
  padding: 8px 20px 8px;
  font-size: 17px;
  line-height: 1.43;
  border-radius: 4px;
}
.btn.btn-arrow-left,
.btn.btn-arrow-right {
  line-height: 1.2;
}
.btn.btn-arrow-left:before,
.btn.btn-arrow-right:before {
  border-top-width: 15px;
  border-bottom-width: 15px;
  margin: -15px 0 0;
}
.btn.btn-arrow-left:focus,
.btn.btn-arrow-right:focus,
.btn.btn-arrow-left:active,
.btn.btn-arrow-right:active {
  line-height: 1.2;
}
.btn.btn-arrow-left,
.btn.btn-arrow-left:active {
  margin: 0 0 0 10px;
}
.btn.btn-arrow-left:before {
  border-right-width: 10px;
  left: -10px;
}
.btn.btn-arrow-right,
.btn.btn-arrow-right:active {
  margin: 0 10px 0 0;
}
.btn.btn-arrow-right:before {
  border-left-width: 10px;
  right: -10px;
}
.btn.btn-secondary.btn-arrow-left:after,
.btn.disabled.btn-arrow-left:after {
  border-top-width: 14px;
  border-bottom-width: 14px;
  margin: -14px 0 0;
  border-right-width: 9px;
  left: -8px;
}
.btn.btn-secondary.btn-arrow-right:after,
.btn.disabled.btn-arrow-right:after {
  border-top-width: 14px;
  border-bottom-width: 14px;
  margin: -14px 0 0;
  border-left-width: 9px;
  right: -8px;
}
.btn-lg {
  padding: 12px 35px 14px;
  font-size: 21px;
  line-height: 1.33;
  border-radius: 50px;
}
.btn-lg:active:not(.btn-link),
.btn-lg.active:not(.btn-link) {
  padding: 13px 35px 13px;
  font-size: 21px;
  line-height: 1.33;
  border-radius: 50px;
}
.btn-lg.btn-arrow-left,
.btn-lg.btn-arrow-right {
  line-height: 1;
}
.btn-lg.btn-arrow-left:before,
.btn-lg.btn-arrow-right:before {
  border-top-width: 18px;
  border-bottom-width: 18px;
  margin: -18px 0 0;
}
.btn-lg.btn-arrow-left:focus,
.btn-lg.btn-arrow-right:focus,
.btn-lg.btn-arrow-left:active,
.btn-lg.btn-arrow-right:active {
  line-height: 1;
}
.btn-lg.btn-arrow-left,
.btn-lg.btn-arrow-left:active {
  margin: 0 0 0 12px;
}
.btn-lg.btn-arrow-left:before {
  border-right-width: 12px;
  left: -12px;
}
.btn-lg.btn-arrow-right,
.btn-lg.btn-arrow-right:active {
  margin: 0 12px 0 0;
}
.btn-lg.btn-arrow-right:before {
  border-left-width: 12px;
  right: -12px;
}
.btn-lg.btn-secondary.btn-arrow-left:after,
.btn-lg.disabled.btn-arrow-left:after {
  border-top-width: 17px;
  border-bottom-width: 17px;
  margin: -17px 0 0;
  border-right-width: 11px;
  left: -10px;
}
.btn-lg.btn-secondary.btn-arrow-right:after,
.btn-lg.disabled.btn-arrow-right:after {
  border-top-width: 17px;
  border-bottom-width: 17px;
  margin: -17px 0 0;
  border-left-width: 11px;
  right: -10px;
}
.btn-sm {
  padding: 3px 15px 5px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-sm:active:not(.btn-link),
.btn-sm.active:not(.btn-link) {
  padding: 4px 15px 4px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-sm.btn-arrow-left,
.btn-sm.btn-arrow-right {
  line-height: 1.2;
}
.btn-sm.btn-arrow-left:before,
.btn-sm.btn-arrow-right:before {
  border-top-width: 12px;
  border-bottom-width: 12px;
  margin: -12px 0 0;
}
.btn-sm.btn-arrow-left:focus,
.btn-sm.btn-arrow-right:focus,
.btn-sm.btn-arrow-left:active,
.btn-sm.btn-arrow-right:active {
  line-height: 1.2;
}
.btn-sm.btn-arrow-left,
.btn-sm.btn-arrow-left:active {
  margin: 0 0 0 8px;
}
.btn-sm.btn-arrow-left:before {
  border-right-width: 8px;
  left: -8px;
}
.btn-sm.btn-arrow-right,
.btn-sm.btn-arrow-right:active {
  margin: 0 8px 0 0;
}
.btn-sm.btn-arrow-right:before {
  border-left-width: 8px;
  right: -8px;
}
.btn-sm.btn-secondary.btn-arrow-left:after,
.btn-sm.disabled.btn-arrow-left:after {
  border-top-width: 11px;
  border-bottom-width: 11px;
  margin: -11px 0 0;
  border-right-width: 7px;
  left: -6px;
}
.btn-sm.btn-secondary.btn-arrow-right:after,
.btn-sm.disabled.btn-arrow-right:after {
  border-top-width: 11px;
  border-bottom-width: 11px;
  margin: -11px 0 0;
  border-left-width: 7px;
  right: -6px;
}
.btn-xs {
  padding: 1px 5px 3px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-xs:active:not(.btn-link),
.btn-xs.active:not(.btn-link) {
  padding: 2px 5px 2px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-xs.btn-arrow-left,
.btn-xs.btn-arrow-right {
  line-height: 1.1;
}
.btn-xs.btn-arrow-left:before,
.btn-xs.btn-arrow-right:before {
  border-top-width: 9px;
  border-bottom-width: 9px;
  margin: -9px 0 0;
}
.btn-xs.btn-arrow-left:focus,
.btn-xs.btn-arrow-right:focus,
.btn-xs.btn-arrow-left:active,
.btn-xs.btn-arrow-right:active {
  line-height: 1.1;
}
.btn-xs.btn-arrow-left,
.btn-xs.btn-arrow-left:active {
  margin: 0 0 0 5px;
}
.btn-xs.btn-arrow-left:before {
  border-right-width: 5px;
  left: -5px;
}
.btn-xs.btn-arrow-right,
.btn-xs.btn-arrow-right:active {
  margin: 0 5px 0 0;
}
.btn-xs.btn-arrow-right:before {
  border-left-width: 5px;
  right: -5px;
}
.btn-xs.btn-secondary.btn-arrow-left:after,
.btn-xs.disabled.btn-arrow-left:after {
  border-top-width: 8px;
  border-bottom-width: 8px;
  margin: -8px 0 0;
  border-right-width: 4px;
  left: -3px;
}
.btn-xs.btn-secondary.btn-arrow-right:after,
.btn-xs.disabled.btn-arrow-right:after {
  border-top-width: 8px;
  border-bottom-width: 8px;
  margin: -8px 0 0;
  border-left-width: 4px;
  right: -3px;
}
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.btn-file {
  /*&-btn {
    &:not(:last-child) {
            .btn {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
                &:active {            
                    border-top-right-radius: 0;
                    border-bottom-right-radius: 0;
                }
            }
        }
    }
    &-btn + &-btn .btn {
        box-shadow: inset 0 -2px 0px 0px rgba(0,0,0,0.2), inset 1px 0 0px 0px rgba(0,0,0,0.15);
        &:active {            
            box-shadow: inset 0 2px 0px 0px rgba(0, 0, 0, 0.2), inset 1px 0 0px 0px rgba(0,0,0,0.15);
        }  
    }*/
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: 0;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-group-overflow {
  overflow: hidden;
  border-radius: 4px;
}
.btn-group-overflow > .btn {
  border-radius: 0;
}
.btn-group-overflow.btn-group-lg {
  border-radius: 50px;
}
.btn-group-overflow.btn-group-sm {
  border-radius: 4px;
}
.btn-group-overflow.btn-group-sx {
  border-radius: 4px;
}
.btn-group .btn-file + .btn {
  box-shadow: inset 0 -2px 0px 0px rgba(0, 0, 0, 0.2), inset 1px 0 0px 0px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.btn-group .btn-file + .btn:active {
  box-shadow: inset 0 2px 0px 0px rgba(0, 0, 0, 0.2), inset 1px 0 0px 0px rgba(0, 0, 0, 0.15);
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group-xs > .btn {
  padding: 1px 5px 3px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-group-xs > .btn:active:not(.btn-link),
.btn-group-xs > .btn.active:not(.btn-link) {
  padding: 2px 5px 2px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-group-xs > .btn.btn-arrow-left,
.btn-group-xs > .btn.btn-arrow-right {
  line-height: 1.1;
}
.btn-group-xs > .btn.btn-arrow-left:before,
.btn-group-xs > .btn.btn-arrow-right:before {
  border-top-width: 9px;
  border-bottom-width: 9px;
  margin: -9px 0 0;
}
.btn-group-xs > .btn.btn-arrow-left:focus,
.btn-group-xs > .btn.btn-arrow-right:focus,
.btn-group-xs > .btn.btn-arrow-left:active,
.btn-group-xs > .btn.btn-arrow-right:active {
  line-height: 1.1;
}
.btn-group-xs > .btn.btn-arrow-left,
.btn-group-xs > .btn.btn-arrow-left:active {
  margin: 0 0 0 5px;
}
.btn-group-xs > .btn.btn-arrow-left:before {
  border-right-width: 5px;
  left: -5px;
}
.btn-group-xs > .btn.btn-arrow-right,
.btn-group-xs > .btn.btn-arrow-right:active {
  margin: 0 5px 0 0;
}
.btn-group-xs > .btn.btn-arrow-right:before {
  border-left-width: 5px;
  right: -5px;
}
.btn-group-xs > .btn.btn-secondary.btn-arrow-left:after,
.btn-group-xs > .btn.disabled.btn-arrow-left:after {
  border-top-width: 8px;
  border-bottom-width: 8px;
  margin: -8px 0 0;
  border-right-width: 4px;
  left: -3px;
}
.btn-group-xs > .btn.btn-secondary.btn-arrow-right:after,
.btn-group-xs > .btn.disabled.btn-arrow-right:after {
  border-top-width: 8px;
  border-bottom-width: 8px;
  margin: -8px 0 0;
  border-left-width: 4px;
  right: -3px;
}
.btn-group-xs > .btn:active:not(.btn-link),
.btn-group-xs > .btn.active:not(.btn-link) {
  padding: 1px 5px 3px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-group-sm > .btn {
  font-size: 15px;
  padding: 3px 15px 5px;
  font-size: 17px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-group-sm > .btn:active:not(.btn-link),
.btn-group-sm > .btn.active:not(.btn-link) {
  padding: 4px 15px 4px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-group-sm > .btn.btn-arrow-left,
.btn-group-sm > .btn.btn-arrow-right {
  line-height: 1.2;
}
.btn-group-sm > .btn.btn-arrow-left:before,
.btn-group-sm > .btn.btn-arrow-right:before {
  border-top-width: 12px;
  border-bottom-width: 12px;
  margin: -12px 0 0;
}
.btn-group-sm > .btn.btn-arrow-left:focus,
.btn-group-sm > .btn.btn-arrow-right:focus,
.btn-group-sm > .btn.btn-arrow-left:active,
.btn-group-sm > .btn.btn-arrow-right:active {
  line-height: 1.2;
}
.btn-group-sm > .btn.btn-arrow-left,
.btn-group-sm > .btn.btn-arrow-left:active {
  margin: 0 0 0 8px;
}
.btn-group-sm > .btn.btn-arrow-left:before {
  border-right-width: 8px;
  left: -8px;
}
.btn-group-sm > .btn.btn-arrow-right,
.btn-group-sm > .btn.btn-arrow-right:active {
  margin: 0 8px 0 0;
}
.btn-group-sm > .btn.btn-arrow-right:before {
  border-left-width: 8px;
  right: -8px;
}
.btn-group-sm > .btn.btn-secondary.btn-arrow-left:after,
.btn-group-sm > .btn.disabled.btn-arrow-left:after {
  border-top-width: 11px;
  border-bottom-width: 11px;
  margin: -11px 0 0;
  border-right-width: 7px;
  left: -6px;
}
.btn-group-sm > .btn.btn-secondary.btn-arrow-right:after,
.btn-group-sm > .btn.disabled.btn-arrow-right:after {
  border-top-width: 11px;
  border-bottom-width: 11px;
  margin: -11px 0 0;
  border-left-width: 7px;
  right: -6px;
}
.btn-group-sm > .btn:active:not(.btn-link),
.btn-group-sm > .btn.active:not(.btn-link) {
  padding: 3px 15px 5px;
  font-size: 17px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-group-lg > .btn {
  font-size: 21px;
  padding: 12px 35px 14px;
  font-size: 19px;
  line-height: 1.33;
  border-radius: 50px;
  box-shadow: 0 11px 12px 0 #fef4f4;
}
.btn-group-lg > .btn:active:not(.btn-link),
.btn-group-lg > .btn.active:not(.btn-link) {
  padding: 13px 35px 13px;
  font-size: 21px;
  line-height: 1.33;
  border-radius: 50px;
}
.btn-group-lg > .btn.btn-arrow-left,
.btn-group-lg > .btn.btn-arrow-right {
  line-height: 1;
}
.btn-group-lg > .btn.btn-arrow-left:before,
.btn-group-lg > .btn.btn-arrow-right:before {
  border-top-width: 18px;
  border-bottom-width: 18px;
  margin: -18px 0 0;
}
.btn-group-lg > .btn.btn-arrow-left:focus,
.btn-group-lg > .btn.btn-arrow-right:focus,
.btn-group-lg > .btn.btn-arrow-left:active,
.btn-group-lg > .btn.btn-arrow-right:active {
  line-height: 1;
}
.btn-group-lg > .btn.btn-arrow-left,
.btn-group-lg > .btn.btn-arrow-left:active {
  margin: 0 0 0 12px;
}
.btn-group-lg > .btn.btn-arrow-left:before {
  border-right-width: 12px;
  left: -12px;
}
.btn-group-lg > .btn.btn-arrow-right,
.btn-group-lg > .btn.btn-arrow-right:active {
  margin: 0 12px 0 0;
}
.btn-group-lg > .btn.btn-arrow-right:before {
  border-left-width: 12px;
  right: -12px;
}
.btn-group-lg > .btn.btn-secondary.btn-arrow-left:after,
.btn-group-lg > .btn.disabled.btn-arrow-left:after {
  border-top-width: 17px;
  border-bottom-width: 17px;
  margin: -17px 0 0;
  border-right-width: 11px;
  left: -10px;
}
.btn-group-lg > .btn.btn-secondary.btn-arrow-right:after,
.btn-group-lg > .btn.disabled.btn-arrow-right:after {
  border-top-width: 17px;
  border-bottom-width: 17px;
  margin: -17px 0 0;
  border-left-width: 11px;
  right: -10px;
}
.btn-group-lg > .btn:active:not(.btn-link),
.btn-group-lg > .btn.active:not(.btn-link) {
  padding: 12px 35px 14px;
  font-size: 19px;
  line-height: 1.33;
  border-radius: 50px;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group .clearfix > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.btn-dropdown-wrap {
  padding: 0 !important;
  position: relative;
  display: inline-block;
}
.btn-group .btn-dropdown-wrap {
  margin-left: -1px;
}
.btn-group .btn-dropdown-wrap:last-child .btn-dropdown {
  border-radius: 0 4px 4px 0;
}
.btn-group .btn-dropdown-wrap:first-child .btn-dropdown {
  border-radius: 4px 0 0 4px;
}
.btn-dropdown {
  position: relative;
}
.btn-dropdown:after {
  content: "\e058";
  font-family: 'konturIconic';
  display: inline-block;
  vertical-align: bottom;
  transform: rotate(0deg);
  transition: all 0.25s ease;
}
.btn-dropdown.open:after {
  margin: 2px 0 -2px 0;
  transform: rotate(-180deg);
}
.btn {
  font-weight: 600 !important;
  box-shadow: inset 0 -2px 0px 0px rgba(0, 0, 0, 0.06);
  padding: 7px 20px 9px;
  font-size: 18px;
  line-height: 1.43;
  border-radius: 4px;
}
.btn:not(.btn-link):active,
.btn:not(.btn-link).active {
  padding: 7px 20px 9px;
  font-size: 18px;
  line-height: 1.43;
  border-radius: 4px;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn,
.btn.disabled:hover,
.btn[disabled]:hover,
fieldset[disabled] .btn:hover {
  box-shadow: none !important;
}
.btn-primary {
  color: #fff !important;
  background: #f03b36;
}
.btn-primary:hover,
.btn-primary.hover,
.btn-primary:focus {
  color: #fff !important;
  opacity: 0.8;
}
.btn-primary:active,
.btn-primary.active {
  background: #f03b36;
  color: #fff !important;
}
.btn-secondary {
  color: #f03b36 !important;
  background: transparent;
  box-shadow: inset 0 0 0 2px #f03b36 !important;
}
.btn-secondary:hover,
.btn-secondary.hover,
.btn-secondary:focus {
  color: #fff !important;
  opacity: 0.8;
  box-shadow: none !important;
}
.btn-secondary:active,
.btn-secondary.active {
  color: #fff !important;
  background: #f03b36;
  box-shadow: none !important;
}
.btn-info {
  color: #222222 !important;
  background: transparent;
  box-shadow: inset 0 0 0 2px rgba(34, 34, 34, 0.22) !important;
}
.btn-info:hover,
.btn-info.hover,
.btn-info:focus {
  color: #fff !important;
  background: #cecece;
  background: rgba(34, 34, 34, 0.22);
  box-shadow: none !important;
}
.btn-info:active,
.btn-info.active {
  color: #fff !important;
  background: #cecece;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: none !important;
}
.btn-invert {
  color: #f03b36 !important;
  background: #fff !important;
  box-shadow: none !important;
}
.btn-invert:hover,
.btn-invert.hover,
.btn-invert:focus {
  color: #f03b36 !important;
  background: #f4f4f4 !important;
  box-shadow: none !important;
}
.btn-invert:active,
.btn-invert.active {
  color: #f03b36 !important;
  background: #e5e5e5 !important;
  box-shadow: none !important;
}
.btn-lg {
  padding: 12px 35px 14px;
  font-size: 19px;
  line-height: 1.33;
  border-radius: 50px;
  box-shadow: 0 11px 12px 0 #fef4f4;
}
.btn-lg:active:not(.btn-link),
.btn-lg.active:not(.btn-link) {
  padding: 12px 35px 14px;
  font-size: 19px;
  line-height: 1.33;
  border-radius: 50px;
}
.btn-sm {
  padding: 3px 15px 5px;
  font-size: 17px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-sm:active:not(.btn-link),
.btn-sm.active:not(.btn-link) {
  padding: 3px 15px 5px;
  font-size: 17px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-xs {
  padding: 1px 5px 3px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: 4px;
}
.btn-xs:active:not(.btn-link),
.btn-xs.active:not(.btn-link) {
  padding: 1px 5px 3px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .btn:not(.btn-lg) {
    width: auto;
  }
  .btn-info,
  .btn-lg {
    font-size: 18px !important;
  }
}
@media (max-width: 767px) {
  .btn {
    width: auto !important;
  }
  .btn-info {
    color: white !important;
    box-shadow: inset 0 0px 0px 2px white !important;
    border: 2px solid white \9 !important;
  }
  .btn-info:hover,
  .btn-info.hover,
  .btn-info:focus {
    color: #fff !important;
    background: #cecece;
    background: rgba(34, 34, 34, 0.22);
    box-shadow: none !important;
  }
  .btn-info:active,
  .btn-info.active {
    color: #fff !important;
    background: #cecece;
    background: rgba(0, 0, 0, 0.22);
    box-shadow: none !important;
  }
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.center-block,
.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.rounded {
  border-radius: 100%;
}
.display-block {
  display: block;
}
.display-inline {
  display: inline;
}
.display-inline-block,
.display-inlineBlock {
  display: inline-block;
}
.none {
  display: none;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.text-overflow {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fixed {
  position: fixed;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
@media (min-width: 768px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-justify {
    text-align: justify !important;
  }
}
@media (min-width: 992px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-justify {
    text-align: justify !important;
  }
}
@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-justify {
    text-align: justify !important;
  }
}
.text-nowrap {
  white-space: nowrap;
}
.text-white {
  color: white;
}
.text-gray {
  color: rgba(216, 216, 216, 0.3);
}
.text-black {
  color: black;
}
/*
.text-primary               { color: @link-color; }
.text-danger, .text-red     { color: @state-danger-text; }
.text-warning, .text-orange { color: @state-warning-text; }
.text-info, .text-blue      { color: @state-info-text; }
.text-success, .text-green  { color: @state-success-text; }
*/
.text-base {
  font-size: 17px;
}
.text-large {
  font-size: 21px;
}
.text-small {
  font-size: 15px;
}
.text-light {
  font-weight: 300;
}
.text-normal {
  font-weight: 400;
}
.text-semibold {
  font-weight: 600;
}
.text-bold {
  font-weight: bolder;
}
.text-lighter {
  font-weight: lighter;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-italic {
  font-style: italic;
}
.text-normal {
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}
.textDecoration,
.textDecoration a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  color: var(--color-primary-product, #015ccb) !important;
}
.textDecorationNone {
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
}
.textDecorationNone:hover .textDecorationHover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
/* Paddings */
.p-a-xs {
  padding: 15px;
}
.p-t-xs {
  padding-top: 15px;
}
.p-r-xs {
  padding-right: 15px;
}
.p-b-xs {
  padding-bottom: 15px;
}
.p-l-xs {
  padding-left: 15px;
}
.p-x-xs {
  padding-right: 15px;
  padding-left: 15px;
}
.p-y-xs {
  padding-top: 15px;
  padding-bottom: 15px;
}
.p-a-sm {
  padding: 35px;
}
.p-t-sm {
  padding-top: 35px;
}
.p-r-sm {
  padding-right: 35px;
}
.p-b-sm {
  padding-bottom: 35px;
}
.p-l-sm {
  padding-left: 35px;
}
.p-x-sm {
  padding-right: 35px;
  padding-left: 35px;
}
.p-y-sm {
  padding-top: 35px;
  padding-bottom: 35px;
}
.p-a-md {
  padding: 50px;
}
.p-t-md {
  padding-top: 50px;
}
.p-r-md {
  padding-right: 50px;
}
.p-b-md {
  padding-bottom: 50px;
}
.p-l-md {
  padding-left: 50px;
}
.p-x-md {
  padding-right: 50px;
  padding-left: 50px;
}
.p-y-md {
  padding-top: 50px;
  padding-bottom: 50px;
}
.p-a-lg {
  padding: 70px;
}
.p-t-lg {
  padding-top: 70px;
}
.p-r-lg {
  padding-right: 70px;
}
.p-b-lg {
  padding-bottom: 70px;
}
.p-l-lg {
  padding-left: 70px;
}
.p-x-lg {
  padding-right: 70px;
  padding-left: 70px;
}
.p-y-lg {
  padding-top: 70px;
  padding-bottom: 70px;
}
.p-a-0 {
  padding: 0 !important;
}
.p-t-0 {
  padding-top: 0 !important;
}
.p-r-0 {
  padding-right: 0 !important;
}
.p-b-0 {
  padding-bottom: 0 !important;
}
.p-l-0 {
  padding-left: 0 !important;
}
.p-x-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* Margins */
.m-a-xs {
  margin: 15px;
}
.m-t-xs {
  margin-top: 15px;
}
.m-r-xs {
  margin-right: 15px;
}
.m-b-xs {
  margin-bottom: 15px;
}
.m-l-xs {
  margin-left: 15px;
}
.m-x-xs {
  margin-right: 15px;
  margin-left: 15px;
}
.m-y-xs {
  margin-top: 15px;
  margin-bottom: 15px;
}
.m-a-sm {
  margin: 35px;
}
.m-t-sm {
  margin-top: 35px;
}
.m-r-sm {
  margin-right: 35px;
}
.m-b-sm {
  margin-bottom: 35px;
}
.m-l-sm {
  margin-left: 35px;
}
.m-x-sm {
  margin-right: 35px;
  margin-left: 35px;
}
.m-y-sm {
  margin-top: 35px;
  margin-bottom: 35px;
}
.m-a-md {
  margin: 50px;
}
.m-t-md {
  margin-top: 50px;
}
.m-r-md {
  margin-right: 50px;
}
.m-b-md {
  margin-bottom: 50px;
}
.m-l-md {
  margin-left: 50px;
}
.m-x-md {
  margin-right: 50px;
  margin-left: 50px;
}
.m-y-md {
  margin-top: 50px;
  margin-bottom: 50px;
}
.m-a-lg {
  margin: 70px;
}
.m-t-lg {
  margin-top: 70px;
}
.m-r-lg {
  margin-right: 70px;
}
.m-b-lg {
  margin-bottom: 70px;
}
.m-l-lg {
  margin-left: 70px;
}
.m-x-lg {
  margin-right: 70px;
  margin-left: 70px;
}
.m-y-lg {
  margin-top: 70px;
  margin-bottom: 70px;
}
.m-a-0 {
  margin: 0 !important;
}
.m-t-0 {
  margin-top: 0 !important;
}
.m-r-0 {
  margin-right: 0 !important;
}
.m-b-0 {
  margin-bottom: 0 !important;
}
.m-l-0 {
  margin-left: 0 !important;
}
.m-x-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.row-table {
  display: table;
}
.col-height {
  display: table-cell;
  float: none;
  vertical-align: top;
}
.col-middle {
  vertical-align: middle;
}
.col-top {
  vertical-align: top;
}
html {
  position: relative;
  min-height: 100%;
}
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.width-full:after {
  clear: both;
  display: block;
  visibility: hidden;
  overflow: hidden;
  height: 0 !important;
  line-height: 0;
  font-size: xx-large;
  content: " x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x ";
}
.cloud {
  display: inline-block;
  vertical-align: bottom;
  width: 30px;
  height: 20px;
  background: url(/front/build/assets/theme/layout/framework/images/cloud-54cc1e3b64d3a0a88f4c..gif) -2px -4px no-repeat;
}
/*** FIGURE { ***/
.figure-image,
.figure__image {
  overflow: hidden;
  margin: 0 0 10px;
}
.figure-image img,
.figure__image img {
  display: block;
  margin: 0;
}
.figure-title,
.figure__title {
  margin: 0 0 8px;
}
.figure-horizontal:after,
.figure_horizontal:after {
  content: "";
  display: block;
  clear: both;
}
.figure-horizontal .figure-image,
.figure_horizontal .figure-image,
.figure-horizontal .figure__image,
.figure_horizontal .figure__image {
  float: left;
  width: 150px;
}
.figure-horizontal .figure-info,
.figure_horizontal .figure-info,
.figure-horizontal .figure__info,
.figure_horizontal .figure__info {
  margin: 0 0 0 170px;
}
.figure_horizontal-overflow .figure__image {
  width: auto;
  margin-right: 0;
  padding-right: 15px;
  margin-bottom: 0;
  float: left;
}
.figure_horizontal-overflow .figure__image img {
  display: inline-block;
  margin-top: 0.3em;
}
.figure_horizontal-overflow .figure__info {
  margin: 0px 0 0 0;
  overflow: hidden;
}
.figure_middle {
  display: table;
}
.figure_middle .figure__image,
.figure_middle .figure__info {
  vertical-align: middle;
  display: table-cell;
  float: none;
}
.figure_middle .figure__image img,
.figure_middle .figure__info img {
  max-width: none;
}
.figure_middle .figure__image {
  padding-right: 15px;
  margin: 0;
  width: 1%;
}
/*** } FIGURE ***/
/*** LINK-ICON { ***/
.link-icon {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.link-icon .link {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: inherit;
}
.link-icon.hover,
.link-icon:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.link-icon.hover .link,
.link-icon:hover .link {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  color: inherit;
}
.link-icon.hover .konturIconic,
.link-icon:hover .konturIconic {
  color: inherit;
}
/*** } LINK-ICON ***/
/*** WELL { ***/
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
}
.well-sm {
  padding: 9px;
}
/*** } WELL ***/
/*** ALERTS { ***/
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success a.alert-link:link,
.alert-success a.alert-link:hover,
.alert-success a.alert-link:visited {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info a.alert-link:link,
.alert-info a.alert-link:hover,
.alert-info a.alert-link:visited {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning a.alert-link:link,
.alert-warning a.alert-link:hover,
.alert-warning a.alert-link:visited {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger a.alert-link:link,
.alert-danger a.alert-link:hover,
.alert-danger a.alert-link:visited {
  color: #843534;
}
/*** } ALERTS ***/
.form-validation-error {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.form-validation-error h4 {
  margin-top: 0;
  color: inherit;
}
.form-validation-error .alert-link {
  font-weight: bold;
}
.form-validation-error > p,
.form-validation-error > ul {
  margin-bottom: 0;
}
.form-validation-error > p + p {
  margin-top: 5px;
}
.form-validation-error hr {
  border-top-color: #e4b9c0;
}
.form-validation-error a.alert-link:link,
.form-validation-error a.alert-link:hover,
.form-validation-error a.alert-link:visited {
  color: #843534;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media screen and (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media screen and (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media screen and (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
/* devices up 2 991px */
@media screen and (max-width: 991px) {
  body {
    margin: 0 auto !important;
    position: relative;
    overflow-x: hidden;
  }
  footer {
    height: auto !important;
    position: static !important;
  }
}
/* Extra small devices (phones, less than 480px) */
/* Small devices (phones, less than 768px) */
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
  }
  .col-height {
    display: block !important;
  }
  .col-height[class*=hidden-] {
    display: none !important;
  }
  .row_table {
    display: block !important;
  }
  .row_table[class*=hidden-] {
    display: none !important;
  }
  .row_table > [class^="col-"] {
    display: block !important;
  }
  .row_table > [class^="col-"][class*=hidden-] {
    display: none !important;
  }
  [class*=col-] img {
    max-width: 100%;
  }
  .btn,
  btn-arrow,
  btn-group {
    width: 100%;
    margin-bottom: 15px !important;
  }
  .btn.btn-arrow-left,
  .btn.btn-arrow-right {
    width: auto;
  }
  .btn-group .btn + .btn,
  .btn-group .btn + .btn-group,
  .btn-group .btn-group + .btn,
  .btn-group .btn-group + .btn-group {
    margin-left: 0;
    margin-top: -1px;
  }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-radius: 4px 4px  0 0;
  }
  .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
  }
  .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    margin-bottom: 0 !important;
  }
  .btn-group > .btn:last-child:not(:first-child),
  .btn-group .btn-group > .dropdown-toggle:not(:first-child) {
    border-radius: 0 0 4px 4px;
  }
  .table-responsive {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
  }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
  }
  .embed-responsive_16by9 {
    padding-bottom: 56.25%;
  }
  .embed-responsive_4by3 {
    padding-bottom: 75%;
  }
  .text .h1,
  .text h1 {
    font-size: 26px;
    font-weight: 300;
  }
  .text .h2,
  .text h2 {
    font-size: 22px;
    font-weight: 400;
  }
  .text .h3,
  .text h3 {
    font-size: 22px;
    font-weight: 300;
  }
  .text .h4,
  .text h4 {
    font-size: 20px;
    font-weight: 300;
  }
  .text .lead {
    font-size: 18px;
    font-weight: 400;
  }
  .form-label-wrap,
  .form-input-wrap {
    margin-left: 0 !important;
    width: 100% !important;
    float: none !important;
  }
  .form-input-wrap {
    padding-top: 5px;
  }
  .form-input {
    box-shadow: none;
  }
  .form-input[placeholder] {
    text-overflow: ellipsis;
  }
  .lightbox2,
  .lightbox2 > table,
  .lightbox2 > table > tbody,
  .lightbox2 > table > tbody > tr,
  .lightbox2 > table > tbody > tr > td {
    display: block;
    width: 100%;
  }
  .lightbox2 {
    overflow-y: scroll !important;
    /* has to be scroll, not auto */
    -webkit-overflow-scrolling: touch;
  }
  .lightbox-content {
    padding: 12px 15px 24px !important;
  }
  .lb-bottom {
    padding: 15px !important;
  }
  .lightbox-cell {
    padding: 0 !important;
  }
  .lightbox-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .lb-button,
  .lb-closeLink {
    width: 100%;
  }
  .lightbox2-close {
    right: 5px !important;
  }
  .lightbox-content .lightbox-title {
    padding: 0 30px 23px 0 !important;
  }
  .lightbox2-close .lb-cross {
    font-size: 32px !important;
    line-height: 1 !important;
  }
  .lb-button + .lb-closeLink {
    margin-top: 15px !important;
  }
}
/* Medium devices (tablets, 768px - 991px) */
/* Large devices (desktops, 992px and up) */
@media screen and (min-width: 992px) {
  /*Disable font autosizing in Chrome on Android*/
  html * {
    max-height: 999999px;
  }
}

/* typographics */
html,
body {
  height: 100%;
}
body {
  color: #4b4e51;
  font-size: 17px;
}
#pageWrapper {
  box-shadow: 0 -10px 23px 0px #efefef;
}
@media only screen and (min-width: 1920px) {
  #pageWrapper {
    position: relative;
    max-width: 1920px !important;
    margin: 0 auto !important;
  }
}
.content-block {
  padding-top: 80px;
  padding-bottom: 80px;
}
.contrast-block {
  background-color: #f8f8f8;
  box-shadow: 0 2px 0 0 #f2f2f2, 0 -2px 0 0 #f2f2f2;
}
.page-title {
  margin-bottom: 60px;
  text-align: center;
}
.page-title_m-b-sm {
  margin-bottom: 35px;
}
.page-title_m-b-lg {
  margin-bottom: 80px;
}
.section-title {
  margin-bottom: 30px;
  text-align: center;
}
.section-title_m-b-md {
  margin-bottom: 50px;
}
.section-title_m-b-lg {
  margin-bottom: 80px;
}
.section-title_m-t-md {
  margin-top: 50px;
}
.section-title_m-t-lg {
  margin-top: 70px;
}
/*.mfp-title,
p.lead,
h2.chapter,
.h2.chapter,
.text blockquote p {
    font-weight: 200;
}*/
.link.hover {
  color: var(--color-primary-product, #015ccb) !important;
}
.link-black {
  color: #4b4e51 !important;
}
.link-black:hover {
  color: #4b4e51 !important;
}
.more-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  color: #4b4e51 !important;
  position: relative;
}
.more-link__icon {
  vertical-align: middle;
  margin: -3px 0 0 0;
}
.lightbox-wrapper {
  padding: 0;
  border-radius: 3px;
  box-shadow: 0 50px 50px 0 rgba(0, 0, 0, 0.4);
  box-sizing: content-box;
}
.lb-open {
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
}
.lightbox-content {
  padding: 30px 40px 40px;
  margin: 0;
}
.lightbox2-close {
  width: 40px;
  height: 40px;
  padding: 0;
  right: 10px;
  top: 10px;
  color: #999;
  transition: color 0.2s;
}
.lightbox-closeText {
  display: none;
}
.lightbox2-close .lb-cross {
  font-size: 38px;
  font-weight: 200;
  left: 0;
  bottom: 0;
  line-height: 0.9em;
  margin: auto;
}
.lightbox2-close:hover {
  color: #000;
}
.lightbox-header {
  margin-bottom: 40px;
}
.js_skb_form_script_loading,
.js_skb_form_old_browser_error {
  text-align: center;
}
.animated.fast {
  animation-duration: 0.2s;
}
.browser-update-toolbar {
  position: relative;
  z-index: 5;
}
.nowrap {
  white-space: nowrap;
}
.sociallinkList {
  display: inline-block;
}
.sociallinkList_inline {
  display: inline-block;
  vertical-align: top;
}
.sociallinkList_block {
  margin: 0 0 3px;
  cursor: default;
}
.sociallinkList-item {
  display: inline-block;
  margin-right: 4px;
}
.sociallinkList-item-link {
  display: inline;
  background: transparent;
  border: none;
  font-size: 29px;
  transition: opacity 0.3s;
}
.sociallinkList-item-link:hover {
  opacity: 0.8;
}
.sociallinkList-item-link_share {
  display: inline-block;
  text-align: left;
}
.sociallinkList-item .sociallinkList-item-link-fb,
.sociallinkList-item .sociallinkList-item-link_facebook,
.sociallinkList-item .sociallinkList-item-link-fb.konturIconic {
  color: #4665A9;
}
.sociallinkList-item .sociallinkList-item-link-tw,
.sociallinkList-item .sociallinkList-item-link_twitter,
.sociallinkList-item .sociallinkList-item-link-tw.konturIconic {
  color: #4DA6EB;
}
.sociallinkList-item .sociallinkList-item-link-vk,
.sociallinkList-item .sociallinkList-item-link_vkontakte,
.sociallinkList-item .sociallinkList-item-link-vk.konturIconic {
  color: #577BA4;
}
.sociallinkList-item .sociallinkList-item-link_odnoklassniki,
.sociallinkList-item .sociallinkList-item-link-odnoklassniki.konturIconic {
  color: #f58220;
}
.sociallinkList-item .sociallinkList-item-link_instagram,
.sociallinkList-item .sociallinkList-item-link-instagram.konturIconic {
  color: #d5415d;
}
.sociallinkList-item .sociallinkList-item-link-yt,
.sociallinkList-item .sociallinkList-item-link-yt.konturIconic {
  color: #D54141;
}
.sociallinkList-item .sociallinkList-item-link-gl,
.sociallinkList-item .sociallinkList-item-link-gl.konturIconic {
  color: #D54141;
}
.sociallinkList-item .sociallinkList-item-link_facebook,
.sociallinkList-item .sociallinkList-item-link_twitter,
.sociallinkList-item .sociallinkList-item-link_vkontakte,
.sociallinkList-item .sociallinkList-item-link_odnoklassniki {
  font-size: 28px;
  line-height: 26px;
  display: inline-block;
  min-height: 32px;
  text-align: left;
  padding: 0;
  width: 29px;
  margin: 0 3px 0 0;
}
.sociallinkList-item .sociallinkList-item-link_facebook:before {
  content: "\e03a";
  color: #4665A9;
}
.sociallinkList-item .sociallinkList-item-link_twitter:before {
  content: "\e03c";
  color: #4DA6EB;
}
.sociallinkList-item .sociallinkList-item-link_vkontakte:before {
  content: "\e03d";
  color: #577BA4;
}
.sociallinkList-item .sociallinkList-item-link_odnoklassniki:before {
  content: "\e056";
  color: #f58220;
}
@media (max-width: 991px) {
  body {
    font-size: 16px !important;
  }
  .container {
    max-width: 700px;
  }
  .container_full-size-sm {
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .content-block {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .content-block_md {
    padding-top: 50px;
  }
  .page-title {
    margin-bottom: 40px;
  }
  .page-title_left-sm {
    text-align: left !important;
  }
  .page-title_m-b-sm {
    margin-bottom: 25px;
  }
  .page-title_top-mobile {
    padding-top: 20px !important;
  }
  .section-title {
    font-size: 24px !important;
    margin-bottom: 20px;
  }
  .section-title_m-b-lg {
    margin-bottom: 40px;
  }
  .section-title_left-sm {
    text-align: left !important;
  }
  .more-link__icon {
    margin: -3px 4px 0 0;
  }
  /* Paddings */
  .p-a-sm {
    padding: 25px !important;
  }
  .p-t-sm {
    padding-top: 25px !important;
  }
  .p-r-sm {
    padding-right: 25px !important;
  }
  .p-b-sm {
    padding-bottom: 25px !important;
  }
  .p-l-sm {
    padding-left: 25px !important;
  }
  .p-x-sm {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
  .p-y-sm {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .p-a-md {
    padding: 35px !important;
  }
  .p-t-md {
    padding-top: 35px !important;
  }
  .p-r-md {
    padding-right: 35px !important;
  }
  .p-b-md {
    padding-bottom: 35px !important;
  }
  .p-l-md {
    padding-left: 35px !important;
  }
  .p-x-md {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }
  .p-y-md {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .p-a-lg {
    padding: 50px !important;
  }
  .p-t-lg {
    padding-top: 50px !important;
  }
  .p-r-lg {
    padding-right: 50px !important;
  }
  .p-b-lg {
    padding-bottom: 50px !important;
  }
  .p-l-lg {
    padding-left: 50px !important;
  }
  .p-x-lg {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
  .p-y-lg {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  /* Margins */
  .m-a-sm {
    margin: 25px !important;
  }
  .m-t-sm {
    margin-top: 25px !important;
  }
  .m-r-sm {
    margin-right: 25px !important;
  }
  .m-b-sm {
    margin-bottom: 25px !important;
  }
  .m-l-sm {
    margin-left: 25px !important;
  }
  .m-x-sm {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }
  .m-y-sm {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .m-a-md {
    margin: 35px !important;
  }
  .m-t-md {
    margin-top: 35px !important;
  }
  .m-r-md {
    margin-right: 35px !important;
  }
  .m-b-md {
    margin-bottom: 35px !important;
  }
  .m-l-md {
    margin-left: 35px !important;
  }
  .m-x-md {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }
  .m-y-md {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .m-a-lg {
    margin: 50px !important;
  }
  .m-t-lg {
    margin-top: 50px !important;
  }
  .m-r-lg {
    margin-right: 50px !important;
  }
  .m-b-lg {
    margin-bottom: 50px !important;
  }
  .m-l-lg {
    margin-left: 50px !important;
  }
  .m-x-lg {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }
  .m-y-lg {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .orderForm-cache {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .container_full-size-xs {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .orderForm-cache {
    margin-top: 0;
  }
  .page-title {
    margin-bottom: 40px;
  }
  .page-title_left-xs {
    text-align: left !important;
  }
}
@media (max-width: 480px) {
  .page-title {
    margin-bottom: 30px;
  }
}

/* typographics */
.article-preview + .article-preview {
  border-top: 2px solid rgba(216, 216, 216, 0.3);
}
.article-preview_action {
  display: table;
  padding: 80px 0 85px;
}
.article-preview__text,
.article-preview__img {
  display: table-cell;
  vertical-align: top;
}
.article-preview__text {
  width: 100%;
}
.article-preview_news {
  padding: 35px 0 40px;
}
.article-preview_news:last-child {
  border-bottom: 2px solid rgba(216, 216, 216, 0.3);
}
.article-preview:first-child {
  padding-top: 0;
}
.article-preview__product {
  color: #3a3d40;
}
.article-preview__date {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.17;
  color: #9b9b9b;
  margin-bottom: 18px;
}
.article-preview__title {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
}
.article-preview__desc {
  line-height: 1.59;
}
.article-preview__desc p:last-child {
  margin-bottom: 0;
}
.article-preview__btn {
  margin-top: 25px;
}
.article-preview__img {
  max-width: 362px;
  padding-left: 35px;
}
.article-preview__img img {
  max-width: 100%;
}
@supports (display: flex) {
  .article-preview_action {
    display: flex;
    justify-content: space-between;
  }
  .article-preview__img {
    max-width: 362px;
    flex-shrink: 0;
  }
}
@media (max-width: 991px) {
  .article-preview + .article-preview {
    border-top: none;
  }
  .article-preview_action {
    padding: 35px 0 0;
  }
  .article-preview__date {
    display: none;
  }
  .article-preview__title {
    font-size: 20px;
  }
  .article-preview__img {
    padding-left: 30px;
  }
  .article-preview__img img {
    max-width: 288px;
  }
}
@media (max-width: 767px) {
  .article-preview_action {
    flex-direction: column;
    max-width: 365px;
    margin-left: auto;
    margin-right: auto;
  }
  .article-preview__text {
    order: 2;
    margin-bottom: 15px;
  }
  .article-preview__title {
    margin-bottom: 10px;
  }
  .article-preview__img {
    order: 1;
    padding-left: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .article-preview__img img {
    max-width: 100%;
    width: 100%;
  }
}

/* typographics */
.about-kontur {
  padding-bottom: 70px;
}
.about-kontur__logo {
  padding: 50px 0 70px;
}
.about-kontur__text {
  padding-bottom: 100px;
}
.about-kontur img {
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .about-kontur {
    padding-bottom: 30px;
  }
  .about-kontur__logo {
    padding: 15px 0 33px;
  }
  .about-kontur__logo img {
    width: 188px;
    height: 37px;
  }
  .about-kontur__item {
    margin-bottom: 15px;
  }
  .about-kontur__item-title {
    text-align: left;
    margin-bottom: 5px;
  }
  .about-kontur__item-title h5,
  .about-kontur__item-title .h5 {
    font-size: 24px !important;
    font-weight: 600 !important;
  }
  .about-kontur__text {
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .about-kontur {
    padding-bottom: 35px;
  }
  .about-kontur__item {
    margin-bottom: 20px;
  }
}

/* typographics */
.action-block__item {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  font-size: 22px;
  font-weight: 600;
  transition: box-shadow ease 0.3s;
  min-height: 180px;
  max-width: 32.8%;
  margin-bottom: 8px;
  flex: 1 0 auto;
}
.action-block__list {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.action-block__list_vertical .action-block__item {
  max-width: 100%;
  margin-left: 0;
}
.action-block__menu {
  display: flex;
  margin-bottom: 35px;
}
.action-block__menu-title {
  font-size: 32px;
}
.action-block__menu-title:last-child {
  margin-left: auto;
}
.action-block__menu-link {
  font-size: 18px;
  line-height: 1.34;
}
@media (max-width: 991px) {
  .action-block__menu {
    margin-bottom: 0;
  }
  .action-block__menu-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .action-block__menu-title:last-child {
    margin-left: 25px;
  }
  .action-block__menu-link {
    font-size: 16px;
  }
  .action-block__list {
    justify-content: space-between;
  }
  .action-block__list_odd .action-block__item:first-child {
    max-width: 100%;
  }
  .action-block__item {
    max-width: 49.2%;
  }
}
@media (max-width: 767px) {
  .action-block__item {
    width: 100%;
    max-width: 100%;
  }
}

/* typographics */
.action-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  font-weight: 600;
  transition: box-shadow ease 0.3s;
  height: 100%;
}
.action-item:hover {
  box-shadow: 0 12px 25px 0 currentColor;
}
.action-item_small .action-item__inner {
  padding: 20px;
}
.action-item_small .action-item__title {
  font-size: 20px;
}
.action-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: no-repeat center center;
  background-size: cover;
  mix-blend-mode: screen;
  z-index: 1;
}
.action-item__inner {
  position: relative;
  display: block;
  z-index: 2;
  padding: 41px 43px 47px;
}
.action-item__icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  text-align: center;
  white-space: nowrap;
  position: relative;
  font-size: 0;
  background: #ffffff;
  border-radius: 18px;
  padding: 8px;
}
.action-item__icon:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.action-item__icon img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}
.action-item__title {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.4545;
}
@media (max-width: 991px) {
  .action-item__inner {
    padding: 25px 16px;
    flex-wrap: nowrap;
    display: flex;
  }
  .action-item__icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    margin-right: 16px;
    padding: 4px;
    border-radius: 10px;
  }
  .action-item__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .action-item__inner {
    padding: 30px 16px;
  }
}

/* typographics */
.city-list {
  white-space: nowrap;
  overflow: hidden;
  overflow-y: auto;
  max-height: 500px;
}
.city-list__item {
  padding: 3px 15px 4px;
}
.city-list__item:hover {
  background: #f3f3f3;
  cursor: pointer;
}

/* typographics */
.dropdown {
  position: relative;
}
.dropdown.open .dropdown-toggle:after {
  margin-bottom: -4px;
  transform: rotate(-180deg);
}
.dropdown.open .dropdown-drop {
  opacity: 1;
  visibility: visible;
}
.dropdown.open.btn {
  padding: 5px 14px 7px !important;
}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-toggle:after {
  content: "\e058";
  font-family: 'konturIconic' !important;
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0 0;
  line-height: 1;
  transform: rotate(0deg);
  transition: all 0.25s ease !important;
}
.dropdown-toggle:hover a,
.dropdown-toggle:hover .link {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.dropdown-toggle_btn {
  margin: -5px -14px -7px;
  padding: 5px 14px 7px;
}
.dropdown-toggle .konturIconic {
  display: inline-block;
  vertical-align: top;
}
.dropdown-toggle a,
.dropdown-toggle .link {
  color: inherit !important;
}
.dropdown-drop {
  height: 0;
  overflow: hidden;
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e9e9e9;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.09);
  text-align: left;
  cursor: default;
  font-weight: normal;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.dropdown-drop_chevron {
  margin-top: 15px;
}
.dropdown-drop_chevron .dropdown-drop__chevron {
  display: block;
}
.dropdown-drop_vertical-center {
  left: 50%;
  margin-left: -110px;
}
.dropdown-drop_right {
  right: 0;
  left: auto;
}
.dropdown-drop_right .dropdown-drop__chevron {
  left: auto;
  right: 15px;
}
.open .dropdown-drop {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.dropdown-drop__chevron {
  display: none;
  z-index: 1;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-bottom: 11px solid #e9e9e9;
  position: absolute;
  top: -11px;
  left: 50%;
  margin-left: -11px;
}
.dropdown-drop__chevron:before {
  content: "";
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 50%;
  margin-left: -10px;
}
.dropdown-menu {
  width: 210px;
  padding: 7px 0;
}
.dropdown-menu__item {
  display: block;
  padding: 7px 20px;
  line-height: 1.4;
  white-space: normal;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  color: #222 !important;
}
.dropdown-menu__item:hover {
  background: #f3f3f3;
}
.dropdown-menu__item.disabled {
  color: #c3c3c3 !important;
}
.dropdown-menu__item.active {
  background: #dadada !important;
}
.dropdown-menu__item_border-top {
  border-top: 1px solid #e9e9e9;
}
.dropdown-list {
  max-height: 400px;
  overflow-y: auto;
  font-size: 14px;
}
.dropdown-list li > a,
.dropdown-list__item {
  display: block;
  padding: 3px 20px;
  font-weight: normal;
  line-height: 1.4;
  color: #333333;
  white-space: nowrap;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
}
.dropdown-list li > a:hover,
.dropdown-list__item:hover {
  background: #f5f5f5;
  color: #262626;
}

.header{background:#fff;border-bottom:2px solid #f2f2f2;color:rgba(34,34,34,.7)}.header.header{padding:8px 0}.header__container{display:flex}.header__contacts{display:none;padding-top:5px;margin-right:-4px;font-size:15px;line-height:19.95px}.header__left-column{flex:1 1 100%;max-width:calc(100% - 48px)}.header__right-column{flex:1 1 auto;text-align:right;display:flex;align-items:center}@media screen and (min-width: 768px){.header__left-column{max-width:290px}}@media screen and (min-width: 992px){.header.header{padding-bottom:16px}.header__left-column{max-width:50%}.header__right-column{flex-direction:column;align-items:flex-end;justify-content:flex-end}.header__contacts{display:block}.header__menu{padding:20px 0 0}}
/* typographics */
.page-layout__footer {
  background: #2c353d;
}
.footer {
  position: relative;
}
.footer__logo {
  margin-top: 8px;
  max-width: 210px;
  max-height: 70px;
  opacity: 0.78;
}
.footer.footer {
  padding: 57px 0;
  width: 100%;
}
@media (max-width: 991px) {
  .footer__logo {
    margin-top: 15px;
  }
  .footer.footer {
    padding: 30px 0 57px;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    display: none;
  }
  .footer.footer {
    padding: 35px 0;
  }
}

/* typographics */
.logo {
  color: #222222 !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.logo__top svg {
  display: block;
}
.logo__partner {
  font-size: 38px;
  padding-top: 2px;
}
.logo__partner-name {
  line-height: 1.1;
  font-weight: 500;
  margin: -0.02em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.logo__partner-name-placeholder {
  display: none !important;
}
@media (max-width: 991px) {
  .logo__partner {
    width: 100%;
    font-size: 24px;
  }
  .logo__top {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .logo__top svg {
    width: 194px;
    height: 24px;
  }
  .logo__partner-name {
    position: static;
    margin: 0;
  }
  .logo__partner-name-placeholder {
    display: none !important;
  }
}

/* typographics */
.logo-list {
  text-align: center;
  padding-top: 50px;
}
.logo-list__item {
  display: inline-block;
  vertical-align: middle;
  margin: 25px 25px 0;
}
.logo-list__img {
  opacity: 0.67;
  mix-blend-mode: multiply;
  display: block;
  max-height: 50px;
  max-width: 155px;
}
@media (max-width: 991px) {
  .logo-list {
    padding-top: 25px;
  }
  .logo-list__item {
    margin: 10px 12px 0;
  }
}

/* typographics */
.menu-1__item {
  margin: 0 0 0 26px;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
}
.menu-1__list {
  display: flex;
}
.menu-1__link {
  color: inherit !important;
}
.menu-1__link:hover {
  color: #000000 !important;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.menu-1__link_active,
.menu-1__link_active:hover,
.menu-1__link_active-parent {
  color: #9b9b9b !important;
}
.menu-1__link_active-parent:hover {
  color: #000000 !important;
}
@media (max-width: 991px) {
  .menu-1 {
    padding: 0;
  }
  .menu-1__item {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .menu-1 {
    display: none;
    z-index: 100;
    position: absolute;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 13px 16px 22px;
    border: 1px solid #E9E9E9;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.09);
  }
  .menu-1__list {
    display: block;
  }
  .menu-1__item {
    display: block;
    margin: 0;
    font-size: 18px;
    padding: 12px 0;
  }
  .menu-1__link {
    display: block;
  }
}

/* typographics */
.menu-2 {
  text-align: center;
}
.menu-2__list {
  border-bottom: 2px solid rgba(216, 216, 216, 0.3);
}
.menu-2__item {
  padding: 30px 20px;
  display: inline-block;
  position: relative;
}
.menu-2__link {
  font-size: 22px;
  font-weight: 600;
  color: inherit !important;
}
.menu-2__link:hover,
.menu-2__link_active {
  color: #f03b36 !important;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.menu-2__link_active:after {
  content: '';
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  border-bottom: 2px solid currentColor;
}
@media (max-width: 991px) {
  .menu-2 {
    position: sticky;
    position: -webkit-sticky;
    z-index: 10;
    top: 0;
    background: #fff;
  }
  .menu-2__item {
    padding: 18px 20px 14px;
  }
  .menu-2__link {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .menu-2__item {
    padding: 18px 10px 14px;
  }
}

/* typographics */
.menu-burger {
  display: none;
}
.menu-burger__icon {
  display: block;
  width: 48px;
  height: 48px;
  background: url(/front/build/assets/theme/blocks/menu/menu-burger/img/burger-613af769b2f3f2229929..svg) no-repeat center center;
  border: 0;
}
.menu-burger.active .menu-burger__icon {
  background-image: url(/front/build/assets/theme/blocks/menu/menu-burger/img/cross-77854114d1153a036f17..svg);
}
@media (max-width: 767px) {
  .menu-burger {
    display: block;
    position: relative;
    z-index: 150;
  }
}

/* typographics */
.footer-policy.footer-policy {
  margin-top: 32px;
  margin-bottom: 24px;
  color: #62686D;
  font-size: 14px;
}
.footer-policy__link.footer-policy__link {
  transition: color 0.2s ease;
}
.footer-policy__link.footer-policy__link,
.footer-policy__link.footer-policy__link:link,
.footer-policy__link.footer-policy__link:active,
.footer-policy__link.footer-policy__link:visited,
.footer-policy__link.footer-policy__link:visited:active {
  color: inherit;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.footer-policy__link.footer-policy__link:hover,
.footer-policy__link.footer-policy__link:focus {
  color: #fff;
}
.menu-footer {
  color: #9fa4a7;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  font-weight: 600;
}
.menu-footer__item {
  margin-bottom: 9px;
}
.menu-footer__item_title {
  font-size: 18px;
}
.menu-footer__item-group > .menu-footer__item {
  margin-bottom: 0;
}
.menu-footer__item_phone {
  font-size: 18px;
}
.menu-footer__item_operating-time {
  font-size: 18px;
}
.menu-footer__item_feedback {
  font-size: 14px;
  margin-top: 16px;
}
.menu-footer__item_policy {
  font-size: 14px;
  color: #656b71;
}
.menu-footer__link {
  color: inherit !important;
}
.menu-footer__link:hover {
  color: #ffffff !important;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.menu-footer__link_active,
.menu-footer__link_active:hover,
.menu-footer__link_active-parent {
  color: #565d63 !important;
}
.menu-footer__link_active-parent:hover {
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .menu-footer {
    margin-bottom: 9px;
  }
  .menu-footer__item {
    margin-bottom: 5px;
  }
  .menu-footer__item_title,
  .menu-footer__item_feedback,
  .menu-footer__item_phone {
    font-size: 16px;
  }
  .menu-footer__item_feedback {
    padding-top: 2px;
  }
}
@media (max-width: 767px) {
  .menu-footer {
    padding: 0;
  }
  .menu-footer__item_title {
    padding-top: 20px;
  }
  .menu-footer__item_policy {
    padding-top: 10px;
  }
  .menu-footer__item_logo {
    padding-bottom: 15px;
  }
}

/* typographics */
.menu-rubric {
  list-style-type: none;
  text-align: center;
  border-bottom: 2px solid #f3f3f3;
  border-bottom: 2px solid rgba(216, 216, 216, 0.3);
  margin: 15px 0 80px;
  padding: 0 0 20px 0;
  font-size: 0;
}
.menu-rubric.menu-rubric_not-bordered {
  border-bottom: 0;
}
.menu-rubric__item {
  display: inline-block;
  padding: 0;
}
.menu-rubric__item + .menu-rubric__item {
  padding-left: 15px;
}
.menu-rubric__link {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  line-height: 35px;
  position: relative;
  padding: 4px 0;
}
.menu-rubric__link:after {
  content: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #f03b36;
}
.menu-rubric__link:hover,
.menu-rubric__link.active {
  color: #f03b36 !important;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.menu-rubric__link.active:after {
  content: '';
}
@media (max-width: 1200px) {
  .menu-rubric__link {
    font-size: 15px;
  }
}

/* typographics */
.news-block_vertical {
  padding-bottom: 40px;
}
.news-block_vertical + .news-block_vertical {
  padding-top: 35px;
  border-top: 2px solid #f2f2f2;
}
.news-block__list {
  margin: 70px 0;
}
.news-block__list .col-md-6 .news-block + .news-block,
.news-block__list .col-sm-12 .news-block + .news-block {
  margin-top: 50px;
}
.news-block__list .col-md-6:first-child .news-block,
.news-block__list .col-sm-12:first-child .news-block {
  padding-right: 45px;
}
.news-block__list .col-md-6:last-child,
.news-block__list .col-sm-12:last-child {
  box-shadow: -2px 0 0 #f2f2f2;
}
.news-block__list .col-md-6:last-child .news-block,
.news-block__list .col-sm-12:last-child .news-block {
  padding-left: 45px;
}
.news-block__date {
  font-size: 17px;
  line-height: 1.24;
  color: #bdbdbd;
  color: rgba(75, 78, 81, 0.5);
  margin-bottom: 15px;
}
.news-block__title {
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.news-block__desc {
  font-size: 17px;
  line-height: 1.53;
}
.news-block__desc p:last-child {
  margin: 0;
}
.news-block__desc img {
  max-width: 100%;
}
@media (max-width: 991px) {
  .news-block_vertical {
    padding-bottom: 40px;
  }
  .news-block_vertical + .news-block_vertical {
    padding-top: 0;
    border-top: none;
  }
  .news-block__list {
    margin: 40px 0 35px;
  }
  .news-block__list .col-sm-12 .news-block + .news-block {
    margin-top: 35px;
  }
  .news-block__list .col-sm-12:first-child .news-block {
    padding-right: 0;
  }
  .news-block__list .col-sm-12:last-child {
    box-shadow: none;
    padding-top: 35px;
  }
  .news-block__list .col-sm-12:last-child .news-block {
    padding-left: 0;
  }
  .news-block__date {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .news-block__title {
    font-size: 20px;
    margin-bottom: 13px;
    font-weight: 600;
  }
  .news-block__desc p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .news-block__list .col-sm-12 .news-block + .news-block {
    margin-top: 40px;
  }
  .news-block__list .col-sm-12:last-child {
    padding-top: 40px;
  }
  .news-block__title {
    line-height: 1.5;
    margin-bottom: 10px;
  }
}

/* typographics */
.news-date {
  margin-bottom: 50px;
  opacity: 0.5;
  font-size: 16px;
}
@media (max-width: 991px) {
  .news-date {
    margin-bottom: 35px;
  }
}

.pagination {
  padding: 80px 0 20px;
  width: 100%;
}
.pagination__control {
  width: 40px;
  display: inline-block;
}
.pagination__control-icon-right,
.pagination__control-icon-left {
  vertical-align: middle;
}
.pagination__control-icon-right {
  margin-left: 10px;
}
.pagination__control-icon-left {
  margin-left: -10px;
}
.pagination__list {
  padding: 0 43px;
  text-align: center;
  display: inline-block;
  vertical-align: bottom;
}
.pagination__item {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 0 1px 2px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  transition: background 0.25s ease;
}
.pagination__item_current {
  background: rgba(74, 78, 81, 0.11);
}
a.pagination__item:hover {
  background: rgba(74, 78, 81, 0.11);
}
.pagination a {
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  color: inherit !important;
}
/* typographics */
@media (max-width: 991px) {
  .pagination {
    padding: 20px 0 0;
  }
  .pagination__list {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .pagination {
    margin: 0 -15px;
    width: auto;
  }
  .pagination__item {
    margin: 0 -7px;
    width: 40px;
    height: 40px;
    line-height: 39px;
  }
  .pagination__item_ellipsis {
    width: 12px;
    margin: 0;
  }
  .pagination__control-icon-right {
    margin-left: 5px;
  }
  .pagination__control,
  .pagination__control svg {
    width: 30px;
  }
}

/* typographics */
.product-feature__list-link {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .product-feature__list-link {
    margin-bottom: 0;
  }
}

/* typographics */
.product-icon {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.product-icon__img {
  display: block !important;
  margin-top: 0 !important;
}

/* typographics */
.product-icon-block {
  display: inline-block;
  position: relative;
  width: 78px;
  height: 78px;
  z-index: 1;
}
.product-icon-block:after {
  content: '';
  position: absolute;
  bottom: 0;
  top: 10%;
  left: 5%;
  right: 5%;
  border-radius: 25%;
  box-shadow: 0 12px 16px -1px currentColor;
  z-index: -1;
}
.product-icon-block__inner {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.product-icon-block_xs {
  width: 64px;
  height: 64px;
}
.product-icon-block_xs:after {
  box-shadow: 0 9px 12px 0 currentColor;
}
.product-icon-block_md {
  width: 108px;
  height: 108px;
}
.product-icon-block_md:after {
  box-shadow: 0 12px 16px -5px currentColor;
}
.product-icon-block_lg {
  width: 323px;
  height: 323px;
}
.product-icon-block_lg:after {
  box-shadow: 0 30px 40px 0 currentColor;
}
.product-icon-block__icon.product-icon-block__icon.product-icon-block__icon {
  height: 100%;
  width: 100%;
  margin: 0;
}
@media (max-width: 991px) {
  .product-icon-block {
    width: 45px;
    height: 45px;
  }
  .product-icon-block_lg {
    width: 223px;
    height: 223px;
  }
}

/* typographics */
.product-modules__list {
  flex-wrap: wrap;
  display: flex;
}
.product-modules__item {
  display: inline-block;
  vertical-align: text-top;
  float: none;
  margin-bottom: 30px;
}
.product-modules__inner {
  flex: 1;
  height: 100%;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.1);
  border: solid 2px #f2f2f2;
  padding: 43px 30px;
  text-align: center;
}
.product-modules__image {
  min-height: 70px;
  margin-bottom: 27px;
  text-align: center;
}
.product-modules__image img {
  margin: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
}
.product-modules__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33;
  margin-bottom: 20px;
}
.product-modules__text p {
  margin: 0;
}
@media (max-width: 991px) {
  .product-modules .section-title {
    padding: 20px 0;
  }
}

/* typographics */
.product-visual {
  background: url(/front/build/assets/theme/common/img/bg-gray-8306d057860f43cdbba3..png) center center #f4f4f4;
  background: none, url(/front/build/assets/theme/common/img/bg-gray@2x-ad1f038e31a704fa3343..png) center center #f4f4f4;
  background-size: 2200px;
  box-shadow: 0 2px 0 0 #e9e9e9, 0 -2px 0 0 #e9e9e9;
}
.product-visual__item {
  padding-top: 87px;
  padding-bottom: 95px;
}
.product-visual_secondary {
  position: relative;
  padding: 29px 0 31px;
  background-position: center -470px;
}
.product-visual__product-icon {
  margin-top: 0.3em;
  padding-right: 35px !important;
  font-size: 40px;
  padding-bottom: 20px;
}
.product-visual__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
}
.product-visual__title-link {
  color: #4b4e51 !important;
}
.product-visual__desc {
  line-height: 1.56;
  margin-top: 20px;
}
.product-visual__desc p {
  font-size: 18px !important;
}
.product-visual__btn-group {
  margin-bottom: -15px;
  margin-top: 45px;
}
.product-visual__btn-group .btn {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .product-visual__item {
    padding-top: 60px;
    padding-bottom: 77px;
    vertical-align: top;
  }
  .product-visual_secondary {
    padding: 27px 0;
  }
  .product-visual__title {
    font-size: 28px;
    font-weight: 600;
  }
  .product-visual__desc {
    margin-top: 15px;
  }
  .product-visual__btn-group {
    margin-top: 30px;
  }
  .product-visual__btn-group .btn-secondary {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .product-visual__item {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .product-visual_primary {
    position: relative;
  }
  .product-visual_secondary {
    padding: 30px 0 33px;
  }
  .product-visual__title {
    z-index: 1;
    position: relative;
    color: #fff;
    padding-right: 0 !important;
  }
  .product-visual__title-link {
    color: #fff !important;
  }
  .product-visual__desc {
    color: #fff;
    margin-top: 10px;
    padding-right: 0 !important;
  }
  .product-visual__desc p {
    margin-bottom: 15px;
  }
  .product-visual__desc ul li:before {
    color: #fff;
  }
  .product-visual__bg-mobile {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .product-visual__toggle-btn .active {
    display: none !important;
  }
  .product-visual__registration-form {
    margin: 0 -15px;
    border-bottom: 2px solid #f3f3f3;
  }
}

/* typographics */
@media (max-width: 991px) {
  .products-rubric__toggle {
    margin: 0 -50px;
    padding: 18px 50px;
    font-size: 18px !important;
    border-top: 1px solid #e9e9e9;
    position: relative;
  }
  .products-rubric__toggle:after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 50px;
    width: 20px;
    height: 10px;
    background: url(/front/build/assets/theme/blocks/products-rubric/img/arrow-38502401e13963cb4a63..svg) no-repeat center center;
    transform: rotate(180deg);
  }
  .products-rubric__toggle.active {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.075);
    border-bottom: 1px solid #e9e9e9;
  }
  .products-rubric__toggle.active:after {
    transform: rotate(0deg);
  }
  .products-rubric__list {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .products-rubric__toggle {
    margin: 0 -15px;
    padding: 18px 40px 18px 15px;
  }
  .products-rubric__toggle:after {
    right: 15px;
  }
}

.promo-block {
  text-align: center;
}
.promo-block__form {
  padding: 30px 50px;
  display: table;
  height: 100%;
  background: #fff;
}
.promo-block__form-inner {
  display: table-cell;
  vertical-align: middle;
}
.promo-block__title {
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.33;
}
.promo-block__row {
  margin-top: 10px;
}
.promo-block__input {
  border-radius: 5px;
  border-color: #d9d9d9;
}
.promo-block__btn {
  width: 100%;
}
.promo-block__comment {
  opacity: 0.67;
  font-size: 12px;
  line-height: 1.25;
}
/* typographics */
@media (max-width: 991px) {
  .promo-block {
    text-align: center;
  }
  .promo-block__form {
    padding: 20px 15px;
  }
}

.product-link .text p {
  margin-bottom: 16px;
}
.product-link .btn-sm,
.product-link .btn-sm:active {
  font-size: 15px;
  padding: 6px 15px;
}
.product-link .btn-secondary {
  box-shadow: inset 0 0 0 2px currentColor !important;
}
.product-link .btn-secondary:hover,
.product-link .btn-secondary:focus,
.product-link .btn-secondary:active {
  background-color: currentColor;
}
.product-link .btn-secondary:hover span,
.product-link .btn-secondary:focus span,
.product-link .btn-secondary:active span {
  color: #fff;
}

