

/* Start:/local/templates/main/css/buttons.css?16643703805319*/
.button{
	display: inline-block;
	position: relative;
	background: none;
	border: none;
	outline: none;
	line-height: 31px;
	padding: 0 25px;
	font-size: 11px;
	font-family: "GothamProBold";
	color: #000;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: .04em;
	text-align: center;

	border-radius: 16px;
	box-sizing: border-box;
    /*-webkit-transition: border-color 0.3s, background-color 0.3s;
    transition: border-color 0.3s, background-color 0.3s;*/
}
a.button,
button.button{
	cursor: pointer;
	transition: background .2s, color .2s;
}
/*.button.rollover{
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}
*/
/*.button.button.rollover .over, input.button.button.rollover:after{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    color: #fff;

    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    border-radius: 16px;

    -webkit-transition: -webkit-transform .6s, opacity .6s;
    transition: transform .6s, opacity .6s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1)
}
.button.gradient-border .over, input.button.gradient-border:after{
	background: #27b4ab;
	background: -webkit-linear-gradient(-45deg, #00b3c4, #65b959);
	background: -moz-linear-gradient(-45deg, #00b3c4, #65b959);
	background: linear-gradient(-45deg, #00b3c4, #65b959);
}
*/
/*.button.rollover:hover{color: transparent;}*/
/*.button.rollover:hover .over, input.button.rollover:hover:after{
	opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
*/
.gradient-bg{
	background: #27b4ab;
	background: -webkit-linear-gradient(-45deg, #65b959, #00b3c4, #65b959);
	background: -moz-linear-gradient(-45deg, #65b959, #00b3c4, #65b959);
	background: linear-gradient(-45deg, #65b959, #00b3c4, #65b959);
	background-size: 200% 100%;
	position: relative;
	color: #fff;
	border-radius: 16px;
	overflow: hidden;
	transition: background 1.5s;
}
.button.gradient-bg:before{
	content: '';
	position: absolute;
	z-index: 0;
	left: -100%;
	right: 100%;
	top: 0;
	bottom: 0;
	border-radius: 16px;
	background: -webkit-linear-gradient(-45deg, #65b959, #00b3c4);
	background: -moz-linear-gradient(-45deg, #65b959, #00b3c4);
	background: linear-gradient(-45deg, #65b959, #00b3c4);
	transition: left .5s, right .5s;
}
.button.gradient-bg:hover{
	background-position: -100% 0;
}
.button.gradient-bg:hover:before{
	left: 0;
	right: 0;
}
/*.gradient-bg:hover{
	background-position: -100% 0;
}*/
/*@-webkit-keyframes AnimationName {
    0%{background-position:90% 0%}
    50%{background-position:11% 100%}
    100%{background-position:90% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:90% 0%}
    50%{background-position:11% 100%}
    100%{background-position:90% 0%}
}
@keyframes AnimationName {
    0%{background-position:90% 0%}
    50%{background-position:11% 100%}
    100%{background-position:90% 0%}
}*/


.gradient-border{
	position: relative;
	background: -webkit-linear-gradient(-45deg, #00b3c4, #65b959);
	background: -moz-linear-gradient(-45deg, #00b3c4, #65b959);
	background: linear-gradient(-45deg, #00b3c4, #65b959);
}
.button span.text{
	display: block;
	position: relative;
	border-radius: 16px;
	transition: color .3s;
	/*background: -webkit-linear-gradient(-45deg, #00b3c4 0, #65b959 50%, #fff 50%);
	background: -moz-linear-gradient(-45deg, #00b3c4 0, #65b959 50%, #fff 50%);
	background: linear-gradient(-45deg, #00b3c4 0, #65b959 50%, #fff 50%);
	background-size: 250% 100%;
	background-position: 25% 0;*/
}
.gradient-border:before{
	content: '';
	position: absolute;
	left: 2px;
	right: 2px;
	top: 2px;
	bottom: 2px;
	background: #fff;
	background: -webkit-linear-gradient(-45deg, #fff 0, #fff 70%, transparent 70%);
	background: -moz-linear-gradient(-45deg, #fff 0, #fff 70%, transparent 70%);
	background: linear-gradient(-45deg, #fff 0, #fff 70%, transparent 70%);
	background-size: 200%;
	background-position: 100% 0;
	/*background-size: 270%;
	background-position: -60% 0;*/
	border-radius: 16px;
	z-index: 0;
	transition: background .3s;
}
.gradient-border:hover:before{background-position: 0% 0; background-size: 350%;}
/*.gradient-border:hover:before{background-position: -150% 0;}*/
.gradient-border:hover span.text{color: #fff;}

.gradient-hover:hover{
	background: #27b4ab;
	background: -webkit-linear-gradient(-45deg, #00b3c4, #65b959);
	background: -moz-linear-gradient(-45deg, #00b3c4, #65b959);
	background: linear-gradient(-45deg, #00b3c4, #65b959);
}




.button.grey-button{
	background: #f5f5f5;
}
.button.green-button{
	background: #5db768;
	text-shadow: 1px 1px rgba(255, 255, 255, 0.5);
}
.button.transparent-button{
	border: 1px solid #fff;
	color: #fff;
}
a.button.transparent-button:hover,
button.button.transparent-button:hover{
	background: #fff;
	color: #000;
}





.button.small{
	padding: 0 15px;
}
/* End */


/* Start:/local/templates/main/css/fonts.css?16643703804998*/
/* font-family: "GothamProRegular"; */
@font-face {
    font-family: "GothamProRegular";
    src: url("/local/templates/main/css/../fonts/gotham/GothamProRegular/GothamProRegular.eot");
    src: url("/local/templates/main/css/../fonts/gotham/GothamProRegular/GothamProRegular.eot?#iefix")format("embedded-opentype"),
    url("/local/templates/main/css/../fonts/gotham/GothamProRegular/GothamProRegular.woff") format("woff"),
    url("/local/templates/main/css/../fonts/gotham/GothamProRegular/GothamProRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "GothamProBold"; */
@font-face {
    font-family: "GothamProBold";
    src: url("/local/templates/main/css/../fonts/gotham/GothamProBold/GothamProBold.eot");
    src: url("/local/templates/main/css/../fonts/gotham/GothamProBold/GothamProBold.eot?#iefix")format("embedded-opentype"),
    url("/local/templates/main/css/../fonts/gotham/GothamProBold/GothamProBold.woff") format("woff"),
    url("/local/templates/main/css/../fonts/gotham/GothamProBold/GothamProBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "GothamProBlack"; */
@font-face {
    font-family: "GothamProBlack";
    src: url("/local/templates/main/css/../fonts/gotham/GothamProBlack/GothamProBlack.eot");
    src: url("/local/templates/main/css/../fonts/gotham/GothamProBlack/GothamProBlack.eot?#iefix")format("embedded-opentype"),
    url("/local/templates/main/css/../fonts/gotham/GothamProBlack/GothamProBlack.woff") format("woff"),
    url("/local/templates/main/css/../fonts/gotham/GothamProBlack/GothamProBlack.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "GothamProItalic"; */
@font-face {
    font-family: "GothamProItalic";
    src: url("/local/templates/main/css/../fonts/gotham/GothamProItalic/GothamProItalic.eot");
    src: url("/local/templates/main/css/../fonts/gotham/GothamProItalic/GothamProItalic.eot?#iefix")format("embedded-opentype"),
    url("/local/templates/main/css/../fonts/gotham/GothamProItalic/GothamProItalic.woff") format("woff"),
    url("/local/templates/main/css/../fonts/gotham/GothamProItalic/GothamProItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "GothamProMedium"; */
@font-face {
    font-family: "GothamProMedium";
    src: url("/local/templates/main/css/../fonts/gotham/GothamProMedium/GothamProMedium.eot");
    src: url("/local/templates/main/css/../fonts/gotham/GothamProMedium/GothamProMedium.eot?#iefix")format("embedded-opentype"),
    url("/local/templates/main/css/../fonts/gotham/GothamProMedium/GothamProMedium.woff") format("woff"),
    url("/local/templates/main/css/../fonts/gotham/GothamProMedium/GothamProMedium.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "GothamProLight"; */
@font-face {
    font-family: "GothamProLight";
    src: url("/local/templates/main/css/../fonts/gotham/GothamProLight/GothamProLight.eot");
    src: url("/local/templates/main/css/../fonts/gotham/GothamProLight/GothamProLight.eot?#iefix")format("embedded-opentype"),
    url("/local/templates/main/css/../fonts/gotham/GothamProLight/GothamProLight.woff") format("woff"),
    url("/local/templates/main/css/../fonts/gotham/GothamProLight/GothamProLight.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "GothamProMediumItalic"; */
@font-face {
    font-family: "GothamProMediumItalic";
    src: url("/local/templates/main/css/../fonts/gotham/GothamProMediumItalic/GothamProMediumItalic.eot");
    src: url("/local/templates/main/css/../fonts/gotham/GothamProMediumItalic/GothamProMediumItalic.eot?#iefix")format("embedded-opentype"),
    url("/local/templates/main/css/../fonts/gotham/GothamProMediumItalic/GothamProMediumItalic.woff") format("woff"),
    url("/local/templates/main/css/../fonts/gotham/GothamProMediumItalic/GothamProMediumItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "GothamProLightItalic"; */
@font-face {
    font-family: "GothamProLightItalic";
    src: url("/local/templates/main/css/../fonts/gotham/GothamProLightItalic/GothamProLightItalic.eot");
    src: url("/local/templates/main/css/../fonts/gotham/GothamProLightItalic/GothamProLightItalic.eot?#iefix")format("embedded-opentype"),
    url("/local/templates/main/css/../fonts/gotham/GothamProLightItalic/GothamProLightItalic.woff") format("woff"),
    url("/local/templates/main/css/../fonts/gotham/GothamProLightItalic/GothamProLightItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "GothamProBoldItalic"; */
@font-face {
    font-family: "GothamProBoldItalic";
    src: url("/local/templates/main/css/../fonts/gotham/GothamProBoldItalic/GothamProBoldItalic.eot");
    src: url("/local/templates/main/css/../fonts/gotham/GothamProBoldItalic/GothamProBoldItalic.eot?#iefix")format("embedded-opentype"),
    url("/local/templates/main/css/../fonts/gotham/GothamProBoldItalic/GothamProBoldItalic.woff") format("woff"),
    url("/local/templates/main/css/../fonts/gotham/GothamProBoldItalic/GothamProBoldItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* font-family: "GothamProBlackItalic"; */
@font-face {
    font-family: "GothamProBlackItalic";
    src: url("/local/templates/main/css/../fonts/gotham/GothamProBlackItalic/GothamProBlackItalic.eot");
    src: url("/local/templates/main/css/../fonts/gotham/GothamProBlackItalic/GothamProBlackItalic.eot?#iefix")format("embedded-opentype"),
    url("/local/templates/main/css/../fonts/gotham/GothamProBlackItalic/GothamProBlackItalic.woff") format("woff"),
    url("/local/templates/main/css/../fonts/gotham/GothamProBlackItalic/GothamProBlackItalic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
/* End */


/* Start:/local/templates/main/css/icomoon.css?16643703801397*/
@font-face {
    font-family: 'icomoon';
    src:    url('/local/templates/main/css/../fonts/icomoon.eot?4cq3ps');
    src:    url('/local/templates/main/css/../fonts/icomoon.eot?4cq3ps#iefix') format('embedded-opentype'),
        url('/local/templates/main/css/../fonts/icomoon.ttf?4cq3ps') format('truetype'),
        url('/local/templates/main/css/../fonts/icomoon.woff?4cq3ps') format('woff'),
        url('/local/templates/main/css/../fonts/icomoon.svg?4cq3ps#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-chevron-bottom:before {
    content: "\e905";
}
.icon-chevron-left2:before {
    content: "\e906";
}
.icon-chevron-right2:before {
    content: "\e907";
}
.icon-chevron-top:before {
    content: "\e908";
}
.icon-chevron-right:before {
    content: "\e901";
}
.icon-chevron-left:before {
    content: "\e902";
}
.icon-chevron-down:before {
    content: "\e903";
}
.icon-chevron-up:before {
    content: "\e904";
}
.icon-briefcase:before {
    content: "\e900";
}
.icon-cart:before {
    content: "\e031";
}
.icon-zoom:before {
    content: "\e08f";
}
 
/* End */


/* Start:/local/templates/main/css/bonditka-tmp.css?1664370380878*/
.aboutHeader:after,
.o-kompanii-page .page-head:after {
    content: '';
    display: block;
    clear: both;
}

.aboutHeader,
.o-kompanii-page .page-head {
    display: block;
    -js-display: flex;
    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;
}

.headerUserMenu {
    display: none;
}

.aboutTeamCard {
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
}

.aboutTeamCard:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}
/* End */


/* Start:/local/templates/main/css/swiper.css?166437038022251*/
/**
 * Swiper 4.3.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 5, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-invisible-blank-slide {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* End */


/* Start:/local/templates/main/css/blocks.css?166437038016165*/
.document {
  margin: 0 auto 41px;
  min-width: 320px;
  max-width: 1600px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.document * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 1279px) {
  .document {
    padding: 0 50px 50px;
  }
}
@media only screen and (max-width: 768px) {
  .document {
    padding: 0 20px 50px;
  }
}
.documentTextWrapper {
  padding: 0 108px 36px;
}
@media only screen and (max-width: 1279px) {
  .documentTextWrapper {
    padding: 0 0 36px;
  }
}
@media only screen and (max-width: 768px) {
  .documentTextWrapper {
    padding: 0 0 30px;
  }
}
.page-page .page-head {
  margin: 0;
  padding: 50px 47px 39px;
  background-color: #fff;
}
@media only screen and (max-width: 1279px) {
  .page-page .page-head {
    padding: 50px 30px 39px;
  }
}
@media only screen and (max-width: 768px) {
  .page-page .page-head {
    padding: 50px 20px 39px;
  }
}
.page-page .page-title {
  padding: 0;
  max-width: 650px;
  font-family: "GothamProBold";
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.1px;
}
@media only screen and (max-width: 600px) {
  .page-page .page-title {
    font-size: 30px;
    line-height: 33px;
  }
}
@media only screen and (max-width: 500px) {
  .page-page .page-title {
    font-size: 24px;
    line-height: 27px;
  }
}
.page-page .document h2 {
  margin: 0 0 15px;
  padding: 0;
  font-family: "GothamProRegular";
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.1px;
}
@media only screen and (max-width: 600px) {
  .page-page .document h2 {
    font-size: 18px;
    line-height: 16px;
  }
}
.page-page .document h3 {
  margin: 0 0 10px;
  padding: 0;
  font-family: "GothamProRegular";
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.1px;
}
@media only screen and (max-width: 600px) {
  .page-page .document h3 {
    font-size: 16px;
    line-height: 18px;
  }
}
.page-page .document h4 {
  margin: 0 0 10px;
  padding: 0;
  font-family: "GothamProBold";
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.1px;
}
@media only screen and (max-width: 600px) {
  .page-page .document h4 {
    font-size: 16px;
    line-height: 18px;
  }
}
.page-page .document h5 {
  margin: 0 0 10px;
  padding: 0;
  font-family: "GothamProRegular";
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.1px;
}
@media only screen and (max-width: 600px) {
  .page-page .document h5 {
    font-size: 15px;
    line-height: 17px;
  }
}
.page-page .document p {
  margin: 0 0 16px;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.1px;
}
.page-page .document p:last-child {
  margin: 0;
}
.page-page .document ul {
  margin: 0 0 14px 52px;
  padding: 0;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1px;
}
@media only screen and (max-width: 500px) {
  .page-page .document ul {
    margin: 0 0 14px 25px;
  }
}
.page-page .document ul:last-child {
  margin: 0 0 0 52px;
}
.page-page .document ul li {
  position: relative;
  padding: 0 0 15px;
  list-style: none;
}
.page-page .document ul li:before {
  content: "";
  position: absolute;
  top: 11px;
  left: -38px;
  width: 22px;
  height: 1px;
  background-color: #979797;
}
@media only screen and (max-width: 500px) {
  .page-page .document ul li:before {
    left: -23px;
    width: 10px;
  }
}
.page-page .document a {
  border-bottom: 1px solid #98bc5e;
  color: #98bc5e;
  font-family: "proxima-nova";
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.1px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover) {
  .page-page .document a:hover {
    border-bottom: 1px solid transparent;
  }
}


.notFound {
  margin: 0 auto;
  padding: 60px 0 119px;
  min-width: 320px;
  max-width: 1600px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  background-color: #fafafa;
  background-image: url("/local/templates/main/css/../img/icon-notFound.svg");
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 100% auto;
}
.notFound * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 1350px) {
  .notFound {
    background-position: center 45px;
  }
}
@media only screen and (max-width: 1250px) {
  .notFound {
    padding: 60px 0 119px;
  }
}
@media only screen and (max-width: 1150px) {
  .notFound {
    background-size: 100% auto;
  }
}
@media only screen and (max-width: 700px) {
  .notFound {
    padding: 30px 0 50px;
  }
}
.notFoundTitle {
  margin: 0 0 29px;
  color: #000;
  font-family: "GothamProBlack";
  font-size: 28px;
  font-weight: 900;
  line-height: 32px;
}
.notFoundText {
  margin: 0 0 55px;
  color: rgba(0,0,0,0.8);
  font-family: "proxima-nova";
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.1px;
}
.notFoundText:last-child {
  margin: 0;
}
@media only screen and (max-width: 600px) {
  .notFoundText {
    margin: 0 0 25px;
  }
}
.notFoundPages {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 134px;
  text-align: left;
}
@media only screen and (max-width: 1150px) {
  .notFoundPages {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 800px) {
  .notFoundPages {
    display: block;
  }
}
.notFoundPageColumn {
  margin: 0 56px 0 0;
  width: 100%;
}
.notFoundPageColumn:last-child {
  margin: 0;
}
.notFoundPage {
  width: 100%;
  padding: 8px 0 8px 17px;
  border-bottom: 1px solid rgba(151,151,151,0.32);
}
.notFoundPageLink {
  text-decoration: none;
  color: #4a4a4a;
  font-family: "proxima-nova";
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.05px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover) {
  .notFoundPageLink:hover {
    opacity: 0.7;
  }
}


.payment {
  margin: 0 auto;
  min-width: 320px;
  max-width: 1600px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.payment * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.paymentBlock {
  padding: 48px 45px 36px;
  background-color: #fff;
  border-bottom: 1px solid rgba(151,151,151,0.2);
}
@media only screen and (max-width: 600px) {
  .paymentBlock {
    padding: 30px 25px;
  }
}
@media only screen and (max-width: 400px) {
  .paymentBlock {
    padding: 25px 20px;
  }
}
.paymentBlock:last-child {
  border-bottom: none;
}
.paymentBlockTitle {
  margin: 0 0 71px;
  color: #4a4a4a;
  font-family: "GothamProRegular";
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.09px;
}
@media only screen and (max-width: 600px) {
  .paymentBlockTitle {
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 500px) {
  .paymentBlockTitle {
    font-size: 21px;
  }
}
@media only screen and (max-width: 400px) {
  .paymentBlockTitle {
    margin: 0 0 10px;
  }
}
.paymentColumns {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 45px 21px;
}
@media only screen and (max-width: 1279px) {
  .paymentColumns {
    padding: 0 0 21px;
  }
}
@media only screen and (max-width: 1000px) {
  .paymentColumns {
    display: block;
  }
}
@media only screen and (max-width: 1000px) {
  .paymentColumn {
    display: block;
    padding: 0 !important;
    width: 100% !important;
  }
}
.paymentColumn:nth-child(1) {
  padding: 0 75px 0 0;
  width: 59%;
}
@media only screen and (max-width: 1000px) {
  .paymentColumn:nth-child(1) {
    margin: 0 0 50px;
  }
}
@media only screen and (max-width: 600px) {
  .paymentColumn:nth-child(1) {
    margin: 0 0 30px;
  }
}
.paymentColumn:nth-child(2) {
  width: 41%;
}
.paymentColumnLine {
  margin: 0 0 7px;
  width: 50px;
  height: 3px;
  background-color: #0a0a0a;
}
.paymentColumnLineMini {
  margin: 0 0 12px;
  width: 18px;
  height: 3px;
  background-color: #0a0a0a;
}
.paymentColumnTitle {
  margin: 0 0 5px;
  color: #000;
  font-family: "GothamProBold";
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media only screen and (max-width: 500px) {
  .paymentColumnTitle {
    font-size: 17px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 400px) {
  .paymentColumnTitle {
    font-size: 16px;
    line-height: 21px;
  }
}
.paymentColumnTitleText {
  margin: 0 0 45px;
}
@media only screen and (max-width: 600px) {
  .paymentColumnTitleText {
    margin: 0 0 25px;
  }
}
.paymentColumnSubtitle {
  margin: 0 0 35px;
  color: #4a4a4a;
  font-family: "GothamProRegular";
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 600px) {
  .paymentColumnSubtitle {
    margin: 0 0 25px;
  }
}
@media only screen and (max-width: 500px) {
  .paymentColumnSubtitle {
    font-size: 17px;
  }
}
@media only screen and (max-width: 400px) {
  .paymentColumnSubtitle {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 21px;
  }
}
.paymentColumnText {
  margin: 0 0 20px;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0.1px;
}
@media only screen and (max-width: 600px) {
  .paymentColumnText {
    margin: 0 0 15px;
  }
}
@media only screen and (max-width: 500px) {
  .paymentColumnText {
    font-size: 17px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 400px) {
  .paymentColumnText {
    font-size: 16px;
    line-height: 21px;
  }
}
.paymentColumn a {
  border-bottom: 1px solid #282828;
  color: #282828;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover) {
  .paymentColumn a:hover {
    border-bottom: 1px solid transparent;
  }
}
.paymentColumnTextSelected {
  margin: 0 0 20px;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.1px;
}
@media only screen and (max-width: 600px) {
  .paymentColumnTextSelected {
    margin: 0 0 15px;
  }
}
.paymentColumnTextAllotted {
  margin: 0 0 30px;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.1px;
}
@media only screen and (max-width: 600px) {
  .paymentColumnTextAllotted {
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 500px) {
  .paymentColumnTextAllotted {
    font-size: 17px;
    line-height: 23px;
  }
}
.paymentColumnTextRenouncement {
  margin: 0 0 20px;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.09px;
}
@media only screen and (max-width: 600px) {
  .paymentColumnTextRenouncement {
    margin: 0 0 15px;
  }
}
.paymentColumnTextLight {
  margin: 0 0 20px;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.09px;
}
@media only screen and (max-width: 600px) {
  .paymentColumnTextLight {
    margin: 0 0 15px;
  }
}
.paymentColumnImages {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 46px;
}
@media only screen and (max-width: 1000px) {
  .paymentColumnImages {
    margin: 0 0 30px;
  }
}
.paymentColumnImage {
  margin: 0 17px 0 0;
}
.paymentColumn .paymentFile {
  -js-display: inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 17px 39px 17px 36px;
  border-radius: 6px;
  border: 1px solid #ebebeb;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover) {
  .paymentColumn .paymentFile:hover {
    opacity: 0.7;
  }
}
.paymentColumn .paymentFileIcon {
  margin: 0 18px 0 0;
}
.paymentColumn .paymentFileIcon svg {
  width: 30px;
  height: 37px;
}
.paymentColumn .paymentFileText {
  margin: 0;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.09px;
}
.paymentColumn .paymentFileSize {
  margin: 0;
  color: #979797;
  font-family: "proxima-nova";
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07px;
}
.requisites {
  margin: 48px 53px 0 -24px;
  padding: 30px 0 27px 24px;
  width: calc(100% + 24px);
  border-radius: 6px;
  background-color: #f9f9f7;
}
.requisitesLine {
  margin: 0 0 8px;
  width: 18px;
  height: 3px;
  background-color: #0a0a0a;
}
.requisitesTitle {
  margin: 0 0 29px;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 16px;
  font-weight: 700;
}
.requisitesElements {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 220px;
}
.requisitesElement {
  margin: 0 0 10px;
}
.requisitesElement:last-child {
  margin: 0;
}
.requisitesElementTitle {
  margin: 0 0 2px;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 12px;
  font-weight: 700;
  line-height: 11px;
}
.requisitesElementText {
  margin: 0;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.09px;
}

.service {
  margin: 0 auto;
  min-width: 320px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #57b261;
  background-image: linear-gradient(135deg, #6eb956 0%, #3dab6e 100%);
}
.service * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 1279px) {
  .service {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 700px) {
  .service {
    padding: 0 20px;
  }
}
.serviceContent {
  padding: 23px 0 55px;
}
@media only screen and (max-width: 600px) {
  .serviceContent {
    padding: 23px 0 35px;
  }
}
.serviceCentral {
  padding: 0 134px;
}
@media only screen and (max-width: 1279px) {
  .serviceCentral {
    padding: 0 30px;
  }
}
.serviceTitle {
  margin: 0 0 11px;
  color: #fff;
  font-family: "GothamProBold";
  font-size: 16px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.06px;
}
.serviceBlocks {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1000px) {
  .serviceBlocks {
    display: block;
  }
}
.serviceBlock {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover) {
  .serviceBlock:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 1000px) {
  .serviceBlock {
    margin: 0 0 30px;
  }
  .serviceBlock:last-child {
    margin: 0;
  }
}
.serviceBlockIcon {
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 53px;
  height: 53px;
  margin: 0 13px 0 0;
  background-color: #fff;
  border-radius: 50%;
}
@media only screen and (max-width: 400px) {
  .serviceBlockIcon {
    margin: 0 7px 0 0;
  }
}
.serviceBlockIcon svg {
  width: 31px;
  height: 31px;
}
.serviceBlockText {
  color: #fff;
  font-family: "GothamProMedium";
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.09px;
}
@media only screen and (max-width: 400px) {
  .serviceBlockText {
    font-size: 16px;
  }
}

/* End */


/* Start:/local/templates/main/css/header.css?16744827206208*/
.flex {
    display: -webkit-flex;
    display: flex;
}
._aic {
    -webkit-align-items: center;
    align-items: center;
}
._jcsb {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
._jcfe {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.header-top {
    background: #fff;
}
.header-top__inner {
    height: 40px;
}
.header-top__logo {
    width: 200px;
}
.header-top__phone {
    text-align: right;
}
.header-top__logo a {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.header-top__logo a:hover {
    -webkit-opacity: .8;
    -moz-opacity: .8;
    opacity: .8;
}
.header-top__menu {
    width: calc(100% - 400px);
}
.header-top__menu-item {
    margin: 0 15px;
}
.header-top__menu-item a,
.header-top__phone a {
    color: #000;
    font-family: "GothamProMedium", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 12px;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.header-top__phone a {
    width: auto;
    white-space: nowrap;
    text-align: right;
}
.header-top__menu-item a:hover,
.header-top__phone a:hover {
    color: #3dab6d;
}
.header-top__phone a svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}
.header-top__phone a svg path {
    stroke: #000;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.header-top__phone a:hover svg path {
    stroke: #3dab6d;
}
.header-bottom {
    background: #3dab6d;
}
.header-bottom__inner {
    height: 80px;
}
.header-bottom__catalog-item {
    margin-right: 30px;
}
.header-bottom__catalog-item:last-child {
    margin-right: 0;
}
.header-bottom__catalog-item a {
    color: #fff;
    font-family: "GothamProMedium", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 14px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.header-bottom__catalog-item a:hover {
    color: #000;
}
.header-bottom__catalog-item a img {
    margin-right: 8px;
}
.header-bottom__right {
    height: 100%;
}
.header-bottom__right a {
    color: #fff;
    font-family: "GothamProMedium", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 14px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.header-bottom__right a:hover {
    color: #000;
}
.header-bottom__right > * {
    margin-right: 30px;
}
.header-bottom__right > *:last-child {
    margin-right: 0;
}
.header-bottom__search svg,
.header-bottom__cart svg {
    margin-right: 13px;
}
.header-bottom__search svg path {
    stroke: #fff;
}
.header-bottom__cart svg path:nth-child(2),
.header-bottom__cart svg path:nth-child(3) {
    fill: #fff;
}
.header-bottom__cart svg path:nth-child(1),
.header-bottom__cart svg path:nth-child(4) {
    stroke: #fff;
}
.header-top .iconMobileMenu {
    margin-left: 20px;
}

@media screen and (max-width: 1367px) {
    .header-top__menu-item {
        margin: 0 10px;
    }
    .header-top__menu-item a,
    .header-top__phone a {
        font-size: 11px;
    }
    .header-bottom__catalog-item {
        margin-right: 23px;
    }
    .header-bottom__catalog-item:last-child {
        margin-right: 0;
    }
    .header-bottom__catalog-item a,
    .header-bottom__right a {
        font-size: 11px;
    }
    .header-bottom__catalog-item a img {
        width: 26px;
        height: auto;
    }
    .header-bottom__right > * {
        margin-right: 20px;
    }
}
@media screen and (max-width: 900px) {
    .header-top__logo {
        width: auto;
    }
    .header-top__menu,
    .header-bottom__catalog {
        display: none;
    }
    .header-bottom__inner {
        height: 60px;
    }
    .header-bottom__right {
        width: 100%;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .header-bottom__right > * {
        margin-right: 0;
    }
    .header-bottom__right a {
        font-size: 10px;
    }
    .header-bottom__search svg,
    .header-bottom__cart svg {
        margin-right: 5px;
    }
}
@media screen and (max-width: 360px) {
    .header-top__phone span {
        display: none;
    }
}

.buttonWhite {
    display: inline-block;
    height: 32px;
    line-height: 30px !important;
    background: #fff;
    color: #000;
    padding: 0 15px;
    text-decoration: none;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.buttonWhite .buttonGradientText {
    line-height: inherit;
}
.buttonWhite:hover,
.buttonWhite:hover .buttonGradientText {
    color: #3dab6d;
}

/* ----- header v2 ----- */
._v2 .header-top {
    background: #3dab6d;
}
._v2 .header-top__menu-item a,
._v2 .header-top__phone a {
    color: #fff;
}
._v2 .header-top__menu-item a:hover,
._v2 .header-top__phone a:hover {
    color: #000;
}
._v2 .header-top__phone a svg path {
    stroke: #fff;
}
._v2 .header-top__phone a:hover svg path {
    stroke: #000;
}
._v2 .header-bottom {
    background: #fff;
    border-bottom: 1px solid #F5F5F5;
}
._v2 .header-bottom__catalog-item a,
._v2 .header-bottom__right a {
    color: #656565;
}
._v2 .header-bottom__catalog-item a:hover,
._v2 .header-bottom__right a:hover {
    color: #3dab6d;
}
._v2 .header-bottom__search svg path {
    stroke: #3dab6d;
}
._v2 .header-bottom__cart svg path:nth-child(2),
._v2 .header-bottom__cart svg path:nth-child(3) {
    fill: #3dab6d;
}
._v2 .header-bottom__cart svg path:nth-child(1),
._v2 .header-bottom__cart svg path:nth-child(4) {
    stroke: #3dab6d;
}
._v2 .buttonGradient:hover .buttonGradientText {
    color: #3dab6d;
}



@media(max-width:1199px){
    .header-bottom__catalog-item span { display: none; }
}
@media(min-width:1200px){
    .header-bottom__catalog { width: 100%; justify-content: space-around; }
    .header-bottom__catalog-item:last-child { display: block; margin-right: 30px; }
}
.header-bottom__catalog-item a img { max-height: 27px; }
/* End */


/* Start:/local/templates/main/css/forms.css?16643703807728*/
.popup {
  position: absolute;
  left: 0;
  right: 0;
  top: 140px;
  z-index: 1000;
  display: none;
}
@media all and (min-width: 1600px) {
  .popup .inner {
    width: 1060px;
    padding-left: 130px;
    padding-right: 90px;
  }
  .popup .inner .desc {
    float: right;
    width: 220px;
    font-size: 18px;
  }
  .popup form {
    width: 780px;
  }
}
.popupWrap {
  width: 900px;
  margin: 0 auto;
  padding: 40px 65px 70px;
  background: #f2f2f2;
  border-radius: 14px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .popupWrap {
    padding: 40px 20px;
    width: 100%;
  }
}
.popupTimes {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #2a2a2a;
  font-size: 30px;
  font-family: "GothamProRegular";
  line-height: 1;
  cursor: pointer;
  transition: color 0.4s;
}
.popupTimes:hover {
  color: #707070;
}
.popupTitle {
  font-size: 16px;
  font-family: "GothamProBold";
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #181818;
}
.popupDescription {
  margin-bottom: 35px;
  font-size: 16px;
}
.popupDescription a {
  color: #17ad80;
  text-decoration: none;
  transition: all 0.4s;
}
.popupDescription a:hover {
  text-decoration: underline;
}
.popupSuccess p {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 28px;
}
.popup-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #27b4ab;
  background: linear-gradient(-45deg, #00b3c4, #65b959);
  opacity: 0.8;
  z-index: 990;
  display: none;
}
.wrapper label.checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 5px;
}
.wrapper label.checkbox input {
  display: none;
}
.wrapper label.checkbox .field-name {
  display: block;
  color: #868686;
  padding-left: 22px;
}
.wrapper label.checkbox .field-name:before {
  content: '\f00c';
  font: 400px 400px 400px 12px/1px FontAwesome;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 15px;
  height: 15px;
  text-align: center;
  border: 1px solid #4fb67a;
  color: transparent;
  border-radius: 4px;
  transition: color 0.2s;
}
.wrapper .wrapper label.checkbox input:checked + .field-name:before {
  color: #000;
}
.wrapper .site-form label.required:after {
  content: '*';
  position: absolute;
  right: 18px;
  top: 7px;
  font-size: 22px;
  color: #17ad80;
}
.form-wrap .success-msg {
  font-size: 20px;
  font-weight: 700;
  color: #55ae4b;
  margin-bottom: 40px;
}
.form-wrap .error-msg {
  font-size: 20px;
  font-weight: 700;
  color: #fc0d1b;
  margin-bottom: 40px;
}
.site-form .col {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
}
.site-form .col .row {
  margin-left: 0;
}
.site-form .col:first-child .row {
  margin-left: -17px;
}
.site-form .row {
  margin-left: -17px;
}
.site-form label {
  display: block;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 25px;
  margin-left: -17px;
  margin-right: 17px;
  padding-left: 17px;
}
@media only screen and (max-width: 768px) {
  .site-form label {
    width: 100%;
    padding-left: 0;
  }
}
.site-form label.small {
  display: inline-block;
  width: 50%;
  vertical-align: top;
}
.site-form label.radio {
  padding-left: 33px;
}
.site-form label.radio .field-name {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.site-form label.radio .field-name:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: -33px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: linear-gradient(-45deg, #00b3c4, #65b959);
  background: linear-gradient(-45deg, #00b3c4, #65b959);
}
.site-form label.radio .field-name:after {
  content: '';
  position: absolute;
  left: -31px;
  top: 2px;
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  border: transparent;
  border-radius: 100%;
  background: #fafafa;
  transition: border-color 0.2s;
}
.site-form label.radio input:checked + .field-name:after {
  width: 6px;
  height: 6px;
  border: 3px solid #fafafa;
  background: linear-gradient(-45deg, #00b3c4, #65b959);
  background: linear-gradient(-45deg, #00b3c4, #65b959);
}
.site-form label.radio input:checked + .field-name:before {
  content: '\2022';
  font-size: 26px;
  line-height: 18px;
  text-align: center;
  color: #323232;
}
.site-form label em.valid {
  color: #848484;
}
.site-form label.or_ {
  margin: -10px 0 10px;
}
.site-form textarea {
  height: 170px;
  padding: 20px 25px;
  line-height: 1.7;
  resize: none;
}
.site-form .field-desc {
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
}
.site-form input[type=radio] {
  display: none;
}
.site-form input[type=submit] {
  height: 35px;
  line-height: 35px;
}
.site-form input[type=text],
.site-form input[type=tel],
.site-form input[type=password],
.site-form textarea {
  width: 100%;
  font-size: 14px;
  font-family: "GothamProRegular";
  box-sizing: border-box;
  border: none;
  outline: none;
  background: #fafafa;
  color: #2a2a2a;
  border-radius: 26px;
  transition: all 0.4s;
}
.site-form label.state-error input[type=text],
.site-form label.state-success input[type=text],
.site-form label.state-error input[type=tel],
.site-form label.state-success input[type=tel],
.site-form label.state-error input[type=password],
.site-form label.state-success input[type=password] {
  padding-top: 10px;
}
.site-form label.state-error textarea,
.site-form label.state-success textarea {
  padding-top: 25px;
}
.site-form label.state-error input[type=text],
.site-form label.state-error input[type=tel],
.site-form label.state-error input[type=password],
.site-form label.state-error textarea,
color #fc0d1b {
  border-color: #f00;
}
.site-form label.state-error em {
  color: #fc0d1b;
}
.site-form input[type=text],
.site-form input[type=tel],
.site-form input[type=password] {
  padding: 0 25px;
  height: 50px;
  line-height: 50px;
}
.site-form label.submit,
.site-form label.reset {
  display: inline-block;
  width: auto;
}
#order-form .field-desc {
  padding-left: 35px;
}
.site-form label em.invalid,
.site-form label em.valid {
  position: absolute;
  display: none;
  left: 40px;
  top: 5px;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  font-family: "GothamProRegular";
}
.site-form label textarea+em.valid+em.invalid,
.site-form label textarea+em.valid {
  top: -15px;
}
.site-form .state-error em.invalid,
.site-form .state-error+em.valid+em.invalid {
  display: block;
}
.site-form .state-success em.valid,
.site-form .state-success+em.valid {
  display: block;
}
.small-form .inner {
  width: 500px;
  padding: 40px 50px;
}
.small-form .inner .title {
  margin-bottom: 20px;
}
.small-form .links {
  float: right;
  text-align: right;
  line-height: 25px;
  padding-right: 17px;
}
.popup#temp-message .inner {
  width: 540px;
  padding: 20px 30px 30px;
  left: 50%;
  margin-left: -300px;
  position: fixed;
}
.popup#temp-message .inner .times {
  right: 20px;
  top: 20px;
}
.profile-form {
  width: 600px;
}
@media all and (max-width: 1200px) {
  .site-form .col {
    width: 100%;
  }
  .site-form .col:first-child .row {
    margin-left: 0;
  }
  .site-form label {
    margin-left: 0;
  }
  .site-form label.small {
    width: 100%;
  }
  .site-form .row {
    margin-left: 0;
  }
  .site-form .required {
    font-size: 14px;
  }
  #faq-form textarea {
    height: 200px;
  }
}
@media all and (max-width: 1200px) {
  .site-form input[type=text],
  .site-form input[type=tel],
  .site-form input[type=password],
  .site-form textarea {
    font-size: 16px;
  }
}
@media all and (max-width: 1200px) {
  .site-form input[type=text],
  .site-form input[type=tel],
  .site-form input[type=password] {
    height: 50px;
  }
}

/* End */


/* Start:/local/templates/main/components/bitrix/menu/mobile/style.css?16878445545446*/
.bodyMobileMenuOpen .cont {
  transition: all 0.4s;
  overflow: hidden;
}
.bodyMobileMenuOpen .wrapper {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.mobileMenu {
  display: block;
  position: fixed;
  height: 100%;
  width: calc(100% - 40px);
  left: 0;
  top: 0;
  z-index: 10000;
  background-color: #fff;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
  transition: all 0.4s;
  padding: 40px 0;
}
.mobileMenuOpen {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.mobileMenuLeft {
  display: block;
  position: absolute;
  right: -40px;
  height: 100%;
  top: 0;
  width: 40px;
  background-color: #fafafa;-js-display: flex;display: flex;flex-direction: row;align-items: flex-start;justify-content: center;
}
.mobileMenuBack {
  width: 40px;
  height: 80px;
  background-color: #fff;
  border-bottom: 1px solid #e7e6e7;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: center;
}
.mobileMenuBack svg {
  width: 12px;
  height: 19px;
  fill: none;
  stroke: #3fb68d;
  stroke-width: 21px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobileMenuSection {
  display: block;
  padding-right: 16px;
  height: 41px;
  padding-top: 14px;
  margin-right: 16px;
  width: 52px;
  border-right: 1px solid #e5e5e5;
}
@media only screen and (min-width: 899px) {
  .mobileMenuSection {
    display: none;
  }
}
.mobileMenuButton {
  display: none;
}
@media only screen and (max-width: 900px) {
  .mobileMenuButton {
    background-color: transparent;
    outline: 0;
    border: 0;
    cursor: pointer;-js-display: flex;display: flex;flex-direction: column;justify-content: center;align-items: center;
  }
  .mobileMenuButton svg {
    width: 26px;
    height: 26px;
  }
}
.mobileMenuParent {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 40px;
  background-color: #fff;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
  transition: all 0.4s;
}
.mobileMenuParentShow {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.mobileMenuParentHeader {
  border-bottom: 1px solid #e7e6e7;
  padding-bottom: 19px;
  color: #c4c4c4;
  font-family: "GothamProMedium";
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 23px;
  cursor: pointer;
}
.mobileMenuCatalogItems {
  display: block;
  padding: 0 40px;-js-display: flex;display: flex;flex-direction: column;justify-content: flex-start;align-items: flex-start;
}
.mobileMenuCatalogItem {
  margin-bottom: 30px;
  color: #303030;
  font-family: "GothamProMedium";
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.mobileMenuCatalogItem a {
  color: #303030;
  text-decoration: none;
}
.mobileMenuCatalogItem a:hover {
  color: #c4c4c4;
}
.mobileMenuCatalogItemActive {
  color: #c4c4c4;
}
.mobileMenuCatalogItemActive a {
  color: #c4c4c4;
}
.mobileMenuLogin {
  border-top: 1px solid #e7e6e7;
  padding: 23px 40px;
}
.mobileMenuLogin a {
  display: block;
  color: #303030;
  font-family: "GothamProMedium";
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
}
.mobileMenuLocation {
  border-top: 1px solid #e7e6e7;
  padding: 23px 40px;-js-display: flex;display: flex;flex-direction: column;align-items: center;
}
.mobileMenuCurrentLocation {
  display: block;
  margin-bottom: 6px;
  color: #303030;
  font-family: "GothamProBold";
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
}
.mobileMenuLocationItem {
  margin-bottom: 30px;
  color: #303030;
  font-family: "GothamProMedium";
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  text-transform: uppercase;
}
.mobileMenuLocationItem a {
  color: #303030;
  text-decoration: none;
}
.mobileMenuLocationItem a:hover {
  color: #c4c4c4;
}
.mobileMenuLocationChange {
  background-color: #3fb68d;
  height: 19px;
  border: 0;
  outline: 0;
  padding: 6px 9px 4px;
  border-radius: 9px;
  color: #fff;
  font-family: "GothamProBold";
  font-size: 9px;
  line-height: 9px;
  text-transform: uppercase;
}
.mobileMenuSearch {
  border-top: 1px solid #e7e6e7;
  padding: 0px 40px;
}
.mobileMenuSearchFormIsShow .mobileMenuSearchButton {
  opacity: 0;
  visibility: hidden;
  padding: 0;
}
.mobileMenuSearchFormIsShow .mobileMenuSearchForm {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mobileMenuSearchButton {
  padding: 25px 0;-js-display: flex;display: flex;flex-direction: column;align-items: center;
}
.mobileMenuSearchButton >svg {
  width: 22px;
  height: 22px;
  fill: #444;
}
.mobileMenuSearchForm {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: relative;
  transition: all 0.3s;
}
.mobileMenuSearchForm svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  left: 16px;
  fill: #444;
}
.mobileMenuSearchForm input {
  display: inline-block;
  width: 100%;
  background-color: #f7f7f7;
  border-radius: 20px;
  border: 0;
  outline: 0;
  height: 40px;
  padding: 0 20px 0 40px;
  font-family: "proxima-nova", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 12px;
}

/* End */


/* Start:/local/templates/main/components/danke/search.title/search.line.new/style.css?16878445545002*/
.headerSearch {
  flex: 0 1 auto;
  position: relative;
}
@media only screen and (max-width: 900px) {
  .headerSearch {
    display: none;
  }
}
.headerSearchOpen .headerSearchFormInput {
  width: 100%;
}
.headerSearchOpen .headerSearchInput {
  flex: 1 1 auto;
  width: 100%;
}
.headerSearchOpen .headerSearchButton {
  z-index: 0;
}
.headerSearchOpen .headerSearchForm {
  overflow: visible;
  visibility: visible;
}
.headerSearchButton {
  z-index: 10;
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.headerSearchButton svg {
  transition: all 0.3s;
  width: 18px;
  height: 18px;
  fill: #444;
}
.headerSearchButton:hover svg {
  fill: #000;
}
.headerSearchInput {
  display: block;
  position: relative;
  width: 100%;
  height: 30px;
  overflow: hidden;
  transition: all 0.1s;-js-display: flex;display: flex;flex-direction: row;
}
.headerSearchInput svg {
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 10;
  width: 18px;
  height: 18px;
  fill: rgba(68, 68, 68, 0.52);
}
.headerSearchFormSubmit {
  position: relative;
  overflow: hidden;
  padding: 0 25px;
  background: linear-gradient(-45deg, #65b959, #00b3c4, #65b959);
  background-size: 200% 100%;
  border: none;
  border-radius: 15px;
  color: #fff;
  font-family: 'GothamProBold';
  font-size: 11px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.5s;
}
.headerSearchFormSubmit span {
  display: block;
  position: relative;
  height: 30px;
  z-index: 100;
  padding-top: 1px;
  padding-right: 5px;
}
.headerSearchFormSubmit:before {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  left: -100%;
  z-index: 0;
  background: linear-gradient(-45deg, #65b959, #00b3c4);
  content: '';
  border-radius: 16px;
  transition: left 0.5s, right 0.5s;
}
.headerSearchFormSubmit:hover {
  background-position: -100% 0;
}
.headerSearchFormSubmit:hover:before {
  right: 0;
  left: 0;
}
.headerSearchFormClose {
  height: 30px;
  margin-left: 27px;
  cursor: pointer;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
.headerSearchForm {
  position: absolute;
  top: -12px;
  right: -5px;
  width: 0;
  height: 40px;
  line-height: 40px;
  padding: 5px 0 5px 20px;
  overflow: hidden;
  visibility: hidden;
  background-color: #fff;
  transition: all 0.3s;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
.headerSearchFormInput {
  position: relative;
  vertical-align: top;
  right: 0;
  width: 0;
  height: 30px;
  margin-right: 7px;
  padding: 0 15px 0 32px;
  box-sizing: border-box;
  border: 0;
  color: #000;
  font-family: 'GothamProRegular';
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.12px;
  outline: 0;
  transition: all 0.3s;
}
.top-search {
  flex: 0 1 auto;
  margin-right: 35px;
}
.top-search .search-button {
  color: #444;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
}
.top-search .search-button:hover {
  color: #000;
}
.top-search form {
  display: none;
  position: absolute;
  top: 30px;
  right: 240px;
  left: 200px;
}
.top-search form .search-button {
  position: absolute;
  top: 3px;
  left: 13px;
}
.top-search input[type=text] {
  vertical-align: top;
  width: 100%;
  height: 30px;
  padding: 0 15px 0 35px;
  box-sizing: border-box;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  line-height: 30px;
  outline: 0;
}
.top-search .submit {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 30px;
  box-sizing: border-box;
  text-align: center;
}
.top-search input[type=submit] {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .top-search {
    display: none;
  }
}
div.title-search-result {
  display: none;
  top: 58px;
  z-index: 205;
}
.headerSearchSuggest {
  display: block;
  width: 100%;
  max-width: 480px;
  min-width: 480px;
  padding: 5px 16px;
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}
.headerSearchSuggestItem {
  display: block;
  padding: 10px 16px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #efefef;
}
.headerSearchSuggestItem:last-child {
  border-bottom: 1px solid transparent;
}
.headerSearchSuggestItem:hover div {
  border-bottom: 1px solid #000;
}
.headerSearchSuggestItem div {
  display: inline-block;
  border-bottom: 1px solid transparent;
  color: #000;
  font-family: 'GothamProRegular';
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -0.2px;
  text-decoration: none;
  transition: all 0.4s;
}
.headerSearchSuggestItem div b {
  font-weight: 400;
}



@media only screen and (max-width: 900px) {
  .header-bottom__right { position: relative; }
  .headerSearch { display: block; position: static; }
  .headerSearchForm { right: inherit; top: 10px; }
  .headerSearchFormClose { margin-left: 10px; }
  .headerSearch.headerSearchOpen .headerSearchForm { width: 100%!important; }
}
/* End */


/* Start:/local/templates/main/components/bitrix/menu/section/style.css?1687844554862*/
.sectionMenu {
  flex: 1 1 auto;
  margin: 15px 0 10px;
}
@media only screen and (max-width: 768px) {
  .sectionMenu {
    display: none;
  }
}
.sectionMenuItems {
  flex-wrap: nowrap;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
@media only screen and (max-width: 1050px) {
  .sectionMenuItems {
    flex-wrap: wrap;
  }
}
.sectionMenuItem {
  margin-left: 3px;
  line-height: 26px;
  margin-bottom: 5px;
  white-space: nowrap;
}
.sectionMenuItem a {
  display: block;
  padding: 0 13px;
  white-space: nowrap;
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "GothamProMedium";
  color: #444;
  border-radius: 16px;
}
.sectionMenuItem a:hover {
  color: #fff;
  background: #ccc;
}
.sectionMenuItemActive a {
  color: #fff;
  background: linear-gradient(-45deg, #65b959, #00b3c4, #65b959);
}

/* End */


/* Start:/local/templates/main/components/bitrix/menu/page/style.css?16878445541035*/
.pageHeaderMenu {
  flex: 0 1 auto;
  flex-wrap: wrap;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
@media only screen and (max-width: 767px) {
  .pageHeaderMenu {
    display: none;
  }
}
.pageHeaderMenuItem {
  flex: 0 1 auto;
  padding-top: 3px;
}
.pageHeaderMenuItem a {
  position: relative;
  color: rgba(40,40,40,0.9);
  font-family: "GothamProRegular";
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  margin-right: 32px;
  transition: all 0.5s;
  white-space: nowrap;
}
.pageHeaderMenuItem a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(40,40,40,0.9);
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  transition: all 0.2s ease-in-out 0s;
}
.pageHeaderMenuItem a:hover {
  color: #000;
}
.pageHeaderMenuItem a:hover:after {
  background-color: #000;
  visibility: hidden;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

/* End */


/* Start:/local/templates/main/components/bitrix/menu/footer/style.css?16878445542083*/
.footerMenu {
  flex: 0 1 auto;
}
.footerMenu ul {
  flex-wrap: wrap;
  padding: 0;
  margin: 0;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
.footerMenu .selected a {
  color: #979797;
}
.footerMenu li {
  flex: 0 1 auto;
  padding: 0 27px;
  border-right: 1px solid #eaeaea;
  line-height: 20px;
  white-space: nowrap;
}
.footerMenu li:first-child {
  padding-left: 0;
}
.footerMenu li:last-child {
  border-right: none;
  padding-right: 0;
}
.footerMenu li a {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "GothamProMedium";
  color: #292929;
}
.footerMenu li a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 950px) {
  .footerMenu li {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(99.9% * 1/3 - (30px - 30px * 1/3));
    max-width: calc(99.9% * 1/3 - (30px - 30px * 1/3));
    width: calc(99.9% * 1/3 - (30px - 30px * 1/3));
    padding: 0 25px;
    text-align: center;
    margin-bottom: 20px;
  }
  .footerMenu li:nth-child(1n) {
    margin-right: 30px;
    margin-left: 0;
  }
  .footerMenu li:last-child {
    margin-right: 0;
  }
  .footerMenu li:nth-child(3n) {
    margin-right: 0;
    margin-left: auto;
  }
  .footerMenu li:nth-child(3n) {
    border-right: 0;
  }
  .footerMenu li:first-child {
    padding-left: 25px;
  }
  .footerMenu li:last-child {
    border-right: none;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .footerMenu li {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(99.9% * 1/2 - (30px - 30px * 1/2));
    max-width: calc(99.9% * 1/2 - (30px - 30px * 1/2));
    width: calc(99.9% * 1/2 - (30px - 30px * 1/2));
    border-right: 0;
    text-align: left;
    margin-bottom: 10px;
    padding: 0;
  }
  .footerMenu li:nth-child(1n) {
    margin-right: 30px;
    margin-left: 0;
  }
  .footerMenu li:last-child {
    margin-right: 0;
  }
  .footerMenu li:nth-child(2n) {
    margin-right: 0;
    margin-left: auto;
  }
  .footerMenu li:first-child {
    padding-left: 0;
  }
}

/* End */


/* Start:/local/components/danke/ajax.loader/templates/.default/style.css?16878445542509*/
.bx-core-waitwindow {
  display: none !important;
}
.ajaxLoader {
  display: block;
  opacity: 0;
  position: fixed;
  z-index: -1;
  top: 0;
  right: 65px;
}
.ajaxLoaderShow {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.cssload-jumping {
  position: relative;
  display: block;
  margin: 97px auto;
  width: 107px;
}
.cssload-jumping span {
  display: inline-block;
  height: 15px;
  width: 15px;
  background: #58c565;
  border-radius: 487px;
  background-clip: padding-box;
}
.cssload-jumping span:nth-child(1) {
  -webkit-animation: scale 0.8s 0.075s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
          animation: scale 0.8s 0.075s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.cssload-jumping span:nth-child(2) {
  -webkit-animation: scale 0.8s 0.16s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
          animation: scale 0.8s 0.16s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.cssload-jumping span:nth-child(3) {
  -webkit-animation: scale 0.8s 0.235s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
          animation: scale 0.8s 0.235s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.cssload-jumping span:nth-child(4) {
  -webkit-animation: scale 0.8s 0.32s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
          animation: scale 0.8s 0.32s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.cssload-jumping span:nth-child(5) {
  -webkit-animation: scale 0.8s 0.395s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
          animation: scale 0.8s 0.395s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.cssload-jumping,
.cssload-jumping * {
  box-sizing: border-box;
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  25% {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
    background: #58c565;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    margin: 0 3px;
    background: rgba(88,197,101,0.65);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  25% {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
    background: #58c565;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    margin: 0 3px;
    background: rgba(88,197,101,0.65);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

/* End */


/* Start:/local/templates/main/template_styles.css?174947216272644*/
.content {
  padding: 50px 0 230px;
}
.main-page .content {
  padding-top: 0;
  margin-top: -90px;
}
h4 {
  font-size: 16px;
  font-family: "GothamProBold";
  margin-bottom: 1em;
}
h5 {
  font-size: 12px;
  font-family: "GothamProBold";
  color: #696969;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1em;
}
p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 1em;
  font-weight: 300;
}
.fade {
  animation-name: fade;
  -webkit-animation-name: fade;
  animation-duration: 0.8s;
  -webkit-animation-duration: 0.8s;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  font: 14px/1.3em "proxima-nova", Arial, sans-serif;
  height: 100%;
  color: #2f2f2f;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: none;
  -moz-osx-font-smoothing: grayscale;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
textarea,
input[type=text],
input[type=password],
input[type=email],
input[type=submit],
input[type=reset],
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
button {
  padding: 0;
}
textarea {
  resize: none;
}
b {
  font-weight: 700;
}
em {
  font-style: italic;
  font-weight: 400;
}
img {
  max-width: 100%;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100%;
}
.cont {
  position: relative;
  min-height: 100vh;
  overflow: hidden;-js-display: flex;display: flex;flex-direction: column;justify-content: flex-start;
}
.wrapper {
  flex: 1 1 auto;
  position: relative;
  width: 100vw;
  max-width: 1920px;
  min-width: 320px;
  margin: 0 auto;
  padding-top: 86px;
  background: #fafafa;
  transition: all 0.4s ease;
}
.centered {
  max-width: 1600px;
  min-width: 320px;
  margin: 0 auto;
  padding: 0 90px;
}
@media only screen and (max-width: 1279px) {
  .centered {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 768px) {
  .centered {
    padding: 0 20px;
  }
}
.negative {
  margin-right: -90px;
  margin-left: -90px;
}
.content {
  flex: 1 1 100%;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 0 !important;
}
@media only screen and (max-width: 600px) {
  .content {
    padding-top: 25px;
  }
}
.main-page .content {
  margin-top: -90px;
  padding-top: 0;
}
.clear {
  clear: both;
}
.clearfix:after {
  display: table;
  content: '';
  clear: both;
}
.footer {
  flex: 0 1 auto;
  position: relative;
  width: 100%;
  height: 250px;
  min-width: 320px;
  margin: 0 auto;
  background: #efefef;-js-display: flex;display: flex;flex-direction: column;
}
@media only screen and (max-width: 900px) {
  .footer {
    height: 230px;
  }
}
@media only screen and (max-width: 768px) {
  .footer {
    height: auto;
  }
}
.footerTop {
  flex: 0 1 auto;
  -js-display: flex;
  display: flex;
  position: relative;
  height: 115px;
  min-height: 115px;
  background: #fff;
  flex-wrap: nowrap;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: space-between;
}
.footerTop:after {
  content: '';
  display: block;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .footerTop {
    height: auto;
  }
}
.footerTop .centered {
  width: 100%;
  max-width: 1600px;
  padding: 30px 50px;
  flex-wrap: nowrap;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: space-between;
}
@media only screen and (max-width: 1279px) {
  .footerTop .centered {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 768px) {
  .footerTop .centered {
    padding: 30px 40px;
  }
}
.footer .menu {
  flex: 0 1 auto;
}
.footer .menu ul {
  flex-wrap: wrap;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
.footer .menu li {
  flex: 0 1 auto;
  padding: 0 27px;
  border-right: 1px solid #eaeaea;
  line-height: 20px;
  white-space: nowrap;
}
.footer .menu li:first-child {
  padding-left: 0;
}
.footer .menu li:last-child {
  padding-right: 0;
  border-right: none;
}
.footer .menu li a {
  display: block;
  color: #292929;
  font-family: 'GothamProMedium';
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
}
.footer .menu li a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 950px) {
  .footer .menu li {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(99.9% * 1/3 - (30px - 30px * 1/3));
    max-width: calc(99.9% * 1/3 - (30px - 30px * 1/3));
    width: calc(99.9% * 1/3 - (30px - 30px * 1/3));
    margin-bottom: 20px;
    padding: 0 25px;
    text-align: center;
  }
  .footer .menu li:nth-child(1n) {
    margin-right: 30px;
    margin-left: 0;
  }
  .footer .menu li:last-child {
    margin-right: 0;
  }
  .footer .menu li:nth-child(3n) {
    margin-right: 0;
    margin-left: auto;
  }
  .footer .menu li:nth-child(3n) {
    border-right: 0;
  }
  .footer .menu li:first-child {
    padding-left: 25px;
  }
  .footer .menu li:last-child {
    padding-right: 25px;
    border-right: none;
  }
}
@media only screen and (max-width: 767px) {
  .footer .menu li {
    width: calc(99.9% * 1/2 - (30px - 30px * 1/2));
    margin-bottom: 10px;
    border-right: 0;
    text-align: left;
  }
  .footer .menu li:nth-child(1n) {
    float: left;
    margin-right: 30px;
    clear: none;
  }
  .footer .menu li:last-child {
    margin-right: 0;
  }
  .footer .menu li:nth-child(2n) {
    margin-right: 0;
    float: right;
  }
  .footer .menu li:nth-child(2n + 1) {
    clear: both;
  }
}
.footerPayment {
  flex: 0 1 auto;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
.footerPayment .desc {
  margin-left: 25px;
  color: #454545;
  font-size: 12px;
  font-style: italic;
  line-height: 14px;
  white-space: nowrap;
}
@media only screen and (max-width: 1279px) {
  .footerPayment {
    display: none;
  }
}
.footerBottom {
  position: relative;
  height: 135px;
  min-height: 135px;
  background: #fafafa;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: space-between;
}
@media only screen and (max-width: 900px) {
  .footerBottom {
    height: 115px;
    min-height: 115px;
  }
}
@media only screen and (max-width: 768px) {
  .footerBottom {
    height: auto;
  }
}
.footerBottom .centered {
  width: 100%;
  max-width: 1600px;
  padding: 0 50px;
  flex-wrap: nowrap;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: space-between;
}
@media only screen and (max-width: 1279px) {
  .footerBottom .centered {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 768px) {
  .footerBottom .centered {
    height: auto;
    padding: 30px 20px;-js-display: flex;display: flex;flex-direction: column;align-items: center;
  }
}
.footerBottom .fa {
  width: 27px;
  height: 27px;
  background: #c0c0c0;
  border-radius: 100%;
  color: #5f5f5f;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  transition: background 0.3s;
}
.footerBottom a:hover .fa {
  background: #808080;
  color: #fff;
}
.footerCopy {
  color: #3b3b3b;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footerCopy span {
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .footerCopy {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 750px) {
  .footerCopy {
    order: 2;
  }
}
@media only screen and (max-width: 450px) {
  .footerCopy {
    font-size: 10px;
    text-align: center;
  }
}
.footerBottom .phone {
  margin-left: 20px;
  text-decoration: none;
  flex-wrap: nowrap;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
@media only screen and (max-width: 768px) {
  .footerBottom .phone {
    display: none;
  }
}
.footerBottom .phone .number {
  margin-left: 10px;
  color: #191919;
  font-family: 'GothamProBold';
  font-size: 14px;
  font-weight: 700;
  text-shadow: 1px 1px 1px #fff;
  white-space: nowrap;
}
@media only screen and (max-width: 850px) {
  .footerBottom .phone .number {
    display: none;
  }
}
.footerPowered {
  color: #3b3b3b;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media only screen and (max-width: 750px) {
  .footerPowered {
    order: 2;
  }
}
@media only screen and (max-width: 450px) {
  .footerPowered {
    font-size: 10px;
    text-align: center;
  }
}
.footerPowered a {
  color: #3b3b3b;
  text-decoration: underline;
}
.footerPowered a:hover {
  text-decoration: none;
}
.footerSocials {
  margin-right: 20px;
  flex-wrap: nowrap;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
@media only screen and (max-width: 850px) {
  .footerSocials {
    margin-right: 11px;
  }
}
@media only screen and (max-width: 768px) {
  .footerSocials {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 750px) {
  .footerSocials {
    margin-right: 0;
    margin-bottom: 25px;
    order: 1;
  }
  .footerSocials.tl {
    margin-right: 20px;
    margin-bottom: 25px;
    order: 1;
  }
  
}

.footerSocialItem._tl {
  background: #0088cc;
  width: 28px !important;
  height: 28px !important;
  margin: 0px 44px 0px 0px;
}

.footerSocialItem {
  flex: 0 1 auto;
  margin-right: 11px;
  background: #c0c0c0;
  border-radius: 100%;
  transition: all 0.3s;
  width: 27px;
  height: 27px;-js-display: flex;display: flex;flex-direction: column;justify-content: center;align-items: center;
}
@media only screen and (max-width: 800px) {
  .footerSocialItem {
    margin-right: 0;
    width: 30px;
    height: 30px;
  }
}
.footerSocialItem svg {
  width: 17px;
  height: 17px;
  fill: #5a5a5a;
}
@media only screen and (max-width: 800px) {
  .footerSocialItem svg {
    width: 20px;
    height: 20px;
  }
}
.footerSocialItem:hover {
  background-color: #808080;
}
.footerSocialItem:hover svg {
  fill: #fff;
}
.footerSocialItemMail {
  flex: 0 1 auto;
  margin-left: 40px;
  text-decoration: none;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
@media only screen and (max-width: 800px) {
  .footerSocialItemMail {
    margin-left: 20px;
  }
  .footerSocialItemMail:first-child {
    margin-left: 0;
  }
}
.footerSocialItemMailIcon {
  margin-right: 11px;
  background: #c0c0c0;
  border-radius: 100%;
  transition: all 0.3s;
  width: 27px;
  height: 27px;-js-display: flex;display: flex;flex-direction: column;justify-content: center;align-items: center;
}
@media only screen and (max-width: 1050px) {
  .footerSocialItemMailIcon {
    margin-right: 0;
  }
}
@media only screen and (max-width: 800px) {
  .footerSocialItemMailIcon {
    width: 30px;
    height: 30px;
  }
}
.footerSocialItemMailIcon svg {
  width: 15px;
  height: 15px;
  fill: #5a5a5a;
}
@media only screen and (max-width: 800px) {
  .footerSocialItemMailIcon svg {
    width: 18px;
    height: 18px;
  }
}
.footerSocialItemMailText {
  opacity: 0.7;
  color: #191919;
  font-family: 'GothamProBold';
  font-size: 14px;
  line-height: 12px;
  text-shadow: 2px 2.2px 0 #fff;
  transition: all 0.3s;
}
@media only screen and (max-width: 1050px) {
  .footerSocialItemMailText {
    display: none;
  }
}
.footerSocialItemMail:hover .footerSocialItemMailIcon {
  background-color: #808080;
}
.footerSocialItemMail:hover .footerSocialItemMailIcon svg {
  fill: #fff;
}
.footerSocialItemMail:hover .footerSocialItemMailText {
  opacity: 1;
  text-shadow: none;
}
.footerSocialItemOrder {
  -js-display: flex;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  margin: 0 10px;
}
.footerSocialItemOrderText {
  margin: 0 0 0 38px;
  width: 205px;
  height: 0;
  color: #5a5a5a;
  font-family: "proxima-nova", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
}
@media only screen and (max-width: 900px) {
  .footerSocialItemOrderText {
    display: none;
  }
}
.footerSocialItemPhone {
  text-decoration: none;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
@media only screen and (max-width: 900px) {
  .footerSocialItemPhone {
    margin-left: 15px;
  }
}
@media only screen and (max-width: 800px) {
  .footerSocialItemPhone {
    display: none;
  }
}
.footerSocialItemPhoneIcon {
  margin-right: 11px;
  background: #c0c0c0;
  border-radius: 100%;
  transition: all 0.3s;
  width: 27px;
  height: 27px;-js-display: flex;display: flex;flex-direction: column;justify-content: center;align-items: center;
}
.footerSocialItemPhoneIcon svg {
  width: 15px;
  height: 15px;
  fill: #5a5a5a;
}
.footerSocialItemPhoneText {
  opacity: 0.7;
  color: #191919;
  font-family: 'GothamProBold';
  font-size: 14px;
  line-height: 12px;
  text-shadow: 2px 2.2px 0 #fff;
  transition: all 0.3s;
  white-space: nowrap;
}
@media only screen and (max-width: 900px) {
  .footerSocialItemPhoneText {
    display: none;
  }
}
.footerSocialItemPhone:hover .footerSocialItemPhoneIcon {
  background-color: #808080;
}
.footerSocialItemPhone:hover .footerSocialItemPhoneIcon svg {
  fill: #fff;
}
.footerSocialItemPhone:hover .footerSocialItemPhoneText {
  opacity: 1;
  text-shadow: none;
}
.buttonGradient {
  -js-display: inline-flex !important;
  display: inline-flex !important;
  position: relative;
  width: auto;
  height: 38px;
  z-index: 2;
  padding: 0 22px;
  background-color: transparent;
  border: 2px solid #46b685;
  border-radius: 18px;
  text-align: center;
  text-decoration: none !important;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: center;
}
.buttonGradientText {
  z-index: 100;
  padding-top: 1px;
  pointer-events: none;
  color: #000;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif, Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.3s;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: space-between;
}
.buttonGradientText .iconButtonArrow {
  margin-top: -2px;
  margin-left: 8px;
  width: 7px;
  height: 7px;
  fill: #31b5a0;
}
.buttonGradientText .iconCart {
  flex: 0 1 auto;
  width: 23px;
  height: 23px;
  fill: #46b685;
}
.buttonGradientText .iconFilterSubmit {
  flex: 0 1 auto;
  margin-left: -3px;
  color: #000;
  transition: all 0.5s;
  width: 20px;
  height: 20px;
}
.buttonGradientText span {
  margin-left: 5px;
  color: #46b685;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  transition: all 0.3s;
}
.buttonGradient >svg {
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  z-index: -1;
}
.buttonGradient:hover .buttonGradientText,
.buttonGradientActive .buttonGradientText {
  color: #fff;
}
.buttonGradient:hover .buttonGradientText .iconButtonArrow,
.buttonGradientActive .buttonGradientText .iconButtonArrow {
  fill: #fff;
}
.buttonGradient:hover .buttonGradientText .iconCart,
.buttonGradientActive .buttonGradientText .iconCart {
  fill: #fff;
}
.buttonGradient:hover .buttonGradientText .iconFilterSubmit,
.buttonGradientActive .buttonGradientText .iconFilterSubmit {
  fill: #fff;
}
.buttonGradient:hover .buttonGradientText span,
.buttonGradientActive .buttonGradientText span {
  color: #fff;
}
.buttonGradientSmall {
  height: 32px;
  padding: 0 15px 0 17px;
  border-radius: 17px;
}
.buttonGrey {
  -js-display: inline-flex !important;
  display: inline-flex !important;
  position: relative;
  width: auto;
  height: 38px;
  z-index: 2;
  padding: 0 22px;
  background-color: #e9e9e9;
  border: 0;
  border-radius: 19px;
  text-align: center;
  text-decoration: none !important;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: center;
}
.buttonGreyText {
  flex: 0 1 auto;
  z-index: 100;
  padding-top: 1px;
  color: #000;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.3s;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: space-between;
}
.buttonGreyText .iconDelete {
  flex: 0 1 auto;
  margin-top: -1px;
  transition: all 0.5s;
  width: 18px;
  height: 18px;
}
.buttonGrey:hover {
  background-color: #bababa;
}
.buttonGrey:hover .buttonGradientText {
  color: #fff;
}
.buttonGrey:hover .buttonGradientText .iconDelete {
  stroke: #fff;
}
.buttonGreySmall {
  -js-display: inline-flex !important;
  display: inline-flex !important;
  position: relative;
  width: auto;
  height: 26px;
  z-index: 2;
  padding: 0 14px;
  background-color: #e9e9e9;
  border: 0;
  border-radius: 19px;
  text-align: center;
  text-decoration: none !important;
  outline: 0;
  transition: all 0.3s;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: center;
}
.buttonGreySmallText {
  flex: 0 1 auto;
  z-index: 100;
  padding-top: 1px;
  color: #000;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.3s;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: space-between;
}
.buttonGreySmallText .iconDelete {
  flex: 0 1 auto;
  margin-top: -1px;
  transition: all 0.5s;
  width: 18px;
  height: 18px;
}
.buttonGreySmall:hover {
  background-color: #bababa;
}
.buttonGreySmall:hover .buttonGradientText {
  color: #fff;
}
.buttonGreySmall:hover .buttonGradientText .iconDelete {
  stroke: #fff;
}
.buttonFill {
  -js-display: inline-flex !important;
  display: inline-flex !important;
  position: relative;
  justify-content: center;
  width: auto;
  height: 42px;
  min-height: 42px;
  z-index: 2;
  margin-right: -2px;
  padding: 0 28px;
  background-color: transparent;
  background-image: linear-gradient(-45deg, #03b2d7, #75b94c);
  border: 0;
  border-radius: 20px;
  text-align: center;
  text-decoration: none !important;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;
  align-items: center;
}
.buttonFillText {
  z-index: 100;
  margin: auto;
  padding-top: 4px;
  padding-right: 8px;
  color: #fff;
  font-family: 'GothamProBold';
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none !important;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.18);
  transition: all 0.3s;
  white-space: nowrap;
}
.buttonFill >svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.buttonGreen {
  -js-display: inline-flex !important;
  display: inline-flex !important;
  position: relative;
  width: auto;
  height: 44px;
  z-index: 2;
  padding: 17px 29px 13px;
  background-color: transparent;
  background-color: #5db768;
  border: 0;
  border-radius: 22px;
  color: #000;
  font-family: 'GothamProBold';
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none !important;
  text-shadow: 0.5px 0.9px 0 rgba(255,255,255,0.56);
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: center;
}
.buttonGreen:hover {
  background-color: #7dc586;
}
.buttonOutline {
  -js-display: inline-flex !important;
  display: inline-flex !important;
  position: relative;
  width: auto;
  height: 32px;
  z-index: 2;
  padding: 12px 17px 8px;
  background-color: transparent;
  background-color: transparent;
  border: 1px solid #fcfcfc;
  border-radius: 16px;
  color: #fff;
  font-family: 'GothamProBold';
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none !important;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: center;
}
.buttonOutline:hover {
  background-color: #fff;
  color: #000;
}
.buttonGradientMobile {
  -js-display: inline-flex !important;
  display: inline-flex !important;
  position: relative;
  width: auto;
  height: 38px;
  z-index: 2;
  z-index: 10;
  padding: 0 22px;
  background-color: transparent;
  border: 2px solid #46b685;
  border-radius: 18px;
  text-align: center;
  text-decoration: none !important;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-tap-highlight-color: rgba(0,0,0,0);-js-display: flex;display: flex;flex-direction: column;justify-content: center;align-items: center;
}
.buttonGradientMobile:active {
  background: linear-gradient(-45deg, #65b959, #00b3c4, #65b959);
}
.buttonGradientMobile:active .buttonGradientMobileText {
  color: #fff;
}
.buttonGradientMobile:active .buttonGradientMobileText svg * {
  fill: #fff !important;
}
.buttonGradientMobileText {
  flex: 1 1 auto;
  z-index: 100;
  pointer-events: none;
  color: #000;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif, Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.3s;
  align-self: stretch;-js-display: flex;display: flex;flex-direction: column;justify-content: center;align-items: center;
}
.buttonGradientMobileText .iconFilterSubmit {
  transition: all 0.5s;
  width: 20px;
  height: 20px;
}
.buttonGradientMobileText span {
  margin-left: 5px;
  color: #46b685;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  transition: all 0.3s;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 122px;
  z-index: 100;
  margin: 0 auto;
  -webkit-perspective: 1600px;
          perspective: 1600px;
}
@media only screen and (max-width: 900px) {
  .header {
    height: 80px;
  }
}
.headerInner {
  position: relative;
  height: 86px;
  max-width: 1600px;
  margin: 0 auto;
}
@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .headerInner {
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
}
@media only screen and (max-width: 900px) {
  .headerInner {
    height: 80px;
  }
}
.headerInnerFront .headerSectionFront {
  z-index: 150;
  opacity: 1;
}
@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .headerInnerFront {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
}
.headerInnerTop .headerSectionTop {
  z-index: 150;
  opacity: 1;
}
@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .headerInnerTop {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
}
.headerInnerBack .headerSectionBack {
  z-index: 150;
  opacity: 1;
}
@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .headerInnerBack {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
}
.headerInnerBottom .headerSectionBottom {
  z-index: 150;
  opacity: 1;
}
@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .headerInnerBottom {
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
  }
}
.headerSection {
  position: absolute;
  right: 0;
  left: 0;
  height: 86px;
  z-index: 110;
  opacity: 0;
  padding: 0 50px;
  background: #fff;
  line-height: 28px;
  transition: all 0.5s;
  transition-timing-function: ease-in-out;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: space-between;
}
@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .headerSection {
    opacity: 1;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
}
@media only screen and (max-width: 900px) {
  .headerSection {
    height: 80px;
    border-bottom: 1px solid #e9e9e9;
  }
}
@media only screen and (max-width: 570px) {
  .headerSection {
    padding-right: 26px;
  }
}
@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .headerSectionBack {
    -webkit-transform: translateZ(-43px) rotateX(180deg);
            transform: translateZ(-43px) rotateX(180deg);
  }
@media only screen and (max-width: 900px) {
    .headerSectionBack {
      -webkit-transform: translateZ(-40px) rotateX(180deg);
              transform: translateZ(-40px) rotateX(180deg);
    }
}
}
@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .headerSectionTop {
    -webkit-transform: translateY(-43px) rotateX(90deg);
            transform: translateY(-43px) rotateX(90deg);
  }
@media only screen and (max-width: 900px) {
    .headerSectionTop {
      -webkit-transform: translateY(-40px) rotateX(90deg);
              transform: translateY(-40px) rotateX(90deg);
    }
}
}
@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .headerSectionBottom {
    -webkit-transform: translateY(43px) rotateX(270deg);
            transform: translateY(43px) rotateX(270deg);
  }
@media only screen and (max-width: 900px) {
    .headerSectionBottom {
      -webkit-transform: translateY(40px) rotateX(270deg);
              transform: translateY(40px) rotateX(270deg);
    }
}
}
@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .headerSectionFront {
    -webkit-transform: translateZ(43px) rotateX(0);
            transform: translateZ(43px) rotateX(0);
  }
@media only screen and (max-width: 900px) {
    .headerSectionFront {
      -webkit-transform: translateZ(40px) rotateX(0);
              transform: translateZ(40px) rotateX(0);
    }
}
}
.header-cart {
  top: -100%;
  background: #fcfcfc;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
}
.header[data-screen='1'] .header-main {
  top: -50%;
}
.header[data-screen='1'] .header-personal,
.header[data-screen='1'] .header-cart {
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}
.header[data-screen='2'] .header-personal {
  top: 0;
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}
.header[data-screen='2'] .header-main {
  top: -100%;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}
.header[data-screen='3'] .header-main {
  top: 100%;
}
.header[data-screen='3'] .header-cart {
  top: 0;
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}
.headerLogin {
  flex: 0 1 auto;
  -js-display: inline-flex;
  display: inline-flex;
  margin-right: 28px;
}
@media only screen and (max-width: 570px) {
  .headerLogin {
    display: none;
  }
}
.header-button {
  flex: 0 1 auto;
  position: relative;
  height: 30px;
  margin-right: 30px;
  padding: 1px 15px;
  border-radius: 16px;
  color: #262626;
  font-family: 'GothamProBold';
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  transition: none;
}
@media only screen and (max-width: 900px) {
  .header-button {
    margin-top: 12px;
  }
}
@media only screen and (max-width: 570px) {
  .header-button {
    display: none;
  }
}
.header-button .text {
  position: relative;
  padding: 0 28px 0 14px;
  color: #262626;
  color: #262626;
  font-family: 'GothamProBold';
  font-size: 11px;
  line-height: 30px;
  text-transform: uppercase;
}
.header-button .text:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  content: '';
  box-sizing: border-box;
  border: 4px solid;
  transition: border 0.3s;
}
.headerLogo {
  flex: 0 1 auto;
  margin-right: 57px;
}
.headerLogo .headerLogoDesktop {
  display: block;
}
.headerLogo .headerLogoMobile {
  display: none;
  width: 44px;
  height: 44px;
}
@media only screen and (max-width: 1040px) {
  .headerLogo {
    margin-right: 33px;
  }
  .headerLogo .headerLogoDesktop {
    display: none;
  }
  .headerLogo .headerLogoMobile {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  .headerLogo {
    margin-right: 0;
  }
}
.headerPhone {
  flex: 0 1 auto;
  height: 43px;
  padding-left: 26px;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
.headerPhone a {
  display: block;
  width: 17px;
  height: 17px;
}
.headerPhone svg {
  width: 17px;
  height: 17px;
  fill: #454545;
}
@media only screen and (min-width: 570px) {
  .headerPhone {
    display: none;
  }
}
.headerPhone.hpn { display: flex!important; }
.headerPhone.hpn a { display: inline-block; width: auto; height: auto; padding-right: 30px; font-size: 12px; line-height: 14px; color: #000; font-family: "GothamProMedium"; text-decoration: none; }
.headerPhone.hpn a span { vertical-align: middle; display: inline-block; padding-left: 4px; }
.headerPhone.hpn a svg { vertical-align: middle; display: inline-block; }
@media (max-width: 1350px) {
  .headerPhone.hpn a span { display: none; }
}
@media (max-width: 374px) {
  .headerPhone.hpn { padding-left: 0; }
  .headerPhone.hpn a { padding-right: 10px; }
}
.bx_basket1 {
  flex: 1 1 auto;
  width: 55px;
  flex-wrap: nowrap;
}
.headerCity {
  flex: 0 1 auto;
  margin-right: 20px;
}
@media only screen and (max-width: 1200px) {
  .headerCity {
    display: none;
  }
}
.buttonCity {
  flex: 0 1 auto;
  height: 30px;
  padding: 11px 15px 10px;
  background-image: linear-gradient(45deg, #efefef 0, #efefef 100%);
  border: 0;
  border-radius: 14px;
  outline: 0;
  cursor: pointer;
  transition: all 0.4s;
  flex-wrap: nowrap;
  white-space: nowrap;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
.buttonCity span {
  flex: 0 1 auto;
  -js-display: flex;
  display: flex;
  color: #262626;
  font-family: 'GothamProBold';
  font-size: 11px;
  line-height: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}
.buttonCity svg {
  flex: 0 1 auto;
  -js-display: flex;
  display: flex;
  margin-top: -2px;
  margin-left: 10px;
  transition: all 0.4s;
  width: 7px;
  height: 7px;
  fill: #202020;
}
.buttonCity:hover {
  background-image: linear-gradient(45deg, #03b2d7 0, #75b94c 100%);
}
.buttonCity:hover span {
  color: #fff;
}
.buttonCity:hover svg {
  fill: #fff;
}
.animated.slideDown {
  -webkit-animation-name: slideDown;
          animation-name: slideDown;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media only screen and (max-width: 900px) {
  .animated.slideDown {
    -webkit-animation: none;
            animation: none;
  }
}
.animated.slideUp {
  -webkit-animation-name: slideUp;
          animation-name: slideUp;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media only screen and (max-width: 900px) {
  .animated.slideUp {
    -webkit-animation: none;
            animation: none;
  }
}
.headerLocation {
  flex: 1 1 auto;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: flex-start;
}
.headerLocationHeader {
  flex: 0 1 auto;
  margin-right: 40px;
  color: #000;
  font-family: 'GothamProMedium';
  font-size: 11px;
  line-height: 20px;
  text-transform: uppercase;
}
.headerLocationHeader b {
  font-family: 'GothamProBold';
}
.headerLocationControl {
  flex: 0 1 auto;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
.headerLocationControl button {
  margin-right: 10px;
}
.headerLocationControl a {
  margin-right: 20px;
}
.headerAddToBasket {
  flex: 1 1 auto;-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: space-between;
}
@media only screen and (max-width: 730px) {
  .headerAddToBasket a {
    display: none !important;
  }
}
.headerAddToBasketMessageSuccess {
  flex: 1 1 auto;
  color: #000;
  font-family: 'GothamProMedium';
  font-size: 11px;
  line-height: 11px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  .headerAddToBasketMessageSuccess {
    padding: 0 10px;
    line-height: 14px;
  }
}
.headerAddToBasketButton {
  flex: 0 1 auto;
  margin-right: 28px;
}
.headerAddToBasketButton:hover {
  color: #fff;
}
.topCartBlock {
  flex: 0 1 auto;
  position: relative;
  width: 40px;
  outline: 0;
  flex-wrap: nowrap;-js-display: flex;display: flex;flex-direction: column;justify-content: center;align-items: center;
}
@media only screen and (max-width: 570px) {
  .topCartBlock {
    width: 55px;
    height: 44px;
    margin-left: 0;
    padding-right: 22px;
    padding-left: 0;
    border-right: 1px solid #e5e5e5;
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.tooltipFillGradient {
  display: inline-block;
  position: absolute;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: translateX(-50%) translateY(40px);
          transform: translateX(-50%) translateY(40px);
  bottom: -45px;
  opacity: 0;
  visibility: hidden;
  background-color: transparent;
  padding: 10px 22px;
  outline: 0;
  border: 0;
  z-index: 100;
  transition: all 0.3s;
  border-radius: 9999px;
  background-image: linear-gradient(-45deg, #03b2d7, #75b94c);
  cursor: pointer;
}
.tooltipFillGradientText {
  z-index: 100;
  text-align: center;
  color: #fff;
  font-family: "proxima-nova", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 13px;
  padding: 4px 20px 0;
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: -0.005em;
}
.tooltipFillGradient >svg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
}
.tooltipFillGradientSVG {
  margin-left: 5px;
}
.tooltipFillGradientSVG .tooltipFillGradientText {
  margin-top: 5px;
}
.tooltipWrap {
  position: relative;
}
.tooltipWrapShow .tooltipFillGradient,
.tooltipWrapShowMaxQnt .tooltipFillGradient.maxQuantity {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0px);
          transform: translateX(-50%) translateY(0px);
}
.page-head {
  margin-bottom: 30px;-js-display: flex;display: flex;flex-direction: row;align-items: center;
}
.page-head-center .page-head {-js-display: flex;display: flex;flex-direction: row;align-items: center;justify-content: center;
}
.page-head-center .page-head .page-title {
  margin-right: 0;
}
.page-title {
  margin-right: 25px;
  display: inline-block;
  font-size: 42px;
  line-height: 50px;
  color: #181818;
  font-family: "GothamProBold";
}
@media only screen and (max-width: 600px) {
  .page-title {
    font-size: 32px;
  }
}
.pageHeaderTitle {
  flex: 0 1 auto;
}
.selectric-wrapper {
  position: relative;
  cursor: pointer;
}
.selectric-responsive {
  width: 100%;
}
.selectric {
  border: 1px solid #ddd;
  background: #f8f8f8;
  position: relative;
}
.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 12px;
  line-height: 38px;
  color: #444;
  height: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  color: #bbb;
  text-align: center;
  font: 0/0 a;
}
.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  bordercolor: #bbb;
  border: 4px solid transparent;
  border-bottom: none;
}
.selectric-focus .selectric {
  border-color: #aaa;
}
.selectric-hover .selectric {
  border-color: #c4c4c4;
}
.selectric-hover .selectric .button {
  color: #a2a2a2;
}
.selectric-hover .selectric .button:after {
  bordercolor: #a2a2a2;
}
.selectric-open {
  z-index: 9999;
}
.selectric-open .selectric {
  border-color: #c4c4c4;
}
.selectric-open .selectric-items {
  display: block;
}
.selectric-disabled {
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectric-hide-select select {
  position: absolute;
  left: -100%;
  display: none;
}
.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}
.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #f8f8f8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}
.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer;
}
.selectric-items li.selected {
  background: #e0e0e0;
  color: #444;
}
.selectric-items li:hover {
  background: #d5d5d5;
  color: #444;
}
.selectric-items .disabled {
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-weight: 700;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #444;
}
.selectric-items .selectric-group.disabled li {
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}
.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}
.selectric-items ul,
.selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}
.drift-zoom-pane {
  position: fixed;
  width: calc(50vw + 60px);
  top: 0;
  right: 0;
  left: auto;
  background: rgba(0,0,0,0.5);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  height: 100vh;
  z-index: 140;
}
@media only screen and (max-width: 1680px) {
  .drift-zoom-pane {
    width: calc(50vw + 20px);
  }
}
.drift-zoom-pane.drift-open {
  background-color: #fff;
}
.drift-zoom-pane.drift-opening {
  -webkit-animation: drift-fadeZoomIn 180ms ease-out;
          animation: drift-fadeZoomIn 180ms ease-out;
}
.drift-zoom-pane.drift-closing {
  -webkit-animation: drift-fadeZoomOut 210ms ease-in;
          animation: drift-fadeZoomOut 210ms ease-in;
}
.drift-zoom-pane.drift-inline {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 75px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.drift-zoom-pane img {
  -o-object-fit: contain;
     object-fit: contain;
}
.drift-zoom-pane-loader {
  display: none;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 66px;
  height: 20px;
  -webkit-animation: drift-loader-rotate 800ms infinite linear;
          animation: drift-loader-rotate 800ms infinite linear;
}
.drift-zoom-pane-loader:before {
  left: 0;
  -webkit-animation: drift-loader-before 800ms infinite linear;
          animation: drift-loader-before 800ms infinite linear;
}
.drift-zoom-pane-loader:after {
  right: 0;
  -webkit-animation: drift-loader-before 800ms infinite linear;
          animation: drift-loader-before 800ms infinite linear;
  -webkit-animation-delay: -400ms;
          animation-delay: -400ms;
}
.drift-zoom-pane-loader:before,
.drift-zoom-pane-loader:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
}
.drift-bounding-box {
  background-color: rgba(0,0,0,0.4);
}
@-webkit-keyframes drift-fadeZoomIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes drift-fadeZoomIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes drift-fadeZoomOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  15% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes drift-fadeZoomOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  15% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
}
@-webkit-keyframes drift-loader-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
            transform: translate(-50%, -50%) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes drift-loader-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
            transform: translate(-50%, -50%) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes drift-loader-before {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }
  25% {
    -webkit-transform: scale(1.3) translateX(8px);
            transform: scale(1.3) translateX(8px);
  }
  40% {
    -webkit-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }
  75% {
    -webkit-transform: scale(0.7) translateX(8px);
            transform: scale(0.7) translateX(8px);
  }
  90% {
    -webkit-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes drift-loader-before {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }
  25% {
    -webkit-transform: scale(1.3) translateX(8px);
            transform: scale(1.3) translateX(8px);
  }
  40% {
    -webkit-transform: scale(1.2) translateX(6px);
            transform: scale(1.2) translateX(6px);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }
  75% {
    -webkit-transform: scale(0.7) translateX(8px);
            transform: scale(0.7) translateX(8px);
  }
  90% {
    -webkit-transform: scale(0.8) translateX(6px);
            transform: scale(0.8) translateX(6px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes drift-loader-after {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }
  25% {
    -webkit-transform: scale(1.3) translateX(-8px);
            transform: scale(1.3) translateX(-8px);
  }
  40% {
    -webkit-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }
  75% {
    -webkit-transform: scale(0.7) translateX(-8px);
            transform: scale(0.7) translateX(-8px);
  }
  90% {
    -webkit-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes drift-loader-after {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }
  25% {
    -webkit-transform: scale(1.3) translateX(-8px);
            transform: scale(1.3) translateX(-8px);
  }
  40% {
    -webkit-transform: scale(1.2) translateX(-6px);
            transform: scale(1.2) translateX(-6px);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }
  75% {
    -webkit-transform: scale(0.7) translateX(-8px);
            transform: scale(0.7) translateX(-8px);
  }
  90% {
    -webkit-transform: scale(0.8) translateX(-6px);
            transform: scale(0.8) translateX(-6px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
ruble,
.wd_rub {
  font-weight: 400 !important;
  font-style: normal !important;
}
ruble .text,
.wd_rub .text {
  font-size: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
ruble:after,
.wd_rub:after {
  content: 'c' !important;
  display: inline !important;
  font-family: "WD_ALSRuble" !important;
  text-transform: lowercase !important;
}
.webdebug-ruble-symbol {
  font-weight: 400 !important;
}
.order-progress {
  font-family: "GothamProBold";
  font-size: 24px;
  line-height: 50px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 700px) {
  .order-progress {
    color: #181818;
    font-size: 14px;
    line-height: 29px;
    margin-bottom: 15px;
    padding-top: 35px;
  }
}
.order-progress .item {
  display: inline-block;
  vertical-align: top;
  color: #ebebeb;
  text-decoration: none;
}
.order-progress .item.active {
  color: #181818;
}
.order-progress i {
  display: inline-block;
  vertical-align: top;
  line-height: 50px;
  padding: 0 15px;
  color: #ebebeb;
}
@media only screen and (max-width: 700px) {
  .order-progress i {
    line-height: 29px;
  }
}
.cssload-jumping {
  position: relative;
  display: block;
  margin: 97px auto;
  width: 107px;
}
.cssload-jumping,
.cssload-jumping * {
  box-sizing: border-box;
}
.cssload-jumping span {
  display: inline-block;
  height: 15px;
  width: 15px;
  background: #58c565;
  border-radius: 487px;
  background-clip: padding-box;
  -o-background-clip: padding-box;
  -ms-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
}
.cssload-jumping span:nth-child(1) {
  animation: scale 0.8s 0.075s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -o-animation: scale 0.8s 0.075s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -ms-animation: scale 0.8s 0.075s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -webkit-animation: scale 0.8s 0.075s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -moz-animation: scale 0.8s 0.075s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.cssload-jumping span:nth-child(2) {
  animation: scale 0.8s 0.16s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -o-animation: scale 0.8s 0.16s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -ms-animation: scale 0.8s 0.16s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -webkit-animation: scale 0.8s 0.16s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -moz-animation: scale 0.8s 0.16s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.cssload-jumping span:nth-child(3) {
  animation: scale 0.8s 0.235s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -o-animation: scale 0.8s 0.235s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -ms-animation: scale 0.8s 0.235s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -webkit-animation: scale 0.8s 0.235s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -moz-animation: scale 0.8s 0.235s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.cssload-jumping span:nth-child(4) {
  animation: scale 0.8s 0.32s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -o-animation: scale 0.8s 0.32s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -ms-animation: scale 0.8s 0.32s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -webkit-animation: scale 0.8s 0.32s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -moz-animation: scale 0.8s 0.32s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.cssload-jumping span:nth-child(5) {
  animation: scale 0.8s 0.395s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -o-animation: scale 0.8s 0.395s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -ms-animation: scale 0.8s 0.395s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -webkit-animation: scale 0.8s 0.395s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -moz-animation: scale 0.8s 0.395s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0);
  }
  25% {
    -webkit-transform: scale(0.9, 0.9);
    background: #58c565;
  }
  50% {
    -webkit-transform: scale(1, 1);
    margin: 0 3px;
    background: rgba(88,197,101,0.65);
  }
  100% {
    -webkit-transform: scale(0);
  }
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  25% {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
    background: #58c565;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    margin: 0 3px;
    background: rgba(88,197,101,0.65);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  25% {
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
    background: #58c565;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    margin: 0 3px;
    background: rgba(88,197,101,0.65);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
.autorizationWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  visibility: hidden;
  background-image: linear-gradient(135deg, rgba(117,185,76,0.9) 0, rgba(89,183,110,0.9) 25%, rgba(3,178,215,0.9) 100%);
  transition: all 0.3s;-js-display: flex;display: flex;flex-direction: column;justify-content: center;align-items: center;
}
.autorizationWrapperVisible {
  visibility: visible;
}
.autorizationLoader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s;
}
.autorizationLoaderShow {
  opacity: 1;
}
.autorizationLoader .spinner {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0;
}
.autorizationLoader .double-bounce1,
.autorizationLoader .double-bounce2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-color: #fff;
  border-radius: 50%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
          animation: sk-bounce 2s infinite ease-in-out;
}
.autorizationLoader .double-bounce2 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.autorization {
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  padding: 46px 61px 57px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(0,0,0,0.1);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 600px) {
  .autorization {
    padding: 46px 41px 57px;
  }
}
@media only screen and (max-width: 480px) {
  .autorization {
    padding: 41px 21px 52px;
  }
}
.autorizationVisible {
  visibility: visible;
  -webkit-animation: scale-in-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: scale-in-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.autorizationWrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.autorizationWrap .loginForm {
  max-width: 100%;
}
.autorizationWrap .autorizationLoader {
  opacity: 1;
}
.autorizationWrap .double-bounce1,
.autorizationWrap .double-bounce2 {
  background-color: rgba(89,183,110,0.9);
}
.autorizationError {
  opacity: 1;
  -webkit-animation: shake-horizontal 0.8s cubic-bezier(0.445, 0.05, 0.55, 0.95) both;
          animation: shake-horizontal 0.8s cubic-bezier(0.445, 0.05, 0.55, 0.95) both;
}
.autorizationClose {
  position: absolute;
  top: 29px;
  right: 29px;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}
@media (hover) {
  .autorizationClose:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 600px) {
  .autorizationClose {
    top: 19px;
  }
}
.autorizationClose svg {
  display: block;
  width: 18px;
  height: 18px;
}
.autorizationTitle {
  -js-display: flex;
  display: flex;
  margin: 0 0 55px;
  align-items: flex-end;
}
@media only screen and (max-width: 600px) {
  .autorizationTitle {
    margin: 0 0 30px;
  }
}
.autorizationTitleImage {
  margin: 0 14px 0 0;
}
.autorizationTitleImage svg {
  display: block;
  width: 19px;
  height: 24px;
}
.autorizationTitleText {
  margin: 0;
  color: #000;
  font-family: 'GothamProBold';
  font-size: 20px;
  letter-spacing: -0.06px;
}
.autorizationForm {
  position: relative;
  width: 100%;
  margin: 0 0 6px;
}
.autorizationFormError {
  position: absolute;
  top: -20px;
  left: 21px;
  color: #f00;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 300;
}
.autorizationInput {
  display: block;
  width: 100%;
  min-width: 338px;
  margin-bottom: 10px;
  padding: 14px 21px;
  background-color: #f8f8f8;
  border: none;
  border-radius: 23px;
  color: #000;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}
.autorizationInput::-webkit-input-placeholder {
  color: #5a5a5a;
}
.autorizationInput::-ms-input-placeholder {
  color: #5a5a5a;
}
.autorizationInput::placeholder {
  color: #5a5a5a;
}
@media only screen and (max-width: 600px) {
  .autorizationInput {
    width: 100%;
    min-width: 100%;
  }
}
.autorizationFormSucces {
  flex: 1 1 auto;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
}
.autorizationFormBottom {
  -js-display: flex;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
}
.autorizationLink {
  margin: 0 45px 0 0;
  border-bottom: 1px solid #98bc5e;
  color: #5a5a5a;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22px;
  text-decoration: none;
  transition: all 0.3s;
}
@media (hover) {
  .autorizationLink:hover {
    border-bottom: 1px solid transparent;
  }
}
@media only screen and (max-width: 600px) {
  .autorizationLink {
    margin: 0 20px 0 0;
  }
}
.autorizationLinkNoMargin {
  margin: 0;
}
.autorizationVisible {
  visibility: visible;
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes scale-in-center {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-in-center {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
@keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
.tingle-modal {
  -js-display: flex;
  display: flex;
  position: fixed;
  flex-direction: column;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  background-image: linear-gradient(135deg, rgba(117,185,76,0.9) 0, rgba(89,183,110,0.9) 25%, rgba(3,178,215,0.9) 100%);
  cursor: pointer;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  align-items: center;
}
.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}
.tingle-modal--noOverlayClose {
  cursor: default;
}
.tingle-modal--noClose .tingle-modal__close {
  display: none;
}
.tingle-modal__close {
  position: fixed;
  top: 10px;
  right: 28px;
  width: 5rem;
  height: 5rem;
  z-index: 1000;
  padding: 0;
  background-color: transparent;
  border: none;
  color: #f0f0f0;
  font-family: monospace;
  font-size: 6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}
.tingle-modal__closeLabel {
  display: none;
}
.tingle-modal__close:hover {
  color: #fff;
}
.tingle-modal-box {
  position: relative;
  width: 882px;
  opacity: 1;
  margin-top: auto;
  margin-bottom: auto;
  background: #fff;
  border-radius: 0;
  cursor: auto;
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  flex-shrink: 0;
}
@media only screen and (max-width: 992px) {
  .tingle-modal-box {
    width: auto;
  }
}
.tingle-modal-box__content {
  padding: 0;
}
.tingle-modal-box__footer {
  width: auto;
  padding: 1.5rem 2rem;
  background-color: #f5f5f5;
  cursor: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.tingle-modal-box__footer::after {
  display: table;
  content: '';
  clear: both;
}
.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px;
  z-index: 10001;
  opacity: 1;
  transition: bottom 0.3s ease-in-out 0.3s;
}
.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}
.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}
.tingle-enabled .tingle-content-wrapper {
  -webkit-filter: blur(8px);
  filter: blur(8px);
}
.tingle-modal--visible {
  opacity: 1;
  visibility: visible;
}
.tingle-modal--visible .tingle-modal-box {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.tingle-modal--overflow {
  overflow-y: scroll;
}
.tingle-btn {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  background-color: #808080;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.4s ease;
}
.tingle-btn--primary {
  background-color: #3498db;
}
.tingle-btn--danger {
  background-color: #e74c3c;
}
.tingle-btn--default {
  background-color: #34495e;
}
.tingle-btn--pull-left {
  float: left;
}
.tingle-btn--pull-right {
  float: right;
}
@media (max-width: 540px) {
  .tingle-modal {
    display: block;
    top: 0;
    width: 100%;
  }
  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }
  .tingle-modal--noClose {
    top: 0;
  }
  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }
  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 1rem;
  }
  .tingle-modal__close {
    display: block;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #2c3e50;
    border: none;
    color: #fff;
    line-height: 55px;
    box-shadow: none;
  }
  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
  }
  .tingle-modal__closeIcon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    font-size: 4rem;
  }
}
@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .tingle-modal {
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
@media (max-width: 540px) {
    .tingle-modal {
      -webkit-backdrop-filter: blur(8px);
              backdrop-filter: blur(8px);
    }
}
  .tingle-enabled .tingle-content-wrapper {
    -webkit-filter: none;
            filter: none;
  }
}
.stssssssssssss {
  display: block;
}
.s21inputWrapper {
  display: block;
  position: relative;
}
.s21inputRequired:after {
  display: block;
  position: absolute;
  top: 10px;
  right: 22px;
  content: '*';
  color: #75b94c;
  font-family: 'GothamProRegular';
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}
.s21input {
  display: block;
  position: relative;
  width: 100%;
  height: 20px;
  height: 44px;
  padding: 13px 25px 11px;
  background-color: #fff;
  border: 0;
  border-radius: 22px;
  color: #292929;
  font-family: 'GothamProRegular';
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  outline: 0;
}
.s21inputGrey {
  background-color: #f8f8f8;
}
.s21textarea {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 132px;
  padding: 15px 25px 11px;
  background-color: #fafafa;
  border: 0;
  border-radius: 10px;
  color: #292929;
  font-family: 'GothamProRegular';
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  outline: 0;
}
.s21inputLabel {
  display: block;
  position: absolute;
  top: 13px;
  left: 25px;
  width: calc(100% - 50px);
  background-color: transparent;
  pointer-events: none;
  color: #4f4f4f;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: all 0.3s;
}
.s21inputFocus .s21inputLabel {
  opacity: 0.78;
  color: #a7a7a7;
  font-family: 'proxima-nova', Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  -webkit-transform: translateX(-1px) translateY(-10px);
          transform: translateX(-1px) translateY(-10px);
}
.s21inputFocus .s21input,
.s21inputFocus .s21textarea {
  padding-top: 25px;
  padding-bottom: 7px;
}
.s21inputError .s21inputLabel {
  color: #f00;
}
.s21inputError:after {
  color: #f00;
}
.profile-page .site-form input[type=text],
.profile-page .site-form input[type=tel],
.profile-page .site-form input[type=password],
.profile-page .site-form textarea {
  background: #fff;
}
.accordion-js {
  display: block;
}
.accordion-js [data-accordion-button] {
  display: inline;
  border-bottom: 1px dashed #282828;
  cursor: pointer;
}
.accordion-js [data-accordion-panel] {
  height: 0;
  overflow: hidden;
  padding-top: 22px;
}
.menu li.red{
  display: flex;
  align-items: center;
}
.menu li.red a{
  color: red;
}
.menu li.red::before{
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  background: #000;
  margin-right: 20px;
}
.news-list .items .item.unactive{
  filter: opacity(0.3);
}
.headerInner .footerMenu{
  background: white;
  padding: 7px 15px;
  transform: translateZ(43px) rotateX(0);
}
.headerInner .footerMenu li a{
  opacity: 0.7;
  font-size: 8px;
}
@media (max-width: 1630px){
  .headerInner .footerMenu{
    transform: none;
  }

}



@media (max-width: 950px){
  .headerInner .footerMenu,.headerMenu { display: none; }
}
@media (max-width: 570px){
  .headerLogin { display: flex; }
}
@media (max-width: 410px){
    .headerInnerFront .headerSectionFront { padding-left: 20px; padding-right: 20px; }
    .headerInnerBottom .headerSectionBottom { padding-left: 20px; padding-right: 20px; }
    .mobileMenuSection { margin-right: 10px; width: 38px; padding-right: 0; }
    .headerLogin { margin-right: 10px; }
    .headerLogin .buttonGradientText { font-size: 10px; }
    .headerPhone { padding-left: 10px; }
}

.mobileMenu .mobileMenuItems .header_personal_type { display: none; }
.mobileMenu.mm_personal .mobileMenuItems .header_personal_type { display: block; }
.mobileMenu.mm_personal .mobileMenuItems .header_default_type { display: none; }

.headerInner .footerMenu { margin: 0 -22px 0; border-bottom: 1px solid #EAEAEA; transform: none; }
.headerInner .footerMenu li a { font-size: 10px; }
.headerSectionFront { margin: 0; transform: none; }
.headerSectionFront .menu li a { font-size: 12px; }
@media (max-width: 1643px){
  .headerInner .footerMenu { margin-left: 0; margin-right: 0; }
  .headerSectionFront { margin-left: 0; margin-right: 0; }
}

footer .footerTop {
  background: linear-gradient(135deg,#6eb956 0%,#3dab6e 100%);
}

footer .footerMenu li a {
  color: #fff;
}

/*
.headerInnerFront .footerMenu {
  background: #37ac6c;
}
*/
.footerMenu .selected a {
  color: #292929;
}

.footerSocialItemPhoneIcon,
.footerSocialItemMailIcon,
.footerSocialItem {
  background: #37ac6c;
}

.footerSocialItem._vk {
  background: #5181b8;
}

.footerSocialItem._youtube {
  background: #ff011d;
}

.footerSocialItemMail._instagram .footerSocialItemMailIcon {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}

.footerSocialItemPhone:hover .footerSocialItemPhoneIcon,
.footerSocialItemMail:hover .footerSocialItemMailIcon,
.footerSocialItem:hover {
  background: #2A8252;
}

.footerSocialItem._vk:hover {
  background: #496091;
}

.footerSocialItem._youtube:hover {
  background: #cc011c;
}

.footerSocialItemMail._instagram:hover .footerSocialItemMailIcon {
  background: #cf7734;
  background: -moz-linear-gradient(45deg, #cf7734 0%, #ca6438 25%, #b52639 50%, #ad2356 75%, #b31983 100%);
  background: -webkit-linear-gradient(45deg, #cf7734 0%,#ca6438 25%,#b52639 50%,#ad2356 75%,#b31983 100%);
  background: linear-gradient(45deg, #cf7734 0%,#ca6438 25%,#b52639 50%,#ad2356 75%,#b31983 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cf7734', endColorstr='#b31983',GradientType=1 );
}

.footerSocialItemPhoneIcon svg,
.footerSocialItemMailIcon svg,
.footerSocialItem svg {
  fill: #fff;
}

.icon_tl svg {
  fill: #0088cc;
}

.footerSocialItem._tl:hover {
  background: #0077cc;
}
svg.icon_tl {
    width: 28px;
    height: 28px;
}
.productItemImageSl { display: none; height: 150px; overflow: hidden; margin-bottom: 25px; }
.productItemImageSl .sl_item { display: -webkit-flex; justify-content: center; align-items: center; display: flex; height: 150px; }
.productItemImageSl .sl_item img { width: auto; height: auto; max-height: 100%; max-width: 100%; border-radius: 100%; }

@media (max-width: 599px){
  .productItemImageSl { display: block; }
  .productItemImageSl + .productItemImage { display: none; }
}
.download-link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 17px 39px 17px 36px;
  border-radius: 6px;
  border: 1px solid #ebebeb;
  text-decoration: none;
  color: #282828;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.download-link:hover {
  opacity: 0.7;
}
.download-link__icon {
  margin: 0 18px 0 0;
}
.download-link__icon svg {
  width: 30px;
  height: 37px;
}
.download-link__content {
  margin: 0;
  color: #282828;
  font-family: "proxima-nova";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.09px;
}
/* End */
/* /local/templates/main/css/buttons.css?16643703805319 */
/* /local/templates/main/css/fonts.css?16643703804998 */
/* /local/templates/main/css/icomoon.css?16643703801397 */
/* /local/templates/main/css/bonditka-tmp.css?1664370380878 */
/* /local/templates/main/css/swiper.css?166437038022251 */
/* /local/templates/main/css/blocks.css?166437038016165 */
/* /local/templates/main/css/header.css?16744827206208 */
/* /local/templates/main/css/forms.css?16643703807728 */
/* /local/templates/main/components/bitrix/menu/mobile/style.css?16878445545446 */
/* /local/templates/main/components/danke/search.title/search.line.new/style.css?16878445545002 */
/* /local/templates/main/components/bitrix/menu/section/style.css?1687844554862 */
/* /local/templates/main/components/bitrix/menu/page/style.css?16878445541035 */
/* /local/templates/main/components/bitrix/menu/footer/style.css?16878445542083 */
/* /local/components/danke/ajax.loader/templates/.default/style.css?16878445542509 */
/* /local/templates/main/template_styles.css?174947216272644 */
