@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/century_gothic/CenturyGothicRegular.eot");
  src: url("../fonts/century_gothic/CenturyGothicRegular.eot?#iefix")format("embedded-opentype"),
  url("../fonts/century_gothic/CenturyGothicRegular.woff") format("woff"),
  url("../fonts/century_gothic/CenturyGothicRegular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}


@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/century_gothic/CenturyGothic-Bold.eot");
  src: url("../fonts/century_gothic/CenturyGothic-Bold.eot?#iefix")format("embedded-opentype"),
  url("../fonts/century_gothic/CenturyGothic-Bold.woff") format("woff"),
  url("../fonts/century_gothic/CenturyGothic-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}


* {
  box-sizing: border-box;
  font-family: 'PT Sans', sans-serif;
}

html {
  font-size: 14px;
  line-height: 14px;
/*  margin: 16px;
  padding: 16px;*/
}

body {
  font-family: 'PT Sans', sans-serif;
  overflow-x: hidden;
  color: #666;
}


/***********************************/
/*           TYPOGRAPHY            */
/***********************************/

a {
  text-decoration: none;
  color: #222;
  cursor: pointer;
}

.wysiwyg a,
a.hover {
  position: relative;
  display: inline-block;
}

.wysiwyg a::after,
a.hover::after {
  content: '';
  position: absolute;
  bottom: .1em;
  left: 0;
  width: 0;
  background-color: #222;
  height: .05em;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.wysiwyg a:hover::after,
a.hover:hover::after {
  width: 100%;
}

h1, h2, h3 {
  color: #222;
}

strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

b {
  font-weight: 700;
}

i {
  font-style: italic;
}

.font-text {
  font-family: 'PT Sans', sans-serif;
}

.font-title {
  font-family: "Century Gothic", sans-serif;
}

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

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

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

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

.one-brand-article__item-container img {
  max-width: 100%;
  height: auto;
}

.one-brand-article__item-container iframe {
  max-width: 100%;
  min-height: 250px;
}
/***********************************/
/*          #TYPOGRAPHY            */
/***********************************/


/***********************************/
/*          BUTTONS & FORMS        */
/***********************************/

button {
  cursor: pointer;
}

button,
textarea,
input[type="button"],
input[type="submit"],
input[type="text"],
input[type="number"],
input[type="email"]{
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

input[type='submit'],
input[type='reset'],
.btn {
  font-family:  "Century Gothic", sans-serif;
  font-size: 1.1875rem;
  font-weight: 400;
  color: #fff;
  background-color: #222;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding-left: 4rem;
  padding-right: 4rem;
  height: 4rem;
  border-radius: 4rem;
  line-height: 4rem;
  border: 1px solid #222;
  outline: none;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  color: #222;
  background-color: transparent;
}

textarea.form-control {
    font-family: "Century Gothic", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #222;
    width: 100%;
    height: 35px;
    border: none;
    border-bottom: 1px solid #b3b3b3;
    outline: none;
    padding: 0.3125rem 0;
}


.checkbox {
  cursor: pointer;
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
}

.checkbox > input[type='checkbox'] {
  position: absolute; 
  visibility: hidden; 
  opacity: 0; 
}

.checkbox > span {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid #222;
  border-radius: 2px;
  background: #fff;
  position: relative; 
  vertical-align: top;
}

.checkbox > span::after {
  content: '';
  position: absolute; 
  top: 1px;
  bottom: 1px;
  left: 1px;  
  right: 1px; 
  background-color: #222;
  opacity: 0; 
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.checkbox > input[type='checkbox']:checked + span::after {
  opacity: 1; 
}

button[disabled],
.btn[disabled] {
  pointer-events: none;
  opacity: .4 !important;
}

button .loader,
input[type='submit'] .loader,
input[type='reset'] .loader,
.btn .loader {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  width: 0;
  vertical-align: middle;
  position: relative;
  right: -1rem;
  top: -.2rem;
}

button.loading .loader,
input[type='submit'].loading .loader,
input[type='reset'].loading .loader,
.btn.loading .loader {
  display: inline-block;
  width: 1.8rem;
}

.loader-wrap {
  position: relative;
}

.loader-wrap .loader {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  width: 0;
}

.loader-wrap input.loading + .loader {
  width: 1.8rem;  
}


.wrap{
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

input.alert {
  color: #E70505 !important;
  border-color: #E70505 !important;
  -webkit-animation: shake 1s both;
  animation: shake 1s both;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

/***********************************/
/*          #BUTTONS & FORMS       */
/***********************************/

/***********************************/
/*            LISTS                */
/***********************************/

.tag_list {
  list-style: none: !important;
  margin: 20px 0 !important;
  padding: 0 !important;
}

.tag_list li {
    display: inline-block;
}

.tag_list li + li {
}

.tag_list li span,
.tag_list li a {
    text-decoration: none !important;
    border-radius: 50px;
    border: 1px solid #222;
    display: inline-block;
    padding: 4px 10px;
    white-space: nowrap;
    transition: all .3s;
    margin-right: 6px;
    margin-bottom: 6px;
}

.tag_list li a:hover {
    color: #fff;
    background: #000;
}

/***********************************/
/*            #LISTS               */
/***********************************/


/***********************************/
/*              GRIDS              */
/***********************************/

.container {
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.container::after {
  content: '';
  clear: both;
  display: table;
}

.width-50 {
  width: 50%;
  float: left;
}

.width-30 {
  width: 30%;
  margin-right: 5%;
  float: left;
}

.width-30:nth-of-type(3n) {
  margin-right: 0;
}

.width-60 {
  float: left;
  width: 60%;
}





@media screen and (max-width: 980px) {
  .width-60,
  .width-50 {
    width: auto;
    float: none;
  }

  .width-30 {
    width: auto;
    margin-right: 0;
    float: none;
  }

}

.full-width {
  width: 100%;
}

.half-width {
  width: 50%;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.padding {
  padding: 2.1875rem;
}

.padding-vert {
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem;
}

.padding-top {
  padding-top: 2.1875rem;
}

.padding-bottom {
  padding-bottom: 2.1875rem;
}

.margin {
  margin: 4rem;
}

.margin-vert {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.margin-top {
  margin-top: 4rem;
}

.margin-bottom {
  margin-bottom: 4rem;
}


.margin-sm {
  margin: 2rem;
}

.margin-sm-vert {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.margin-sm-top {
  margin-top: 2rem;
}

.margin-sm-bottom {
  margin-bottom: 2rem;
}

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

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

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

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

/***********************************/
/*          #    GRIDS             */
/***********************************/



/***********************************/
/*          ADDITIONAL            */
/***********************************/

::selection {
  background:#222222;
  color:#FFF;
  text-shadow:none;
}
::-webkit-selection {
  background:#222222;
  color:#FFF;
  text-shadow:none;
}
::-moz-selection {
  background:#222222;
  color:#FFF;
  text-shadow:none;
}

.bg-grey {
  background-color: #f6f5f5;
}


/***********************************/
/*          # ADDITIONAL           */
/***********************************/


/***********************************/
/*          HELP CLASSES           */
/***********************************/

.bg-cover {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.clear {
  clear: both;
}

.clear::after {
  content: '';
  clear: both;
  display: table;
}

.hide {
  display: none;
}

@media screen and (max-width: 499px) {
  .hide-xs {
    display: none !important;
  }
}

@media screen and (min-width: 500px) and (max-width: 767px) {
  .hide-sm {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .hide-md {
    display: none !important;
  }
}

@media screen (min-width: 1280px) {
  .hide-lg {
    display: none !important;
  }
}



/***********************************/
/*          #HELP CLASSES          */
/***********************************/


/***********************************/
/*               TABS              */
/***********************************/

.collapse-tab {
  display: none;
}

.collapse-link img.minus {
  display: none;
}

.collapse-link img.plus,
.collapse-link.show img.minus {
  display: block;
}

.collapse-link.show img.plus {
  display: none;
}


/***********************************/
/*               #TABS             */
/***********************************/


#to-brand {
  display: none;
}

.one-brand-article__item .review {
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
}

.one-brand-article__item .review .pic-outer {
  width: 50%;
}

.one-brand-article__item .review .pic-outer img {
  max-width: 100%;
}

.one-brand-article__item .review .review-content {
  width: 50%;
  padding: 2.75rem 2rem;

}

.one-brand-article__item .review .review-content .btn{
  margin-top: 3rem;
}

.one-brand-article__item .review #reviews-add {
  display: -webkit-box;
  display: -ms-flexbox;  
  display: -webkit-flex; 
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}


.one-brand-article__item .review #reviews-add input,
.one-brand-article__item .review #reviews-add textarea {
  font-family: "Century Gothic", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #222;
    width: 100%;
    height: 35px;
    border: none;
    border-bottom: 1px solid #b3b3b3;
    outline: none;
    margin: 2.125rem 0 0 0;
    padding: 0.3125rem 0;
}

    
/*.one-brand-article__item .review #reviews-add button {
    font-family: "Century Gothic", sans-serif;
    font-size: 1.1875rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    width: 300px;
    height: 55px;
    border-radius: 50px;
    border: 1px solid transparent;
    outline: none;
    background-color: #222;
    padding: 0 3.75rem;
    margin-top: 3rem;
    transition: 0.4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
*/

.one-brand-article__item h1 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  line-height: 1.9rem;
  margin: 2.5rem 0 1.25rem 0;
}

.one-brand-article__item h2,
.one-brand-article__item h3,
.one-brand-article__item h4 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.6rem;
  margin: 1.5rem 0 .75rem 0;
}


.one-brand-article__item h5 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
  margin: 4.0625rem 0 2.1875rem 0;
}

.one-brand-article__item ul {
  margin-top: -0.625rem;
  padding-left: 1.5625rem;
  list-style: disc;
}

.one-brand-article__item ol {
  margin-top: -0.625rem;
    padding-left: 1.5625rem;
  list-style: decimal;
}

.one-brand-article__item p,
.one-brand-article__item li {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #222;
}

.one-brand-article__item li {
  line-height: 1.75rem;
}


.one-brand-article__item p {
  line-height: 1.75rem;
  margin: 1.75rem 0 1.75rem 0;
}

.one-brand-article__item a {
  color: inherit;
  text-decoration: underline;
  opacity: 0.8;
  transition: 0.4s;
}

.one-brand-article__item a:hover {
  opacity: 1;
  text-decoration: none;
}


.one-brand-article__item em {
  font-style: italic;
}

.one-brand-article__item strong {
  font-weight: 700;
}

.one-brand-article__item hr {
  border: none;
  border-top: 1px solid #e1e1e1;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.one-brand-article__item blockquote {
    padding: .25rem 1rem;
    margin: 0 0 1.5rem;
    border-left: 2px solid #e1e1e1;
}

.one-brand-article__item video {
    max-width: 100%;
    max-height: 90vh;
}

@media screen and (max-width:499px) {
  .one-brand-article__item video {
      max-height: 40vh;
  }
}



/*carousel styles*/
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}

.carousel.fade{
  opacity:1
}
.carousel.fade>.carousel-inner>.item{
  -moz-transition:opacity ease-in-out .6s;
  -o-transition:opacity ease-in-out .6s;
  -webkit-transition:opacity ease-in-out .6s;
  transition:opacity ease-in-out .6s;
  left:0 !important;
  opacity:0;
  top:0;
  position:absolute;
  width:100%;
  display:block !important;
  z-index:1;
}
.carousel.fade>.carousel-inner>.item:first-child{
  top:auto;
  position:relative;
}
.carousel.fade>.carousel-inner>.active{
  opacity:1;
  -moz-transition:opacity ease-in-out .6s;
  -o-transition:opacity ease-in-out .6s;
  -webkit-transition:opacity ease-in-out .6s;
  transition:opacity ease-in-out .6s;
  z-index:2
}
.carousel.fade>.carousel-control{
  z-index:2
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #222 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}

.product-helper-feature{
  width: 100%;
  padding: 30px 15px;
  padding-bottom: 1.875rem;
  background-color: #f6f5f5;
}

.product-helper-feature__inner{
  background-color: #fff;
  padding: 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  max-width: 1540px;
  margin: 0 auto;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
}

.feature-helper{
  margin-left: 60px;
  width: 45%;
}

.feature-helper .title{
  font-size: 30px;
  margin: 20px 0;
  font-family: "Century Gothic", sans-serif;
}

.feature-helper .subtitle{
  font-size: 14px;
}

.feature-control{
  margin-top: 20px;
  margin-bottom: 110px;
  display: none;
  min-height: 80px;
}

.feature-control.active{
  display: block;
}

.feature-buttons__block{
  margin-top: 50px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  margin-left: 5px;
  margin-right: 5px;
}

.feature-buttons__block .feature-type{
  font-size: 16px;
  padding: 8px 20px;
  display: block;
  font-family: "Century Gothic", sans-serif;
  background-color: transparent;
  border: none; 
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  outline: none;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1), 0 2px 10px rgba(0,0,0,.05);
  transition: all .4s ease-in-out;
}


.feature-buttons__block .active-type{
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

.feature-buttons__block .slick-prev, 
.feature-buttons__block .slick-next {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 0;
  width: 40px;
  height: 40px;
  background-size: 20px;
  padding: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-buttons__block .slick-track{
  margin-left: 5px;
  margin-right: 5px;
}

.feature-buttons__block .slick-prev{
  background-image: url('../img/prev-slick.svg');
  margin-left: -20px;
}

.feature-buttons__block .slick-next{
  background-image: url('../img/next-slick.svg');
  margin-right: -20px;
}

.feature-control__label{
  cursor: pointer;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.feature-control__label input[type="radio"]{
  display: none;
}
.feature-control__label input[type="radio"]:checked +.radio-style{
  color: #fff;
  background-color: #000;
}

.feature-control__label .radio-style{
  font-size: 14px;
  transition: all .4s ease-in-out;
  color: #000;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 20px;
  padding: 7px 14px;
  display: block;
}

.feature-control__group{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-content: flex-start;
}

.feature-control__group .icon{
  margin-right: 20px;
  display: block;
  width: 25px;
  height: 25px;
}

.feature-control__group .icon svg{
  width: 25px;
  height: 25px;
  fill: #707070;
}

.feature-control__group .step_type{
  margin-left: auto;
  font-size: 14px;
  color: #bbb;
  font-style: italic;
}

.feature-control__values{
  width: calc(100% - 110px);
}

.feature-footer{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.feature-footer .prev-button{
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  outline: none;
  margin-right: 10px;
}

.feature-footer .prev-button svg{
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
}

.feature-footer .remove-button_feature{
  background-color: #fff;
  outline: none;
  color: #000;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 16px;
  padding: 15px 0;
  border: none;
  font-family: "Century Gothic", sans-serif;
  margin-right: 10px;
  transition: all .4s ease-in-out;
}

.feature-footer .remove-button_feature:hover{
  text-decoration: none;
}

.feature-footer .result-text{
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.feature-image{
  width: 40%;
  height: 500px;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
}

.feature-footer .show_filter_results{
  margin-left: auto;
  background-color: #000;
  outline: none;
  color: #fff;
  border: none;
  text-transform: uppercase;
  border-radius: 33px;
  font-size: 16px;
  padding: 15px 45px;
  font-family: "Century Gothic", sans-serif;
}

.first-step.active ~ .feature-footer .prev-button{
  display: none;
}

.last-step.active ~ .feature-footer .next-button_feature{
  display: none;
}


@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -0.9375rem;
    margin-left: -0.9375rem;
/*    font-size: 1.875rem;*/
    font-size: 1.875rem;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 1.875rem;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}


/*carousel styles end*/

body {
  position: relative;
}


.sticky-call {
  width: 65px;
  height: 53px;
  position: fixed;
  z-index: 40;
  top: 50vh;
  right: 0;
  display: none;
}

.sticky-call > img {
  max-width: 100%;
}

.wrapper {
  max-width: 1310px;
  margin: 0 auto;
}

.long-wrapper {
  max-width: 1540px;
  margin: 0 auto; 
}

.short-wrapper {
  max-width: 1170px;
  margin: 0 auto;
}

/*header*/
/*header {
  overflow: hidden;
}*/

.desktop-menu {
  display: block;
}

.adaptive-menu {
  display: none;
}

.top-menu {
  height: 4.1vw;
  margin-bottom: 4.1vw;
  background-color: #fff;
  border-bottom: 1px solid #b3ada8;
  padding: 1vw 0px 1vw 1.875rem;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;   
    -webkit-justify-content: space-between; 
    justify-content: space-between;    
  }    

.top-menu__logo {
  width: 13vw;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;   
    -webkit-align-items: center;
    align-items: center;
}

.top-menu__logo-item {
  max-width: 100%;
}

.top-menu__outer {
  position: relative;
}

.top-menu__outer {
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;   
}

.header-info-button {
  width: 100px;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;   
    -webkit-justify-content: center; 
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.header-info-link {
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.header-info-link svg{
  width: 2vw;
  height: 2vw;
  transition: all 0.4s ease-in-out;
}

.header-info-link-active {
  transition: 0.4s;
  border-radius: 50%;
  width: 2vw;
  height: 2vw;
  background: #000;
  transition: all 0.4s ease-in-out;
}

.header-info-link-active svg{
  fill: #fff;
  stroke: #fff;
  transition: all 0.4s ease-in-out;
}


.header-info-link-active-mobile {
  transition: 0.4s !important;
  border-radius: 50% !important;
  transition: 0.4s;
  border-radius: 50%;
  width: 2vw;
  height: 2vw;
  background: #000;
  transition: all 0.4s ease-in-out;
}

.header-info-link-active-mobile svg{
  fill: #fff;
  stroke: #fff;
  transition: all 0.4s ease-in-out;
}

.header-info-link-active-mobile svg rect{
  fill: #fff;
}

.top-menu__list  {
  padding-right: 0.9375rem;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;   
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.top-menu__item {
  margin: 0 0 0 2.1875rem;
}

.top-menu__item:first-child {
  margin: 0;
}

.top-menu__link {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.1875rem;*/
  font-size: 1vw;
  font-weight: 700;
  color: #313234;
  text-transform: uppercase;
  text-decoration: none;

}

.top-menu__hidden-block-outer {
  display: none;
  transition: 0.4s;
  position: absolute;
  z-index: 20;
  top: calc(100% + 1vw + 1px);
  right: -10px;
}

.top-menu__hidden-block {
  padding: 2.5rem 2.5rem 0 2.5rem;
  background: #fff;
  -webkit-box-shadow: 0 15px 50px 0px rgba(0,0,0,0.08);
  -moz-box-shadow: 0 15px 50px 0px rgba(0,0,0,0.08);
  box-shadow: 0 15px 50px 0px rgba(0,0,0,0.08);

  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex; 

  transition: 0.4s;
}

.top-menu__hidden-block-list + .top-menu__hidden-block-list {
  margin-left: 1rem;
}

.top-menu__hidden-block-item {
  margin-bottom: 1.25rem;
  min-width: 13vw;
}

.top-menu__hidden-block-link {
  font-family: "Century Gothic", sans-serif;
    font-size: 1vw;
    line-height: 1.3125rem;
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.4s;
}

.top-menu__hidden-block-link:hover {
  color: #222;
}

/* MAIN MENU */

.sub-menu-hidden-item{
  display: none;
}

.main-menu {
  background-color: #fff;
  height: 4.1vw;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;   
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 4.1vw;
}

.main-menu.sticky {
  width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
}

.main-menu:hover {
     -webkit-box-shadow: 0 30px 50px 0px rgba(0,0,0,0.08), 0 7px 15px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 30px 50px 0px rgba(0,0,0,0.08), 0 7px 15px rgba(0,0,0,0.1);
    box-shadow: 0 30px 50px 0px rgba(0,0,0,0.08), 0 7px 15px rgba(0,0,0,0.1); 
}

.main-menu__list {
  min-width: 320px;
  height: 100%;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex; 
    -webkit-align-items: center;
    align-items: center;
}

.main-menu__item {
  margin: 0 0 0 1.875rem;
  height: 100%;
  position: relative;
/*  border: 1px solid yellow;*/
}

.main-menu__item.separator {
  margin: 0 0 0 2.1875rem;
  padding: 0;
  position: relative;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex; 
    -webkit-align-items: center;
    align-items: center;
  margin-left: 1.875rem;
}

.main-menu__item.sales {
  margin-left: 3.5rem;
}

.main-menu__item.sales a {
  color: #ff0000;
}

.main-menu__item:nth-last-of-type(3) .main-menu__submenu-items-list-block,
.main-menu__item:nth-last-of-type(4) .main-menu__submenu-items-list-block {
  position: absolute;
  top: 0;
  min-height: 100%;
  right: 100%;
}

.main-menu__item:nth-last-of-type(3) .main-menu__submenu-topic-link span,
.main-menu__item:nth-last-of-type(4) .main-menu__submenu-topic-link span {
  position: absolute;
    top: calc(50% - 5px);
    transform: rotate(180deg);
    left: -0.9375rem;
}

.main-menu__item:nth-last-of-type(3) .main-menu__submenu .main-menu__submenu-topic,
.main-menu__item:nth-last-of-type(4) .main-menu__submenu .main-menu__submenu-topic {
  position: relative;
    left: -2.5rem;
    padding-left: 2.5rem;
    width: calc(100% + 2.5rem);
}

.main-menu__link {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.0625rem;*/
  font-size: 1vw;
  line-height: 1.3125rem;
  font-weight: 400;
  color: #4f4f4f;
  text-decoration: none;
  text-transform: uppercase;
  height: 100%;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex; 
    -webkit-align-items: center;
    align-items: center;
  transition: 0.4s;
  position: relative;
}



.main-menu__link:hover {
/*  color: #676767; 
  font-weight: 700;*/

  text-shadow: 0 0 0 #4f4f4f, 0 0 0 #4f4f4f, 0 0 0 #4f4f4f;
}

.main-menu__link > span {

}

.main-menu__link--active {
  font-weight: 700;
}

.main-menu__submenu {
/*  width: calc(100% - 60px);*/
/*  min-height: 430px;*/
  margin: 0 1.875rem;
  background: #fff;
  position: absolute;
  z-index: 30;
  top: 4.1vw;
  left: -40px;
  opacity: 0;

  pointer-events: none;
  -webkit-box-shadow: 0 30px 50px 0px rgba(0,0,0,0.08), 0 7px 15px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 30px 50px 0px rgba(0,0,0,0.08), 0 7px 15px rgba(0,0,0,0.1);
  box-shadow: 0 30px 50px 0px rgba(0,0,0,0.08), 0 7px 15px rgba(0,0,0,0.1); 
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}


.main-menu__submenu:hover {

}


.main-menu__submenu {

}

.main-menu__submenu .main-menu__submenu-item {
  background: #f6f5f5;

}

.main-menu__submenu .main-menu__submenu-topics-list {
  background: #fff;
  padding: 1.1rem 0 2.1875rem 2.5rem;

}

.main-menu__submenu .main-menu__submenu-topic {
  padding-right: 2.5rem;
  transition: 0.4s;
}

.main-menu__submenu-items-list-outer {
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
}

.main-menu__submenu-items-list-outer div:first-child {
  margin-right: 1.1rem;
  min-width: 200px;

}

.main-menu__submenu-items-list-outer div:last-child {
  margin-left: 1.1rem;
  min-width: 200px;
}


.main-menu__link:hover + .main-menu__submenu,
.main-menu__submenu:hover {
  opacity: 1;
  pointer-events: all;
}



.main-menu__submenu-item {
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
}


.main-menu__submenu-topics-list {
/*  width: 18%;*/
  
  padding: 0;
}

.main-menu__submenu-topic {
  border-bottom: 1px solid #eeeeee;
  transition: 0.4s;
/*  max-width: 240px;*/
  min-width: 265px;
}

.main-menu__submenu-topic:last-child {
  border-bottom: 0;
  max-width: 290px;
  transition: 0.4s;
}

.main-menu__submenu-topic-link {
  font-family: "Century Gothic", sans-serif;
  font-size: 1vw;
  line-height: 1.8125rem;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 0;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.main-menu__submenu-topic:hover {

}

.main-menu__submenu-topic-link span {
  width: 7px;
  height: 11px;
  background: url(/img/arrow-menu.png) no-repeat center;
    background-size: contain;
  display: inline-block;
  position: relative;
  opacity: 0.6;
}

.main-menu__submenu-topic-link:hover {
  color: #222;
}


.main-menu__submenu-topic-link:hover span {
  background: url(/img/arrow-menu_hover.png);
}

.main-menu__submenu-topic-link--no-arrow span {
display: none!important;
}

.main-menu__submenu-items-list-block {
    display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
}

.main-menu__submenu-items-list {
/*  width: 25%;*/
  transition: 0.4s;
    padding: 1.1rem 2.5rem 2.1875rem 2.5rem;
  background: #f6f5f5;
  display: none;
}

.main-menu__submenu-items-list ul {
  width: 265px;
}


.main-menu__submenu + .main-menu__submenu-items-list,
.main-menu__submenu-topic:hover + .main-menu__submenu-items-list {
  display: block;

}


.main-menu__submenu-items-list--empty {
  display: none;
}


.main-menu__submenu-inneritem {

}

.main-menu__submenu-link {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
  padding: 0.25rem 0;
  display: inline-block;
  transition: 0.4s;
}

.main-menu__submenu-link:hover {
  color: #222;
}

.main-menu__third-block  {
/*  width: 25%;*/
display: none !;
min-width: 360px;
padding-bottom: 2.5rem;
transition: 0.4;
}




.main-menu__picture-block {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.main-menu__picture-block-image {
  max-width: 50vw;
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  margin: auto;
}

.main-menu__picture-block-description {
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.1rem;
  color: #666666;
  padding: 0.625rem;
  display: block;
  text-align: right;
}



.main-menu__form-wrapper {
  background-color: #fff;
  padding: 0 1.875rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.main-menu__form-wrapper-close-button {
  position: absolute;
  right: 2.5rem;
  transition: 0.4s;
}

.main-menu__form-wrapper-close-button svg {
  width: 1.85vw;
  height: 1.85vw;
  transition: 0.4s;
  cursor: pointer;
}

.js-form-wrapper--toggle {
  opacity: 1;
    pointer-events: all;
    transition: 0.4s;
}

.main-menu__form {
  height: 100%;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.main-menu__search {
  text-align: right;
  padding-right: 2%;
  font-family: "Century Gothic", sans-serif;
  font-size: 1.1625rem;
  line-height: 1.3125rem;
  font-weight: 700;
  color: #222;
  width: 100%;
  outline: none;
  border: none;
}

.main-menu__search::-webkit-input-placeholder {color:#999;}
.main-menu__search::-moz-placeholder          {color:#999;}
.main-menu__search:-moz-placeholder           {color:#999;}
.main-menu__search:-ms-input-placeholder      {color:#999;}

.main-menu__submit {
  width: 1.9vw;
    height: 1.9vw;
  background: url(/img/search_icon.png) no-repeat center;
  background-size: 100%;
  outline: none;
  border: none;
  margin-top: 2px;
  margin-right: 6.7rem;
  cursor: pointer;
}


.main-menu__search-icon {
  width: 1.8vw;
  height: 1.8vw;
  position: absolute;
  top: calc(54% - 1vw);
    right: 120px;
    z-index: 10;
    cursor: pointer;
}

.main-menu__search-icon img {
  max-width: 100%;
}

.main-menu__logo,
.main-menu__cart {
  width: 100px;
  height: 100%;
  background: #222;
  display: -webkit-box;
  display: -ms-flexbox;  
  display: -webkit-flex; 
  display: flex;
  -webkit-justify-content: center; 
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.main-menu__cart-item {
  width: 2.1vw;
  height: 2.7vw;
}

.main-menu__logo {
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: width .5s;
  -o-transition: width .5s;
  transition: width .5s;
  background-color: transparent;
}

.sticky .main-menu__logo {
  width: 65px;
  height: 100%;
  opacity: 1;
}

.main-menu__logo img {
  max-width: 70%;
  max-height: 70%;
}

/*header end*/

/*top-slider*/


.top-slider {
  width: 100%;
  height: calc(100vh - 11vw);
  position: relative;
  z-index: 10;
}

.top-slider-crumbs {
  height: calc(100vh - 278px);
}


.top-slider__slide-outer {
  width: 100%;
  height: 100%;
  position: relative;
}

.top-slider__slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.top-slider__mobile-dotts {
  display: none;
}

.top-slider__slide-picture-outer {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  overflow: hidden;
}

.home_slider_bg-mob,
.home_slider_bg {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}


.home_slider_bg-mob {
  display: none;
}

@media screen and (max-width: 420px) {
  
  .home_slider_bg-mob {
    display: block;
  }

  .home_slider_bg-mob + .home_slider_bg {
    display: none;
  }

}

.top-slider__slide-picture {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  margin: auto;
}

.top-slider__slide-picture {

}

.top-slider__slide > .wrapper {
  max-width: 75%;
  height: 100%;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;   
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  position: relative;
  z-index: 40;
}

.top-slider__info {
  width: 100%;
  text-align: center;
}

.top-slider__info-title {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 2rem;*/
  display: block;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
}

.top-slider__info-button {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.1rem;*/
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #222;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  background-color: #fff;
  margin: 1.5625rem 0 0 0;
  padding: 1.375rem 2.75rem;
  border-radius: 44px;
  display: inline-block;
  transition: 0.4s;
}

.top-slider__info-button:hover {
  color: #fff;
  background-color: #222;
}

.top-slider__nav {
  width: 100%;
  position: absolute;
  z-index: 10;
  bottom: -2.1875rem;

}

.top-slider__nav > .wrapper {
  
}

.top-slider__nav-list {
  height: 4.375rem;
  background-color: #fff;
  margin: 0 2.5rem;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;   
    -webkit-justify-content: center; 
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.top-slider__nav-item {
  margin: 0 1.1rem;
}

.top-slider__nav-link {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1rem;*/
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #222;
  transition: 0.4s;
}

.top-slider__nav-link:hover {
  color: #676767;
}

.top-slider__nav-link--shop {
  position: relative;
}

.top-slider__nav-link--shop img {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.5rem;
}

.top-slider__controls {
  width: 100%;
  height: 100%;
  padding: 0 1.875rem;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;   
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  position: absolute;
  z-index: 40;
}

.top-slider__controls-left {
  width: 53px;
  height: 92px;
  text-decoration: none;
  transition: 0.4s;
  position: relative;
  z-index: 20;
}

.top-slider__controls-right {
  width: 53px;
  height: 92px;
  text-decoration: none;
  transition: 0.4s;
  position: relative;
  z-index: 30;
}

.top-slider__controls-left:hover,
.top-slider__controls-right:hover {
  opacity: 0.5;
}

.top-slider__controls-left-icon,
.top-slider__controls-right-icon {
  max-width: 100%;

}
/*top-slider end*/

.sale-badge {
    width: 3rem;
    height: 3rem;
    font-size: 1.1rem;
    color: #fff;
    border-radius: 50%;
    background: #222;
    line-height: 3rem;
    text-align: center;
}

.main-category-product__subcategory-item .sale-badge {
  top: 1rem;
  right: 1rem;
  position: absolute;
  z-index: 5;
}

/*one-sale*/
.one-sale p {
  margin-bottom: 0.75rem;
}

.presentation__item--type-1 .sale-badge {
  top: 2rem;
  right: 2rem;
  position: absolute;
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  font-size: 1.5rem;
}
/*one-sale*/


/*presentation*/

.presentation {
  background-color: #f6f5f5;
  padding: 3.75rem 0 1.875rem 0;
}

.presentation__title {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.375rem;*/
  font-size: 1.375rem;
  font-weight: 400;
  color: #222;
/*  line-height: 1.75rem;*/
  line-height: 2.25rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  text-align: center;
  background-color: #fff;
/*  background-image: url(/img/background-title_type-1.png);*/
  background-repeat: no-repeat;
  background-position: center;
  padding: 8.4375rem 0 5.3125rem 0;
  position: relative;
}

.presentation__title h2{
  margin-top: 0;
  margin-bottom: 1rem;
}

.presentation__title .presentation-desc{
  display: block;
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.45em;
  text-align: center;
  max-width: 800px;
  margin: 20px auto 0;
  text-transform: none;
}

.presentation__title p{
  font-size: 1.2rem;
  line-height: 1.8;
  font-family: 'PT Sans', sans-serif;
  text-transform: none;
}

.presentation__title-logo{
  position: absolute;
  top: 60px;
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  display: block;
}

.presentation__title-logo svg{
  width: 30px;
  height: 30px;
}

/*.presentation__title:before {
  content: '';
  position: absolute;
  top: 85px;
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background: url(/img/title_icon.png) no-repeat center;
  background-size: contain;
}*/

.presentation .wrapper {
  max-width: 1280px;
}

.presentation__group-outer {
  margin: 2.5rem 0 0 0;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex; 
     -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.presentation__item {
  margin: 0 0 0.9375rem 0;
}

.presentation__item--type-1.desktop {
  display: block;
}

.presentation__item--type-1.mobile {
  display: none;
}

.presentation__item--type-1 {
  width: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 1.875rem;

}

.presentation__item--type-1-content {
  text-align: center;
  text-decoration: none;
  width: calc(50% - 40px);
  height: 100%;
  background-color: #fff;
  margin: 0px 0px 0px 0px;
  padding: 3rem 3.75rem 2.375rem 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;



}

.presentation__item--type-1-content-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1.8rem;
  letter-spacing: 2px;
}

.presentation__item--type-1-content-text {
  font-family: 'PT Sans', sans-serif;
/*  font-size: 1.1rem;*/
  font-size: 1.1rem;
/*  line-height: 1.5rem;*/
  line-height: 1.5rem;
  color: #5f5e5e;
  letter-spacing: 1.5px;
  margin: 2.5rem 0 0.3125rem 0;
}

.presentation__item--type-1-content-text.mobile,
.presentation__item--type-2-content-text.mobile,
.presentation__item--type-2-text-block-type-2-text.mobile {
  display: none;
}

.presentation__item--type-1-content-text.desktop,
.presentation__item--type-2-content-text.desktop,
.presentation__item--type-2-text-block-type-2-text {
  display: block;
}

.presentation__item--type-1-content-link {
  font-family: "Century Gothic", sans-serif;
  /*  font-size: 1.1rem;*/
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  background-color: #222;
  margin: 3.125rem 0 0 0;
  padding: 1.375rem 2.75rem;
  border-radius: 43px;
  border: 2px solid transparent;
  transition: 0.4s;

}

.presentation__item--type-1-content-link:hover {
  color: #222;
  border: 2px solid #222;
  background-color: #fff;
  text-decoration: none;
}

.presentation__item--type-1-background-outer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}


.presentation__item--type-1-background {
/*  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  margin: auto;*/
  width: 100%;
}

.presentation__item--type-1-background-short {
  display: none;
}

.presentation__item--type-2 {

  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
}

.presentation__item--type-2-content.desktop {
  display: block;
}

.presentation__item--type-2-content.mobile {
  display: none;
}

.presentation__item--type-1-content.only-mobile {
  display: none;
}

.presentation__item--type-2-text-block.only-mobile {
  display: none;
}



.presentation__group-outer .presentation__item--type-2-content:nth-of-type(6), 
.presentation__group-outer .presentation__item--type-2-content:nth-of-type(9) {

  }
.presentation__item--type-2-content {

  background: #f6f5f5;
}

.presentation__item--type-2-with-image {
  width: calc(50% - 0.9375rem);
  margin-right: 0.9375rem;
  padding: 1.875rem;
  position: relative;
  z-index: 5;
  margin-bottom: 0.9375rem;
  overflow: hidden;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.presentation__item--type-2-content {

}

.presentation__group-outer .presentation__item--type-2-content:nth-of-type(6),
.presentation__group-outer .presentation__item--type-2-content:nth-of-type(9) {
  width: 50%;
  margin-right: 0;
}


.presentation__item--type-2-with-image:last-chid {
  width: 50%;
}

.presentation__item--type-2-no-image {
  width: 50%;
  
  background: #fff;
  margin-bottom: 20px;
}

.presentation__item--type-2-background-outer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.presentation__item--type-2-background {
  min-width: 100%;

}

.presentation__item--type-2-text-block {
  text-decoration: none;
  width: 100%;
  background-color: #fff;
  margin: 0px 0px 0px 0px;
  padding: 2rem;
  min-height: 9rem;
  display: block;
}


.presentation__item--type-2-content-title {
  font-family: 'Playfair Display', serif;
  /*font-size: 2rem;*/
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
/*  line-height: 2.25rem;;*/
  line-height: 1.8rem;;
  letter-spacing: 2px;
}

.presentation__item--type-2-content-text {
  font-family: 'PT Sans', sans-serif;
/*  font-size: 1.1rem;*/
  font-size: 1.1rem;
/*  line-height: 1.5rem;*/
  line-height: 1.5rem;
  color: #5f5e5e;
  letter-spacing: 1.5px;
  margin: 0.9375rem 0 0.3125rem 0;
}

.presentation__item--type-3-content-link.mobile {
  display: none;
}

.presentation__item--type-3-content-link.desktop {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.1rem;*/
  font-size: 1.1rem;
  font-weight: 400;
  color: #222;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  background-color: #fff;
  margin: 3.125rem 0 0 0;
  padding: 1.375rem 2.75rem;
  border-radius: 44px;
  display: inline-block;
  transition: 0.4s;
  position: absolute;
  right: 1.875rem;
    bottom: 1.875rem;
}

.presentation__item--type-3-content-link.desktop:hover {
  color: #fff;
  background-color: #222;
  text-decoration: underline;
}

.presentation__item--type-3-content-link.mobile:hover {
  text-decoration: none;
}


.presentation__item--type-2-text-block-type-2 {
  text-decoration: none;
  height: 100%;
  padding: 3.125rem 3.75rem 3.125rem 4.0625rem;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center; 
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.presentation__item--type-2-text-block-type-2-title {
  font-family: 'Playfair Display', serif;
/*  font-size: 2rem;*/
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  line-height: 2.25rem;;
  letter-spacing: 3px;
  text-align: center;
}

.presentation__item--type-2-text-block-type-2-text {
  font-family: 'PT Sans', sans-serif;
/*  font-size: 1.1rem;*/
  font-size: 1.1rem;
/*  line-height: 1.5rem;*/
  line-height: 1.5rem;
  color: #5f5e5e;
  letter-spacing: .5px;
  text-align: center;
  margin: 2.1875rem 0 0.3125rem 0;
}

.presentation__item--type-2-text-block-type-2-link {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.1rem;*/
  font-size: 1.1rem;
  font-weight: 400;
  color: #222;
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: 1px;
  text-align: center;
  background-color: #fff;
  margin: 3.125rem 0 0 0;
  display: inline-block;
  transition: 0.4s;
}

.presentation__item--type-2-text-block-type-2-link:hover {
  text-decoration: none;
}

.presentation__item--type-3-content {
  float: right;
}

.presentation__item--type-3-content:after {
  content: "";
    display: table;
    clear: both;
}

/*presentation end*/

/*soc-network*/

.soc-network {
  padding: 0px 0 3.75rem 0;
  background: #fff;

}

.soc-network .wrapper {
    position: relative;
    overflow: hidden;
}


.soc-network__title {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.875rem;*/
  font-size: 1.875rem;
  font-weight: 400;
  color: #222;
/*  line-height: 38px;*/
  line-height: 2.375rem;
  text-decoration: none;
  letter-spacing: 1px;
  text-align: center;
  background-color: #fff;
  background-image: url(/img/background-title_type-2.png);
  background-repeat: no-repeat;
  background-position: center;
  padding: 7.5rem 0;
  position: relative;
}

.soc-network__slider {
  width: 100%;
  

}

.soc-network__slider-outer {
    display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}


.soc-network__slide {
  width: 23%;
  height: 305px;
}

.soc-network__slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.soc-network__slide-picture {
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  margin: auto;
  /*min-width: 100%;*/
  width: 100%;
  /*min-height: 100%;*/
  height: auto;
}

.soc-network > .wrapper {
  position: relative;
}


/*
.soc-network__controls {
  width: 100%;
  height: 100%;
  padding: 0 2.5%;
  position: absolute;
  z-index: 20;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center; 
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.soc-network__arrows-outer {
  width: 100%;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
}

.soc-network__control-left,
.soc-network__control-right {
  text-decoration: none;
  transition: 0.4s;
}
.soc-network__control-left:hover,
.soc-network__control-right:hover {
  opacity: 0.5;
}

.soc-network__control-left-icon,
.soc-network__control-right-icon {
  width: 38px;
  height: 83px;
}*/


.swiper-button-outer {
  position: absolute;
  top: calc(50% - 18px);
  left: 0;
  width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
}

.swiper-button-prev {
  width: 48px;
  height: 83px;
  background: url(/img/soc-controls-left.png) no-repeat center;
  background-color: rgba(0,0,0, 0.25);
  border-radius: 48px;
  margin-left: 0.9375rem;
  opacity: 1 !important; 
  pointer-events: all !important; 
}

.swiper-button-next{
  width: 48px;
  height: 83px;
  background: url(/img/soc-controls-right.png) no-repeat center;
    background-color: rgba(0,0,0, 0.25);
  border-radius: 48px;
  margin-right: 0.9375rem;
  opacity: 1 !important; 
  pointer-events: all !important; 
}

.soc-network__link-outer {
  margin: 3.5rem 0 0 0; 
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: center; 
    justify-content: center;
}

.soc-network__link {
  font-family: "Century Gothic", sans-serif;
/*    font-size: 1.1rem;*/
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    background-color: #222;
    padding: 1.3125rem 2.6875rem;
    border: 2px solid transparent;
    border-radius: 43px;
    display: inline-block;
    transition: 0.4s;
}

.soc-network__link:hover {
  color: #222;
  border: 2px solid #222;
  background-color: #fff;
}

/*soc-network end*/

/*reviews*/


.reviews {
  background: #f6f5f5;
  padding: 3.75rem 0;
}

.reviews__title {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.875rem;*/
  font-size: 1.875rem;
  font-weight: 400;
  color: #222;
/*  line-height: 1.75rem;*/
  line-height: 2.375rem;
  text-decoration: none;
  letter-spacing: 1px;
  text-align: center;
  background-image: url(/img/background-title_type-2.png);
  background-repeat: no-repeat;
  background-position: center;
  padding: 7.5rem 0;
  position: relative;
}

.reviews > .wrapper {
  position: relative;
}

.reviews__controls {
  width: 100%;
  height: 100%;
  padding: 0 2.5%;
  position: absolute;
  z-index: 10;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center; 
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.reviews__arrows-outer {
  width: 100%;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
}

.reviews__control-left,
.reviews__control-right {
  text-decoration: none;
  transition: 0.4s;
}
.reviews__control-left:hover,
.reviews__control-right:hover {
  opacity: 0.5;
}

.reviews__control-left-icon,
.reviews__control-right-icon {
  width: 54px;
  height: 89px;
  display: block;
}

.reviews__control-left-icon-mobile,
.reviews__control-right-icon-mobile {
  display: none;
}

.reviews__slider {
  width: 100%;
  min-height: 160px;
}

.reviews__slide {
  height: 100%;
}

.reviews__stars-outer {
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: center; 
    justify-content: center;
}

.reviews__star {
  margin: 0 0.25rem;
}

.reviews__text {
  font-family: 'PT Sans', sans-serif;
/*  font-size: 1.1rem;*/
  font-size: 1.1rem;
  color: #313234;
/*  line-height: 34px;*/
  line-height: 2.125rem;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 1.5625rem 0;
  padding: 0 10%;
}

.reviews__link-outer {
  margin: 2.1875rem 0 0 0; 
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: center; 
    justify-content: center;
}

.reviews__link {
  font-family: "Century Gothic", sans-serif;
    /*  font-size: 1.1rem;*/
  font-size: 1.1rem;
    font-weight: 400;
    color: #222;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    background-color: #fff;
    padding: 1.375rem 2.75rem;
    border-radius: 44px;
    display: inline-block;
    transition: 0.4s;
}

.reviews__link:hover {
  color: #fff;
  background-color: #222;
}

/*reviews end*/

/*product category*/

.main-category-product {
  background: #f6f5f5;
  padding: 0px 0 1.875rem 0;
}

.main-category-product--single {
  padding: 0px 0 0px 0;
}

.main-category-product__title {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.875rem;*/
  font-size: 1.875rem;
  font-weight: 400;
  color: #222;
/*  line-height: 1.75rem;*/
  line-height: 2.375rem;
  text-decoration: none;
  letter-spacing: 1px;
  text-align: center;
  background-image: url(/img/background-title_type-2.png);
  background-repeat: no-repeat;
  background-position: center;
  padding: 7.5rem 0;
  position: relative;
}

.main-category-product__subcategory {
  max-width: 1540px;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    margin: 0 auto 30px auto;
    padding: 0 0.9375rem;
}

.main-category-product__subcategory--single {
  background: #f6f5f5;
  margin: 0px auto;
  padding: 0 0 0 0;
  display: block;
}

.main-category-product__subcategory--single > h3 {
  font-family: 'PT Sans', sans-serif;

    font-size: 1.125rem;
    font-weight: 700;
    color: #222;

    line-height: 2.25rem;
    text-transform: uppercase;
    padding-bottom: 2rem;
}

.main-category-product__subcategory:last-child {
  margin: 0 auto 0 auto;
}

.main-category-product__subcategory-title {
  width: 24%;
  height: 470px;
  background: #fff;
  padding: 2.8125rem 3.75rem 3.125rem 3.125rem;
  overflow: hidden;
}

.main-category-product__subcategory-top {
  height: 67%;
  background: url(/img/background-title_type-3.png) no-repeat center;
  background-size: contain;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center; 
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.main-category-product__caption {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.875rem;*/
  font-size: 1.25vw;
  line-height: 1.5vw;
  font-weight: 400;
  color: #222;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
}

.main-category-product__caption a {
  color: inherit;
  text-decoration: none;
}

@keyframes move {
  from {

    left: calc(50% - 11px);
  }

  to {
    left: calc(50% - 1px);

  }
}


.main-category-product__caption span {
  content: '';
  position: absolute;
  bottom: -50px;
  left: calc(50% - 11px);
  width: 22px;
  height: 22px;
  background: url('/img/title_right-arrow.png') no-repeat center;
  background-size: contain;
  -webkit-animation: move 1s infinite alternate;
  -moz-animation: move 1s infinite alternate;
  animation: move 1s infinite alternate;
}



.main-category-product__subcategory-bottom {
  height: 33%;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: center; 
    justify-content: center;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.main-category-product__total-count {
  font-family: 'PT Sans', sans-serif;
/*  font-size: 1.125rem;*/
  font-size: 1.125rem;
  color: #666666;
}

.main-category-product__total-count a {
  color: inherit;
  text-decoration: none;
}

.main-category-product__subcategory-list {
  width: 100%;
}

.main-category-product__subcategory-list--single { 
  width: calc(100% + 3rem);
  margin-left: -1.875rem;
  position: relative;
  display: block;

}

.main-category-product__subcategory-list--single:after {
  content: "";
    display: table;
    clear: both;
}
  



/*.main-category-product__subcategory-list--single:after {
    content: "";  
    width: auto;
    margin-left: 24%;
}*/

.main-category-product__subcategory-list--single .main-category-product__subcategory-item {
  width: calc(25% - 2.125rem);
  margin-left: 1.875rem;
  margin-bottom: 1.875rem;
  float: left;
}


  .main-category-product__download {
    padding: 2.8125rem 0;
    display: -webkit-box;
      display: -ms-flexbox;  
      display: -webkit-flex; 
      display: flex;
      -webkit-justify-content: center; 
      justify-content: center;
  }

  .main-category-product__download-link {
    display: none !important;
    font-family: "Century Gothic", sans-serif;
/*      font-size: 1.125rem;*/
      font-size: 1.125rem;
      font-weight: 400;
      color: #222;
      text-transform: uppercase;
      text-decoration: none;
      outline: none;
      cursor: pointer;
      letter-spacing: 1px;
      background-color: #fff;
      padding: 1rem 4.25rem 1rem 2.125rem;
      border-radius: 34px;
      border: 1px solid #222;
      display: inline-block;
      position: relative;
      transition: 0.4s;
  }

  .main-category-product__download-link > span {
    width: 20px;
      height: 20px;
      position: absolute;
      top: 12px;
      right: 30px;
  }

  .main-category-product__download-info,
  .main-category-product__download-spinner {
    display: none;
  }

  .main-category-product__download > img {
    width: 100px;
    height: 100px;
  }


  @keyframes download {
    from {
      transform: rotate(359deg);
    }

    to {
      transform: rotate(0deg);
    }
  }

  .main-category-product__download-link img {
    -webkit-animation: download 3.2s infinite linear;
    animation: download 3.2s infinite linear;
    -moz-animation: download 3.2s infinite linear;
    transition: 0.4s;
  }



.main-category-product__subcategory-item {
  margin-left: 1.875rem;
  width: calc(33.33333% - 30px);
  float: left;
  background: #fff;
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
  overflow: hidden;
}

body:not(.mob) .main-category-product__subcategory-item.hover:hover {
    border-radius: 40px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
    box-shadow: 0 5px 35px rgba(0,0,0,.3);
    transform: translateY(-10px);
}

.main-category-product__subcategory-link {
  width: auto;
  height: 470px;
  text-decoration: none;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    position: relative;
    z-index: 5;
    transition: 0.4s;
}

.main-category-product__picture-outer {overflow: hidden;
  width: 100%;
  height: 55%;
  position: relative;
  z-index: 3;
  margin: 0.625rem 0 0 0;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: center; 
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;

}

.main-category-product__picture {
  max-width: 100%;
  height: 100%;
}

.main-category-product__picture.second_img {
  display: none;
}

.main-category-product__subcategory-item:hover .main-category-product__picture.second_img {
  display: block !important;
}

.main-category-product__subcategory-item:hover .main-category-product__picture.first_img {
  display: none !important;
}

.bouquet_cart .main-category-product__picture.second_img {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.bouquet_cart .main-category-product__subcategory-item:hover .main-category-product__picture.second_img {
  display: block !important;
  position: absolute;
  opacity: 1;
  visibility: visible;
}

.bouquet_cart .main-category-product__subcategory-item:hover .main-category-product__picture.first_img {
  display: block !important;
  opacity: 0;
  visibility: hidden;
}


.main-category-product__description {
  font-family: 'PT Sans', sans-serif;
/*  font-size: 1.375rem;*/
  font-size: 1.375rem;
  color: #222222;
  position: relative;
  z-index: 3;
  letter-spacing: 0.8px;
  text-decoration: none;
/*  line-height: 1.625rem;*/
  line-height: 1.625rem;

  margin: 0.3125rem 1.875rem 0.9375rem 1.875rem;
  display: block;
}

.main-category-product__item-options {
  margin: 1.875rem 1.875rem 1.1rem 1.875rem;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;

}

.main-category-product__price {
  font-family: 'PT Sans', sans-serif;
/*    font-size: 1.125rem;*/
    font-size: 1.125rem;
    color: #666666;
}

.main-category-product__price__name{
  display: block;
  margin-bottom: 8px;
}

.main-category-product__more-options {
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
}


.main-category-product__watch {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 3;
  border-radius: 50%;
  background: #222;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: center; 
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.main-category-product__more-options img {
  max-width: 100%;
}

.main-category-product__add {
  margin-left: 0.9375rem;
  position: relative;
  z-index: 6;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #222;
  display: -webkit-box;
  display: -ms-flexbox;  
  display: -webkit-flex; 
  display: flex;
    -webkit-justify-content: center; 
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    transition: all .4s ease-in-out;
}

.main-category-product__add:hover{
  width: 86px;
  border-radius: 26px;
  transition: all .4s ease-in-out;
}

.main-category-product__add:hover{
  width: 86px;
  border-radius: 26px;
  transition: all .4s ease-in-out;
}

.main-category-product__add svg{
  transition: all .4s ease-in-out;
}

.main-category-product__add:hover svg {
    width: 18%;
}

.main-category-product__add .main-category-product__add-text {
  font-size: 14px;
  font-family: "Century Gothic", sans-serif;
  width: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease-in-out, width .4s ease-in-out;
}

.main-category-product__add:hover .main-category-product__add-text {
  width: 50%;
  opacity: 1;
  visibility: visible;
  color: #fff;
  margin-left: 5px;
  transition: opacity .2s .2s ease-in-out, width .4s ease-in-out;
}

.main-category-product__special-list {
  width: 1170px;
  margin: 1.35rem auto 3.5rem auto;
  padding-top: 2.15rem;
  display: -webkit-box;
  display: -ms-flexbox;  
  display: -webkit-flex; 
  display: flex;
  -webkit-justify-content: space-between; 
  justify-content: space-between;
      -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main-category-product__special-item {
  width: 33.33333%;
  margin-bottom: 2.15rem;
}

.main-category-product__special-link {
    font-family: 'PT Sans', sans-serif;
    text-decoration: none;
    font-size: 1.2rem;
    color: #222;
    display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-align-items: center;
  align-items: center;
  transition: 0.4s;
}

.main-category-product__special-link:hover {
  color: #222;
}

.main-category-product__special-link img {
  width: 2.1429rem;
  height: 2.1429rem;
  margin-right: 0.75rem;
}

.main-category-product__special-block {
  width: calc(75% - 2.55rem) !important;
  background: #f6f5f5;
}

.main-category-product__special-block-inner-container {
  height: 468px;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;  
  display: -webkit-flex; 
  display: flex;
  -webkit-justify-content: space-between; 
  justify-content: space-between;
}

.main-category-product__special-block-info {
  width: 55%;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;  
  display: -webkit-flex; 
  display: flex;
  -webkit-justify-content: center; 
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
      -webkit-flex-direction: column;
    flex-direction: column;
}

.main-category-product__special-block-info > h2 {
  font-family: "Century Gothic", sans-serif;
  font-size: 2rem;
  line-height: 2.75rem;
  text-align: center;
  margin: 1.25rem 0;
}

.main-category-product__special-block-info > div {
  font-size: 1.2rem;
  line-height: 1.75rem;
  text-align: center;
}

.main-category-product__special-block-pic {
  width: 45%;
  position: relative;
  overflow: hidden;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.main-category-product__subcategory-item .bouquet-title {
  display: none;
}

/*product category end*/



/*******************************/
/*    PRODUCT CART BOUQUET     */
/*******************************/
.bouquet_cart .main-category-product__subcategory-item {
  
}

.bouquet_cart .main-category-product__subcategory-item .main-category-product__subcategory-link {
  height: auto;
}


.bouquet_cart .main-category-product__subcategory-item .main-category-product__picture-outer {
  display: block !important; 
  height: auto;
  margin: 0;
}

.bouquet_cart .main-category-product__subcategory-item .main-category-product__picture {
  width: 100%;
  height: auto;
  display: block;
}

.bouquet_cart .main-category-product__subcategory-item .main-category-product__description {
  display: none;
}

.bouquet_cart .main-category-product__subcategory-item .main-category-product__item-options {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  margin: 1.5rem;
}

.bouquet_cart .main-category-product__subcategory-item .bouquet-title {
  display: block;
  font-family: 'PT Sans', sans-serif;
  font-size: 1.375rem;
  color: #222222;
  letter-spacing: 0.8px;
  text-decoration: none;
  line-height: 1.625rem;
  margin-bottom: 5px;
}


/*******************************/
/*    #PRODUCT CART BOUQUET    */
/*******************************/



/*news*/

.news {
  background: #f6f5f5;
  padding-top: 2rem;
}

.news__title {
  display: block;
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.875rem;*/
  font-size: 1.875rem;
  font-weight: 400;
  color: #222;
/*  line-height: 1.75rem;*/
  line-height: 1.75rem;
  text-decoration: none;
  letter-spacing: 1px;
  text-align: center;
  background-image: url(/img/background-title_type-2.png);
  background-repeat: no-repeat;
  background-position: center;
  padding: 5.625rem 0;
  position: relative;
}

.news__outer {
  padding: 2.1875rem;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news__item {
  width: 50%;
  background: #f6f5f5;
  margin: 0 0 5rem 0;
}

.news__item:nth-child(even) {
  width: calc(50% - 30px);
}

.news__item:nth-child(odd) {
  width: 50%;
}

.news__picture-outer {
  height: 30vw;
  position: relative;
  overflow: hidden;
  z-index: 5;
  display: block;
}

.news__picture {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  margin: auto;
}

.news__info {
  margin: -4rem 1.875rem 0 1.875rem;
  padding: 2rem;
  background: #fff;
  position: relative;
  z-index: 6;

}

.news__caption {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1.8rem;
  letter-spacing: 3px;
  margin-bottom: 2rem;
}

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

.news__text {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  color: #222222;
  letter-spacing: 0.8px;
  line-height: 1.5rem;
  margin: 0.9375rem 0;
}

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

.news__more {
  display: none;
}

.news__link {
  text-decoration: none;
  width: 65px;
  height: 65px;
  border-radius: 65px;
  background-color: #222;
  display: -webkit-box;
  display: -ms-flexbox;  
  display: -webkit-flex; 
  display: flex;
  -webkit-justify-content: center; 
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  right: 30px;
  bottom: -30px;
  transition: 0.4s;
}

.news__link:hover {
  width: 225px;
}

.news__link-icon {
  position: absolute;
  top: 25px;
  right: 18px;
  width: 27px;
  height: 16px;
  background-image: url(/img/news-link_icon.png);
  background-position: center;
  background-repeat: no-repeat;
}

.news__link > .news__link-word {
  font-family: "Century Gothic", sans-serif;
/*  font-size: 1.1875rem;*/
  font-size: 1.1875rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 2.8125rem 0 0;
  display: none;
}

.news__link:hover .news__link-word {
  display: block;
}

.news__item {
  animation: newsAnimation linear 1s;
  animation-iteration-count: 1;
}
.news__item:nth-of-type(2n) {
  animation-delay: .3s;
}


@keyframes newsAnimation {
  0% {
    opacity:0;
    transform:  translate(0px, 20px);
  }
  100% {
    opacity:1;
    transform:  translate(0px,0px);
  }
}

.news_search {
  white-space: nowrap;
}

.news_search input[name='news_search'],
.news_search button.btn {
  display: inline-block;
  vertical-align: middle;
  height: 3rem;
  line-height: 3rem;
  border-radius: 3rem;
}

.news_search input[name='news_search'] {
  border: 1px solid #222;
  border-right: none;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-left: 1rem;
  font-family: "Century Gothic", sans-serif;
  font-size: 1.1625rem;
  font-weight: 400;
  color: #222;
}

.news_search button.btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: -4px;
}

.news_search_result {
  font-family: "Century Gothic", sans-serif;
  font-size: 1.1625rem;
  font-weight: 400;
}

.news_search_wrap {
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}

.news_search_wrap .navigation-block__title {
  max-width: none !important;
}

@media screen and (max-width: 1310px) {
  .news_search_wrap {
    margin-top: 2rem;
  }

  .main-category-product__add:hover{
    width: 52px;
    border-radius: 50%;   
  }

  .main-category-product__add:hover svg{
    width: 30%;
  }

  .main-category-product__add:hover .main-category-product__add-text{
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .news_search_wrap .navigation-block__title {
    flex-direction: column-reverse;  
    padding-bottom: 1.5625rem;
  }

  .news_search_result {
    margin-top: 1rem;
  }
}
/*news end*/

/*************  BREADCRUMBS *************/
.breadcrumbs {
  background: #f6f5f5;
  padding: 0 0.9375rem;
  line-height: 3;
}

.breadcrumbs + .navigation-block {
  padding-top: 0;
}

.breadcrumbs .wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.breadcrumbs .wrapper.small {
  max-width: 1540px;
}

.breadcrumbs__item {
  display: inline-block;
}

.breadcrumbs__link {
    font-size: 1.1rem;
    color: #6f6f6f;
    text-decoration: none;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a.breadcrumbs__link {
    color: #222222;
}

.breadcrumbs__link:hover {
  color: #222;
}


.breadcrumbs__link::after {
  content: '/';
  color: #6f6f6f !important;
  margin: 0 5px;
}

.breadcrumbs__item:last-child .breadcrumbs__link::after {
  display: none;
}

/* breadcrumbs news */
.one-brand-intro .breadcrumbs {
  background: transparent !important;
}

.one-brand-intro .breadcrumbs .breadcrumbs__link,
.one-brand-intro .breadcrumbs .breadcrumbs__link::after {
  color: #ddd !important;
}

/*************  BREADCRUMBS END *************/

/*filter-block*/
.navigation-block {
  background: #f6f5f5;
  padding: 1.5625rem 0.9375rem;

}

.navigation-block__title {
  position: relative;
  max-width: 1540px;
  background: #fff;
  margin: 0 auto;
  padding: 1.5625rem 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;  
  display: -webkit-flex; 
  display: flex;
  -webkit-justify-content: space-between; 
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}


.navigation-block__filter-button {
  font-family: "Century Gothic", sans-serif;
/*    font-size: 1.125rem;*/
    font-size: 1.125rem;
    font-weight: 400;
    color: #222;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    letter-spacing: 1px;
    background-color: #fff;
    background-image: url(/img/filter-icon.png);
    background-repeat: no-repeat;
    background-position: 85% 50%;
    background-size: 12%;
    padding: 1rem 4.75rem 1rem 2.125rem;
    border-radius: 34px;
    border: 1px solid #222;
    display: inline-block;
    position: relative;
    transition: 0.4s;
}

.navigation-block__filter-button-active {
  color: #fff;
  background-color: #222;
  background-image: url(/img/filter-icon-active.png);
    background-repeat: no-repeat;
    background-position: 85% 50%;
    background-size: 12%;
}


.navigation-block__filter-button > span {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 16px;
  right: 35px;
}

.navigation-block__filter-button > span > img {
  max-width: 100%;
}


  

.navigation-block__caption {
  font-family: "Century Gothic", sans-serif;
/*    font-size: 1.875rem;*/
    font-size: 1.875rem;
    font-weight: 400;
    color: #222;
    /*line-height: 1.75rem;*/
    line-height: 2.375rem;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
}


.navigation-block__sorting {
  font-family: "Century Gothic", sans-serif;
/*    font-size: 1.125rem;*/
    font-size: 1.125rem;
    font-weight: 400;
    color: #222;
    text-transform: uppercase;
    text-decoration: none;
  outline: none;
  cursor: pointer;
    letter-spacing: 1px;
    background-color: #fff;
    background-image: url(/img/sort-icon.png);
    background-repeat: no-repeat;
    background-position: 92% 50%;
    background-size: 9%;
    padding: 1rem 4.75rem 1rem 2.125rem;
    border-radius: 34px;
    border: 1px solid #222;
    display: inline-block;
    position: relative;
    transition: 0.4s;
}


.navigation-block__sorting-active {
  color: #fff;
  background-color: #222;
  background-image: url(/img/sort-icon-active.png);
}


.navigation-block__sorting > span {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 16px;
  right: 35px;
}

.navigation-block__sorting > span > img {
  max-width: 100%;
}


.navigation-block__sorting-panel-outer {
  max-width: 1540px;
  background: #fff;
    margin: 0 auto;
  padding: 70px 15px;
  display: none;
}

.navigation-block__sorting-panel-list {
  max-width: 1020px;
  margin: 0 auto;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.navigation-block__sorting-panel-item {
  position: relative;
  padding-left: 20px;
}

/*
.navigation-block__sorting-panel-item input[type="radio"] {
  position: absolute;
  z-index: 10;
  top: -1px;
  left: 0;
  width: 200px;
  height: 15px;
  display: block;
  opacity: 0;
  cursor: pointer;
}

.navigation-block__sorting-panel-item input[type="radio"] + i:before {
  content:'';
    position: absolute;
    top:-1px;
    left: 0px;
    color:red;
    width: 17px;
    height: 17px;
    background: url(/img/radio-unchecked.png) no-repeat center;
}


.navigation-block__sorting-panel-item input[type="radio"]:checked + i:before {
  content:'';
    position: absolute;
    top:-1px;
    left: 0px;
    width: 17px;
    height: 17px;
    background: url(/img/radio-checked.png) no-repeat center;
}*/

.navigation-block__sorting-panel-link {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666666;
    text-decoration: none;
}

.navigation-block__sorting-panel-link span {
    width: 17px;
    height: 17px;
    background: url(/img/radio-unchecked.png) no-repeat center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.navigation-block__sorting-panel-link span.checked {
  background: url(/img/radio-checked.png) no-repeat center;
}

.navigation-block__filters-panel-outer {
  display: none;
}


.navigation-block__filters-panel {
  max-width: 1540px;
  margin: 0 auto;
  background: #fff;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between; 
    padding: 0.75rem 1.75rem 1.5rem;
}

.navigation-block__columns-outer {
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
}

.navigation-block__collections {
  margin-left: 5rem;
}

.navigation-block__columns-outer .navigation-block__brands {
  margin-left: 2.5rem;
}

.navigation-block__subcategories {
  width: 295px;
}

.one-brand-filter .navigation-block__subcategories {
  width: auto;
  padding-right: 30px;    
}

 .float-columns .navigation-block__subcategories-item {
  float: left;
  width: 25%;
  padding-right: 10px;
}

 .float-columns::after {
  clear: both;
  display: table;
  content: '';
}

.navigation-block__subcategories-title {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ebebeb;
  display: block;
  cursor: pointer;
}

.navigation-block__subcategories-list {
  margin: 0.75rem 0 1.5rem;
}

.navigation-block__subcategories-list.collection {
    display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
      -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.navigation-block__subcategories-item {

}

.navigation-block__subcategories-link {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
  padding: 0.1875rem 0;
  display: inline-block;
  transition: 0.4s; 
}

.navigation-block__brands {
  width: 295px;
}


.navigation-block__brands-title {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ebebeb;
  display: block;
  cursor: pointer;
}

.navigation-block__brands-list {
  margin: 0.625rem 0;
}

.navigation-block__brands-item {
  
}

.navigation-block__brands-item--active > .navigation-block__brands-link {
  color: #222;
  padding: 0.1875rem 0 0.1875rem 1.5625rem;
  position: relative;
}

.navigation-block__brands-item--active > .navigation-block__brands-link:before {
  content: '';
  width: 12px;
  height: 12px;
  border: 1px solid #222;
  border-radius: 50%;
  background: #222;
  position: absolute;
  top: 3px;
  left: 0;
}

.navigation-block__brands-link {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
  padding: 0.1875rem 0 0.1875rem 1.5625rem;
  display: inline-block;
  position: relative;
  transition: 0.4s;
  
}

.navigation-block__brands-link:before {
  content: '';
  width: 12px;
  height: 12px;
  border: 1px solid #222;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px;
  left: 0;
}


.navigation-block__countries {
  width: 295px;
}

.navigation-block__countries-title {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ebebeb;
  display: block;
  cursor: pointer;
}

.navigation-block__countries-list {
  margin: 0.625rem 0;
}

.navigation-block__countries-item {

}

.navigation-block__countries-item--active > .navigation-block__countries-link {
  color: #222;
  padding: 0.1875rem 0 0.1875rem 1.5625rem;
  position: relative;
}

.navigation-block__countries-item--active > .navigation-block__countries-link:before {
  content: '';
  width: 12px;
  height: 12px;
  border: 1px solid #222;
  border-radius: 50%;
  background: #222;
  position: absolute;
  top: 3px;
  left: 0;
}

.navigation-block__countries-link {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
  padding: 0.1875rem 0 0.1875rem 1.5625rem;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.navigation-block__countries-link:before {
  content: '';
  width: 12px;
  height: 12px;
  border: 1px solid #222;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1px;
  left: 0;
}

.navigation-block__price {
  width: 295px;
}

.navigation-block__price-title {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ebebeb;
  display: block; 
  cursor: pointer;
}

.navigation-block__subcategories-arrow {
  display: none;
}

.main-category-product-collection {
  padding-bottom: 0;

}

.main-category-product-collection .long-wrapper {
  background: #fff;
  height: 100%;
}

.navigation-block__subcategories-collection {
  width: 100%;
}

.navigation-block__subcategories-collection .navigation-block__subcategories-title {
  border-bottom: 0;
}


.navigation-block__subcategories-collection-block {
  min-width: 295px;
  margin-bottom: 3rem;
}

.navigation-block__form-slider {

}

.navigation-block__form-slider .tooltip-inner,
.navigation-block__input-hide {
  display: none;
}

.navigation-block__form-slider .slider-horizontal {
  width: auto !important;
  margin: 2.5rem 0;
  position: relative;
}

.navigation-block__form-slider .slider-track {
  width: 100%;
  height: 4px;
  background: #ebebeb;
  cursor: pointer;
  position: absolute;
  margin-top: -0.3125rem;
    top: 50%;
    left: 0;

}

.navigation-block__form-slider .slider-handle {
  width: 6px;
  height: 15px;
  background: #222;
  border-radius: 3px;
  position: absolute;
  top: -5px;
}

.navigation-block__form-slider .slider-selection {
  background: #222;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;

}

.navigation-block__form-slider .row {
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: space-between; 
    justify-content: space-between; 
    -webkit-align-items: center;
    align-items: center;
    margin: 0.9375rem 0;
}

.navigation-block__form-slider .form-control {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    outline: none;
    cursor: pointer;
    letter-spacing: 1px;
    max-width: 115px;
    background-color: #fff;
    padding: 0.3125rem 0px 0.3125rem 0px;
    border-radius: 32px;
    border: 1px solid #222;
    display: inline-block;
    position: relative;
}

.navigation-block__form-slider-submit-outer {
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: flex-end; 
    justify-content: flex-end;  
}

.navigation-block__form-slider-submit {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    height: 3.4375rem;
    border-radius: 3.125rem;
    outline: none;
    border: 1px solid transparent;
    background-color: #222;
    padding: 0 2.5rem;
    margin-top: 2.1875rem;
    transition: 0.4s;
    position: relative;
}
/*filter-block end*/

/*brands*/
.brands {

}

.brands__title {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.875rem;
    font-weight: 400;
    color: #222;
    line-height: 1.75rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-align: center;
    background-color: #f6f5f5;
    background-image: url(/img/background-title_type-2.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 5.625rem 0;
    position: relative;
}

.brands__outer {
  padding: 2.1875rem;
}

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

.brands__item {
  width: 25%;
  height: 10vw;
  position: relative;
  transition: 0.4s;
}

.brands__item:nth-child(4n+1):nth-last-child(-n+3) 
~ .brands__item {
  margin-left: calc((100% - 95%) / (4 - 1)); 
}

.brands__item:nth-child(4n+3):last-child {
  margin-right: auto; 
  margin-left: 0;

}
.brands__item:nth-child(4n+2):last-child {
  margin-right: auto;
}

.brands__item:nth-child(4n+2):nth-last-child(-n+3), 
.brands__item:nth-child(4n+1):nth-last-child(-n+3) 
~ .brands__item {
  margin-left: 0;
}

.brands__front {
  height: 100%;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: center; 
    justify-content: center;  
    -webkit-align-items: center;
    align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.brands__front-title {
  font-family: 'Playfair Display', serif;
    font-size: 2.125rem;
    font-weight: 700;
    color: #fff;
    line-height: 2.25rem;;
    letter-spacing: 3px;
    text-align: center;
  position: relative;
  z-index: 1;
}

.brands__image {
  position: absolute;
  z-index: 0;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  max-width: 115%;
  margin: auto;
  transition: 1.2s;
}


.brands__item:hover .brands__image{
  transform: scale(1.25);
}


.brands__back {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
    -webkit-justify-content: center; 
    justify-content: center;  
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: 0.8s;
}

.brands__item:hover .brands__back {
  opacity: 1;
  pointer-events: all;
}

.brands__link {
  transform: scale(0.85);
  transition: 0.4s;
}

.brands__link:hover {
  transform: scale(1);
}


.brands__back-title {
  font-family: 'Playfair Display', serif;
    font-size: 2.125rem;
    font-weight: 700;
    color: #222;
    line-height: 2.25rem;;
    letter-spacing: 3px;
    text-align: center;
}

.brands__count {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.125rem;
    color: #666666;
    position: relative;
    margin: 0.3125rem 0 1.1rem 0;
}

.brands__count:after {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: -24px;
  width: 15px;
  height: 7px;
  background: url(/img/brands-arrow.png) no-repeat center;
}
/*brands end*/

/*one brand*/

.one-brand-intro {
  width: 100%;
  /*height: 440px;*/
  height: calc(100vh - 11vw);
  background: #f6f5f5;
  position: relative;
}

.one-brand-intro__background-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
/*  height: 405px;*/
height: 100%;
  overflow: hidden;
}

.one-brand-intro__background-outer:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

.one-brand-intro__background {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  margin: auto;
}

.one-brand-intro__title-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
        -webkit-justify-content: center; 
    justify-content: center;  
    -webkit-align-items: center;
    align-items: center;

}

.one-brand-intro__title-outer h3 {
  font-family: "Century Gothic", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
}


.one-brand-intro .wrapper {
  max-width: 1540px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}


/* .one-brand-intro .breadcrumbs {
  position: absolute;
  top: 0;
  left: 0;
} */

.one-brand-intro__info {
  width: 100%;
  text-align: center;
}

.one-brand-intro__info-title {
  font-family: "Century Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
}


.one-brand-intro__logo-outer {
  margin-top: -2.1875rem;
}

.one-brand-intro__title {
  font-family: "Century Gothic", sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.one-brand-intro__post-info {
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 2.1875rem 0 0 0;
  display: block;
}

.one-brand-intro__icon-outer {
  position: relative;
  top: 2px;
}

.one-brand-intro__icon-picture {

}


.one-brand-intro__logo {
  max-width: 100%;
}

.one-brand-intro__nav {
   width: 100%;
    position: absolute;
    z-index: 20;
    height: 70px;
    bottom: -35px;
}

.one-brand-intro ~ .navigation-block,
.one-brand-intro ~ .col-padding {
   padding-top: 57px;
}


.one-brand-intro__list {
   height: 100%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.one-brand-intro__item {
  margin: 0 1.875rem;
}

.one-brand-intro__item.active .one-brand-intro__link {
  color: #adadad;
}

.one-brand-intro__link {
    font-family: "Century Gothic", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    transition: 0.4s;
}

.one-brand-intro__link:hover {
  color: #666666;
}

.one-brand-intro__link img {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.5rem;
}

.one-brand-intro__link img.plus {
  
}

.one-brand-intro__link img.minus {
  display: none;
}




.one-brand-article {
  background: #f6f5f5;
  /*margin-top: -2.5rem;*/
  padding-top: 1px;
}

.one-brand-article__item {
  max-width: 1540px;
  margin: 0 auto;
  background: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}

.one-brand-article__item-container {
  max-width: 1140px;
  margin: 0 auto;
}

.one-brand-article__item-gray {
  background: #f6f5f5;
}

.one-brand-article--publication .one-brand-article__item {
  position: relative;
/*    top: -120px;*/
    z-index: 2;
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
  padding-left: 2.75rem;
  padding-right: 2.75rem;
  
}


.one-brand-article__item .desktop-block-outer {

}

.one-brand__captions-outer {
  margin: 1.5625rem 0 0 0;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.one-brand__captions-item {
  margin: 0 0 0 2.1875rem;
}

.one-brand__captions-item span {
  display: none;
}

.one-brand__captions-item:first-child {
  margin: 0;
}

.one-brand__captions-link {
    font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #666666;
    font-weight: 700;
    transition: 0.4s;
}

.one-brand__subcaptions-outer {
  margin: 1.5625rem 0 0 -2.1875rem;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.one-brand__subcaptions-item {
  margin: 0 0 1.1rem 2.1875rem;
}


.one-brand__subcaptions-link {
    font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    text-decoration: none;
    color: #666666;
    font-weight: 400;
    transition: 0.4s;
}

.one-brand__subcaptions-link:hover {
  color: #222;
}

.one-brand-article .desktop-block-outer {
  display: none;
}

.one-brand-article .desktop-block-outer.current {
  display: block;
}


.one-brand-article__inner-outer {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 3.125rem 0;
}

.one-brand-article__image-block {
  width: 40%;
}

.one-brand-article__image-block.type-1 {
  margin-right: 1.1rem;
}

.one-brand-article__image-block.type-2 {
  margin-left: 1.1rem;
}


.one-brand-article__image-block img {
  max-width: 100%;
}

.one-brand-article__text-block {
  width: 60%;
}

.one-brand-article__text-block a {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin: 4.0625rem 0 2.1875rem 0;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.one-brand-article__text-block a:hover {
  text-decoration: none;
  transition: 0.4s;
}

.one-brand-article__text-block a:after {
  content: '';
  position: absolute;
  top: 3px;
  right: -35px;
  background: url(/img/title_right-arrow.png) no-repeat center;
  width: 22px;
  height: 11px;
  transition: 0.4s;
}

.one-brand-article__text-block a:hover:after {
  right: -40px;
  transition: 0.4s;
}

.one-brand-article__options {
  width: 133%;
  margin-left: -16.5%;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  padding: 0.9375rem 16.5%;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.one-brand-article__tags {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.one-brand-article__tags-label {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

.one-brand-article__tags-list {
  list-style: none !important;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.one-brand-article__tags-item {
  margin-left: 1rem !important;
}

.one-brand-article__tags-item:first-child {
  margin-left: 0 !important;
}

.one-brand-article__tags-link {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.5rem;
  color: #979797;
}

.one-brand-article__social {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.one-brand-article__social-label {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

.one-brand-article__social-list {
  list-style: none !important;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.one-brand-article__social-item {
  margin-left: 16px !important;
  height: 30px;
}

.one-brand-article__social-item:first-child {
  margin-left: 0 !important;  
}

.one-brand-article__social-link {

}

article.one-brand-article__item > .desktop {
  display: block;
}

article.one-brand-article__item > .mobile {
  display: none;
}

/*one brand end*/

/****************/
/*    GALLERY   */
/****************/

.gallery-list > li {
  width: 25%;
  float: left;
  height: 300px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.gallery-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all .8s ease-out;
  -o-transition: all .8s ease-out;
  transition: all .8s ease-out;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-background-size: cover;
  background-size: cover;
}

.gallery-list > li.show .gallery-bg,
.gallery-list > li:hover .gallery-bg {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0;
}

.gallery-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: opacity .8s ease-out;
  -o-transition: opacity .8s ease-out;
  transition: opacity .8s ease-out;
}

.gallery-list > li.show .gallery-wrap,
.gallery-list > li:hover .gallery-wrap {
  opacity: 1;
}

.gallery-wrap h4 {
  font-family: "PT Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.gallery-show {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 0;
  z-index: 3;
  background-color: transparent;
  border: none;
  outline: none;
  display: none;
}

body.mob .gallery-bg {
  opacity: .9;
}

body.mob .gallery-show {
  display: block;
}

body.mob .gallery-list > li.show .gallery-show {
  display: none;
}

@media screen and (max-width: 1180px) {
  .gallery-list > li {
    width: 50%;
  }
}

@media screen and (max-width: 550px) {
  .gallery-list > li {
    width: 100%;
    float: none;
  }
}

/****************/
/*    #GALLERY  */
/****************/




/*product card*/


.card {
  background: #f6f5f5;

}

.card .wrapper {
  max-width: 100%;
  background: #fff;
  margin: 0 auto;
  
}

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

.product-slider {
  position: relative;
  width: 50%;
}

.product-slider .lSPager {

}



.product-slider .lSSlideOuter .lSPager.lSpg > li a {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #222;
  background-color:#fff;
  position: relative;
}

.product-slider .lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
  background: #fff;
}


.product-slider .lSSlideOuter .lSPager.lSpg > li.active a {

}

.product-slider .lSSlideOuter .lSPager.lSpg > li.active a:before {
  content: '';
  position: absolute;
  top:3px;
  left:3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #222;
}


.product-slider .lSAction {
}

.product-slider .lSAction > a{
  z-index: 15;
}

.product-slider .lSPrev {
  width: 40px;
  height: 53px;
  left: 60px;
  background-image:url(/img/left-arrow_one-card.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.product-slider .lSNext {
  width: 40px;
  height: 53px;
  right: 60px;
  background-image:url(/img/right-arrow_one-card.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.product-slider__list {
  height: 100%;
}

.product-slider__item {
  height: 575px;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.product-slider__item-video{
  width: 70%;
  height: 70%;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 30;
}

.product-slider__image {
  max-width: 100%;
  max-height: 100%;
}

.product-description {
  width: 50%;
  padding: 3.75rem 3.75rem 3.75rem 3.75rem;
}

.product-description__title {
  font-family: 'PT Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: #222;
  line-height: 2.8125rem;
  letter-spacing: 1.5px;
}

.product-description__row-1 {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    margin-top: 0.3125rem;
}

.product-description__price {
  font-family: 'Playfair Display', serif;
  font-size: 3.125rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.product-description__price-title{
  font-family: 'PT Sans', sans-serif;
  font-weight: 400;
  color: #666666;
  display: block;
  font-size: 16px;
}

.product-description__currency {
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 900;
  color: #222;
  letter-spacing: 1.5px;
  margin: 0 0 0 0.125rem;
}

.product-description__currency-comment {
  font-family: 'PT Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #222;
  font-style: italic;
  margin-left: -0.3125rem;
}

.product-description__spinner {
  width: 105px;
  height: 35px;
  border: 2px solid #222;
  border-radius: 35px;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 1.5625rem 0 2.1875rem;
    position: relative;
}

/*ANIMATE CSS*/




@media (min-width: 1023px) {
  @keyframes shake {
    from, to {
      transform: translate3d(0, 0, 0);
    }

    10%, 50%, 90% {
      transform: translate3d(-3px, 0, 0);
    }

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

  .shake {
    animation-name: shake;
    animation-duration: .75s;
    animation-fill-mode: both; 
    animation-iteration-count: 1;
  }

}

@media (max-width: 1023px) {
  @keyframes shake {
    from, to {
      transform: translate3d(0, 0, 0);
    }

    10%, 50%, 90% {
      transform: translate3d(-3px, 0, 0);
    }

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

  .shake {
    animation-name: shake;
    animation-duration: .75s;
    animation-fill-mode: both; 
    animation-iteration-count: 1;
  }
}


.product-description__button {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  width: 33px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.product-description__button-plus {
  text-align: right;
}

.product-description__button-minus {
  text-align: left;
}

table .product-description__button-plus {
  text-align: left;
}

table .product-description__button-minus {
  text-align: right;
}

.product-description__spinner input {
  border: none;
  outline: none;
  text-align: center;
  width: 30px;
  font-weight: 700;
}

 
.quantity {
  position: relative;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}

input[type=number]
{
  -moz-appearance: textfield;
}

.quantity input {
  width: 45px;
  height: 100%;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  padding-left: 1.0625rem;
  border: 0;
}

.quantity input:focus {
  outline: 0;
}

.quantity-nav {
  position: absolute;
  left: 0;
  height: 42px;
  width: 105px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
  justify-content: space-between;
}

.quantity-button {
  position: relative;
  cursor: pointer;
  border-left: 1px solid #eee;
  width: 20px;
  height: 35px;
  text-align: center;
  color: #333;
  font-size: 0.8125rem;

  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.quantity-button.quantity-up {
   position: relative;
    top: 10px;
    right: 20px;
    border: 0;
}

.quantity-button.quantity-down {
  position: relative;
  top: 9px;
  border: 0;
}

.product-description__add-to-cart {
  width: 65px;
  height: 65px;
  padding: 15px;
  border-radius: 50%;
  background: #222;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  top: 15px;
  cursor: pointer;
  transition: 0.4s;

}



.product-description__add-to-cart img {
  max-width: 100%;
}

.product-description__row-2 {
  margin: 2.8125rem 0;
}

.product-description__table {

}

.product-description__table td {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666666;
  padding: 0 2.5rem 0.9375rem 0;
}

.product-description__table td span {
  color: #222;
}

.product-description__table td span a {
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
}

.product-description__table td span a:hover {
  text-decoration: underline;
}

.product-description__info-button {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #222;
  text-transform: uppercase;
  text-decoration: none;
  max-width: 22rem;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #222;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 0.4s;
}

.product-description__info-button:hover {
  color: #666;
  border: 1px solid #666;
}

.product-description__info-button > div {
  position: relative;
  transition: 0.4s;
}

.product-description__info-button > div:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  width: 20px;
  background: url(/img/title_right-arrow.png);
  background-position: right center;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}


.card-description-mobile {
  display: none;
}

.card-description {
  background-color: #fff;
  padding: 7.5rem 0;
}

.card-description__captions {
  height: 60px;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}

.card-description__captions.sticky-cart {
  background: #fff;
  position: fixed;
  z-index: 20;
  bottom: 0;
  left: 0;
  width: 100%;
}

.card-description__list {
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
        -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}



.card-description__item {
  height: 100%;
  margin: 0 0 0 4.25rem;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}


.card-description__item:first-child {
  margin: 0;
}

.card-description__link {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #646464;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  -webkit-align-items: center;
  align-items: center;
  transition: 0.4s;
}

.card-description__link:hover {
  color: #222;
  text-shadow: 1px 0px #222;
}

.card-description__link:hover span {
  
}

.card-description__link span {
  width: 30px;
  height: 30px;
  opacity: 0.5;
  margin-right: 0.75rem;
  transition: 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
    -webkit-align-items: center;
  align-items: center;
}

.card-description__link span img {
  max-width: 100%;
}

.card-description__item.current .card-description__link {
    color: #222;
  text-shadow: 1px 0px #222;
}

.card-description__item.current .card-description__link span {
  opacity: 1;
}

.card-description__item.current {
  position: relative;
}

.card-description__item.current:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(30px + 0.75rem);
  width: 33%;
  height: 2px;
  background: #222;
}

.card-description__info-outer {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4.6875rem 0 0 0;
}


.card-description__info {
  display: none;
}

.card-description__info:first-of-type {
  display: block;
}


.add-info-mobile {
  display: none;
}

article.card-description__info h1 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  line-height: 1.9rem;
  margin: 2.5rem 0 1.25rem 0;
}

article.card-description__info h2,
article.card-description__info h3,
article.card-description__info h4,
article.card-description__info .like-title{
  font-family: 'PT Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.6rem;
  margin: 2.5rem 0 1.25rem 0;
}

article.card-description__info h5 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #222;
  margin: 4.0625rem 0 2.1875rem 0;
}

article.card-description__info ul {
  margin-top: -0.625rem;
  padding-left: 1.5625rem;
  list-style: disc;
}

article.card-description__info ol {
  margin-top: -0.625rem;
  padding-left: 1.5625rem;
  list-style: decimal;
}

article.card-description__info p,
article.card-description__info li {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #222;
}

article.card-description__info li {
  line-height: 1.75rem;
}


article.card-description__info p {
  line-height: 1.75rem;
  margin: .75rem 0 .75rem 0;
}

article.card-description__info a {
  color: inherit;
  text-decoration: underline;
  opacity: 0.8;
  transition: 0.4s;
}

article.card-description__info a:hover {
  opacity: 1;
  text-decoration: none;
}


article.card-description__info em {
  font-style: italic;
}

article.card-description__info strong {
  font-weight: 700;
}


article.card-description__info hr {
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid transparent;
  position: relative;
}




/*product card end*/

/*contacts*/


.contacts {
  background: #f6f5f5;
  padding: 1.5625rem 0;
}

.contacts .wrapper {
  max-width: 1540px;
  margin: 0 auto;
}

.contacts__feedback {

}

.contacts__feedback-list {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contacts__feedback-item {
  width: calc(50% - 15px);
  padding: 3.75rem 0;
  background: #fff;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.contacts__feedback-picture-outer {
  width: 102px;
  height: 102px;
}

.contacts__feedback-picture {
  max-width: 100%;
}

.contacts__feedback-info {
  margin: 0 0 0 2.5rem;
}

.contacts__feedback-title {
  font-family: "Century Gothic", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #222;
    line-height: 2.25rem;
    letter-spacing: 3.2px;
    margin: 0 0 0.9375rem 0;
    position: relative;
    transition: 0.4s;
}

.contacts__feedback-mail-link {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #222;
  letter-spacing: 2px;
  text-decoration: none;
  margin: 0 0 0.625rem 0;
  display: inline-block;
}

.contacts__feedback-tel {
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  letter-spacing: 2px;
  margin: 0.3125rem 0;
  position: relative;
  padding: 0 0 0 1.5625rem;
}

.contacts__feedback-tel .tel-icon-1 {
  width: 18px;
  position: absolute;
  top: 0px;
  left: 0;
}

.contacts__feedback-tel .tel-icon-1 img {
  max-width: 100%;
}

.contacts__feedback-tel .tel-icon-2 {
  width: 18px;
  position: absolute;
  top: 0px;
  left: -25px;
}

.contacts__feedback-tel .tel-icon-2 img {
  max-width: 100%;
}

.contacts__stores {
  margin: 1.5625rem 0 0 0;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}


.contacts__stores-single {
  width: calc(50% - 15px);

}

.contacts__stores-single-item {
  height: 750px;
  padding: 0 0 10.625rem 0;
  background-color: #f6f5f5;
  position: relative;
}

.contacts__stores-single-picture-outer {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contacts__stores-single-picture {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  margin: auto;
}

.contacts__stores-single-info {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: calc(100% - 60px);
  background-color: #fff;
  padding: 2.1875rem 3.125rem 4.375rem 5rem;
}

.contacts__stores-single-title {
  font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    line-height: 2.25rem;
    letter-spacing: 3px;
}

.contacts__stores-single-info p,
.contacts__stores-single-text {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5rem;
    color: #222;
    letter-spacing: 1px;
    margin: 2.5rem 6rem 1.875rem 0;
}

.contacts__stores-single-tel {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.375rem;
    color: #222;
  position: relative;
  padding: 0 0 0 1.1rem;
  margin: 0 0 0.3125rem 0;
}

.contacts__stores-single-tel .icon {
  position: absolute;
  top: 2px;
  left: 0;
}

.contacts__stores-single-tel .contacts__stores-single__street-address,
.contacts__stores-multiply-tel .contacts__stores-single__street-address{
  position: relative;
}

.contacts__stores-single-tel .ico img {
  max-width: 100%;
}

.contacts__stores-single-link {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #222;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: absolute;
    top: 35px;
    right: 50px;
    transition: 0.4s;
}

.contacts__stores-single-link img {
  transition: 0.4s;
}

.contacts__stores-single-link:hover img{
  transform: scale(1.1);
}

.contacts__stores-multiply {
  width: calc(50% - 15px);
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contacts__stores.long .contacts__stores-multiply {
  width: calc(100% - 15px);
}

.contacts__stores-multiply-item {
  width: calc(50% - 15px);
  height: 355px;
  background-color: #f6f5f5;
  margin: 0 0 2.5rem 0;
  padding: 0 0 4.6875rem 0;
  position: relative;
}

.contacts__stores.long .contacts__stores-multiply-item {
  width: calc(25% - 15px);
  background: #fff;
}

.contacts__stores-multiply-picture-outer {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contacts__stores-multiply-picture {
  height: 100%;
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  margin: auto;
}

.contacts__stores-multiply-info {
  position: absolute;
  bottom: 0;
  left: 15px;
  width: calc(100% - 30px);
  background-color: #fff;
  padding: 1.1rem 2.1rem 1.1rem 2.5rem;
}

.contacts__stores-multiply-title {
  font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    line-height: 1.5rem;
    letter-spacing: 2.5px;
    margin: 0 1.1rem 1.1rem 0;
}

.contacts__stores-multiply-title span {
  text-transform: uppercase;
}

.contacts__stores-multiply-tel {
  font-family: 'PT Sans', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.1875rem;
    color: #222;
  position: relative;
  padding: 0 0.9375rem;
  margin: 0 0 0.3125rem 0;
}

.contacts__stores-multiply-tel .icon {
  width: 13px;
  position: absolute;
  top: 2px;
  left: -5px;
}

.contacts__stores-multiply-tel .icon img {
  max-width: 100%;
}


.contacts__stores-multiply-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #222;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: absolute;
    bottom: -22.5px;
    right: 10px;

}

.contacts__stores-multiply-link img {
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  max-width: 50%;
}

.contacts__stores-multiply-link:hover img{
  transform: scale(1.1);
}

/*contacts end*/


/*map*/

.map-wrapper {
  background-color: #f6f5f5;
  padding: 4.375rem 0 0 0;
  width: 100%;
}

.map-wrapper .map {
  width: 100%;
  height: 730px;
}

/*map*/

/*shop info*/

.shop-info + .map-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -9.6875rem;
  padding: 0;
}


.shop-info {
  background-color: #f6f5f5;
  padding: 4.375rem 0 2.5rem 0;
}

.shop-info .wrapper {
  max-width: 1540px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  z-index: 3;
}

article.shop-info__content {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #222;
    line-height: 1.875rem;
  max-width: 1230px;
  margin: 0 auto;
  padding: 6% 0 4% 0;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.shop-info__column {
  width: 300px;
}

.shop-info__column:last-child {
  width: auto;
}

.shop-info__title {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    margin: 0 0 2.5rem 0;
}

.shop-info__info {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
     margin: 0 0 2.5rem 0;
}

.shop-info__row {
  display: inline-block;
}

.shop-info__icon {
  position: relative;
  top: 2px;
}

/*shop-info end*/

/*modal cart*/

/*13-09*/

body {
  position: relative;
}

.modal-alert {
  width: 615px;
  background: #222;
  padding: 1.5625rem 1.5625rem 1.5625rem 0;
  position: fixed;
  z-index: 100;
  top: 170px;
  left: -650px;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.28);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.28);
  box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.28);
}

.modal-alert__caption-outer {
  border-bottom: 1px solid #fff;
  padding: 0.9375rem;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  -webkit-align-items: center;
    align-items: center;
}

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

.modal-alert__title {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
  position: relative;
  left: -650px;
}


.modal-alert__item {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  -webkit-align-items: center;
    align-items: center;
}

.modal-alert__description {
  font-family: 'Century Gothic';
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.1rem;
    padding: 0.9375rem;
    position: relative;
  right: 675px;
}

.modal-alert__close {
  left: -225px;
  cursor: pointer;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  -webkit-align-items: center;
    align-items: center;

}

.modal-alert__close div {
  width: 25px;
  height: 25px;

}


.modal-alert__close div span:nth-of-type(1) {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  transform: rotate(45deg);
  transform-origin: 40% 50%;
  position: relative;
  top: 10px;
}

.modal-alert__close div span:nth-of-type(2) {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  transform: rotate(135deg);
  transform-origin: 50% 40%;
  position: relative;
  top: 10px;
}

.modal-cart {
  width: 615px;
  background: #fff;
  padding: 1.5625rem  0 1.5625rem  1.5625rem ;
  position: fixed;
  z-index: 100;
  top: 170px;
  right: -650px;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.28);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.28);
  box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.28);


}


.modal-cart__title {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #4f4f4f;
    text-decoration: none;
    text-transform: uppercase;
  border-bottom: 1px solid #b3ada8;
  padding: 0 0 1.875rem 0;
  position: relative;
  right: -650px;
}


.modal-cart__outer {
  margin-top: 1.1rem;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  -webkit-align-items: center;
    align-items: center;
}

.modal-cart__item {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  -webkit-align-items: center;
    align-items: center;
}

.modal-cart__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;

  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
  position: relative;
  left: 675px;
}

.modal-no-product .modal-cart__image {
  width: 0;
}

.modal-cart__image img {
  max-width: 100%;
}

.modal-cart__description {
  font-family: 'Century Gothic';
    font-size: 0.875rem;
    font-weight: 400;
    color: #222;
    line-height: 1.1rem;
    max-width: 200px;
    position: relative;
  left: 675px;
}

.modal-no-product .modal-cart__description {
  max-width: 300px;
}

.modal-cart__booking {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    height: 55px;
    border-radius: 50px;
    border: 1px solid transparent;
    background-color: #222;
    padding: 0 40px;
    margin: 0 1.5625rem 0 0;
    transition: 0.4s;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  -webkit-align-items: center;
    align-items: center;
    position: relative;
  left: 675px;
}

.modal-cart__booking:hover {
  color: #222;
  background-color: #fff;
  border: 1px solid #222;
}

.modal-cart__close {
  position: absolute;
  top: 25px;
  right: -225px;
  cursor: pointer;
}

.modal-subscribe-wrap{display: none;
  position: fixed;
  z-index: 999998;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.2);
}

.modal-subscribe {display: none;
  width: 615px;
  background: #fff;
  padding: 1.5625rem 1.5625rem 1.5625rem 1.5625rem;
  position: fixed;
  z-index: 999999;
  right: calc(50% - 307px);
  top: -650px;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.28);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.28);
  box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.28);
  display: none;
}

.modal-subscribe__outer {
  margin-top: 0.625rem;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  -webkit-align-items: center;
    align-items: center;
}


.modal-subscribe__title {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.375rem;
    color: #4f4f4f;
    text-decoration: none;
    text-transform: uppercase;
  border-bottom: 1px solid #b3ada8;
  padding-right: 1.875rem;
  padding-bottom: 1.875rem;
  position: relative;
}


.modal-subscribe__item {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.modal-subscribe__form {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.modal-subscribe__field-outer {
   width: 47%;
   position: relative;
}


.modal-subscribe__field-outer span {
  font-family: "Century Gothic", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #222;
  position: absolute;
  right: 4px;
  bottom: 8px;
}

.modal-subscribe__field {
  font-family: "Century Gothic", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #222;
    width: 100%;
    height: 35px;
    border: none;
    border-bottom: 1px solid #b3b3b3;
    outline: none;
    margin: 1.5625rem 0 0 0;
    padding: 0.3125rem 0;
}

.modal-subscribe__field + span {
  position: absolute;
}

.modal-subscribe__required {
  font-family: "Century Gothic", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #222;
    margin-top: 0.3125rem;
}

.modal-subscribe__submit {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    height: 55px;
    border-radius: 50px;
    outline: none;
    border: 1px solid transparent;
    background-color: #222;
    padding: 0 2.5rem;
    margin-top: 2.1875rem;
    transition: 0.4s;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  -webkit-align-items: center;
    align-items: center;
    position: relative;
  cursor: pointer;
}

.modal-subscribe__submit:hover {
  color: #222;
  background-color: #fff;
  border: 1px solid #222;
}


.modal-subscribe__image-outer {
  width: 160px;
  height: 160px;
  border-radius: 50%;

  margin-right: 1.1rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
  position: relative;
}


.modal-subscribe__image {
  max-width: 100%;
}


.modal-subscribe__notification {
  font-family: "Century Gothic", sans-serif;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 400;
    color: #222;
    margin-top: 1.5625rem;
}


.modal-subscribe__close {
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
}

.modal-subscribe__description {
  width: 100%;
}

#myModal3:focus {
  outline: 1px solid #fff;
}

/*modal cart end*/


/*cart*/

.main-menu__cart {
  position: relative;
}

.main-menu__quantity-outer {
  font-family: "Century Gothic", sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #fff;
    background-color: #ff0000;
    padding: 1px 5px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  position: absolute;
  top: 22px;
  right: 22px;
}

.main-menu__quantity-outer.transparent {
  opacity: 0;
}

.main-menu__cart .quantity {

}

.cart {
  background-color: #f6f5f5;
}

.cart__title {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.875rem;
    font-weight: 400;
    color: #222;
    line-height: 1.75rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-align: center;
    background-color: #f6f5f5;
    background-image: url(/img/background-title_type-2.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 5.625rem 0;
    position: relative;
}

.cart .wrapper {
  max-width: 1170px;
  margin: 0 auto;
}

.cart__outer {
  background-color: #fff;
  border: 2px solid #ebebeb;
  padding: 1.875rem 0 0 0;
}

*[data-change-to-step] {
  cursor: pointer;
}

.active .cart__step-caption-number[data-change-to-step] {
  cursor: default;
}

.cart__step .cart__step-outer {
  display: none;
  position: relative;
}

.cart__step.active .cart__step-outer {
  display: block;
}


.cart__step-caption {
  border-top: 2px dashed #f1f1f1;
  padding: 0.9375rem 4.375rem;
}

.cart__step-caption::after {
    content: '';
    display: table;
    clear: both;
}

.cart__step-caption img {
    vertical-align: baseline;
}

.cart__step-caption--top {
  border-top: 0;
}

.cart__step-caption-edit [data-change-to-step] {
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.active .cart__step-caption-edit [data-change-to-step] {
  opacity: .3;
  pointer-events: none;
  cursor: default;
}

.cart__step-caption-number {
  float: left;
}

.cart__step-caption-number > div {
  display: inline-block;
}

.cart__step-caption-order {
    font-family: "Century Gothic", sans-serif;
    font-size: 1.5625rem;
    font-weight: 400;
    background-image: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
    margin-right: 0.9375rem;
    color: #4c4c4c;
    border: 2px solid #4c4c4c;
    background-color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.active .cart__step-caption-order {
    color: #fff;
    border: 2px solid #222;
    background-color: #222;
}

.cart__step-caption-label {
  font-family: "Century Gothic", sans-serif;
  font-size: 1.3125rem;
  font-weight: 400;
  color: #222;
  text-transform: uppercase;
}


.active .cart__step-caption-label {
  font-weight: 700;
}

.cart__step-caption-info {
  float: right;
}

.cart__step-caption-info div {
  font-family: "Century Gothic", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #222;
  display: inline-block;
  line-height: 38px;
}

.cart__step-caption-info div + div {
   margin-left: 1.875rem;
}

.cart__step-caption-info div span {
  font-size: 1.625rem;
}

.cart__step-caption-delete {
  cursor: pointer;
}

.cart__step-item {
  padding: 2.3125rem 4.375rem;
  width: 100%;
}

.cart__step-item:first-child {

}

.cart__step-item:nth-child(1) {
  z-index: 15;display: block;
}

.cart__step-item:nth-child(2) {
  z-index: 10;
  display: none;
}

.cart__step-item:nth-child(3) {
  z-index: 5;
  display: none;
}

.cart__step-item table {
  width: 100%;
  padding: 0.9375rem 4.375rem;
}

.cart__step-item table th:first-child,
.cart__step-item table td:first-child {
  text-align: left;
  width: 50%;
}

.cart__step-item table th:last-child,
.cart__step-item table td:last-child {
  text-align: right;
  width: 17%;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.cart__step-item table th:nth-child(2),
.cart__step-item table td:nth-child(2) {
  width: 17%;
  text-align: left;
}

.cart__step-item table th:nth-child(3),
.cart__step-item table td:nth-child(3) {
  width: 17%;
  text-align: center;
}

.cart__step-item table th,
.cart__step-item table td {

}

.cart__step-item table th {
  font-family: 'PT Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #222;
  padding: 0 0 1.0625rem 0;
  border-bottom: 1px solid #d7d7d7;
}

.cart__step-item table td {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 2.8125rem 0;
    border-bottom: 1px solid #d7d7d7;
}

.cart__step-item table .product-description__spinner {
  margin: 0 auto;
}

.cart__step-item table tr {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.cart__step-item table td div {

}

.cart__step-item .delete-item {
  cursor: pointer;
}

.cart__step-item .picture-item {
  width: 87px;
  height: 87px;
  border: 1px solid #222;
  border-radius: 50%;
  background: #fff;
  margin: 0 1.125rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.cart__step-item .picture-item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 79px;
  height: 79px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.cart__step-item .picture-item img {
  max-width: 100%;
}

.cart__step-item .name-item {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #222;
    max-width: 250px;
    margin: 0 0.9375rem 0.9375rem 0;
}

.cart__step-item .detail-item {
  font-family: "Century Gothic", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #222;
}

.cart__step-item .detail-item div {
  margin-bottom: 0.3125rem;
}

.cart__step-item .detail-item span {
  font-weight: 400;
}

.cart__step-item .total-summa {
  font-family: "Century Gothic", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}

.cart__step-item .price {
  font-family: "Century Gothic", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}

.cart__step-balance {
  padding: 0.625rem 4.375rem;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;

}

.cart__step-balance-label {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #222;
  margin: 0 1.1rem 0 0;
}

.cart__step-balance-overall-summa {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
}


.cart__step-balance-overall-summa span {
  font-size: 1.75rem;
}

.cart__step-accept {
  padding: 1.5625rem 4.375rem 3.75rem 4.375rem;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}

.cart__step-accept input[type="radio"] {

}

.cart__step-accept label {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.1875rem;
    font-weight: 700;
    color: #222;
}

.cart__step-accept button {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.1875rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    height: 55px;
    border-radius: 50px;
    border: 1px solid transparent;
    outline: none;
    background-color: #222;
    padding: 0 3.75rem;
    margin: 0 0 0 3.125rem;
    transition: 0.4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.cart__step-accept button:hover {
  background-color: #fff;
  color: #222;
  border: 1px solid #222;
}

.cart__payment-form {
  padding: 0 4.375rem;
}

.cart__payment-form-choose {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}



.cart__payment-form-choose input[type="radio"] {
  position: absolute;
  z-index: 10;
  top: -1px;
  left: 0;
  width: 200px;
  height: 15px;
  display: block;
  opacity: 0;
  cursor: pointer;

}

.cart__payment-form-choose input[type="radio"] + i:before {
    content:'';
    position: absolute;
    top:-1px;
    left: 0px;
    color:red;
    width: 17px;
    height: 17px;
    background: url(/img/radio-unchecked.png) no-repeat center;
}

.cart__payment-form-choose input[type="radio"]:checked + i:before {
    content:'';
    position: absolute;
    top:-1px;
    left: 0px;
    width: 17px;
    height: 17px;
    background: url(/img/radio-checked.png) no-repeat center;
}


.cart__payment-form-choose label {
  font-family: 'PT Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #222;
    margin: 0.625rem 0;
    padding: 0 0 0 1.5625rem;
    display: block;
    position: relative;
}


.cart__payment-form-choose div {
  margin-left: 3.125rem;

}

.cart__payment-form-choose div:first-child {
  margin-left: 0;
}

.cart__payment-form-comment {
  font-family: 'PT Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: #bfbfbf;
  margin-top: 1.25rem;
  display: block;
}


.cart__payment-form-balance {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #222;
    margin: 3.125rem 1.5625rem 0 0;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.cart__payment-form-summa-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
        -webkit-align-items: center;
    align-items: center;
    font-family: "Century Gothic", sans-serif;
}

.cart__payment-form-summa {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 0 1.1rem;
}

.cart__payment-form-summa span {
  font-size: 2.25rem;
}

.cart__payment-step-back {
  cursor: pointer;
}

.cart__payment-form-accept {
  margin-top: 2rem;
}

.cart__payment-form-accept:hover {
  background-color: #fff;
  color: #222;
  border: 1px solid #222;
}

.cart__delivery-outer {

}

.cart__delivery-outer + div {
  clear: both;
}

.cart__delivery-outer:after {
  display: table;
  clear: both;
  content: '';
}

.cart__delivery-block {
  float: left;
  width: 30%;
  margin-right: 5%;
  margin-bottom: 3.75rem;
}

.cart__delivery-block:nth-of-type(3) {
  margin-right: 0;
}

.cart__delivery-block:nth-of-type(4) {
  clear: both;
}

.cart__delivery-block.comments {
  width: 65%;
  clear: both;
  margin-bottom: 0; 
}

.cart__delivery-block.promocode {
  margin-right: 0;
  margin-bottom: 0; 
}

.cart__delivery-block.promocode input {
  margin-top: 0 !important; 
}

.cart__delivery-block .input-outer {
  position: relative;
}


.cart__delivery-block .input-outer span {
  font-family: "Century Gothic", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #b3b3b3;
  position: absolute;
  bottom: 10px;
  left: -30px;
}

.cart__delivery-block .input-outer div {
  font-family: "Century Gothic", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: red;
  position: absolute;
  bottom: -20px;
  left: 0;
  display: none;
}

.cart_bottom {
  padding: 2.3125rem 4.375rem 4.375rem;
}

.cart_bottom::after {
  content: '';
  display: table;
  clear: both;
}

.cart_bottom-amount {
  text-align: right;
  margin-bottom: 2rem;
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  color: #222;
}

.cart_bottom-amount span.font-text {
  font-size: 1.1rem;
  font-weight: 400;
}

.cart_bottom-amount span:not(.font-text) {
  font-size: 2rem;
  color: #222;
}

#promo_sale-wrap {
  display: none;
}

.cart_bottom-delivery {
  display: none;
  text-align: right;
  margin-bottom: 1rem;
  font-weight: 400;
  color: #bfbfbf;
  font-size: 1.1rem;
}

.cart_bottom-delivery b,
.cart_bottom-delivery span {
  font-family: "Century Gothic", sans-serif;
}

.cart_bottom-delivery span {
  font-size: 2rem;
}

.cart_bottom-button button {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    height: 55px;
    border-radius: 50px;
    border: 1px solid transparent;
    outline: none;
    background-color: #222;
    padding: 0 3rem;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.cart_bottom-button button:hover {
  background-color: #fff;
  color: #222;
  border-color: #222;
}

.cart_bottom .cart_gift {
  margin-right: 2rem;
}

.cart_gift {
  font-family: "Century Gothic", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
}

.cart_gift input {
  position: absolute;
  visibility: hidden;
  outline: 0;
}

.cart_gift span {
  height: 30px;
  width: 30px;
  display: block;
  position: absolute;
  left: 0;
  border: 2px solid #222;
  border-radius: 50%;
  top: 50%;
  margin-top: -15px;
}

.cart_gift span::after {
  content: '';
  position: absolute;
  height: 6px;
  width: 6px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  border-radius: 50%;
  -webkit-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.cart_gift input:checked + span::after {
  background-color: #222;
  height: 16px;
  width: 16px;
}

#card_gift_info {
  border: 1px solid #b3b3b3;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  font-size: 13px;
  color: #b3b3b3;
  font-family: 'PT Sans';
  text-align: center;
  line-height: 16px;
  margin-top: -5px;
  margin-left: 5px;
  font-weight: 700;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

#card_gift_info:hover {
  color: #222;
  border-color: #222;
}



.bg-danger {
  font-family: "Century Gothic", sans-serif;
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 400;
    color: red;
    text-transform: uppercase;
}

input:-webkit-autofill, textarea:-webkit-autofill, 
select:-webkit-autofill {
    background-color: inherit !important;
    background-image: none;
    color: rgb(0, 0, 0);
}



.cart__delivery-block:after {
  visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.cart_gift-hide {
  display: none;
}

#giftcard_text_count {
  padding-top: 5px;
  text-align: right;
}

#giftcard_text_count.red {
  color:  #ff0000;
}

.cart__delivery-block-title {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    margin-bottom: 2.125rem;
    display: block;
}

.cart__delivery-block input[type="text"],
.cart__delivery-block input[type="tel"],
.cart__delivery-block input[type="number"],
.cart__delivery-block input[type="email"],
.cart__delivery-block textarea {
  font-family: "Century Gothic", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #222;
  width: 100%;
  height: 35px;
  border: none;
  border-bottom: 1px solid #b3b3b3;
  outline: none;
  margin: 1.625rem 0 0 0;
  padding: 0.3125rem 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.cart__delivery-block input[type="text"]:focus,
.cart__delivery-block input[type="tel"]:focus,
.cart__delivery-block input[type="number"]:focus,
.cart__delivery-block input[type="email"]:focus,
.cart__delivery-block textarea:focus {
  border-color: #222;
}

.cart__delivery-block input::-webkit-input-placeholder {color:#808080;}
.cart__delivery-block input::-moz-placeholder          {color:#808080;}
.cart__delivery-block input:-moz-placeholder           {color:#808080;}
.cart__delivery-block input:-ms-input-placeholder      {color:#808080;}

.cart__delivery-block-title + input, 
.cart__delivery-block-title + textarea {
  margin-top: 0 !important;
} 

 textarea {
  box-sizing: padding-box !important;
  overflow:hidden;
}



.cart__delivery-block-outer-small {
  margin-bottom: 2rem;
}

.cart_choose_delivery  {
  margin-bottom: 1rem;
}

.cart__input-radio {
  
}

.cart__input-radio input[type="radio"] {
  position: absolute;
  z-index: 10;
  top: -3px;
  left: 0;
  width: 200px;
  height: 15px;
  display: block;
  opacity: 0;
  cursor: pointer;

}

.cart__input-radio input[type="radio"] + i:before {
    content:'';
    position: absolute;
    top:0;
    left: 0px;
    color:red;
    width: 17px;
    height: 17px;
    background: url(/img/radio-unchecked.png) no-repeat center;
}

.cart__input-radio input[type="radio"]:checked + i:before {
    content:'';
    position: absolute;
    top:0;
    left: 0px;
    width: 17px;
    height: 17px;
    background: url(/img/radio-checked.png) no-repeat center;
}


.cart__input-radio label {
  font-family: 'PT Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #222;
    margin: 0.625rem 0;
    padding: 0 0 0 1.5625rem;
    display: block;
    position: relative;
}

.cart__delivery-block-group {
  margin-top: -1.0625rem;
  display: none;
}

.cart__delivery-block-group-divided {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.cart__delivery-block-group-divided .type-1 {
  width: 56%;
}

.cart__delivery-block-group-divided .type-2 {
  width: 34%;
}

.cart__delivery-block-group-divided.hide {
  display: none;
}

.select-box {
  cursor: pointer;
  position : relative;
  width: 100%;
  margin: 3.125rem 0 1.0625rem 0;
}

.select,
.label {
  display: block;
  font-family: "Century Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #222;

}

.select {
  width: 100%;
  position: absolute;
  top: -15px;
  padding: 5px 0;
  height: 40px;
  opacity: 0;
  background: none transparent;
}

.select option {
  background-color: #fff !important;
}

.select option:hover {
  background-color: #fff !important;  
}

.select option:focus {
  background-color: #fff !important;  
} 


.select:focus {
  background-color: #222!important;
}

.select-box label.label {
   border-bottom: 1px solid #464646;
}

.label {
  position: relative;
  padding: 5px 0;
  cursor: pointer;

}

.cart__delivery-block-group .select-caption {
  font-family: 'PT Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #222;
  position: absolute;
  top: -25px;
  left: 0;
}

#cart_samovivoz.cart__delivery-block-group {
  margin-top: 4rem;
}

.show.cart__delivery-block-group {
  display: block;
}

.label-desc {

}


.open .label::after {
   content: "";
   transform: rotate(180deg);
   background: url('/img/arrow-city.png') no-repeat center;
   width: 11px;
   height: 6px;
}


.label::after {
  content: "";
  font-size: 0.75rem;
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 15px;
  transform: rotate(0deg);
  background: url('/img/arrow-city.png') no-repeat center;
  width: 11px;
  height: 6px;
}


/*cart end*/



/*13-09 end*/
.cart--empty .wrapper{
  padding-top: 6.25rem;
}

.cart--empty .cart__outer {
  padding: 1.875rem;
}

.products h3 {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #646464;
    letter-spacing: 1px;
}

.staticText {
  margin-top: 1.5625rem;
}

.staticText h3 {
  font-family: "Century Gothic", sans-serif;
   font-size: 1.3125rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    text-align: center;
}

.staticText p {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    text-align: center;
    color: #222;
    margin-top: 1.1rem;
}


.float-menu__outer {
  position: fixed;
  z-index: 100;
  bottom: 2.5rem;
  /*top: calc(100vh - 4vw);*/
  right: 1.5rem;
  width: 15rem;
}

.float-menu__item img {
  max-height: 100%;
}

.float-menu__item--primary {
  position: absolute;
  bottom: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: #222;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22), 0 14px 56px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22), 0 14px 56px rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22), 0 14px 56px rgba(0, 0, 0, 0.25);

}

.float-menu__item--secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.float-menu__item:nth-child(1) {
  position: absolute;
  bottom: 0;
  right: 5px;
  z-index: 3;
}

.float-menu__item:nth-child(2) {
  position: absolute;
  bottom: 0.2rem;
  right: 0.75rem;
  z-index: 2;
  transition: 0.3s;

}


.float-menu__item.moved:nth-child(2) {
   transform: translateY(-150%);
     -webkit-transform:translateY(-150%);
    transition-delay: 0ms; 
    -webkit-transition-delay: 0ms;
    opacity: 1;
}

.float-menu__item:nth-child(3) {
  position: absolute;
  bottom: 0.2rem;
  right: 0.75rem;
  z-index: 1;
  transition: 0.3s;

}

.float-menu__item.moved:nth-child(3) {
      transform: translateY(-275%);
     -webkit-transform:translateY(-275%);
    transition-delay: 50ms; 
    -webkit-transition-delay: 50ms;
    opacity: 1;
}

.float-menu__item:nth-child(2) .float-menu__button {

  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
        -webkit-box-shadow: 0px 3px 3.88px rgba(0, 0, 0, 0.17);
-moz-box-shadow: 0px 3px 3.88px rgba(0, 0, 0, 0.17);
box-shadow: 0px 3px 3.88px rgba(0, 0, 0, 0.17);

}

.float-menu__item:nth-child(3) .float-menu__button {

  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
        -webkit-box-shadow: 0px 3px 3.88px rgba(0, 0, 0, 0.17); ;
-moz-box-shadow: 0px 3px 3.88px rgba(0, 0, 0, 0.17); ;
box-shadow: 0px 3px 3.88px rgba(0, 0, 0, 0.17); ;
}



.float-menu__info {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5rem;
    color: #222;
    text-transform: uppercase;
    min-width: 10.5rem;
    background-color: #fff;
    height: 3.25rem;
    padding: 0.25rem 0.75rem;
    position: relative;
    right: -1.25rem;
    z-index: -1;
    opacity: 0;
    -webkit-box-shadow: 0px 3px 3.88px rgba(0, 0, 0, 0.17);
-moz-box-shadow: 0px 3px 3.88px rgba(0, 0, 0, 0.17); 
box-shadow: 0px 3px 3.88px rgba(0, 0, 0, 0.17); 
}

.float-menu__item.moved.moved:nth-child(2) .float-menu__info ,
.float-menu__item.moved.moved:nth-child(3) .float-menu__info  {
  opacity: 1;
}



.float-menu__info span,
.float-menu__info a {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(0,0,0, 0.8);
  display: block;
  margin-top: -0.5rem;
  text-decoration: none;
}




.float-menu__button {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #fff;
  padding: 0.5rem;
  display: block;
}

/*footer*/

/**************************/
/*    PRODUCTS STOCKS    */
/**************************/

#show_stock {
  position: fixed;
  z-index: 999999;
  left: 1.5rem;
  bottom: 2.5rem;
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  border: none;
  outline: none;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22), 0 14px 56px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22), 0 14px 56px rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22), 0 14px 56px rgba(0, 0, 0, 0.25);
}

#show_stock img {
  height: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#show_stock.active img {
  opacity: .25;
}

.product_stock {
  display: none;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.9);
  min-height: 60%;
  padding: 1.875rem;
  font-size: 1.125rem;
  color: #222;
}

.product_stock a {
  text-decoration: underline;
}

.main-category-product__subcategory-item:hover .product_stock,
body.show_stocks .product_stock {
  display: block;
}

body.show_stocks .main-category-product__subcategory-item:hover .product_stock {
  display: none;
}

.product_stock table {
  width: 100%;
}

.product_stock tr {
  line-height: 1.5;
}

.product_stock tr + tr {
  border-top: 1px solid #ccc;
}

.product_stock table + p {
  margin-top: 10px;
}

.product_stock p + p {
  margin-top: 5px;
}

.product_balance {
  margin-bottom: 5px;
  background-color: #BE1C1C;
  color: #fff;
  padding: 3px;
}

.one_product_stock {
}

.one_product_stock table {
  width: 100%;
  max-width: 500px;
  font-size: 1.125rem;
  color: #222;
  margin-left: auto;
  margin-right: auto;
}

.one_product_stock tr {
  line-height: 2;
}

.one_product_stock th {
  text-align: left;
}

.one_product_stock td {
  text-align: center;
}

.one_product_stock th,
.one_product_stock td {
  border: 1px solid #ccc;
  padding-left: 5px;
  padding-right: 5px;
}

.one_product_stock .danger {
  background-color: rgba(255,0,0,.2);
}

.one_product_stock .warning {
  background-color: rgba(255,255,0,.2);
}

/**************************/
/*    #PRODUCTS STOCKS    */
/**************************/


/*about*/

.about {
  margin-bottom: 5rem;

}

.about__banner-slider {

}


.about__banner-slider-item {
  height: 550px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.about__banner-slider-item:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 23.5vw;
    height: 13.5vw;
  z-index: 1;
  background: url(/img/big-flower.png) no-repeat;
  background-size: cover;
}

.about__banner-slider-item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0, 0.5);
}


.about__banner-slider-picture {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  margin: auto;
}

.about__banner-slider-title {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.25rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  top: -5rem;
  z-index: 3;
}

.about__banner-slider-title span {
  font-size: 3.5625rem;
  display: block;
}

.about__banner-slider-title span mark {
  background: inherit;
  font-size: 5rem;
  color: inherit;
}

.about__banner-slider-title:before {
  content: '';
    position: absolute;
    top: -3rem;
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
    background: url(/img/title_icon.png) no-repeat center;
    background-size: contain;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.about__information-main-outer {
  position: relative;

}

.about__information-animation-outer {
 
}

.about__information {
  max-width: 1170px;
  margin: 0 auto;
}
/*
.about__information-text-2 h3 {
  margin-left: 6rem;
}

.about__information-text-4 h3 {
  margin-left: 6rem;
}

.about__information-text-6 h3 {
  margin-left: 6rem;
}
*/
.about__information-item {
  margin: 4rem 0 0 0;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.letter-outer {
  position: absolute;
  z-index: -1;
}

.letter-outer svg .cls-1 {
  fill: #e0dfdf;
}

.letter-outer-1 {
  position: absolute;
  bottom: 12%;
  left: -16%;
}

.letter-outer-1 svg {
  width: 20.2857rem;
}

.letter-outer-2 {
  position: absolute;
  bottom: 12%;
  left: 39%;
}

.letter-outer-2 svg {
  width: 16.1429rem;
}

.letter-outer-3 {
  position: absolute;
  bottom: 19%;
    right: 1%;
}

.letter-outer-3 svg {
  width: 17.6429rem;
}

.letter-outer-4 {
  position: absolute;
  bottom: 12%;
  left: 39%;
}

.letter-outer-4 svg {
  width: 16.1429rem;
}

.letter-outer-5 {
  position: absolute;
  bottom: 12%;
  left: -16%;
}

.letter-outer-5 svg {
  width: 21.1429rem;
}

.letter-outer-6 {
  position: absolute;
  bottom: 12%;
  left: 39%;
}

.letter-outer-6 svg {
  width: 27.6429rem;
}

.about__link-outer {
  margin: 4.0625rem 0 0 0;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.about__link {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    letter-spacing: 1px;
    background-color: #222;
    padding: 1.25rem 2.5rem;
    border-radius: 34px;
    border: 1px solid #222;
    display: inline-block;
    position: relative;
    transition: 0.4s;
}

.about__link:hover {
  color: #222;
  background-color: #fff;
}



.about__information-picture-outer {
  width: 38rem;
  height: 38rem;
  position: relative;
  top: -12rem;
  overflow: hidden;      
}


.about__information-picture {
  max-width: 100%;
/*  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  margin: auto;*/
}

.about__information-text {
  width: 46%;
}



.about__information-text h3 {
  font-family: "Century Gothic", sans-serif;
    font-size: 4.25rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    padding-bottom: 4.375rem;
    position: relative;
}

.about__information-text-count {
  font-size: 1.75rem;
  position: absolute;
  top: 2rem;
  left: -5rem;
}

.about__information-text h3:after {
  content: '';
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  width: 4.1875rem;
  height: 0.125rem;
  background: #222;
}

.about__information-text p {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #8a8a8a; 
  line-height: 1.6rem;
  letter-spacing: 0.15rem;
}

.about__information-text p b {
  font-weight: 700;
}

.about__stats {
  max-width: 1030px;
  margin: 0 auto;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.about__stats canvas {
  display: none;
}

.about__stats-item {

}

.about__stats-item:nth-of-type(1) {
  padding-left: 0;
  padding-right: 4rem;
}

.about__stats-item:nth-of-type(2) {
  border-left: 2px solid #aea8a3;
  border-right: 2px solid #aea8a3;
  padding-left: 4rem;
  padding-right: 4rem;
}

.about__stats-item:nth-of-type(3) {
  padding-left: 4rem;
  padding-right: 0;
}

.about__stats-item > div {
  position: relative;
}

.about__input-outer {
  position: relative;
}

.about__input-outer span {
  font-family: "Century Gothic", sans-serif;
    font-size: 4.2rem;
    font-weight: 700;
    color: #222;
    text-align: center;
  position: absolute;
  top: 5px;
  
}

.about__stats-item:nth-of-type(1) .about__input-outer span {
  right: -20px;
}

.about__stats-item:nth-of-type(2) .about__input-outer span {
  right: 17px;
}

.about__stats-item:nth-of-type(3) .about__input-outer span {
  right: 15px;
}

.about__input-outer .about__stats-number {
  border: none; 
}


@media screen and (max-width: 1280px) {
  .main-menu__item {
    margin-left: 1.3rem;
  }
  .main-menu__item.sales {
    margin-left: 2.5rem;
  }

  .about__input-outer span {
      font-size: 3.6rem;
  }

  .about__stats-item:nth-of-type(1) .about__input-outer span {
    right: -15px;
  }

  .about__stats-item:nth-of-type(3) .about__input-outer span {
    right: 39px;
    font-size: 3.2rem;
    top: 8px;
  }

}

@media screen and (max-width: 768px) {
  .about__input-outer .about__stats-number {
      font-size: 2.4rem !important;
  }

  .about__input-outer span {
      font-size: 2.4rem;
  }

  .about__stats-item:nth-of-type(1) .about__input-outer span {
    right: 15px;
  }

  .about__stats-item:nth-of-type(3) .about__input-outer span {
    right: 60px;
    font-size: 2rem;
    top: 8px;
  }

  .about__stats-item {
      padding-left: 1rem !important ;
      padding-right: 1rem !important  ;
  }

}

@media screen and (max-width: 640px) {
  .about__input-outer .about__stats-number {
    max-width: 120px !important;
      font-size: 2.4rem !important;
  }

  .about__input-outer span {
      font-size: 2.4rem;
  }

  .about__stats-item:nth-of-type(1) .about__input-outer span {
    right: 5px;
    top: 4px; 
  }

  .about__stats-item:nth-of-type(3) .about__input-outer span {
    right: 70px;
    font-size: 1.8rem;
    top: 6px;
  }

  .about__stats-item {
      padding-left: 1rem !important ;
      padding-right: 1rem !important  ;
  }
  

  .special-service__info ul{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
  }

  .special-service__info ul li{
    width: 100%;
    justify-content: center;
  }

  .special-service__info ul li:not(:last-child){
    margin-bottom: 20px;
  }

  .special-service__info .special-service__grid a.special-service__contact-link{
    min-width: 200px;
  }

}

@media screen and (max-width: 480px) {
  .about__input-outer .about__stats-number {
    max-width: 80px !important;
      font-size: 2.4rem !important;
  }

  .about__input-outer span {
      font-size: 2.4rem;
  }

  .about__stats-item .about__input-outer span {
    display: none !important;
  }

  .about__stats-item {
      padding-left: 1rem !important ;
      padding-right: 1rem !important  ;
  }


}

.about__stats-number {
  font-family: "Century Gothic" !important;
  font-size: 4.2rem !important;
  font-weight: 700 !important;
  color: #222 !important;
  text-align: center !important;
  display: block !important;
  position: relative !important;
  max-width: 200px !important;
  width: auto !important;
  height: auto !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
}

.about__stats-text {
  font-family: "Century Gothic", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #222;
  text-align: center;
  margin-top: 1rem;
  display: block;
}

/*about end*/



/*special service*/

.special-service {

}

.special-service__block {

}

.special-service__info {
  padding: 4rem 0;
}

.special-service__info h2 {
    font-family: "Century Gothic", sans-serif;
    font-size: 2rem;
    line-height: 2.75rem;
    text-align: center;
    margin: 1.25rem 0;
}

.special-service__info p {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #8a8a8a;
    line-height: 1.6rem;
    letter-spacing: 0.15rem;
    margin-bottom: 1.25rem;
}

.special-service__info p:first-of-type {
  margin-top: 3.25rem;
}

.special-service__info p:last-of-type {
  margin-bottom: 0;
}

.special-service__pic {
  width: 100%;
  height: 30vw;
  position: relative;
  overflow: hidden;
}

.special-service__pic img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  margin: auto;
}

.special-service__info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    margin: 3rem 0;
}

.special-service__info ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
        -webkit-align-items: center;
    align-items: center;
}

.special-service__info ul li img {
  max-width: 100%;
}

.special-service__info a.special-service__contact-link {
  font-family: 'PT Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.375rem;
    color: #222;
    position: relative;
    padding: 0 0 0 1.1rem;
    margin: 0 0 0.3125rem 0;
}


.special-service__info a.special-service__contact-link:hover {
  text-decoration: none;
}

.special-service__info .special-service__contact-link-image{
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.special-service__info .special-service__contact-link-image svg{
  width: 30px;
  height: 30px;
}

.special-service__info .special-service__grid a.special-service__contact-link{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.special-service__order-outer {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.special-service__info a.special-service__order-online {
    font-family: "Century Gothic", sans-serif;
    /* font-size: 1.1rem; */
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    letter-spacing: 1px;
    background-color: #222;
    margin: 1.5625rem 0 0 0;
    padding: 1.375rem 2.75rem;
    border-radius: 44px;
    display: inline-block;
    transition: 0.4s;
}

.special-service__info a.special-service__order-online:hover {
  color: #222;
   background-color: #fff;
    border: 1px solid #222;
}





/*special service end*/

footer {
  background-color: #f6f5f5;
}

.footer-cards {
  max-width: 1540px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  top: 100px;

}

.footer-cards__list {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-cards__item {
  background-color: #fff;
  width: 23.5%;
  padding: 2.375rem 2.5rem 4.375rem;
  text-align: center;
}
.footer-cards__item3x3 {
  width: 33%;
}
.footer-cards-features {
   max-width: 1540px;
  margin: -1.5625rem auto 0 auto;
  
}

.footer-cards__title {
  display: block;
  font-family: "Century Gothic", sans-serif;
    font-size: 1.6875rem;
    font-weight: 400;
    color: #222;
    line-height: 2.0625rem;
    text-decoration: none;
    text-align: center;
    position: relative;
}

/*.footer-cards__title:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  top: -36px;
  left: calc(50% - 15px);
  background: url(/img/title_icon.png) no-repeat center;
  background-size: contain;
}*/

.footer-cards__item > img {
  width: 50px;
  height: 50px;
  margin-bottom: 2.5rem;
}

.footer-cards__text {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #222;
  text-align: center;
  line-height: 1.5625rem;
  letter-spacing: 0.5px;
  margin: 1.25rem 0 0 0;
}

.footer-block-outer {
  background: #222;
  padding: 11.1rem 0 0 0;
  position: relative;
  z-index: 1;
}

.footer-block {
  max-width: 1540px;
  margin: 0 auto;
}

.footer-block__info {
  padding: 0 0 5rem 0;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-block__contacts {

}

.footer-block__logo-outer {
  max-width: 235px;
  transition: 0.4s;
}

.footer-block__logo-outer:hover {
  opacity: 0.8;
}

.footer-block__logo {
  max-width: 100%;
}

.footer-block__social {
  margin: 2.5rem 0;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

}

.footer-block__link {
  width: 40px;
  margin: 0 0 0 1.1rem;
  transition: 0.4s;
}

.footer-block__link-zelena {
  border-left: 2px solid #fff;
  padding-left: 1.125rem;
}

.footer-block__link-zelena:after {
  display: none;
}

.footer-block__link img {
  max-width: 100%;
}

.footer-block__link:hover {
  opacity: 0.8;
}

.footer-block__link div {
  font-family: 'PT Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1rem;
}

.footer-block__link span {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-block__menu {

}

.footer-block__title {
/*  font-family: 'PT Sans', sans-serif;
  font-size: 2.125rem;
  color: #fff;
  letter-spacing: 1.5px;
  transition: 0.4s;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;*/
        font-family: "Century Gothic", sans-serif;
    /* font-size: 1.0625rem; */
    font-size: 1vw;
    line-height: 1.3125rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    transition: 0.4s;
    position: relative;

}

.weight700 {
  font-weight: 700;
  transition: 0.4s;
}

.footer-block__title span {
  display: none;
}

.footer-block__menu-list {
  margin: 0.9375rem 0 0 0;
}

.footer-block__menu-item {
  margin: 0.9375rem 0 0 0;
}

.footer-block__menu-item:first-child {
  margin: 0;
}

.footer-block__menu-link {
/*  font-family: 'PT Sans', sans-serif;
  font-size: 1.375rem;
  color: #fff;
  line-height: 1.625rem;
  text-decoration: none;
  transition: 0.4s;*/
  font-family: 'PT Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
}

.footer-block__menu-link:hover {
  text-decoration: underline;
}

.footer-block__subscribe {
  text-align: right;
  min-width: 340px;
}

.footer-block__subscribe .footer-block__title {
  display: block;
}

.footer-block__subscribe-text {
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.125rem;
  margin: 0.625rem 0;
}

.footer-block__form {
  margin: 1.875rem 0;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.footer-block__input-text-outer {
  position: relative;
  width: 100%;
}

.footer-block__input-text-outer .successMessage,
.footer-block__input-text-outer .errorMessage {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  color: tomato;
  text-align: center;
}

.footer-block__input-text-outer .successMessage {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.2;
    position: static;
}

.footer-block__input-text {
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  color:#cecece;
  background: #6b6b6b;
  border: 0;
  outline: 0;

  padding: 0 1.5625rem;
  width: 100%;
  height: 60px;
  display: block;
}

.footer-block__input-text::-webkit-input-placeholder {color:#cecece;}
.footer-block__input-text::-moz-placeholder          {color:#cecece;}
.footer-block__input-text:-moz-placeholder           {color:#cecece;}
.footer-block__input-text:-ms-input-placeholder      {color:#cecece;}

footer .footer-block__input-submit {
  width: 70px;
  border: 0;
  outline: 0;
  background-color: #fff;
  background-image: url(/img/mail-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 38px;
  cursor: pointer;
  height: auto;
  border-radius: 0;
}

.footer-block__copy {
  border-top: 1px solid #fff;
  padding: 1.5625rem 0;
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.footer-block__copyright {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.0625rem;
  color:#cacaca;
  letter-spacing: 0.5px;
}

.footer-block__copyright span {

}

.footer-block__copyright span:nth-of-type(1) {
  padding-right: 1.1rem;
  border-right: 1px solid #fff;
}

.footer-block__copyright span:nth-of-type(2) {
  padding-left: 1.1rem;
  
}


.footer-block__verify {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.footer-block__verify-title {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.0625rem;
  color:#cacaca;
  letter-spacing: 0.5px;
  margin: 0 1.1rem;
}

.footer-block__verify-list {
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.footer-block__verify-item {
  width: 52px;
  margin-right: 1.1rem;
}

.footer-block__verify-item img {
  max-width: 100%;
}

.footer-block__verify-item:last-child {
  margin-right: 0;
}

/*footer end*/

/*.news__outer li,*/
/*.box2,
.box1 {
  visibility: hidden;
}*/


.cart .shoppingCart{
  padding-top: 50px;
}

/*end filter*/

.after-filter-section{
  background-color: #f6f5f5;
  padding: 0px 0 1.8rem 0;
}

.after-filter-section .wrap{
  position: relative;
}

.after-filter-section .wrap::before, .after-filter-section .wrap::after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -65px;
  width: 100px;
  height: 45px;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(left, rgba(246,245,245,0) 0%, rgba(246,245,245,.9) 17%, rgba(246,245,245,1) 30%, rgba(246,245,245,1) 100%); 
  background: -webkit-linear-gradient(left, rgba(246,245,245,0) 0%, rgba(246,245,245,.9) 17%, rgba(246,245,245,1) 30%, rgba(246,245,245,1) 100%); 
  background: linear-gradient(to right, rgba(246,245,245,0) 0%, rgba(246,245,245,.9) 17%, rgba(246,245,245,1) 30%, rgba(246,245,245,1) 100%);
  z-index: 15;
}

.after-filter-section .wrap::before{
  right: auto;
  left: -65px;
  transform: translateY(-50%) rotate(180deg);
}

.after-filter-section{
  max-height: 200px;
  overflow: visible;
  transition: all .3s ease-in-out;
}

.after-filter-section.hidden{
  max-height: 0;
  overflow: hidden;
}

.after-filter-section.hidden .after-filter-list{
  opacity: 0;
  visibility: hidden;
  transition: all .4s .2s ease-in-out;
}

.after-filter-list{
  opacity: 1;
  visibility: visible;
  margin-left: -60px;
  margin-right: -60px;
}

.after-filter-list .slick-track{
  margin-left: 90px;
  margin-right: 90px;
}

.after-filter-list .slick-initialized .slick-slide{
  outline: none!important;
}

.after-filter-list li{
  margin-left: 10px;
  margin-right: 10px;
  outline: none!important;
}

.after-filter-list li a{
  background-color: #fff;
  border-radius: 15px;
  padding: 8px 20px;
  font-size: 16px;
  display: block;
  outline: none;
  transition: all .3s ease-in-out;
}

.after-filter-list li a:hover{
  color: #fff;
  background-color: rgba(0,0,0,.82);
}

.after-filter-list .slick-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 0;
  width: 40px;
  height: 40px;
  background-size: 20px;
  padding: 20px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 18;
}

.after-filter-list .slick-arrow.slick-disabled{
  opacity: .3;
}

.after-filter-list .slick-prev{
  left: 50px;
  background-image: url(../img/prev-slick.svg);
}

.after-filter-list .slick-next{
  right: 50px;
  background-image: url(../img/next-slick.svg);
}

.row{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.col-inner{
  margin-top: 50px;
  margin-bottom: 50px;
}

.col-4{
  margin-left: 10px;
  margin-right: 10px;
  width: calc(33.333% - 20px);
}

.col-3{
  margin-left: 10px;
  margin-right: 10px;
  width: calc(25% - 20px);
}

.sitemap{
  background-color: #f6f5f5;
  padding-top: 50px;
  padding-bottom: 80px;
}

.sitemap h1, .sitemap h1 a{
  font-size: 36px;
  font-weight: 700;
  text-decoration: none;
}

.sitemap h2{
  margin-bottom: 20px;
}

.sitemap h2, .sitemap h2 a, .sitemap h2 .link{
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
}

.sitemap h2 .link:hover{
  text-decoration: underline;
}

.sitemap .link{
  text-decoration: underline;
}

.sitemap .list li{
  margin-top: 10px;
  margin-bottom: 10px;
}

.sitemap .list li .link{
  font-size: 14px;
}

.sitemap .list .list{
  margin-left: 10px;
}

.sitemap .list .list .list{
  margin-left: 20px;
}


/*MEDIA QUERIES*/



@media (min-width: 1280px) {
    .presentation__item--type-2 {
    min-height: 535px;
  }

  .presentation__item--type-2-content {
    min-height: 535px;
  }

  .presentation__item--type-1 {
    min-height: 535px;
  }

    .main-menu.sticky .main-menu__list{
    max-width: 85%;
  }

  .main-menu__item{
    margin-left: 1.3rem;
  }

  .sticky .main-menu__logo{
    margin-right: -1rem;
  }

  .main-menu__link{
    font-size: .99vw;
  }

}

@media (min-width: 1600px) {
  .main-menu__item{
    margin-left: 1.8rem;
  }

  .sticky .main-menu__logo{
    margin-right: 0;
  }

  .main-menu__link{
    font-size: 1vw;
  }

}


@media (min-width: 767px) and (max-width: 1280px) {
  .presentation__item--type-1.desktop,
  .presentation__item--type-2-content.desktop {
      height: 40.5vw;

  }

  .presentation__item--type-1-content-title {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .presentation__item--type-1-content-text.desktop {
    margin-top: 1rem;
  }

  .presentation__item--type-1-content-link {
    margin: 1rem 0 0 0;
  }

}

@media (min-width: 767px) and (max-width: 800px) {

  .presentation__item--type-1-content-text.desktop {
    max-height: 1.8rem;
    overflow: hidden;
    position: relative;
  }

  .presentation__item--type-1-content-text.desktop:after {
    content: '...';
    position: absolute;
    bottom: -0.3rem;
    left: 48%;
  }
}


@media (max-width: 1350px) {

  .news__info {
    padding: 2.5rem 3rem 3rem 3rem;
  }

  .news__caption {
    font-size: 1.5rem;
    line-height: 1.8rem;
    min-height: auto;
  }

  .news__text {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

@media (min-width: 1600px) {
  .main-menu {
    height: 80px;
  }
}


@media (max-width: 1600px) {

  .letter-outer-1 {
    left: 0;
  }

  .letter-outer-3 {
    right: 0;
  }

  .letter-outer-5 {
    left: 0;
  }

  .top-menu__link {

  }

  .main-menu__item {

  }

  .main-menu__item:nth-last-child(2) {

  }

  .main-menu__link {

  }

  .main-menu__submenu-topic-link {

  }

  .main-menu__submenu-link {
  
  }

  .brands__front-title {
    letter-spacing: 2px;
  }

  .brands__back-title {
    letter-spacing: 2px;
  }

  .brands__count {
    
  }
}

@media (max-width: 1540px) {
  .main-category-product__subcategory,
  .footer-cards,
  .footer-block,
  .contacts .wrapper,
  .swiper-button-outer {
    max-width: 100%;
    padding: 0 15px;
  }


  .map-wrapper {
    /*padding: 50px 15px 0 15px;*/
  }

  .map-wrapper .map {
    height: 600px;
  }

  .shop-info {
/*    padding: 70px 15px 40px 15px;*/
  }

  .shop-info .wrapper {
    max-width: 100%;
/*    margin: 0 40px;*/
  }

  .navigation-block__title {
    max-width: 100%;
  }

  .navigation-block__filters-panel {
    max-width: 100%;
  }

  .main-category-product__subcategory-list {
/*    width: auto;
    overflow-x: scroll;*/
  }

  .main-category-product__subcategory-item {

  }

  .main-category-product__subcategory-list--single .main-category-product__subcategory-item {
/*    min-width: 22.5%;*/
  }

  .footer-cards__item {
    width: 24%;
/*    padding: 70px 25px 50px 20px;*/
  }

  .footer-cards__text {
/*    margin: 25px 0 0 0;*/
  }

  .product-description__row-1 {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .product-description {
/*    padding: 60px 150px 60px 60px;*/
  }

  .product-slider .lSPrev {
    left: 30px;
  }

  .product-slider .lSNext {
    right: 30px;
  }

  .card-description {
/*    padding: 90px 0;*/
  }

  .after-filter-list .slick-prev{
  left: 55px;
  }

  .after-filter-list .slick-next{
  right: 55px;
  }



}


@media (max-width: 1440px) {

  .presentation__item--type-1-content,
  .presentation__item--type-2-text-block,
  .presentation__item--type-2-text-block-type-2,
  .presentation__item--type-1-content, 
  .presentation__item--type-2-text-block {
    padding: 2.5rem 2rem 2.5rem 2rem;
  }

  .presentation__item--type-2-text-block-type-2-title {
   font-size: 1.5rem;
    line-height: 1.8rem;
    letter-spacing: 1.5px;
  }

  .main-category-product__caption {

    font-size: 1.5vw;
    line-height: 1.75vw;

  }


}

@media (max-width: 1440px) {

  .brands__item {
    width: 33.3333%;
      height: 13vw;
  }



  .main-menu__search-icon {

  }

  .top-menu__link {

  }

  .top-menu__item {
/*    margin-left: 15px;*/
  }


  .product-description {
/*    padding: 60px;*/
  }


}

@media (max-width: 1366px) {
  .main-menu__item {
/*    margin: 0 0 0 20px;*/
  }

  .main-menu__item:nth-last-child(2) {
/*    margin: 0 20px 0 0;*/
  } 

  .brands__outer {
/*    padding: 25px;*/
  }

  .map-wrapper .map {
    height: 550px;
  }

  article.shop-info__content {
/*    padding: 80px 15px;*/
  }

}

@media (max-width: 1310px) {


  .contacts__feedback-item {
    width: 100%;
    margin-bottom: 1.5625rem;
  }
  .contacts__stores {
    flex-direction: column !important;
  }

  .contacts__stores-single {
    width: 100%;
    margin-right: 2rem;
    margin-bottom: 2.5rem;
  }

  .contacts__stores-multiply {
    width: 100%;
  }

  .footer-block__title {
    font-size: 16px;
    -webkit-justify-content: center;
    justify-content: center;
  }



}



@media (max-width: 1310px) {

  .about__information,
  .wrapper {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .main-menu__list {
/*    margin-right: 80px;*/
  }

  .main-menu__item {
/*    margin: 0 0 0 12px;*/
  }

  .main-menu__item.separator {
    margin-left: 12px;
  }

  .main-menu__link {

      text-align: center;
  }

  .top-slider__info-button {

/*      padding: 16px 36px; */
  }

  .presentation {
/*    padding: 75px 0 10px 0;*/
  }

  .presentation__title {
/*    padding: 80px 0 40px 0;*/
    background-size: 85%;
  }

  .presentation__title-logo {
    top: 40px;
  }

  .presentation__item--type-1-content,
  .presentation__item--type-2-text-block {
  /*  padding: 40px;*/
  }

  .presentation__item--type-1-content-title,
  .presentation__item--type-2-text-block-type-2-title {

/*
    margin: 20px 0 5px 0;*/
  }

  .presentation__item--type-1-content-text,
  .presentation__item--type-2-text-block-type-2-text {

  }

  .presentation__item--type-1-content-link,
  .presentation__item--type-3-content-link.desktop {

    /*margin: 30px 0 0 0;
      padding: 16px 36px;*/
  }

  .soc-network {
/*    padding: 30px 0;*/
  }

  .soc-network__title {
/*    padding: 45px 0;*/

  }

  .soc-network__controls {
    left: 0;
  }
  

  .soc-network__link-outer {
/*    margin: 20px 0 0 0;*/
  }

  .soc-network__link {
/*
      padding: 16px 36px;*/
  }

  .reviews {
/*    padding: 30px 0;*/
  }

  .reviews__title {
/*    padding: 45px 0;*/
  }

  .reviews__slider {
/*    margin: 40px 0;*/
  }

  .reviews__controls {
    left: 0;
  }

  .reviews__link {
/*
      padding: 16px 36px;*/
  }

  .navigation-block__filter-button,
  .navigation-block__sorting  {

/*      padding: 14px 66px 14px 36px;*/
  }


  .navigation-block__filters-panel {
    -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  }


  .navigation-block__subcategories,
  .navigation-block__brands,
  .navigation-block__countries, 
  .navigation-block__price {
    width: 32%;
  }

  .navigation-block__subcategories-collection {
    width: 100%;
  }

  .navigation-block__price {
/*    padding-bottom: 25px;*/
  }

  .main-category-product__subcategory {
/*    margin-bottom: 10px;*/
  }

  .main-category-product__subcategory-title {

  }

  .main-category-product__subcategory-list {

  }

  .main-category-product__subcategory-item {
    margin-left: 15px;
      width: calc(33.33333% - 15px);
  }

  .main-category-product__title {
/*    padding: 70px 0;*/
    background-size: 50%;
  }

  .news__title {
    padding: 45px 0;
    background-size: contain;
  }

  
  .news__info {
/*    padding: 40px;
    margin: -200px 15px 0 15px;*/
  }
  
  .news__caption {

  }

  .news__text {

  }

  .news__link {
    width: 56px;
      height: 55px;
      border-radius: 55px;
  }

  .news__link:hover {
    width: 180px;
  }

  .news__link > .news__link-word {

  }

  .news__link-icon {
    top: 20px;
    right: 14px;
  }

  .news {
/*    padding: 30px 0 0 0;*/
  }

  .brands__outer {
/*    padding: 15px;*/
  }

  .brands__item {
    width: 50%;
      height: 250px;
  }


  .footer-cards {
    top: 35px;
  }

  .footer-cards__item {
    width: 49%;
/*    padding: 70px 25px 50px 20px;*/
    margin-bottom: 20px;
  }

  .main-category-product__download {
/*    padding: 15px 0;*/
  }


  /*.footer-block__info:before {
    content: '';
    position: absolute;
    top: 70px;
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
    background: url(/img/title_icon.png) no-repeat center;
    background-size: contain;
     -webkit-filter: invert(100%);
      filter: invert(100%);

  }*/
  .footer-block__info {
    padding-bottom: 20px;
  }

  .footer-block__contacts {
    -webkit-order: 1;
    -moz-order: 1;
    -ms-order: 1;
    -o-order: 1;
    order: 1;
    width: 50%;
    text-align: center;
  }

  .footer-block__social {
    -webkit-justify-content: center;
    justify-content: center;
  }

  .footer-block__menu {
    text-align: center;
    width: 33.333%;
    margin-bottom: 40px;
  }

/*  .footer-block__info {
    padding: 0 0 30px 0;*/
  }

  .product-description {
/*    padding: 15px;*/
  }

  .product-description__spinner {
/*    margin: 0 15px;*/
  }

  .product-description__title {

  }

  .product-description__currency-comment {
    margin: 0.3125rem;

  }

  .product-description__row-1 {
    -webkit-align-items: center;
    align-items: center;
  }

  .product-description__add-to-cart {
    top: 0;
  }

  .card-description {
/*    padding: 45px 0;*/
  }


  .contacts__feedback-item:last-child {
    margin-bottom: 0;
  }


  .map-wrapper .map {
    height: 500px;
  }

  .one-brand-article__image-block {
    width: 30%;
    display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
    -webkit-align-items: center;
    align-items: center;
  }

  .one-brand-article__text-block {
    width: 70%;
  }

  .one-brand-article__text-block a {
/*    margin: 30px 0;*/
  }

  .one-brand-article__options {
    width: 129%;
  }


}

@media (max-width: 1230px) {

  .main-menu {
    height: 5.1vw;
  }



}


@media (max-width: 1230px)  {
  .short-wrapper {
    padding: 0 1.875rem;
  }
  .about {
    overflow: hidden;
  }
  .about__information-item {
    margin: 2rem 0 0 0;
  }

  .about__information-text {
    position: relative;
    top: -6rem;
  }

  .about__stats {
    padding: 0 15px;
  }

    .brands__image {
    max-width: 100vw;
    height: 250px;
  }

}


@media (max-width: 1180px) {
  .one-brand-article__item-container {
      max-width: 100%;
      padding: 0 15px;
  }

  html {
    font-size: 13px;
    line-height: 13px;
/*    margin: 14px;
    padding: 14px;*/
  }

  header {
    margin-bottom: 120px;
  }
  .desktop-menu {
    display: none;
  }

  .adaptive-menu {
    display: block;   
    width: 100%;
/*    height: 100%;*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
/*    overflow-y: scroll;*/
  }

  .adaptive-menu::-webkit-scrollbar { 
      display: none; 
  }

  .top-row-adaptive {
    width: 100%;
    height: 70px;
    background-color: #fff;
    border-bottom: 1px solid #ebebeb;
    padding: 10px 20px;
  }

  .top-row-adaptive__inner-outer {
    height: 100%;
    margin: 0 auto;
    display: -webkit-box;
      display: -ms-flexbox;  
      display: -webkit-flex; 
      display: flex;
      -webkit-justify-content: space-between; 
      justify-content: space-between;
      -webkit-align-items: center; 
      align-items: center;
      position: relative;
  }

  .top-row-adaptive__logo-outer {
    width: 50px;
    height: 50px;
  }

  .top-row-adaptive__logo-picture {
    max-width: 100%;
  }

  .top-row-adaptive__options {
    display: -webkit-box;
      display: -ms-flexbox;  
      display: -webkit-flex; 
      display: flex;
      -webkit-align-items: center; 
      align-items: center;
  }


  .top-row-adaptive__close-button svg {
    width: 32px;
    height: 32px;
    fill: #222;
  }

  .top-row-adaptive__add-info {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
  }

  .top-row-adaptive__add-info svg{
    width: 38px;
    height: 38px;
    transition: all 0.4s ease-in-out;
  }

  .top-row-adaptive__link {
    max-width: 100%;
  }

  .top-row-adaptive__icon {
    max-width: 100%;
  }

  .top-row-adaptive__call {
    width: 34px;
    margin: 0 0 0 20px;
  }

  .top-row-adaptive__call img {
    max-width: 100%;
  }

  .top-row-adaptive__close-button {
    width: 32px;
    display: none;
  }

  .bottom-row-adaptive {
    width: 100%;
    height: 50px;
    background-color: #fff;
    border-bottom: 1px solid #ebebeb;

  }

  .bottom-row-adaptive__inner-outer {
    height: 100%;
    
    margin: 0 auto;
    
    display: -webkit-box;
      display: -ms-flexbox;  
      display: -webkit-flex; 
      display: flex;
      -webkit-justify-content: space-between; 
      justify-content: space-between;
      -webkit-align-items: center; 
      align-items: center;
  }

  .bottom-row-adaptive__cart {
    text-align: center;
    width: 90px;
    height: 100%;
    border-right: 1px solid #ebebeb;
    padding-top: 7px;
    padding-bottom: 7px;
    position: relative;
  }

  .bottom-row-adaptive__cart svg {
    width: 30px;
    max-height: 30px;
  }

  .bottom-row-adaptive__catalog {
    padding: 0;
  }

  .bottom-row-adaptive__catalog-link {
      font-family: "Century Gothic", sans-serif;
      font-size: 1.2rem;
      font-weight: 400;
      line-height: 1.25;
      color: #666666;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 12px 15px 12px 0;
      display: inline-block;
      position: relative;
      transition: 0.4s;
  }

  .bottom-row-adaptive__catalog-link span {
    width: 7px;
    height: 11px;
    background: url(/img/arrow-menu.png) no-repeat center;
    background-size: contain;
    display: inline-block;
  }

  .bottom-row-adaptive__catalog-link:hover {
    color: #222;
  }

  .bottom-row-adaptive__catalog-link:hover span {
    background: url(/img/arrow-menu_hover.png);
  }

  .full-adaptive-menu {
    width: 100%;
    min-height: calc(100vh - 70px);
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 101;
    display: none;

  }

  .full-adaptive-menu__search-field-outer {
    background: #f6f5f5;
    max-width: 100% !important;
  }

  .full-adaptive-menu__search-field {
    max-width: 280px;
    height: 55px;
    padding: 0 !important;
    margin: 0 auto !important;
    background: #f6f5f5!important;
    border-bottom: 0px !important;
    display: -webkit-box;
      display: -ms-flexbox;  
      display: -webkit-flex; 
      display: flex !important;
      -webkit-justify-content: space-between; 
      justify-content: space-between;
      -webkit-align-items: center; 
      align-items: center;
  }

  .full-adaptive-menu__search-field-text {
    font-family: "Century Gothic", sans-serif;
      font-size: 1.0625rem;
      font-weight: 400;
      line-height: 1.3125rem;
      color: #666666;
      text-decoration: none;
      letter-spacing: 1px;
      background: inherit;
      padding: 12px 0;
      margin: 0 15px 0 0;
      display: block;
      width: 100%;
      position: relative;
      transition: 0.4s;
    outline: none;
    border: none;
  }

  .full-adaptive-menu__search-field-text:focus {
    background: #f6f5f5;
  }

  .full-adaptive-menu__search-field-text::-webkit-input-placeholder {color:#666666;text-transform: uppercase;}
  .full-adaptive-menu__search-field-text::-moz-placeholder          {color:#666666;text-transform: uppercase;}
  .full-adaptive-menu__search-field-text:-moz-placeholder           {color:#666666;text-transform: uppercase;}
  .full-adaptive-menu__search-field-text:-ms-input-placeholder      {color:#666666;text-transform: uppercase;}


  .full-adaptive-menu__search-field-submit {
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    padding-right: 0;
  }

  .full-adaptive-menu__search-field-submit svg {
    fill: #666666;
    width: 30px;
    height: 27px;
  }

  .full-adaptive-menu__items-outer {
    background: #fff;
  }

  .full-adaptive-menu__list {
    width: 100%;
    margin: 0px 0 !important;
    padding-top: 0!important;
  }

  .mm-list li {
    max-width: 280px;
    margin: 0 auto !important;

  }

  .mm-list > .full-adaptive-menu__item.sales a {
    color: #ff0000 !important;
  }

  .mm-list > .full-adaptive-menu__item.bg-dark {
    background-color: #000;
  }


  .mm-list > .full-adaptive-menu__item.bg-dark a {
    color: #fff !important;
    border: none;
  }

  .full-adaptive-menu__link {
    font-family: "Century Gothic", sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.3125rem;
    color: #666666!important;
    border-bottom: 1px solid #b7b7b7;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: inherit;
    padding: 12px 0!important;
    position: relative;
    transition: 0.4s;
  }

  .full-adaptive-menu__link:hover {
    color: #222;
  }

  .full-adaptive-menu__sublink {
    width: 8px;
    height: 14px;
    background: url(/img/arrow-menu-mobile.png) no-repeat center;
    background-size: cover;
    margin: 0 15px 0 0;
    display: inline-block;
  }

.mm-menu.mm-offcanvas {
  width: 100%;
  display: block !important;
  z-index: 200;
  top: 70px;
  transition: 0.4s;
}

.mm-menu .mm-list > li > a.mm-subopen:after, .mm-menu .mm-list > li > a.mm-subclose:before  {
  border-color: #808080;
}

.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
  border-width: 0;
}

.mm-list a.mm-subopen {
  border-bottom: 1px solid #b7b7b7;
}

.mm-list a.mm-subopen:before {
  border-left-width: 0;
}

.mm-list a.mm-subopen:after {

}

.mm-subtitle {
  background: #f6f5f5;
}

.mm-subclose {
  font-family: "Century Gothic", sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.3125rem;
    color: #666666!important;
    border-bottom: 1px solid #b7b7b7;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: inherit;
    padding: 12px 0 !important;
    position: relative;
    transition: 0.4s;
}

.mm-list a.mm-subclose:before {
  margin-bottom: -5px;
}


.mm-list > li > a, .mm-list > li > span

.mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen):focus, 
.mm-menu .mm-list > li.mm-selected > span {
  background: #fff;
}

.mm-list a.mm-subclose {
  text-indent: 40px;
}

.mm-subtitle > a {

}

.mm-menu .mm-list > li > a.mm-subclose {
  background-color: inherit;
  border-bottom: 0;
}

.mm-list > li > a {
  max-width: 280px;
  margin: 0 auto;

  font-family: "Century Gothic", sans-serif;
      font-size: 1.0625rem;
      font-weight: 400;
      line-height: 1.3125rem;
      color: #666666!important;
      border-bottom: 1px solid #b7b7b7;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: inherit;
      padding: 12px 0 12px 6px !important;
      position: relative;
      transition: 0.4s;
}

.mm-list > .mm-list > li > a {
    text-transform: none;
}

.mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen), .mm-menu .mm-list > li.mm-selected > span {
  background: inherit;
}

nav:not(.mm-menu) {
/*  display: none;*/
}

#nav-icon {
  width: 60px;
  height: 45px;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: block;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #d3531a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}


#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  top: 36px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.mm-opening #nav-icon span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

.mm-opening #nav-icon span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.mm-opening #nav-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 39px;
  left: 8px;
}

  .top-menu {
/*    padding: 15px;*/
  }

  .top-menu__logo {
    max-width: 180px;
  }

  .top-menu__item {
/*    margin: 0 0 0 20px;*/
  }

  .top-menu__link {

  }

  .top-slider,
  .one-brand-intro {
    height: calc(100vh - 360px);
  }

  .float-menu__outer {
    right: 0.5rem;
  }



  .top-slider-crumbs {
    height: calc(100vh - 440px);
  }

  .top-slider__controls-left,
  .top-slider__controls-right {
    width: 36px;
    height: 60px;
  }

  .top-slider__info-title {
  }

  .top-slider__nav-item {
/*    margin: 0 15px;*/
  }

  .top-slider__nav-link {
  }

  .top-slider__info {
/*    margin-top: -100px;*/
  }


  .top-slider__mobile-dotts {
    display: block;
    position: absolute;
      bottom: 50px;
      width: 100%;
      height: 40px;
      z-index: 10;
      background: transparent;
          display: -webkit-box;
      display: -ms-flexbox;  
      display: -webkit-flex; 
      display: flex;   
      -webkit-justify-content: center; 
      justify-content: center;
      -webkit-align-items: center;
      align-items: center;
  }

  .top-slider__mobile-dotts ul {
    display: -webkit-box;
      display: -ms-flexbox;  
      display: -webkit-flex; 
      display: flex;   
      -webkit-justify-content: space-between; 
      justify-content: space-between;
      -webkit-align-items: center;
      align-items: center;
      width: 95px;
      margin: 0 auto;
  }

  .top-slider__mobile-dotts li {
    width: 25px;
    height: 5px;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
  }

  .top-slider__mobile-dotts li.active {
    background: #222;
  }


  .presentation__title {
/*    padding: 80px 15px 40px 15px;*/
  }

  .presentation__title br {
    display: none;
  }

  .presentation__title-logo {
    top: 30px;
  }


  .presentation__item--type-1-content, 
  .presentation__item--type-2-text-block {
    padding: 25px;
  }
  
  .presentation__item--type-1-content-text {
/*    margin: 15px 0 5px 0;*/
  }

  .soc-network__title {
    background-size: 75%;
  }

  .soc-network__control-left-icon, 
  .soc-network__control-right-icon {
    width: 32px;
      height: 58px;
  }

  .soc-network__arrows-outer {
/*    padding: 0 15px;*/
  }

  .reviews__title {
    background-size: 75%;
  }

  .reviews__slider {
/*    margin: 20px 0;*/
  }

  .reviews__slide {
/*    padding: 0 30px;*/
  }

  .reviews__text br {
    display: none;
  }

  .breadcrumbs {
/*    padding: 15px 0;*/
  }
  
  .breadcrumbs__link {

  }

  .navigation-block__subcategories, 
  .navigation-block__brands, 
  .navigation-block__countries, 
  .navigation-block__price {
    width: 48.5%;
  }

  .navigation-block__subcategories-collection {
    width: 100%;
  }

  .navigation-block__subcategories-collection-block {
    min-width: 33%;
  }

  .main-category-product__subcategory {
    margin: 0 auto 20px auto;
  }


  .news__caption br {
    display: none;
  }

  .news__text {

  }


  .reviews__control-left-icon,
  .reviews__control-right-icon {
    width: 36px;
    height: 60px;
    display: block;
  }



  .main-category-product__subcategory {
    -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  }

  .main-category-product__subcategory-list {
    margin-top: 20px;
    margin-left: -15px;
    width: calc(100% + 15px);
  }

  .main-category-product__subcategory-list--single {
    margin-top: 0;
    margin-left: -15px;
    width: calc(100% + 15px);
  }

  .main-category-product__subcategory--single > h3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }


  .main-category-product__subcategory-list--single .main-category-product__subcategory-item {
    width: calc(33.33333% - 15px);
    margin-left: 15px;
  }


.main-category-product--single .main-category-product__subcategory-link {

  }

  .main-category-product--single .main-category-product__subcategory-item {
        width: calc(33.33333% - 15px);
  }

  .main-category-product__subcategory--single .main-category-product__picture-outer {
    height: 130px;
  }

  .main-category-product__description {

/*    margin: 0 15px;
    max-height: 55px;
    overflow: hidden;*/
  }

  .main-category-product__item-options {
/*    margin: 0 20px 15px 20px;*/
  }

  .main-category-product__price {

  }

  .main-category-product__watch {
    display: none;
  }


  .main-category-product__title {

  }

  .main-category-product__subcategory-title {
    width: 100%;
    height: auto;
/*    padding: 15px 0;
      margin-bottom: 15px;*/
  }


  .main-category-product__subcategory-top {
    background: none;
  }

  .main-category-product__caption {

  }

.main-category-product__caption span {
  display: none;
}

  .main-category-product__caption:after {
    content: '';
      position: absolute;
      top: 50%;
      left: auto;
      right: -25px;
      width: 14px;
      height: 14px;
      background: url(/img/title_right-arrow.png) no-repeat center;
      background-size: contain;
      transform: translateY(-50%);
  }

  .main-category-product__total-count {

  }

  .main-category-product__subcategory-bottom {
    margin: 10px 0 0 0;
  }

  .main-category-product__subcategory-link {
    height: 325px;
  }

  .main-category-product__subcategory-item {
  /*  min-width: 225px;*/
    margin-left: 15px;
  }

  .navigation-block__filter-button > span {top: 10px;
    right: 20px;
  }

  .navigation-block__sorting > span {top: 10px;
    right: 20px;
  }


  .footer-block__subscribe {
    margin: 0 auto;
  }


  .footer-block__copyright span:nth-of-type(1) {
    padding-right: 0px;
    border-right: none;
    display: block;
  }

  .footer-block__copyright span:nth-of-type(2) {
    padding-left: 0px;
    display: block;
    margin-top: 30px;
      text-transform: uppercase;
      position: relative;
  }

  .footer-block__copyright span:nth-of-type(2):after {
    content: '';
    position: absolute;
    top: -15px;
    left: calc(50% - 13px);
    width: 25px;
    height: 1px;
    background-color: #fff;
  }

  .card-present {
    padding-top: 0;
    -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  }

  .product-slider {
    width: 100%;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-order: 2;
    -o-order: 2;
    order: 2;
  }

  .product-description {
    padding: 2rem;
    width: 100%;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-order: 1;
    -o-order: 1;
    order: 1;
  }

  .product-description__spinner,
  .product-description__add-to-cart,
  .product-description__info-button {
    display: none;
  }

  .product-description__row-2 {
    display: none;
  }

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

  .product-description__row-1 {
    text-align: center;
  }

  .product-description__price {
    width: 100%;
  }

  .product-slider__list {
    height: 250px;
  }

  .product-slider__item {
    height: 250px;
  }

  .product-slider .lSSlideOuter .lSPager.lSpg > li a {
    width: 14px;
    height: 14px;
  }

  .product-slider .lSSlideOuter .lSPager.lSpg > li.active a:before {
    top: 3px;
      left: 3px;
      width: 6px;
      height: 6px;
  }

  .product-slider .lSPager {
    margin-top: 30px !important;
  }

  .product-slider .lSPrev {
    left: 15px;
  }

  .product-slider .lSNext {
    right: 15px;
  }

  .add-info-mobile {
    display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: space-between;
    -webkit-order: 3;
    -moz-order: 3;
    -ms-order: 3;
    -o-order: 3;
    order: 3;
    margin: 30px 0;
    width: 100%;
    position: relative;
  }

  .add-info-mobile__spinner {
    width: 105px;
    height: 35px;
    border: 2px solid #222;
    border-radius: 35px;
    display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      margin: 0 15px;
      transform: rotate(90deg);
      transform-origin: 10% 30%;

      position: absolute;
      top: 0;
      right: -10px;
  }

  .add-info-mobile__button {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    width: 33px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    transform: rotate(-90deg);
    position: relative;
    top: -1px;

  }

  .add-info-mobile__button-plus {
    text-align: center;
  }

  .add-info-mobile__button-minus {
    text-align:center;
  }

  .add-info-mobile__spinner input {
    font-family: 'PT Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    width: 25px;
    margin-top: -3px;
    text-align: center;
    border: none;
    outline: none;
    transform: rotate(-90deg);


  }

  .add-info-mobile__add-to-cart {
    width: 75px;
    height: 75px;
    padding: 15px;
    border-radius: 50%;
    background: #222;
    display: -webkit-box;
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    top: 15px;
    cursor: pointer;
    transition: 0.4s;
  }

  .add-info-mobile__add-to-cart:hover {
    transform: rotateY(360deg);
  }

  .add-info-mobile__add-to-cart img {
    max-width: 100%;
  }

  .add-info-mobile__row-2 {
    margin: 45px 0;
  }

  .add-info-mobile__table {

  }

  .add-info-mobile__table td {
    font-size: 1.1rem;
    padding: 0 15px 15px 0;
  }

  .add-info-mobile__table td span {
    color: #222;
  }

  .add-info-mobile__table td span a {
    color: inherit;
    text-decoration: none;
  }

  .add-info-mobile__table td span a:hover {
    text-decoration: underline;
  }

  .card-description {
    display: none;
  }

  .card-description-mobile {
    display: block;
  }

  .card-description-mobile__item {
    margin: 20px 0 0 0;
  }

  .card-description-mobile__item:last-child {
    margin-bottom: 35px;
  }

  .card-description-mobile__title {
    font-family: 'PT Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: #646464;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -webkit-align-items: center;
      align-items: center;
      transition: 0.4s;
      position: relative;
      padding: 0 0 0 40px;
      
  }

  .card-description-mobile__title span {
    width: 30px;
    opacity: 0.8;
    position: absolute;
    top: 5px;
    left: 0;
    transition: 0.4s;
  }

  .card-description-mobile__title span img {
    max-width: 100%;
  }

  .active-span {
    opacity: 1!important;
  }

  .card-description-mobile__title div {
    width: 35px;
      height: 35px;
      border-radius: 50%;
      background-image: url(/img/arrow-black.png);
      background-position: center;
      background-repeat: no-repeat;
      display: inline-block;

  }

  .active-title {
    text-shadow: 1px 0px #222;
  }

  .active-arrow {
    background-image: url(/img/arrow-black-active.png) !important;

  }



  .card-description-mobile__info {
    display: none;
  }

  article.card-description-mobile__info {
    padding: 2rem 0rem 0rem 0rem;
  }

  article.card-description-mobile__info h1,
    article.card-description-mobile__info h2,
      article.card-description-mobile__info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    text-transform: uppercase;
    line-height: 2.25rem;;
    letter-spacing: 3px;
    margin: 1.5rem 0 1.5rem 0;
  }

  article.card-description-mobile__info h5 {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin: 1rem 0;
  }

  article.card-description-mobile__info ul {
    padding-left: 15px;
    list-style: disc;
  }

  article.card-description-mobile__info p,
  article.card-description-mobile__info li {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #222;
    line-height: 1.75rem;
    margin: 0 0 1rem 0;
  }

  article.card-description-mobile__info p img {
    margin: 0 auto;
    display: block;
  }

  article.one-brand-article__item b {
    font-weight: 700;
  }

  .contacts__stores-single-item {
    height: 650px;
    padding: 0 0 70px 0;
        
  }

  .contacts__stores-single-info {
    padding: 30px;
  }

  .contacts__stores-multiply {
    height: 100%;
  }

  .contacts__stores.long .contacts__stores-multiply-item,
  .contacts__stores-multiply-item {
    width: calc(50% - 7px);
    height: 305px;
    padding: 0 0 40px 0;
  }

  article.shop-info__content {
    padding: 40px 15px 20px 15px;
  }

  .shop-info__column {
    width: 49%;
  }

  .one-brand-article__inner-outer {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: 20px 0;
  }

  .one-brand-article--publication .one-brand-article__item {
    top: 0;
  }

  .one-brand-article__image-block {
    width: 100%;
  }

  .one-brand-article__text-block {
    width: 100%;
  }

  .one-brand-intro__title {
    text-align: center;
  }

  .one-brand-intro__post-info {

  }

  .one-brand-article__image-block {
    height: 300px;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-order: 1;
    -o-order: 1;
    order: 1;
    position: relative;
    overflow: hidden;
  }

  .one-brand-article__image-block img {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%;
    margin: auto;
  }

  .one-brand-article__image-block.type-1 {
    margin-right: 0;
  }

  .one-brand-article__image-block.type-2 {
    margin-left: 0;
  } 

  .product-description__spinner--visible {
    display: block;
  }

  .cart__step-caption-info {
    -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }

  .cart__step-caption-info div {
    margin: 0;
    text-align: right;
  }

  .cart__step-caption-info div span {
    font-size: 1.5rem;
  }

  .cart__step-item .picture-item {
    width: 60px;
    height: 60px;
  }

  .cart__step-item .name-item {
  }

  .cart__step-item table th:first-child, 
  .cart__step-item table td:first-child {
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
    width: 38%;
  }

  .cart__step-item .picture-item {
    margin: 10px 0;
  }

  .cart__step-item .name-item {
    margin: 15px 0;
  }

  .cart__step-item table th:nth-child(2), 
  .cart__step-item table td:nth-child(2) {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    width: 21%;
  }

  .cart__step-item table th:nth-child(3), 
  .cart__step-item table td:nth-child(3) {
    width: 19%;
  }

  .cart__step-item table th:last-child, 
  .cart__step-item table td:last-child {
    width: 21%;
  }

  .cart__delivery-outer {
  }

  .cart__delivery-block {
    width: 45%;
    margin-right: 10%;
  }

  .cart__delivery-block:nth-of-type(2) {
    margin-right: 0;
  }

  .cart__delivery-block:nth-of-type(3) {
    margin-right: 10%;
  }

  .cart__delivery-block:nth-of-type(4) {
    clear: none;
    margin-right: 0;
  }

  .cart__delivery-block:last-of-type {
    margin-right: 0;
    width: 100%;
  }

  .cart__step-balance {
    padding: 10px 30px;
  }

  .cart__step-accept {
    padding: 30px;
  }

  .breadcrumbs {
    padding: 1rem 0 !important;
  }

  .breadcrumbs ~ .navigation-block {
    padding-top: 0 !important;
  }

  .breadcrumbs .breadcrumbs__list {
    line-height: 1 !important;
  }

  .breadcrumbs .breadcrumbs__item {
    padding: 0 !important;
    line-height: 1.5 !important;
  }


  /*15-09 pravki end*/

  .top-menu__hidden-block-link {
    font-size: 14px;
  }

  .about__information-picture-outer {
    width: 23rem;
    height: 23rem;
  }

  .news__picture-outer {
    height: 40vw;
  }

  .news__info {
    margin: -7.5rem 1rem 1rem 1rem;
    padding: 1rem 1.5rem;
  }

  .main-category-product__special-block {
    width: 100% !important;
  }

  .main-category-product__special-block-inner-container {
    height: 325px;
  }


/*  .about__information-item {
    margin: 8.5rem 0 0 0;
  }*/

}

@media (max-width: 767px) {

  html {
    font-size: 12px;
    line-height: 12px;
/*    margin: 12px;
    padding: 12px;*/
  }

  .top-slider,
  .one-brand-intro {
    height: 435px;
  }

  .top-slider__controls {
    display: none;
  }

  .top-slider__nav-list {
/*    margin: 0 20px;*/
  }

  .presentation__title {
    padding:  8rem 1rem 3rem 1rem;
  }

  .presentation__title:after {
    content: '';
      position: absolute;
      top: 0;
      left: 25px;
      width: calc(100% - 50px);
      height: 100%;
      background-image: url(/img/background-title_type-2-mobile.png);
      background-repeat: no-repeat;
      background-position: 50% 45%;
      background-size: 100%;
      display: none;
  } 

  .presentation__group-outer {
/*    margin: 30px 0 0 0;*/
  }

  .presentation__item--type-1 {
    margin: 0;
/*    margin-bottom: 60px;
    padding: 10px;*/
  }

  .presentation__item--type-1.desktop {
    display: none;
  }

  .presentation__item--type-1.mobile {
    display: block;
  }

  .presentation__item--type-1 {
    width: 100vw;
    height: 77.5vw;
/*    margin-bottom: 60px;*/
    padding: 1rem;
    overflow: visible;
    z-index: 6;
  }

  .presentation__item--type-1-background {
    display: none;
  }

  .presentation__item--type-1-background-short,
  .presentation__item--type-2-background {
    display: block;
    width: 100%;
 

  }

  .presentation__item--type-1-content {text-align: left;
    width: 100%;
    position: relative;
    z-index: 6;
    margin-top: -35px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;

  }

  .presentation__item--type-1-content-title,
  .presentation__item--type-2-content-title {
    font-size: 16px;
      line-height: 20px;
    margin: 0;
  }

  .presentation__item--type-2-text-block-type-2-title {
  font-size: 1.5rem;
  line-height: 1.8rem;
  }

  .presentation__item--type-1-content-text.desktop,
  .presentation__item--type-2-content-text.desktop,
  .presentation__item--type-2-text-block-type-2-text {
    display: none;
  }

  .presentation__item--type-1-content-text.mobile,
  .presentation__item--type-2-content-text.mobile,
  .presentation__item--type-2-text-block-type-2-text.mobile {
    display: block;
  }

/*  .presentation__item--type-1-content-text:first-of-type {

    display: block;
    max-height: 20px;
    overflow: hidden;
  }*/

  .presentation__item--type-1-content-link {
    font-family: "Century Gothic", sans-serif;
      font-size: 0.9375rem;
      font-weight: 400;
      color: #222;
      text-transform: uppercase;
      text-decoration: underline;
      letter-spacing: 1px;
      text-align: center;
      background-color: #fff;
      margin: 1.5rem 0 0 0;
      padding: 0;
      display: inline-block;
      transition: 0.4s;
  }

  .presentation__item--type-1-content-link:hover {
    border: 2px solid transparent;
  }

  .presentation__item--type-2 {
/*    margin: 160px 0 0px 0;*/
    flex-direction: column;

  }

  .presentation__item--type-2-with-image {
      width: 100vw;
      height: 77.5vw;
      padding: 1rem;
      overflow: visible;
/*    margin-bottom: 120px;*/
  }



  .presentation__item--type-2-no-image {
    padding: 1rem;
    margin-left: 0;
    height: 300px;
      min-height: 100%;

  }

  .presentation__item--type-2-background {
    width: 100%;
  }

  .presentation__item--type-2-content.desktop {
  display: none;
}

.presentation__item--type-2-content.mobile {
  display: block;
  margin-right: 0;
}

.presentation__item--type-1-content.only-mobile {
  display: block;
}

.presentation__item--type-2-text-block.only-mobile {
  display: block;
}

  .presentation__item--type-2-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 300px;
    padding: 3rem;
  }

  .presentation__item--type-2-with-image {
    width: 100vw;
    height: 77.5vw;
  }

  .presentation__item--type-2-text-block {
      position: relative;
      margin-top: -50px;
      margin-bottom: 20px;
          z-index: 6;
    margin-left: 10px;
    margin-right: 10px;
  }

  .presentation__item--type-2-text-block-type-2 {
    height: 305px;
  }

  .presentation__item--type-2-text-block-type-2-title {

    margin: 0;
  }

    .presentation__item--type-2-content {

    }

  .presentation__item--type-3-content-link.desktop {
    display: none;
  } 

  .presentation__item--type-3-content-link.mobile {
    font-family: "Century Gothic", sans-serif;
      font-size: 0.9375rem;
      font-weight: 400;
      color: #222;
      text-transform: uppercase;
      text-decoration: underline;
      letter-spacing: 1px;
      background-color: #fff;
      margin: 25px 0 0 0;
      padding: 0;
      display: inline-block;
      transition: 0.4s;
    display: block;
  }


  .presentation__item--type-2-text-block-type-2-link {
  
  }

  .presentation__item--type-3-content-link {
      display: none;
  }

  .reviews {
    padding: 0;
  }

  .reviews__title {
    background: none;
    padding: 6rem 0;
  }

  .reviews__title:after {
    content: '';
      position: absolute;
      top: 25px;
      left: 25px;
      width: calc(100% - 50px);
      height: calc(100% - 50px);
      background-image: url(/img/background-title_type-2-mobile.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
  }

  .reviews__controls {
    -webkit-justify-content: flex-start;
      justify-content: flex-start; 
  }


  .reviews__control-left-icon,
  .reviews__control-right-icon {
    width: 54px;
    height: 89px;
    display: none;
  }

  .reviews__control-left-icon-mobile,
  .reviews__control-right-icon-mobile {
    width: 13px;
    display: block;
  }

  .reviews__link-outer {
    margin: 1rem 0 0 0;
  }

  .soc-network__title {
    position: relative;
    background: none;
    padding: 6rem 0;
  }

  .soc-network__title:after {
    content: '';
      position: absolute;
      top: 25px;
      left: 25px;
      width: calc(100% - 50px);
      height: calc(100% - 50px);
      background-image: url(/img/background-title_type-2-mobile.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
  }

  .soc-network__slider {

  }

  .soc-network__slider li {
    width: 32vw;
    height: 32vw;
  }

  .soc-network .lSAction {

  }

  .reviews__text {
    padding: 0;
  } 

  .news__info {
    min-height: auto;
    margin-top: -75px;
/*    margin: -110px 15px 0 15px;
    padding: 10px 20px 20px 20px;*/
  }

  .news__title {
    background: no-repeat;
    position: relative;
  }

  .news__title:after {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: calc(100% - 50px);
    height: 100%;

    background-image: url(/img/background-title_type-2-mobile.png);
      background-repeat: no-repeat;
      background-position: center;
  }

  .brands {
    padding: 15px 0 0 0;
  }

  .brands__title {
    background: no-repeat;
/*    padding: 45px 0;*/
    position: relative;

  }

  .brands__title:after {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: calc(100% - 50px);
    height: 100%;

    background-image: url(/img/background-title_type-2-mobile.png);
      background-repeat: no-repeat;
      background-position: center;
  }



  .news__caption {

  }



  .news__text {
    text-overflow: ellipsis;
      overflow: hidden;
        white-space: nowrap;
  }

  .news__link {
    display: none;
  }

  .news__more {
    font-family: "Century Gothic", sans-serif;
      font-size: 0.9375rem;
      font-weight: 400;
      color: #222;
      text-transform: uppercase;
      text-decoration: underline;
      letter-spacing: 1px;
      background-color: #fff;
/*      margin: 25px 0 0 0;
      padding: 0;*/
      display: inline-block;
      transition: 0.4s;
    display: block;
  }

    .main-category-product__subcategory--single .main-category-product__subcategory-list {
    margin-top: 0;
    margin-left: -1.1rem;
    
      width: calc(100% + 1.4rem);


  }

  .main-category-product__subcategory--single .main-category-product__subcategory-item {
/*    min-width: 360px;*/
    margin-left: 0.875rem;
    margin-bottom: 1.1rem;
    width: calc(50% - 0.9rem);
  }

  .main-category-product {

    padding: 1px 0 0px 0;
  }


  .main-category-product__subcategory-item {
    width: calc(50% - 15px);
    margin-bottom: 15px;
  }
  .main-category-product__title {
/*    margin: 25px 0;*/
    background: no-repeat;
    position: relative;
  }

  .main-category-product__title:after {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: calc(100% - 50px);
    height: 100%;

    background-image: url(/img/background-title_type-2-mobile.png);
      background-repeat: no-repeat;
      background-position: center;
  }

  .main-category-product__subcategory-top {
    background: none;
  }

  .main-category-product__subcategory-list--single .main-category-product__subcategory-item {
  /*    margin: 0 0 10px 0;*/

  }

  .main-category-product__description {
    font-size: 13px;
    line-height: 16px;
  }

  .main-category-product--all .main-category-product__description {
    font-size: 15px;
    line-height: 19px;
    margin-top: 30px;
  }

  .main-category-product__subcategory-link {
    height: 265px;
  }

  .main-category-product--all .main-category-product__subcategory-list {
    display: flex;
    flex-wrap: nowrap;
    margin-left: 0;
    overflow-x: scroll;
  }

  .main-category-product--all .main-category-product__subcategory-item {
    min-width: 225px;
  }

  .main-category-product--all .main-category-product__subcategory-item .main-category-product__subcategory-link {
    height: 325px;
  }

  .main-category-product--all .main-category-product__subcategory-item:first-of-type {
    margin-left: 0;
  }


  .footer-block__info {
    padding: 0;
  }

  .footer-block__contacts {
    width: 100%;
  }

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

/*  .one-brand-intro__list {
    display: none;
  }
*/
  .one-brand-intro {
    height: 220px;
  }

  .one-brand-intro__background-outer {
    height: 220px;
  }

  .one-brand-intro__background {
    max-width: 135%;
    min-height: auto;
  }

  .one-brand-article__item {
    padding: 15px;
    margin: 10px;
    position: relative;
    z-index: 15;
  }

  .one-brand-article__item h1 {
/*
    margin: 30px 0;*/
  }

  .one-brand-article__item h2 {
/*
    margin: 25px 0;*/
  }

  .one-brand-article__item p,
  .one-brand-article__item li,
  .one-brand-article__item span {
/*
    margin: 0 0 15px 0;*/
  }

  .one-brand-article__item > .desktop {
    display: none;
  }

  .one-brand-article__item > .mobile {
    display: block;
  }

  .one-brand-article__item > .mobile {

  }

  .one-brand-intro__background-outer:after {
    z-index: 0;
  }

  .one-brand__captions-outer {
/*    margin: 0;*/
  }

  .one-brand__captions-link {
    font-weight: 400;
    color: #222;
    letter-spacing: 1px;
  }

  .one-brand__captions-link.empty {
    pointer-events: none;
  }

  .one-brand__captions-item:first-child, 
  .one-brand__captions-item {
    width: 100%;
/*    margin: 10px 0 15px 0;*/

  }

  .one-brand__captions-item span {
    display: block;
    width: 10px;
    height: 10px;
    background: url(/img/plus.png) no-repeat center;
    float: right;
  }

  .active-icon {
    background: url(/img/minus.png) no-repeat center !important;

  }

  .one-brand__captions-item span.open-details {
    cursor: pointer;
  }

  .one-brand__captions-item span.arrow-down {
    width: 10px;
    height: 15px;
    background: url(/img/down-arrow.png) no-repeat center;
  }

  .one-brand__subcaptions-outer {
    display: none;
  }

  .map-wrapper {
/*    padding: 30px 15px 0 15px;*/
  }

  .map-wrapper .map {
    height: 410px;
  }

  .shop-info__column {
    width: 100%;
  }

  .shop-info .wrapper {
    margin: 0;
  }

  article.shop-info__content {

    text-align: center;
/*    padding: 35px 15px 15px 15px;*/
  }

  .shop-info__title {
  
  /*  margin: 0 0 10px 0;*/
  }

  .shop-info__info {
/*    margin: 0 0 20px 0;*/
  }

  .one-brand-article__options {
    width: 126.5%;
    margin-left: -13.5%;
/*    padding: 15px;*/
  }

  .one-brand-article__tags {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }

  .one-brand-article__social {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }

  .one-brand-article__social-list {
    margin-left: 0!important;
  }

  .one-brand-article__tags-list {
    margin-left: 0!important;
  }

  .one-brand-article__tags-label {

    margin-bottom: 5px;
  }

  .one-brand-article__social-label {

    margin-bottom: 5px;
  }

  .one-brand-article__tags-item {
    margin-bottom: 0 !important;
  }

  .one-brand-article__social-item {
    margin-bottom: 0 !important;
  }

  .one-brand-article__tags-link {

  }

  .one-brand-article__social-link {

  }

  .contacts__stores-single-tel {
    padding: 0 0 0 20px;
  }
  
  .one-brand-article--publication .one-brand-article__item {
    padding: 15px;
  }

  .contacts__stores-single-info {
      padding: 20px;  
  }

  .contacts__stores-single-info p, 
  .contacts__stores-single-text {
    margin: 10px 0;
    font-size: 14px;
      line-height: 17px;
  }

  .contacts__feedback-title {
    font-size: 1.75rem;
    margin: 1rem 0;
  }

  .contacts__stores-multiply-info {
    padding: 20px;
  }

  .contacts__stores-multiply-title {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .contacts__stores-multiply-tel {
    font-size: 1.125rem;
      line-height: 1.375rem;
  }

  .contacts__stores-multiply-link {
    width: 30px;
    height: 30px;
    bottom: auto;
    top: 15px;
  }

  .contacts__feedback-tel .tel-icon-1 {
    width: 14px;
    left: -2px;
  }

  .contacts__feedback-tel .tel-icon-1 {
    width: 14px;
  }

  .about__information-item {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .about__information-picture-outer-2,
  .about__information-picture-outer-2,
  .about__information-picture-outer-2 {
    -webkit-order: 1;
    -moz-order: 1;
    -ms-order: 1;
    -o-order: 1;
    order: 1;
  }

  .about__information-text-2,
  .about__information-text-4,
  .about__information-text-6 {
    -webkit-order: 2;
    -moz-order: 2;
    -ms-order: 2;
    -o-order: 2;
    order: 2;
  }

  .about__information-picture-outer {
    width: 30rem;
    height: 30rem;
    margin: 0 auto;
  }

  .about__information-text {
    width: 100%;
  }

  .about__information-item {
    margin-top: -3rem;
  }

  .about__information-picture-outer {
    top: 0;
  }


  .about__information-text-1 h3,
  .about__information-text-3 h3,
  .about__information-text-5 h3  {
    margin-left: 6rem;
  }


  .letter-outer-1,
  .letter-outer-6 {
    left: 0;
  }

  .letter-outer-3 {
    right: 0;
  }

  .presentation__group-outer .presentation__item--type-2-content:nth-of-type(6), 
  .presentation__group-outer .presentation__item--type-2-content:nth-of-type(9) {
    width: 100%;

  }

  .cart__delivery-block {
    float: none !important;
    width: auto !important;
    margin-right: 0 !important;
  }

  .main-category-product__add {
    width: 36px;
    height: 36px;
  }

  .main-category-product__add:hover{
    width: 36px;
  }

  .main-category-product__description,
  .main-category-product__item-options {
    margin-left: 1rem;
    margin-right: 1rem;
  }
        
}
@media (max-width: 414px) {
  .navigation-block__subcategories-collection-block {
    min-width: 50%;
  }
}




@media (max-width: 640px) {
    html {
    font-size: 11px;
    line-height: 11px;

  }

  .breadcrumbs__item {
/*    margin: 0 0 0 10px;*/
  }

      .news__picture-outer {
    height: 77.5vw;
  }


  

  .news__item:nth-child(odd), .news__item:nth-child(even) {
    width: 100%;
  }


  .news__item {
    margin-bottom: 20px;
  }

  .main-category-product__subcategory {
    flex-direction: column;
  }

  .main-category-product__subcategory-list {
    margin: 20px 0 0 -15px;
  }

  .main-category-product__subcategory-list--single {
        width: calc(100% + 55px);
  }


  .navigation-block__subcategories, .navigation-block__brands, .navigation-block__countries, .navigation-block__price {
    width: 100%;
  }

  .one-brand-filter .navigation-block__subcategories {
    width: 100%;
    padding-right: 0;    
  }

 .float-columns .navigation-block__subcategories-item {
    width: 33%;
    padding-right: 10px;
  }

  .navigation-block__filter-button, .navigation-block__sorting {
/*
    padding: 10px 40px 10px 20px;
    margin: 0 15px;*/
  }

  .navigation-block__subcategories-list, .navigation-block__brands-list,
  .navigation-block__countries-list, .navigation-block__form-slider {
    display: none;
  }

  .navigation-block__form-slider .row {
    -webkit-justify-content: space-around;
      justify-content: space-around;
  }

  .navigation-block__caption {
    font-size: 20px;
    padding: 0;
  }


  .navigation-block__filter-button, .navigation-block__sorting {
    font-size: 14px;
    padding: 8px 24px 8px 8px;
  }

  .navigation-block__sorting-panel-outer {

        padding: 0.75rem 1.75rem;
  }

  .navigation-block__sorting-panel-link span {
    top: -3px;
  }

  .navigation-block__sorting-panel-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .navigation-block__sorting-panel-item {
    margin: 1rem 0;
  }

  .navigation-block__filter-button > span,
  .navigation-block__sorting > span {
    top: 10px;
    right: 7px;
  }

  .navigation-block__filter-button > span, .navigation-block__sorting > span {
    width: 12px;
    height: 12px;
  }

  .navigation-block__subcategories-arrow {
    width: 15px;
    display: block;
    float: right;
    transform: rotate(0deg);
  }

  .navigation-block__subcategories-arrow img {
    max-width: 100%;
  }

  .arrow-open {
    transform: rotateX(180deg);
    transition: 0.4s;
  }

  .navigation-block__filter-button span img {
    display: none;
  }

  .navigation-block__filter-button span {
    background: url(/img/filter-icon.png) no-repeat center;
    background-size: contain;
    width: 12px;
    height: 12px;
  }

  .switch-icon {
    background: url(/img/filter-icon-active.png) no-repeat center !important;
    background-size: contain !important;
  }

  .one-brand-intro {
    height: 220px;
    margin-bottom: 34px;
  }

  .one-brand-intro__background-outer {
    height: 220px;
  }

  .one-brand-intro__logo-outer {
    max-width: 240px;
/*    margin-top: -70px;*/
  }

  .one-brand-intro .breadcrumbs {
    display: none;
  }

  .special-service__info ul {
      -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .special-service__info ul li img {
    width: 35px;
  }

  .special-service__info a.special-service__contact-link {
    padding-left: 0.25rem;
  }

  .one-brand-intro__list {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .footer-cards__list {
    -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; 
      overflow-x: scroll;
  }

  .footer-cards__item {
    width: auto;
    min-width: 250px;
    margin-left: 20px;
  }

  .footer-cards__item:first-child {
    margin-left: 0;

  }

  .footer-block-outer {
/*    padding: 130px 10px 0 25px;*/
  }

  .footer-block__info {
    position: relative;
  }

  .footer-block__menu {
    text-align: left;
    width: 100%;
  }

  .footer-block__menu-list {
    margin: 15px 0;
    display: none;
  }

  .footer-block__menu-item {
/*    margin: 15px 0 0 0;*/
  }

  .footer-block__menu-item:last-child {
/*    margin: 15px 0 25px 0;*/
  }

  .footer-block__title {
    font-size: 1.75rem;
    margin-bottom: 0;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .footer-block__menu-link {
    font-size: 18px;
  }

  

  .footer-block__title span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /*background-image: url(/img/arrow-footer.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 26px;*/
    display: inline-block;
    transition: 0.4s;
  }

  .reverse-arrow {
    background-color: #414141;
    transform: rotateX(180deg);
    transition: 0.4s;
  }

  .footer-block-outer {
    padding-top: 8rem;
  }

  .footer-block__info:before {
    top: -3.5rem;
  }

  .footer-block__menu {
    margin-bottom: 0;
  }

  .footer-block__menu-link br {
    display: none;
  }

  .footer-block__subscribe {
    text-align: left;
    width: 100%;
    min-width: auto;
    margin-top: 2rem;
  }

  .footer-block__subscribe-text {
    font-size: 1.1rem;
    line-height: 1.5rem;
    margin: 1.75rem 0;
  }

  .footer-block__subscribe-text br {
    display: none;
  }

  .footer-block__form {
/*    margin: 40px 0 0px 0;*/
  }

  .footer-block__input-text {
    font-size: 1.5rem;
  }

  .footer-block__logo-outer {
    display: none;
  }

  .footer-block__copy {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .footer-block__verify {
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 25px 0;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-order: 1;
    -o-order: 1;
    order: 1;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .footer-block__verify-title {
    font-size: 1.5rem;
    color: #fff;
  }

  .footer-block__verify-list {
    margin: 15px 0 0 0;
  }

  .footer-block__copyright {
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-order: 2;
    -o-order: 2;
    order: 2;
  }

  .product-slider .lSPrev {
    left: 0;
  }

  .product-slider .lSNext {
    right: 0;
  }

  .contacts__feedback-item {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .contacts__feedback-info {
    display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-flex-direction: column;
    flex-direction: column;
  }

  .contacts__feedback-item {
/*    padding: 25px 0;*/
  }

  .contacts__feedback-picture-outer {
/*    margin: 0 0 20px 0;*/
  }

  .contacts__feedback-title {
/*    margin: 0 0 5px 0;*/
  }

  .contacts__feedback-mail-link {
/*    margin: 5px 0 15px 0;*/
  }

  .contacts__feedback-tel {
    margin: 3px 0;
    letter-spacing: 0;
  }

  .contacts__feedback-item {
/*    margin-bottom: 5px;*/
  }

  .contacts__stores-single-item {
    height: 350px;
  }

  .contacts__stores-single-info {
    left: 10px;
      width: calc(100% - 20px);
  }
    
  .contacts__stores-single-title {
/*    margin-bottom: 20px;*/
  }

  .contacts__stores-single-text {
    display: none;
  }

  .contacts__stores-single-link {
    display: none;
  }

  .contacts__stores-single-tel {
    margin: 0 0 5px 0;
  }

  .contacts__stores.long .contacts__stores-multiply-item,
  .contacts__stores-multiply-item {
    width: 100%;
    height: 350px;
/*    padding: 0 0 60px 0;
    margin: 0 0 30px 0;*/
  }

  .contacts__stores-multiply-info {
/*    padding: 30px;*/
  }

  .contacts__stores-multiply-title {
/*    margin: 0 0 20px 0;*/
  }

/*15-09 pravki*/

.cart__step-caption-order {
  width: 28px;
    height: 28px;
  border: 1px solid #4c4c4c;
}

.cart__step-caption-order.active {
    border: 2px solid #222;
}

.cart__step-caption-label {
/*  margin: 0 0 0 10px;*/
}

.cart__step-caption-info div {

}

.cart__step-caption-info div:first-child {

}

.cart__step-caption-info div:nth-child(2) {

}

.cart__step-caption-info div span {
}

.cart__outer {
/*  padding: 10px 0 0 0;*/
}

.cart__step-caption-info {
  width: 60%;
}

.cart__step-caption {
/*  padding: 10px;*/
}

.cart__step-item {
/*  padding: 20px 10px;*/
}

.cart__step-item table th:first-child {
  text-align: left;
}

.cart__step-item table td {
/*  padding: 15px 0;*/
}

.cart__step-item .picture-item:after {
  width: 52px;
  height: 52px;
}

.cart__step-item .name-item {
/*
  margin: 5px 0;*/
}

.cart__step-item .detail-item {

}

.cart__step-item .price {

}

/*CART. Delivery*/
#productrow11188 td {
    padding: .8125rem 0;
}

#productrow11188 .picture-item {
  display: none;
}

.cart__step-caption-edit img,
.cart__step-caption-delete img {
  width: 15px;
}

.product-description__spinner--visible {
  height: 25px;
  transform: rotate(90deg);
  transform-origin: 50% 40%;
  position: relative;
}

.product-description__spinner--visible input {
   transform: rotate(-90deg);
}

.product-description__spinner--visible .product-description__button-plus {
  position: absolute;
  top: 0;
  left: 3px;
    width: 10px;
    height: 25px;
    transform: rotate(-90deg);
    padding: 4px;

}

.product-description__spinner--visible .product-description__button-minus {
  position: absolute;
  top: 0px;
    right: 0px;
    width: 15px;
    height: 20px;
    transform: rotate(90deg);
    padding: 3px;
}

.cart__step-accept button {
    height: auto;
/*    padding: 10px 20px;
    margin: 0 15px;*/
}

.cart__delivery-outer-login {
  margin-left: 4rem;
}

.cart__step-balance {
  -webkit-justify-content: center;
  justify-content: center;
}

.cart__payment-form-choose {
  overflow: hidden;
}

.cart__payment-form-choose div {
  margin-left: 15px;
}

.main-category-product__special-list{
  width: 100%;
}

.main-category-product__special-item {
  width: 50%;
}

.main-category-product__special-block-inner-container {
  height: auto;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.main-category-product__special-block-info {
  width: 100%;
  min-height: 265px;
}

.main-category-product__special-block-pic {
  width: 100%;
  min-height: 265px;
}

.col-sm{
  width: calc(100% - 20px);
}

.sitemap{
  padding-bottom: 30px;
}

.sitemap h2{
  margin-bottom: 15px;
}

.col-inner{
  margin-top: 30px;
  margin-bottom: 30px;
}


/*15-09 pravki end*/

}

@media (max-width: 640px) {



  .brands__item {
      width: 100%;
      height: 200px;
      margin-bottom: 1px;
  }

  .brands__image {
    max-width: 150vw;
    height: 200px;
  }

  .modal-cart,
  .modal-alert {
    width: 90%;
  }

  .modal-subscribe {
    width: 96%;
    right: 2%;
  }

}

@media (max-width: 500px) {
  .navigation-block__title {
    padding-bottom: 50px;
    justify-content: center;
  }

  .navigation-block__filter-button, .navigation-block__sorting {
    position: absolute;
    bottom: 10px;
    line-height: 30px;
    height: 30px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .navigation-block__filter-button {
    left: 15px;
  }

  .navigation-block__sorting {
    right: 15px;
  }



}

@media (max-width: 460px) {

  .main-category-product__subcategory-item {
    width: 100%;
  }


  .one-brand-article__image-block {
    height: 220px;
  }


 .float-columns .navigation-block__subcategories-item {
    float: left;
    width: 50%;
    padding-right: 5px;
  }
  .add-info-mobile__add-to-cart img{
  width: 35px;
  }

  .about__information-text h3 {
      font-size: 3.25rem;
  }

}




@media (max-width: 360px) {

  .line-center {
    width: 10px;
      margin: 0 6px;
      overflow: hidden;
  }

  .navigation-block__filter-button {
    margin: 0 0px 0 0;
  }

  .navigation-block__sorting {
    margin: 0 0 0 5px;
  }

  .navigation-block__filters-panel {
/*    padding: 20px;*/
  }

  .footer-block__copyright {
  }

  .special-service__info ul li img {
    width: 25px;
  }

  .special-service__info a.special-service__contact-link {
    font-size: 1rem;
  }

}

@media (max-width: 320px) {
  .brands__title:after,
  .news__title:after {
    content: '';
    position: absolute;
    top: 0;
    left: 4px;
    width: calc(100% - 8px);
    height: 100%;
  }

  .footer-block__copyright {

  }

  .footer-block__title {

  }

  .footer-block__input-submit {
    width: 60px;
  }

  /*15-09 pravki*/
  .cart .wrapper {
    padding: 0 5px;
  }

  .cart__step-item table th:first-child, 
  .cart__step-item table td:first-child {
    width: 35%;
  }

  .cart__step-item table th:nth-child(2),
  .cart__step-item table td:nth-child(2) {
    width: 22%;
  }

  .cart__step-item table th:nth-child(3),
  .cart__step-item table td:nth-child(3) {
    width: 22%;
  }

  .cart__step-item table th:last-child,
  .cart__step-item table td:last-child {
    width: 22%;
  }

  /*15-09 pravki end*/

}





/*changed 
mobile-cart and svg
from 01/06/18 */



button{
  font-family: "Century Gothic", sans-serif;
}

.g-recaptcha{
  display: block;
  width: 100%;
  margin-top: 3rem;
}

header{
  position: relative;
  z-index: 20;
}

.header-info-link{
  border: none;
}

.float-menu__button{
  width: 4rem;
  height: 4rem;
}

.float-menu__item .float-menu__info{
  font-family: 'Playfair Display', serif;
  height: 3.8rem;
  min-width: 12rem;
  font-size: 1.2rem;
  padding-top: 0.5rem;
  text-transform: none;
}

.float-menu__item .float-menu__info a{
  font-family: 'PT Sans', sans-serif;
  text-transform: none;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 0;
}

.swiper-button-prev,
.swiper-button-next{
  background: none;
}

.reviews__control-right-icon-mobile svg,
.reviews__control-left-icon-mobile svg{
  max-width: 100%;
  max-height: 100%;
  fill: #000;
}

.top-slider__controls-right svg,
.top-slider__controls-left svg,
.swiper-button-prev svg,
.swiper-button-next svg
{
  max-width: 100%;
  max-height: 100%;  
  fill: #000;
}

.reviews__control-left-icon svg,
.reviews__control-right-icon svg{
  max-width: 100%;
  max-height: 100%;  
  fill: #000;
}

.top-slider__controls-right svg .st0,
.top-slider__controls-left svg .st0,
.swiper-button-prev svg .st0,
.swiper-button-next svg .st0{
  stroke: #fff;
  display: block;
  fill: #fff;
}

.reviews__control-left-icon svg .st0,
.reviews__control-right-icon svg .st0{
  stroke: #fff;
  fill: #fff;
  display: block;
}

.modal-cart{
  transition: right .5s ease-in-out;
}

.modal-cart-visible{
  right: 0;
  transition: right .5s ease-in-out;
}

.modal-cart-visible .modal-cart__title{
  right: 0;
  transition: right 1s .4s ease-in-out;
}

.modal-cart-visible .modal-cart__close{
  right: 25px;
  transition: right 1s .6s ease-in-out;
}

.modal-cart-visible .modal-cart__image{
  left: 0;
  transition: left 1s .8s ease-in-out;
}

.modal-cart-visible .modal-cart__description{
  left: 0;
  transition: left 1s 1s ease-in-out;
}

.modal-cart-visible .modal-cart__booking{
  left: 0;
  transition: left .8s 1.5s ease-in-out;
}

.modal-alert{
  transition: left .5s ease-in-out;
}

.modal-alert-visible{
  left: 0;
  transition: left .5s ease-in-out;
}

.modal-alert__title{
  left: 0;
  transition: left 1s .2s ease-in-out;
}

.modal-alert__description{
  right: 0;
  transition: right 1s 1s ease-in-out;
}


/* SVG*/

.cart__step-caption-edit svg{
  width: 25px;
  height: auto;
}

.cart__step-caption-delete svg{
  width: 25px;
  height: auto;
}

.top-row-adaptive__call svg{
  width: 34px;
  height: auto;
}

.mm-list a.mm-subopen:after, .mm-list a.mm-subclose:before{
  border-width: 1px;
}

.main-menu__submenu-topic-link span,
.bottom-row-adaptive__catalog-link span{
  background-image: none;
  opacity: 0.5;
  height: 13px;
}

.bottom-row-adaptive__catalog-link span{
  height: 10px;
}

.main-menu__submenu-topic-link:hover span,
.bottom-row-adaptive__catalog-link:hover span{
  background-image: none;
  opacity: 1;
}

.bottom-row-adaptive__catalog-link span svg,
.main-menu__submenu-topic-link span svg{
  width: 12px;
  height: auto;
  line-height: 1.5;
  display: block;
}

.reviews__star svg{
  width: 23px;
  height: 23px;
}

.float-menu__button svg{
  width: 28px;
  height: auto;
}

.modal-cart__close svg{
  max-width: 100%;
  max-height: 100%;
  width: 25px;
  height: auto;
}

.main-category-product__watch svg{
  fill: #fff;
  width: 50%; 
  height: auto;
}

.main-category-product__add svg{
  fill: #fff;
  width: 30%; 
  height: auto; 
}

.brands__watch{
  width: 53px;
  height: 53px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}

.brands__watch svg{
  fill: #fff;
  width: 50%;
  height: auto;
}

.add-info-mobile__add-to-cart svg{
  fill: #fff;
  width: 90%;
  height: auto;
}

.card-description-mobile__title span svg{
  fill: #000;
  max-width: 100%;
  height: auto;
}

.card-description-mobile__title span svg .st0{
  display: block;
}

.card-description__link span svg{
  fill: #000;
  width: auto;
  height: 24px;
}

.card-description__link span svg .st0{
  display: block;
}

.product-description__add-to-cart svg{
  fill: #fff;
  width: 35px;
  height: auto;
}

.card-description-mobile__arrow{
  transition: all .4s ease-in-out;
  background-image: none!important;
}

.card-description-mobile__arrow.active-arrow{
  transform: rotateX(180deg);
}

.card-description-mobile__arrow svg{
  width: 90%;
  height: auto;
  fill: #000;
}

.news__link-icon{
  top: 20px;
  height: 20px;
  background-color: #222;
  background-image: none;
}

.news__link-icon svg{
  fill: #fff;
  width: 27px;
  height: auto;
}

.contacts__stores-multiply-link svg,
.contacts__stores-single-link svg{
  width: 23px;
  height: auto;
  fill: #fff;
  transition: all .4s ease-in-out;
}

.contacts__stores-multiply-link:hover svg,
.contacts__stores-single-link:hover svg{
  transform: scale(1.1);
}

.contacts__stores-single-link svg{
  width: 28px;
}

.contacts__stores-multiply-tel svg,
.contacts__stores-single-tel svg{
  width: 13px;
  height: auto;
  fill: #000;
}

.navigation-block__filter-button,
.navigation-block__sorting{
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  background-image: none;
}


.navigation-block__filter-button svg,
.navigation-block__sorting svg{
  width: 20px;
  height: auto;
  fill: #000;
  margin-right: -10px;
  margin-top: -3px;
  transition: all .4s ease-in-out;
}

.navigation-block__filter-button-active svg,
.navigation-block__sorting-active svg{
  fill: #fff;
}

.navigation-block__subcategories-arrow svg{
  width: 17px;
  height: auto;
}

.footer-block__logo-svg{
  display: none;
}

.footer-block__link svg{
  width: 41px;
  height: auto;
  fill: #a2a2a2;
}

.footer-block__verify-item svg{
  fill: #a2a2a2;
}

.footer-block__title span{
  display: none;
  justify-content: center;
  -ms-align-items: center;
    align-items: center;  
}

.footer-block__title span svg{
  width: 25px;
  height: auto;
  fill: #fff;
}

footer .footer-block__input-submit{
  position: relative;
  background-image: none;
  padding-left: 4rem;
  padding-right: 4rem;
}

footer .footer-block__input-submit svg{
  width: 40px;
  height: auto;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* CART */

.cart .wrapper{
  padding-left: 0;
  padding-right: 0;
}

.cart__outer{
  border: none;
  padding-top: 0;
}

.cart__step-caption-label{
  font-size: 2.2rem;
  vertical-align: middle;
}

.cart__delivery-block-title{
  font-size: 1.7rem;
}

.cart__step-caption-order{
  vertical-align: middle;
}

.cart__step-item, .cart__step-caption{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.cart__input-radio label{
  line-height: 18px;
  padding-left: 0;
  font-size: 1.3rem;
  margin: 0.8rem 0;
}

.cart__input-radio label i{
  margin-right: 3px;
  width: 14px;
  height: 14px;
  border: 1px solid #000;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: -3px;
}

.cart__delivery-block-group-divided:last-child{
  margin-top: 1.7rem;
}

.cart__delivery-block-group .select-caption{
  font-size: 1.12rem;
}

.cart__input-radio input[type="radio"]{
  height: 20px;
}

.cart__input-radio input[type="radio"] + i:before{
  background-image: none;
}

.cart__input-radio input[type="radio"] + i{
  position: relative;
  margin-right: 7px;
  margin-bottom: -1px;
}
.cart__input-radio input[type="radio"]:checked + i:before{
  background-image: none;
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50%;
  margin: 2px;
}

.cart__step-item table td:first-child .delete-item{
  width: 18px;
  height: 18px;
  border: 1px solid #f00;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.cart__step-item table td:first-child .delete-item::before, 
.cart__step-item table td:first-child .delete-item::after{
  content: '';
  width: 1px;
  height: 16px;
  background-color: #f00;
  display: block;
  position: absolute;
  left: 50%; 
}

.cart__step-item table td:first-child .delete-item::before{
  transform: rotate(45deg); 
}

.cart__step-item table td:first-child .delete-item::after{
  transform: rotate(135deg); 
}

.cart__payment-form-link{
  text-align: right;
}

.cart__payment-form-link .cart__payment-form-accept{
  padding-left: 3rem;
  padding-right: 3rem;
}

.cart__step-item .name-item a{
  line-height: 1.4em;
}

.float-menu__item:nth-child(2),
.float-menu__item:nth-child(3){
  visibility: hidden;
}

.float-menu__info{
  visibility: hidden;
}

.float-menu__item.moved:nth-child(2),
.float-menu__item.moved:nth-child(3){
  visibility: visible;
}

.float-menu__item.moved:nth-child(2) .float-menu__info, 
.float-menu__item.moved:nth-child(3) .float-menu__info{
  visibility: visible;
}

.navigation-block__sorting-panel-link span{
  background-image: none;
  border: 1px solid #000;
  border-radius: 50%;
}

.navigation-block__sorting-panel-link span.checked{
  background-image: none;
}

.navigation-block__sorting-panel-link span.checked::after{
  content: '';
  display: block;
  background-color: #000;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  margin: auto;
  position: absolute;
}

.product-description__currency-comment{
  display: block;
  margin-top: 1rem;
}
.product-description__row-1{
  margin-top: 1.8rem;
}

.product-description__add-to-cart{
  border-radius: 65px;
}

.product-description__add-to-cart:hover {
  width: 210px;
}

.product-description__add-to-cart:hover .product-description__add-to-cart-text{
  display: block;
  transition-delay: .2s;
  visibility: visible;
}

.product-description__add-to-cart svg{
  position: absolute;
  left: 15px;
}

.product-description__add-to-cart-text{
  display: none;
  visibility: hidden;
  font-family: "Century Gothic", sans-serif;
  font-size: 1.1875rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 0 2.8125rem;
  overflow: hidden;
}

.product-description__spinner{
  min-width: 105px;
}

.modal-subscribe__close svg{
  width: 25px;
  height: 25px;
}

.body-overflow{
  overflow: hidden;
}

.portfolio-slider .top-slider__slide-picture-outer{
  z-index: 2;
}

.top-menu__hidden-block-modal{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0);
  z-index: 99999;
  width: 100%;
  height: 100%;
  transition: background-color 1s ease-in-out, display 0s 1s;
}

.top-menu__hidden-block-outer{
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
    transform: translate(50%, -50%);
    /*transition: all .4s 2s cubic-bezier(.9,.18,.46,.81);*/
}

.top-menu__hidden-block-close{
  visibility: hidden;
  opacity: 0;
  position: absolute;
    top: 7%;
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    outline: none;
    transition: all .2s 0s ease-in-out;
}

.top-menu__hidden-block-close svg{
  width: 30px;
  height: 30px;
}

.top-menu__hidden-block{
  height: 1px;
    width: 470px;
    padding: 0;
    transition:  height .3s .4s cubic-bezier(.9,.18,.46,.81), padding 0s .5s;
    /*width .5s 1s cubic-bezier(.9,.18,.46,.81),*/
}

.top-menu__hidden-block-list{
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all .2s 0s ease-in-out;
}

.active-block.top-menu__hidden-block-modal{
  background-color: rgba(0,0,0,.7);
}

.active-block .top-menu__hidden-block-close{
  visibility: visible;
  opacity: 1;
  transition: all .4s 1s ease-in-out;
}

.active-block .top-menu__hidden-block{
    width: 470px;
    height: 420px;
    padding: 8rem 2.5rem 0 2.5rem;
    transition: height .7s .3s cubic-bezier(.18,1.37,.55,1.48), padding 0s .5s;
}

.active-block .top-menu__hidden-block-list{
  visibility: visible;
  opacity: 1;
  transition: all .5s .2s ease-in-out;
}

.top-menu__hidden-block-link{
  font-size: 1.4rem;
  line-height: 1.8125rem;
  text-align: center;
    display: block;
}

.letter{
  display: inline-block;
  opacity: 0;
  padding: 0 2px;
  transform: translateX(3px) translateY(-8px);
  transition: opacity .2s .2s ease-in, transform .2s .2s ease-in;
}

.active-block .letter{
  opacity: 1;
  transform: translateX(0) translateY(0);
  transition: opacity .2s 0s ease-in, transform .2s 0s ease-in; 
}


@media(max-width: 1520px){
  .product-description__row-1{
    justify-content: flex-start;
  }
}

@media(max-width: 1310px){
  .news__link-icon{
    top: 15px;
  }
  .footer-block__logo-svg {
    display: block;
    position: absolute;
    top: 70px;
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
  }

  .footer-block__logo-svg svg{
    width: 30px;
    height: 30px;
    fill: #fff;
  }

  .feature-helper{
    width: 55%;
    margin-left: 0;
  }
}

@media(max-width: 1180px){
  
  .navigation-block__filter-button svg,
  .navigation-block__sorting svg{
    margin-top: 2px;
    margin-right: 0;
  }

  .cart__step-caption-info{
    display: flex;
  }

  .cart__step-item .picture-item:after{
    width: 54px;
    height: 54px;
    border: 2px solid #fff;
  }
  .product-description__spinner .product-description__button{
    width: 16px;
    line-height: 28px;
  }
  .product-description__spinner input{
    background-color: transparent;
  }

  .cart__step-item table td:first-child{
    position: relative;
  }

  .cart__step-item table td:first-child .delete-item{
    position:  absolute;
    z-index:  2;
    background:  #fff;
    border-radius: 50%;
    height:  18px;
    top: 3.2rem;
    left: calc(50% + 10px);
  }


  .cart__delivery-block.comments{
    width: 100%;
    margin-bottom: 3.75rem;
  }


  .single-card .product-description{
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .single-card .product-description__title{
    font-size: 2.1rem;
  }

  .single-card .product-description__title, .single-card .product-description__row-1{
    text-align: left;
    width: 58%;
  }

  .single-card .product-description__spinner, .single-card .product-description__add-to-cart {
      display: block;
  }

  .single-card .product-description__row-1{
    flex-wrap: wrap;
  }

  .single-card .product-description__spinner{
    width: 105px;
    height: 35px;
    border: 2px solid #222;
    border-radius: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 0 15px;
    transform: rotate(90deg);
    transform-origin: 10% 30%;
    position: absolute;
    top: calc(50% - 52.5px);
    right: -10px;
  }

  .single-card .product-description__add-to-cart{
    width: 75px;
    height: 75px;
    position: absolute;
    right: 0;
    top: calc(50% - 37.5px);
  }

  .single-card .product-description__add-to-cart svg{
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 40px;
  }

  .single-card .product-description__add-to-cart:hover .product-description__add-to-cart-text{
    display: none;
  }

  .single-card .product-description__add-to-cart:hover{
    width: 75px;
  }

  .single-card .product-description__spinner .product-description__button,
  .single-card .product-description__spinner input{
    transform: rotate(-90deg);
  }

  .single-card .product-description__spinner .product-description__button{
    width: 33px;
    text-align: center; 
  }

  .feature-helper{
    margin-left: 20px;
    width: 50%;
  }

}

@media(max-width: 960px){
  .feature-footer{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .feature-footer .show_filter_results{
    margin-top: 10px;
  }

  .after-filter-section .wrap{
    overflow-x: hidden;
  }
}

@media(max-width: 768px){

  .navigation-block__filter-button svg,
  .navigation-block__sorting svg{
    margin-top: 0;
  }

  .main-category-product__caption{
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .modal-cart .modal-cart__close{
    top: 15px;
  }

  .modal-cart .modal-cart__booking{
    padding: 0 20px;
    height: 40px;
  }

  .one-brand-article__item .review .review-content{
    width: 100%;
  }

  .one-brand-article__item .review .review-content .btn{
    width: 100%;
  }

  .one-brand-article__item .review .pic-outer{
    display: none;
  }

   .feature-image{
      height: 350px;
  }

  .feature-footer{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .feature-footer .result-text{
    width: 100%;
    margin-top: 10px;
    text-align: right;
  }

  .feature-control{
    text-align: left;
  }

}

@media(max-width: 640px){
  .top-menu__hidden-block-close{
      left: calc(50% - 10px);
      width: 20px;
      height: 20px;
      padding: 0;
  }

  .top-menu__hidden-block-close svg{
    width: 20px;
    height: 20px;
  }

  .top-menu__hidden-block{
    width: 320px;
  }

  .active-block .top-menu__hidden-block{
      width: 320px;
      height: 350px;
  }

  .top-menu__hidden-block-link{
    font-size: 1.3rem;
  }

  .navigation-block__filter-button span,
  .navigation-block__sorting span{
    top: 8px;
    background-image: none;
  }
  .navigation-block__filter-button svg,
  .navigation-block__sorting svg{
    width: 12px;
  }

  .cart__step .cart__step-item{
      padding-left: 1rem;
  }

  .cart__step-caption-info div + div {
      margin-left: 1rem;
  }

  .cart__step-caption-edit svg{
    width: 16px;
    height: auto;
  }

  .cart__step-caption-delete svg{
    width: 16px;
    height: auto;
  }
  
  .cart__step-item table th:first-child{
    text-align: center;
  }

  .cart__step-item table th:last-child, .cart__step-item table td:last-child{
    justify-content: center;
    text-align: center;
  }

  .cart__step-caption-order{
    line-height: 24px;
  }

  .cart__step-item, .cart__step-caption{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cart__step-caption-info{
    width: 210px;
  }

  .cart__step-caption-info div{
    line-height: 26px;
  }

  .product-description__spinner--visible{
    transform-origin: 50% 50%;
  }

  .product-description__spinner .product-description__button{
    width: 10px;
    line-height: 28px;
  }

  .cart_bottom{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-block__logo-svg{
    top: -3.5rem;
  }

  .footer-block__title span{
    display: flex;
  }

  .product-slider .lSPrev,
  .product-slider .lSNext{
    transition: all .2s ease-in-out;
  }

  .product-slider .lSPrev.hidden,
  .product-slider .lSNext.hidden{
    opacity: 0;
    visibility: hidden;
  }

  .product-slider__item-video{
    height: 50%;
  }

  .product-helper-feature__inner{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px;
  }

  .feature-helper{
    width: 100%;
    margin-left: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  .feature-helper .title{
    font-size: 2rem;
  }

  .feature-control{
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .feature-image{
    width: 100%;
    height: 300px;
  }

  .feature-control__group{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .feature-control__values{
    width: calc(100% - 35px);
  }

  .feature-control__group .icon{
    margin-right: 10px;
  }

  .step_type{
    display: block;
    width: 100%;
    text-align: center;
  }

}

@media(max-width: 500px){
  .navigation-block__filter-button span,
  .navigation-block__sorting span{
    top: 0;  
  }

  
  .feature-footer .remove-button_feature{
    text-align: center;
    margin-left: 0;
    display: block;
    width: 100%;
    order: 2;
  }

  .feature-footer .show_filter_results{
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    order: 1;
  }
}

@media(max-width: 420px){
  .cart_bottom .pull-right{
    position: relative;
    width: 100%;
  }
  .cart_bottom .cart_bottom-button .cart_gift{
    position: absolute;
    top: 0;
    margin-top: 0.87rem;
    margin-right: 0;
  }
  .cart__payment-form-link .cart__payment-form-accept{
    width: 100%;
  }
  .cart_bottom .cart_bottom-button button{
    clear: both;
    display: block;
    width: 100%;
    margin-top: 4rem;
  }
}

/* slider 01.08.2018 */


.product-slider .lSSlideOuter{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.product-slider .lSSlideOuter .lSSlideWrapper{
  order: 2;
  margin-top: 10px;
  width: calc(100% - 100px);
}

.product-slider .lSSlideOuter.noPager .lSPager.lSGallery{
  display: none;
}

.product-slider .lSSlideOuter .lSPager.lSGallery{
  order: 1;
  margin: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  width: 80px!important;
}

.product-slider .lSGallery li{
  margin-bottom: 10px;
  width: 80px!important;
  height: 80px!important;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  transition: all .5s ease-in-out;
}

.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover{
  border-radius: 50%;
}

.product-slider .lSGallery li.active{
  border: 1px solid #000;
}

.product-slider .lSGallery li::after{
  content: '';
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}

.product-slider .lSGallery li a{
  position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.product-slider .lSGallery li a img{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
}

.bouquet-more-gallery{
  background-color: #f6f5f5;
  padding-bottom: 20px;
}

.bouquet-gallery{
  position: relative;
}

.bouquet-slider{
  padding: 2.1875rem;
}

.bouquet-multiple-slide{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.bouquet-multiple-slide, .bouquet-single-slide{
  height: 33.33333vw;
}

.bouquet-single-slide .bouquet-image{
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  margin: 5px;
}

.bouquet-multiple-slide.slick-slide{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.bouquet-multiple-slide .bouquet-image{
  width: calc(50% - 10px); 
  height: calc(50% - 10px);
  margin: 5px;
}

.bouquet-image{
  position: relative;
  display: block;
  overflow: hidden;
  outline: none;
}

.bouquet-image img{
  position: absolute;
  left:-10000%;
  right: -10000%; 
  top: -10000%; 
  bottom: -10000%;
  margin: auto auto;
  min-width: 1000%;
  min-height: 1000%;
  -webkit-transform:scale(0.1);
  transform: scale(0.1);
}

.bouquet-image-hover{
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0,0,0,0);
  transition: all .4s ease-in-out;
  will-change: background-color;
}

.bouquet-image-hover .bouquet-image-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  font-family: "Century Gothic", sans-serif;
  padding: 1rem 2rem;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  outline: none;
  border-radius: 44px;
  white-space: nowrap;
  opacity: 0;
  transition: all .4s ease-in-out;
}

.bouquet-multiple-slide .bouquet-image-hover .bouquet-image-btn{
  font-size: 12px;
}

.bouquet-image:hover .bouquet-image-hover{
  opacity: 1;
  visibility: visible;
  background-color: rgba(0,0,0,.5);
}

.bouquet-image:hover .bouquet-image-hover .bouquet-image-btn{
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: all .4s .1s ease-in-out;
}

.slick-initialized .slick-slide{
  outline: none;
}

.bouquet-slider-btn{
  background-color: transparent;
  border: none;
  outline: none;
  width: 48px;
    height: 83px;
    opacity: 1 !important;
    pointer-events: all !important;
    position: absolute;
}

.bouquet-slider-btn.prev-btn{
  top: calc(50% - 48px);
  left: 35px;
}

.bouquet-slider-btn.next-btn{
  top: calc(50% - 48px);
  right: 35px;
}

.bouquet-slider-btn svg .st0{
  display: block;
  fill: #fff;
}

.bouquet-gallery-service{
  background-color: #fff;
}

@media (max-width: 1270px){
  .bouquet-image:hover .bouquet-image-hover{
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 1180px){
  .product-slider .lSSlideOuter{
    display: block;
  }
  .product-slider .lSSlideOuter .lSPager.lSGallery{
    flex-direction: row;
    justify-content: center;
  }

  .product-slider__item{
    height: 400px;
  }

  .product-slider .lSSlideOuter .lSSlideWrapper{
    width:100%;
  }

  .product-slider .lSSlideOuter .lSPager.lSGallery{
    width: auto!important;
  }
}

@media (max-width: 768px){
  .product-slider .lSSlideOuter .lSPager.lSGallery{
    display: none;
  }

  .bouquet-multiple-slide, .bouquet-single-slide{
    height: 50vw;
  }
}


/* MODAL SUBSCRIBE */
@media screen and (max-width: 550px) {
  .modal-subscribe__field-outer {
    width: 100%;
  }
  .modal-subscribe__title {
    padding-right: 3.875rem;
  }
  .modal-subscribe__image-outer {
    display: none;
  }
  .modal-subscribe .phone-input {
    margin-bottom: 30px;
  }
}


@media (max-width: 480px){
  .bouquet-multiple-slide, .bouquet-single-slide{
    height: 100vw;
  }
}

.modal-subscribe .phone-input input {
  padding-left: 29px;
}

.modal-subscribe .phone-input span {
  font-size: 1rem;
  font-weight: 400;
  color: #b3b3b3;
  position: absolute;
  bottom: 11px;
  left: 0;
  width: 25px;
}

.modal-subscribe .errorMessage {
    font-size: 0.7rem;
    color: red;
    position: absolute;
    bottom: -14px;
    left: 0;
    display: none;
}

.shop-by-style, .presents-section{
  background-color: #f6f5f5;
  padding-top: 20px;
  padding-bottom: 10px;
}

.shop-by-style-header {
  text-align: center; 
  padding: 50px;
  max-width: 1350px;
  margin: 68px auto 92px; 
  background-image: url(../img/background-title_type-2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
}

.shop-by-style-header .zelena-icon{
  margin-bottom: 10px;
  display: block;
}

.shop-by-style-header .zelena-icon svg{
    width: 30px;
    height: 30px;
}

.shop-by-style-header .shop-by-style-description{
    font-size: 22px;
    font-family: "Century Gothic", sans-serif;
    line-height: 30px;
}

.presents-section .shop-by-style-grid{
  margin-top: 30px;
  margin-bottom: 30px;
}

.shop-by-style-grid{
  max-width: 1820px;
  margin: auto; 
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;  
  justify-content: space-between; 
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 30px;
  margin-bottom: 50px;
}

.shop-by-style-item{
  width: calc(50% - 15px);
  height: 48vw;
  position: relative;
  margin-bottom: 30px;
  background-color: #ccc;
}

.shop-by-style-item.full-width{
  width: 100%;
  height: auto;
}

.shop-by-style-item.full-width .shop-by-style-item-inner{
  position: absolute;
}

.shop-by-style-item.full-width .shop-by-style-panel{
  position: relative;
  width: calc(50% - 75px);
  margin: 58px 30px;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.shop-by-style-item.full-width .presentation__item--type-1-content-link{
  background-color: #fe294c;
  margin-top: 3.125rem;
}

.shop-by-style-item.full-width .presentation__item--type-1-content-link:hover{
  background-color: #fff;
  border-color: #fe294c;
  color: #fe294c;
}

.shop-by-style-item.full-width .shop-by-style-item-title{
  color: #fe294c;
}

.shop-by-style-item-inner{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}

.shop-by-style-image{
  position: absolute;
  left:-10000%;
  right: -10000%; 
  top: -10000%; 
  bottom: -10000%;
  margin: auto auto;
  min-width: 1000%;
  min-height: 1000%;
  -webkit-transform:scale(0.1);
  transform: scale(0.1);
}

.shop-by-style-image.mob{
  display: none;
}

.shop-by-style-panel{
  position: absolute; 
  z-index: 2;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background-color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;  
  justify-content: space-between; 
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 45px 100px;
}

.shop-by-style__list-panel{
  position: relative;
  margin: 200px auto;
  background-color: #fff;
  max-width: 1200px;
  padding: 75px 0;
}

.shop-by-style__list-panel h2{
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 22px;
  display: block;
  text-align: center;
}

.shop-by-style__list-panel ul{
  list-style-type: none;
  margin: 60px 0 20px;
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.shop-by-style__list-panel ul li{
  width: calc(33.33% - 100px);
  margin-left: 50px;
}


.shop-by-style__list-panel ul li a{
  font-family: "Century Gothic", sans-serif;
  font-size: 22px;
  line-height: 1.7em;
}

.shop-by-style-info{
  width: calc(100% - 240px);
}

.shop-by-style-item-title{
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 22px;
  display: block;
}

.shop-by-style-item-description{
  font-size: 16px;
  color: #5F5E5E;
  line-height: 18px;
  font-family: 'PT Sans', sans-serif;
}

.shop-by-style-item-button{
  max-width: 220px;
  text-align: center;
  margin-top: 0;
}

.tooltip{
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: 0;
  bottom: auto!important;
  display: block!important;
  margin: -90px 0 0;
  background-color: #fff;
  width: 290px;
  padding: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
  box-shadow: 0 5px 35px rgba(0,0,0,.3);
  transition: all .4s ease-in-out;
}

.input-tooltip:active+.tooltip, 
.input-tooltip:focus+.tooltip{
  opacity: 1;
  visibility: visible;
  transition: all .4s ease-in-out;
}

.tooltip .tooltip-text{
  width: auto!important;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  display: inline-block;
  position: static!important;
  font-family: "Century Gothic", sans-serif;
}

.modal-subscribe__field-outer.phone-input .tooltip{
  left: auto;
  right: 0;
}

.zoom-button{
  display: none;
}


/*bouquet advantages*/
.bouquet-advantages .slick-track{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
} 

.footer-cards-features.bouquet-advantages-section.loading-section{
  opacity: 0;
  max-height: 0;
}

.footer-cards-features.bouquet-advantages-section{
  opacity: 1;
  max-height: 700px;
  transition: all .8s ease-in-out;
}

.footer-cards-features.bouquet-advantages-section.loading-section .footer-cards__item{
  transform: translateY(20px);
  opacity: 0;
}

.footer-cards-features.bouquet-advantages-section .footer-cards__item{
  transform: translateY(0);
  opacity: 1;
  transition: all .4s ease-in-out;
}

.bouquet-advantages .footer-cards__item{
  width: 100%;
  padding-bottom: 2.375rem;
}

.bouquet-advantages .footer-cards__title, .footer-cards__text{
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.bouquet-advantages-section{
  position: relative;
}

.bouquet-advantages-button{
  background-color: transparent;
  outline: none;
  padding: 0;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.bouquet-advantages-button.left-btn{
  left: 20px;
  background-image: url(/img/left-arrow_one-card.svg);
}

.bouquet-advantages-button.right-btn{
  right: 20px;
  background-image: url(/img/right-arrow_one-card.svg);
}

.footer-cards-features.bouquet-advantages-section.loading-section::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
}


@media(max-width: 1440px){
  .shop-by-style-header{
    padding: 10px;
    max-width: 65%;
  }
  .shop-by-style-panel{
    padding: 30px;
  }

  .shop-by-style__list-panel{
    margin-left: 80px;
    margin-right: 80px;
  }

}

@media(max-width: 1200px){
  .shop-by-style-item-title{
    font-size: 24px;
  }
  .shop-by-style-item-description{
      font-size: 16px;
  }
  .shop-by-style-panel{
    padding: 30px;
  }

  .shop-by-style-info{
    width: 100%;
  }

  .shop-by-style-item-button{
    margin-left: auto;
    margin-top: 20px;
  }
}

@media(max-width: 1180px){
  .zoom-button{
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    position: absolute;
    z-index: 10;
    right: 0;
    top: -35px;
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: none;
    outline: none;
  }

  .zoom-button span{
    width: 20px;
    height: 20px;
    display: none;
  }

  .zoom-button span.plus{
    display: block;
  }

  .zoom-button.active span.plus{
    display: none;
  }

  .zoom-button.active span.minus{
    display: block;
  }

  .product-slider__list::before{
    content:'';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: block;
  }

  .product-slider__list.zoom-active::before{
    display: none;
  }

  .product-slider__list.zoom-active .zoomImg{
    opacity: 1!important;
    top: -50%;
    left: -50%;
  }

}

@media(max-width: 960px){
  .shop-by-style-header{
    background-size: 50%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .shop-by-style-panel{
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 15px;
  }

  .shop-by-style-item-title{
    margin-bottom: 10px;
  }
  .shop-by-style-item-button{
    display: none;
  }
  .shop-by-style-header .shop-by-style-description{
    font-size: 16px;
  }

  .shop-by-style__list-panel ul{
    justify-content: space-between;
  }

  .shop-by-style__list-panel ul li{
    width: calc(50% - 50px);
  }
}

@media(max-width: 767px){
  .shop-by-style-grid{
    padding-left: 15px;
    padding-right: 15px;
  }
  .shop-by-style-item{
    width: 100%;
    margin-bottom: 100px;
    height: 80vw;
  }
  .shop-by-style-panel{
    bottom: -80px;
    padding: 20px;
  }
  .shop-by-style-item-button{
    margin-left: 0;    
  }

  .shop-by-style-item.full-width{
    height: 80vw;
  }

  .shop-by-style__list.shop-by-style-item.full-width{
    height: auto; 
    margin-bottom: 40px;
  }

  .shop-by-style-item.full-width .shop-by-style-item-inner{
    position: relative;
  }

  .shop-by-style-item.full-width .shop-by-style-panel{
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: -80px;
    margin: 0;
    width: auto;
  }

  .shop-by-style-item.full-width .shop-by-style-item-inner{
    position: absolute;
  }

  .shop-by-style__list-panel{
    margin: 40px 20px;
  }

  .shop-by-style__list-panel ul{
    margin-top: 30px;
  }

  .shop-by-style__list-panel ul li a{
    font-size: 16px;
  }


  .shop-by-style-image.desc{
    display: none;
  }

  .shop-by-style-image.mob{
    display: block;
  }
}

@media(max-width: 640px){
  .shop-by-style-panel{
    padding: 20px;
  }
  .shop-by-style-item-title{
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .shop-by-style-item-description{
    font-size: 14px;
  }

  .shop-by-style-header{
    max-width: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .shop-by-style-header .shop-by-style-description{
    line-height: 22px;
  }

  .bouquet-advantages .footer-cards__item{
    margin-left: 0;
    margin-right: 0;
  }

  .bouquet-advantages-button.left-btn{
    left: 5px;
    width: 15px;
    height: 15px;
  }

  .bouquet-advantages-button.right-btn{
    right: 5px;
    width: 15px;
    height: 15px;
  }
}

@media(max-width: 480px){
  .shop-by-style__list-panel{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .shop-by-style__list-panel ul li{
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
  }

}