@charset "UTF-8";
:root {
    --color-blue: #1D2E48;
    --color-black: #000000;
    --color-blue-hover: #25559f;
    --color-white: #FFFFFF;
    --color-red: #FF0000;
    --color-gray: #7C7B7B;
    --color-border: #E6E6E6;
    --color-biyuzovy: #0B8596;
    --color-biyuzovy-hover: #26b3ba;
    --base-transition: all linear .2s;
    --padding-top: 6.7rem;
}

@media only screen and (max-width: 980px) {
    :root {
        --padding-top: 5.9rem;
    }
}
@media only screen and (max-width: 580px) {
    :root {
        --padding-top: 7.5rem;
    }
}
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}
.owl-carousel.owl-hidden {
    opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}
.owl-carousel.owl-rtl {
    direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
    z-index: 0;
}
.owl-carousel .owl-animated-out {
    z-index: 1;
}
.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
    /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;

    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    transition: transform 100ms ease;
    transition: transform 100ms ease, -webkit-transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/**
Ion.RangeSlider, 2.3.1
© Denis Ineshin, 2010 - 2019, IonDen.com
Build date: 2019-12-19 16:51:02
*/
.irs {
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 12px;
    font-family: Arial, sans-serif;
}

.irs-line {
    position: relative;
    display: block;
    overflow: hidden;
    outline: none !important;
}

.irs-bar {
    position: absolute;
    display: block;
    left: 0;
    width: 0;
}

.irs-shadow {
    position: absolute;
    display: none;
    left: 0;
    width: 0;
}

.irs-handle {
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: default;
    z-index: 1;
}

.irs-handle.type_last {
    z-index: 2;
}

.irs-min,
.irs-max {
    position: absolute;
    display: block;
    cursor: default;
}

.irs-min {
    left: 0;
}

.irs-max {
    right: 0;
}

.irs-from,
.irs-to,
.irs-single {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    cursor: default;
    white-space: nowrap;
}

.irs-grid {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}

.irs-with-grid .irs-grid {
    display: block;
}

.irs-grid-pol {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: #000;
}

.irs-grid-pol.small {
    height: 4px;
}

.irs-grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    padding: 0 3px;
    color: #000;
}

.irs-disable-mask {
    position: absolute;
    display: block;
    top: 0;
    left: -1%;
    width: 102%;
    height: 100%;
    cursor: default;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
}

.lt-ie9 .irs-disable-mask {
    background: #000;
    filter: alpha(opacity=0);
    cursor: not-allowed;
}

.irs-disabled {
    opacity: 0.4;
}

.irs-hidden-input {
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    outline: none !important;
    z-index: -9999 !important;
    background: none !important;
    border-style: solid !important;
    border-color: transparent !important;
}

.irs--flat {
    height: 40px;
}

.irs--flat.irs-with-grid {
    height: 60px;
}

.irs--flat .irs-line {
    top: 25px;
    height: 12px;
    background-color: #e1e4e9;
    border-radius: 4px;
}

.irs--flat .irs-bar {
    top: 25px;
    height: 12px;
    background-color: #ed5565;
}

.irs--flat .irs-bar--single {
    border-radius: 4px 0 0 4px;
}

.irs--flat .irs-shadow {
    height: 1px;
    bottom: 16px;
    background-color: #e1e4e9;
}

.irs--flat .irs-handle {
    top: 22px;
    width: 16px;
    height: 18px;
    background-color: transparent;
}

.irs--flat .irs-handle > i:first-child {
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    background-color: #da4453;
}

.irs--flat .irs-handle.state_hover > i:first-child,
.irs--flat .irs-handle:hover > i:first-child {
    background-color: #a43540;
}

.irs--flat .irs-min,
.irs--flat .irs-max {
    top: 0;
    padding: 1px 3px;
    color: #999;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    background-color: #e1e4e9;
    border-radius: 4px;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
    color: white;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #ed5565;
    border-radius: 4px;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #ed5565;
}

.irs--flat .irs-grid-pol {
    background-color: #e1e4e9;
}

.irs--flat .irs-grid-text {
    color: #999;
}

.irs--big {
    height: 55px;
}

.irs--big.irs-with-grid {
    height: 70px;
}

.irs--big .irs-line {
    top: 33px;
    height: 12px;
    background-color: white;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, #ddd), color-stop(150%, white));
    background: linear-gradient(to bottom, #ddd -50%, white 150%);
    border: 1px solid #ccc;
    border-radius: 12px;
}

.irs--big .irs-bar {
    top: 33px;
    height: 12px;
    background-color: #92bce0;
    border: 1px solid #428bca;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #428bca), to(#b9d4ec));
    background: linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
    -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
}

.irs--big .irs-bar--single {
    border-radius: 12px 0 0 12px;
}

.irs--big .irs-shadow {
    height: 1px;
    bottom: 16px;
    background-color: rgba(66, 139, 202, 0.5);
}

.irs--big .irs-handle {
    top: 25px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: #cbcfd5;
    background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, #B4B9BE), to(white));
    background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
    border-radius: 30px;
}

.irs--big .irs-handle.state_hover,
.irs--big .irs-handle:hover {
    border-color: rgba(0, 0, 0, 0.45);
    background-color: #939ba7;
    background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, #919BA5), to(white));
    background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%);
}

.irs--big .irs-min,
.irs--big .irs-max {
    top: 0;
    padding: 1px 5px;
    color: white;
    text-shadow: none;
    background-color: #9f9f9f;
    border-radius: 3px;
}

.irs--big .irs-from,
.irs--big .irs-to,
.irs--big .irs-single {
    color: white;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #428bca;
    background: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#3071a9));
    background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
    border-radius: 3px;
}

.irs--big .irs-grid-pol {
    background-color: #428bca;
}

.irs--big .irs-grid-text {
    color: #428bca;
}

.irs--modern {
    height: 55px;
}

.irs--modern.irs-with-grid {
    height: 55px;
}

.irs--modern .irs-line {
    top: 25px;
    height: 5px;
    background-color: #d1d6e0;
    background: -webkit-gradient(linear, left top, left bottom, from(#e0e4ea), to(#d1d6e0));
    background: linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%);
    border: 1px solid #a3adc1;
    border-bottom-width: 0;
    border-radius: 5px;
}

.irs--modern .irs-bar {
    top: 25px;
    height: 5px;
    background: #20b426;
    background: -webkit-gradient(linear, left top, left bottom, from(#20b426), to(#18891d));
    background: linear-gradient(to bottom, #20b426 0%, #18891d 100%);
}

.irs--modern .irs-bar--single {
    border-radius: 5px 0 0 5px;
}

.irs--modern .irs-shadow {
    height: 1px;
    bottom: 21px;
    background-color: rgba(209, 214, 224, 0.5);
}

.irs--modern .irs-handle {
    top: 37px;
    width: 12px;
    height: 13px;
    border: 1px solid #a3adc1;
    border-top-width: 0;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 3px 3px;
}

.irs--modern .irs-handle > i:nth-child(1) {
    position: absolute;
    display: block;
    top: -4px;
    left: 1px;
    width: 6px;
    height: 6px;
    border: 1px solid #a3adc1;
    background: white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.irs--modern .irs-handle > i:nth-child(2) {
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 10px;
    height: 12px;
    background: #e9e6e6;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e9e6e6));
    background: linear-gradient(to bottom, white 0%, #e9e6e6 100%);
    border-radius: 0 0 3px 3px;
}

.irs--modern .irs-handle > i:nth-child(3) {
    position: absolute;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 5px;
    border-left: 1px solid #a3adc1;
    border-right: 1px solid #a3adc1;
}

.irs--modern .irs-handle.state_hover,
.irs--modern .irs-handle:hover {
    border-color: #7685a2;
    background: #c3c7cd;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #919ba5), to(#ffffff));
    background: linear-gradient(to bottom, #ffffff 0%, #919ba5 30%, #ffffff 100%);
}

.irs--modern .irs-handle.state_hover > i:nth-child(1),
.irs--modern .irs-handle:hover > i:nth-child(1) {
    border-color: #7685a2;
}

.irs--modern .irs-handle.state_hover > i:nth-child(3),
.irs--modern .irs-handle:hover > i:nth-child(3) {
    border-color: #48536a;
}

.irs--modern .irs-min,
.irs--modern .irs-max {
    top: 0;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    color: white;
    background-color: #d1d6e0;
    border-radius: 5px;
}

.irs--modern .irs-from,
.irs--modern .irs-to,
.irs--modern .irs-single {
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #20b426;
    color: white;
    border-radius: 5px;
}

.irs--modern .irs-from:before,
.irs--modern .irs-to:before,
.irs--modern .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #20b426;
}

.irs--modern .irs-grid {
    height: 25px;
}

.irs--modern .irs-grid-pol {
    background-color: #dedede;
}

.irs--modern .irs-grid-text {
    color: silver;
    font-size: 13px;
}

.irs--sharp {
    height: 50px;
    font-size: 12px;
    line-height: 1;
}

.irs--sharp.irs-with-grid {
    height: 57px;
}

.irs--sharp .irs-line {
    top: 30px;
    height: 2px;
    background-color: black;
    border-radius: 2px;
}

.irs--sharp .irs-bar {
    top: 30px;
    height: 2px;
    background-color: #ee22fa;
}

.irs--sharp .irs-bar--single {
    border-radius: 2px 0 0 2px;
}

.irs--sharp .irs-shadow {
    height: 1px;
    bottom: 21px;
    background-color: rgba(0, 0, 0, 0.5);
}

.irs--sharp .irs-handle {
    top: 25px;
    width: 10px;
    height: 10px;
    background-color: #a804b2;
}

.irs--sharp .irs-handle > i:first-child {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #a804b2;
}

.irs--sharp .irs-handle.state_hover,
.irs--sharp .irs-handle:hover {
    background-color: black;
}

.irs--sharp .irs-handle.state_hover > i:first-child,
.irs--sharp .irs-handle:hover > i:first-child {
    border-top-color: black;
}

.irs--sharp .irs-min,
.irs--sharp .irs-max {
    color: white;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 4px;
    opacity: 0.4;
    background-color: #a804b2;
    border-radius: 2px;
}

.irs--sharp .irs-from,
.irs--sharp .irs-to,
.irs--sharp .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 4px;
    background-color: #a804b2;
    color: white;
    border-radius: 2px;
}

.irs--sharp .irs-from:before,
.irs--sharp .irs-to:before,
.irs--sharp .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #a804b2;
}

.irs--sharp .irs-grid {
    height: 25px;
}

.irs--sharp .irs-grid-pol {
    background-color: #dedede;
}

.irs--sharp .irs-grid-text {
    color: silver;
    font-size: 13px;
}

.irs--round {
    height: 50px;
}

.irs--round.irs-with-grid {
    height: 65px;
}

.irs--round .irs-line {
    top: 36px;
    height: 4px;
    background-color: #dee4ec;
    border-radius: 4px;
}

.irs--round .irs-bar {
    top: 36px;
    height: 4px;
    background-color: #006cfa;
}

.irs--round .irs-bar--single {
    border-radius: 4px 0 0 4px;
}

.irs--round .irs-shadow {
    height: 4px;
    bottom: 21px;
    background-color: rgba(222, 228, 236, 0.5);
}

.irs--round .irs-handle {
    top: 26px;
    width: 24px;
    height: 24px;
    border: 4px solid #006cfa;
    background-color: white;
    border-radius: 24px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
    background-color: #f0f6ff;
}

.irs--round .irs-min,
.irs--round .irs-max {
    color: #333;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 5px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 5px;
    background-color: #006cfa;
    color: white;
    border-radius: 4px;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #006cfa;
}

.irs--round .irs-grid {
    height: 25px;
}

.irs--round .irs-grid-pol {
    background-color: #dedede;
}

.irs--round .irs-grid-text {
    color: silver;
    font-size: 13px;
}

.irs--square {
    height: 50px;
}

.irs--square.irs-with-grid {
    height: 60px;
}

.irs--square .irs-line {
    top: 31px;
    height: 4px;
    background-color: #dedede;
}

.irs--square .irs-bar {
    top: 31px;
    height: 4px;
    background-color: black;
}

.irs--square .irs-shadow {
    height: 2px;
    bottom: 21px;
    background-color: #dedede;
}

.irs--square .irs-handle {
    top: 25px;
    width: 16px;
    height: 16px;
    border: 3px solid black;
    background-color: white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.irs--square .irs-handle.state_hover,
.irs--square .irs-handle:hover {
    background-color: #f0f6ff;
}

.irs--square .irs-min,
.irs--square .irs-max {
    color: #333;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 5px;
    background-color: rgba(0, 0, 0, 0.1);
}

.irs--square .irs-from,
.irs--square .irs-to,
.irs--square .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 5px;
    background-color: black;
    color: white;
}

.irs--square .irs-grid {
    height: 25px;
}

.irs--square .irs-grid-pol {
    background-color: #dedede;
}

.irs--square .irs-grid-text {
    color: silver;
    font-size: 11px;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.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;
    -webkit-box-sizing: border-box;
    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: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}
.mfp-preloader a {
    color: #CCC;
}
.mfp-preloader a:hover {
    color: #FFF;
}

.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;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.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;
}
.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: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.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;
}
.mfp-arrow:before, .mfp-arrow:after {
    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 {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}
.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}
.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}
.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}
.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}
.mfp-arrow-right:before {
    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%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    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;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    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;
    padding-right: 36px;
}

.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(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        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 {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}
.tippy-box[data-animation=fade][data-state=hidden] {
    opacity: 0;
}

[data-tippy-root] {
    max-width: calc(100vw - 10px);
}

.tippy-box {
    position: relative;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    white-space: normal;
    outline: 0;
    -webkit-transition-property: visibility, opacity, -webkit-transform;
    transition-property: visibility, opacity, -webkit-transform;
    transition-property: transform, visibility, opacity;
    transition-property: transform, visibility, opacity, -webkit-transform;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
    bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
    bottom: -7px;
    left: 0;
    border-width: 8px 8px 0;
    border-top-color: initial;
    -webkit-transform-origin: center top;
    transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
    top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
    top: -7px;
    left: 0;
    border-width: 0 8px 8px;
    border-bottom-color: initial;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
    right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
    border-width: 8px 0 8px 8px;
    border-left-color: initial;
    right: -7px;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
    left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
    left: -7px;
    border-width: 8px 8px 8px 0;
    border-right-color: initial;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
    -webkit-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
    transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
    width: 16px;
    height: 16px;
    color: #333;
}

.tippy-arrow:before {
    content: "";
    position: absolute;
    border-color: transparent;
    border-style: solid;
}

.tippy-content {
    position: relative;
    padding: 5px 9px;
    z-index: 1;
}

.select2-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

.select2-container .select2-selection--single {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
    background-color: transparent;
    border: none;
    font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px;
}

.select2-container .select2-selection--multiple {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline;
    list-style: none;
    padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
    background-color: transparent;
    border: none;
    font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    margin-left: 5px;
    padding: 0;
    max-width: 100%;
    resize: none;
    height: 18px;
    vertical-align: bottom;
    font-family: sans-serif;
    overflow: hidden;
    word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}

.select2-results__option--selectable {
    cursor: pointer;
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
    display: none;
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    height: 26px;
    margin-right: 20px;
    padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
    padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    font-weight: bold;
    height: 20px;
    margin-right: 10px;
    margin-top: 5px;
    position: absolute;
    right: 0;
    padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0;
    padding-left: 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-right: 1px solid #aaa;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #999;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 0 4px;
    position: absolute;
    left: 0;
    top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #f1f1f1;
    color: #333;
    outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    border-left: 1px solid #aaa;
    border-right: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
    float: left;
    margin-left: 10px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
    padding: 0;
}

.select2-container--default .select2-results__option--disabled {
    color: #999;
}

.select2-container--default .select2-results__option--selected {
    background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #5897fb;
    color: white;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eeeeee));
    background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    height: 26px;
    margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eeeeee));
    background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(white));
    background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
    padding-bottom: 5px;
    padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 2px;
    padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #888;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
    outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.select2-container--classic .select2-dropdown {
    background-color: white;
    border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
    border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
    padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
    color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #3875d7;
    color: white;
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}

.swal2-popup.swal2-toast {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    grid-column: 1/4 !important;
    grid-row: 1/4 !important;
    grid-template-columns: -webkit-min-content auto -webkit-min-content;
    grid-template-columns: min-content auto min-content;
    padding: 1em;
    overflow-y: hidden;
    background: #fff;
    -webkit-box-shadow: 0 0 1px hsla(0, 0%, 0%, 0.075), 0 1px 2px hsla(0, 0%, 0%, 0.075), 1px 2px 4px hsla(0, 0%, 0%, 0.075), 1px 3px 8px hsla(0, 0%, 0%, 0.075), 2px 4px 16px hsla(0, 0%, 0%, 0.075);
    box-shadow: 0 0 1px hsla(0, 0%, 0%, 0.075), 0 1px 2px hsla(0, 0%, 0%, 0.075), 1px 2px 4px hsla(0, 0%, 0%, 0.075), 1px 3px 8px hsla(0, 0%, 0%, 0.075), 2px 4px 16px hsla(0, 0%, 0%, 0.075);
    pointer-events: all;
}

.swal2-popup.swal2-toast > * {
    grid-column: 2;
}

.swal2-popup.swal2-toast .swal2-title {
    margin: 0.5em 1em;
    padding: 0;
    font-size: 1em;
    text-align: initial;
}

.swal2-popup.swal2-toast .swal2-loading {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.swal2-popup.swal2-toast .swal2-input {
    height: 2em;
    margin: 0.5em;
    font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-validation-message {
    font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-footer {
    margin: 0.5em 0 0;
    padding: 0.5em 0 0;
    font-size: 0.8em;
}

.swal2-popup.swal2-toast .swal2-close {
    grid-column: 3/3;
    grid-row: 1/99;
    align-self: center;
    width: 0.8em;
    height: 0.8em;
    margin: 0;
    font-size: 2em;
}

.swal2-popup.swal2-toast .swal2-html-container {
    margin: 0.5em 1em;
    padding: 0;
    overflow: initial;
    font-size: 1em;
    text-align: initial;
}

.swal2-popup.swal2-toast .swal2-html-container:empty {
    padding: 0;
}

.swal2-popup.swal2-toast .swal2-loader {
    grid-column: 1;
    grid-row: 1/99;
    align-self: center;
    width: 2em;
    height: 2em;
    margin: 0.25em;
}

.swal2-popup.swal2-toast .swal2-icon {
    grid-column: 1;
    grid-row: 1/99;
    align-self: center;
    width: 2em;
    min-width: 2em;
    height: 2em;
    margin: 0 0.5em 0 0;
}

.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
    width: 2em;
    height: 2em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    top: 0.875em;
    width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
    left: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
    right: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-actions {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: auto;
    margin: 0;
    margin-top: 0.5em;
    padding: 0 0.5em;
}

.swal2-popup.swal2-toast .swal2-styled {
    margin: 0.25em 0.5em;
    padding: 0.4em 0.6em;
    font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-success {
    border-color: #a5dc86;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
    position: absolute;
    width: 1.6em;
    height: 3em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 50%;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
    top: -0.8em;
    left: -0.5em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 2em 2em;
    transform-origin: 2em 2em;
    border-radius: 4em 0 0 4em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
    top: -0.25em;
    left: 0.9375em;
    -webkit-transform-origin: 0 1.5em;
    transform-origin: 0 1.5em;
    border-radius: 0 4em 4em 0;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
    width: 2em;
    height: 2em;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
    top: 0;
    left: 0.4375em;
    width: 0.4375em;
    height: 2.6875em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
    height: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
    -webkit-animation: swal2-toast-animate-success-line-tip 0.75s;
    animation: swal2-toast-animate-success-line-tip 0.75s;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
    -webkit-animation: swal2-toast-animate-success-line-long 0.75s;
    animation: swal2-toast-animate-success-line-long 0.75s;
}

.swal2-popup.swal2-toast.swal2-show {
    -webkit-animation: swal2-toast-show 0.5s;
    animation: swal2-toast-show 0.5s;
}

.swal2-popup.swal2-toast.swal2-hide {
    -webkit-animation: swal2-toast-hide 0.1s forwards;
    animation: swal2-toast-hide 0.1s forwards;
}

.swal2-container {
    display: grid;
    position: fixed;
    z-index: 1060;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    grid-template-areas: "top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end";
    grid-template-rows: minmax(-webkit-min-content, auto) minmax(-webkit-min-content, auto) minmax(-webkit-min-content, auto);
    grid-template-rows: minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);
    height: 100%;
    padding: 0.625em;
    overflow-x: hidden;
    -webkit-transition: background-color 0.1s;
    transition: background-color 0.1s;
    -webkit-overflow-scrolling: touch;
}

.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
    background: rgba(0, 0, 0, 0.4);
}

.swal2-container.swal2-backdrop-hide {
    background: transparent !important;
}

.swal2-container.swal2-top-start, .swal2-container.swal2-center-start, .swal2-container.swal2-bottom-start {
    grid-template-columns: minmax(0, 1fr) auto auto;
}

.swal2-container.swal2-top, .swal2-container.swal2-center, .swal2-container.swal2-bottom {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.swal2-container.swal2-top-end, .swal2-container.swal2-center-end, .swal2-container.swal2-bottom-end {
    grid-template-columns: auto auto minmax(0, 1fr);
}

.swal2-container.swal2-top-start > .swal2-popup {
    -ms-flex-item-align: start;
    align-self: start;
}

.swal2-container.swal2-top > .swal2-popup {
    grid-column: 2;
    align-self: start;
    justify-self: center;
}

.swal2-container.swal2-top-end > .swal2-popup, .swal2-container.swal2-top-right > .swal2-popup {
    grid-column: 3;
    align-self: start;
    justify-self: end;
}

.swal2-container.swal2-center-start > .swal2-popup, .swal2-container.swal2-center-left > .swal2-popup {
    grid-row: 2;
    align-self: center;
}

.swal2-container.swal2-center > .swal2-popup {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: center;
}

.swal2-container.swal2-center-end > .swal2-popup, .swal2-container.swal2-center-right > .swal2-popup {
    grid-column: 3;
    grid-row: 2;
    align-self: center;
    justify-self: end;
}

.swal2-container.swal2-bottom-start > .swal2-popup, .swal2-container.swal2-bottom-left > .swal2-popup {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
}

.swal2-container.swal2-bottom > .swal2-popup {
    grid-column: 2;
    grid-row: 3;
    justify-self: center;
    align-self: end;
}

.swal2-container.swal2-bottom-end > .swal2-popup, .swal2-container.swal2-bottom-right > .swal2-popup {
    grid-column: 3;
    grid-row: 3;
    align-self: end;
    justify-self: end;
}

.swal2-container.swal2-grow-row > .swal2-popup, .swal2-container.swal2-grow-fullscreen > .swal2-popup {
    grid-column: 1/4;
    width: 100%;
}

.swal2-container.swal2-grow-column > .swal2-popup, .swal2-container.swal2-grow-fullscreen > .swal2-popup {
    grid-row: 1/4;
    align-self: stretch;
}

.swal2-container.swal2-no-transition {
    -webkit-transition: none !important;
    transition: none !important;
}

.swal2-popup {
    display: none;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 100%);
    width: 32em;
    max-width: 100%;
    padding: 0 0 1.25em;
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #545454;
    font-family: inherit;
    font-size: 1rem;
}

.swal2-popup:focus {
    outline: none;
}

.swal2-popup.swal2-loading {
    overflow-y: hidden;
}

.swal2-title {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0.8em 1em 0;
    color: inherit;
    font-size: 1.875em;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word;
}

.swal2-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    margin: 1.25em auto 0;
    padding: 0;
}

.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
    opacity: 0.4;
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1)));
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.swal2-actions:not(.swal2-loading) .swal2-styled:active {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.swal2-loader {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.2em;
    height: 2.2em;
    margin: 0 1.875em;
    -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
    animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
    border-width: 0.25em;
    border-style: solid;
    border-radius: 100%;
    border-color: #2778c4 transparent #2778c4 transparent;
}

.swal2-styled {
    margin: 0.3125em;
    padding: 0.625em 1.1em;
    -webkit-transition: -webkit-box-shadow 0.1s;
    transition: -webkit-box-shadow 0.1s;
    transition: box-shadow 0.1s;
    transition: box-shadow 0.1s, -webkit-box-shadow 0.1s;
    -webkit-box-shadow: 0 0 0 3px transparent;
    box-shadow: 0 0 0 3px transparent;
    font-weight: 500;
}

.swal2-styled:not([disabled]) {
    cursor: pointer;
}

.swal2-styled.swal2-confirm {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #7066e0;
    color: #fff;
    font-size: 1em;
}

.swal2-styled.swal2-confirm:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(112, 102, 224, 0.5);
    box-shadow: 0 0 0 3px rgba(112, 102, 224, 0.5);
}

.swal2-styled.swal2-deny {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #dc3741;
    color: #fff;
    font-size: 1em;
}

.swal2-styled.swal2-deny:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(220, 55, 65, 0.5);
    box-shadow: 0 0 0 3px rgba(220, 55, 65, 0.5);
}

.swal2-styled.swal2-cancel {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #6e7881;
    color: #fff;
    font-size: 1em;
}

.swal2-styled.swal2-cancel:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(110, 120, 129, 0.5);
    box-shadow: 0 0 0 3px rgba(110, 120, 129, 0.5);
}

.swal2-styled.swal2-default-outline:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
    box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-styled:focus {
    outline: none;
}

.swal2-styled::-moz-focus-inner {
    border: 0;
}

.swal2-footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 1em 0 0;
    padding: 1em 1em 0;
    border-top: 1px solid #eee;
    color: inherit;
    font-size: 1em;
}

.swal2-timer-progress-bar-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    grid-column: auto !important;
    overflow: hidden;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.swal2-timer-progress-bar {
    width: 100%;
    height: 0.25em;
    background: rgba(0, 0, 0, 0.2);
}

.swal2-image {
    max-width: 100%;
    margin: 2em auto 1em;
}

.swal2-close {
    z-index: 2;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: -1.2em;
    padding: 0;
    overflow: hidden;
    -webkit-transition: color 0.1s, -webkit-box-shadow 0.1s;
    transition: color 0.1s, -webkit-box-shadow 0.1s;
    transition: color 0.1s, box-shadow 0.1s;
    transition: color 0.1s, box-shadow 0.1s, -webkit-box-shadow 0.1s;
    border: none;
    border-radius: 5px;
    background: transparent;
    color: #ccc;
    font-family: serif;
    font-family: monospace;
    font-size: 2.5em;
    cursor: pointer;
    justify-self: end;
}

.swal2-close:hover {
    -webkit-transform: none;
    transform: none;
    background: transparent;
    color: #f27474;
}

.swal2-close:focus {
    outline: none;
    -webkit-box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
    box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-close::-moz-focus-inner {
    border: 0;
}

.swal2-html-container {
    z-index: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 1em 1.6em 0.3em;
    padding: 0;
    overflow: auto;
    color: inherit;
    font-size: 1.125em;
    font-weight: normal;
    line-height: normal;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
}

.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
    margin: 1em 2em 3px;
}

.swal2-input,
.swal2-file,
.swal2-textarea {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    -webkit-transition: border-color 0.1s, -webkit-box-shadow 0.1s;
    transition: border-color 0.1s, -webkit-box-shadow 0.1s;
    transition: border-color 0.1s, box-shadow 0.1s;
    transition: border-color 0.1s, box-shadow 0.1s, -webkit-box-shadow 0.1s;
    border: 1px solid #d9d9d9;
    border-radius: 0.1875em;
    background: transparent;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
    color: inherit;
    font-size: 1.125em;
}

.swal2-input.swal2-inputerror,
.swal2-file.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
    border-color: #f27474 !important;
    -webkit-box-shadow: 0 0 2px #f27474 !important;
    box-shadow: 0 0 2px #f27474 !important;
}

.swal2-input:focus,
.swal2-file:focus,
.swal2-textarea:focus {
    border: 1px solid #b4dbed;
    outline: none;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(100, 150, 200, 0.5);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-input::-webkit-input-placeholder, .swal2-file::-webkit-input-placeholder, .swal2-textarea::-webkit-input-placeholder {
    color: #ccc;
}

.swal2-input::-moz-placeholder, .swal2-file::-moz-placeholder, .swal2-textarea::-moz-placeholder {
    color: #ccc;
}

.swal2-input:-ms-input-placeholder, .swal2-file:-ms-input-placeholder, .swal2-textarea:-ms-input-placeholder {
    color: #ccc;
}

.swal2-input::-ms-input-placeholder, .swal2-file::-ms-input-placeholder, .swal2-textarea::-ms-input-placeholder {
    color: #ccc;
}

.swal2-input::placeholder,
.swal2-file::placeholder,
.swal2-textarea::placeholder {
    color: #ccc;
}

.swal2-range {
    margin: 1em 2em 3px;
    background: #fff;
}

.swal2-range input {
    width: 80%;
}

.swal2-range output {
    width: 20%;
    color: inherit;
    font-weight: 600;
    text-align: center;
}

.swal2-range input,
.swal2-range output {
    height: 2.625em;
    padding: 0;
    font-size: 1.125em;
    line-height: 2.625em;
}

.swal2-input {
    height: 2.625em;
    padding: 0 0.75em;
}

.swal2-file {
    width: 75%;
    margin-right: auto;
    margin-left: auto;
    background: transparent;
    font-size: 1.125em;
}

.swal2-textarea {
    height: 6.75em;
    padding: 0.75em;
}

.swal2-select {
    min-width: 50%;
    max-width: 100%;
    padding: 0.375em 0.625em;
    background: transparent;
    color: inherit;
    font-size: 1.125em;
}

.swal2-radio,
.swal2-checkbox {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    color: inherit;
}

.swal2-radio label,
.swal2-checkbox label {
    margin: 0 0.6em;
    font-size: 1.125em;
}

.swal2-radio input,
.swal2-checkbox input {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 0.4em;
}

.swal2-input-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 1em auto 0;
}

.swal2-validation-message {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 1em 0 0;
    padding: 0.625em;
    overflow: hidden;
    background: #f0f0f0;
    color: #666666;
    font-size: 1em;
    font-weight: 300;
}

.swal2-validation-message::before {
    content: "!";
    display: inline-block;
    width: 1.5em;
    min-width: 1.5em;
    height: 1.5em;
    margin: 0 0.625em;
    border-radius: 50%;
    background-color: #f27474;
    color: #fff;
    font-weight: 600;
    line-height: 1.5em;
    text-align: center;
}

.swal2-icon {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 5em;
    height: 5em;
    margin: 2.5em auto 0.6em;
    border: 0.25em solid transparent;
    border-radius: 50%;
    border-color: #000;
    font-family: inherit;
    line-height: 5em;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.swal2-icon .swal2-icon-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 3.75em;
}

.swal2-icon.swal2-error {
    border-color: #f27474;
    color: #f27474;
}

.swal2-icon.swal2-error .swal2-x-mark {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    display: block;
    position: absolute;
    top: 2.3125em;
    width: 2.9375em;
    height: 0.3125em;
    border-radius: 0.125em;
    background-color: #f27474;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
    left: 1.0625em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
    right: 1em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.swal2-icon.swal2-error.swal2-icon-show {
    -webkit-animation: swal2-animate-error-icon 0.5s;
    animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
    -webkit-animation: swal2-animate-error-x-mark 0.5s;
    animation: swal2-animate-error-x-mark 0.5s;
}

.swal2-icon.swal2-warning {
    border-color: #facea8;
    color: #f8bb86;
}

.swal2-icon.swal2-warning.swal2-icon-show {
    -webkit-animation: swal2-animate-error-icon 0.5s;
    animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-warning.swal2-icon-show .swal2-icon-content {
    -webkit-animation: swal2-animate-i-mark 0.5s;
    animation: swal2-animate-i-mark 0.5s;
}

.swal2-icon.swal2-info {
    border-color: #9de0f6;
    color: #3fc3ee;
}

.swal2-icon.swal2-info.swal2-icon-show {
    -webkit-animation: swal2-animate-error-icon 0.5s;
    animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-info.swal2-icon-show .swal2-icon-content {
    -webkit-animation: swal2-animate-i-mark 0.8s;
    animation: swal2-animate-i-mark 0.8s;
}

.swal2-icon.swal2-question {
    border-color: #c9dae1;
    color: #87adbd;
}

.swal2-icon.swal2-question.swal2-icon-show {
    -webkit-animation: swal2-animate-error-icon 0.5s;
    animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-question.swal2-icon-show .swal2-icon-content {
    -webkit-animation: swal2-animate-question-mark 0.8s;
    animation: swal2-animate-question-mark 0.8s;
}

.swal2-icon.swal2-success {
    border-color: #a5dc86;
    color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
    position: absolute;
    width: 3.75em;
    height: 7.5em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 50%;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
    top: -0.4375em;
    left: -2.0635em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 3.75em 3.75em;
    transform-origin: 3.75em 3.75em;
    border-radius: 7.5em 0 0 7.5em;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
    top: -0.6875em;
    left: 1.875em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 3.75em;
    transform-origin: 0 3.75em;
    border-radius: 0 7.5em 7.5em 0;
}

.swal2-icon.swal2-success .swal2-success-ring {
    position: absolute;
    z-index: 2;
    top: -0.25em;
    left: -0.25em;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 100%;
    height: 100%;
    border: 0.25em solid rgba(165, 220, 134, 0.3);
    border-radius: 50%;
}

.swal2-icon.swal2-success .swal2-success-fix {
    position: absolute;
    z-index: 1;
    top: 0.5em;
    left: 1.625em;
    width: 0.4375em;
    height: 5.625em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    display: block;
    position: absolute;
    z-index: 2;
    height: 0.3125em;
    border-radius: 0.125em;
    background-color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
    top: 2.875em;
    left: 0.8125em;
    width: 1.5625em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
    -webkit-animation: swal2-animate-success-line-tip 0.75s;
    animation: swal2-animate-success-line-tip 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
    -webkit-animation: swal2-animate-success-line-long 0.75s;
    animation: swal2-animate-success-line-long 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
    -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
    animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

.swal2-progress-steps {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    margin: 1.25em auto;
    padding: 0;
    background: transparent;
    font-weight: 600;
}

.swal2-progress-steps li {
    display: inline-block;
    position: relative;
}

.swal2-progress-steps .swal2-progress-step {
    z-index: 20;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 2em;
    height: 2em;
    border-radius: 2em;
    background: #2778c4;
    color: #fff;
    line-height: 2em;
    text-align: center;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
    background: #2778c4;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
    background: #add8e6;
    color: #fff;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
    background: #add8e6;
}

.swal2-progress-steps .swal2-progress-step-line {
    z-index: 10;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 2.5em;
    height: 0.4em;
    margin: 0 -1px;
    background: #2778c4;
}

[class^=swal2] {
    -webkit-tap-highlight-color: transparent;
}

.swal2-show {
    -webkit-animation: swal2-show 0.3s;
    animation: swal2-show 0.3s;
}

.swal2-hide {
    -webkit-animation: swal2-hide 0.15s forwards;
    animation: swal2-hide 0.15s forwards;
}

.swal2-noanimation {
    -webkit-transition: none;
    transition: none;
}

.swal2-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.swal2-rtl .swal2-close {
    margin-right: initial;
    margin-left: 0;
}

.swal2-rtl .swal2-timer-progress-bar {
    right: 0;
    left: auto;
}

@-webkit-keyframes swal2-toast-show {
    0% {
        -webkit-transform: translateY(-0.625em) rotateZ(2deg);
        transform: translateY(-0.625em) rotateZ(2deg);
    }
    33% {
        -webkit-transform: translateY(0) rotateZ(-2deg);
        transform: translateY(0) rotateZ(-2deg);
    }
    66% {
        -webkit-transform: translateY(0.3125em) rotateZ(2deg);
        transform: translateY(0.3125em) rotateZ(2deg);
    }
    100% {
        -webkit-transform: translateY(0) rotateZ(0deg);
        transform: translateY(0) rotateZ(0deg);
    }
}

@keyframes swal2-toast-show {
    0% {
        -webkit-transform: translateY(-0.625em) rotateZ(2deg);
        transform: translateY(-0.625em) rotateZ(2deg);
    }
    33% {
        -webkit-transform: translateY(0) rotateZ(-2deg);
        transform: translateY(0) rotateZ(-2deg);
    }
    66% {
        -webkit-transform: translateY(0.3125em) rotateZ(2deg);
        transform: translateY(0.3125em) rotateZ(2deg);
    }
    100% {
        -webkit-transform: translateY(0) rotateZ(0deg);
        transform: translateY(0) rotateZ(0deg);
    }
}
@-webkit-keyframes swal2-toast-hide {
    100% {
        -webkit-transform: rotateZ(1deg);
        transform: rotateZ(1deg);
        opacity: 0;
    }
}
@keyframes swal2-toast-hide {
    100% {
        -webkit-transform: rotateZ(1deg);
        transform: rotateZ(1deg);
        opacity: 0;
    }
}
@-webkit-keyframes swal2-toast-animate-success-line-tip {
    0% {
        top: 0.5625em;
        left: 0.0625em;
        width: 0;
    }
    54% {
        top: 0.125em;
        left: 0.125em;
        width: 0;
    }
    70% {
        top: 0.625em;
        left: -0.25em;
        width: 1.625em;
    }
    84% {
        top: 1.0625em;
        left: 0.75em;
        width: 0.5em;
    }
    100% {
        top: 1.125em;
        left: 0.1875em;
        width: 0.75em;
    }
}
@keyframes swal2-toast-animate-success-line-tip {
    0% {
        top: 0.5625em;
        left: 0.0625em;
        width: 0;
    }
    54% {
        top: 0.125em;
        left: 0.125em;
        width: 0;
    }
    70% {
        top: 0.625em;
        left: -0.25em;
        width: 1.625em;
    }
    84% {
        top: 1.0625em;
        left: 0.75em;
        width: 0.5em;
    }
    100% {
        top: 1.125em;
        left: 0.1875em;
        width: 0.75em;
    }
}
@-webkit-keyframes swal2-toast-animate-success-line-long {
    0% {
        top: 1.625em;
        right: 1.375em;
        width: 0;
    }
    65% {
        top: 1.25em;
        right: 0.9375em;
        width: 0;
    }
    84% {
        top: 0.9375em;
        right: 0;
        width: 1.125em;
    }
    100% {
        top: 0.9375em;
        right: 0.1875em;
        width: 1.375em;
    }
}
@keyframes swal2-toast-animate-success-line-long {
    0% {
        top: 1.625em;
        right: 1.375em;
        width: 0;
    }
    65% {
        top: 1.25em;
        right: 0.9375em;
        width: 0;
    }
    84% {
        top: 0.9375em;
        right: 0;
        width: 1.125em;
    }
    100% {
        top: 0.9375em;
        right: 0.1875em;
        width: 1.375em;
    }
}
@-webkit-keyframes swal2-show {
    0% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    80% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes swal2-show {
    0% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    80% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes swal2-hide {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }
}
@keyframes swal2-hide {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }
}
@-webkit-keyframes swal2-animate-success-line-tip {
    0% {
        top: 1.1875em;
        left: 0.0625em;
        width: 0;
    }
    54% {
        top: 1.0625em;
        left: 0.125em;
        width: 0;
    }
    70% {
        top: 2.1875em;
        left: -0.375em;
        width: 3.125em;
    }
    84% {
        top: 3em;
        left: 1.3125em;
        width: 1.0625em;
    }
    100% {
        top: 2.8125em;
        left: 0.8125em;
        width: 1.5625em;
    }
}
@keyframes swal2-animate-success-line-tip {
    0% {
        top: 1.1875em;
        left: 0.0625em;
        width: 0;
    }
    54% {
        top: 1.0625em;
        left: 0.125em;
        width: 0;
    }
    70% {
        top: 2.1875em;
        left: -0.375em;
        width: 3.125em;
    }
    84% {
        top: 3em;
        left: 1.3125em;
        width: 1.0625em;
    }
    100% {
        top: 2.8125em;
        left: 0.8125em;
        width: 1.5625em;
    }
}
@-webkit-keyframes swal2-animate-success-line-long {
    0% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }
    65% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }
    84% {
        top: 2.1875em;
        right: 0;
        width: 3.4375em;
    }
    100% {
        top: 2.375em;
        right: 0.5em;
        width: 2.9375em;
    }
}
@keyframes swal2-animate-success-line-long {
    0% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }
    65% {
        top: 3.375em;
        right: 2.875em;
        width: 0;
    }
    84% {
        top: 2.1875em;
        right: 0;
        width: 3.4375em;
    }
    100% {
        top: 2.375em;
        right: 0.5em;
        width: 2.9375em;
    }
}
@-webkit-keyframes swal2-rotate-success-circular-line {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
    100% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}
@keyframes swal2-rotate-success-circular-line {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
    100% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}
@-webkit-keyframes swal2-animate-error-x-mark {
    0% {
        margin-top: 1.625em;
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        opacity: 0;
    }
    50% {
        margin-top: 1.625em;
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        opacity: 0;
    }
    80% {
        margin-top: -0.375em;
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
    100% {
        margin-top: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes swal2-animate-error-x-mark {
    0% {
        margin-top: 1.625em;
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        opacity: 0;
    }
    50% {
        margin-top: 1.625em;
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        opacity: 0;
    }
    80% {
        margin-top: -0.375em;
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
    100% {
        margin-top: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@-webkit-keyframes swal2-animate-error-icon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}
@keyframes swal2-animate-error-icon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}
@-webkit-keyframes swal2-rotate-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes swal2-rotate-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes swal2-animate-question-mark {
    0% {
        -webkit-transform: rotateY(-360deg);
        transform: rotateY(-360deg);
    }
    100% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }
}
@keyframes swal2-animate-question-mark {
    0% {
        -webkit-transform: rotateY(-360deg);
        transform: rotateY(-360deg);
    }
    100% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }
}
@-webkit-keyframes swal2-animate-i-mark {
    0% {
        -webkit-transform: rotateZ(45deg);
        transform: rotateZ(45deg);
        opacity: 0;
    }
    25% {
        -webkit-transform: rotateZ(-25deg);
        transform: rotateZ(-25deg);
        opacity: 0.4;
    }
    50% {
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
        opacity: 0.8;
    }
    75% {
        -webkit-transform: rotateZ(-5deg);
        transform: rotateZ(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }
}
@keyframes swal2-animate-i-mark {
    0% {
        -webkit-transform: rotateZ(45deg);
        transform: rotateZ(45deg);
        opacity: 0;
    }
    25% {
        -webkit-transform: rotateZ(-25deg);
        transform: rotateZ(-25deg);
        opacity: 0.4;
    }
    50% {
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
        opacity: 0.8;
    }
    75% {
        -webkit-transform: rotateZ(-5deg);
        transform: rotateZ(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1;
    }
}
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow: hidden;
}

body.swal2-height-auto {
    height: auto !important;
}

body.swal2-no-backdrop .swal2-container {
    background-color: transparent !important;
    pointer-events: none;
}

body.swal2-no-backdrop .swal2-container .swal2-popup {
    pointer-events: all;
}

body.swal2-no-backdrop .swal2-container .swal2-modal {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

@media print {
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
        overflow-y: scroll !important;
    }
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden=true] {
        display: none;
    }
    body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
        position: static !important;
    }
}
body.swal2-toast-shown .swal2-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 360px;
    max-width: 100%;
    background-color: transparent;
    pointer-events: none;
}

body.swal2-toast-shown .swal2-container.swal2-top {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
}

body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-center {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
}

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

.wrapper {
    display: table;
    height: 100%;
    width: 100%;
}
@media only screen and (max-width: 580px) {
    .wrapper {
        display: block;
        height: auto;
    }
}

.holder {
    display: table-row;
    height: 100%;
    width: 100%;
}
@media only screen and (max-width: 580px) {
    .holder {
        display: block;
    }
}

html {
    font-size: 0.6944444444vw;
}
html.js-lock {
    overflow: hidden;
}
@media only screen and (max-width: 980px) {
    html {
        font-size: 1.0204081633vw;
    }
}
@media only screen and (max-width: 580px) {
    html {
        font-size: 2.6666666667vw;
    }
}

body.dark {
    padding-top: 6.1rem;
}
@media only screen and (max-width: 580px) {
    body.dark {
        padding-top: 7.4rem;
    }
}
body.dark .header {
    background-color: var(--color-blue);
}
body.dark .logo svg {
    fill: var(--color-white);
}
body.dark .footer {
    background-color: var(--color-blue);
}
body.dark .hamburger__line {
    stroke: var(--color-white);
}

.container {
    padding: 0 2rem;
    max-width: 127rem;
    width: 100%;
    z-index: 1;
    margin: auto;
    position: relative;
}
@media only screen and (max-width: 1120px) {
    .container {
        max-width: 100%;
    }
}

body {
    position: relative;
    font-size: 1.6rem;
    font-family: "Montserrat", Arial, sans-serif;
    padding-top: var(--padding-top);
    font-weight: 500;
    color: var(--color-blue);
}
@media only screen and (max-width: 580px) {
    body {
        font-weight: 400;
    }
}
body.js-lock {
    overflow-x: hidden;
    overflow-y: scroll;
}

input,
textarea,
button {
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    color: inherit;
    font-family: inherit;
}

main {
    display: block;
}

a {
    color: inherit;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-decoration: none;
}

ul {
    list-style: none;
}

.inline {
    font-size: 0;
}
.inline > * {
    display: inline-block;
    vertical-align: middle;
}

.icon {
    width: 100%;
}

.clear:after {
    content: "";
    display: block;
    clear: both;
}
.clear__left {
    float: left;
}
.clear__right {
    float: right;
}

.center {
    text-align: center;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex_center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flex_inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.flex_justify {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex_left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.flex_evenly {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}
.flex_around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.flex_right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.flex_start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.flex_bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.flex_vertical {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.css-text-left {
    text-align: left;
}

.css-text-center {
    text-align: center;
}

.css-text-right {
    text-align: right;
}

img,
svg {
    vertical-align: top;
    max-width: 100%;
}

.object-fit {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.css-scrollbar {
    overflow-y: auto;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
}
.css-scrollbar::-webkit-scrollbar {
    width: 3px;
}
.css-scrollbar::-webkit-scrollbar-track {
    background: rgba(196, 196, 196, 0.4);
}
.css-scrollbar::-webkit-scrollbar-thumb {
    background: gray;
}

.link {
    font-size: 1.4rem;
    line-height: 1.2857142857;
    color: var(--color-biyuzovy);
    display: inline-block;
}
.link:hover {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
.link_long {
    font-size: 1.8rem;
    line-height: 1.2777777778;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    font-weight: 700;
}
.loader {
    position: fixed;
    z-index: 10000;
    background-color: rgba(255, 255, 255, .6);
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%
}

.loader__img {
    max-width: 27rem
}

.loader__count {
    font-size: 6.4rem;
    line-height: 7.4rem;
    font-weight: 700;
    margin-top: 1rem;
}
.loader__count::after {
    content: ' сек.';
    font-size: 3.6rem;
    line-height: 1em
}
.link_long:hover {
    text-decoration: none;
}
@media only screen and (max-width: 980px) {
    .link_long {
        font-size: 1.6rem;
        line-height: 1.25;
    }
}
@media only screen and (max-width: 580px) {
    .link_long {
        font-size: 1.2rem;
        line-height: 1.25;
    }
}

.resize-animation-stopper * {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
}

.mobile-show {
    display: none !important;
}
@media only screen and (max-width: 580px) {
    .mobile-show {
        display: block !important;
    }
}
@media only screen and (max-width: 580px) {
    .mobile-show_flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

@media only screen and (max-width: 580px) {
    .desktop-show {
        display: none !important;
    }
}

.color-red {
    color: var(--color-red);
}

.color-blue {
    color: var(--color-biyuzovy) !important;
}

.btn {
    -webkit-transition: 0.25s;
    transition: 0.25s;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    min-width: 34.5rem;
    padding: 1.5rem 2rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    border-radius: 5rem;
}
@media only screen and (max-width: 580px) {
    .btn {
        font-size: 1.8rem;
        padding: 1.2rem 2rem;
    }
}
.btn__back {
    position: absolute;
    left: -0.3rem;
    top: -0.3rem;
    right: -0.3rem;
    bottom: -0.3rem;
    border-radius: inherit;
    overflow: hidden;
    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}
.btn__text {
    z-index: 15;
    position: relative;
}
.btn_tiny {
    font-size: 1.2rem;
    min-width: 11rem;
    padding: 0.9rem;
    min-height: 4rem;
}
.btn_middle {
    font-size: 1.6rem;
    padding: 1.35rem 2rem;
    min-width: 19rem;
}
.btn_medium {
    min-width: 39rem;
}
@media only screen and (max-width: 580px) {
    .btn_medium {
        min-width: 100%;
        font-size: 2rem;
        padding: 1.6rem 2rem;
    }
}
.btn_small {
    font-size: 1.4rem;
    line-height: 1.2142857143;
    min-width: 18rem;
    padding: 0.9rem;
}
@media only screen and (max-width: 580px) {
    .btn_small {
        font-size: 0.8rem;
        line-height: 1.25;
        padding: 0.7rem;
        min-width: 11rem;
    }
}
.btn_black {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
}
.btn_black .b-circle {
    border-color: var(--color-blue-hover);
    background: var(--color-blue-hover);
}
.btn_blue {
    background-color: var(--color-biyuzovy);
    border-color: var(--color-biyuzovy);
    color: var(--color-white);
}
.btn_blue .b-circle {
    border-color: var(--color-biyuzovy-hover);
    background: var(--color-biyuzovy-hover);
}
.btn_blue:hover {
    color: var(--color-white);
}
@media only screen and (max-width: 580px) {
    .btn_blue:hover {
        background: var(--color-biyuzovy);
    }
}
.btn_border {
    border: 1px solid var(--color-white);
}

.btn-file {
    display: block;
    position: relative;
    margin-top: 3rem;
}
.btn-file__input {
    position: absolute;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}
.btn-file__text {
    display: block;
    height: 4.5rem;
    text-align: center;
    padding: 1rem 2rem;
    border: 1px solid var(--color-blue);
    text-transform: uppercase;
    font-size: 1.8rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-blue);
    -webkit-transition: var(--base-transition);
    transition: var(--base-transition);
    border-radius: 3.5rem;
}
.btn-file__text:hover {
    border-color: var(--color-blue-hover);
    color: var(--color-blue-hover);
}

.content p,
.p,
.content li,
.li {
    font-size: 1.6rem;
    line-height: 1.1875;
    list-style: none;
}

.content p {
    line-height: 1.3em;
}

.content b,
.b {
    font-weight: bold;
}

.content strong,
.strong {
    font-weight: 500;
}

.h1,
.content h1,
.h2,
.content h2,
.h3,
.content h3,
.h4,
.content h4,
.h5,
.content h5,
.h6,
.content h6 {
    font-weight: 500;
    line-height: 1.25em;
}
.h1 strong,
.content h1 strong,
.h2 strong,
.content h2 strong,
.h3 strong,
.content h3 strong,
.h4 strong,
.content h4 strong,
.h5 strong,
.content h5 strong,
.h6 strong,
.content h6 strong {
    font-weight: 700;
}
@media only screen and (max-width: 580px) {
    .h1,
    .content h1,
    .h2,
    .content h2,
    .h3,
    .content h3,
    .h4,
    .content h4,
    .h5,
    .content h5,
    .h6,
    .content h6 {
        text-align: center;
    }
}

.h1,
.content h1 {
    font-size: 3.6rem;
    line-height: 1.3em;
}
@media only screen and (max-width: 980px) {
    .h1,
    .content h1 {
        font-size: 3.3rem;
    }
}
@media only screen and (max-width: 580px) {
    .h1,
    .content h1 {
        font-size: 3rem;
    }
}

.h2,
.content h2 {
    font-size: 3.6rem;
    line-height: 1.3em;
}
@media only screen and (max-width: 980px) {
    .h2,
    .content h2 {
        font-size: 3.3rem;
    }
}
@media only screen and (max-width: 580px) {
    .h2,
    .content h2 {
        font-size: 2.4rem;
    }
}

.h3,
.content h3 {
    font-size: 3rem;
    font-weight: 700;
}
@media only screen and (max-width: 980px) {
    .h3,
    .content h3 {
        font-size: 2.6rem;
    }
}
@media only screen and (max-width: 580px) {
    .h3,
    .content h3 {
        font-size: 2.4rem;
    }
}

.h4,
.content h4 {
    font-size: 2.4rem;
    font-weight: 700;
}
@media only screen and (max-width: 980px) {
    .h4,
    .content h4 {
        font-size: 2.1rem;
    }
}
@media only screen and (max-width: 580px) {
    .h4,
    .content h4 {
        font-size: 1.8rem;
    }
}

.h6,
.content h6 {
    font-weight: 700;
    font-size: 1.4rem;
}
@media only screen and (max-width: 580px) {
    .h6,
    .content h6 {
        font-size: 1.2rem;
    }
}

.hamburger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none;
}
@media only screen and (max-width: 580px) {
    .hamburger {
        display: block;
    }
}
.hamburger svg {
    width: 5rem;
    height: 4rem;
}
.hamburger__line {
    fill: none;
    stroke: var(--color-blue);
    stroke-width: 0.3rem;
    -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger__line_1 {
    stroke-dasharray: 60 207;
    stroke-width: 0.6rem;
}
.hamburger__line_2 {
    stroke-dasharray: 60 60;
    stroke-width: 0.6rem;
}
.hamburger__line_3 {
    stroke-dasharray: 60 207;
    stroke-width: 0.6rem;
}
.hamburger.is-active .hamburger__line_1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}
.hamburger.is-active .hamburger__line_2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}
.hamburger.is-active .hamburger__line_3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

@-webkit-keyframes default {}

@keyframes default {}
.logo {
    margin-right: 2rem;
}
@media only screen and (max-width: 580px) {
    .logo {
        margin-right: 1rem;
    }
}
.logo__link {
    display: inline-block;
}
.logo svg {
    fill: var(--color-blue);
    width: 20rem;
}
@media only screen and (max-width: 580px) {
    .logo svg {
        width: 12.5rem;
    }
}

.b-circle {
    display: inline-block;
    border: 0.4rem solid var(--color-biyuzovy);
    position: absolute;
    left: 0;
    top: 0;
    width: 20.16%;
    padding-top: 20.16%;
    will-change: transform, opacity;
    overflow: hidden;
    border-radius: 50%;
    -webkit-transition: opacity 0s ease 0s, -webkit-transform 1s ease-out 0s;
    transition: opacity 0s ease 0s, -webkit-transform 1s ease-out 0s;
    transition: opacity 0s ease 0s, transform 1s ease-out 0s;
    transition: opacity 0s ease 0s, transform 1s ease-out 0s, -webkit-transform 1s ease-out 0s;
    background-color: var(--color-biyuzovy);
    -webkit-transform: scale(0);
    transform: scale(0);
}
.b-circle_pause {
    -webkit-transition: opacity 0s ease 0s, -webkit-transform 0.5s ease-out 0s;
    transition: opacity 0s ease 0s, -webkit-transform 0.5s ease-out 0s;
    transition: opacity 0s ease 0s, transform 0.5s ease-out 0s;
    transition: opacity 0s ease 0s, transform 0.5s ease-out 0s, -webkit-transform 0.5s ease-out 0s;
    -webkit-transform: scale(0) !important;
    transform: scale(0) !important;
}
.checkbox {
    margin-bottom: 2rem;
    display: block;
}
@media only screen and (max-width: 580px) {
    .checkbox {
        margin-bottom: 1.5rem;
    }
}
.checkbox.error .checkbox__arrow {
    border-color: var(--color-red);
}
.checkbox.error .checkbox__text {
    color: var(--color-red);
}
.checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.checkbox__input:checked ~ .checkbox__text .icon {
    opacity: 1;
}
.checkbox__arrow {
    width: 1.6rem;
    height: 1.6rem;
    border: 1px solid var(--color-blue);
    border-radius: 0.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    fill: var(--color-blue);
    position: absolute;
    left: 0;
    top: 0.1rem;
    cursor: pointer;
}
.checkbox__arrow .icon {
    opacity: 0;
}
.checkbox__text {
    font-size: 1.4rem;
    position: relative;
    padding-left: 2.5rem;
    display: block;
    line-height: 1.428em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox__text a {
    display: inline;
}

.input {
    margin-bottom: 2rem;
}
.input__parent {
    position: relative;
}
.input__parent > .icon {
    position: absolute;
    width: 2rem;
    height: 2rem;
    fill: var(--color-blue);
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.input__parent.error .input__field {
    border-color: var(--color-red);
}
.input__parent ~ .error {
    display: block;
    color: var(--color-red);
    font-size: 1.2rem;
    line-height: 1.1666666667;
}
.input__parent.is-focus .input__field {
    border-color: var(--color-blue);
}
.input__parent.is-focus .input__placeholder {
    display: none;
}
.input__label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.2857142857;
    color: var(--color-blue);
}
.input_required .input__label::after {
    content: " *";
    color: var(--color-red);
}
.input_wrap .input__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.input__field {
    height: 4.5rem;
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0.3rem;
    background-color: var(--color-white);
    font-size: 1.4rem;
    color: var(--color-black);
    outline: none;
    border: 1px solid var(--color-blue);
}
.input__field::-webkit-input-placeholder {
    font-size: 1.4rem;
    color: var(--color-gray);
}
.input__field::-moz-placeholder {
    font-size: 1.4rem;
    color: var(--color-gray);
}
.input__field:-ms-input-placeholder {
    font-size: 1.4rem;
    color: var(--color-gray);
}
.input__field::-ms-input-placeholder {
    font-size: 1.4rem;
    color: var(--color-gray);
}
.input__field::placeholder {
    font-size: 1.4rem;
    color: var(--color-gray);
}

.input__field_bold {
    font-size: 2.2rem;
    color: var(--color-black) !important;
    font-weight: 700 !important;
}

.input__field_bold::placeholder {
    font-size: 2.2rem;
}

@media only screen and (max-width: 580px) {
    .input__field {
        height: 4rem;
    }

    .input__field_bold {
        font-size: 1.95rem;
    }

    .input__field_bold::placeholder {
        font-size: 1.95rem;
    }
}
.input__field_big {
    font-size: 2.4rem;
}
.input__switcher.switcher {
    margin-bottom: 0;
}
.input__switcher.switcher .switcher__text {
    color: var(--color-gray);
}
.input__switcher.switcher .switcher__item:not(:first-child) {
    margin-left: 5rem;
}
@media only screen and (max-width: 980px) {
    .input__switcher.switcher .switcher__item:not(:first-child) {
        margin-left: 2.5rem;
    }
}
.input__top {
    margin-bottom: 0.3rem;
}
.input__text {
    text-align: right;
    font-size: 1.4rem;
}
.input__placeholder {
    position: absolute;
    color: var(--color-gray);
    font-size: 1.4rem;
    line-height: 1.1428571429;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

.owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 3rem;
}
.owl-dots button.owl-dot {
    background-color: var(--color-gray);
    width: 1rem;
    height: 1rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 1rem;
    border-radius: 50%;
    -webkit-transition: var(--base-transition);
    transition: var(--base-transition);
}
.owl-dots button.owl-dot.active {
    background-color: var(--color-biyuzovy);
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.6rem;
    margin-top: 2.5rem;
}
@media only screen and (max-width: 580px) {
    .pagination {
        margin-top: 0;
    }
}
.pagination__link {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 0.5rem;
    line-height: 1em;
}

.pagination__link .icon {
    width: 0.8rem;
    height: 2rem;
    stroke: var(--color-biyuzovy);
    margin: 0 0.25rem;
}

.pagination__link a {
    color: var(--color-biyuzovy);
    border-bottom: 1px solid var(--color-biyuzovy);
}

.pagination__link_icon a {
    border-bottom: none;
}

.pagination__link.is-active a {
    font-weight: 700;
    color: var(--color-black);
    border-bottom-color: transparent;
}

.questionnaire {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem 0 5.5rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media only screen and (max-width: 580px) {
    .questionnaire {
        padding-top: 0;
    }
    .questionnaire:not(.questionnaire_mobile) {
        background-image: none !important;
    }
}
.questionnaire__content {
    background: var(--color-white);
    -webkit-box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    border-radius: 0.3rem;
    padding: 5rem 10.5rem;
    max-width: 102rem;
    width: 100%;
    margin: 0 auto;
}
@media only screen and (max-width: 980px) {
    .questionnaire__content {
        padding: 3rem 5rem;
    }
}
@media only screen and (max-width: 580px) {
    .questionnaire__content {
        padding: 0;
        background: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}
.questionnaire__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -3rem;
}
@media only screen and (max-width: 980px) {
    .questionnaire__row {
        margin-left: -2rem;
    }
}
@media only screen and (max-width: 580px) {
    .questionnaire__row {
        flex-direction: column;
        margin-left: 0;
    }
}
.questionnaire__row > * {
    width: calc(50% - 3rem) !important;
    margin-left: 3rem;
}
@media only screen and (max-width: 980px) {
    .questionnaire__row > * {
        width: calc(50% - 2rem) !important;
        margin-left: 2rem;
    }
}
@media only screen and (max-width: 580px) {
    .questionnaire__row > * {
        width: 100% !important;
        margin-left: 0;
    }
    .questionnaire__row > *:nth-child(1) {
        order: -1;
    }
    .questionnaire__row > *:nth-child(3) {
        order: -1;
    }
    .questionnaire__row > *:nth-child(5) {
        order: -1;
    }
    .questionnaire__row > *:nth-child(9) {
        order: -1;
    }
}
.questionnaire__step {
    margin-bottom: 2rem;
}
.questionnaire__step-text {
    font-size: 1.6rem;
    white-space: nowrap;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.questionnaire__step svg {
    width: 100%;
}
.questionnaire__btn {
    margin: 3rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.questionnaire__title {
    padding-bottom: 1.5rem;
}
.questionnaire__time {
    min-height: 4rem;
    background: var(--color-white);
    -webkit-box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    border-radius: 0.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    padding: 0.69rem;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1.2rem;
}
.questionnaire__time span {
    white-space: nowrap;
}
@media only screen and (max-width: 580px) {
    .questionnaire__time {
        width: 100%;
        margin: 0 0 1.5rem;
        padding: 0.7rem 4rem;
        min-height: 4.8rem;
        background-color: var(--color-biyuzovy);
        color: var(--color-white);
    }
}
.questionnaire__title {
    font-size: 2.4rem;
    line-height: 1.1666666667;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
@media only screen and (max-width: 580px) {
    .questionnaire__title {
        border-bottom: 1px solid #E6E6E6;
    }
}
.questionnaire__subtitle {
    font-weight: 500;
    margin-bottom: 2rem;
}
.questionnaire__text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
@media only screen and (max-width: 580px) {
    .questionnaire__text {
        text-align: center;
        margin-bottom: 2rem;
    }
}
.questionnaire__box {
    max-width: 39rem;
    margin: 0 auto;
}
@media only screen and (max-width: 580px) {
    .questionnaire__top_margin {
        margin-top: 3.5rem;
    }
}

.thanks {
    max-width: 60rem;
    text-align: center;
    padding: 5rem 4.5rem;
}
.thanks__title {
    margin-bottom: 2rem;
}
.thanks__text {
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 2rem;
}
@media only screen and (max-width: 580px) {
    .thanks__text {
        font-weight: 500;
        font-size: 1.8rem;
        line-height: 1.4444444444;
    }

    .thanks__text br {
        display: none;
    }

    .thanks {
        background: var(--color-white);
        box-shadow: 0 .2rem .8rem rgba(0, 0, 0, 0.15);
        border-radius: .3rem;
        padding: 4rem 0.8rem;
        margin: 14rem 0 7rem;
    }

    .thanks__btn {
        font-size: 2rem;
        min-width: 19rem;
    }
}

.requisites {
    font-size: 1.8rem;
}
@media only screen and (max-width: 580px) {
    .requisites {
        font-size: 1.6rem;
    }
}
.requisites__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #E2E2E2;
    padding: 0.5rem 0;
}
.requisites__item:last-child {
    border-bottom: none;
}
.requisites__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
@media only screen and (max-width: 580px) {
    .requisites__text {
        text-align: right;
        max-width: 20rem;
    }
}
.requisites__title {
    width: 26rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
@media only screen and (max-width: 980px) {
    .requisites__title {
        width: 22rem;
    }
}
@media only screen and (max-width: 580px) {
    .requisites__title {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: auto;
    }
}


.select {
    margin-bottom: 3rem;
    width: 100%;
    font-size: 1.4rem;
}
@media only screen and (max-width: 580px) {
    .select {
        margin-bottom: 2rem;
    }
}
.select__label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.2857142857;
    color: var(--color-blue) !important;
}
.select__parent {
    position: relative;
}
.select .select2-selection--single {
    background-color: var(--color-white);
    border-color: var(--color-black);
    border-radius: 0.3rem;
    height: 4.5rem;
}
.select .select2-container--default .select2-selection--single .select2-selection__rendered {
    width: 100%;
    font-size: 1.4rem;
    line-height: 4.5rem;
    color: var(--color-black);
    padding: 0 1rem;
}
.select .select2-results__option.select2-results__option--selected {
    display: none !important;
}
.select .select2-results__option {
    color: var(--color-black);
}
.select .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 1.8rem;
    height: 1rem;
    top: 2rem;
    right: 1rem;
}
.select .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--color-biyuzovy) transparent transparent;
    border-style: solid;
    border-width: 1rem 0.9rem 0;
    margin-left: -1rem;
    margin-top: -0.9rem;
}
.select .select2-container--default.select2-container--open .select2-selection__arrow b {
    border-color: transparent transparent var(--color-biyuzovy);
    border-width: 0 0.9rem 1rem;
}

.select2-dropdown {
    border-color: var(--color-black);
    border-radius: 0.3rem;
    font-size: 1.4rem;
}
.select2-dropdown .select2-results__option {
    padding: 0.4rem 1rem;
}

.switcher {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.switcher__input {
    position: absolute;
    width: 0;
    height: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.switcher__input:checked ~ .switcher__text .switcher__arrow::before {
    opacity: 1;
}
.switcher__text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.4rem;
}
.switcher__text::after {
    content: "*";
    color: var(--color-red);
    margin-left: 0.3rem;
}
.switcher__arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid var(--color-blue);
    margin-right: 0.8rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: var(--color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.switcher__arrow::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--color-blue);
    display: block;
    opacity: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.switcher__item {
    display: block;
}
.switcher__item:not(:first-child) {
    margin-left: 3rem;
}

.textarea__parent {
    position: relative;
}
.textarea__parent > .icon {
    position: absolute;
    width: 2rem;
    height: 2.1rem;
    fill: var(--color-blue);
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.textarea__parent.error .textarea__field {
    border-color: var(--color-red);
}
.textarea__parent.error ~ .error {
    display: block;
    color: var(--color-red);
    font-size: 1.2rem;
    line-height: 1.1666666667;
}
.textarea__parent.is-focus .textarea__field {
    border-color: var(--color-blue);
}
.textarea__parent.is-focus .textarea__placeholder {
    display: none;
}
.textarea__label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    line-height: 1.2857142857;
    color: var(--color-blue);
}
.textarea_required .textarea__label::after {
    content: " *";
    color: var(--color-red);
}
.textarea__field {
    height: 13.5rem;
    display: block;
    width: 100% !important;
    padding: 1rem 2rem;
    border-radius: 0.3rem;
    background-color: var(--color-white);
    border: 1px solid transparent;
    font-size: 1.4rem;
    color: var(--color-black);
    outline: none;
    resize: vertical;
}
.textarea__field::-webkit-input-placeholder {
    font-size: 1.4rem;
    color: var(--color-gray);
}
.textarea__field::-moz-placeholder {
    font-size: 1.4rem;
    color: var(--color-gray);
}
.textarea__field:-ms-input-placeholder {
    font-size: 1.4rem;
    color: var(--color-gray);
}
.textarea__field::-ms-input-placeholder {
    font-size: 1.4rem;
    color: var(--color-gray);
}
.textarea__field::placeholder {
    font-size: 1.4rem;
    color: var(--color-gray);
}
@media only screen and (max-width: 580px) {
    .textarea__field {
        height: 13.5rem;
    }
}
.textarea__field_border {
    border-color: var(--color-base);
}

.tippy-box {
    background: var(--color-black);
    -webkit-box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    font-size: 1.2rem;
    line-height: 1.3333333333;
    border-radius: 0.3rem;
}

.tippy-content {
    text-align: center;
    padding: 0.6rem;
}

.tippy-arrow {
    color: var(--color-black);
    width: 1.6rem;
    height: 1.6rem;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
    bottom: -0.7rem;
    left: 0;
    border-width: 0.8rem 0.8rem 0;
}

.user__name {
    font-size: 2rem;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 0.5rem;
    vertical-align: middle;
    color: var(--color-white);
}
.user__link {
    margin-right: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.user .icon {
    width: 3.5rem;
    height: 3.5rem;
    fill: var(--color-white);
}

.accordion {
    padding: 0 4.5rem;
    background: var(--color-white);
    -webkit-box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    border-radius: 0.3rem;
    color: var(--color-biyuzovy);
    margin-bottom: 1.5rem;
}
.accordion__title {
    font-weight: 400;
    text-align: left;
}
.accordion_small {
    padding: 0 2rem;
    margin-bottom: 1rem;
}
@media only screen and (max-width: 580px) {
    .accordion {
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
}
.accordion__top {
    cursor: pointer;
    padding: 3rem 0;
    -webkit-transition: var(--base-transition);
    transition: var(--base-transition);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media only screen and (max-width: 580px) {
    .accordion__top {
        padding: 1.8rem 0;
    }
}
.accordion.is-active {
    padding-bottom: 1rem;
}
.accordion.is-active .accordion__top {
    padding-bottom: 2rem;
}
.accordion.is-active .accordion__icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.accordion__icon {
    width: 2rem;
    height: 2rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 2rem;
    fill: currentColor;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: var(--base-transition);
    transition: var(--base-transition);
}
.accordion__content {
    color: var(--color-blue);
    padding-left: 7.5rem;
    padding-bottom: 1rem;
    display: none;
}
.accordion__content p:not(:last-child) {
    margin-bottom: 1.5rem;
}
.accordion__content p ~ ul {
    padding-left: 5rem;
}

.accordion__content a {
    font-size: 1.6rem;
}

.accordion__content h3 {
    font-size: 2rem;
}

@media only screen and (max-width: 580px) {
    .accordion__content p ~ ul {
        padding-left: 3rem;
    }
}
.accordion__content img {
    margin-bottom: 1.5rem;
}
.accordion__content ol {
    margin: 1.5rem 0;
}
.accordion__content ol li {
    margin-bottom: 0.75rem;
}
.accordion__content ul {
    margin: 1.5rem 0;
}
.accordion__content ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
}
@media only screen and (max-width: 980px) {
    .accordion__content {
        padding-left: 5rem;
    }
}
@media only screen and (max-width: 580px) {
    .accordion__content {
        padding-left: 3rem;
    }
}
.accordion__items {
    display: none;
}
.accordion__item {
    padding: 1.3rem 4.3rem;
    border-top: 1px solid #E6E6E6;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    font-size: 1.8rem;
}
@media only screen and (max-width: 980px) {
    .accordion__item {
        font-size: 1.6rem;
        padding: 1.3rem 2.5rem;
    }
}
@media only screen and (max-width: 580px) {
    .accordion__item {
        padding: 1.5rem 1.8rem 1rem;
    }
}

.swal2-popup {
    max-width: 44rem;
    width: 100%;
    padding: 4.5rem;
}
@media only screen and (max-width: 580px) {
    .swal2-popup {
        padding: 3.5rem 2rem;
    }
}

.swal2-title {
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--color-black);
    padding: 1.5rem 0 0 0;
    margin-bottom: 1rem;
}
@media only screen and (max-width: 580px) {
    .swal2-title {
        font-size: 2rem;
        line-height: 1.3;
    }
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    background-color: var(--color-biyuzovy-hover);
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
    background-color: var(--color-red);
}

.swal2-icon.swal2-warning [class^=swal2-x-mark-line] {
    background-color: var(--color-red);
}

.swal2-icon.swal2-success {
    border-color: var(--color-biyuzovy-hover);
    color: var(--color-biyuzovy-hover);
}

.swal2-icon.swal2-error {
    border-color: var(--color-red);
    color: var(--color-red);
}

.swal2-icon.swal2-warning {
    border-color: var(--color-red);
    color: var(--color-red);
}

.swal2-icon {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border: 0.25em solid var(--color-biyuzovy-hover);
}

.swal2-styled.swal2-confirm {
    min-width: 24rem;
    height: 5rem;
    background-color: var(--color-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
}
.swal2-deny.swal2-styled {
    min-width: 24rem;
    height: 5rem;
    background-color: var(--color-red);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: .5rem 0 0 0;
}
.swal2-styled.swal2-confirm:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
@media only screen and (max-width: 580px) {
    .swal2-styled.swal2-confirm {
        height: 4rem;
        font-size: 1.6rem;
    }
}

.add-card__title {
    margin-bottom: 2rem;
}
.add-card__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    margin-bottom: 3rem;
    font-weight: 400;
}
.add-card__icons {
    max-width: 25.5rem;
}
@media only screen and (max-width: 580px) {
    .add-card__icons {
        margin: 0 auto 2rem;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}
.add-card__icon {
    width: 4.1rem;
}
.add-card__icon img {
    width: 100%;
}
.add-card__cell {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.add-card__cell_left {
    max-width: 39.5rem;
    padding-right: 1rem;
}
@media only screen and (max-width: 580px) {
    .add-card__cell_left {
        text-align: center;
    }
}
.add-card__cell_right {
    max-width: 39rem;
}
@media only screen and (max-width: 580px) {
    .add-card__row {
        display: block;
    }
}

.card {
    max-width: 39rem;
    width: 100%;
    background: linear-gradient(104.17deg, #1D2E48 32.05%, #01F3FF 113.27%);
    border-radius: 1rem;
    min-height: 21rem;
    padding: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media only screen and (max-width: 580px) {
    .card {
        min-height: 18rem;
        padding: 1.5rem;
    }
}
.card__box {
    width: 100%;
}
.card__field {
    margin-top: auto;
    width: 100%;
}
.card__field .input__field {
    height: 4rem;
    font-weight: 400;
    color: var(--color-gray);
    border-color: transparent;
}
.card__field .input__field::-webkit-input-placeholder {
    color: var(--color-gray);
}
.card__field .input__field::-moz-placeholder {
    color: var(--color-gray);
}
.card__field .input__field:-ms-input-placeholder {
    color: var(--color-gray);
}
.card__field .input__field::-ms-input-placeholder {
    color: var(--color-gray);
}
.card__field .input__field::placeholder {
    color: var(--color-gray);
}

.cards {
    margin-top: 3rem;
    max-width: 91.5rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-blue);
}
@media only screen and (max-width: 980px) {
    .cards {
        max-width: 68.5rem;
        padding: 0 1rem 3rem;
    }
}
@media only screen and (max-width: 580px) {
    .cards {
        max-width: 33.5rem;
        padding-left: 0;
        padding-right: 0;
        margin: 2rem 0 0;
    }
}
.cards__title {
    font-weight: 700;
}
@media only screen and (max-width: 580px) {
    .cards__title {
        text-align: center;
    }
}
.cards__slider {
    margin-top: 2.5rem;
    border-radius: 1rem;
}
.cards__slider .owl-item {
    padding: 0 0.2rem;
}
@media only screen and (max-width: 580px) {
    .cards__slider {
        max-width: 27.5rem;
        margin-left: auto;
        margin-right: auto;
    }
}
.cards__item {
    min-height: 14.5rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    color: var(--color-white);
    border: 1px solid var(--color-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.8rem;
}
.cards__item_green {
    background: -webkit-gradient(linear, left top, right top, from(#044A02), to(#028F3B));
    background: linear-gradient(90deg, #044A02 0%, #028F3B 100%);
}
.cards__item_blue {
    background: linear-gradient(90.13deg, #0F262E 39.18%, rgba(15, 38, 46, 0.904567) 48.86%, rgba(15, 38, 46, 0.39) 95.76%);
}
.cards__top {
    margin-bottom: 1rem;
}
.cards__img {
    max-width: 14.7rem;
}
.cards__center {
    margin-bottom: 1.5rem;
    margin-top: auto;
}
.cards__icon {
    max-width: 3.3rem;
}
.cards__btn {
    min-width: 14rem;
}
.cards__name {
    padding-top: 0.5rem;
}
.cards__bottom {
    margin-bottom: 0.5rem;
}

.card-add {
    background-color: var(--color-gray);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}
.card-add__text {
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.complain {
    padding: 2rem 0;
}
.complain__top {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-blue);
}
@media only screen and (max-width: 580px) {
    .complain__top {
        margin-top: 3rem;
    }
}
.complain__title {
    font-size: 2.4rem;
    font-weight: 700;
}
@media only screen and (max-width: 580px) {
    .complain__title {
        text-align: center;
    }
}
.complain__content {
    font-size: 1.8rem;
    line-height: 1.3333333333;
}
.complain__content p {
    margin-bottom: 1rem;
}
.complain__cell {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.complain__cell_left {
    max-width: 40.5rem;
    margin-right: 2rem;
}
@media only screen and (max-width: 980px) {
    .complain__cell_left {
        max-width: 36rem;
    }
}
.complain__cell_right {
    max-width: 39rem;
    padding-top: 1rem;
}
@media only screen and (max-width: 580px) {
    .complain__cell {
        margin-right: 0;
    }
}
.complain__icon {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}
.complain__inner {
    padding-top: 1rem;
}
@media only screen and (max-width: 580px) {
    .complain__inner {
        display: block;
    }
}
.complain__item {
    width: 50%;
    text-align: center;
    margin-top: 2.5rem;
}
@media only screen and (max-width: 980px) {
    .complain__item {
        margin-top: 1.5rem;
    }
}
@media only screen and (max-width: 580px) {
    .complain__item {
        padding: 0 1.3rem;
    }
    .complain__item br {
        display: none;
    }
}
@media only screen and (max-width: 580px) {
    .complain__items {
        padding-bottom: 2.5rem;
        border-bottom: 1px solid var(--color-blue);
        margin-bottom: 1rem;
    }
}
.complain__subtitle {
    font-size: 1.4rem;
    line-height: 1.2857142857;
    letter-spacing: -0.005em;
}
.complain__field {
    margin-bottom: 2.5rem;
}
@media only screen and (max-width: 580px) {
    .complain__field {
        margin-bottom: 2rem;
    }
}
.complain__btn {
    margin-top: 3.5rem;
    min-width: 100%;
}
@media only screen and (max-width: 980px) {
    .complain__btn {
        margin-top: 2rem;
    }
}


.modal-confirm__inner {
    max-width: 39rem;
    margin: 0 auto;
}
.modal-confirm__row {
    margin: 3rem 0;
    text-align: left;
    font-size: 1.2rem;
}
@media only screen and (max-width: 580px) {
    .modal-confirm__row {
        margin: 1rem 0;
    }
}
.modal-confirm__subtitle {
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.modal-confirm__cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 580px) {
    .modal-confirm__cell {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
}
.modal-confirm__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 1rem;
}
.modal-confirm__icon svg {
    width: 5rem;
    height: 5rem;
}
.modal-confirm__field {
    margin-top: 1.5rem;
}
.modal-confirm__btn {
    width: 100%;
    margin-top: 1rem;
}
@media only screen and (max-width: 580px) {
    .modal-confirm__btn {
        min-width: 100%;
    }
}

.modal-card {
    display: flex;
    justify-content: center;
}

.modal-card__icon {
    max-width: 3rem;
    height: auto;
    margin-right: 2rem;
    flex-shrink: 0;
}

.modal-card__title {
    margin-bottom: 2rem;
}

@media only screen and (max-width: 580px) {
    .details {
        margin-bottom: 3rem;
    }
}
.details__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width: 580px) {
    .details__inner {
        display: block;
        margin-top: 2rem;
    }
}
.details__cell {
    width: 50%;
}
@media only screen and (max-width: 580px) {
    .details__cell {
        width: 100%;
    }
}
.details__title {
    padding: 2.5rem 2rem;
    font-weight: 700;
}
@media only screen and (max-width: 980px) {
    .details__title {
        padding: 2rem 1rem;
    }
}
@media only screen and (max-width: 580px) {
    .details__title {
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid var(--color-gray);
        min-height: 4.7rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.details__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 5rem;
    padding: 0 2rem;
    border-top: 1px solid var(--color-gray);
}
.details__item:last-child {
    border-bottom: 1px solid var(--color-gray);
}
@media only screen and (max-width: 980px) {
    .details__item {
        font-size: 1.4rem;
        padding: 0 1rem;
    }
}
@media only screen and (max-width: 580px) {
    .details__item {
        min-height: 4rem;
        font-size: 1.4rem;
        padding: 0.5rem 1rem;
        border-top: none;
        border-bottom: 1px solid var(--color-gray);
    }
}
.details__subtitle {
    font-weight: 700;
    max-width: 20rem;
    width: 100%;
    padding-right: 1rem;
}
@media only screen and (max-width: 580px) {
    .details__subtitle {
        max-width: 16rem;
    }
}
.details__text {
    max-width: 23rem;
}
.details__text nobr {
    overflow: hidden;
    display: block;
    width: 100%;
    text-overflow: ellipsis;
}
@media only screen and (max-width: 980px) {
    .details__text {
        max-width: 18rem;
    }
}
@media only screen and (max-width: 580px) {
    .details__text {
        max-width: 13rem;
        margin-left: auto;
        text-align: right;
    }
}
.details__btn {
    min-height: 5rem;
    min-width: 25.5rem;
    margin-top: 3rem;
}
@media only screen and (max-width: 580px) {
    .details__btn {
        min-width: 100%;
    }
}

.documents {
    padding: 2rem 0;
}
@media only screen and (max-width: 580px) {
    .documents {
        min-height: 40rem;
        padding-top: 0;
    }
}
.documents__top {
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    border-bottom: 1px solid var(--color-blue);
    margin-bottom: 2rem;
}
@media only screen and (max-width: 580px) {
    .documents__top {
        padding-top: 3rem;
        margin-bottom: 1rem;
    }
}
.documents__title {
    font-size: 2.4rem;
}
@media only screen and (max-width: 580px) {
    .documents__title {
        text-align: center;
    }
}
.documents__items {
    color: var(--color-biyuzovy);
    overflow-y: auto;
    max-height: 68rem;
}
@media only screen and (max-width: 580px) {
    .documents__items {
        max-height: 64rem;
    }
}
.documents__item {
    margin-bottom: 2rem;
    padding-bottom: 2.5rem;
}
.documents__item:not(:last-child) {
    border-bottom: 1px solid var(--color-gray);
}
.documents__subtitle {
    font-size: 1.8rem;
    padding-bottom: 1rem;
}
@media only screen and (max-width: 580px) {
    .documents__subtitle {
        padding-top: 0.5rem;
    }
}
.documents__icons {
    max-width: 60rem;
}
@media only screen and (max-width: 580px) {
    .documents__icons {
        display: block;
        max-width: 100%;
    }
}
.documents__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
.documents__icon {
    width: 50%;
    margin-top: 2.4rem;
    font-size: 1.6rem;
    padding-right: 1rem;
}
@media only screen and (max-width: 580px) {
    .documents__icon {
        margin-top: 2rem;
        width: 100%;
    }
}
.documents__icon .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    fill: var(--color-biyuzovy);
    margin-right: 2rem;
}
@media only screen and (max-width: 580px) {
    .documents__icon .icon {
        margin-right: 2.5rem;
    }
}
.documents__icon:hover {
    text-decoration: none;
}
.documents__empty {
    font-size: 1.6rem;
}

.faq:not(.faq_padding) {
    padding: 2rem 0 5rem;
}
@media only screen and (max-width: 580px) {
    .faq:not(.faq_padding) {
        padding-bottom: 3rem;
    }
}
.faq__btn {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 5rem auto 0;
}
@media only screen and (max-width: 580px) {
    .faq__btn {
        margin-top: 3rem;
    }
}
.faq__top {
    margin-bottom: 2.5rem;
    padding-top: 2.5rem;
}
@media only screen and (max-width: 580px) {
    .faq__top {
        text-align: center;
        max-width: 29.5rem;
        margin-left: auto;
        margin-right: auto;
        padding-top: 2rem;
    }
}
.faq__title {
    font-size: 2.4rem;
}
@media only screen and (max-width: 580px) {
    .faq__title {
        font-weight: 400;
    }
}
.faq__text {
    margin-top: 0.5rem;
    letter-spacing: 0.01em;
}
@media only screen and (max-width: 980px) {
    .faq__text br {
        display: none;
    }
}
@media only screen and (max-width: 580px) {
    .faq__text {
        margin-top: 2.5rem;
        font-size: 1.8rem;
    }
}


.intro_faq .intro__inner {
    min-height: 36rem;
    color: var(--color-blue);
}
@media only screen and (max-width: 580px) {
    .intro_faq .intro__inner {
        min-height: 25rem;
    }
}
.intro_faq .intro__text {
    margin-top: 2rem;
}

.faq:not(.faq_padding) {
    padding: 2rem 0 5rem;
}
@media only screen and (max-width: 580px) {
    .faq:not(.faq_padding) {
        padding-bottom: 3rem;
    }
}
.faq__btn {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 5rem auto 0;
}
@media only screen and (max-width: 580px) {
    .faq__btn {
        margin-top: 3rem;
    }
}
.faq__top {
    margin-bottom: 2.5rem;
    padding-top: 2.5rem;
}
@media only screen and (max-width: 580px) {
    .faq__top {
        text-align: center;
        max-width: 29.5rem;
        margin-left: auto;
        margin-right: auto;
        padding-top: 2rem;
    }
}
.faq__title {
    font-size: 2.4rem;
}
@media only screen and (max-width: 580px) {
    .faq__title {
        font-weight: 400;
    }
}
.faq__text {
    margin-top: 0.5rem;
    letter-spacing: 0.01em;
}
@media only screen and (max-width: 980px) {
    .faq__text br {
        display: none;
    }
}
@media only screen and (max-width: 580px) {
    .faq__text {
        margin-top: 2.5rem;
        font-size: 1.8rem;
    }
}

.footer {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 2.5rem 0 4rem;
    font-size: 1.4rem;
    font-weight: 400;
}
@media only screen and (max-width: 580px) {
    .footer {
        padding-bottom: 0;
        font-size: 1.2rem;
    }
}
@media only screen and (max-width: 980px) {
    .footer__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.footer__cell {
    max-width: 39rem;
    margin-right: 4.5rem;
}
.footer__cell:nth-child(1) {
    max-width: 24rem;
    width: 100%;
}
.footer__cell .mfo {
    padding-top: 1rem;
}
@media only screen and (max-width: 980px) {
    .footer__cell:nth-child(1) {
        max-width: 40%;
    }
}
@media only screen and (max-width: 580px) {
    .footer__cell:nth-child(1) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .footer__cell .mfo {
        padding-top: 3rem;
    }
}
.footer__cell:nth-child(3) {
    max-width: 39rem;
    width: 100%;
}
@media only screen and (max-width: 980px) {
    .footer__cell:nth-child(3) {
        max-width: 50%;
    }
}
@media only screen and (max-width: 580px) {
    .footer__cell:nth-child(3) {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        min-width: 100%;
    }
}
.footer__cell:nth-child(4) {
    max-width: 15rem;
    width: 100%;
}
@media only screen and (max-width: 980px) {
    .footer__cell:nth-child(4) {
        max-width: 50%;
    }
}
@media only screen and (max-width: 580px) {
    .footer__cell:nth-child(4) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        min-width: 100%;
    }
}
.footer__cell:last-child {
    margin-right: 0;
}
@media only screen and (max-width: 980px) {
    .footer__cell {
        max-width: 50%;
        margin-right: 0;
        padding-right: 3rem;
        margin-bottom: 3rem;
    }
}
@media only screen and (max-width: 580px) {
    .footer__cell {
        margin-bottom: 3rem;
        min-width: 100%;
        padding-right: 0;
    }
}
.footer__cell p {
    margin-bottom: 1rem;
}
.footer__cell p a {
    font-weight: 700;
}
.footer__cell p a:hover {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
@media only screen and (max-width: 580px) {
    .footer__cell p {
        margin-bottom: 0.5rem;
    }
}
@media only screen and (max-width: 580px) {
    .footer__cell_mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}
.footer__title {
    margin-bottom: 0.5rem;
    text-align: left;
}
@media only screen and (max-width: 580px) {
    .footer__title {
        margin-bottom: 1rem;
    }
}
.footer__link {
    display: block;
    color: var(--color-white);
}
.footer__link:hover {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
@media only screen and (max-width: 580px) {
    .footer__link br {
        display: none;
    }
}
.footer__link_email {
    color: var(--color-white);
}
.footer__link_icon {
    margin-bottom: 1.5rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 580px) {
    .footer__link_icon {
        margin-bottom: 1rem;
    }
}
.footer__link-icon {
    width: 2.5rem;
    height: 2.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 1rem;
}
@media only screen and (max-width: 580px) {
    .footer__link-icon {
        width: 2rem;
        height: 2rem;
    }
}

.header {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    background-color: var(--color-white);
    z-index: 1000;
}
.header__menu {
    margin-left: auto;
    margin-right: 1.5rem;
}
.header__inner {
    border-bottom: 1px solid var(--color-border);
    margin: 0 -4rem;
    padding: 1.4rem 4rem;
}
@media only screen and (max-width: 1280px) {
    .header__inner {
        margin: 0 -2rem;
        padding: 1.4rem 2rem;
    }
}
@media only screen and (max-width: 580px) {
    .header__inner {
        margin: 0;
        padding: 1rem 0;
        min-height: 7.5rem;
    }
}

.intro {
    overflow: hidden;
    position: relative;
}
.intro::before {
    content: "";
    position: absolute;
    width: 9.5rem;
    height: 32.5rem;
    top: 11rem;
    z-index: -1;
    left: -3rem;
}
@media only screen and (max-width: 1120px) {
    .intro::before {
        background-position: 100% 70%;
        top: 50rem;
    }
}
@media only screen and (max-width: 580px) {
    .intro::before {
        max-width: 14rem;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        top: 26rem;
        height: 24.5rem;
    }
}

.intro_faq {
    overflow: hidden;
    position: relative;
}
.intro_faq::before {
    background-image: url(../img/faq-bg.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: 0 0;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}
@media only screen and (max-width: 1120px) {
    .intro_faq::before {
        background-image: url(../img/faq-bg-tablet.png) !important;
        background-position: 0 -20rem !important;
    }
}
@media only screen and (max-width: 980px) {
    .intro_faq::before {
        background-position: 0 -5rem !important;
    }
}
@media only screen and (max-width: 580px) {
    .intro_faq::before {
        background-image: url(../img/faq-bg-mob.png) !important;
        background-position: 0 -5rem !important;
    }
}

.intro__inner {
    min-height: 73rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media only screen and (max-width: 580px) {
    .intro__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        min-height: auto;
    }
}
.intro__bg {
    position: relative;
    margin-right: -14.5rem;
    width: 65.8536585366%;
}
.intro__bg-decor {
    position: absolute;
    z-index: -1;
    right: -21rem;
    width: 100%;
    top: -4.3rem;
}
.intro__bg-decor img {
    width: 100%;
}
@media only screen and (max-width: 980px) {
    .intro__bg-decor {
        right: -6rem;
        top: -5.3rem;
    }
}
@media only screen and (max-width: 580px) {
    .intro__bg-decor {
        max-width: 23rem;
        right: -6.9rem;
        top: -4.8rem;
    }
}
.intro__bg-image {
    position: absolute;
    height: 100%;
    width: 100%;
}
.intro__bg-image img {
    width: 73%;
}
@media only screen and (max-width: 980px) {
    .intro__bg-image img {
        width: 76%;
    }
}
@media only screen and (max-width: 580px) {
    .intro__bg-image {
        display: none;
    }
}
@media only screen and (max-width: 980px) {
    .intro__bg {
        max-height: 69rem;
        margin-right: -30rem;
        width: 87%;
    }
}
.intro__info {
    margin: -3.3rem auto 2rem;
    z-index: 1;
}
@media only screen and (max-width: 980px) {
    .intro__info {
        margin: -4.7rem auto 2rem;
    }
}
@media only screen and (max-width: 580px) {
    .intro__info {
        display: none;
    }
}
.intro__info-item {
    padding: 2rem 3rem;
    background: var(--color-white);
    -webkit-box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    border-radius: 0.2rem;
    margin: 0 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.intro__info-item strong {
    font-size: 3rem;
    font-weight: 700;
}
@media only screen and (max-width: 980px) {
    .intro__info-item {
        padding: 2rem;
    }
}
.intro__info-icon {
    width: 4.6rem;
    height: 4.6rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 2rem;
}
.intro__info-icon svg {
    fill: currentColor;
}
.intro__info-text {
    text-shadow: 0.2rem 0.4rem 0.4rem rgba(255, 252, 252, 0.38);
    color: var(--color-black);
}
.intro__content {
    width: 41.0569105691%;
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 7rem;
}
@media only screen and (max-width: 580px) {
    .intro__content {
        width: 100%;
        padding-top: 6rem;
        padding-bottom: 5rem;
        margin-bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .intro__content h2 {
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
    }
}
.intro__calc {
    margin-top: 4rem;
}
@media only screen and (max-width: 580px) {
    .intro__calc {
        margin-top: 3rem;
    }
}
.intro__calc-top {
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 580px) {
    .intro__calc-top {
        font-size: 1.4rem;
    }
}
.intro__calc-numbers {
    font-size: 1.6rem;
    line-height: 1.2em;
    color: var(--color-gray);
    padding-top: 1rem;
}
@media only screen and (max-width: 580px) {
    .intro__calc-numbers {
        font-size: 1.2rem;
    }
}
.intro__calc-number {
    cursor: default;
}
.intro__calc-number::after {
    content: " " attr(data-value);
}
.intro__result {
    margin-top: 4.5rem;
}
@media only screen and (max-width: 580px) {
    .intro__result {
        margin-top: 4rem;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}
.intro__result-row {
    margin-bottom: 2rem;
}
@media only screen and (max-width: 580px) {
    .intro__result-row {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.intro__result-col:not(:last-child) {
    margin-right: 3rem;
    padding-right: 3rem;
    border-right: 1px solid var(--color-border);
}
@media only screen and (max-width: 580px) {
    .intro__result-col:not(:last-child) {
        margin-right: 2rem;
        padding-right: 2rem;
    }
}
@media only screen and (max-width: 580px) {
    .intro__result-col {
        min-width: 15rem;
    }
}
.intro__result-number {
    display: block;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    white-space: nowrap;
}
.intro__result-number::after {
    content: " " attr(data-value);
}
@media only screen and (max-width: 580px) {
    .intro__result-number {
        font-size: 2.4rem;
        line-height: 0.7em;
    }
}
.intro__result-text {
    display: block;
}
@media only screen and (max-width: 580px) {
    .intro__result-text {
        font-size: 1.2rem;
    }
}
.intro__result-desc {
    font-size: 1rem;
    line-height: 1.3em;
    max-width: 36.5rem;
}
@media only screen and (max-width: 580px) {
    .intro__result-desc {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: -0.5rem;
    }
}
.intro__result-desc::before {
    content: "* ";
}
@media only screen and (max-width: 580px) {
    .intro__result-desc::before {
        display: inline-block;
        margin-right: 0.5rem;
    }
}
.intro__btn {
    margin-top: 2rem;
}
@media only screen and (max-width: 580px) {
    .intro__btn {
        margin-top: 4rem;
    }
}

.login {
    padding: 5rem 10rem;
    max-width: 60rem;
}
@media only screen and (max-width: 980px) {
    .login {
        padding: 5rem;
    }
}
@media only screen and (max-width: 580px) {
    .login {
        background: var(--color-white) !important;
        -webkit-box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
        box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
        border-radius: 0.3rem;
        padding: 2.5rem 1.2rem;
    }
}
.login__title {
    margin-bottom: 2rem;
    text-align: center;
}
.login__switcher {
    margin-bottom: 2rem;
}
.login__field {
    margin-bottom: 3.5rem;
}
.login__btn {
    width: 100%;
}
.login__bottom {
    margin-top: 4.5rem;
    color: var(--color-biyuzovy);
}
@media only screen and (max-width: 580px) {
    .login__bottom {
        margin-top: 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .menu {
        position: absolute;
        width: 100%;
        background-color: var(--color-white);
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        padding: 2rem;
        text-align: center;
        -webkit-box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
        box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
        display: none;
    }
}
@media only screen and (min-width: 581px) {
    .menu {
        display: block !important;
    }
}
.menu__list {
    list-style: none;
}
.menu__item {
    margin-right: 2.5rem;
}
@media only screen and (max-width: 580px) {
    .menu__item {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
.menu__link {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.4rem;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    position: relative;
}
.menu__link::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0.2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-right: -50%;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    background-color: var(--color-blue);
}
.menu__link:hover {
    color: var(--color-blue);
}
.menu__link:hover::before {
    width: 100%;
}

.mfp-container {
    padding: 0 2rem;
}
@media only screen and (max-width: 580px) {
    .mfp-container {
        padding: 0 1rem;
    }
}

.mfp-content {
    padding: 2rem 0;
}

.mfp-bg {
    background-color: var(--color-blue);
    -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.modal {
    max-width: 81rem;
    margin: 0 auto;
    background-color: var(--color-white);
    color: var(--color-blue);
    position: relative;
    border-radius: 0.2rem;
    padding: 5rem 8rem;
}
.modal__image {
    max-width: 37rem;
    width: 100%;
    margin: 0 auto 2rem;
}
.modal__image img {
    width: 100%;
}
.modal__text {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2rem;
}
.modal .input__label {
    color: var(--color-blue) !important;
}
@media only screen and (max-width: 980px) {
    .modal {
        max-width: 60rem;
        padding: 5rem;
    }
}
@media only screen and (max-width: 580px) {
    .modal {
        padding: 3rem 2rem;
    }
}
.modal__close {
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.modal__close svg {
    width: 2rem;
    height: 2rem;
    fill: var(--color-blue);
}
@media only screen and (max-width: 580px) {
    .modal__close {
        top: 1rem;
        right: 1rem;
    }
}
.modal__title {
    margin-bottom: 2rem;
}
@media only screen and (max-width: 580px) {
    .modal__title {
        font-size: 2.4rem;
        line-height: 1.25;
        margin-bottom: 2rem;
        text-align: center;
    }
}
.modal__inner {
    max-width: 39rem;
    margin: 0 auto;
}
@media only screen and (max-width: 980px) {
    .modal__inner {
        max-width: 100%;
    }
}
.modal__btn {
    min-width: auto;
    width: 100%;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.modal__btn_small {
    max-width: 17rem;
    min-height: 4rem;
    margin: 0 auto 2rem;
    display: block;
}
@media only screen and (max-width: 580px) {
    .modal__btn {
        margin-top: 0.5rem;
    }
}
.modal__field, .modal__select {
    margin-bottom: 3rem;
}
.modal__field .input__label, .modal__select .input__label {
    color: var(--color-white);
}
.modal__field .select__label, .modal__select .select__label {
    color: var(--color-white);
}
@media only screen and (max-width: 580px) {
    .modal__field, .modal__select {
        margin-bottom: 2.5rem;
    }
}
.modal__bottom {
    margin-top: 4rem;
}
@media only screen and (max-width: 580px) {
    .modal__bottom {
        margin-top: 2rem;
    }
}
.modal__link {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.2857142857;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    letter-spacing: -0.01em;
}
.modal__link:hover {
    text-decoration: none;
}
.modal__subtitle {
    margin-bottom: 1.5rem;
}
.modal__subtitle_bold {
    font-weight: 700;
}
.modal__form {
    padding-top: 2rem;
}
@media only screen and (max-width: 580px) {
    .modal__form {
        padding-top: 1rem;
    }
}
.modal__card {
    margin-bottom: 2rem;
}
.modal__desc {
    font-size: 1.8rem;
    margin-bottom: -1rem;
    display: block;
    margin-top: -0.3rem;
}
@media only screen and (max-width: 580px) {
    .modal__desc {
        font-size: 1.7rem;
        margin-bottom: -0.2rem;
        margin-top: -1.3rem;
    }
}
.modal__desc_bottom {
    margin-bottom: 1rem;
}
.modal__checkbox {
    margin-top: 3.5rem;
}
@media only screen and (max-width: 580px) {
    .modal__checkbox {
        margin-bottom: 3rem;
    }
}
.modal__requisites {
    margin-bottom: 5rem;
}
@media only screen and (max-width: 980px) {
    .modal__requisites {
        margin-bottom: 3rem;
    }
}

.modal-replenishment__inner {
    max-width: 39rem;
    margin: 0 auto;
    font-size: 1.8rem;
}
.modal-replenishment__subtitle {
    margin-top: 2.5rem;
    display: block;
    text-align: center;
}
@media only screen and (max-width: 580px) {
    .modal-replenishment__subtitle {
        font-size: 1.6rem;
    }
}
.modal-replenishment__field {
    margin-top: 1rem;
}
.modal-replenishment__field .input__field {
    font-weight: 700;
    font-size: 2.4rem;
}
.modal-replenishment__number {
    font-size: 2.4rem;
    margin-top: 1.5rem;
    white-space: nowrap;
}
.modal-replenishment__icon {
    vertical-align: middle;
    margin-right: 2rem;
    width: 4.8rem;
}
.modal-replenishment__title {
    margin-bottom: 0.5rem;
}
.modal-replenishment__btn {
    margin-top: 1rem;
    min-width: 100%;
}
@media only screen and (max-width: 580px) {
    .modal-replenishment__btn {
        margin-top: 0.5rem;
    }
}

.modal-document {
    max-width: 70rem;
    background: var(--color-white);
    -webkit-box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    border-radius: 0.3rem;
    position: relative;
    margin: 0 auto;
}
.modal-document__title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 2.5rem;
    border-bottom: 1px solid #E2E2E2;
}
@media only screen and (max-width: 580px) {
    .modal-document__title {
        padding: 1.4rem;
    }
}
.modal-document__content {
    padding: 2rem 3rem;
    overflow-y: auto;
    font-size: 1.4rem;
    line-height: 1.2857142857;
    max-height: calc(100vh - 20rem);
}
@media only screen and (max-width: 580px) {
    .modal-document__content {
        padding: 2rem;
        max-height: calc(100vh - 11rem);
    }
}
.modal-document__content p {
    margin-bottom: 2rem;
}
.modal-document__content h1, .modal-document__content h2, .modal-document__content h3, .modal-document__content h4, .modal-document__content h5, .modal-document__content h6 {
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    text-align: center;
}
.modal-document .close {
    top: 1rem;
    right: 1rem;
    fill: #D0D1D2;
}

.nav-bar {
    margin-left: -10.5rem;
    width: 38.5rem;
    background-color: var(--color-blue);
    padding: 2.5rem 0 0.05rem 10.5rem;
    color: var(--color-white);
    min-height: 74.5rem;
    margin-right: 3rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 0.2rem;
}
@media only screen and (max-width: 980px) {
    .nav-bar {
        width: 24rem;
        margin-right: 1.5rem;
        margin-left: -2rem;
        padding-left: 2rem;
    }
}
@media only screen and (max-width: 580px) {
    .nav-bar {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9999;
        margin-right: 0;
        width: 34rem;
        padding: 4rem 2rem;
        min-height: 100vh;
        -webkit-transform: translateX(calc(100% + 3.5rem));
        transform: translateX(calc(100% + 3.5rem));
        -webkit-transition: var(--base-transition);
        transition: var(--base-transition);
    }
    .nav-bar::before {
        content: "";
        position: absolute;
        width: 3.5rem;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: -1;
        top: 0;
        left: -3.5rem;
    }
    .nav-bar.is-active {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.nav-bar__top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--color-white);
    margin-bottom: 1rem;
}
.nav-bar__close {
    width: 2.5rem;
    height: 2.5rem;
    fill: var(--color-white);
}
.nav-bar__item {
    font-weight: 400;
    margin-bottom: 0.5rem;
}
@media only screen and (max-width: 580px) {
    .nav-bar__menu {
        overflow-y: auto;
        max-height: calc(100vh - 10rem);
    }
}
.nav-bar__link {
    -webkit-transition: var(--base-transition);
    transition: var(--base-transition);
    font-size: 2.4rem;
    padding: 1.1rem;
    display: block;
}
@media only screen and (max-width: 980px) {
    .nav-bar__link {
        font-size: 2rem;
    }
}
@media only screen and (max-width: 580px) {
    .nav-bar__link {
        font-size: 2.4rem;
    }
}
.nav-bar__link.is-current {
    background-color: var(--color-biyuzovy);
    color: var(--color-white);
}
@media only screen and (max-width: 580px) {
    .nav-bar__link.is-current {
        background-color: transparent;
        color: var(--color-biyuzovy);
        font-weight: 700;
        text-decoration: underline;
    }
}
.nav-bar__link:hover {
    background-color: var(--color-biyuzovy);
    color: var(--color-white);
}
@media only screen and (max-width: 580px) {
    .nav-bar__link:hover {
        background-color: transparent;
        color: var(--color-white);
        font-weight: 700;
        text-decoration: underline;
    }
}

.notice__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 7rem;
    border-bottom: 1px solid var(--color-blue);
    padding: 1rem 2rem;
}
@media only screen and (max-width: 580px) {
    .notice__item {
        padding: 1rem 0;
        min-height: 5.5rem;
    }
}
.notice__item.is-active {
    font-weight: 700;
}
.notice__item.is-active::before {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 1.4rem;
    background-color: var(--color-biyuzovy);
    border-radius: 50%;
}
@media only screen and (max-width: 580px) {
    .notice__item.is-active::before {
        width: 1rem;
        height: 1rem;
        margin-right: 1rem;
    }
}
.notice__item-text {
    margin-right: auto;
    padding-right: 1.5rem;
    font-size: 1.8rem;
}
@media only screen and (max-width: 580px) {
    .notice__item-text {
        font-size: 1.4rem;
        padding-right: 1rem;
    }
}
.notice__item-day {
    white-space: nowrap;
}
@media only screen and (max-width: 580px) {
    .notice__item-day {
        font-size: 1.4rem;
    }
}
.notice__pagination {
    margin-right: 3rem;
}
@media only screen and (max-width: 580px) {
    .notice__pagination {
        margin-top: 2rem;
    }
}
.notice__inner {
    padding: 3rem;
    font-size: 1.6rem;
    border-bottom: 1px solid var(--color-blue);
}
@media only screen and (max-width: 980px) {
    .notice__inner {
        padding: 3rem 1.5rem;
    }
}
@media only screen and (max-width: 580px) {
    .notice__inner {
        font-size: 1.4rem;
        padding: 2.5rem 0;
    }
}
.notice__title {
    margin-bottom: 1rem;
}
@media only screen and (max-width: 580px) {
    .notice__title {
        margin-bottom: 1.5rem;
    }
}
.notice__phone, .notice__email {
    margin-left: 2.8rem;
}
@media only screen and (max-width: 580px) {
    .notice__phone, .notice__email {
        display: inline-block;
        margin-left: 0;
        margin-right: 1.5rem;
    }
}
@media only screen and (max-width: 580px) {
    .notice__name {
        display: block;
        margin-bottom: 0.5rem;
    }
}
@media only screen and (max-width: 580px) {
    .notice__info {
        display: block;
    }
}
.notice__cell {
    font-size: 1.4rem;
}
@media only screen and (max-width: 580px) {
    .notice__cell {
        margin-bottom: 1.5rem;
    }
}
.notice__day {
    white-space: nowrap;
}
.notice__top {
    border-bottom: 1px solid var(--color-gray);
    padding-bottom: 1.5rem;
}
.notice__content {
    padding: 2.5rem 8rem 2.5rem 0;
    border-bottom: 1px solid var(--color-gray);
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.5;
}
.notice__content p {
    margin-top: 2rem;
}
@media only screen and (max-width: 580px) {
    .notice__content p {
        margin-top: 1rem;
    }
}
.notice__content a {
    color: var(--color-biyuzovy);
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    margin-top: 0.5rem;
    display: inline-block;
}
@media only screen and (max-width: 580px) {
    .notice__content {
        padding: 1rem 0 2rem;
        font-size: 1.4rem;
        line-height: 1.4285714286;
    }
}
.notice__bottom {
    margin-bottom: 0.5rem;
    padding-top: 2rem;
}
@media only screen and (max-width: 580px) {
    .notice__bottom {
        padding-top: 0;
        margin-bottom: 0;
    }
}
.notice__link {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: var(--color-biyuzovy);
    margin-right: 2.5rem;
}
.notice__link .icon {
    width: 2.2rem;
    fill: var(--color-biyuzovy);
    height: 2.2rem;
    margin-right: 0.7rem;
}

.office {
    background-color: var(--color-bg);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
@media only screen and (max-width: 580px) {
    .office {
        padding-top: 0;
    }
}
.office__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
@media only screen and (max-width: 580px) {
    .office__wrap {
        display: block;
    }
}

@media only screen and (max-width: 580px) {
    .top-title {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-height: 7rem;
        background-color: var(--color-blue);
        color: var(--color-white);
        margin: 0 -2rem;
        padding: 1rem 3rem;
    }
    .top-title .icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-right: 0.7rem;
        fill: var(--color-blue);
    }
    .top-title__text {
        font-size: 2.4rem;
    }
}

.status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--color-blue);
}
@media only screen and (max-width: 580px) {
    .status {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.status__text {
    margin-right: 1.4rem;
    font-weight: 700;
    font-size: 2.4rem;
}
.status__text:last-child {
    margin-right: 0;
}
@media only screen and (max-width: 580px) {
    .status__text {
        font-size: 1.8rem;
    }
}

.limit {
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-blue);
}
@media only screen and (max-width: 980px) {
    .limit {
        padding-left: 2.5rem;
    }
}
@media only screen and (max-width: 580px) {
    .limit {
        padding: 0 0 2rem;
        text-align: center;
    }
}
.limit__title {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}
@media only screen and (max-width: 580px) {
    .limit__title {
        margin-bottom: 2rem;
    }
}
.limit__text {
    font-size: 1.6rem;
}
.limit__cell_left {
    margin-right: 4rem;
}
@media only screen and (max-width: 980px) {
    .limit__cell_left {
        display: none;
    }
}
.limit__cell_left .icon {
    width: 6.4rem;
    height: 6.4rem;
    fill: var(--color-biyuzovy-hover);
}

.about-loan {
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-blue);
}
@media only screen and (max-width: 580px) {
    .about-loan {
        display: block;
        padding: 1.5rem 0;
    }
}
.about-loan__item {
    text-align: center;
    width: 50%;
}
@media only screen and (max-width: 580px) {
    .about-loan__item {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        text-align: left;
    }
    .about-loan__item:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}
.about-loan__title {
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--color-black);
    margin-bottom: 1.2rem;
    white-space: nowrap;
}
@media only screen and (max-width: 580px) {
    .about-loan__title {
        margin-bottom: 0;
        padding-left: 1rem;
        font-size: 1.8rem;
    }
}

.account-table {
    font-size: 1.2rem;
    border-collapse: collapse;
    width: 100%;
    margin-top: 1rem;
}
@media only screen and (max-width: 980px) {
    .account-table {
        font-size: 1.2rem;
    }
}
@media only screen and (max-width: 580px) {
    .account-table:not(.account-table_universal) .account-table__body td:last-child, .account-table:not(.account-table_universal) .account-table__body td:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .account-table:not(.account-table_universal) .account-table__body td:last-child::before {
        display: none;
    }
}
.account-table_universal .account-table__body tr:last-child {
    border-bottom: 1px solid var(--color-gray);
}
.account-table_universal .account-table__body td {
    height: 5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
@media only screen and (max-width: 580px) {
    .account-table_universal .account-table__body td {
        height: auto;
    }
    .account-table_universal .account-table__body td::before {
        font-weight: 700;
        max-width: 14rem;
    }
    .account-table_universal .account-table__body td:first-child {
        border-top: 1px solid var(--color-gray);
    }
    .account-table_universal .account-table__body tr:last-child {
        border-bottom: none;
    }
}
.account-table_long .account-table__body td {
    height: 6.8rem;
}
@media only screen and (max-width: 580px) {
    .account-table_long .account-table__body td {
        height: auto;
        font-size: 1.2rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .account-table_long .account-table__body td::before {
        max-width: 14.8rem;
    }
    .account-table_long .account-table__body td:first-child {
        border-top: none;
    }
}
.account-table__top {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-gray);
}
@media only screen and (max-width: 580px) {
    .account-table__top {
        border-bottom: none;
    }
}
.account-table__title {
    font-weight: 700;
}
.account-table__caption .link {
    text-transform: uppercase;
}
.account-table__head {
    color: var(--color-gray);
}
.account-table__head th {
    padding: 1.5rem 0.5rem;
    text-transform: uppercase;
}
@media only screen and (max-width: 580px) {
    .account-table__head {
        display: none;
    }
}
@media only screen and (max-width: 580px) {
    .account-table__body {
        display: block;
    }
}
.account-table__body tr {
    border-top: 1px solid var(--color-gray);
}
@media only screen and (max-width: 580px) {
    .account-table__body tr {
        display: block;
        border-color: var(--color-blue);
        padding-bottom: 2rem;
        padding-top: 1rem;
    }
    .account-table__body tr:first-child {
        border: none;
    }
}
.account-table__body td {
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
@media only screen and (max-width: 580px) {
    .account-table__body td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 1rem 0;
        border-bottom: 1px solid #E2E2E2;
        text-align: right;
    }
    .account-table__body td::before {
        content: attr(data-mobile-title);
        text-transform: uppercase;
        text-align: left;
        max-width: 13rem;
        color: var(--color-gray);
    }
    .account-table__body td[data-mobile-title="Последняя дата оплаты"]::before {
        max-width: 10rem;
    }
}
.account-table__link {
    display: block;
    margin-top: 0.4rem;
    font-weight: 400;
}
@media only screen and (max-width: 980px) {
    .account-table__link {
        font-size: 1.2rem;
        margin-top: 0.2rem;
    }
}
@media only screen and (max-width: 580px) {
    .account-table__link {
        margin-top: 2rem;
        text-decoration: underline;
    }
}
.account-table__btn {
    min-width: 11.5rem;
    min-height: 3.5rem;
}
@media only screen and (max-width: 980px) {
    .account-table__btn {
        min-width: 9.5rem;
    }
}
@media only screen and (max-width: 580px) {
    .account-table__btn {
        width: 100%;
        min-height: 5rem;
        font-size: 2rem;
    }
}
.account-table__empty {
    font-size: 1.8rem;
    border-bottom: none !important;
}
@media only screen and (max-width: 580px) {
    .account-table__empty td::before {
        display: none;
    }
    .account-table__empty td:last-child {
        padding-top: 0;
        border-bottom: none;
    }
}

.info {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-blue);
}
.info__title {
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 700;
}
@media only screen and (max-width: 580px) {
    .info__title {
        margin-bottom: 2rem;
    }
}
.info__text {
    display: inline-block;
    margin-left: 1.5rem;
}
@media only screen and (max-width: 580px) {
    .info__text:first-child {
        margin-left: 0;
    }
}
.info__btn {
    min-width: 25.5rem;
    min-height: 5rem;
}
@media only screen and (max-width: 580px) {
    .info__btn {
        min-width: 100%;
        margin-top: 3rem;
        margin-bottom: 0.5rem;
    }
}
@media only screen and (max-width: 580px) {
    .info {
        display: block;
    }
}

.back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.6rem;
    padding-top: 3rem;
}
@media only screen and (max-width: 580px) {
    .back {
        padding-top: 1rem;
    }
}
.back .icon {
    width: 1.3rem;
    height: 1rem;
    stroke: var(--color-biyuzovy);
    margin-right: 0.5rem;
}
.back__text {
    text-decoration: underline;
}

.filters {
    padding: 2.5rem;
    font-size: 1.4rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--color-blue);
    white-space: nowrap;
}
.filters__link {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-gray);
    -webkit-transition: var(--base-transition);
    transition: var(--base-transition);
}
.filters__link:not(:last-child) {
    margin-right: 3rem;
}
@media only screen and (max-width: 580px) {
    .filters__link:not(:last-child) {
        margin-right: 2rem;
    }
}
.filters__link.is-active {
    color: var(--color-biyuzovy);
}
.filters__link:hover {
    color: var(--color-blue);
}
@media only screen and (max-width: 580px) {
    .filters {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 1.5rem 0;
        margin-top: 1rem;
        font-size: 1.1rem;
    }
}

@media only screen and (max-width: 580px) {
    .history {
        min-height: 40rem;
        padding: 0 0 3rem;
    }
}

.loans {
    padding-bottom: 4.5rem;
}

.irs--round .irs-line {
    height: 0.4rem;
    top: 3.6rem;
    background: var(--color-border);
}
.irs--round .irs-line::before, .irs--round .irs-line::after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 100%;
    background-color: var(--color-white);
    bottom: 0;
    z-index: 5;
}
.irs--round .irs-line::before {
    left: 0;
}
.irs--round .irs-line::after {
    right: 0;
}

.irs--round .irs-bar {
    height: 0.4rem;
    top: 3.6rem;
    background-color: var(--color-biyuzovy);
}

.irs--round .irs-bar--single {
    border-radius: 0;
}

.irs.irs--round {
    width: calc(100% + 2rem);
    margin-left: -1rem;
}

.irs--round .irs-handle {
    width: 2.5rem;
    height: 2.5rem;
    border: 0.2rem solid var(--color-biyuzovy);
    background-color: var(--color-biyuzovy);
    border-radius: 50%;
    -webkit-box-shadow: none;
    box-shadow: none;
    top: 2.6rem;
    z-index: 6;
}
@media only screen and (max-width: 580px) {
    .irs--round .irs-handle {
        width: 2.2rem;
        height: 2.2rem;
    }
}

.irs--round .irs-handle.state_hover, .irs--round .irs-handle:hover {
    background-color: var(--color-biyuzovy);
}

.irs--round {
    height: 5rem;
    margin-top: -1.5rem;
}

.refusal {
    padding: 10rem 0;
}
.refusal__inner {
    text-align: center;
}
@media only screen and (max-width: 580px) {
    .refusal__inner {
        max-width: 26rem;
        margin: 0 auto;
    }
}

.regulations {
    padding-bottom: 3rem;
}
.regulations__title {
    margin: 3rem 0;
}
.regulations img {
    max-width: 90%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    margin: 0 auto;
    display: block;
    -webkit-box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
}

.reset {
    padding: 5rem 10rem;
    max-width: 60rem;
}
@media only screen and (max-width: 980px) {
    .reset {
        padding: 5rem;
    }
}
@media only screen and (max-width: 580px) {
    .reset {
        background: var(--color-white) !important;
        -webkit-box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
        box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.15);
        border-radius: 0.3rem;
        padding: 2.5rem 1.2rem;
    }
}
.reset__title {
    margin-bottom: 2rem;
    text-align: center;
}
.reset__switcher {
    margin-bottom: 2rem;
}
.reset__field {
    margin-bottom: 3.5rem;
}
.reset__btn {
    width: 100%;
}

.services {
    padding-top: 7rem;
    position: relative;
}
.services::before {
    content: "";
    position: absolute;




    width: 12rem;
    height: 11.2rem;
    right: 5rem;
    bottom: 10.5rem;
    z-index: -1;
}
@media only screen and (max-width: 980px) {
    .services::before {
        display: none;
    }
}
@media only screen and (max-width: 980px) {
    .services {
        padding-top: 4rem;
    }
}
.services__inner {
    max-width: 44rem;
    margin-left: auto;
    margin-right: 10rem;
    padding-bottom: 3.3rem;
}
@media only screen and (max-width: 980px) {
    .services__inner {
        margin-right: 0;
    }
}
@media only screen and (max-width: 580px) {
    .services__inner {
        padding-bottom: 6rem;
    }
}
.services__item {
    margin-top: 2rem;
}
.services__item h4 {
    margin-bottom: 0.5rem;
}
@media only screen and (max-width: 580px) {
    .services__item h4 {
        margin-bottom: 1rem;
    }
}
.services__item p {
    max-width: 37rem;
}
@media only screen and (max-width: 580px) {
    .services__item {
        margin-top: 3rem;
    }
}
.services__btn {
    margin-top: 3rem;
}
.services__bg {
    position: absolute;
    top: 0;
}
@media only screen and (max-width: 980px) {
    .services__bg {
        top: auto;
        bottom: 0;
    }
}
@media only screen and (max-width: 580px) {
    .services__bg {
        position: relative;




        padding-top: 105%;
        margin: -12rem 0 -4rem;
    }
}
.services__bg-decor {
    position: absolute;
    z-index: -1;
    width: 52rem;
    top: 3rem;
}
.services__bg-decor img {
    width: 100%;
}
@media only screen and (max-width: 980px) {
    .services__bg-decor {
        width: 40rem;
    }
}
@media only screen and (max-width: 580px) {
    .services__bg-decor {
        display: none;
    }
}
.services__bg-image {
    width: 58rem;
}
@media only screen and (max-width: 580px) {
    .services__bg-image {
        display: none;
    }
}
.services__bg-image img {
    width: 100%;
}
@media only screen and (max-width: 980px) {
    .services__bg-image img {
        width: 80%;
    }
}
@media only screen and (max-width: 580px) {
    .services__items {
        text-align: center;
    }
}
.ws .owl-carousel .owl-video-play-icon {
    background: url("owl.video.play.webp") no-repeat;
}
.wn .owl-carousel .owl-video-play-icon {
    background: url("owl.video.play.png") no-repeat;
}
.intro::before {
    background-image: url("data:image/svg+xml,%3Csvg width='656' height='690' viewBox='0 0 656 690' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M255.347 10.6454C326.665 -10.5515 412.729 1.39043 469.623 49.333C523.607 94.8225 501.48 183.02 534.164 245.592C565.447 305.481 646.477 335.599 654.213 402.722C662.387 473.651 632.928 554.801 574.536 595.888C517.514 636.012 438.711 587.464 370.583 602.295C299.768 617.711 239.732 714.431 174.433 682.99C108.849 651.411 145.601 544.277 113.95 478.727C85.2845 419.361 2.41272 388.596 0.464063 322.7C-1.50445 256.133 62.3333 209.444 104.461 157.866C150.029 102.078 186.3 31.1676 255.347 10.6454Z' fill='%231D2E48'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: 100% 77%;
}
.services::before{
    background-image: url("data:image/svg+xml,%3Csvg width='126' height='120' viewBox='0 0 126 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M50.5716 2.84966C64.2824 -1.06434 80.6759 0.628226 91.3506 8.59499C101.479 16.1541 96.8939 31.3249 102.884 41.8914C108.617 52.0049 123.975 56.8258 125.181 68.2718C126.454 80.3668 120.497 94.3624 109.175 101.625C98.118 108.717 83.2604 100.736 70.1847 103.548C56.5934 106.472 44.7312 123.254 32.384 118.143C19.9826 113.009 27.4389 94.5412 21.6582 83.4613C16.4229 73.4266 0.715651 68.5025 0.61089 57.2429C0.505061 45.8686 12.8904 37.626 21.1481 28.6356C30.0799 18.9114 37.2973 6.63908 50.5716 2.84966Z' fill='%231D2E48'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
@media only screen and (max-width: 580px) {
    .ws .services__bg {
        background-image: url(../img/services-bg-mobile.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .wn .services__bg {
        background-image: url(../img/services-bg-mobile.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

.file-upload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #e3e3e3;
    justify-content: space-between;
    max-width: 42rem;
    border-radius: 0 5rem 5rem 0;
    margin: 0 auto 2rem;
}
.file-upload__text {
    color: rgba(000, 000, 000, .5);
    font-size: 1.4rem;
    height: 4rem;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 22rem;
    padding: 1.2rem 1rem;
    display: block
}
.file-upload__btn {
    background: var(--color-blue);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14rem;
    flex: 0 0 14rem;
    position: relative;
    color: #fff;
    font-size: 1.4rem;
    padding: 0 0.5rem;
    border-radius: 5rem;
}
.file-upload__btn input[type=file] {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    border: none;
    opacity: 0
}
.file-upload__btn_label {
     -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    width: 100%
}

.black-list {
    padding: 2.5rem 3.0rem;
    border-radius: .3rem;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.black-list__text {
    max-width: 49rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

.black-list__icon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    margin-right: 3rem;
}
.black-list__icon svg {
    width: 100%;
    height: 100%;
}

.grecaptcha-badge {
    visibility: hidden;
}

.padding-top-3rem{
    padding-top: 3rem
}