/****************** VAR *******************/
:root {
    --body_bg                    :   #ffffff;
    --body_bg_2                  :   #f0f2fb;
    --body_bg_3                  :   #dfe3fa;

    --footer_bg                  :   #ffffff;
    --copyright_bg               :   #ffffff;

    --dark                       :   #131417;
    --main                       :   #417dba;
    --main_num                   :   65, 125, 186;
    --main_2                     :   #0862f6;
    --main_3                     :   #eef3fc;
    --main_4                     :   #f0f2fb;
    --main_4_num                 :   240, 242, 251;
    --main_5                     :   #dfe3fa;
    --main_6                     :   #cbdbf6;
    --text                       :   #131417;
    --text_2                     :   #a6b0c3;
    --text_3                     :   #474c58;
    --text_light                 :   #ffffff;
    --text_light_2               :   #f0f2fb;
    --text_light_3               :   #a8c4f0;
    --text_link                  :   #417dba;
    --text_link_hover            :   #0862f6;
    --text_link_active           :   #4f95dc;

    --btn_primary                :   #4f95dc;
    --btn_primary_hover          :   #0862f6;
    --btn_primary_active         :   #4f95dc;
    --btn_primary_text           :   #ffffff;
    --btn_primary_text_hover     :   #ffffff;
    --btn_primary_text_active    :   #ffffff;

    --btn_secondary              :   #f0f2fb;
    --btn_secondary_hover        :   #dfe3fa;
    --btn_secondary_active       :   #f0f2fb;
    --btn_secondary_text         :   #474c58;
    --btn_secondary_text_hover   :   #131417;
    --btn_secondary_text_active  :   #474c58;

    --btn_ghost                  :   #4f95dc;
    --btn_ghost_hover            :   #0862f6;
    --btn_ghost_active           :   #003300;
    --btn_ghost_text             :   #4f95dc;
    --btn_ghost_text_hover       :   #ffffff;
    --btn_ghost_text_active      :   #ffffff;

    --color_error                :   #D94C3E;
    --color_attention            :   #ffb100;
    --color_attention_num        :   255, 177, 0;
    --color_success              :   #079A5E;
    --color_black                :   #000000;
    --color_white                :   #ffffff;

    --shadow_1                   :   0px 5px 14.25px 0.75px rgba(225, 228, 231, 0.4);
    --shadow_product             :   0px 10px 10px 0.75px rgba(225, 228, 231, 0.9);
    --shadow_2                   :   0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    --shadow_3                   :   0px 3px 5px 0px rgba(0, 0, 0, 0.2);

    --transition                 :   0.1;
}

/****************** VAR - END *******************/

* {margin: 0;padding: 0;}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, 
p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, 
dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, 
tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, 
legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, 
canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, 
nav, output, ruby, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0; vertical-align: top;}
input, select, textarea, button {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
textarea{max-width: 100%; min-width: 100%;}
input:focus, select:focus, textarea:focus, button:focus, *:focus-visible {outline:none;}

::-webkit-scrollbar {width: 5px;height: 5px;}
::-webkit-scrollbar-track {background: var(--main_4);transition: all 0.5s ease-in-out;}
::-webkit-scrollbar-thumb {background: var(--main);transition: all 0.5s ease-in-out;}

.scroll__small {position: relative;}
.scroll__small-narrow {margin: 5px 10px 5px 0px;}
.scroll__small::-webkit-scrollbar {width: 2px;}
.scroll__small::-webkit-scrollbar-track {border-radius: 2px;opacity: 0;}
.scroll__small::-webkit-scrollbar-track {background: transparent;} 

.horisontal__noscroll {overflow-x: auto; overflow-y: hidden; margin:0px -15px; padding: 0px 15px;}
.horisontal__noscroll-minified {font-size:0px;}
.horisontal__noscroll-content {display: inline-block;}
.horisontal__noscroll-content-full-width {min-width:100%;}
.horisontal__noscroll-minified .horisontal__noscroll-content {font-size:16px;}
.horisontal__noscroll::-webkit-scrollbar {width: 0px;height: 0px;}
.horisontal__noscroll::-webkit-scrollbar-track {background: var(--main_4);}
.horisontal__noscroll::-webkit-scrollbar-thumb {background: var(--main);}

/****************** GENERAL *******************/

html {
    font-size: 16px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}
body {color: var(--text); font-size: 16px;}

img[src=""] {visibility: hidden;}
img, iframe, video, object, embed {max-width: 100%;}

a {
    -webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    text-decoration:none;
    user-select:none;
    cursor: pointer;
}
svg {
    stroke:var(--text);fill:var(--text);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.button__simple {padding:0px;margin:0px;border:none;background:transparent;cursor:pointer;font-size:inherit;}
.link__simple, .link__simple:link {color: var(--text_link);}
.link__simple:hover {color: var(--text_link_hover);}
.link__simple:active {color: var(--text_link_hover);}

.img__cover {width:100%;height:100%;object-fit:cover;}
.img__contain {width:100%;height:100%;object-fit:contain;}
.text__center {text-align:center;}
.text__left {text-align:left;}
.text__right {text-align:right;}
.text__justify {text-align:justify;}
.text__nowrap {white-space:nowrap;}
.font__bold {font-weight:bold;}
.position__relative {position:relative;}

.container, .container__wide, .container__narrow {margin: 0px auto; padding-left: 15px; padding-right: 15px;width: auto;}
.container__wide {max-width: 1920px;}
.container {max-width: 1600px;}
.container__narrow {max-width: 930px;}
.content__inner {padding: 30px 0px;}

[class^="container"] .container, [class*=" container"] .container,
[class^="container"] .container__wide, [class*=" container"] .container__wide,
[class^="container"] .container__narrow, [class*=" container"] .container__narrow {padding-left: 0px; padding-right: 0px;width: auto;max-width:none;}

.clear {clear: both;}
.inline__block {display: inline-block;}
.flex__block {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
}
.easy__hover {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.required {color: var(--color_error);}

.overflow__hidden {overflow: hidden;}

.item__link-trigger {cursor:pointer;}

/****************** FORM *******************/

.btn__wrapper {margin-top: 20px;}
.btn__wrapper-top {margin-bottom: 20px;}
.btn {
    text-align: center; font-size: 20px; font-weight: 600;
    border: 2px solid transparent; color: var(--text);
    background: transparent;line-height: 170%;
    height: auto; max-width: 100%; min-width: 228px;
    box-shadow: none; position: relative;
    cursor: pointer; text-decoration: none;
    padding: 11px 20px; display: inline-block;
    user-select: none; text-transform: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.btn__left {text-align: left;}
.btn__narrow {padding: 10px 20px;font-size: 16px;line-height: 152%;min-width: 0px;}
.btn__square {max-width: 60px;width: 60px !important;height: 60px;line-height: 60px;min-width: 0px;padding: 0px !important;text-align: center;}
.btn__square svg {vertical-align: middle;}
.btn:focus-visible {outline: none;}
.btn:hover {-webkit-box-shadow: none;box-shadow: none;}
a.btn:hover {text-decoration: none;}
a.btn:active {text-decoration: none;}
a.btn.btn__block, .btn.btn__block {min-width: 0px;display:block;width:100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}

.btn:before {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btn__loading svg {animation: circle 3s linear infinite;}
@keyframes circle { 0%{transform:rotate(0deg);} 100%{transform:rotate(360deg);} }

.btn__svg-block {display: inline-block;}
.btn__svg-block .flex__block {gap:15px;}
.btn__svg svg+span {vertical-align: middle;}
.btn__svg svg {margin-right: 5px;vertical-align: middle;}
.btn.btn__svg-simple {font-size: 0px;width: 50px !important;height: 50px;line-height: 50px;vertical-align: middle;padding: 0px}
.btn__svg-simple svg {vertical-align: middle;}

a.btn.disabled, .btn:disabled, a.btn__link.disabled .btn {cursor:default;opacity: 0.5;}

a.btn.btn__primary:link,         .btn.btn__primary,
a.btn.btn__primary:visited,      .btn.btn__primary:visited {color: var(--btn_primary_text);background-color: var(--btn_primary);border-color: var(--btn_primary);}
a.btn.btn__primary:hover,        .btn.btn__primary:hover, a.btn__link:hover .btn.btn__primary {color: var(--btn_primary_text_hover);background-color: var(--btn_primary_hover);border-color: var(--btn_primary_hover);}
a.btn.btn__primary:active,       .btn.btn__primary:active, a.btn__link:active .btn.btn__primary {color: var(--btn_primary_text_active);background-color: var(--btn_primary_active);border-color: var(--btn_primary_active);}
a.btn.btn__primary.disabled,     .btn.btn__primary:disabled, a.btn__link.disabled {color: var(--btn_primary_text);background-color: var(--btn_primary) !important;border-color: var(--btn_primary) !important;}
a.btn.btn__primary:link svg,     .btn.btn__primary svg,
a.btn.btn__primary:visited svg,  .btn.btn__primary:visited svg {stroke: var(--btn_primary_text);fill: var(--btn_primary_text);}
a.btn.btn__primary:hover svg,    .btn.btn__primary:hover svg, a.btn__link:hover .btn.btn__primary svg {stroke: var(--btn_primary_text_hover);fill: var(--btn_primary_text_hover);}
a.btn.btn__primary:active svg,   .btn.btn__primary:active svg, a.btn__link:active .btn.btn__primary svg {stroke: var(--btn_primary_text_active);fill: var(--btn_primary_text_active);}
a.btn.btn__primary.disabled svg, .btn.btn__primary:disabled svg, a.btn__link.disabled svg {stroke: var(--btn_primary_text);fill: var(--btn_primary_text);}

a.btn.btn__secondary:link,        .btn.btn__secondary,
a.btn.btn__secondary:visited,     .btn.btn__secondary:visited {color: var(--btn_secondary_text);background-color: var(--btn_secondary);border-color: var(--btn_secondary);}
a.btn.btn__secondary:hover,       .btn.btn__secondary:hover, a.btn__link:hover .btn.btn__secondary {color: var(--btn_secondary_text_hover);background-color: var(--btn_secondary_hover);border-color: var(--btn_secondary_hover);}
a.btn.btn__secondary:active,      .btn.btn__secondary:active, a.btn__link:active .btn.btn__secondary {color: var(--btn_secondary_text_active);background-color: var(--btn_secondary_active);border-color: var(--btn_secondary_active);}
a.btn.btn__secondary.disabled,    .btn.btn__secondary:disabled, a.btn__link.disabled {color: var(--btn_secondary_text);background-color: var(--btn_secondary) !important;border-color: var(--btn_secondary) !important;}
a.btn.btn__secondary:link svg,    .btn.btn__secondary svg,
a.btn.btn__secondary:visited svg, .btn.btn__secondary:visited svg {stroke: var(--btn_secondary_text);fill: var(--btn_secondary_text);}
a.btn.btn__secondary:hover svg,   .btn.btn__secondary:hover svg, a.btn__link:hover .btn.btn__secondary svg {stroke: var(--btn_secondary_text_hover);fill: var(--btn_secondary_text_hover);}
a.btn.btn__secondary:active svg,  .btn.btn__secondary:active svg, a.btn__link:active .btn.btn__secondary svg {stroke: var(--btn_secondary_text_active);fill: var(--btn_secondary_text_active);}
a.btn.btn__secondary.disabled svg,.btn.btn__secondary:disabled svg, a.btn__link.disabled svg {stroke: var(--btn_secondary_text);fill: var(--btn_secondary_text);}

a.btn.btn__ghost:link,            .btn.btn__ghost,
a.btn.btn__ghost:visited,         .btn.btn__ghost:visited {color: var(--btn_ghost_text);background-color: transparent;border-color: var(--btn_ghost);}
a.btn.btn__ghost:hover,           .btn.btn__ghost:hover, a.btn__link:hover .btn.btn__ghost {color: var(--btn_ghost_text_hover);background-color: var(--btn_ghost_hover);border-color: var(--btn_ghost_hover);}
a.btn.btn__ghost:active,          .btn.btn__ghost:active, a.btn__link:active .btn.btn__ghost {color: var(--btn_ghost_text_active);background-color: var(--btn_ghost_active);border-color: var(--btn_ghost_active);}
a.btn.btn__ghost.disabled,        .btn.btn__ghost:disabled, a.btn__link.disabled {color: var(--btn_ghost_text);background-color: transparent;border-color: var(--btn_ghost) !important;}
a.btn.btn__ghost:link svg,        .btn.btn__ghost svg,
a.btn.btn__ghost:visited svg,     .btn.btn__ghost:visited svg {stroke: var(--btn_ghost_text);fill: var(--btn_ghost_text);}
a.btn.btn__ghost:hover svg,       .btn.btn__ghost:hover svg, a.btn__link:hover .btn.btn__ghost svg {stroke: var(--btn_ghost_text_hover);fill: var(--btn_ghost_text_hover);}
a.btn.btn__ghost:active svg,      .btn.btn__ghost:active svg, a.btn__link:active .btn.btn__ghost svg {stroke: var(--btn_ghost_text_active);fill: var(--btn_ghost_text_active);}
a.btn.btn__ghost.disabled svg,    .btn.btn__ghost:disabled svg, a.btn__link.disabled svg {stroke: var(--btn_ghost_text);fill: var(--btn_ghost_text);}

a.btn.btn-block, .btn.btn-block {display:block;width:100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}

@media screen and (max-width: 400px) {
    .btn {min-width: 0px; display: block;width:100%;}
    .flex__block>.btn {flex-grow: 1;}
}

.label__point {color: var(--text);font-weight: 500;margin-bottom: 10px;}
.inputs__items {justify-content: flex-start;flex-wrap:wrap;margin:0px -10px -20px -10px;align-items:flex-start;}
.inputs__item {}
.inputs__items .inputs__item {flex-grow:1;}
.inputs__items.inputs__items-2 .inputs__item {width:50%;min-width:50%;max-width:50%;}
.inputs__items.inputs__items-3 .inputs__item {width:33.3333%;min-width:33.3333%;max-width:33.3333%;}
.inputs__items.inputs__items-5 .inputs__item {width:24%;min-width:24%;max-width:24%;}
.inputs__item-inner {margin:0px 10px 20px 10px;}

@media screen and (max-width: 640px) {
    .inputs__items.inputs__items-2 {flex-direction: column;}
    .inputs__items.inputs__items-3 {flex-direction: column;}
    .inputs__items.inputs__items-4 {flex-direction: column;}
    .inputs__items.inputs__items-2 .inputs__item {width:100%;min-width:0px;max-width:none;}
    .inputs__items.inputs__items-3 .inputs__item {width:100%;min-width:0px;max-width:none;}
    .inputs__items.inputs__items-4 .inputs__item {width:100%;min-width:0px;max-width:none;}
}


.fields__columns {flex-wrap: wrap;margin:0px -10px;justify-content: flex-start;align-items:flex-start;}
.fields__column {width:33.3333%;}
.fields__columns-wide .fields__column {width:100%;}
.fields__column-inner {margin: 0px 10px 10px 10px;}


.checkboxes__line {gap:15px;margin-bottom: 20px;flex-wrap: wrap;justify-content: flex-start;}
.checkboxes__line-side {margin-left:30px;gap:15px;margin-bottom: 20px;flex-direction:column;flex-wrap: wrap;justify-content: flex-start;align-items: flex-start;}
.checkboxes__line-side-block {margin-left:30px;margin-bottom: 20px;}
.checkboxes__line-side-block>* {display:block;}
.checkboxes__line-side-block>*+* {margin-top: 15px;}

.promocode__block .input__wrapper{
    max-width:250px
}
.promocode__block{
    gap:10px;
    justify-content:flex-start;
    max-width:310px;
    align-items:flex-end
}

@media screen and (max-width: 767px) {
    .fields__column {width:50%;}
}
@media screen and (max-width: 640px) {
    .fields__column {width:100%;}
}

.input__wrapper+.input__wrapper {margin-top: 20px;}
.input__wrapper {position: relative;}
*.input__text {
    outline: none; padding: 10px 15px;
    color: var(--text); margin:0px;
    font-size: 16px;height: 60px;font-weight: 500;
    background-color: var(--color_white);
    border: 2px solid var(--main_4);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*.input__text::placeholder {}
.input__wrapper .input__text {width: 100%;}

textarea.input__text {height: auto;min-height: 55px;}
*.input__text:hover {border-color: var(--text_link_hover);}
*.input__text:focus {border-color: var(--main);}
*.input__text:disabled {opacity:0.3; border-color: var(--text_light_2) !important;}
*.input__text-error {border-color: var(--color_error) !important;}
*.input__text-error-info {color: var(--color_error);font-size: 15px;font-weight: bold;}
*.input__text-error-info div {margin-top:3px;}

.input__label {font-size: 14px; font-weight: bold; margin-bottom: 2px; display: block;}
.input__label-simple {font-size: 16px; font-weight: bold; margin-bottom: 10px; display: block;}

.input__wrapper .iti {display: block;}
.iti__country-list {max-width:460px;z-index:15;overflow:hidden;}
.iti--separate-dial-code .iti__selected-flag {background: transparent !important;}
.iti-mobile .iti--container {z-index: 1100;}
.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {font-weight: 500;color: var(--text_color);}

*.input__select {
	border-radius: 8px; border: none; height: 50px;
    box-shadow: 0px 5px 14.25px 0.75px rgba(225, 228, 231, 0.4);
    display: block;opacity: 1;width: 100%;
    padding: 10px 35px 10px 15px !important;
    color: var(--text) !important;font-size: 16px;
    background-color: var(--color_white);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24' fill='none' stroke='rgba(0,0,0,1)'><path d='M16 10L12 14L8 10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-position: right 10px top 50%;
	background-repeat: no-repeat;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}
*.input__select:not(:disabled):hover {border-color: var(--main_5);}
*.input__select:not(:disabled):focus {border-color: var(--main_5);background-color: var(--main_5);}
*.input__select:disabled {opacity: 0.5;}
.input__wrapper *.input__select {width:100% !important;}
.input__wrapper *.input__select+.select2-container {width:100% !important;}

.input__checkbox-1, .input__checkbox-2, .input__checkbox-3 {display:none;}
.input__checkbox-1:disabled+span, .input__checkbox-2:disabled+span, .input__checkbox-3:disabled+span {cursor: default;opacity:0.3;}
.input__checkbox-1+span {
    background: var(--dark);
    position: relative;
    width: 48px; min-width: 48px; height: 32px;
    display: inline-block;
    border-radius: 50px;
    border:none; cursor: pointer;
    vertical-align: middle;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.input__checkbox-1+span:after {
    content: ''; position: absolute;
    width: 28px; height: 28px;
    display: inline-block;
    background: var(--color_white);
    border-radius: 50px;
    top: 2px; left: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
label:hover .input__checkbox-1:not(:disabled):not(:checked)+span,
.input__checkbox-1:not(:disabled):not(:checked)+span:hover {background-color: var(--text_link_hover);}
label:hover .input__checkbox-1:not(:disabled):checked+span,
.input__checkbox-1:not(:disabled):checked+span:hover {background-color: var(--text_link_hover);}
.input__checkbox-1:checked+span {background-color: var(--text_link_active);}
.input__checkbox-1:checked+span:after {left: 18px;}

.input__checkbox-2+span {
    border: 2px solid var(--dark); display: inline-block; position:relative;
    border-radius: 100px; width: 28px; height: 28px; min-width: 28px;vertical-align: middle;
    background-color: var(--color_white);cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.input__checkbox-2:checked+span:after {
    position:relative;top:-1px;left:-1px;border: 0px solid var(--text_link_active);
    width: 28px; height: 28px;content:'';display:block;border-radius: 100px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
label:hover .input__checkbox-2:not(:disabled):not(:checked)+span,
.input__checkbox-2:not(:disabled):not(:checked)+span:hover,
label:hover .input__checkbox-2:not(:disabled):not(:checked)+span:after,
.input__checkbox-2:not(:disabled):not(:checked)+span:hover:after {border-color: var(--text_link_hover);}
label:hover .input__checkbox-2:not(:disabled):checked+span,
.input__checkbox-2:not(:disabled):checked+span:hover,
label:hover .input__checkbox-2:not(:disabled):checked+span:after,
.input__checkbox-2:not(:disabled):checked+span:hover:after {border-color: var(--text_link_hover);}
.input__checkbox-2:checked+span {border-color: var(--text_link_active);}
.input__checkbox-2:checked+span:after {border-width: 8px; width: 14px;height: 14px;}

.input__checkbox-3+span {
    border: 2px solid var(--dark); display: inline-block;
    border-radius: 5px; width: 28px; height: 28px; min-width: 28px; vertical-align: middle;
    background-color: var(--color_white);cursor: pointer;position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.input__checkbox-3+span:before,
.input__checkbox-3+span:after {
    content: ''; position: absolute;
    display: inline-block;
    background: var(--color_white);
    border-radius: 2px;top: 50%; left: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.input__checkbox-3+span:before {
    top: 11px; left: 9px; width: 2px; height: 12px;
    -webkit-transform: rotate(-45deg); transform: rotate(-35deg);
    background: var(--color_white); border-radius: 2px;
}
.input__checkbox-3+span:after {
    top: 5px; left: 17px; width: 2px; height: 18px;
    -webkit-transform: rotate(70deg); transform: rotate(35deg);
    background: var(--color_white); border-radius: 2px 2px 2px 0px;
}
label:hover .input__checkbox-3:not(:disabled):not(:checked)+span,
.input__checkbox-3:not(:disabled):not(:checked)+span:hover {border-color: var(--text_link_hover);}
.input__checkbox-3:checked+span {border-color: var(--text_link_active);background-color: var(--text_link_active);}
label:hover .input__checkbox-3:checked+span {border-color: var(--text_link_hover);background-color: var(--text_link_hover);}




.input__checkbox-items {justify-content: flex-start;gap: 30px;flex-wrap: wrap;}
.input__checkbox-item {}
.input__checkbox-label {cursor: pointer;}
.input__checkbox-item-block {cursor: pointer;justify-content: flex-start;gap: 15px;}
.input__checkbox-item-block-2 {cursor: pointer;justify-content: flex-start;align-items:flex-start;gap: 15px;}
.input__checkbox-item-input {}
.input__checkbox-item-text {font-weight: 500;}
input:checked+*+.input__checkbox-item-text span {font-weight: bold;}
input:checked+*+.input__checkbox-item-text .input__checkbox-item-text-simple {font-weight: 500;}
.input__checkbox-item-text a {color:var(--text_link);}
.input__checkbox-item-text a:hover {color:var(--text_link_hover);}
.input__checkbox-item-text a:active {color:var(--text_link_active);}

.select__wrapper .select2-container {width: 100% !important;}

.select__2-label {position: relative;cursor: pointer;}
.select__2-label .select__2-label-icon {position: absolute; top:50%; left:10px; margin-top:-15px; z-index: 1;}
.select__2-label .select__2-label-icon {stroke: var(--main);fill: var(--main);}

.select2.select2-container--default .select2-selection--single {
    border-radius: 8px; border:none;height: 50px;
    box-shadow: 0px 5px 14.25px 0.75px rgba(225, 228, 231, 0.4);
}
.select2.select2-container--default .select2-selection--single .select2-selection__placeholder {font-weight:500;color: var(--text);}
.select2.select2-container .select2-selection--single .select2-selection__rendered {text-align:left;line-height: 50px;padding-left: 20px;padding-right: 0px;margin-right: 50px;}
.select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {height:50px; width: 40px;}
.select2.select2-container--default .select2-selection--single .select2-selection__clear {height: 46px;width: 20px;margin-right: 40px;}

.select__2-label .select__2-with-icon+.select2.select2-container .select2-selection--single .select2-selection__rendered {padding-left: 45px;}
.select2.select2-container--default:hover .select2-selection--single:hover {box-shadow: 0px 3px 8px 3px rgba(225, 228, 231, 0.8); }
.select2.select2-container--open:before {
    position: absolute;left: 0px;z-index: -1;
    display: block;content: '';width: 100%; height: 30px;
    background: var(--text_light);
}
.select2.select2-container--above:before {top: 0px;}
.select2.select2-container--below:before {bottom: 0px;}
.select2-container.select2-container--default .select2-dropdown {overflow:hidden;border:none;box-shadow: 0px 5px 14.25px 0.75px rgba(225, 228, 231, 0.4);}

.select2-container--open .select2-dropdown {border-radius: 8px;}

.select2.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {border-radius: 8px;}

.select2.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {border-radius: 8px;}

.select2.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24' fill='none' stroke='rgba(0,0,0,1)'><path d='M16 10L12 14L8 10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-position: center center; background-repeat: no-repeat;
    border: none; width: 30px; margin: 0px; top: 50%;
    margin-top: -15px;right: 5px; left: auto; height: 30px;
}

.select2-container--default .select2-results__option {padding: 15px 20px;}

.select2-container--open .select2-dropdown--above {padding-top: 10px;}
.select2-container--open .select2-dropdown--below {padding-bottom: 10px;}

.select2-container.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {background-color: var(--main);color: white;}

.select2-container.select2-container--default .select2-results>.select2-results__options {max-height: 250px;}


/****************** FORM - END *******************/

/****************** TEXT *******************/

.title {font-weight: 900;line-height: 120%;}
.title__regular {font-weight: normal;}
.h1 {font-size: 40px;margin-bottom: 20px;}
.h2 {font-size: 32px;margin-bottom: 20px;}
.h3 {font-size: 24px;margin-bottom: 20px;}
.h4 {font-size: 22px;margin-bottom: 15px;}
.h5 {font-size: 20px;margin-bottom: 15px;}
.h6 {font-size: 18px;margin-bottom: 15px;}

.title__block {margin-bottom: 25px;}
.title__block .title {margin-bottom: 0px;}
.title__block-small .title {margin-bottom: 0px;}
.title__link {color: var(--text);}
.title__link-more {white-space: nowrap;font-weight: bold;line-height: 100%;}
.title__link-more span {position: relative;display: inline-block;vertical-align: bottom;}
.title__link-more svg {vertical-align: middle;stroke: var(--text);}
.title__link:hover {color: var(--text_link);}
a:hover .title__link-more svg {stroke: var(--text_link);}

@media (max-width: 680px) {
    .h1 {font-size: 30px;}
    .h2 {font-size: 24px;}
    .h3 {font-size: 22px;}
    .h4 {font-size: 20px;}
    .h5 {font-size: 19px;}
    .h6 {font-size: 18px;}
}

/****************** TEXT - END *******************/

.swiper {
    opacity: 0;
    -webkit-transition: opacity 0.8s ease-in-out;
    -moz-transition: opacity 0.8s ease-in-out;
    -o-transition: opacity 0.8s ease-in-out;
    transition: opacity 0.8s ease-in-out;
}
.swiper.swiper-initialized {opacity: 1;}
.swiper .swiper-pagination {line-height: 0px;}
.swiper .swiper-pagination-bullet {width: 5px; height: 5px; display: inline-block; border-radius: 50%; background: var(--main_3); opacity: 1; margin: 0px 2px !important;}
.swiper .swiper-pagination-bullet-active {background: var(--btn_secondary_hover);}
.swiper .swiper-button-next.swiper-button-disabled, .swiper .swiper-button-prev.swiper-button-disabled {pointer-events: auto;}

.simple__swiper .swiper-button-prev,
.simple__swiper .swiper-button-next {
    user-select: none; position: absolute;
    top: 0px; height: 100%; width: 65px;
    z-index: 1; font-size: 0px; padding: 0px; margin: 0px;
    border: none; cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.simple__swiper .swiper-button-prev {left: 0px;right: auto;}
.simple__swiper .swiper-button-next {left: auto;right: 0px;}
.simple__swiper .swiper-button-prev.swiper-button-disabled {cursor: default;}
.simple__swiper .swiper-button-prev svg,
.simple__swiper .swiper-button-next svg {
    top: 50%;margin-top: -15px;
    position: absolute; vertical-align: middle;
    fill: var(--main);
}

.simple__swiper .swiper-button-prev svg {
    left: 15px;
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.simple__swiper .swiper-button-next svg {fill: var(--main);stroke: var(--main);right: 15px;}

.simple__swiper .swiper-button-prev:after,
.simple__swiper .swiper-button-next:after {
    content:''; width:100%; height:100%;
    background: var(--main);
    opacity: 0.1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.simple__swiper .swiper-button-prev:not(.swiper-button-disabled):hover:after,
.simple__swiper .swiper-button-next:not(.swiper-button-disabled):hover:after {opacity: 0.2;}

.simple__swiper .swiper-pagination {margin: 0px;}

.simple__swiper .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 10px;
    background: var(--color_white);
    opacity: 1;
    margin: 0.3rem 1rem !important;
    transform: none !important;
    cursor: pointer;
}

.simple__swiper .swiper-pagination-bullet-active {background: var(--main);}

.cards__slider-wrapper {}
.cards__slider {}
.cards__slider:hover {position:relative;z-index:5;}
.cards__slider-wide {overflow:visible;}
.cards__slider-wide:hover {overflow:visible;}
.cards__slider-wrapper {overflow: hidden;width: 100%;margin:0px -10px -30px -10px;padding:0px 10px;}
.cards__slider-slide {text-align:center;height:auto !important;}
.cards__slider.swiper {overflow: visible; margin-bottom:30px;}
.cards__slider .product__card {width: 100%;height: 100%;}
.cards__slider-slide:hover {z-index:1;}
.cards__slider {padding-bottom: 20px;}

@media (max-width: 580px) {
    .cards__slider-wrapper {margin-left: -15px;margin-right: -15px;width: auto;}
    .cards__slider-swiper-wrapper-11 {padding: 0px 15px;}
    .cards__slider-slide {max-width:calc(100% - 30px);}
    .cards__slider-slide-11:last-child {padding-right:30px;}
}

.dropdown-content {
    background-color: var(--color_white);
    margin: 0;opacity: 0;
    display: none;
    min-width: 100px;
    position: absolute;
    left: 0; top: 0;
    z-index: 9999;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.alerts {position: fixed; right: 0; top: 55px; z-index: 1000000; max-width: 80%}
.alert+.alert {margin-top: 10px}
.alert {
    font-size: 18px;
    padding: 10px 15px;
    padding-right: 45px;
    background: var(--main);
    color: var(--text_light);
    position: relative;
    border-radius: 3px;
    min-width: 150px
}
.alert__close {position: absolute; top: 0; right: 0; padding: 0; display: inline-block; line-height: 0; font-size: 0; width: 40px; height: 100%;}

.alert__close svg {
    position: absolute;
    top: 50%; left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    fill: var(--text_light);
    stroke: var(--text_light);
}

.ajax__form-result {}
.ajax__form-result>*{margin-top: 15px;font-size:18px;text-align:center;}
.ajax__form-result-bottom>*{margin-bottom: 15px;}

.ajax__form-result .ajax__form-result-success,
.ajax__form-result .form__result-success,
.ajax__form-result .form__success {color:var(--color_success);}
.ajax__form-result .ajax__form-result-error,
.ajax__form-result .form__result-error,
.ajax__form-result .form__error {color:var(--color_error);}

@media screen and (min-width: 641px) {
	.ajax__form-result-left-pc>* {text-align:left;}
}