@import "reset.css";

/*FONTS*/

@font-face {
    font-family: 'DIN Pro';
    src: url('/template/fonts/DINPro.eot');
    src: local('DIN Pro'), local('DINPro'),
    url('/template/fonts/DINPro.eot?#iefix') format('embedded-opentype'),
    url('/template/fonts/DINPro.woff') format('woff'),
    url('/template/fonts/DINPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Pro Regular';
    src: url('/template/fonts/DINPro-Regular.eot');
    src: local('DINPro-Regular'),
    url('/template/fonts/DINPro-Regular.eot?#iefix') format('embedded-opentype'),
    url('/template/fonts/DINPro-Regular.woff') format('woff'),
    url('/template/fonts/DINPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Pro Bold';
    src: url('/template/fonts/DINPro-Bold.eot');
    src: local('DIN Pro Bold'), local('DINPro-Bold'),
    url('/template/fonts/DINPro-Bold.eot?#iefix') format('embedded-opentype'),
    url('/template/fonts/DINPro-Bold.woff') format('woff'),
    url('/template/fonts/DINPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Pro Medium';
    src: url('/template/fonts/DINPro-Medium.eot');
    src: local('DIN Pro Medium'), local('DINPro-Medium'),
    url('/template/fonts/DINPro-Medium.eot?#iefix') format('embedded-opentype'),
    url('/template/fonts/DINPro-Medium.woff') format('woff'),
    url('/template/fonts/DINPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Pro Cond-Medium';
    src: url('/template/fonts/DINPro-CondensedMedium.eot');
    src: local('DIN Pro Condensed Medium'), local('DINPro-CondensedMedium'),
    url('/template/fonts/DINPro-CondensedMedium.eot?#iefix') format('embedded-opentype'),
    url('/template/fonts/DINPro-CondensedMedium.woff') format('woff'),
    url('/template/fonts/DINPro-CondensedMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'DIN Pro Cond-Bold';
    src: url('/template/fonts/DINPro-CondensedBold.eot');
    src: local('DIN Pro Condensed Bold'), local('DINPro-CondensedBold'),
    url('/template/fonts/DINPro-CondensedBold.eot?#iefix') format('embedded-opentype'),
    url('/template/fonts/DINPro-CondensedBold.woff') format('woff'),
    url('/template/fonts/DINPro-CondensedBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Intro';
    src: url('/template/fonts/Intro.eot');
    src: local('Intro'),
    url('/template/fonts/Intro.eot?#iefix') format('embedded-opentype'),
    url('/template/fonts/Intro.woff') format('woff'),
    url('/template/fonts/Intro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*KEYFRAMES*/

@-webkit-keyframes mouse-arrow {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(14px);
        transform: translateY(14px);
    }
}

@keyframes mouse-arrow {
    0% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(14px);
        transform: translateY(14px);
    }
}

@-webkit-keyframes border-move {
    0% {
        width: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

@keyframes border-move {
    0% {
        width: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

@-webkit-keyframes arrow-move {
    0% {
        background-position-x: -175px;
        opacity: 0;
    }
    100% {
        background-position-x: 0;
        opacity: 1;
    }
}

@keyframes arrow-move {
    0% {
        background-position-x: -175px;
        opacity: 0;
    }
    100% {
        background-position-x: 0;
        opacity: 1;
    }
}

@-webkit-keyframes emersion {
    0% {
        visibility: hidden;
        opacity: 0;
    }
    100% {
        visibility: visible;
        opacity: 1;
    }
}

@keyframes emersion {
    0% {
        visibility: hidden;
        opacity: 0;
    }
    100% {
        visibility: visible;
        opacity: 1;
    }
}

/*COMMON*/

body {
    line-height: 1.4;
    font-family: "DIN Pro Regular", sans-serif;
    font-size: 18px;
    color: #000;
    background: url('/template/images/background.png') center repeat;
    -webkit-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
    opacity: 0;
}

body.loaded {
    opacity: 1 !important;
    visibility: visible !important;
}

body.preload {
    position: relative;
}

body.preload:after,
body.preload:before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

body.preload:after {
    width: 100%;
    height: 100%;
    background: url('/template/images/background.png') center repeat;
    z-index: 9;
    opacity: 1;
    visibility: visible;
    -webkit-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
}

body.preload:before {
    width: 65px;
    height: 65px;
    margin: auto;
    background: url('/template/images/preloader.svg') center no-repeat;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    -webkit-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
}

body.loaded:after,
body.loaded:before {
    opacity: 0;
    visibility: hidden;
}

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

h1, h2, h3,
.heading,
.heading_small,
.sub-header {
    font-family: "DIN Pro Cond-Bold", sans-serif;
    text-transform: uppercase;
}

h2 + p:not(.sub-header) {
    text-align: center;
    margin-top: 50px;
}

a {
    color: #00a651;
    text-decoration: underline;
    font-size: inherit;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

a:hover {
    text-decoration: none;
}

b {
    font-family: "DIN Pro Cond-Bold", sans-serif;
}

strong {
    font-family: "DIN Pro Cond-Medium", sans-serif;
}

p, span, a {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1230px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.container_scrolled {
    padding-top: 100px;
    padding-bottom: 200px;
}

.container_min {
    max-width: 970px;
    width: 100%;
    margin: 0 auto;
}

.container_with-footer {
    padding-bottom: 240px;
}

.block h1,
.block h2,
.block .sub-header {
    text-align: center;
}

.block h1 {
    font-size: 56px;
}

.block h2,
#section-heading h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "DIN Pro Cond-Bold", sans-serif;
}
#section-heading h2 {text-align:center;}
.sub-header {
    font-size: 30px;
    color: #99a5aa;
    text-align: center;
}

.text_big {
    font-size: 24px !important;
}

.text_extra-big {
    font-size: 30px !important;
}

.text_upper {
    text-transform: uppercase !important;
}

.text_blue {
    color: #20ace1 !important;
}

.text_light {
    color: #99a5aa !important;
}

.text_center {
    text-align: center !important;
}

.text_bold {
    font-family: "DIN Pro Bold", sans-serif !important;
}

.header_min {
    font-family: "DIN Pro Cond-Bold", sans-serif;
    font-size: 30px;
    color: #20ace1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.button {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 2px solid #00a651;
    text-decoration: none;
    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;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
}

.button:hover {
    color: #fff;
    background: #00a651;
}

.button_order {
    display: block;
    padding: 15px 0;
    font-size: 20px;
    font-family: "DIN Pro Cond-Medium", sans-serif;
    text-align: center !important;
}

.button_cover {
    color: #fff;
    background: #00a651;
}

.button_cover:hover {
    color: #00a651;
    background: #fff;
}

.button_call {
    padding: 11px 0;
}

.mouse-scroll {
    position: relative;
    width: 30px;
    height: 65px;
    margin: 50px auto 0;
    background: url('/template/images/mouse.svg') center top no-repeat;
    overflow: hidden;
    bottom: 10px;
    cursor: pointer;
}

.mouse-scroll_bottom {
    bottom: 0;
}

#fixed-scroll {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 25px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

#fixed-scroll.active {
    opacity: 1;
    visibility: visible;
}

#fixed-scroll.hidden {
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    opacity: 0;
    visibility: hidden;
}

.mouse-scroll:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 9px;
    height: 14px;
    background: url('/template/images/mouse-arrow.svg') center bottom no-repeat;
    -webkit-animation: mouse-arrow 1.5s ease infinite;
    animation: mouse-arrow 1.5s ease infinite;
}

.font-inherit {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/*HEADER_FOOTER*/

.header-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 0 20px;
    font-family: "DIN Pro Cond-Medium", sans-serif;
    font-size: 20px;
    line-height: 1.2;
}

.header-footer__item {
    max-width: 170px;
    width: 100%;
}

.header-footer__item_logo {
    max-width: 270px;
}

.header-footer__item_exp,
.header-footer__item_dev {
    max-width: 210px;
    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;
    padding-top: 5px;
}

.header-footer__item_exp img,
.header-footer__item_dev img {
    margin-right: 10px;
}

.header-footer__item_phones {
    text-align: right;
}

.header-footer_right-icon {
    text-transform: uppercase;
}

.header-nav__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #20ace1;
    -webkit-box-shadow: 0px 3px 0px 0px rgba(21, 143, 189, 1);
    box-shadow: 0px 3px 0px 0px rgba(21, 143, 189, 1);
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.header-nav__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.header-nav__link {
    text-decoration: none;
    font-family: "DIN Pro Cond-Bold", sans-serif;
    font-size: 24px;
    color: #fff;
    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;
    text-transform: uppercase;
    width: 100%;
    padding: 16px 0;
    line-height: 1;
}

.header-nav__link:hover {
    color: #000;
    background: #1090c124;
}

.header-nav__link_3d-model img {
    width: 50px;
    margin-right: 10px;
}

.header-footer__item_call {
    max-height: 75px;
}

/*MAIN*/

.intro {
    text-align: center;
    padding-top: 50px;
}

.intro__title {
    line-height: 1.1;
    margin-bottom: 20px;
}

.intro__advantages {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.intro-advantages__item {
    max-width: 370px;
    width: 100%;
    line-height: 1.2;
}

.intro-advantages__image {
    margin-bottom: 20px;
}

.intro__image {
    max-width: 540px;
    width: 100%;
    margin: 30px auto 10px;
}

.intro__image img {
    width: 100%;
}

.block__content {
    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;
}

.block__count {
    position: relative;
    max-width: 370px;
    width: 100%;
    font-family: Intro, sans-serif;
    font-size: 400px;
    line-height: 1.2;
    color: #e1e9f1;
    text-align: center;
    opacity: 0.65;
}

.scissors {
    position: absolute;
    top: 100px;
    right: 0;
}

.block_description {
    max-width: 670px;
    width: 100%;
    opacity: 1;
    -webkit-transition: 2s ease;
    -o-transition: 2s ease;
    transition: 2s ease;
}

.section.active .block_description {
    opacity: 1;
}

.bordered {
    padding-top: 30px;
    position: relative;
}

.bordered:after {
    content: '';
    display: block;
    height: 4px;
    width: 120px;
    position: absolute;
    background: #20ace1;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    /* opacity: 0; */
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.bordered_top:after {
    top: 0;
}

.bordered_top-left:after {
    top: 0;
    left: 0;
}

.bordered_top-center:after {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.bordered_bottom-left:after {
    left: 0;
    bottom: 0;
}

.section.active .bordered:after {
    -webkit-animation: border-move 1s ease;
    animation: border-move 1s ease;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    opacity: 1;
}

.scissors_third-part {
    top: 85px;
    right: 27px;
}

#scissors_first-part {
    opacity: 1;
    -webkit-transition: 1.5s ease-out;
    -o-transition: 1.5s ease-out;
    transition: 1.5s ease-out;
    top: 131px;
    right: 50px;
}

#scissors_second-part {
    opacity: 1;
    -webkit-transition: 1.5s ease-out;
    -o-transition: 1.5s ease-out;
    transition: 1.5s ease-out;
    top: 77px;
    right: 26px;
}

.section.active #scissors_first-part,
#scissors_first-part.active {
    right: 50px;
    top: 132px;
    opacity: 1;
}

.section.active #scissors_second-part,
#scissors_second-part.active {
    opacity: 1;
    top: 83px;
    right: 27px;
    -webkit-transition: 1.5s ease-out;
    -o-transition: 1.5s ease-out;
    transition: 1.5s ease-out;
}

.block_scissors {
    margin-top: 60px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
    opacity: 1;
}

.block_scissors.hidden {
    visibility: hidden;
    opacity: 0;
}

#section-heading {
}

#section-heading.active {
    opacity: 1;
    visibility: visible;
}

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

.three-model__switch {
    border: 2px solid #20ace1;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 auto;
}

.three-model__button {
    color: #20ace1;
    background: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 25px;
    font-size: 24px;
}

.three-model__button.active {
    color: #fff;
    background: #20ace1;
}

.three-model__button:hover {
    text-decoration: underline;
    cursor: pointer;
}

#section5 .fp-scrollable {
    overflow: visible;
}

.three-model__content {
    margin-top: 30px;
    margin-bottom: 30px;
}

.three-model__images {
    position: relative;
    display: none;
    max-width: 870px;
    height: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    background: #fff;
    -webkit-box-shadow: 3px 0 15px 0 rgba(153, 165, 170, 0.3);
    box-shadow: 3px 0 15px 0 rgba(153, 165, 170, 0.3);
}

.three-model__images.active {
    display: block;
}

.three-model__images-loader {
    position: relative;
    display: none;
    width: 100%;
    height: 100%;
}

.three-model__images-loader {
    display: block;
}

.three-model__images-loader:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../template/images/iframe_image.jpg') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 0;
    width: 100%;
    height: 100%;
    user-select: none;
}

.three-model__feedback {
    padding-top: 20px;
    font-family: "DIN Pro Cond-Medium", sans-serif;
    text-align: center;
}

.three-model__order {
    max-width: 230px;
    width: 100%;
    margin: 30px auto 0;
}

.block_offers {
    background: url('/template/images/background-types.jpg') center top repeat;
}

.block-offers__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 40px 0;
}

.block-offers__item {
    max-width: 570px;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 3px 15px 0px rgba(153, 165, 170, 0.3);
    box-shadow: 0px 3px 15px 0px rgba(153, 165, 170, 0.3);
    padding: 30px 70px;
}

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

.block-offers__description {
    margin: 10px 0 20px;
}

.block-offers__table {
    border: 1px solid #e1e9f1;
    width: 100%;
    font-family: "DIN Pro Regular", sans-serif;
    margin-top: 10px;
}

.table-head {
    font-size: 24px;
    padding: 20px 0;
}

.table-body tr:nth-child(2n +1) td {
    background: #eaf1f7;
}

.block-offers__table td {
    width: 50%;
    padding-left: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.block-offers__image {
    text-align: center;
    margin: 20px 0;

}

.block-offers__image-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.block-offers__image-link:hover:before,
.block-offers__image-link:hover:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    z-index: 0;
}

.block-offers__image-link:hover:before {
    background: #000;
    opacity: 0.15;
}

.block-offers__image-link:hover:after {
    background: url('/template/images/search.svg') center no-repeat;
    background-size: 64px !important;
    opacity: 0.95;
}

.block-offers__image img {
    width: 100%;
    display: block;
}

.block-offers__button {
    max-width: 170px;
    margin: 20px auto 0;
}

.advantages-item__heading {
    font-family: "DIN Pro Cond-Bold", sans-serif;
}

.advantages__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.advantages__block {
    max-width: 570px;
    width: 100%;
    padding-left: 100px;
    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;
}

.advantages__title {
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.advantages__items {
    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;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.advantages__item {
    margin-bottom: 40px;
    position: relative;
}

.advantages__item:last-child {
    margin-bottom: 0;
}

.advantages__item:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    left: -80px;
    -webkit-background-size: contain !important;
    background-size: contain !important;
}

.advantages__item_checked:before {
    background: url('/template/images/check-icon.svg') center no-repeat;
}

.advantages__item_canceled:before {
    background: url('/template/images/cancel-icon.svg') center no-repeat;
}

.bordered_canceled:after {
    background: #99a5aa;
}

.delivery__content {
    background: url('/template/images/background-delivery.jpg') center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    color: #fff;
    padding: 80px 0;
}

.delivery__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 40px;
}

.delivery__item {
    max-width: 370px;
    width: 100%;
}

.delivery__image {
    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: relative;
    width: 170px;
    height: 170px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto 15px;
}

.delivery__image:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -210px;
    margin: auto 0;
    width: 170px;
    height: 12px;
    background: url('/template/images/delivery/arrow.svg') center no-repeat;
    background-position-x: -175px;
    -webkit-background-size: contain !important;
    background-size: contain !important;
}

.section.active .delivery__image:before {
    -webkit-animation: arrow-move 1s ease;
    animation: arrow-move 1s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.section.active .delivery__image_second:before {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.delivery__item:last-child .delivery__image:before {
    content: none;
}

.block_delivery {
    background: #fff;
}

.block_delivery .fp-tableCell {
    display: block;
}

.guarantee__block {
    padding: 50px 0;
}

.guarantee__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
}

.guarantee__item {
    max-width: 570px;
    width: 100%;
}

.reviews,
.reviews__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.reviews {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
}

.reviews__item,
.reviews_review {
    width: 100%;
}

.reviews__item {
    max-width: 570px;
    margin: 25px 0;
}

.section.active .reviews__item {
    opacity: 0;
    -webkit-animation: emersion .7s ease;
    animation: emersion .7s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.section.active .reviews__item_first {
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.section.active .reviews__item_second {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}

.section.active .reviews__item_third {
    -webkit-animation-delay: 1.05s;
    animation-delay: 1.05s;
}

.section.active .reviews__item_fourth {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.reviews_review {
    max-width: 470px;
}

.reviews_face img {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.reviews_button {
    max-width: 370px;
    /* margin: 0 auto; */
}

.feedback-content {
    max-width: 770px;
    width: 100%;
    margin: 50px auto 0;
}

.feedback-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.feedback-item {
    max-width: 370px;
    width: 100%;
    display: block;
}

.feedback-item_first {
    margin-right: 15px;
}

.feedback-item_last {
    margin-left: 15px;
}

.feedback-input,
.type-choose {
    margin-bottom: 20px;
    width: 100%;

}

.feedback-input {
    border: 2px solid #e1e9f1;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    outline: none;
    padding: 16px 20px 15px;
    max-height: 50px;
}

.feedback-input_select {
    padding-top: 10px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.type-choose {
    position: relative;
}

.type-choose:before {
    content: '';
    position: absolute;
    top: -webkit-calc(50% - 4px);
    top: calc(50% - 4px);
    right: 20px;
    border-bottom: none;
    border-top: 9px solid #00a651;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    pointer-events: none;
}

.feedback-input,
.feedback-input_select,
.feedback-input::-webkit-input-placeholder {
    font-family: "DIN Pro Regular", sans-serif;
    font-size: 18px;
    color: #7a8488;
}

.feedback-input,
.feedback-input_select,
.feedback-input::-moz-placeholder {
    font-family: "DIN Pro Regular", sans-serif;
    font-size: 18px;
    color: #7a8488;
}

.feedback-input,
.feedback-input_select,
.feedback-input:-ms-input-placeholder {
    font-family: "DIN Pro Regular", sans-serif;
    font-size: 18px;
    color: #7a8488;
}

.feedback-input,
.feedback-input_select,
.feedback-input::-ms-input-placeholder {
    font-family: "DIN Pro Regular", sans-serif;
    font-size: 18px;
    color: #7a8488;
}

.feedback-input,
.feedback-input_select,
.feedback-input::placeholder {
    font-family: "DIN Pro Regular", sans-serif;
    font-size: 18px;
    color: #7a8488;
    background: #fff;
}

.feedback-input_text {
    width: 100%;
    resize: none;
    max-height: 120px;
}

.feedback-button {
    max-width: 370px;
    margin: 30px auto 0;
    cursor: pointer;
    -webkit-transition: .15s ease;
    -o-transition: .15s ease;
    transition: .15s ease;
}

.block_feedback {
    background: url('/template/images/background-bottom.jpg') center no-repeat;
    background-position-y: -150px;
    -webkit-background-size: cover;
    background-size: cover;
}

.block_feedback .fp-tableCell {
    display: block;
    padding-top: 50px;
}

.footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e1e9f1;
}

.footer__copyright {
    background: #000;
}

.footer-copyright__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "DIN Pro Regular", sans-serif;
    color: #fff;
    padding: 8px 0;
}

.footer-copyright__content a {
    color: #fff;
}

.header-footer_footer {
    padding: 30px 0 20px;
}

.footer-menu__item {
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #00a651;
    display: inline-block;
    line-height: 1.1;
}

.footer-menu__item:hover {
    border-bottom: 1px solid transparent;
}

.footer__menu,
.footer__info {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    line-height: 1.4;
}

.header-footer-item-phones_footer {
    max-width: 200px;
}

.footer__socials {
    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-top: 10px;
}

.footer__socials img {
    margin: 0 5px;
}

.footer__img {
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.footer__img:hover {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}

.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    -webkit-background-size: contain;
    background-size: contain;
    margin-right: 7px;
}

.icon_viber {
    background: url('/template/images/socials/viber.svg') center no-repeat;
}

.icon_whatsup {
    background: url('/template/images/socials/whatsapp.svg') center no-repeat;
}

#menu {
    position: fixed;
    top: 10px;
    right: -1000px;
    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;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
}

#menu.active {
    opacity: 1;
    visibility: visible;
    right: 10px;
}

#menu li {
    text-align: center;
}

.fixed-menu__item {
    display: block;
    margin: 10px 0;
    padding: 5px 10px;
    text-decoration: none;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    background: #c2d0dd;
    font-size: 16px;
    color: #000;
}

.fixed-menu__item:hover {
    text-decoration: underline;
}

.fixed-menu__item.active {
    text-decoration: underline;
}

.send_response {
    background: #fff;
    text-align: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 30px;
}

.send_response h2 {
    font-size: 32px;
}

.send_response p {
    font-size: 22px;
    margin: 20px 0;
}

#up-button {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    bottom: 100px;
    right: 50px;
    background: #00aeef;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

#up-button:hover {
    background: #277999;
}

#up-button.hidden {
    opacity: 0;
    visibility: hidden;
}

#up-button img {
    width: 22px;
    height: 20px;
}

.modal {
    max-width: 630px;
    width: 100%;
    text-align: center;
    background: #f5f5f5;
    padding: 50px 20px 60px;
    margin: 0 auto;
    position: relative;
}

.modal__header {
    font-size: 48px;
    margin-bottom: 20px;
}

.modal__input {
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
}

.modal_text {
    font-size: 28px;
}

.modal .mfp-close {
    background: url('/template/images/close-icon.svg') center no-repeat !important;
    top: 15px !important;
    right: 15px !important;
    cursor: pointer !important;
    font-size: 0 !important;
}

/*FullPageJS FADING*/
.fp-section {
    width: 100% !important;
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
}

.fp-section.active {
    visibility: visible;
    opacity: 1;
}

#fp-nav ul li {
    margin-bottom: 10px !important;
}

.dot__rect {
    content: '';
    position: absolute !important;
    top: 0 !important;
    left: auto !important;
    right: -18px;
    bottom: 0 !important;
    border-right: 13px solid transparent !important;
    border-left: 13px solid transparent !important;
    border-bottom: 10px solid #333 !important;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    -webkit-transform: rotate(90deg) !important;
    -ms-transform: rotate(90deg) !important;
    transform: rotate(90deg) !important;
    background: transparent !important;
    margin: auto !important;
    height: 0 !important;
}

.dot__capture {
    position: absolute !important;
    top: auto !important;
    left: auto !important;
    right: 30px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'DIN Pro Cond-Bold', sans-serif;
    line-height: 1;
    padding: 5px 10px 5px 15px;
    background: #333;
    width: auto !important;
    height: auto !important;
    -webkit-border-bottom-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
    -webkit-border-bottom-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    -webkit-border-top-left-radius: 4px !important;
    border-top-left-radius: 4px !important;
    -webkit-border-top-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
    -webkit-transition: .2s ease !important;
    -o-transition: .2s ease !important;
    transition: .2s ease !important;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
}

.dot:hover .dot__capture {
    opacity: 1;
    visibility: visible;
}

.iScrollVerticalScrollbar {
    width: 9px !important;
}

/*MOBILE NAV*/
.mobile-nav-toggle {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    display: none;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    background: url('/template/images/menu-icon.svg') center no-repeat;
    -webkit-background-size: 30px 30px;
    background-size: 30px;
    z-index: 1;
}

.mobile-nav-toggle.active {
    left: calc(240px);
    background: url('/template/images/menu-icon_close.svg') center no-repeat;
    -webkit-background-size: 30px 30px;
    background-size: 30px;
}

.mobile-nav {
    position: fixed;
    width: 100%;
    left: -1000px;
    right: 0;
    top: 0;
    height: 100vh;
    max-width: 230px;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    z-index: 1;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav__content {
    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: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-border-radius: 0;
    border-radius: 0;
    height: 100%;
    background: #2b7a98;
    padding-top: 30px;
}

.mobile-nav__item {
    padding: 15px 15px 15px 30px;
    width: 100%;
}

.mobile-nav__link {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-family: "DIN Pro Cond-Bold", sans-serif;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

.main-content {
    box-shadow: 0px 3px 15px 0px rgba(153, 165, 170, 0.3);
    padding: 20px 30px;
    background: #FFF;
    margin: 30px 0;
    border-radius: 5px;
}

	.main-content h1 { /* text-align: center; */ font-size: 40px; margin-bottom: 15px; }
	.main-content h2 { /* text-align: center; */ font-size: 30px; margin: 15px 0; }
	.main-content p { margin-bottom: 15px; }
	.main-content ol { list-style: decimal; }
	.main-content ul { list-style: disc; }
	.main-content ol, .main-content ul { margin: 15px 0 15px 10px; padding-left: 30px; }
	.main-content ol li, .main-content ul li { margin-bottom: 10px; }
	.main-content strong { font-family: inherit; font-weight: bold; }
	.main-content h2 + p:not(.sub-header) { text-align: left; margin: 0 0 15px; }
	.main-content img { max-width: 100%; }
	.article-block { padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid #DDD; }
	.article-block:last-of-type { border-bottom: 0; }
	.article-link a { font-size: 22px; font-weight: bold; }
	.article-desc { padding-top: 5px; }
	
	#top {
   width: 50px;
   height: 50px;
   background: #00aeef url("/template/images/up-arrow.svg") no-repeat center;
   background-size: 22px;
   position: fixed;
   bottom: 50px;
   right: 50px;
   cursor: pointer;
   display: none;
   border-radius: 50%;
   transition: .5s ease;
}

#top:hover { background: #277999 url("/template/images/up-arrow.svg") no-repeat center; background-size: 22px; }

html { height: 100%; }
body.inner-page { min-height: 100%; padding-bottom: 252px; box-sizing: border-box; position: relative; opacity: 1;}
.inner-page footer { position: absolute !important;}

.mobile-diagram-link { display: none; }
.diargam-poll { display: block; }

.back-to-articles { display:block; border-top:1px solid #DDD; padding: 10px 0 0; font-weight: bold; margin-top: 35px; }

ul.pagination { display: flex; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; font-weight: bold; }
ul.pagination li { margin: 0; padding: 5px; }
ul.pagination li:first-child { padding-left: 0; }
ul.pagination li:last-child { padding-right: 0; }
ul.pagination li.active a { color: #000; text-decoration: none; }
.back-to-articles-top { border-top: 0; border-bottom: 1px solid #DDD; padding: 0 0 15px; font-weight: bold; margin-bottom: 15px; margin-top: 0; }

#section1 {}
#section2 {}
#section3 {}
#section4 {}
#section5 {
    padding: 80px 0;
}
#section6 {}
#section7 {}
#section8 {}
#section9 {padding: 80px 0;}
#section10 {}

@media (max-width: 900px) { 
	html { height: auto; }
	body.inner-page { min-height: 0; padding-bottom: 0; box-sizing: border-box; position: relative; }
	.inner-page footer { position: static !important; } 
}

@media (max-width: 768px) {
		.mobile-diagram-link { display: block; }
		.diargam-poll { display: none; }
	}

@media (max-width: 480px) {
		.main-content { padding-left: 15px; }
		.main-content h1 { font-size: 30px; line-height: normal; }
		.main-content h2 { font-size: 24px; line-height: normal; }
		.main-content ol, .main-content ul { padding-left: 0; }
	}
	
	
	.tovar_box {
    display:flex;
    max-width: 900px;
    width: 100%;
    background: #f5f5f5;
    padding: 50px 20px 60px;
    margin: 0 auto;
    position: relative;
    justify-content: space-between;
    gap: 20px;
    }
	.tovar_left {
    width: 55%;
    max-width: 488px;
}
	.tovar_right {}
	
	.price_box {display:flex;gap:15px;}
.count_box {margin-top:15px;margin-bottom: 15px;}
.count_box_input input {
    border: 1px solid #00a651;
    background: transparent;
    border-radius: 4px;
    font-family: "DIN Pro Cond-Medium", sans-serif;
    font-size: 17px;
    width: 50px;
    }
.tovar_right select {border:1px solid #00a651;background:transparent;border-radius:4px;font-family: "DIN Pro Cond-Medium", sans-serif;font-size: 17px;}

.btn-cart {margin-top:15px;}
	.count_box_input .input-group {display:flex;gap:15px;} 
	
	.button.button_order:hover {cursor:pointer;}
	
	.tovar_left .slick-prev:hover {opacity:1;}
	.tovar_left .slick-prev {
    position: absolute;
    z-index: 20;
    left: 0px;
    top: 50%;
    background: transparent;
    font-size: 0px;
    outline: 0px;
    border: 0px;
    cursor: pointer;
	opacity:.8;
}

#differences {padding: 80px 0px;}
#reviews {padding: 80px 0px;}


.tovar_left .slick-prev:after {
    content:'';
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    margin-top: -10px;
    top: 50%;
    border-right: 20px solid #00a651;
    left: -8px;
    position: absolute;
}

.tovar_left .slick-next:after {
    content:'';
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    margin-top: -10px;
    top: 50%;
    border-left: 20px solid #00a651;
    left: 0px;
    position: absolute;
}
	.tovar_left .slick-next {
    position: absolute;
    z-index: 20;
    right: 0px;
    top: 50%;
    background: transparent;
    font-size: 0px;
    outline: 0px;
    border: 0px;
    cursor: pointer;
	opacity:.8;
}.tovar_left .slick-next:hover {opacity:1;}
	.padd {    margin: 5px;}
	.padd img {  width:100%;}
	
	.tovar_title {font-weight:bold;font-size: 23px;line-height: 1.2;margin-bottom: 10px;font-family: "DIN Pro Cond-Bold", sans-serif;}
	
	.types_product {display:flex;justify-content: flex-start;padding: 5px;text-decoration: none;color: #000;align-items: center;gap: 15px;}
.types_name {font-size:16px;}
	.types_product:nth-child(2n) {background: #eaf1f7;}
.types_product:hover {background: #00a651a6;}
.thead_box {display:flex;padding:5px;justify-content: space-between;font-weight: bold;}

.lodochka_table {
    border: 1px solid #e1e9f1;
    width: 100%;
    font-family: "DIN Pro Regular", sans-serif;
    margin-top: 10px;
}

.header__nav.fix {    position: fixed;
    top: 10px;
    width: 1170px;z-index:1000;} 
	
	#section-heading {margin-top:50px;}
	
	.feedback-input-textarea {max-height:150px!important;}
	
	.flex-box {display:flex;gap: 30px;justify-content: center;}
	.green {
    max-width: 370px;
    background: #00a651;
    color: #fff;
    padding: 15px 0px;    font-size: 20px;
    font-family: "DIN Pro Cond-Medium", sans-serif;
    text-align: center !important;
}

.cart {min-height: 100vh;padding-bottom: 50px;}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 150px auto;
}
.empty-cart-title {
    font-size: 24px;
    margin-bottom: 15px;
}
.empty-cart-link {
    background: #20ace1;
    border:2px solid #20ace1;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    padding: 15px 25px;
    cursor: pointer;
}

.empty-cart-link:hover {background: transparent;color:#20ace1;}

.ms-footer {border-top: 1px solid #99a5aa !important;!i;!;display: flex;align-items: center;justify-content: flex-end;}

.cart_btn_box {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 25px;
    align-items: center;
}
.cart_btn_box a {
    background: #20ace1;
    border: 2px solid #20ace1;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    padding: 15px 25px;
    cursor: pointer;
}

.cart_btn_box a:hover {background: transparent;
    border: 2px solid #20ace1;
    color: #20ace1;}

.cart_btn_box button {
    background: transparent;
    color: #20ace1;
    border: 0px;
    outline: 0px;
    border-bottom: 1px solid #20ace1;
    padding: 0px;
    cursor: pointer;
}

.cart_btn_box button:hover {border-bottom:1px solid transparent;}
.table-responsive table {width:100%;border-spacing: 0px 1em;border-collapse: separate;}
.ms-image {float:left;margin-right:20px;}
.ms-count .input-group {display:flex;gap:10px;}
.ms-count .input-group input {width: 75px;border-radius: 20px;border: 2px solid #20ace1;padding: 5px 15px;background: transparent;}
.ms-image img {border-radius:4px;}
.ms-title button {background:transparent;border:0px;padding: 0px;color: #20ace1;cursor: pointer;}

.total {    padding: 15px;
    font-weight: bold;}
    
    
    #msOrder {margin-bottom:50px;}
    
    #msOrder h4 {
        font-size: 18px;
    line-height: 1;
    margin-bottom: 10px;
    font-family: "DIN Pro Cond-Bold", sans-serif;
    }
    
    #msOrder label {font-size: 14px;}
    #msOrder input {
    border: 1px solid #158fbd;
    padding: 9px 16px;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    background: transparent;
    border: 2px solid #e1e9f1;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    outline: none;
    padding: 16px 20px 15px;
    max-height: 50px;
    font-family: "DIN Pro Regular", sans-serif;
    font-size: 14px;
    color: #7a8488;
    background: #fff;
}
    #msOrder textarea {
    border: 1px solid #158fbd;
    padding: 9px 16px;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    min-height: 70px;
    background: transparent;
    border: 2px solid #e1e9f1;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    outline: none;
    padding: 16px 20px 15px;
    max-height: 50px;
    font-family: "DIN Pro Regular", sans-serif;
    font-size: 14px;
    color: #7a8488;
    background: #fff;
}
#payments input {width:auto;}
#deliveries input {width:auto;}

#payments {margin-top:20px;margin-bottom:20px;clear: both;}
#deliveries {margin-bottom:20px;}
   #msOrder .ms2_link {    background: #20ace1;
    border: 2px solid #20ace1;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    padding: 15px 25px;
    cursor: pointer;margin-top:20px;}
#msOrder .ms2_link:hover {background: transparent;
    border: 2px solid #20ace1;
    color: #20ace1;}

.text-itog {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.secure {
    background-color: #00a651ad;
    max-width: 500px;
    padding: 20px;
    margin: 0 auto;
    margin-top: 30px;
    border-radius: 5px;
    background-image: url(../images/secure.png);
    background-repeat: no-repeat;
    background-position: 24px 18px;
    padding-left: 110px;
}
.secure-title {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 10px;
    font-family: "DIN Pro Cond-Bold", sans-serif;
    color: #fff;
}
.secure-desc {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
}

#msOrder.container {    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;margin-bottom: 50px;}
    
    .order_box {margin-bottom:20px;}
    
    #adress .form-group {width: 49%;float:left;margin-right: 0%;}
#adress .form-group:nth-child(2n) {margin-right: 2%;}

#adress {display:table;}

.cart__order-detail {padding: 100px 30px;}
.cart__order-title {
    text-align: center;
    font-size: 24px;
}
.cart__order-text {
    margin-top: 10px!important;
    text-align: center;
}

.not_empty strong {
    position: absolute;
    background: #ffffff;
    color: #20ace1;
    width: 20px;
    text-align: center;
    border-radius: 50%;
    top: 0px;
    right: -2px;
}
.cart-icon a {display: table;
    width: 42px;
    height: 42px;}
.cart-icon {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 42px;
    height: 42px;
    background-color: #20ace1;
    background-image: url(../images/cart.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
}

.mobile-nav-close {display:none;}
.mobile-nav-close.show {display:block;left: calc(100% - 55px);background: url(/template/images/menu-icon_close.svg) center no-repeat;
    background-size: 30px;position: fixed;
    top: 10px;
    width: 40px;
    height: 40px;
    z-index: 1;}


.product_box {display:flex;justify-content: space-between;align-items: center;margin-bottom: 20px;}
.product_box img {width:100px;}
.ms-title {width:50%;}

.ms_box_price {display:flex;width: 100%;gap: 19px;margin-top: 5px;}
.ms_box_price div {width:100%;text-align: center;}

.tovar_right .cart-icon {position:relative;bottom:0px;right:0px;margin-top:20px;}

.header-footer__item_phones a {color:inherit;text-decoration:none;}

.btn_show_block {    color: #20ace1;
    text-align: center; display:none;    margin-bottom: 50px;cursor:pointer;}
.btn_hidden_block {    color: #20ace1;
    text-align: center;display:none;    margin-bottom: 50px;cursor:pointer;}
    
    .btn_show_block.show {display:block;}
.btn_hidden_block.show {display:block;}

.hidden_block {display:none;}

.btn_cart_one_click {
    border: 2px solid #00a651;
    border-radius: 5px;
    margin-top: 20px;
    display: block;
    padding: 15px 0;
    font-size: 20px;
    font-family: "DIN Pro Cond-Medium", sans-serif;
    text-align: center !important;
    color: #00a651;
    text-transform: uppercase;
    line-height: 1;
    
}

.btn_cart_one_click:hover {background:#00a651;color: #fff;cursor:pointer;}
.g-recaptcha {margin: 0 auto;display:table;}

.cart-link {display: flex;
    align-items: center;
    gap: 15px;}
    .table {width:100%;}
    .table tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    }
    
    .cart__total {    border-top: 1px solid #99a5aa !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;}
    .total {font-weight:normal;}
    .total span {margin-left: 5px;margin-right:5px;}
    
    .price_old.show {margin-left:10px;text-decoration: line-through;color:red;}
    .price_new.show {display:inline-block;}
    .price_new {display:none;}