

/* Start:/tools/iexPack108/iexModal/iexModal.css?158452553019110*/
/**
 * iexModal
 */

.iexmodal{
    display: none;
    position: fixed;
    z-index: 9990;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background-color: rgba(0,0,0,0.5);
    cursor: pointer;
}

.iexmodal-alert.iexmodal{
    right: auto;
    bottom: auto;
    overflow: visible;
}

.iexmodal-spinner {
    display: none;
    position: absolute;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    opacity: 0;
}

.iexmodal-loading .iexmodal-spinner{
    display: block;
    opacity: 1;
}

.iexmodal-spinner::after {
    content: "";
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent #fff transparent;
    -webkit-animation: rotateSpinner 1.2s linear infinite;
    animation: rotateSpinner 1.2s linear infinite;
}

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

.iexmodal-popup {
    position: fixed;
    opacity: 0;
    z-index: 9991;
    /* width: 450px; задаем в JS */
    left: 50%;
    top: 50%;
    border-radius: 3px;
    background-color: #fff;
    transition: height 1s ease 0s;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
    -webkit-appearance: none; /* отключает стили Safari на iOS (чтобы работало box-shadow) */
}

.iexmodal-alert .iexmodal-popup{
    left: auto;
    top: auto;
    right: 1%;
    bottom: 2.5%;
    max-height: 95%;
    height: 200px;
    width: 300px;
    transition: none;
    -webkit-box-shadow: 0 1px 23px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 23px 3px rgba(0, 0, 0, 0.2);
}

.iexmodal-fullscreen .iexmodal-popup{
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.iexmodal-overflow-y .iexmodal-popup{
    top: 10px;
    bottom: 10px;
}

.iexmodal-overflow-x .iexmodal-popup{
    left: 10px;
    right: 10px;
}

.iexmodal-top .iexmodal-popup{
    top: 0;    
    right: 0;
    bottom: 60%;
    left: 0;
    border-radius: 0 0 3px 3px;
}
.iexmodal-right .iexmodal-popup{
    top: 0;
    right: 0;
    bottom: 0;
    left: 70%;
    border-radius: 3px 0 0 3px;
}
.iexmodal-bottom .iexmodal-popup{
    top: 60%;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 3px 3px 0 0;
}
.iexmodal-left .iexmodal-popup{
    top: 0;
    right: 70%;
    bottom: 0;
    left: 0;
    border-radius: 0 3px 3px 0;
}
@media (max-width: 500px) {
    .iexmodal-right .iexmodal-popup{
        left: 20%;
    }
    .iexmodal-left .iexmodal-popup{
        right: 20%;
    }
}
@media (max-height: 450px) {
    .iexmodal-top .iexmodal-popup{
        bottom: 20%;
    }
    .iexmodal-bottom .iexmodal-popup{
        top: 20%;
    }
}

.iexmodal-fullscreen .iexmodal-popup,
.iexmodal-top .iexmodal-popup,
.iexmodal-right .iexmodal-popup,
.iexmodal-bottom .iexmodal-popup,
.iexmodal-left .iexmodal-popup {
    width: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.iexmodal-inner {
    position: relative;
    z-index: 9992;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    cursor: default;
}

.iexmodal-fullscreen .iexmodal-inner,
.iexmodal-left .iexmodal-inner,
.iexmodal-top .iexmodal-inner,
.iexmodal-right .iexmodal-inner,
.iexmodal-bottom .iexmodal-inner,
.iexmodal-overflow-y .iexmodal-inner,
.iexmodal-alert .iexmodal-inner {
    height: 100%;
}



/* нужно чтобы за границу блока iexmodal-inner-wrap не вылазили margin-top у первого дочернего элемента и margin-bottom у последнего дочернего элемента */
.iexmodal-inner-wrap::before,
.iexmodal-inner-wrap::after{
    content: "";
    display: block;
    height: 1px;
}

.iexmodal-icon{
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke: currentColor;
    fill: currentColor;
}

.iexmodal-close-outer,
.iexmodal-close-inner{
    position: absolute;
    padding: 18px;
    stroke-linecap: round;
    cursor: pointer;
}

.iexmodal-close-outer{
    right: 0;
    top: 0;
    font-size: 26px;
    stroke-width: 2.3px;
    color: #fff;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    opacity: 0;
}

.iexmodal-right .iexmodal-close-outer{
    right: auto;
    left: 0;
}

.iexmodal-loading .iexmodal-close-outer{
    opacity: 1;
}

.iexmodal-close-inner{
    z-index: 9993;
    right: -5px;
    top: -5px;
    font-size: 18px;
    stroke-width: 3px;
    color: #000;
}

.iexmodal-right .iexmodal-close-inner{
    right: auto;
    left: -5px;
}

.iexmodal-close-outer .iexmodal-icon,
.iexmodal-close-inner .iexmodal-icon{
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    transform-origin: center center;
}

.iexmodal-close-inner .iexmodal-icon{
    opacity: 0.6;
}

.iexmodal-close-outer:hover .iexmodal-icon,
.iexmodal-close-inner:hover .iexmodal-icon{
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.iexmodal-close-inner:hover .iexmodal-icon{
    opacity: 0.8;
}

.iexmodal-content{
    display: none;
}

.iexmodal-debug-wrap{
    word-wrap: break-word;
}

.iexmodal-debug-code{
    max-height: 150px;
    min-height: 60px;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: #e8e8e8;
    padding: 5px 6px;
    font-family: monospace;
    font-size: 13px;
    line-height: 16px;
    resize: vertical;
}

.iexmodal-debug-panel{
    position: fixed;
    z-index: 100000;
    top: 0;
    right: 0;
    width: 100%;
    height: 30%;
    background-color: #fff;
    white-space: pre;
    font-family: monospace;
    overflow: scroll;
    box-shadow: 0 0 3px 1px rgba(0,0,0,0.3);
    font-size: 12px;
    line-height: 14px;
    padding: 0 6px 6px;
}

@media (min-width: 500px) {
    .iexmodal-debug-panel{
        width: 60%;
    }
}

@media (min-width: 1000px) {
    .iexmodal-debug-panel{
        width: 40%;
    }
}

.iexmodal-animate{
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    opacity: 1;
}

@-webkit-keyframes iexmodal-animate-wrap-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes iexmodal-animate-wrap-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.iexmodal-animate-wrap-in {
    -webkit-animation-name: iexmodal-animate-wrap-in;
    animation-name: iexmodal-animate-wrap-in;
}

@-webkit-keyframes iexmodal-animate-wrap-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes iexmodal-animate-wrap-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.iexmodal-animate-wrap-out {
    -webkit-animation-name: iexmodal-animate-wrap-out;
    animation-name: iexmodal-animate-wrap-out;
}

@-webkit-keyframes iexmodal-animate-default-in {
    from {
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes iexmodal-animate-default-in {
    from {
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.iexmodal-animate-default-in {
    -webkit-animation-name: iexmodal-animate-default-in;
    animation-name: iexmodal-animate-default-in;
}

@-webkit-keyframes iexmodal-animate-default-out {
    from {
    }

    to {
        -webkit-transform: translate3d(0, 70px, 0);
        transform: translate3d(0, 70px, 0);
    }
}

@keyframes iexmodal-animate-default-out {
    from {
    }

    to {
        -webkit-transform: translate3d(0, 70px, 0);
        transform: translate3d(0, 70px, 0);
    }
}

.iexmodal-animate-default-out {
    -webkit-animation-name: iexmodal-animate-default-out;
    animation-name: iexmodal-animate-default-out;
}

@-webkit-keyframes iexmodal-animate-fullscreen-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes iexmodal-animate-fullscreen-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.iexmodal-animate-fullscreen-in {
    -webkit-animation-name: iexmodal-animate-fullscreen-in;
    animation-name: iexmodal-animate-fullscreen-in;
}

@-webkit-keyframes iexmodal-animate-fullscreen-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes iexmodal-animate-fullscreen-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.iexmodal-animate-fullscreen-out {
    -webkit-animation-name: iexmodal-animate-fullscreen-out;
    animation-name: iexmodal-animate-fullscreen-out;
}

@-webkit-keyframes iexmodal-animate-alert-in {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    70% {
        -webkit-transform: translate3d(-30px, 0, 0);
        transform: translate3d(-30px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes iexmodal-animate-alert-in {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    70% {
        -webkit-transform: translate3d(-30px, 0, 0);
        transform: translate3d(-30px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.iexmodal-animate-alert-in {
    -webkit-animation-name: iexmodal-animate-alert-in;
    animation-name: iexmodal-animate-alert-in;
}


@-webkit-keyframes iexmodal-animate-alert-out {
    0% {
    }

    30% {
        -webkit-transform: translate3d(-40px, 0, 0);
        transform: translate3d(-40px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes iexmodal-animate-alert-out {
    0% {
    }

    30% {
        -webkit-transform: translate3d(-40px, 0, 0);
        transform: translate3d(-40px, 0, 0);
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.iexmodal-animate-alert-out {
    -webkit-animation-name: iexmodal-animate-alert-out;
    animation-name: iexmodal-animate-alert-out;
}

@-webkit-keyframes iexmodal-animate-top-in {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes iexmodal-animate-top-in {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.iexmodal-animate-top-in {
    -webkit-animation-name: iexmodal-animate-top-in;
    animation-name: iexmodal-animate-top-in;
}

@-webkit-keyframes iexmodal-animate-top-out {
    from {
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes iexmodal-animate-top-out {
    from {
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.iexmodal-animate-top-out {
    -webkit-animation-name: iexmodal-animate-top-out;
    animation-name: iexmodal-animate-top-out;
}


@-webkit-keyframes iexmodal-animate-bottom-in {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes iexmodal-animate-bottom-in {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.iexmodal-animate-bottom-in {
    -webkit-animation-name: iexmodal-animate-bottom-in;
    animation-name: iexmodal-animate-bottom-in;
}


@-webkit-keyframes iexmodal-animate-bottom-out {
    from {
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes iexmodal-animate-bottom-out {
    from {
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.iexmodal-animate-bottom-out {
    -webkit-animation-name: iexmodal-animate-bottom-out;
    animation-name: iexmodal-animate-bottom-out;
}

@-webkit-keyframes iexmodal-animate-right-in {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes iexmodal-animate-right-in {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.iexmodal-animate-right-in {
    -webkit-animation-name: iexmodal-animate-right-in;
    animation-name: iexmodal-animate-right-in;
}

@-webkit-keyframes iexmodal-animate-right-out {
    from {
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes iexmodal-animate-right-out {
    from {
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.iexmodal-animate-right-out {
    -webkit-animation-name: iexmodal-animate-right-out;
    animation-name: iexmodal-animate-right-out;
}

@-webkit-keyframes iexmodal-animate-left-in {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes iexmodal-animate-left-in {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.iexmodal-animate-left-in {
    -webkit-animation-name: iexmodal-animate-left-in;
    animation-name: iexmodal-animate-left-in;
}

@-webkit-keyframes iexmodal-animate-left-out {
    from {
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes iexmodal-animate-left-out {
    from {
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.iexmodal-animate-left-out {
    -webkit-animation-name: iexmodal-animate-left-out;
    animation-name: iexmodal-animate-left-out;
}

/*
 * END: iexModal
 */

/*
 * perfect-scrollbar.js
 */
/*
 * Container style
 */
.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
    display: none;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    height: 15px;
    /* there must be 'bottom' or 'top' for ps__rail-x */
    bottom: 0px;
    /* please don't change 'position' */
    position: absolute;
}

.ps__rail-y {
    display: none;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    width: 15px;
    /* there must be 'right' or 'left' for ps__rail-y */
    right: 0;
    /* please don't change 'position' */
    position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
    display: block;
    background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
    opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
    background-color: #eee;
    opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear, height .2s ease-in-out;
    -webkit-transition: background-color .2s linear, height .2s ease-in-out;
    height: 6px;
    /* there must be 'bottom' for ps__thumb-x */
    bottom: 2px;
    /* please don't change 'position' */
    position: absolute;
}

.ps__thumb-y {
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear, width .2s ease-in-out;
    -webkit-transition: background-color .2s linear, width .2s ease-in-out;
    width: 6px;
    /* there must be 'right' for ps__thumb-y */
    right: 2px;
    /* please don't change 'position' */
    position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
    background-color: #999;
    height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
    background-color: #999;
    width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
    .ps {
        overflow: auto !important;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .ps {
        overflow: auto !important;
    }
}
/*
 * END: perfect-scrollbar.js
 */

/*
 * iexModal fixes for perfect-scrollbar.js
 */
.ps .ps__rail-x{
    display: none !important;
}
.ps .ps__rail-y{
    opacity: 0.4 !important;
    background-color: #ddd;
    width: 8px;
    transition: width .2s linear, background-color .2s linear;
    -webkit-transition: width .2s linear, background-color .2s linear;
}
.ps .ps__thumb-y{
    background-color: #000;
    width: auto;
    left: 2px;
    right: 2px;
}
.ps .ps__rail-y:hover{
    width: 12px;
    background-color: #ddd;
}
.ps .ps__rail-y:hover > .ps__thumb-y{
    background-color: #000;
    left: 2px;
    right: 2px;
    width: auto;
}
/*
 * END: iexModal fixes for perfect-scrollbar.js
 */
/* End */


/* Start:/tools/iexPack108/iexForm/iexform.css?158452553017342*/
/* cyrillic */
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    src: local('Ubuntu'), url(/tools/iexPack108/iexForm/fonts/Ubuntu-cyr.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    src: local('Ubuntu'), url(/tools/iexPack108/iexForm/fonts/Ubuntu-lat.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
/* cyrillic */
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    src: local('Ubuntu Bold'), local('Ubuntu-Bold'), url(/tools/iexPack108/iexForm/fonts/Ubuntu-Bold-cyr.woff2) format('woff2');
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    src: local('Ubuntu Bold'), local('Ubuntu-Bold'), url(/tools/iexPack108/iexForm/fonts/Ubuntu-Bold-lat.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}


/* b-pform-ico */

.b-pform-ico{
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    line-height: 0;
}


/* b-pform */

.b-pform__input, .b-pform__ico, .b-pform__star, .b-pform__button, .b-pform__confirmed-ico {
    display: inline-block;
    vertical-align: top;
}

.b-pform__popup, .b-pform__wrap, .b-pform__inner, .b-pform__title, .b-pform__item, .b-pform__label, .b-pform__optlabel, .b-pform__input, .b-pform__options, .b-pform__optlabel, .b-pform__legend, .b-pform__errtext, .b-pform__bt, .b-pform__success, .b-pform__confirmed, .b-pform__input_file, .b-pform__input_file, .b-pform__filebutton, .b-pform__fileplus, .b-pform__thanks, .b-pform__fail, .b-pform-tooltip{
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 18px;
    color: #666;

    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    /* отключает стили Safari на iOS (чтобы работало box-shadow) */
    -webkit-appearance: none;
}

.b-pform{
}

.b-pform_multistep{ /* добавляется автоматически к врапперам многошаговых */
}

.b-pform_for_dark_bg{}

.b-pform form{
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

.b-pform__wrap{
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    padding: 20px;
}

.iexmodal .b-pform__wrap{
    border: none;
    padding: 0;
}

.b-pform__inner {
    position: relative;
}

.b-pform__title {
    position: relative;
    color: #555;
    font-size: 17px;
    line-height: 19px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.iexmodal .b-pform__title {
    padding-right: 37px;
}

.b-pform_multistep .b-pform__title{
    margin-bottom: 20px;
}

.b-pform__fail{
    color: red;
    margin-bottom: 13px;
    margin-top: -10px;
}

.b-pform__item {
    position: relative;
    padding: 0 0 20px;
}

.b-pform__label {
    display: block;
    margin-bottom: 7px;
}

.b-pform__optlabel{
    display: block;
    position: relative;
    font-weight: normal;
    padding-left: 19px;
    margin-bottom: 7px;
}

.b-pform__optlabel_single{
    display: inline-block;
    padding-left: 3px;
    padding-top: 2px;
    padding-bottom: 3px;
    border-radius: 3px;
    padding-right: 5px;
}

.b-pform__optlabel_policy{
    font-size: 14px;
    margin-right: -5px;
}

.b-pform_for_dark_bg .b-pform__optlabel_policy{
    color: #fff;
}

.b-pform__optlabel_remember{
    margin-right: -5px;
}

.b-pform__options .b-pform__optlabel:last-child{
    margin-bottom: 0;
}

.b-pform__options input{
    position: absolute;
    left: 0;
    top: 2px;
}

.b-pform__optlabel_single input{
    margin-right: 3px;
    vertical-align: middle;
    margin-top: -2px;
}

.b-pform__input,
.b-pform__options{
    padding: 0 30px 0 9px;
    border-radius: 3px;
    background: #fbfbfb;
    border-style: solid;
    border-width: 1px;
    border-color: #ccc;
}

.b-pform__input{
    height: 37px;
    width: 100%;
}

.b-pform__input::placeholder,
.b-pform__input::-webkit-input-placeholder{
    opacity: 0.6;
}

.b-pform__options{
    padding: 9px 15px 12px 10px;
    line-height: 16px;
}

.b-pform__input:focus {
    box-shadow: 0 0 0 2px #3399cc;
    outline: 0 none;
}

.iexform-has-error{
    box-shadow: 0 0 0 2px red !important;
}

textarea.b-pform__input {
    height: 140px;
    padding-top: 6px;
    padding-bottom: 6px;
    resize: vertical;
}

.b-pform__star {
    background: #ffb746;
    border-radius: 12px;
    height: 6px;
    width: 6px;
}

.b-pform__item .b-pform__star{
    position: absolute;
    top: 42px;
    right: -12px;
}

.b-pform__legend .b-pform__star{
    vertical-align: middle;
    margin-right: 7px;
}

.b-pform__legend{
    font-size: 14px;
}

.b-pform__errtext {
    color: red;
    line-height: 16px;
    position: absolute;
    right: 0;
    top: 0;
}

.b-pform__buttons{
    position: relative;
    margin: 0 0 15px;
}

.b-pform_multistep .b-pform__buttons{
    display: flex;
}
.b-pform__btcol{}
.b-pform__btcol:nth-child(1),
.b-pform__btcol:nth-child(3){
    flex-grow: 0;   /* не растягивать, ширина будет определяться контентом или flex-basis */
}
.b-pform__btcol:nth-child(2){
    text-align: center;
    flex-grow: 1;   /* растягивать, занимает все оставшееся пространство */
    display: flex;
    align-items: center; /* по вертикали */
    justify-content: center; /* по горизонтали */
}

.b-pform__bt {
    position: relative;

    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    height: 47px;
    line-height: 44px;
    cursor: pointer;

    box-sizing: content-box;
    padding: 0;
    width: 145px;

    outline: 0 none;
    transition: box-shadow 0.1s;
    transition: -webkit-box-shadow 0.1s;
}

.iexmodal .b-pform_multistep .b-pform__bt {
    width: auto;
}

.b-pform__bt .b-pform-ico{
    font-size: 26px;
    position: absolute;
    top: 50%;
    margin-top: -14px;
}

.b-pform__bt_prev .b-pform-ico{
    left: 50%;
    margin-left: -14px;
}
.b-pform__bt_next .b-pform-ico{
    right: 9px;
}

.b-pform__bt_submit,
.b-pform__bt_next{
    font-weight: bold;
    text-transform: uppercase;
    background: #66cc33;
    border-color: #66cc33;
    color: #fff;
    padding: 0 4px;
}

.b-pform__bt_submit:hover,
.b-pform__bt_next:hover{
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
}

.b-pform__bt_close,
.b-pform__bt_prev{
    background: #fff;
    border-color: #ccc;
    color: #7f7f7f;
}

.b-pform__authlinks{
    height: 47px;
    line-height: 24px;
}

.b-pform__authlinks a,
.b-pform__authlinks a:hover,
.b-pform__authlinks a:visited{
    color: #666;
    text-decoration: none;
    font-size: 16px;
}

.b-pform__authlinks a:hover{
    text-decoration: underline;
}

.b-pform__bt_close,
.b-pform__authlinks{
    position: absolute;
    top: 0;
    right: 0;
}

.b-pform__bt_prev,
.b-pform__bt_next{
    padding: 0 27px;
    width: auto;
}

.b-pform__bt_prev{
    text-transform: uppercase;
}
.b-pform__bt_next{
    padding-right: 42px;
}

.b-pform__bt_close:hover,
.b-pform__bt_prev:hover{
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.b-pform__bt_file{
    position: relative;
    display: inline-block;
    padding: 0 20px;
    width: auto !important;
    color: #fff;
    background-color: #b3b3b3;
    border-color: #b3b3b3;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85em;
    line-height: 47px;
}

.iexform-after-success{
    align-items: center;
    justify-content: center;
}

.iexform-before-success,
.iexform-after-success{
    display: none;
}

.iexform-before-success.active{
    display: block;
}

.iexform-after-success.active{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.b-pform__confirmed {
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    padding: 30px 0;
}

.b-pform_for_dark_bg .b-pform__confirmed{
    color: #fff;
}

.b-pform__confirmed-ico {
    background: url(/tools/iexPack108/iexForm/img/confirmed.png) no-repeat;
    width: 114px;
    height: 114px;
    margin-bottom: 25px;
}

.b-pform__thanks {
    font-size: 23px;
    line-height: 24px;
    font-weight: bold;
    color: #555;
    margin-bottom: 7px;
}

.b-pform_for_dark_bg .b-pform__thanks{
    color: #fff;
}

.b-pform__hintwrap {
    position: relative;
}

.b-pform__item_file .b-pform__hintwrap + .b-pform__hintwrap{
    margin-top: 5px;
}

.b-pform__hint-ico{
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 20;
    font-size: 22px;
    line-height: 0;
    color: #b3b3b3;
}

.b-pform__item_file .b-pform__hint-ico{
    right: 77px;
}

.b-pform__hint{
    /* реализуется на tooltip.js */
}

.b-pform__plusbt{
    display: block;
    margin-top: 5px;
    color: #666 !important;
    text-decoration: underline;
    outline: none !important;
}

.iexform-updating{
    position:relative;
}

.iexform-updating:after{
    content: "";
    position: absolute;
    background: url("/tools/iexPack108/iexForm/img/spinner.gif") no-repeat scroll center center transparent;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.b-pform__filewrap{
    display: none;
    position: relative;
    z-index: 1;
}

.b-pform__filewrap + .b-pform__filewrap{
    margin-top: 5px;
}

.b-pform__filewrap .iexform-error-message{
    margin-left: 1px;
    margin-top: -20px;
}

.b-pform__input_file{
    position: relative;
    z-index: 0;
    padding-right: 72px;
}

.b-pform__filebutton{
    position: absolute;
    z-index: 2;
    top: 1px;
    right: 1px;
    bottom: 1px;
    padding: 0 10px;
    border: none;
    color: #fff;
    background-color: #b3b3b3;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85em;
}

.b-pform__filewrap .b-pform__filebutton{
    bottom: auto;
    top: 0;
}

.b-pform__filereal{
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.b-pform__step{
    display: none;
}
.b-pform__step_curr{
    display: block;
}

.b-pform__steptitle{
    display: inline-block;
    text-align: right;
    margin-bottom: 24px;
    font-weight: bold;
    background-color: #b3b3b3;
    padding: 5px 10px 6px 20px;
    color: #fff;
    margin-left: -20px;
}

.b-pform__stepbulls{}
.b-pform__stepbulls i{
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #b3b3b3;
    border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
}
.b-pform__stepbulls i + i{
    margin-left: 5px;
}
.b-pform__stepbulls i.curr{
    background: #b3b3b3;
}

.b-pform__policy,
.b-pform__policy:hover,
.b-pform__policy:visited {
    color: #555 !important;
}
.b-pform__policy,
.b-pform__policy:visited {
    text-decoration: underline !important;
}
.b-pform__policy:hover {
    text-decoration: none !important;
}

.b-pform_for_dark_bg .b-pform__policy,
.b-pform_for_dark_bg .b-pform__policy:hover,
.b-pform_for_dark_bg .b-pform__policy:visited{
    color: #fff !important;
}

/* b-pform-tooltip */

.b-pform-tooltip {
    max-width: 100%;
    padding: 2px 8px 3px;
    color: #fff;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    background-color: #a2a1a1;
    border-radius: 4px;
}
.b-pform-tooltip::before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.b-pform-tooltip.error {
    background-color: red;
}

.b-pform-tooltip[x-placement="top"] {
    margin-bottom: 6px;
}
.b-pform-tooltip.outline[x-placement="top"] {
    margin-bottom: 8px;
}
.b-pform-tooltip[x-placement="top"]::before {
    bottom: -4px;
    left: 50%;
    margin-left: -6px;
    border-width: 6px 6px 0;
    border-top-color:  #a2a1a1;
}
.b-pform-tooltip.error[x-placement="top"]::before {
    border-top-color: red;
}

.b-pform-tooltip[x-placement="right"] {
    margin-left: 6px;
}
.b-pform-tooltip.outline[x-placement="right"] {
    margin-left: 8px;
}
.b-pform-tooltip[x-placement="right"]::before {
    left: -4px;
    top: 50%;
    margin-top: -6px;
    border-width: 6px 6px 6px 0;
    border-right-color: #a2a1a1;
}
.b-pform-tooltip.error[x-placement="right"]::before{
    border-right-color: red;
}

.b-pform-tooltip[x-placement="bottom"] {
    margin-top: 6px;
}
.b-pform-tooltip.outline[x-placement="bottom"] {
    margin-top: 8px;
}
.b-pform-tooltip[x-placement="bottom"]::before {
    top: -4px;
    left: 50%;
    margin-left: -6px;
    border-width: 0 6px 6px;
    border-bottom-color: #a2a1a1;
}
.b-pform-tooltip.error[x-placement="bottom"]::before {
    border-bottom-color: red;
}

.b-pform-tooltip[x-placement="left"] {
    margin-right: 6px;
}
.b-pform-tooltip.outline[x-placement="left"] {
    margin-right: 8px;
}
.b-pform-tooltip[x-placement="left"]::before {
    top: 50%;
    right: -4px;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-left-color: #a2a1a1;
}
.b-pform-tooltip.error[x-placement="left"]::before {
    border-left-color: red;
}

.b-pform-tooltip.error.common {
    margin: 0;
    padding: 4px 10px;
    border: none;
}
.b-pform-tooltip.error.common::before {
    display: none;
}


/* b-pform-panel */

.b-pform-panel,
.b-pform-panel *,
.b-pform-panel *::after,
.b-pform-panel *::before{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
    color: #555555;
}

.b-pform-panel_white_icons *,
.b-pform-panel_white_icons *::after,
.b-pform-panel_white_icons *::before{
    color: #fff;
}

.b-pform-panel{
    position: fixed;
    z-index: 999990;
    right: 0;
    top: 50%;
    /*width: 272px; не фиксиуруем ширину */
    opacity: 0.9;
}

.b-pform-panel_hidden{
}

.b-pform-panel_r{
    right: 0;
    left: auto;
}

.b-pform-panel_l{
    left: 0;
    right: auto;
}

.b-pform-panel__menu{}

@media (min-width: 768px) {
    .b-pform-panel_hidden .b-pform-panel__menu{
        transform: translateX(-58px);
    }
}

.b-pform-panel__option{
    display: block;
    position: relative;
    border-style: solid;
    border-color: #ec673c;
    border-width: 1px 0 0 1px;
    background-color: #d85328;
    font-size: 14px;
    line-height: 17px;
    padding: 23px 20px 22px 58px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    outline: none;
}

.b-pform-panel__option:hover{
    background-color: #ec673c;
    color: #555555;
}

.b-pform-panel_white_icons .b-pform-panel__option:hover{
    color: #fff;
}

.b-pform-panel__option:first-child {
    border-top-left-radius: 13px;
}

.b-pform-panel__option:last-child {
    border-bottom-left-radius: 13px;
    border-bottom-width: 1px;
}

.b-pform-panel__option .b-pform-ico{
    position: absolute;
    font-size: 24px;
    top: 50%;
    margin-top: -12px;
    left: 20px;
}

.b-pform-panel_hidden .b-pform-panel__option .b-pform-ico {
    left: 17px;
}

.b-pform-panel__hide,
.b-pform-panel__show{
    display: block;
    position: relative;
    box-sizing: border-box;

    height: 28px;
    line-height: 26px;

    font-size: 15px;
    font-weight: 400;
    text-decoration: none;

    border-style: solid;
    border-color: #ec673c;
    border-width: 0 0 1px 1px;
    border-bottom-left-radius: 10px;
    background-color: #d85328;
    outline: none;

    padding: 0 10px 0 24px;
    margin-top: -1px;
}

.b-pform-panel__hide:hover,
.b-pform-panel__show:hover{
    background-color: #ec673c;
    color: #555555;
}

.b-pform-panel_white_icons .b-pform-panel__hide:hover,
.b-pform-panel_white_icons .b-pform-panel__show:hover{
    color: #fff;
}

.b-pform-panel__hide{
    float: right;
}

.b-pform-panel__show{
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
}

@media (max-width: 767px) {
    .b-pform-panel__show{
        border-top-left-radius: 10px;
    }
}

.b-pform-panel_hidden .b-pform-panel__show{
    display: block;
    padding-right: 4px;
}

.b-pform-panel__show .b-pform-ico,
.b-pform-panel__hide .b-pform-ico{
    position: absolute;
    left: 4px;
    top: 50%;
    margin-top: -11px;
    font-size: 20px;
}


/* responsive */

@media (max-width: 490px) {
    .iexmodal .b-pform_multistep .b-pform__buttons{
        text-align: center;
    }
    .b-pform_multistep .b-pform__bt,
    .iexmodal .b-pform_multistep .b-pform__bt{
        width: auto;
        padding: 0 17px;
    }
    .b-pform_multistep .b-pform__bt_next,
    .iexmodal .b-pform_multistep .b-pform__bt_next {
        padding-right: 35px;
    }
    .b-pform_multistep .b-pform__bt_next .b-pform-ico {
        right: 6px;
    }
}

@media (max-width: 420px) {
    .b-pform__bt{
        box-sizing: border-box;
    }
    .b-pform:not(.b-pform_multistep) .b-pform__bt,
    .iexmodal .b-pform:not(.b-pform_multistep) .b-pform__bt,
    .b-pform__authlinks{
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .b-pform__bt_submit,
    .iexmodal .b-pform__bt_submit{
        margin-bottom: 15px;
    }
    .b-pform__bt_close,
    .b-pform__authlinks{
        position: static;
    }
}

/* End */


/* Start:/tools/sm-rem/libs/colorbox/colorbox.css?15843460644474*/
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden; -webkit-transform: translate3d(0,0,0);}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:url(/tools/sm-rem/libs/colorbox/images/overlay.png) repeat 0 0; opacity: 0.9; filter: alpha(opacity = 90);}
#colorbox{outline:0;}
    #cboxTopLeft{width:21px; height:21px; background:url(/tools/sm-rem/libs/colorbox/images/controls.png) no-repeat -101px 0;}
    #cboxTopRight{width:21px; height:21px; background:url(/tools/sm-rem/libs/colorbox/images/controls.png) no-repeat -130px 0;}
    #cboxBottomLeft{width:21px; height:21px; background:url(/tools/sm-rem/libs/colorbox/images/controls.png) no-repeat -101px -29px;}
    #cboxBottomRight{width:21px; height:21px; background:url(/tools/sm-rem/libs/colorbox/images/controls.png) no-repeat -130px -29px;}
    #cboxMiddleLeft{width:21px; background:url(/tools/sm-rem/libs/colorbox/images/controls.png) left top repeat-y;}
    #cboxMiddleRight{width:21px; background:url(/tools/sm-rem/libs/colorbox/images/controls.png) right top repeat-y;}
    #cboxTopCenter{height:21px; background:url(/tools/sm-rem/libs/colorbox/images/border.png) 0 0 repeat-x;}
    #cboxBottomCenter{height:21px; background:url(/tools/sm-rem/libs/colorbox/images/border.png) 0 -29px repeat-x;}
    #cboxContent{background:#fff; overflow:hidden;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:28px;}
        #cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
        #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
        #cboxLoadingOverlay{background:url(/tools/sm-rem/libs/colorbox/images/loading_background.png) no-repeat center center;}
        #cboxLoadingGraphic{background:url(/tools/sm-rem/libs/colorbox/images/loading.gif) no-repeat center center;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
        #cboxPrevious{position:absolute; bottom:0; left:0; background:url(/tools/sm-rem/libs/colorbox/images/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:-75px -25px;}
        #cboxNext{position:absolute; bottom:0; left:27px; background:url(/tools/sm-rem/libs/colorbox/images/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxNext:hover{background-position:-50px -25px;}
        #cboxClose{position:absolute; bottom:0; right:0; background:url(/tools/sm-rem/libs/colorbox/images/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxClose:hover{background-position:-25px -25px;}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}
/* End */


/* Start:/tools/sm-rem/libs/slick/slick-theme.css?15843460653145*/
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('/tools/sm-rem/libs/slick/./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('/tools/sm-rem/libs/slick/./fonts/slick.eot');
    src: url('/tools/sm-rem/libs/slick/./fonts/slick.eot?#iefix') format('embedded-opentype'), url('/tools/sm-rem/libs/slick/./fonts/slick.woff') format('woff'), url('/tools/sm-rem/libs/slick/./fonts/slick.ttf') format('truetype'), url('/tools/sm-rem/libs/slick/./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* End */


/* Start:/tools/sm-rem/libs/slick/slick.css?15843460651776*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* End */


/* Start:/tools/sm-rem/css/main.min.css?1647429583176545*/
@charset "UTF-8";
@font-face {
  font-family: "roboto-example";
  font-weight: normal;
  font-style: normal;
  src: url("/tools/sm-rem/css/../fonts/RobotoRegular/RobotoRegular.eot");
  src: url("/tools/sm-rem/css/../fonts/RobotoRegular/RobotoRegular.eot?#iefix") format("embedded-opentype"),
    url("/tools/sm-rem/css/../fonts/RobotoRegular/RobotoRegular.woff") format("woff"),
    url("/tools/sm-rem/css/../fonts/RobotoRegular/RobotoRegular.ttf") format("truetype");
}

@font-face {
  font-family: "roboto-example";
  font-weight: bold;
  font-style: normal;
  src: url("/tools/sm-rem/css/../fonts/RobotoBold/RobotoBold.eot");
  src: url("/tools/sm-rem/css/../fonts/RobotoBold/RobotoBold.eot?#iefix") format("embedded-opentype"),
    url("/tools/sm-rem/css/../fonts/RobotoBold/RobotoBold.woff") format("woff"),
    url("/tools/sm-rem/css/../fonts/RobotoBold/RobotoBold.ttf") format("truetype");
}

@font-face {
  font-family: "Proxima";
  font-weight: normal;
  font-style: normal;
  src: url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Regular.eot");
  src: url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"),
    url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Regular.woff") format("woff"),
    url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Proxima";
  font-weight: 300;
  font-style: normal;
  src: url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Light.eot.eot");
  src: url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Light.eot.eot?#iefix") format("embedded-opentype"),
    url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Light.eot.woff") format("woff"),
    url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Light.eot.ttf") format("truetype");
}

@font-face {
  font-family: "Proxima";
  font-weight: bold;
  font-style: normal;
  src: url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Bold.eot");
  src: url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"),
    url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Bold.woff") format("woff"),
    url("/tools/sm-rem/css/../fonts/Proxima/ProximaNova-Bold.ttf") format("truetype");
}

/*!
 * Bootstrap Reboot v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333%;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66667%;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66667%;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333%;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66667%;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333%;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66667%;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -webkit-order: 13;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: row-reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: column-reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -webkit-justify-content: space-around !important;
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -webkit-align-content: flex-start !important;
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -webkit-align-content: flex-end !important;
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -webkit-align-content: center !important;
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -webkit-align-content: space-between !important;
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -webkit-align-content: space-around !important;
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -webkit-align-content: stretch !important;
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -webkit-align-self: auto !important;
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -webkit-align-self: flex-start !important;
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -webkit-align-self: flex-end !important;
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -webkit-align-self: center !important;
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -webkit-align-self: baseline !important;
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -webkit-align-self: stretch !important;
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

::-webkit-input-placeholder {
  color: #666;
}

::-moz-placeholder {
  color: #666;
}

:-ms-input-placeholder {
  color: #666;
}

::-ms-input-placeholder {
  color: #666;
}

::placeholder {
  color: #666;
}

::-moz-selection {
  background-color: #446efe;
  color: #fff;
}

::selection {
  background-color: #446efe;
  color: #fff;
}

body {
  min-width: 320px;
  width: 100%;
  position: relative;
  overflow-x: hidden !important;
  font-size: 1em;
  line-height: 1.1;
  font-family: Proxima, sans-serif;
  color: #000;
}

body input,
body textarea {
  border: #666 1px solid;
  outline: 0;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  border-color: red;
}

body input:required:valid,
body textarea:required:valid {
  border-color: green;
}

.img-fluid,
.img-responsive {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-fluid.img-width,
.img-responsive.img-width {
  width: 100%;
}

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

b,
strong {
  font-weight: 700;
}

li,
nav,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
  outline: 0;
}

a {
  color: #000;
  text-decoration: none;
  position: relative;
}

a:hover {
  border-bottom: 1px solid #000;
  text-decoration: none;
  color: #000;
}

.section {
  position: relative;
  padding: 3rem 0;
}

.btn {
  cursor: pointer;
  border: 0;
  padding: 8px 30px;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
}

.btn::after {
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(
    340deg,
    rgba(255, 255, 255, 0) 15%,
    rgba(255, 255, 255, 0.75) 25%,
    rgba(255, 255, 255, 0) 35%
  );
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 15%,
    rgba(255, 255, 255, 0.75) 25%,
    rgba(255, 255, 255, 0) 35%
  );
  -webkit-animation: bt 2.5s linear infinite;
  animation: bt 2.5s linear infinite;
}

.b-pform__popup,
.b-pform__wrap,
.b-pform__inner,
.b-pform__title,
.b-pform__item,
.b-pform__label,
.b-pform__optlabel,
.b-pform__input,
.b-pform__options,
.b-pform__optlabel,
.b-pform__legend,
.b-pform__errtext,
.b-pform__bt,
.b-pform__success,
.b-pform__confirmed,
.b-pform__input_file,
.b-pform__filebutton,
.b-pform__fileplus,
.b-pform__thanks,
.b-pform__fail,
.b-pform-tooltip {
  font-family: "Proxima" !important;
}

.btn_accent {
  background: -webkit-gradient(linear, left top, left bottom, from(#fcda30), to(#fbb600));
  background: -o-linear-gradient(top, #fcda30, #fbb600);
  background: linear-gradient(to bottom, #fcda30, #fbb600);
  color: #000 !important;
  -webkit-box-shadow: 0 4px 0 #ce9a12;
  box-shadow: 0 4px 0 #ce9a12;
}

.btn_accent:hover {
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
  text-decoration: none;
  color: #000 !important;
  -webkit-box-shadow: 0 1px 0 #ce9a12;
  box-shadow: 0 1px 0 #ce9a12;
}

.btn_blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#446efe), to(#3150ff));
  background: -o-linear-gradient(top, #446efe, #3150ff);
  background: linear-gradient(to bottom, #446efe, #3150ff);
  color: #fff !important;
  -webkit-box-shadow: 0 4px 0 #152ca7;
  box-shadow: 0 4px 0 #152ca7;
}

.btn_blue:hover {
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
  text-decoration: none;
  color: #fff !important;
  -webkit-box-shadow: 0 1px 0 #152ca7;
  box-shadow: 0 1px 0 #152ca7;
}

.btn--flat__accent {
  background: #fbb600;
  color: #000 !important;
}

.btn--flat__accent:hover {
  background: #c89100;
}

.btn--flat__blue {
  background: #3150ff;
  color: #fff !important;
}

.btn--flat__blue:hover {
  background: #001eca;
}

.link--yellow {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.link--yellow:hover {
  color: #fbb600;
}

.link--yellow:hover::after {
  display: none;
}

@-webkit-keyframes bt {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  16% {
    opacity: 1;
    -webkit-transform: translate(35%, 0);
    transform: translate(35%, 0);
  }
  22% {
    opacity: 0.5;
    -webkit-transform: translate(55%, 0);
    transform: translate(55%, 0);
  }
  40% {
    -webkit-transform: translate(120%, 0);
    transform: translate(120%, 0);
  }
  100% {
    opacity: 0.35;
    -webkit-transform: translate(120%, 0);
    transform: translate(120%, 0);
  }
}

@keyframes bt {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  16% {
    opacity: 1;
    -webkit-transform: translate(35%, 0);
    transform: translate(35%, 0);
  }
  22% {
    opacity: 0.5;
    -webkit-transform: translate(55%, 0);
    transform: translate(55%, 0);
  }
  40% {
    -webkit-transform: translate(120%, 0);
    transform: translate(120%, 0);
  }
  100% {
    opacity: 0.35;
    -webkit-transform: translate(120%, 0);
    transform: translate(120%, 0);
  }
}

/* Header and menu styles */
.header {
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 101;
}

.header.-offset {
  -webkit-box-shadow: 0 0.375rem 0.675rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.375rem 0.675rem rgba(0, 0, 0, 0.2);
}

.header.-offset .header-nav {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: -1;
  position: absolute;
  width: 100%;
}

.header.-offset .header-main {
  padding: 8px;
}

.header.-offset .header_logo:hover {
  border: 0;
}

.header.-offset .header_logo img {
  max-width: 120px;
}

.header.-offset .btn {
  font-size: 13px;
}

.header.-offset .header_nav .header_numbers__tel a {
  font-size: 15px;
}

.header.-offset .header_nav .link_blue {
  font-size: 13px;
}

.header-main {
  background: #fff;
  z-index: 100;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 15px 0;
}

.header-main .header_btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.header-main .header_link {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.header-main .header_link:before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -20px;
  width: 10px;
  height: 10px;
  background: green;
  border-radius: 100%;
  z-index: 12;
}

.header-main .header_link::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -23px;
  width: 16px;
  height: 16px;
  border: 1px solid green;
  background: 0 0;
  border-radius: 100%;
  -webkit-animation: rounded 5s infinite ease-in-out;
  animation: rounded 5s infinite ease-in-out;
}

.b-message {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 00px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 127px;
  height: 154px;
  z-index: 11;
  background-image: url(https://sm-remont.ru/images/sm-remont/b-message.png);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.b-message.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.b-message .b-message__num {
  position: absolute;
  z-index: 12;
  left: 81px;
  top: 117px;
  width: 29px;
  height: 29px;
  background: url(https://sm-remont.ru/images/sm-remont/b-message.png) no-repeat -201px -125px;
}

.b-message .b-message__face {
  position: absolute;
  z-index: 11;
  left: 14px;
  top: 43px;
  -webkit-animation: message-face-animation 5s ease-in-out 1.5s infinite;
  animation: message-face-animation 5s ease-in-out 1.5s infinite;
  width: 99px;
  height: 99px;
  background: url(https://sm-remont.ru/images/sm-remont/b-message.png) no-repeat -131px 0;
}

.b-message .message_red {
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  font-weight: 700;
  border: 1px solid #fff;
  color: #fff;
}

@-webkit-keyframes message-face-animation {
  2% {
    -webkit-transform: rotate3d(0, 0, 1, 4deg);
    transform: rotate3d(0, 0, 1, 4deg);
    opacity: 1;
  }
  4% {
    -webkit-transform: rotate3d(0, 0, 1, -4deg);
    transform: rotate3d(0, 0, 1, -4deg);
  }
  6% {
    -webkit-transform: rotate3d(0, 0, 1, 4deg);
    transform: rotate3d(0, 0, 1, 4deg);
  }
  8% {
    -webkit-transform: rotate3d(0, 0, 1, -4deg);
    transform: rotate3d(0, 0, 1, -4deg);
  }
  10% {
    -webkit-transform: rotate3d(0, 0, 1, 4deg);
    transform: rotate3d(0, 0, 1, 4deg);
  }
  12% {
    -webkit-transform: rotate3d(0, 0, 1, 0);
    transform: rotate3d(0, 0, 1, 0);
  }
}

@keyframes message-face-animation {
  2% {
    -webkit-transform: rotate3d(0, 0, 1, 4deg);
    transform: rotate3d(0, 0, 1, 4deg);
    opacity: 1;
  }
  4% {
    -webkit-transform: rotate3d(0, 0, 1, -4deg);
    transform: rotate3d(0, 0, 1, -4deg);
  }
  6% {
    -webkit-transform: rotate3d(0, 0, 1, 4deg);
    transform: rotate3d(0, 0, 1, 4deg);
  }
  8% {
    -webkit-transform: rotate3d(0, 0, 1, -4deg);
    transform: rotate3d(0, 0, 1, -4deg);
  }
  10% {
    -webkit-transform: rotate3d(0, 0, 1, 4deg);
    transform: rotate3d(0, 0, 1, 4deg);
  }
  12% {
    -webkit-transform: rotate3d(0, 0, 1, 0);
    transform: rotate3d(0, 0, 1, 0);
  }
}

.header-nav {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
  z-index: 100;
  border-bottom: 1px solid #ebebeb;
  border-top: 1px solid #ebebeb;
}

.smenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.smenu-item {
  width: 25%;
  position: relative;
}

.smenu-item:hover .smenu-sublist {
  display: block;
}

.smenu-item:hover .smenu-link-top {
  border-top: 2px solid #fcda30;
  text-decoration: none;
  border-right: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
}

.smenu-link-top {
  padding: 15px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 2px solid #fff;
}

.smenu-link-top::after {
  display: none;
}

.smenu-link-top:hover {
  border: 0;
}

.smenu-link-top img {
  max-width: 25px;
  margin-right: 10px;
}

.smenu-sublist {
  width: 200%;
  padding: 20px 10px;
  position: absolute;
  background: #fff;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  display: none;
}

.smenu-sublist .col-6:first-child {
  border-right: 1px solid #ebebeb;
}

.smenu-sublist a {
  width: 100%;
  font-size: 14px;
  display: block;
  padding: 10px 10px;
}

.smenu-sublist a::after {
  display: none;
}

.smenu-sublist a:hover {
  border: 0;
  font-weight: bold;
}

.hamburger-box {
  padding: 15px 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  position: absolute;
  background: #000;
  border-radius: 5px;
}

.hamburger-line:first-child {
  top: 0;
  left: 0;
}

.hamburger-line:last-child {
  bottom: 0;
  left: 0;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  left: 0;
  margin-top: -1px;
}

.navigation {
  position: fixed;
  z-index: 101;
  top: -200%;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  background: #ffffff;
  color: #000;
}

.navigation.is-show {
  top: 0;
}

.navigation-list {
  padding: 50px 0 10px 0;
}

.navigation-list-item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navigation-link {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding: 15px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
}

.navigation-link img {
  max-width: 20px;
  margin-right: 10px;
}

.navigation-link-more {
  border-top: 1px solid #e9e9e9;
}

.navigation-link-more::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  margin-top: -12px;
  width: 15px;
  height: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 4px solid #000;
  border-bottom: 4px solid #000;
  -webkit-transform: translate(0px, 0px) rotate(-45deg);
  -ms-transform: translate(0px, 0px) rotate(-45deg);
  transform: translate(0px, 0px) rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navigation-link-more.active + .navigation-sublist {
  position: relative;
  height: 100%;
  padding: 15px 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navigation-link-more.active::after {
  -webkit-transform: translate(0px, 10px) rotate(135deg);
  -ms-transform: translate(0px, 10px) rotate(135deg);
  transform: translate(0px, 10px) rotate(135deg);
}

.navigation-sublist {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 0px;
  position: absolute;
  padding: 0;
  width: 100%;
  background: #f1f1f1;
  top: -100%;
}

.navigation-sublist a {
  padding: 8px 20px;
  color: #000;
  display: block;
}

.navigation-header {
  padding: 15px 20px;
}

.hamburger-nav {
  float: right;
  border-radius: 100%;
  width: 25px;
  height: 25px;
}

.hamburger-nav .hamburger-line {
  background: #000;
}

.hamburger-nav .hamburger-line:first-child {
  top: 11px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger-nav .hamburger-line:last-child {
  bottom: 12px;
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger-nav .hamburger-line:nth-child(2) {
  top: 50%;
  left: 0;
  margin-top: -1px;
  display: none;
}

.header_nav {
  text-align: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@-webkit-keyframes rounded {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
  20% {
    opacity: 0;
    -webkit-transform: translateY(-50%) scale(2);
    transform: translateY(-50%) scale(2);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-50%) scale(2);
    transform: translateY(-50%) scale(2);
  }
}

@keyframes rounded {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
  20% {
    opacity: 0;
    -webkit-transform: translateY(-50%) scale(2);
    transform: translateY(-50%) scale(2);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-50%) scale(2);
    transform: translateY(-50%) scale(2);
  }
}

.iexmodal-popup {
  border: 10px solid #fcda30;
  border-radius: 0;
}

.head {
  padding: 15rem 0 5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.js-pform-show {
  cursor: pointer;
}

.head_subtitle {
  font-size: 2em;
}

.head_subtitle-xs {
  font-size: 1.75em;
}

.head_prec {
  margin-top: 2rem;
}

.head_prec__list {
  position: relative;
}

.head_prec__list li {
  margin-top: 1em;
  color: #fcda30;
  font-size: 1.2em;
  position: relative;
  padding-left: 50px;
}

.head_prec__list li::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  background-image: url(https://sm-remont.ru/images/sm-remont/b-ico.png);
  background-position: -119px -842px;
  width: 32px;
  height: 31px;
}

.head_form {
  background: rgba(255, 255, 255, 0.75);
  color: #000;
  border: 5px solid #446efe;
}

.head_form .head_form__up {
  padding: 10px 20px;
}

.head_form .head_form__down {
  width: 100%;
  padding: 10px 40px 20px;
}

.head_form .head_form__down .head_form__item {
  width: 100%;
}

.head_form .head_form__down .head_form__item .btn {
  font-size: 1.3em;
  padding: 15px 0;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
}

.head_form .head_form__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.head_form .head_form__list .head_form__swipe {
  width: 50%;
}

.head_form .head_form__list .head_form__swipe .head_swipe {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.head_form .head_form__list .head_form__swipe .head_swipe .inp_range {
  outline: 0;
  display: inline-block;
  width: 60%;
  margin-left: 5%;
  height: 4px;
  border: 0;
  padding: 0;
  background: #3150ff;
  -webkit-appearance: none;
}

.head_form .head_form__list .head_form__swipe .head_swipe .inp_range::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: #3150ff;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  cursor: pointe;
}

.head_form .head_form__list .head_form__swipe .head_swipe .inp_range::-moz-range-track {
  -moz-appearance: none;
  background: 0 0;
}

.head_form .head_form__list .head_form__swipe .head_swipe .inp_range::-moz-range-thumb {
  -moz-appearance: none;
  background-color: #002357;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  cursor: pointer;
}

.head_form .head_form__list .head_form__swipe .head_swipe .inp_range::-ms-fill-lower {
  background: #000;
}

.head_form .head_form__list .head_form__swipe .head_swipe .inp_range::-ms-thumb {
  background-color: #fe3131;
  border: none;
  width: 17px;
  height: 17px;
  border-radius: 30px;
  cursor: pointer;
}

.head_form .head_form__list .head_form__swipe .head_form__title {
  margin-bottom: 0.7em;
}

.head_form__title {
  margin-bottom: 0.7em;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.head_form__header {
  padding: 20px 0;
  color: #fff;
  background: #446efe;
}

.head_form .head_form__list .head_form__swipe .head_form__count {
  line-height: 1;
  width: 30%;
  background: 0 0;
  border: 0;
  font-size: 1.2em;
  font-weight: 700;
  color: #3150ff;
  border: 1px solid #3150ff;
  padding: 5px;
}

.head_form .head_form__list .head_form__title {
  font-size: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
}

.head_form .head_form__list .head_form__box {
  width: 50%;
  margin-bottom: 20px;
}

.head_form .head_form__list .head_form__box:first-child {
  width: 100%;
}

.head_form__optlabel {
  font-size: 20px;
  padding: 0 0 0 30px;
  position: relative;
  color: #000;
  cursor: pointer;
}

.head_form__optlabel input:checked + .head_form__radio::before {
  opacity: 1;
}

.head_form__optlabel input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.head_form__optlabel .head_form__radio {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #f8f8f8;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

.head_form__optlabel .head_form__radio::before {
  position: absolute;
  content: "";
  border-radius: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #3150ff;
  width: 70%;
  height: 70%;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.prec {
  padding: 5vh 0;
}

.prec_item {
  margin-top: 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.prec_item .prec_item__pic {
  width: 40%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.prec_item .prec_item__box {
  width: 60%;
  padding-left: 15px;
}

.prec_item .prec_item__title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4em;
  margin-bottom: 20px;
}

/*
 * Calc section style's
 */
.calc {
  padding: 3rem 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.b-calc__final-head {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 20px;
}

.b-calc__final-text {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.b-calc-step {
  text-align: left;
  margin-bottom: 3rem;
}

.b-calc__step {
  font-size: 20px;
  color: #3150ff;
}

.b-calc__line {
  background: #fff;
  width: 100%;
  height: 10px;
  position: relative;
  margin: 0.5rem 0;
}

.b-calc__line i {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: #3150ff;
}

.b-calc__line_1 i {
  width: 15%;
}

.b-calc__line_2 i {
  width: 35%;
}

.b-calc__line_3 i {
  width: 50%;
}

.b-calc__line_4 i {
  width: 80%;
}

.b-calc__line_5 i {
  width: 100%;
}

.b-calc__left {
  color: #000;
  margin-top: 1rem;
  text-align: center;
}

.b-calc__left span {
  font-size: 1.4rem;
  display: block;
  color: #3150ff;
}

.b-calc__subtitle {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
}

.b-pform__optlabel {
  font-size: 18px;
  color: #000;
  padding: 20px 10px;
  text-align: center;
  font-family: Proxima;
  cursor: pointer;
  -webkit-transition: all 0.75s;
  -o-transition: all 0.75s;
  -webkit-transition: all 0.75s;
  -o-transition: all 0.75s;
  -webkit-transition: all 0.75s;
  -o-transition: all 0.75s;
  transition: all 0.75s;
}

.b-pform__optlabel:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.b-pform__optlabel:hover .b-radio__custom {
  background: #fbb600;
}

.b-pform__optlabel input[type="checkbox"],
.b-pform__optlabel input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.b-pform__optlabel .b-radio__custom {
  margin: 0 10px 0 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  top: 0;
  bottom: 0;
  border-radius: 10px;
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-box-shadow: 0 0.375rem 0.675rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.375rem 0.675rem rgba(0, 0, 0, 0.2);
}

.b-optlabel__pic {
  z-index: 3;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 145px;
}

.b-optlabel__pic img {
  width: 50%;
}

.b-pform__optlabel span {
  z-index: 2;
  position: relative;
}

.b-calc__check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.b-calc__check .row {
  width: 100%;
}

.b-calc__check .b-pform__optlabel {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn_calc {
  font-size: 24px;
  margin-top: 2rem;
  margin-left: 10px;
}

.b-pform__optlabel input:checked + .b-radio__custom {
  background: #fbb600;
}

.b-calc__present {
  position: relative;
}

.b-calc__present .b-calc__present_item {
  position: relative;
  font-size: 1.2rem;
  font-weight: 700;
  padding-left: 75px;
  margin-bottom: 10px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.b-calc__present .b-calc__present_item::before {
  position: absolute;
  content: "";
  height: 60px;
  width: 60px;
  top: 0;
  left: 0;
  background-image: url(/tools/sm-rem/css/../img/icon/gift.png);
  background-size: cover;
}

.calc_form {
  margin-top: 3rem;
}

.b-calc__las {
  background: #fff;
  -webkit-box-shadow: 0 0.374rem 0.675rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.374rem 0.675rem rgba(0, 0, 0, 0.2);
  padding: 30px;
}

.b-calc__las .b-form__final_title {
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 2rem;
}

.b-calc__las .b-form__item {
  width: 100%;
  margin-bottom: 0.5rem;
}

.b-calc__las .b-form__item input {
  width: 100%;
  background: 0 0;
  padding: 10px;
}

.b-calc__las .b-form__item .btn {
  width: 100%;
}

.works {
  padding: 3rem 0 0 0;
  background: #f8f8f8;
}

.works_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  width: 100%;
}

.works_nav::after {
  position: absolute;
  content: "";
  width: 100vw;
  left: -18%;
  bottom: 0;
  display: none;
  height: 1px;
  background: #d2d2d2;
}

.works_nav .works_nav__item {
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 5px 20px;
  background: 0 0;
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.works_nav .works_nav__item:hover {
  background: #446efe;
  color: #fff;
}

.works_nav .works_nav__item.active {
  background: #3150ff;
  color: #fff;
}

.works_nav .works_nav__item.active::after {
  position: absolute;
  border: 12px solid transparent;
  border-top: 10px solid #3150ff;
  top: 95%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  content: "";
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
}

.works_nav .works_nav__item a {
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.works_nav .works_nav__item a:hover {
  text-decoration: none;
}

.works_nav .works_nav__item a:hover::after {
  display: none;
}

.b-gallery__item {
  padding: 2rem 15px;
}

.b-gallery__item .btn {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

.b-gallery__item_grey {
  background: #d2d5d7;
}

.b-gallery-descr__title {
  font-size: 16px;
  color: #999;
  padding: 0 8px;
  line-height: 21px;
}

.b-gallery__item_grey .b-gallery-descr__title {
  color: #fff;
}

.b-gallery__item_grey .b-gallery-descr__value {
  background: #fff;
}

.b-gallery-descr__value {
  font-size: 22px;
  font-weight: 700;
  background: #d2d2d2;
  padding: 12px 15px;
  margin: 0 0 12px;
  line-height: 26px;
}

.b-gallery-descr__value span {
  font-size: 18px;
}

.js-colorbox:hover {
  border: 0;
}

.js-colorbox::after {
  display: none;
}

.works_mnav {
  width: 100%;
  position: relative;
  padding: 0 15px;
}

.works_mnav.show .works_mnav__list {
  display: block;
}

.works_mnav .works_mnav__list {
  position: absolute;
  display: none;
  top: 60px;
  background: #fff;
  z-index: 10;
  background: #fff;
  border: 1px solid #000;
  padding: 20px;
  width: 90%;
  border-radius: 10px;
}

.works_mnav .works_mnav__list li {
  margin: 10px 0;
  font-weight: 700;
}

.works_mnav .btn-drop {
  padding: 10px 10px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  display: inline-block;
  position: relative;
}

.works_mnav .btn-drop:first-child {
  width: 70%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.works_mnav .btn-drop:nth-child(2) {
  width: 28%;
  text-align: right;
  left: -10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

section#works .works_list [class^="col"] {
  padding: 0 3px;
}

.b-gallery__other .row,
.b-gallery__other div:last-child {
  margin: 0;
}

.b-gallery__other div {
  margin: 0 0 41px;
}

.price_mnav {
  width: 100%;
  position: relative;
  padding: 0 15px;
  margin-bottom: 20px;
}

.price_mnav.show .price_mnav__list {
  display: block;
}

.price_left__mprice {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  margin: 1em 0;
  text-transform: uppercase;
}

.price_left__mprice .old {
  opacity: 0.6;
  margin-bottom: 0.2em;
  text-decoration: line-through;
}

.price_mnav .price_mnav__list {
  position: absolute;
  display: none;
  top: 60px;
  background: #fff;
  z-index: 10;
  background: #fff;
  border: 1px solid #000;
  padding: 20px;
  width: 90%;
  border-radius: 10px;
}

.price_mnav .price_mnav__list li {
  margin: 10px 0;
  font-weight: 700;
}

.price_mnav .btn-drop {
  padding: 10px 10px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  display: inline-block;
  position: relative;
}

.price_mnav .btn-drop:first-child {
  width: 70%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.price_mnav .btn-drop:nth-child(2) {
  width: 28%;
  text-align: right;
  left: -10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.price {
  padding: 3rem 0;
}

.price_nav {
  margin: 2em 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}

.price_nav::after {
  position: absolute;
  width: 100vw;
  height: 2px;
  content: "";
  left: -18%;
  top: 100%;
  background: #d2d2d2;
  display: none;
}

.price_nav .price_nav__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.price_nav .price_nav__item:hover {
  background: #3150ff;
  color: #fff;
}

.price_nav .price_nav__item.active {
  background: #3150ff;
  color: #fff;
}

.price_nav .price_nav__item.active::after {
  position: absolute;
  border: 12px solid transparent;
  border-top: 10px solid #3150ff;
  top: 95%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  content: "";
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
}

.thou {
  text-decoration: line-through;
}

.price_tabs__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  -webkit-box-shadow: 0 0 0.675em rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0.675em rgba(0, 0, 0, 0.2);
  display: none;
}

.price_tabs__item.active {
  display: block;
}

.price_left__title {
  margin-top: 20px;
  font-size: 16px;
  padding-top: 20px;
  position: relative;
}

.price_left__title::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 30px;
  content: "";
  background: #fbca30;
}

.price_left__present {
  margin: 1.5rem 0;
}

.price_left__present .price_present__title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.price_left__present .price_present__list li {
  margin-top: 10px;
  height: 50px;
  line-height: 50px;
  position: relative;
  font-size: 1.2rem;
  padding-left: 50px;
}

.price_left__present .price_present__list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 42px;
  width: 42px;
  background-image: url(/tools/sm-rem/css/../img/icon/gift.png);
}

.price_center__ul {
  position: relative;
}

.price_center__ul li {
  position: relative;
  padding-left: 50px;
  margin: 0.5rem 0;
  font-size: 0.8rem;
}

.price_center__ul li:first-child {
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
  font-weight: 700;
}

.price_center__ul li:first-child::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background-image: url(/tools/sm-rem/css/../img/icon/arrow_small.png);
  background-position: center;
  background-repeat: no-repeat;
}

.price_center__title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.3rem;
}

.price_center__price {
  margin: 3rem 0 0;
  position: relative;
}

.price_center__price .old {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: grey;
}

.price_center__price .new {
  margin-top: 0.2rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #3150ff;
  font-weight: 700;
}

.price_box {
  background: #f3f3c5;
  margin-bottom: 1rem;
  padding: 20px;
}

.price_box .price_box__title {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price_box .price_box__icon {
  margin: 0.5rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.price_box .price_box__icon li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.price_box .price_box__price {
  margin: 0.75rem 0 0;
}

.price_box .price_box__price .old {
  color: grey;
  font-size: 1.2rem;
  text-decoration: line-through;
}

.price_box .price_box__price .new {
  color: #3150ff;
  font-weight: 700;
  font-size: 1.7rem;
}

.price_mlist {
  margin: 1rem 0;
}

.price_mlist .mlist_title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mlist_ul li {
  font-size: 0.8rem;
  margin: 0.2rem 0;
}

.mlist_ul li.active {
  position: relative;
  left: 0;
  opacity: 1;
}

.mlist_ul li.hide {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.mlist_ul li.hidden {
  display: none;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1rem;
}

.mlist_ul li.more {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1rem;
}

.mlist_ul.active li.hide {
  position: relative;
  left: 0;
  opacity: 1;
}

.mlist_ul.active li.more {
  display: none;
}

.mlist_ul.active li.hidden {
  display: block;
}

.price_mbox {
  background: #f3f3c5;
  margin: 0.5rem 0;
  padding: 8px;
}

.price_mbox.active .mbox_title span {
  -webkit-transform: rotate(46deg);
  -ms-transform: rotate(46deg);
  transform: rotate(46deg);
}

.price_mbox.active .mbox_list {
  position: relative;
  left: 0;
  opacity: 1;
}

.price_mbox .mbox_title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0.5rem 0;
  position: relative;
}

.price_mbox .mbox_title span {
  font-size: 2em;
  position: absolute;
  right: 5px;
  top: -6px;
  line-height: 1;
}

.price_mbox .mbox_list {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.price_mbox .mbox_list.active {
  position: relative;
  left: 0;
  opacity: 1;
}

.mbox_list__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0.5rem 0;
}

.mbox_list__icon li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.mbox_list__list {
  margin: 1rem 0;
}

.mbox_list__list li {
  font-size: 0.9rem;
}

.mbox_price {
  position: relative;
}

.mbox_price .old {
  color: grey;
  text-decoration: line-through;
}

.mbox_price .new {
  color: #3150ff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.steps {
  padding: 3rem 0;
}

.steps .row:first-child {
  margin-bottom: 2em;
}

.steps_item:hover .steps_item__pic {
  -webkit-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  transform: translateY(-10%);
}

.steps_item .steps_item__pic {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  height: 180px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.steps_item .steps_item__title {
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 0.2em;
}

.video {
  padding: 3rem 0;
}

.video .row:first-child {
  margin-bottom: 2em;
}

.video_item__title {
  margin-top: 0.775em;
  font-size: 1.4rem;
  font-weight: 700;
}

.cbox_video {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.cbox_video img {
  width: 100%;
}

.cbox_video::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 56px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("/tools/sm-rem/css/../img/icon/ytplay.png");
}

.cbox_video .video_item__time {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 0.8em;
  background: rgba(0, 0, 0, 0.7);
  height: 1.3125rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cbox_video .video_item__time span {
  width: 0.5625rem;
  height: 0.5625rem;
  margin-top: -4px;
  opacity: 0.5;
  margin-right: 0.375rem;
}

.cbox_video .video_item__time span svg {
  width: 100%;
  height: 100%;
}

.cbox_video img {
  -webkit-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  -webkit-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  -webkit-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
  transition: all 0.75s ease;
}

.cbox_video:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(0.95);
  -ms-transform: translate(-50%, -50%) scale(0.95);
  transform: translate(-50%, -50%) scale(0.95);
}

.cbox_video:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.team {
  padding: 3rem 0 0 0;
  position: relative;
}

.team .slick-dotted.slick-slider {
  margin: 0;
}

.slick-dots {
  bottom: 10px;
}

.slick-dots li button:before {
  font-size: 12px;
}

.team_nav {
  width: 100%;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1rem;
}

.team_nav::after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 2px;
  background: #d2d2d2;
  left: -18%;
  display: none;
  top: 100%;
}

.team_nav .team_nav__item {
  padding: 10px 30px;
  color: #000;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.team_nav .team_nav__item.active {
  color: #fff;
  background: #3150ff;
}

.team_nav .team_nav__item.active::after {
  position: absolute;
  border: 12px solid transparent;
  border-top: 10px solid #3150ff;
  top: 95%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  content: "";
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
}

.team_nav .team_nav__item:hover {
  color: #fff;
  background: #3150ff;
}

.team_slider {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.team_slider .team_slider__left {
  width: 30%;
}

.team_slider .team_slider__right {
  padding-left: 5%;
  width: 70%;
  font-size: 1.2em;
}

.team_slider .team_slider__right .team_prize__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.team_slider .team_slider__right .team_prize__list .team_list__ico {
  text-align: center;
  font-weight: 700;
  width: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.team_slider .team_slider__right .team_prize__list .team_list__ico .team_ico__pic {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.team_slider .team_slider__right .team_prize__list .team_list__ico .team_ico__pic img {
  width: 100%;
}

.team_slider .team_slider__right .team_prize__list .team_list__ico .team_ico__name {
  font-size: 0.8rem;
  font-weight: 400;
}

.team_slider .team_slider__right div {
  margin: 0.675em 0;
}

.team_slider .team_slider__right b {
  text-transform: uppercase;
}

.team_slider .team_slider__right .team_name {
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: 700;
}

.team_slider .team_slider__right .team_subname {
  margin: 0.5em 0;
  font-size: 1.2em;
}

.team_list__item {
  opacity: 0;
  position: absolute;
}

.team_list__item.active {
  position: relative;
  opacity: 1;
}

.slick-next:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 8px;
  height: 13px;
  background-image: url("/tools/sm-rem/css/../img/btn-grey.svg");
  background-size: cover;
  background-position: center;
}

.slick-prev:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
  width: 8px;
  height: 13px;
  background-image: url("/tools/sm-rem/css/../img/btn-grey.svg");
  background-size: cover;
  background-position: center;
}

.slick-next {
  right: 10px;
  z-index: 10;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background: #fff !important;
  -webkit-box-shadow: 0 0 0.675rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0.675rem rgba(0, 0, 0, 0.2);
  opacity: 1;
  font-family: "Font Awesome 5 Free";
}

.slick-prev {
  left: 10px;
  z-index: 10;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background: #fff !important;
  -webkit-box-shadow: 0 0 0.675rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0.675rem rgba(0, 0, 0, 0.2);
  opacity: 1;
  font-family: "Font Awesome 5 Free";
}

.b-manager {
  font-family: "Proxima Nova";
  color: #000;
}

.b-manager .b-form__phone {
  width: 100%;
  padding: 10px;
  color: #000;
}

.b-manager .btn {
  width: 100%;
}

.b-manager .b-pform__optlabel {
  padding: 0;
}

.b-manager--title {
  font-weight: 700;
  color: #000;
  margin: 1rem 0;
  font-size: 24px;
}

.in-work {
  padding: 0 0 2px 0;
}

.in-work .col-12 {
  padding: 2px;
}

.in-prec {
  background: url("/tools/sm-rem/css/../img/remont-menu_2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 5vh 0;
}

.in-prec .heading-2 {
  font-size: 2rem;
}

.in-prec .tn-atom {
  font-size: 12px;
}

/* heading stles's */
.Heading-1 {
  font-size: 4em;
  text-transform: uppercase;
}

.Heading-1-xs {
  color: #fff;
  font-size: 2.5em;
  text-transform: uppercase;
}

.Heading-2 {
  font-size: 2.5em;
  text-transform: uppercase;
  color: #000;
}

.Heading-3 {
  font-size: 1.75em;
}

.Heading-4 {
  font-size: 1.5em;
}

.why {
  padding: 3rem 0;
  background-image: url("/tools/sm-rem/css/../img/tuel.jpg");
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.why_title {
  font-size: 24px;
  font-weight: 700;
  margin: 2rem 0;
  text-transform: uppercase;
}

.why_title.why_title-sm {
  text-align: right;
}

.why_box {
  padding: 30px 20px;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.why_box.why_box-inten {
  background: #fbdcdc;
}

.why_box.why_box-sm {
  background: #dbfbe4;
}

.why_box .why_box__title {
  font-size: 24px;
  font-weight: 700;
}

.why_box .why_box__txt {
  font-size: 18px;
}

.tn-element {
  background: #ffffff;
  -webkit-box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.2);
  padding: 40px 20px;
  border-radius: 10px;
  width: 100%;
}

.tn-element--key {
  background-size: cover;
  background-position: 0 0;
}

.tn-element--smeta {
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: 95% 20%;
}

.tn-element--man {
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: 95% 20%;
}

.tn-element--skidka {
  background-size: 200%;
  background-repeat: no-repeat;
}

.tn-element--type {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}

.tn-element--green {
  background: green;
  color: #fff;
}

.tn-element--yellow {
  background: #fbb600;
}

.tn-element--blue {
  color: #fff;
  background: #446efe;
}

.tn-element--title {
  margin: 10px 0;
  font-size: 24px;
  font-weight: bold;
}

.tn-element--text {
  font-size: 14px;
}

.clients_grid {
  margin-top: 2rem;
}

.clients_grid .clients_pic {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section.map {
  padding: 0;
  background: #fff;
}

.map__wrapper {
  position: relative;
}

.map__wrapper .map-contacts {
  background: #fff;
  padding: 10px;
  font-size: 18px;
  z-index: 1;
}

.map__wrapper .map-contacts .map__subtitle {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.map__wrapper .map-contacts td {
  padding: 0 10px 20px 0;
}

.footer {
  background: #161616;
  color: #fff;
  font-size: 15px;
  font-weight: 100;
  padding: 3vh 0;
}

.in-ad {
  background: url("https://static.tildacdn.com/tild3764-6132-4561-b638-646238653235/remont-menu_2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 5vh 0;
}

.in-ad .heading-2 {
  font-size: 2rem;
}

.in-ad .tn-atom {
  font-size: 12px;
}

/* spinner */
.spinner {
  position: fixed;
  left: 9999px;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 201;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
}

.spinner.activate {
  left: 0;
  opacity: 1;
}

.spinner--bg {
  background: rgba(0, 0, 0, 0.65);
  z-index: 202;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.spinner--wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.spinner--circle {
  width: 600px;
  height: 600px;
  z-index: 205;
  position: relative;
}

.spinner--circle__inner {
  width: 100%;
  height: 100%;
  background-image: url("/tools/sm-rem/css/../img/spin-in.png");
  background-size: cover;
  -webkit-transition: all 6s ease-out;
  -o-transition: all 6s ease-out;
  transition: all 6s ease-out;
  background-size: 79%;
  background-repeat: no-repeat;
  background-position: center;
}

.spinner--circle__border {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 206;
  width: 100%;
  height: 100%;
  background-image: url("/tools/sm-rem/css/../img/spin-out.png");
  background-size: cover;
}

.spinner--circle__desc {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 210;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.spinner--circle__desc.none {
  opacity: 0;
}

.spinner--circle-btn {
  background: #fbb600;
  cursor: pointer;
  padding: 8px 30px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}

.spinner--circle-close {
  font-style: italic;
  font-size: 12px;
  cursor: pointer;
}

.spinner--phone {
  position: absolute;
  max-width: 420px;
  width: 100%;
  background: #fff;
  color: #000;
  border-radius: 4px;
  border: 10px solid #fbb600;
  text-align: center;
  z-index: 207;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  left: -9999px;
}

.spinner--phone.active {
  opacity: 1;
  left: auto;
}

.spinner--phone__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
}

.spinner--phone__inner .spinner--item {
  width: 100%;
  margin: 10px 0;
}

.spinner--phone__inner .spinner--item .spinner--input {
  width: 100%;
  padding: 10px;
  background: none;
  border: 0;
  border-bottom: 1px solid #000;
  font-size: 18px;
}

.spinner--phone__inner .spinner--phone-title {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.spinner--phone__inner .spinner--phone-btn {
  padding: 10px 20px;
  cursor: pointer;
  color: #000;
  border-radius: 10px;
  font-weight: bold;
  text-transform: uppercase;
  background: #fbb600;
}

.spinner--final {
  opacity: 0;
  left: -9999px;
  position: absolute;
  z-index: 207;
  max-width: 420px;
  width: 100%;
  background: #fff;
  color: #000;
  border-radius: 4px;
  border: 10px solid #fbb600;
  text-align: center;
  -webkit-transition: opacity 0.5s ease-in;
  -o-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
  -webkit-box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.5);
  box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.5);
}

.spinner--final.active {
  opacity: 1;
  left: auto;
}

.spinner--final .spinner--final--inner {
  padding: 20px;
}

.spinner--final .spinner--final-title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.spinner--final .spinner--final-prize {
  font-size: 18px;
  font-weight: bold;
  margin: 20px;
}

.spinner--final .spinner--count {
  font-size: 14px;
}

.spinner--final .spinner--grid {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.spinner--final .spinner--grid .spinner--cell {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 15px;
}

.spinner--final .spinner--grid .spinner--repeat,
.spinner--final .spinner--grid .spinner--submit {
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  -webkit-box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.35);
  box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.35);
}

.spinner--final .spinner--grid .spinner--submit {
  background: #fbb600;
}

.spinner--final .spinner--grid .spinner--repeat {
  background: #ff0000;
}

/* Slider new */
.service_nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 2em;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.service_nav::after {
  position: absolute;
  content: "";
  width: 100vw;
  left: -18%;
  bottom: 0;
  display: none;
  height: 1px;
  background: #d2d2d2;
}

.service_nav .service_nav__item {
  text-align: center;
  padding: 5px 20px;
  background: 0 0;
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.service_nav .service_nav__item:hover {
  background: #446efe;
  color: #fff;
}

.service_nav .service_nav__item.active {
  background: #3150ff;
  color: #fff;
  font-weight: bold;
}

.service_nav .service_nav__item.active::after {
  position: absolute;
  border: 12px solid transparent;
  border-top: 10px solid #3150ff;
  top: 95%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  content: "";
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
}

.service_nav .service_nav__item a {
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service_nav .service_nav__item a:hover {
  text-decoration: none;
}

.service_nav .service_nav__item a:hover::after {
  display: none;
}

.service-slider-wrapper {
  position: relative;
}

.new-slide {
  display: block;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: -99999px;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  margin-top: 30px;
}

.new-slide.active {
  opacity: 1;
  left: 0;
  position: relative;
}

.service_slider .image {
  text-align: center;
  width: 705px;
  height: 423px;
  position: relative;
  z-index: 0;
}

@media (max-width: 1199px) {
  .service_slider .image {
    width: 490px;
  }
}

@media (max-width: 991px) {
  .service_slider .image {
    width: 100%;
    margin-top: 0;
  }
  .service_nav {
    overflow-x: scroll;
  }
}

@media (max-width: 549px) {
  .service_slider .image {
    height: 300px;
  }
}

@media (max-width: 399px) {
  .service_slider .image {
    height: 200px;
  }
}

.service_slider .image img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
}

.swiper .container {
  min-width: 1185px;
}

.service_slider .points {
  position: absolute;
  width: 100%;
  height: 423px;
  bottom: 0;
  z-index: 10;
}

@media (max-width: 1199px) {
  .service_slider .points {
    height: 294px;
  }
}

@media (max-width: 991px) {
  .service_slider .points {
    height: 423px;
  }
}

@media (max-width: 770px) {
  .service_slider .points {
    height: 100%;
  }
}

@media (max-width: 550px) {
  .service_slider .points {
    height: 174px;
  }
}

.service_slider .point {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #fbb600;
  border-radius: 50%;
  cursor: pointer;
}

.service_slider .point:hover .point--text {
  opacity: 1;
  left: -12px;
}

.service_slider .point:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 50%;
  margin: auto;
  width: 25px;
  height: 25px;
  border: 2px solid #fbb600;
  background: none;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-animation: 2s ease-in-out 0s infinite normal none running roundedslice;
  animation: 2s ease-in-out 0s infinite normal none running roundedslice;
}

.point--text {
  opacity: 0;
  -webkit-box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.3);
  box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 102;
  position: absolute;
  background: #fff;
  padding: 10px;
  top: 200%;
  left: -99999px;
  width: 200px;
  border-radius: 10px;
  text-align: left;
  font-size: 14px;
}

.point--text::after {
  position: absolute;
  top: -20px;
  left: 10px;
  content: "";
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

@-webkit-keyframes roundedslice {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-50%) scale(2);
    transform: translateX(-50%) scale(2);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-50%) scale(3);
    transform: translateX(-50%) scale(3);
  }
}

@keyframes roundedslice {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-50%) scale(2);
    transform: translateX(-50%) scale(2);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-50%) scale(3);
    transform: translateX(-50%) scale(3);
  }
}

.box--shadow {
  -webkit-box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.35);
  box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  padding: 50px 20px;
}

.bgi--girl {
  background-image: url(https://static.tildacdn.com/tild3139-3162-4731-a239-313335396163/rem-avtorsky_1.jpg);
  background-position: 100% center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.bs--title {
  font-size: 24px;
  font-weight: bold;
}

.bs--big {
  font-size: 52px;
  font-weight: 900;
}

.text--12 {
  font-size: 12px;
}

@media (max-width: 550px) {
  .bgi--girl {
    background-size: 80%;
    background-position: 90px 100%;
  }
  .box--shadow.bgi--girl {
    text-align: left;
  }
  .box--shadow {
    padding: 20px;
    text-align: center;
  }
  .bs--title {
    font-size: 18px;
  }
}

.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #272727;
}

.menu.-active {
  position: fixed;
  right: 0;
}

.menu-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.menu-close .close {
  background: #ffffff;
  padding: 10px;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.menu-close .btn-white {
  background: #fff;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-right: 20px;
  border-radius: 50px;
}

.menu-sales,
.menu-nav,
.menu-contacts {
  height: 100%;
  width: 33.33%;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.menu-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20% 0 0 15%;
}

.nuxt-link {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nuxt-link::after {
  display: none;
}

.nuxt-link:hover {
  color: #fff;
  opacity: 0.5;
  text-decoration: none;
}

.ico-link {
  cursor: pointer;
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.ico-link .label {
  text-transform: uppercase;
  margin-left: 20px;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}

.menu-contacts-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20% 0 30px 15%;
  height: 100%;
}

.menu-contacts-item {
  margin-bottom: 20px;
}

.menu-contacts-item div:first-child {
  font-size: 18px;
  color: #fff;
  opacity: 0.7;
}

.menu-contacts-item div,
.menu-contacts-item a {
  display: block;
  color: #fff;
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

.menu-contacts-item div::after,
.menu-contacts-item a::after {
  display: none;
}

.menu-contacts-item a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.menu-policy div {
  color: #fff;
}

.menu-policy a {
  color: #fff;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-policy a::after {
  display: none;
}

.menu-policy a:hover {
  opacity: 1;
  text-decoration: none;
}

.menu-sales {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sales-list {
  width: 100%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100%;
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sales-list::-webkit-scrollbar {
  display: none;
  width: 0 !important;
}

.menu-list-item {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 20px 30px 0;
  background: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.menu-list-item::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
  z-index: 0;
  content: "";
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-list-item img {
  max-width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-list-item .pic {
  width: 50%;
  z-index: 2;
}

.menu-list-item .info {
  width: 50%;
  height: 50%;
  z-index: 2;
}

.menu-list-item .tag {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.menu-list-item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.box--inner {
  padding: 170px 50px;
  position: relative;
  overflow: hidden;
}

.box--inner::before {
  -webkit-transform: skew(-20deg, 0);
  -ms-transform: skew(-20deg, 0);
  transform: skew(-20deg, 0);
  position: absolute;
  content: "";
  bottom: 0;
  height: 450px;
  width: 115px;
  right: -85px;
  background: #fff;
}

.box--inner::after {
  -webkit-transform: skew(20deg, 0);
  -ms-transform: skew(20deg, 0);
  transform: skew(20deg, 0);
  position: absolute;
  content: "";
  top: 0;
  height: 450px;
  width: 115px;
  right: -85px;
  background: #fff;
}

.box--frame {
  background: #fcda30;
  display: inline-block;
  padding: 10px;
}

.box--title {
  color: white;
  font-size: 2rem;
  margin: 1rem 0;
}

.box--pics {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.box--img {
  padding: 15px;
}

.box--blue {
  background: #fff;
  height: 100%;
  padding: 50px;
  color: #000;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.box--blue .box--sm {
  font-size: 14px;
  opacity: 0.8;
}

.box--blue .link {
  font-size: 22px;
  font-weight: bold;
}

.box--blue::after {
  position: absolute;
  content: "Акция";
  font-weight: bold;
  background: #ff0000;
  padding: 15px 0;
  color: #fff;
  width: 200px;
  text-align: center;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 20px;
  right: -60px;
}

.mform__title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 10px;
}

@media (max-width: 991.98px) {
  .menu-sales,
  .menu-nav,
  .menu-contacts {
    width: 50%;
  }
  .menu-contacts {
    display: none;
  }
  .menu-links {
    padding: 30% 0 0 15%;
  }
  .menu-list-item .tag {
    font-size: 18px;
  }
  .menu-list-item .par {
    font-size: 14px;
  }
}

@media (max-width: 576.98px) {
  .mform__title {
    font-size: 16px;
  }
  .menu-sales,
  .menu-nav,
  .menu-contacts {
    width: 100%;
  }
  .menu-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .menu-sales {
    display: none;
  }
  .menu-nav {
    height: 80%;
  }
  .menu-links {
    padding: 40% 0 0 0;
    text-align: center;
  }
  .menu-list-item {
    height: 20vh;
  }
  .menu-sales,
  .menu-nav,
  .menu-contacts {
    border: 0;
  }
}

.articles-head {
  color: #000;
  padding: 14rem 0 5rem;
}

.articles-head .Heading-1-xs {
  color: #000;
}

.breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.breadcrumbs-item {
  position: relative;
  padding-right: 30px;
}

.breadcrumbs-item::before {
  right: 10px;
  position: absolute;
  content: "/";
  font-size: 16px;
  color: #000;
}

.breadcrumbs-item:last-child::before {
  display: none;
}

.breadcrumbs-link {
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
}

.breadcrumbs-link:hover {
  color: #000;
  opacity: 0.5;
  border-bottom: 0px solid #000;
  text-decoration: none;
}

.head-subtitle-xs {
  font-size: 18px;
  margin-top: 15px;
}

.s-articles {
  padding: 3rem 0;
}

.article-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dfdfdf;
}

.article-item-pic {
  display: block;
  height: 300px;
  width: 100%;
  border: 1px solid transparent;
}

.article-item-pic:hover {
  border: 1px solid transparent;
  opacity: 1;
}

.article-item-pic-wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.article-item-info {
  height: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 15px 30px 0;
}

.article-item-title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  border: 1px solid transparent;
  display: inline-block;
  position: relative;
  width: 100%;
  display: inline;
}

.article-item-title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  background: #000;
}

.article-item-title:hover {
  border: 1px solid transparent;
}

.article-item-title:hover::before {
  width: 100%;
}

.article-item-date {
  font-size: 10px;
  background: #333;
  display: inline-block;
  padding: 3px 8px;
  color: #fff;
  border-radius: 10px;
}

.article-item-previewText {
  font-size: 18px;
}

.article-item-open {
  font-size: 18px;
  color: #0004d4;
  width: auto;
}

.article-item-open:hover {
  color: #0004d4;
  border-color: #0004d4;
}

.p-articles {
  padding: 10rem 0 3rem;
}

.p-articles img {
  max-width: 100%;
  height: auto;
}

.p-articles .breadcrumbs-link {
  color: #000;
}

.p-articles h1 {
  color: #000;
}

.article-heading {
  font-size: 30px;
  font-weight: bold;
  margin-top: 40px;
}

.article-paragraph {
  font-size: 18px;
  line-height: 1.45;
}

.head-subtitle-article {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.list {
  position: relative;
  padding-left: 30px;
}

.list li {
  padding-bottom: 15px;
  font-size: 18px;
}

ul.list > li::before {
  content: "—";
}

ul.list > li:before,
ol.list > li:before {
  display: inline-block;
  position: absolute;
  left: 0;
}

.article-banner {
  position: -webkit-sticky;
  position: sticky;
  top: 75px;
}

.article-banner .head_form {
  border: 2px solid #9e9e9e;
  -webkit-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.article-banner .head_form .head_form__stitle {
  font-size: 20px;
  font-weight: bold;
  padding: 20px 15px 5px;
}

.article-banner .head_form .head_form__text {
  font-size: 18px;
  padding: 0 15px 10px;
}

.article-banner .head_form .head_form__list .head_form__swipe .head_swipe {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.article-banner .head_form .head_form__list .head_form__swipe .head_swipe .inp_range {
  background: #7e87bd;
}

.article-banner .head_form .head_form__list .head_form__swipe .head_swipe .inp_range::-webkit-slider-thumb {
  background-color: #b7bbd3 !important;
}

.article-banner .head_form .head_form__list .head_form__swipe .head_swipe .inp_range::-moz-range-thumb {
  background-color: #aeb4d4 !important;
}

.article-banner .head_form .head_form__list .head_form__swipe .head_swipe .inp_range::-ms-fill-lower {
  background: #000;
}

.article-banner .head_form .head_form__list .head_form__swipe .head_swipe .inp_range::-ms-thumb {
  background-color: #fe3131;
}

.article-banner .head_form__header {
  padding: 20px 0 10px;
  margin-bottom: 0;
}

.article-banner .head_form .head_form__list .head_form__swipe .head_form__count {
  font-size: 14px;
  border-color: #f0f0f0;
  border-radius: 4px;
  color: #333;
}

.article-banner .head_form .head_form__list .head_form__swipe .head_form__title {
  margin-bottom: 5px;
  color: #333;
}

.article-banner .head_form__header {
  background: transparent;
  color: #000;
  font-size: 24px;
}

.article-banner .head_form .head_form__list .head_form__title {
  margin-bottom: 0;
  font-size: 16px;
  text-transform: none;
}

.article-banner .head_form__optlabel {
  font-size: 14px;
}

.article-banner .head_form__optlabel .head_form__radio {
  background: #f0f0f0;
}

.article-banner .head_form .head_form__list .head_form__box {
  margin-bottom: 5px;
}

.article-banner .head_form .head_form__list .head_form__swipe {
  width: 100%;
  margin-bottom: 10px;
}

.article-banner .head_form_prec_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.article-banner .head_form_prec_item svg {
  max-width: 35px;
  height: auto;
  fill: #3150ff;
}

.article-banner .head_form_prec_text {
  font-size: 17px;
  padding-left: 8px;
}

.article-banner-title {
  font-size: 18px;
  font-weight: bold;
}

.article-banner-text {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

.b-pform__input,
.b-pform__options {
  padding: 0 30px 0 9px;
  border-radius: 3px;
  background: #fbfbfb;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
}

.b-pform__input {
  padding: 15px 10px;
  width: 100%;
}

.b-pform__optlabel_policy {
  font-size: 12px;
  color: #333;
}

.hamburger-close {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 30px;
  height: 30px;
}

.hamburger-close span {
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
}

.hamburger-close span:first-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger-close span:last-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger-open {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 10px 0;
}

.hamburger-open span {
  background: #000;
  width: 100%;
  height: 1px;
  position: absolute;
}

.hamburger-open span:first-child {
  top: 0;
}

.hamburger-open span:first-child {
  margin-top: -1px;
  top: 50%;
}

.hamburger-open span:last-child {
  bottom: 0;
}

@media (max-width: 770px) {
  .service_slider .points {
    height: 100%;
  }
  .smenu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 101;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    display: none;
  }
  .smenu.active {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
  }
  .smenu-link-top {
    justify-content: flex-start;
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
  }
  .smenu-item {
    position: relative;
    width: 100%;
    padding: 0 10%;
  }
  .smenu-sublist a {
    padding: 5px 0;
  }
  .smenu-sublist {
    display: block;
    position: relative;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }
}

@media (max-width: 1200.98px) {
  .Heading-1 {
    font-size: 2.5rem;
  }
  .head_box .head_subtitle {
    font-size: 2rem;
  }
  .head_prec__list li {
    font-size: 1rem;
  }
  .head_form__optlabel {
    font-size: 14px;
  }
  .prec_item .prec_item__title {
    font-size: 1.2rem;
  }
  .works_list__item .works_item__heading {
    font-size: 1.4rem;
  }
  .why_box .why_box__txt {
    font-size: 1rem;
  }
  .price_box .price_box__title {
    font-size: 1.2rem;
  }
  .price_box .price_box__price .new {
    font-size: 1.1rem;
  }
  .price_center__price .new {
    font-size: 1.1rem;
  }
  .price_box .price_box__price .old,
  .price_center__price .old {
    font-size: 0.9rem;
  }
  .b-gallery__other {
    margin-top: 20px;
  }
}

@media (max-width: 991.98px) {
  .head_form {
    margin-top: 2rem;
  }
  .head {
    padding: 30vh 0 10vh 0;
  }
  .prec_item .prec_item__title,
  .b-calc__present .b-calc__present_item {
    font-size: 1rem;
  }
  .b-pform__optlabel {
    font-size: 16px;
  }
  .prec_title__txt {
    font-size: 0.8rem;
  }
  .Heading-2 {
    font-size: 2rem;
  }
  .why_box .why_box__title {
    font-size: 18px;
  }
  .team_slider .team_slider__right .team_subname {
    font-size: 1rem;
  }
  .team_slider .team_slider__right .team_name {
    font-size: 1.5rem;
  }
  .team_slider__right div {
    font-size: 0.9rem;
  }
  .team_slider .team_slider__right .team_prize__list .team_list__ico {
    width: 20%;
  }
  .team_slider .team_slider__right .team_prize__list .team_list__ico .team_ico__name {
    font-size: 0.7rem;
  }
  .team_slider .team_slider__right .team_prize__list .team_list__ico .team_ico__pic {
    width: 50%;
  }
  .header .b-message {
    left: 30%;
    top: 0;
    width: 82px;
    height: 100px;
    right: -82px;
    background-size: cover;
  }
  .header .b-message .b-message__face {
    width: 57px;
    top: 30px;
    height: 55px;
    background-size: 118px;
    background-position: -65px 0;
  }
  .header .b-message .b-message__num {
    left: 55px;
    top: 67px;
  }
  .price_left__pic {
    height: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
  }
  .works_list .btn:last-child {
    margin-bottom: 20px;
  }
  .articles-head .Heading-1-xs,
  .Heading-1 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .b-manager--photo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .b-manager .btn {
    margin: 1rem 0;
  }
  .b-manager .b-pform__optlabel {
    font-size: 10px;
  }
  .clients_pic {
    margin-top: 20px;
  }
  .head {
    padding: 20vh 0;
  }
  .prec_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .prec_title__txt {
    display: none;
  }
  .prec_item .prec_item__pic {
    width: 100%;
    height: 220px;
  }
  .prec_item .prec_item__box {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
  .team_slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .team_slider .team_slider__left {
    width: 100%;
  }
  .why_title {
    text-align: center;
  }
  .why_title.why_title-sm {
    text-align: center;
  }
  .team {
    display: none;
  }
  .map__wrapper .map-contacts {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
  .b-gallery-descr__value {
    font-size: 16px;
  }
  .b-gallery-descr__value span {
    font-size: 14px;
  }
  .video_item__title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .Heading-2,
  .Heading-3 {
    font-size: 24px;
  }
  .article-item-title {
    font-size: 18px;
  }
  .article-item-info {
    margin-top: 10px;
  }
  .article-item-previewText {
    font-size: 16px;
  }
  .header {
    position: static;
  }
  .p-articles {
    padding: 3rem 0;
  }
  .breadcrumbs-item {
    padding-right: 20px;
  }
  .breadcrumbs-link {
    font-size: 11px;
  }
  .breadcrumbs-item::before {
    font-size: 12px;
    top: 3px;
  }
  .article-heading {
    font-size: 22px;
  }
  .article-paragraph {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .head_form .head_form__list .head_form__swipe .head_swipe .inp_range {
    display: none;
  }
  .smeta-pop {
    display: none !important;
  }
  .header .header_nav .header_numbers__tel .header_link {
    font-size: 15px;
  }
  .in-prec .heading-2 {
    font-size: 1.2rem;
  }
  .in-prec-subtitle {
    font-size: 0.8rem;
  }
  .map__wrapper .map-contacts .map__subtitle {
    font-size: 16px;
  }
  .map__wrapper .map-contacts td {
    font-size: 13px;
  }
  .footer_txt {
    font-size: 10px;
  }
  .b-calc__check .b-pform__optlabel {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }
  .b-gallery-descr__value {
    font-size: 14px;
  }
  .b-calc-step {
    margin-bottom: 1rem;
  }
  h2 {
    font-size: 1rem;
  }
  .b-optlabel__pic {
    display: none;
  }
  .header .b-message {
    left: 10%;
  }
  .head_prec__list li {
    margin-top: 1rem;
    font-size: 0.8rem;
  }
  .head_form .head_form__list .head_form__swipe .head_form__title,
  .head_form .head_form__list .head_form__title {
    font-size: 1rem;
  }
  .head_form .head_form__list .head_form__swipe {
    margin-top: 10px;
  }
  .head_form .head_form__down {
    margin-top: 10px;
  }
  .head_form .head_form__list .head_form__box {
    margin-bottom: 6px;
  }
  .why_title {
    font-size: 18px;
  }
  .why_box .why_box__txt {
    font-size: 14px;
  }
  .team_slider .team_slider__right {
    font-size: 1rem;
  }
  .Heading-2 {
    font-size: 1.5rem;
  }
  .steps_item .steps_item__title {
    font-size: 1em;
  }
  .steps_item__txt {
    font-size: 0.8rem;
  }
  .works_list__item .works_item__heading,
  .works_item .works_item__value {
    font-size: 1rem;
  }
  .works_nav .works_nav__item a {
    font-size: 0.7rem;
  }
  .prec_item .prec_item__title {
    font-size: 0.8rem;
  }
  .Heading-1 {
    font-size: 2rem;
  }
  .head_form .head_form__down .head_form__item .btn,
  .header .header_nav .header_numbers__tel a {
    font-size: 1rem;
  }
  .header_numbers__pop {
    font-size: 0.7rem;
  }
  .head {
    padding: 20vh 0;
  }
  .works_nav {
    overflow-x: scroll;
  }
  .video {
    padding: 10vh 0 10vh 0;
  }
  .head_form .head_form__list .head_form__box,
  .head_form .head_form__list .head_form__swipe {
    width: 100%;
  }
  .team_nav .team_nav__item {
    width: 50%;
  }
  .head_form .head_form__list .head_form__box,
  .head_form .head_form__list .head_form__swipe {
    width: 100%;
  }
  .head_form .head_form__list .head_form__box,
  .head_form .head_form__list .head_form__swipe {
    width: 50%;
  }
  .head_form .head_form__list .head_form__swipe .head_form__count {
    width: 90%;
  }
  .tn-element--title {
    font-size: 16px;
  }
  .tn-element--text {
    font-size: 12px;
  }
  .prec_item__pic,
  .steps_item__pic {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 82px;
  }
  .prec_item .prec_item__pic {
    height: 85px;
  }
  .steps_item .steps_item__pic {
    height: 100px;
  }
  .prec_item .prec_item__box {
    padding-left: 0;
  }
  .steps_item__pic img {
    width: 30%;
  }
  .prec_item__pic img {
    width: 50%;
  }
  .article-item-info {
    padding: 0;
  }
}

.btn-xl {
  font-size: 1.3em;
  padding: 15px 30px;
  text-transform: uppercase;
  font-weight: 700;
}

.head-new {
  padding: 12rem 0 4rem;
  background-image: url("/tools/sm-rem/img/head-new-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.head-new-hb {
  background-image: url("/tools/sm-rem/img/head-new-hb.jpg");
  padding: 12rem 0 4rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.heading-1-new {
  font-size: 51px;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.head-subtitle-new {
  font-size: 37px;
  text-transform: uppercase;
  margin-bottom: 72px;
  /* margin-bottom: 34px; */
}

.heading-new-span {
  position: relative;
  z-index: 3;
}

.heading-box-yellow {
  position: relative;
}

.heading-box-yellow::before {
  position: absolute;
  content: "";
  width: 120%;
  height: 105%;
  top: -2.5%;
  right: 0;
  left: -13%;
  bottom: 0;
  background: #fcda30;
  opacity: 0.5;
}

.heading-box-gold {
  background-color: rgba(254, 203, 0, 0.5);
  padding: 12px 25px;
  font-size: 37px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 27px;
  margin-bottom: 73px;
  display: inline-block;
}

.head-date-discount {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 33px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.head-date-discount-icon {
  margin-right: 10px;
}

.head-date-discount-icon-sm {
  width: 20px;
  flex: 0 0 20px;
  margin-top: -5px;
}

.head-date-discount-text {
  font-size: 33px;
  text-transform: uppercase;
}

.head-date-discount-text-sm {
  font-size: 21px;
}

.head-date-discount-description {
  font-size: 16px;
  margin-top: 17px;
}

.head-discout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 43px;
}

.head-discount-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.head-discount-description {
  text-transform: uppercase;
  margin-top: 8px;
}

.head-discout-box {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 30px;
  text-align: center;
}

.head-new-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.head-hb-btn {
  margin-top: 80px;
}

.head-hb-subtitle {
  font-size: 24px;
  margin-bottom: 32px;
}

.head-hb-discount-text {
  font-size: 24px;
}

.head-leadCounter {
  background-color: rgba(9, 16, 30, 0.5);
  padding: 40px 26px 55px;
}

.head-leadCounter-title {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-align: center;
}

.head-leadCounter-subtitle {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 23px;
  text-align: center;
}

.leadCounter {
  text-align: center;
}

.leadCounter-count {
  font-size: 44px;
  font-weight: bold;
}

.leadCounter-subtitle {
  font-size: 16px;
  font-weight: bold;
}

.leadCounter-body {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadCounter-amount {
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: bold;
  color: #fbd124;
}

.leadCounter-svg {
  transform: scale(0.5);
  transform-origin: 0 0;
}

.leadCounter-svg circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
  stroke: #666;
  stroke-width: 1em;
}

.leadCounter-svg .leadCounter-svg-bar {
  stroke: #ff9f1e;
  stroke-dashoffset: 568;
}

.leadCounter-circle {
  display: block;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(270deg);
}

.prec-subtitle {
  text-align: center;
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.prec-short-image {
  margin-bottom: 21px;
}

.prec-short-text {
  text-align: center;
}

.text-yellow {
  color: #fbcc1f;
}

.ttu {
  text-transform: uppercase;
}

.fwb {
  font-weight: bold;
}

.new-line {
  background-image: url("/tools/sm-rem/img/head-new-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 45px 0;
  margin-bottom: 35px;
}

.new-line-birthday {
  background-image: url("/tools/sm-rem/img/head-new-hb-line.jpg");
}

.new-line-title {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 39px;
  text-transform: uppercase;
  color: #fff;
}

.new-line-subtitle {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

@media (max-width: 769px) {
  .head-new {
    padding: 4rem 0;
  }
  .head-new-hb {
    padding: 4rem 0;
  }
  .heading-1-new {
    font-size: 42px;
    margin-bottom: 18px;
  }
  .heading-box-gold {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .head-subtitle-new {
    font-size: 24px;
  }
  .head-date-discount-text {
    font-size: 22px;
  }
  .new-line-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .new-line-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .head-date-discount-text {
    font-size: 18px;
  }
  .head-date-discount-icon {
    max-width: 40px;
    flex: 0 0 40px;
  }
  .head-date-discount-icon img {
    max-width: 100%;
    height: auto;
  }
  .head-discout-box {
    width: 100%;
  }
  #timer9adb967f6b5163d045cb2208262f3ddd {
    min-width: 280px !important;
  }
  #timer-separator-9adb967f6b5163d045cb2208262f3ddd-hours {
    padding: 0 !important;
  }
  #timer-separator-9adb967f6b5163d045cb2208262f3ddd-minutes {
    display: none !important;
  }
  #timer-element-9adb967f6b5163d045cb2208262f3ddd-minutes {
    display: none !important;
  }
  #timer-separator-9adb967f6b5163d045cb2208262f3ddd-secundes {
    display: none !important;
  }
  #timer-element-9adb967f6b5163d045cb2208262f3ddd-secundes {
    display: none !important;
  }
  .head-hb-discount-text {
    font-size: 16px;
  }
}

/*==========  Mobile First  ==========*/

/* End */


/* Start:/tools/sm-rem/css/quiz.min.css?164742958314851*/
.quiz-step {
  font-family: inherit !important;
  color: #000;
  line-height: 1.3 !important;
}

/**
* Quiz questions side (left)
*/
.quiz-questions {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.quiz-header {
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.quiz-title-md {
  font-size: 18px;
  opacity: 0.5;
}

.quiz-question-title {
  font-size: 32px;
  font-weight: 500;
}

.quiz-answers {
  margin: 10px 0;
  padding: 40px 30px;
}

.quiz-radio-checkbox {
  position: relative;
  width: 100%;
  margin-top: 30px;
  cursor: pointer;
  height: 100%;
  margin: 0;
}

.quiz-radio-checkbox:hover span {
  border-color: rgba(239, 206, 54, 0.75);
}

.quiz-radio-checkbox input:checked + span {
  border-color: rgba(239, 206, 54, 0.75);
}

.quiz-radio-checkbox input:checked + span::before {
  opacity: 1;
}

.quiz-radio-checkbox input:checked + span::after {
  opacity: 1;
}

.quiz-radio-checkbox input {
  position: absolute;
  opacity: 0;
}

.quiz-radio-checkbox span {
  height: 100%;
  position: relative;
  display: block;
  width: 100%;
  position: relative;
  -webkit-animation: all 0.3s ease;
          animation: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.quiz-radio-checkbox span::before {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 31px;
  width: 31px;
  content: "";
  z-index: 101;
  background: #fff;
  border: 4px solid #efce36;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

.quiz-radio-checkbox span::after {
  position: absolute;
  top: 18px;
  right: 18px;
  height: 15px;
  width: 15px;
  content: "";
  z-index: 101;
  border-radius: 100%;
  background: #efce36;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

.quiz-radio-row {
  margin-top: 0;
}

.quiz-radio-row span {
  border: 1px solid rgba(0, 0, 0, 0.25);
  position: relative;
  padding-left: 30px;
}

.quiz-radio-row span::before {
  position: absolute;
  top: 50%;
  left: 10px;
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.quiz-radio-row input:checked + span::after {
  position: absolute;
  left: 13px;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  background: #f2d863;
  opacity: 0.2;
}

.quiz-answer-pic {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f3f3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.quiz-answer-title {
  font-weight: 400;
  font-size: 16px;
  padding: 20px 0 20px 10px;
}

.quiz-question-title-sm {
  font-size: 20px;
}

.quiz-answers-sm {
  padding: 20px;
}

.quiz-radio-circle {
  position: relative;
  cursor: pointer;
}

.quiz-radio-circle input {
  opacity: 0;
  position: absolute;
}

.quiz-radio-circle .quiz-answer-title {
  position: relative;
  padding: 0 0 0 30px;
}

.quiz-radio-circle .quiz-answer-title::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 1px solid #deb812;
  opacity: 0.5;
}

.quiz-radio-circle input:hover + span .quiz-answer-title::before {
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #deb812;
  opacity: 0.7;
}

.quiz-radio-circle input:checked + span .quiz-answer-title::before {
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #deb812;
  opacity: 1;
}

.quiz-radio-circle input:checked + span .quiz-answer-title::after {
  opacity: 1;
}

.quiz-footer {
  padding: 10px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.quiz-progress {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.quiz-progressbar {
  position: relative;
  background: #f3f3f3;
  width: 100%;
  height: 7px;
  border-radius: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.quiz-progressbar-current {
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(239, 206, 54, 0.75);
}

.b-pform__step[data-pform-step="1"] .quiz-progressbar-current {
  width: 0%;
}

.b-pform__step[data-pform-step="2"] .quiz-progressbar-current {
  width: 20%;
}

.b-pform__step[data-pform-step="3"] .quiz-progressbar-current {
  width: 40%;
}

.b-pform__step[data-pform-step="4"] .quiz-progressbar-current {
  width: 60%;
}

.b-pform__step[data-pform-step="5"] .quiz-progressbar-current {
  width: 80%;
}

.b-pform__step[data-pform-step="6"] .quiz-progressbar-current {
  width: 99%;
}

.b-pform__step[data-pform-step="7"] .quiz-progressbar-current {
  width: 100%;
}

.quiz-progressbar-info {
  opacity: 0.4;
  font-size: 14px;
  margin-top: 10px;
}

.btn-quiz {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-radius: 100px;
  border: 0;
  -webkit-animation: all 0.3s ease;
          animation: all 0.3s ease;
  padding: 10px 30px;
  overflow: hidden;
  -webkit-box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.15);
}

.btn-quiz:before {
  content: "";
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(340deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.95) 25%, rgba(255, 255, 255, 0) 35%);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.95) 25%, rgba(255, 255, 255, 0) 35%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-animation: bt 4.5s linear infinite;
          animation: bt 4.5s linear infinite;
}

.btn-quiz-next {
  background: rgba(239, 206, 54, 0.75);
  margin-left: 1em;
}

.btn-quiz-next:hover {
  background: #efce36;
}

.btn-quiz-back {
  background: rgba(0, 0, 0, 0.05);
}

.btn-quiz-back:hover {
  background: rgba(0, 0, 0, 0.1);
}

@-webkit-keyframes bt {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  16% {
    opacity: 1;
    -webkit-transform: translate(35%, 0);
            transform: translate(35%, 0);
  }
  22% {
    opacity: 0.5;
    -webkit-transform: translate(55%, 0);
            transform: translate(55%, 0);
  }
  40% {
    -webkit-transform: translate(120%, 0);
            transform: translate(120%, 0);
  }
  100% {
    opacity: 0.35;
    -webkit-transform: translate(120%, 0);
            transform: translate(120%, 0);
  }
}

@keyframes bt {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  16% {
    opacity: 1;
    -webkit-transform: translate(35%, 0);
            transform: translate(35%, 0);
  }
  22% {
    opacity: 0.5;
    -webkit-transform: translate(55%, 0);
            transform: translate(55%, 0);
  }
  40% {
    -webkit-transform: translate(120%, 0);
            transform: translate(120%, 0);
  }
  100% {
    opacity: 0.35;
    -webkit-transform: translate(120%, 0);
            transform: translate(120%, 0);
  }
}

/** *
* Quiz assitant style's (right block)
*/
.quiz-assistant-box {
  background: #f3f3f3;
  height: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.quiz-assistant-person {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.quiz-assistant-sale {
  position: relative;
  padding: 20px 30px;
  background: #f2d863;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  border: 1px solid #deb812;
}

.quiz-assistant-sale-percent {
  font-weight: bold;
}

.quiz-assistant-pic {
  width: 100px;
  border-radius: 100%;
  position: relative;
}

.quiz-assistant-pic::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: green;
  border: 2px solid #fff;
  bottom: 6px;
  right: 6px;
  border-radius: 100%;
}

.quiz-assistant-pic img {
  border-radius: 100%;
}

.quiz-assistant-title {
  margin-left: 10px;
}

.quiz-assistant-name {
  font-weight: bold;
}

.quiz-assistant-desc {
  opacity: 0.7;
  font-size: 14px;
}

.quiz-assistant-text {
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-top: 1.75em;
  position: relative;
  font-size: 14px;
}

.quiz-assistant-text::after {
  position: absolute;
  left: 40px;
  top: -20px;
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
  content: "";
}

.quiz-present {
  border: 5px solid #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  margin-top: 1rem;
  background: -o-linear-gradient(119deg, #c2a522, #d19e1e);
  background: linear-gradient(331deg, #c2a522, #d19e1e);
  border: 1px solid #af9118;
}

.quiz-present-pic {
  width: 70px;
}

.quiz-present-title {
  margin-left: 10px;
  font-weight: bold;
  opacity: 0.9;
  text-align: right;
  font-weight: 400;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}

.quiz-present-boxtitle {
  font-weight: bold;
  margin: 40px 0 0 0;
  font-size: 20px;
  text-transform: uppercase;
  opacity: 0.7;
}

/**
* QUiz final step
*/
.quiz-final-title {
  font-size: 24px;
  text-align: center;
}

.quiz-final-subtitle {
  font-size: 18px;
  opacity: 0.5;
  text-align: center;
}

.quiz-form-subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
}

.quiz-form-input {
  padding: 20px 10px;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.26);
  width: 100%;
}

.btn-quiz-final {
  background-color: #efce36 !important;
  -webkit-box-shadow: 0 3px 10px 0 rgba(239, 206, 54, 0.5);
          box-shadow: 0 3px 10px 0 rgba(239, 206, 54, 0.5);
  border-radius: 4px;
  width: 100%;
  padding: 20px;
  margin-top: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quiz-final,
.quiz-form {
  padding: 0 20px;
}

.quiz-final .quiz-assistant-sale,
.quiz-form .quiz-assistant-sale {
  margin-top: 20px;
}

.quiz-final .quiz-present-boxtitle,
.quiz-form .quiz-present-boxtitle {
  margin-top: 0;
}

.iexmodal[data-iexmodal-id='id-iexform-quiz'] .iexmodal-inner {
  padding: 0;
}

@media (max-width: 992px) {
  .quiz-assistant-text {
    display: none;
  }
}

@media (max-width: 780px) {
  .quiz-answer-pic {
    display: none;
  }
  .quiz-assistant-box {
    display: none;
  }
  .quiz-question-title {
    font-size: 24px;
  }
  .quiz-title-md {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .quiz-footer {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .quiz-buttons {
    width: 100%;
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .quiz-progress {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .quiz-answers, .quiz-header, .quiz-footer {
    padding: 15px 15px;
  }
}

/* End */
/* /tools/iexPack108/iexModal/iexModal.css?158452553019110 */
/* /tools/iexPack108/iexForm/iexform.css?158452553017342 */
/* /tools/sm-rem/libs/colorbox/colorbox.css?15843460644474 */
/* /tools/sm-rem/libs/slick/slick-theme.css?15843460653145 */
/* /tools/sm-rem/libs/slick/slick.css?15843460651776 */
/* /tools/sm-rem/css/main.min.css?1647429583176545 */
/* /tools/sm-rem/css/quiz.min.css?164742958314851 */
