@font-face {
  font-weight: 300;
  font-family: "Montserrat";
  font-style: normal; 

  src: url("../fonts/Montserrat/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Light.woff") format("woff");
}

@font-face {
  font-weight: normal;
  font-family: "Montserrat";
  font-style: normal; 

  src: url("../fonts/Montserrat/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff");

}

@font-face {
  font-weight: 500;
  font-family: "Montserrat";
  font-style: normal; 

  src: url("../fonts/Montserrat/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Medium.woff") format("woff");
}

@font-face {
  font-weight: bold;
  font-family: "Montserrat";
  font-style: normal; 

  src: url("../fonts/Montserrat/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Bold.woff") format("woff");
}

/* Global Style Start */
body,
html {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  /*height: 100%; */
  /*height:auto;*/
  /*overflow-x: hidden; */
  /*overflow: auto;*/

  font-size: 14px;
  line-height: 1.5;
  /*font-family: "Montserrat";*/
  font-family: 'Gudea', sans-serif !important;

  background-color: #ffffff;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}



/*    font-family: 'Gudea', sans-serif !important;
    font-size: 150%;
    letter-spacing: 0.0525rem;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;*/

*:focus {
    outline: none;
}

header {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto; 

  -webkit-box-flex: 0;
}

main {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto; 

  -webkit-box-flex: 1;
}

footer {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto; 

  -webkit-box-flex: 0;
}

img {
  max-width: 100%;
  height: auto !important;
}

.container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.cs-filter{
  fill: #fff;
}

@media only screen and (max-width: 1023px) {
  .container {
    max-width: 100%;
  }
}

.icon {
  width: 20px;
  height: 20px;

  fill: currentColor;
}

a {
  color: currentColor;

  -webkit-transition: color 0.5s;
       -o-transition: color 0.5s;
          transition: color 0.5s;
}

a:hover {
  color: #ff0000;
}

.g-primary-color {
  color: #ff0000;
}

span.radio-btn__box{
  border-radius: 10px;
  width: 20px;
  height: 20px;  
}

span.radio-btn__box:before{
  top: -2px !important;
  right: -1px !important;
}

.mb-5{
  margin-bottom: 5px;
}


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

/*Button Start*/
.button {
  position: relative;

  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 44px;
  padding: 0 20px;
  overflow: hidden;

  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none; 

  background-color: #ff0000;
  border: 1px solid #ff0000;
  border-radius: 0;
  border-radius: 50px;
  cursor: pointer;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.button:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;

  display: block;

  color: #ff0000;

  background-color: #ffffff;
  -webkit-transform: translateX(-101%);
      -ms-transform: translateX(-101%);
          transform: translateX(-101%);

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}
.button span {
  position: relative;
  z-index: 2;
}
.button:hover {
  color: #ff0000;
  border-color: #ff0000;
  
}

.button:hover:before {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.button--large {
  width: 100%;
}
.button--input {
  background-color: #6e6e6e;
  border-color: #6e6e6e; 
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.button.product__btn {
  width: 270px; 
  background-color: #62a03f;
  border-color: #62a03f;
}

.button.product__btn:hover{
  color: #62a03f;
}

#fast_email_block .button.product__btn{
  background-color: transparent; 
  border-color: transparent; 
  color: white;  
}

.button.product__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start; 
  align-items: center;

  -webkit-box-align: center;
  -webkit-box-pack: start;
  -ms-flex-align: center;
  -ms-flex-pack: start;
}
.button.product__btn .icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

/*Button End*/
.form-input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  width: 100%;
  height: 45px;
  padding-left: 10px;

  font-size: 16px;

  border: 1px solid #bfbfbf;
}

textarea.form-input {
  height: 150px;
  padding-top: 10px;
}

/* Global Style End */
/*Header Start*/
.header {
  font-size: 18px; 
  color: #444444;
}
@media only screen and (max-width: 1300px) {
  .header {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1023px) {
  .header {
    font-size: 13px;
  }
}
.header a {
  text-decoration: none;
}
.header__main {
  height: 130px;

  border-bottom: 3px solid #ff0000;
}
@media only screen and (max-width: 1023px) {
  .header__main {
    height: 60px;
  }
}
.header__main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center; 
  width: 100%;
  height: 100%;

  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}
.header__main-block {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0; 
  align-items: center;

  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
}
.header__main-block .account-link {
  display: inline-block; 
  padding-right: 50px;
}
@media only screen and (max-width: 576px) {
  .header__main-block .account-link {
    display: none;
  }
}
.header__main-block .basket-link {
  flex-shrink: 0; 

  white-space: nowrap;

  -ms-flex-negative: 0;
}
.header__main-block .basket-link::after {
  content: attr(data-count);
  position: relative;
  top: 5px;

  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-left: 2px; 

  font-size: 12px;
  text-align: center;
  color: #ffffff;

  background-color: #ff0000;
  border-radius: 50%;

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.header__main-logo {
  margin-right: 25px;
}
@media only screen and (max-width: 1023px) {
  .header__main-logo {
    width: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .header__main-logo {
    width: 150px;
  }
}
.header__main-logo img {
  max-width: 100%;
}
.header__main-phones a:first-of-type {
  margin-right: 10px;
}
@media only screen and (max-width: 1023px) {
  .header__main-phones {
    display: none;
  }
}
.header__main__fly {
  position: absolute;
  right: 0;
  bottom: 100%;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center; 
  padding-bottom: 5px;

  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media only screen and (max-width: 1023px) {
  .header__main__fly {
    display: none;
  }
}
.header__main-currency {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 35px;
  height: 35px;
  margin-left: 15px;

  background-color: #ffffff;
  /*background-image: url("../images/icons/currency-icon.png");*/
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #eeeeee;
  border-radius: 50%;
  cursor: pointer;
}
.header__main-currency.active {
  background-color: #cccccc;
}
.header__main-search {
  position: relative;

  width: 35px;
  height: 35px;
  margin-left: 15px; 

  cursor: pointer;
}
.header__main-search-icon {
  position: absolute;
  right: 0;
  z-index: 2; 

  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 35px;
  height: 35px;

  background-color: #ffffff;
  background-image: url("../images/icons/search-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #eeeeee;
  border-radius: 50%;
}
.header__main-search.isOpen .header__main-search-icon {
  background-image: url("../images/icons/cancel-music.svg");
  background-size: 12px;
}
.header__main-search input {
  position: absolute;
  right: 0;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 200px;
  height: 35px;
  margin: 0;
  padding: 0;
  padding-left: 15px;

  border: 1px solid #eeeeee;
  border-radius: 50px;
  outline: none;
  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.5s;
       -o-transition: opacity 0.5s;
          transition: opacity 0.5s;
}
.header__main-search.isOpen input {
  visibility: visible; 
  opacity: 1;
}

.top-links {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;

  border-bottom: 1px solid #dddddd;
}
@media only screen and (max-width: 1023px) {
  .top-links {
    display: none;
  }
}
.top-links .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center; 
  width: 100%;
  height: 100%;

  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}
.top-links li {
  margin-right: 20px;
}
.top-links li:last-of-type {
  margin-right: 0;
}

.links-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center; 
  padding-left: 0;

  list-style: none;

  -webkit-box-align: center;
  -ms-flex-align: center;
}

.top-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center; 

  -webkit-box-align: center;
  -ms-flex-align: center;
}
.top-block .top-social {
  margin-right: 15px; 
  font-size: 1.3rem;
  /*font-size: 0;*/
}
.top-block .top-social a {
  margin-right: 5px;
}
.top-block .top-social--facebook {
  display: inline-block;
  width: 17px;
  height: 30px;

  background-image: url("../images/icons/facebook-small.png");
  background-repeat: no-repeat;
  background-position: center;

  -o-object-fit: contain;
     object-fit: contain;
}
.top-block .top-social--instagram {
  display: inline-block;
  width: 23px;
  height: 30px;

  background-image: url("../images/icons/instagram-small.png");
  background-repeat: no-repeat;
  background-position: center;

  -o-object-fit: contain;
     object-fit: contain;
}
.top-block .lang a {
  margin-right: 2px;
}
.top-block .lang a.active {
  font-weight: bold;
}

.pages .header {
  border-bottom: 1px solid #cccccc;
}

/*  Navigation Start */
.nav {
  position: relative;

  color: #444444;
}
@media only screen and (max-width: 1023px) {
  .js_menu-category .sidebar-open__btn{
    display: none;
  }

  .open-categories .js_menu-category{
    display: block;
  }

  .nav {
    position: fixed;
    top: 61px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 17;

    max-width: 100vw;
    height: calc(100vh - 60px);
    overflow-y: auto; 

    background-color: #ffffff;
    visibility: hidden;
    opacity: 0;

    -webkit-transition: opacity 0.5s;
         -o-transition: opacity 0.5s;
            transition: opacity 0.5s;
  }
}
.nav .nav__control {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .nav .nav__control {
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 14px;

    font-size: 22px; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
  .nav .nav__control .header__main__fly {
    position: static;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-self: flex-end; 

    -ms-flex-item-align: end;
  }
  .nav .nav__control a {
    margin-bottom: 10px;
  }
  .nav .nav__control .top-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center; 

    -webkit-box-align: center;
    -ms-flex-align: center;
  }
  .nav .nav__control .top-block a {
    margin: 0;
  }
}
.nav .nav__back {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;

  display: none;
  width: 30px;
  height: 30px;

  background-color: #ffffff;
  background-image: url("../images/icons/slider_arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 15px #c9c9c9;
          box-shadow: 0 0 15px #c9c9c9; 
  opacity: 0.8;
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /*height: 85px;*/
  height: 70px;
  margin: 0;
  padding: 0;
  padding-right: 30px;
  padding-left: 30px;

  list-style: none;
  font-size: 20px; 

  -webkit-box-align: stretch;
  -webkit-box-pack: justify;
  -ms-flex-align: stretch;
  -ms-flex-pack: justify;
}
@media only screen and (max-width: 1300px) {
  .nav__list {
    padding-right: 0; 
    padding-left: 0;

    font-size: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .nav__list {
    -ms-flex-direction: column;
        flex-direction: column;
    justify-content: flex-start; 
    align-items: flex-start;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 100vw;
    height: auto;
    overflow-y: auto;

    font-size: 22px;

    -webkit-box-align: start;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: start;
    -ms-flex-align: start;
    -ms-flex-pack: start;
  }
}
.nav__list .active {
  color: #ff0000;
}
.nav__list > li {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center; 

  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media only screen and (max-width: 1023px) {
  .nav__list > li {
    padding: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .nav__list > li:hover .nav__menu {
    visibility: visible; 
    opacity: 1;
  }
}
.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 25; 

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding-bottom: 30px;
  padding-left: 0;

  list-style: none;

  background-color: #ffffff;
  border: 1px solid #cccccc;
  visibility: hidden;
  opacity: 0;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;

    justify-content: flex-start; 
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
            box-sizing: border-box;
    max-width: 100vw;
    height: calc(100vh - 60px);
    overflow-y: auto;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
  }
}
.nav__menu > li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 35px;

  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}
@media only screen and (max-width: 1300px) {
  .nav__menu > li {
    width: 340px; 
    padding: 10px 10px 10px 35px;
  }
}
@media only screen and (max-width: 1023px) {
  .nav__menu > li {
    width: 100%;
  }
}
.nav__menu > li.hasChildren::after {
  /*content: url("../images/icons/arrow-nav.png");*/
  /*content: url("../images/icons/slider_arrow_next_red_min.png");*/
  content: url("../images/icons/red-right-mini.png");
}
@media only screen and (max-width: 1023px) {
  .nav__menu > li.hasChildren::after {
    display: none;
  }
}
.nav__menu > li:hover > a {
  color: #ff0000;
}
@media only screen and (min-width: 768px) {
  .nav__menu > li:hover .nav__sub__menu {
    visibility: visible; 
    opacity: 1;
  }
  .nav__menu > li:hover .nav__sub__menu:hover ~ a {
    color: #ff0000;
  }
}
.nav__sub__menu {
  position: absolute;
  top: 0;
  right: 0;
  left: 100%;

      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: auto;
  min-height: 100%;
  padding-top: 5px;
  padding-left: 45px;

  list-style: none;

  background-color: #ffffff; 
  visibility: hidden;
  opacity: 0;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;

  -ms-flex-wrap: wrap;
}
@media only screen and (max-width: 1300px) {
  .nav__sub__menu {
    left: 340px;
  }
}
@media only screen and (max-width: 1023px) {
  .nav__sub__menu {
    position: fixed;
    top: 61px;
    right: 0;
    left: 0;

    -ms-flex-direction: column;
        flex-direction: column;
    justify-content: flex-start; 
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 100vw;
    height: calc(100vh - 60px);
    min-height: initial;
    overflow-y: auto;

    background-color: #ffffff;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
  }
}
.nav__sub__menu > li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  height: initial;
  padding-top: 12px;
  padding-right: 10px;
  padding-bottom: 12px;
}
@media only screen and (max-width: 1023px) {
  .nav__sub__menu > li {
    width: 100%;
  }
}
.nav__sub__menu::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  z-index: 2;

  display: inline-block;

  border-right: 3px solid #cccccc;
}
@media only screen and (max-width: 1023px) {
  .nav__sub__menu::before {
    display: none;
  }
}
.nav__menu__btn {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .nav__menu__btn {
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-left: 10px; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
  .nav__menu__btn span {
    width: 26px;
    height: 2px;
    margin-bottom: 6px;

    background-color: #444444;

    -webkit-transition: 0.5s;
         -o-transition: 0.5s;
            transition: 0.5s;
  }
  .nav__menu__btn span:last-of-type {
    margin-bottom: 0;
  }
}

.isOpenMenu {
  overflow: hidden;
}
.isOpenMenu .nav__menu__btn span:nth-of-type(1) {
  -webkit-transform: rotate(45deg) translate(0px, -2px);
      -ms-transform: rotate(45deg) translate(0px, -2px);
          transform: rotate(45deg) translate(0px, -2px); 
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}
.isOpenMenu .nav__menu__btn span:nth-of-type(2) {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}
.isOpenMenu .nav__menu__btn span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg) translate(0px, 1px);
      -ms-transform: rotate(-45deg) translate(0px, 1px);
          transform: rotate(-45deg) translate(0px, 1px); 
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}
.isOpenMenu .nav {
  visibility: visible;
  opacity: 1;
}
.isOpenMenu .js_menu-category {
  visibility: visible;
  opacity: 1;
  z-index: 
}



/*  Navigation End */
.main__slider {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.main__slider__item {
  /*width: 100vw;*/
  /*height: calc(100vw / 4.53);*/
  height: calc(100vw / 4);

  background-repeat: no-repeat; 
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 1023px) {
  .main__slider__item {
    height: calc(100vw / 3.53);
  }
}
@media only screen and (max-width: 576px) {
  .main__slider__item {
    height: calc(100vw / 2.53);
  }
}
.main__slider__arrow {
  position: absolute;
  bottom: 10px;
  z-index: 15;

  width: 46px;
  height: 46px;

  background-color: rgba(68, 68, 68, 0.8);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.main__slider__arrow--prev {
  left: 15px; 

  background-image: url("../images/icons/main-arrow-prev.png");
}
.main__slider__arrow--next {
  right: 15px; 

  background-image: url("../images/icons/main-arrow-next.png");
}

.c-cart {
  padding: 5px;
}
.c-cart-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 292px;
  /*width: 180px;*/
  margin: 0 auto;
  overflow: hidden; 

  /*font-size: 20px;*/
  font-size: 17px;
  text-align: center;
  color: #000000;
  text-decoration: none;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;

  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.main__carusel .c-cart-box {
  width: 180px;
  font-size: 17px;
}

/* NEW */
.c-cart .button{
  height: 40px;
}
/* END NEW */

@media only screen and (max-width: 1300px) {
  .c-cart-box {
    width: 230px;

    font-size: 16px;
  }
}
.c-cart-box:hover {
  color: initial;

  -webkit-box-shadow: 0 0 10px -2px #ff0000;
          box-shadow: 0 0 10px -2px #ff0000;
}
.c-cart-box:hover .c-cart__img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.c-cart__img {
  width: 100%;
  height: 292px;
  /*height: 180px;*/
  margin-bottom: 20px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}

.main__carusel .c-cart__img {
  height: 180px;
}



@media only screen and (max-width: 1300px) {
  .c-cart__img {
    height: 230px;
  }
}
.c-cart__title {
  /*max-width: 180px; */
  max-width: 200px;
  /*height: calc(2em * 1.5);*/
  overflow: hidden;

  line-height: 1.5;

  height: 71px;
}
.c-cart__price {
  font-size: 26px; 
  /*font-size: 20px;*/
  color: #ff0000;
}

.main__carusel .c-cart__price {
  font-size: 20px;
}



@media only screen and (max-width: 1300px) {
  .c-cart__price {
    font-size: 20px;
  }
}
.c-cart__price span {
  /*font-size: 0.6em;*/
}
.c-cart__price--old {
  font-size: 16px;
  color: #999999;
  text-decoration: line-through;
}
@media only screen and (max-width: 1300px) {
  .c-cart__price--old {
    font-size: 14px;
  }
}

.c-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
  width: 100%; 
  height: 485px;

  color: #ffffff;

  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
}
@media only screen and (max-width: 1023px) {
  .c-blocks {
    -ms-flex-direction: column;
        flex-direction: column;
    height: auto; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.c-blocks__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 1; 
  -ms-flex-direction: column;
      flex-direction: column;

  -webkit-box-direction: normal;
  -webkit-box-flex: 1;
  -webkit-box-orient: vertical;
  -ms-flex-positive: 1;
}

.c-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 1;
  -ms-flex-direction: column;
      flex-direction: column;
  justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding-left: 15px;

  border: 10px solid #ffffff;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; 

  -webkit-transition: 0.2s;
       -o-transition: 0.2s;
          transition: 0.2s;

  -webkit-box-direction: normal;
  -webkit-box-flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-positive: 1;
}
@media only screen and (max-width: 1023px) {
  .c-block__item {
    width: 100%;
    height: 350px;
    padding-right: 15px;
  }
}
.c-block__item:hover {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
  opacity: 0.7;
}
.c-block__item:nth-of-type(2n) {
  border-top: none;
}
.c-block__item--blue {
  background-image: -webkit-gradient(linear, left top, right top, from(#bfdfea), to(#81c0d6));
  background-image: -o-linear-gradient(left, #bfdfea, #81c0d6);
  background-image:    linear-gradient(to right, #bfdfea, #81c0d6);
}
.c-block__item--pink {
  background-image: -webkit-gradient(linear, left top, right top, from(#f6d9dd), to(#edb1ba));
  background-image: -o-linear-gradient(left, #f6d9dd, #edb1ba);
  background-image:    linear-gradient(to right, #f6d9dd, #edb1ba);
}
.c-block__item--orange {
  background-image: -webkit-gradient(linear, left top, right top, from(#f7d28e), to(#f1b441));
  background-image: -o-linear-gradient(left, #f7d28e, #f1b441);
  background-image:    linear-gradient(to right, #f7d28e, #f1b441);
}
.c-block__item--sky {
  background-image: -webkit-gradient(linear, left top, right top, from(#b4cbe2), to(#85aacf));
  background-image: -o-linear-gradient(left, #b4cbe2, #85aacf);
  background-image:    linear-gradient(to right, #b4cbe2, #85aacf);
}

.c-block__title {
  margin-bottom: 10px; 

  font-size: 45px;
  line-height: 1;
}
@media only screen and (max-width: 1300px) {
  .c-block__title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 1023px) {
  .c-block__title {
    font-size: 30px;
  }
}

.c-block__hash {
  font-weight: bold; 
  font-size: 45px;
  line-height: 1;
}
@media only screen and (max-width: 1300px) {
  .c-block__hash {
    font-size: 35px;
  }
}
@media only screen and (max-width: 1023px) {
  .c-block__hash {
    font-size: 30px;
  }
}

.c-block__more {
  margin-top: 10px;

  font-size: 22px;
}
@media only screen and (max-width: 1300px) {
  .c-block__more {
    font-size: 18px;
  }
}

.c-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  justify-content: center;
  align-items: center; 
  /*padding-top: 85px;*/
  padding-bottom: 100px;

  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.c-about__desc {
  max-width: 970px;
  /*margin-top: 70px;*/

  font-size: 20px;
  line-height: 1.5;
  text-align: center; 
  color: #79796a;
}
@media only screen and (max-width: 768px) {
  .c-about__desc {
    margin-top: 30px; 

    font-size: 14px;
  }
}

.main__carusel {
  padding-top: 65px;
  /*padding-bottom: 100px;*/
  padding-bottom: 20px;
}

.main__title {
  position: relative;
  font-weight: normal;
  display: inline-block;
  margin: 0 auto;

  font-size: 24px;
  text-align: center;
  color: #636363;

  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .main__title {
    font-size: 18px;
  }
}
.main__title::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;

  display: inline-block;
  width: 430px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 5px;

  border-bottom: 2px solid #3f3f3f;
}

/*Header End*/
.page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  padding: 30px 10px;

  text-align: center;

  background-color: #f4f5f7;

  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.page-header .main__title {
  width: 430px;
  max-width: 100%;
}
.page-header .main__title::after {
  border-color: #cccccc;
}

/*Bounce Animation Start*/
.bounce {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;

  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;

  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); 

    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  40%,
  43% {
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0); 

    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0); 

    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); 

    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
         -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  40%,
  43% {
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0); 

    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
         -o-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0); 

    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
         -o-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}

/*Bounce Animation End*/
/*Main Start*/
/*Main End*/
/*Footer Start*/
.footer {
  border-top: 3px solid #ff0000;
  /*padding-top: 35px;*/
  padding-top: 25px;

  font-size: 18px; 
  color: #333333;

  /*background-color: #333333;*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer a {
  text-decoration: none;
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 

  -webkit-box-align: start;
  -webkit-box-pack: justify;
  -ms-flex-align: start;
  -ms-flex-pack: justify;
}
@media only screen and (max-width: 768px) {
  .footer__wrapper {
    -ms-flex-direction: column;
        flex-direction: column; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.footer__block ul {
  margin: 0; 
  padding-left: 0;

  list-style: none;
}
.footer__block ul li {
  /*margin-bottom: 10px;*/
}
.footer__subscribe {
  max-width: 440px;
  text-align: center;
  padding: 0 15px;
}
@media only screen and (max-width: 768px) {
  .footer__subscribe {
    max-width: unset;
    padding: 60px 0 65px 0;
    min-height: unset !important;
    height: 50px !important;
  }
}
.footer__subscribe__desc {
  margin-bottom: 40px;
}
.footer__subscribe__input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 44px;
  margin-bottom: 15px;
  padding-left: 20px;

  font-size: 18px;
  color: #ffffff;

  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 50px;

  -webkit-transition: -webkit-box-shadow 0.5s;
       -o-transition:         box-shadow 0.5s;
          transition: -webkit-box-shadow 0.5s;
          transition:         box-shadow 0.5s;
          transition:         box-shadow 0.5s, -webkit-box-shadow 0.5s;
}
.footer__subscribe__input::-webkit-input-placeholder {
  color: #ffffff;
}
.footer__subscribe__input::-ms-input-placeholder {
  color: #ffffff;
}
.footer__subscribe__input::placeholder {
  color: #ffffff;
}
.footer__subscribe__input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 15px #ff0000;
          box-shadow: 0 0 15px #ff0000;
}
.footer__address {
  line-height: 1.8;
}
.footer__address a {
  /*color: #ffffff;*/
  color: #333333;
}
.footer__address a.footer__address-mail {
  /*color: #ffffff;*/
  color: #333333;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;

  font-size: 0;
}
.footer__social--facebook {
  display: inline-block;
  width: 24px;
  height: 45px;
  margin-right: 10px;

  background-image: url("../images/icons/facebook-big.png");
  background-repeat: no-repeat;
  background-position: center;

  -webkit-transition: -webkit-transform 0.5s;
       -o-transition:         transform 0.5s;
          transition: -webkit-transform 0.5s;
          transition:         transform 0.5s;
          transition:         transform 0.5s, -webkit-transform 0.5s;
}
.footer__social--facebook:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.footer__social--instagram {
  display: inline-block;
  width: 34px;
  height: 45px;

  background-image: url("../images/icons/instagram-big.png");
  background-repeat: no-repeat;
  background-position: center;

  -webkit-transition: -webkit-transform 0.3s;
       -o-transition:         transform 0.3s;
          transition: -webkit-transform 0.3s;
          transition:         transform 0.3s;
          transition:         transform 0.3s, -webkit-transform 0.3s;
}
.footer__social--instagram:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.footer__copyright {
  /*background-color: rgba(0, 0, 0, 0.15);*/
  background-color: #636363;
}
.footer__copyright .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px; 
  padding-top: 10px;
  padding-bottom: 10px;

  color: #ffffff;

  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}
@media only screen and (max-width: 768px) {
  .footer__copyright .container {
    -ms-flex-direction: column;
        flex-direction: column; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.footer__copyright-text {
  font-size: 12px;
  line-height: 1.4;
}
@media only screen and (max-width: 576px) {
  .footer__copyright-text {
    padding-bottom: 15px;

    text-align: center;
  }
}
.footer__copyright-text a {
  text-decoration: none;

  -webkit-transition: color 0.5s;
       -o-transition: color 0.5s;
          transition: color 0.5s;
}
.footer__copyright-text a:hover {
  color: #ff0000;
}

/*Footer End*/
/*Bread Crumbs Start*/
.bread-crumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 15px; 

  font-size: 18px;
  color: #000000;

  -webkit-box-align: stretch;
  -webkit-box-pack: start;
  -ms-flex-align: stretch;
  -ms-flex-pack: start;
}
@media only screen and (max-width: 768px) {
  .bread-crumbs {
    font-size: 14px;
  }
}
@media only screen and (max-width: 576px) {
  .bread-crumbs {
    font-size: 12px;
  }
}
.bread-crumbs a {
  text-decoration: none;
}
.bread-crumbs__sep {
  margin-right: 3px; 
  margin-left: 3px;
}
.bread-crumbs__current {
  color: #ff0000;
}

/*Bread Crumbs End*/
/*Catigories Start*/
.categories {
  position: relative;

  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  margin-top: 40px;
}
.categories__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch; 

  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
}
.categories__left {
  flex-shrink: 0; 
  margin-top: 40px;
  -ms-flex-negative: 0;
}
.categories__right {
  flex-grow: 1;
  padding-right: 10px; 
  padding-left: 10px;

  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
}
@media only screen and (max-width: 1023px) {
  .categories__right {
    padding-right: 15px; 
    padding-left: 15px;
  }
}
.categories__desc {
  margin-bottom: 80px;
}

.categories__desc-top {
  margin-top: 20px;
}


.categories__desc-title {
  margin-top: 25px;
  margin-bottom: 25px; 

  font-size: 55px;
  color: #ff0000;
}
@media only screen and (max-width: 576px) {
  .categories__desc-title {
    font-size: 30px;
  }
}
.categories__desc-text {
  font-size: 14px;
  line-height: 1.8;
  text-align: center; 
  color: #535353;
}
.categories__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-wrap: wrap;
  justify-content: center; 
  padding-top: 20px;
  padding-bottom: 20px;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
}
.categories__items .c-cart {
  margin-bottom: 25px;
}
/*Catigories End*/

/*Filter Start*/
.filter {
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10;

  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  width: 100%;
  max-width: 280px;
  /*padding-bottom: 50px;*/
  padding-bottom: 2px;
  /*padding-left: 25px;*/

  background-color: #ffffff;

  -webkit-transition: -webkit-transform 1s;
       -o-transition:         transform 1s;
          transition: -webkit-transform 1s;
          transition:         transform 1s;
          transition:         transform 1s, -webkit-transform 1s;
}

@media only screen and (max-width: 1300px) {
  .filter {
    position: fixed;

    border-right: 1px solid #9c9c9c; 
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media only screen and (max-width: 576px) {
  .filter {
    position: fixed;

    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.filter form {
  padding-right: 10px; 
  padding-left: 10px;
}
@media only screen and (max-width: 1300px) {
  .filter form {
    height: 100%; 
    overflow-y: auto;
  }
}
.filter.isOpen {
  /*overflow-y: auto;*/
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.filter__show {
  position: absolute;
  top: 140px;
  right: -50px;

  display: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;

  color: #ffffff; 

  background-color: rgba(255, 0, 0, 0.8);

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
@media only screen and (max-width: 1300px) {
  .filter__show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.filter__title {
  margin-top: 25px;
  margin-bottom: 25px;

  font-size: 30px; 
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .filter__title {
    font-size: 24px;
  }
}
.filter__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-bottom: 10px; 

  -webkit-box-align: center;
  -ms-flex-align: center;
}
.filter__checkbox-body {
  display: block;
  flex-shrink: 0; 
  width: 16px;
  height: 16px;
  margin-right: 3px;

  background-color: #d9d9d9;
  background-repeat: no-repeat;
  background-size: contain;

  -ms-flex-negative: 0;
}
.filter__checkbox-label {
  font-size: 16px;
  color: #444444;
}
.filter__checkbox input {
  display: none;
}
.filter__checkbox input:checked ~ .filter__checkbox-body:before {
  content: url("../images/icons/check-green.png");
  position: relative;
  top: 0; 
  right: 5px;
}
.filter__checkbox.disabled {
  opacity: 0.5;
}
.filter__checkbox--error {
  font-weight: 700; 
  color: red;
}

.check_error{
  border: 1px solid red;
}
/*Filter End*/
/*Sort Start*/
.sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px; 

  border-bottom: 1px solid #dddddd;

  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}
.sort__wrapper {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 2; 
  align-items: center;

  -webkit-box-align: center;
  -webkit-box-flex: 2;
  -ms-flex-align: center;
  -ms-flex-positive: 2;
}
.sort__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center; 

  font-size: 18px;
  color: #ff0000;

  -webkit-box-align: center;
  -webkit-box-pack: start;
  -ms-flex-align: center;
  -ms-flex-pack: start;
}
@media only screen and (max-width: 768px) {
  .sort__title {
    cursor: pointer;
  }
}
.sort__title .icon {
  display: none; 
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .sort__title .icon {
    display: initial;
  }
}
.sort__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 2; 
  align-items: center;

  -webkit-box-align: center;
  -webkit-box-flex: 2;
  -ms-flex-align: center;
  -ms-flex-positive: 2;
}
@media only screen and (max-width: 768px) {
  .sort__list {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 5;

    -ms-flex-direction: column;
        flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;

    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 15px 0 #000000;
            box-shadow: 0 10px 15px 0 #000000;
    -webkit-transform: translateX(-120%);
        -ms-transform: translateX(-120%);
            transform: translateX(-120%);

    -webkit-transition: 1s;
         -o-transition: 1s;
            transition: 1s; 

    -webkit-box-align: start;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: start;
  }
}
.sort__list li {
  margin-right: 20px; 

  list-style: none;
}
@media only screen and (max-width: 768px) {
  .sort__list li {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.sort__list a {
  text-align: center; 
  text-decoration: none;

  -webkit-transition: color 0.5s;
       -o-transition: color 0.5s;
          transition: color 0.5s;
}
.sort__list a:hover {
  color: #ff0000;
}
.sort__list .active {
  text-decoration: underline;
}
.sort__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 15px;

  font-size: 12px;
  text-align: center; 
  color: #ffffff;

  background-color: #ff0000;
  border-radius: 50px;

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.isOpen .sort__list {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

/*Sort End*/
/*Pagination Start*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-right: 5px;
  margin-left: 5px;

  font-size: 18px;
  color: #000000;
  text-decoration: none;

  background-color: #ffffff;
  border: 1px solid #aaaaaa;
  border-radius: 50%;
  cursor: pointer; 

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.pagination__item.active {
  border-color: #ff0000;
}
.pagination__item:hover {
  border-color: #ff0000;
}

/*Pagination End*/
/*Navigation Start*/
.navigation {
  position: absolute;
  top: 98px;
  z-index: -1;

  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding-top: 60px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-left: 40px;

  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);

  -webkit-transition: 1s;
       -o-transition: 1s;
          transition: 1s;
}
@media only screen and (max-width: 768px) {
  .navigation {
    top: 75px;

    padding-top: 30px;
    padding-right: 15px; 
    padding-bottom: 30px;
    padding-left: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .navigation {
    top: 148px;
  }
}
.navigation__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between; 

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
@media only screen and (max-width: 768px) {
  .navigation__wrapper {
    -ms-flex-direction: column;
        flex-direction: column;
    justify-content: flex-start;
    height: calc(100vh - 135px); 
    overflow-y: auto;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
  }
}
@media only screen and (max-width: 576px) {
  .navigation__wrapper {
    height: calc(100vh - 208px);
  }
}
@media only screen and (max-width: 576px) {
  .navigation__list ul {
    padding-left: 0;
  }
}
.navigation__list li {
  margin-bottom: 10px;

  list-style: none;
  font-size: 22px;
  color: #ffffff;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}
.navigation__list li a {
  text-decoration: none;
}
.navigation__list li:hover {
  color: #ff0000;
}
.navigation__list .active {
  color: #ff0000;
}
.navigation__img img {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .navigation__img {
    margin-top: 20px;
  }
}

.isOpenMenu .navigation {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

.isOpenMenu .header__item--menu {
  background-color: #ff0000;
}

/*Navigation End*/
/*Product Start*/
.product {
  padding-top: 40px;
  padding-right: 20px;
  padding-bottom: 40px; 
  padding-left: 20px;
}
@media only screen and (max-width: 576px) {
  .product {
    padding-right: 10px; 
    padding-left: 10px;
  }
}
.product__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px; 

  -webkit-box-align: start;
  -ms-flex-align: start;
}
@media only screen and (max-width: 1023px) {
  .product__wrapper {
    -ms-flex-direction: column;
        flex-direction: column; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.product__gallery {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .product__gallery {
    margin-right: auto; 
    margin-left: auto;
  }
}
.product__gallery-preview {
  width: 155px;
}
@media only screen and (max-width: 1300px) {
  .product__gallery-preview {
    width: 100px;
  }
}
@media only screen and (max-width: 576px) {
  .product__gallery-preview {
    display: none;
  }
}
.product__gallery-img {
  width: 520px;
  margin-left: 20px;
}
@media only screen and (max-width: 1300px) {
  .product__gallery-img {
    width: 360px;
  }
}
@media only screen and (max-width: 576px) {
  .product__gallery-img {
    width: 300px; 
    margin-left: 0;
  }
}
.product__gallery-item {
  width: 520px;
  height: 520px;
}
@media only screen and (max-width: 1300px) {
  .product__gallery-item {
    width: 360px;
    height: 360px;
  }
}
@media only screen and (max-width: 576px) {
  .product__gallery-item {
    width: 300px;
    height: 300px;
  }
}
.product__gallery-item img {
  max-width: 100%;
}
.product__gallery-item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 520px;
  height: 520px;
  overflow: hidden; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
@media only screen and (max-width: 1300px) {
  .product__gallery-item div {
    width: 360px;
    height: 360px;
  }
}
@media only screen and (max-width: 576px) {
  .product__gallery-item div {
    width: 300px;
    height: 300px;
  }
}
.product__gallery-nav {
  width: 155px;
  height: 155px;
  margin-bottom: 27px;
}
@media only screen and (max-width: 1300px) {
  .product__gallery-nav {
    width: 100px;
    height: 100px;
  }
}
.product__gallery-nav img {
  max-width: 100%;
}
.product__gallery-nav:last-of-type {
  margin-bottom: 0;
}
.product__gallery-nav div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 155px;
  overflow: hidden; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
@media only screen and (max-width: 1300px) {
  .product__gallery-nav div {
    width: 100px;
    height: 100px;
  }
}
.product__gallery-arrows {
  position: absolute;
  top: 10px;
  bottom: 40px;
  left: 71px;
  z-index: 5;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  justify-content: space-between; 

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
@media only screen and (max-width: 1300px) {
  .product__gallery-arrows {
    left: 43.5px;
  }
}
@media only screen and (max-width: 576px) {
  .product__gallery-arrows {
    top: calc(50% - 6.5px);
    right: 10px;
    bottom: initial;
    left: 10px;

    -ms-flex-direction: row;
        flex-direction: row; 

    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
  }
}
.product__gallery-arrows .prew-arrow {
    width: 30px;
    height: 28px;
    margin: -6px;

  background-image: url("../images/icons/slider_arrow_red.png");

  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .product__gallery-arrows .prew-arrow {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
  }
}
.product__gallery-arrows .next-arrow {
    width: 30px;
    height: 28px;
    margin: -6px;

  background-image: url("../images/icons/slider_arrow_red.png");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  cursor: pointer;
}
@media only screen and (max-width: 576px) {
  .product__gallery-arrows .next-arrow {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.product__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start; 
  align-items: center;

  -webkit-box-align: center;
  -webkit-box-pack: start;
  -ms-flex-align: center;
  -ms-flex-pack: start;
}
@media only screen and (max-width: 768px) {
  .product__btn-wrapper {
    -ms-flex-direction: column;
        flex-direction: column;
    align-items: flex-start; 

    -webkit-box-align: start;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: start;
  }
}
.product__btn-wrapper .cart__item-quantity {
  flex-shrink: 0;
  /*width: 134px; */
  /*width: 122px;*/
  width: 90px;
  margin-right: 10px;

  -ms-flex-negative: 0;
}
.product__btn-wrapper .cart__item-quantity .ui-spinner {
  /*width: 134px;*/
  width: 122px;
  width: 90px;
}
.product__btn-wrapper .cart__item-quantity .ui-spinner-input {
/*  width: 44px;
  height: 44px;*/
  /*width: 40px;*/
  width: 90px;
  height: 40px;
  font-weight: bold; 
  font-size: 25px;
  color: #6c6c6c;

  border: 1px solid #eeeeee;
}
.product__btn-wrapper .cart__item-quantity .ui-spinner-down {
  top: 0;
  left: 1px;

/*  width: 44px;
  height: 44px;*/
  /*width: 40px;*/
  width: 30px;
  height: 40px;

  background-image: url("../images/icons/minus-gray.png");
  background-repeat: no-repeat; 
  background-size: 10px;
  border: 1px solid #eeeeee;
}
.product__btn-wrapper .cart__item-quantity .ui-spinner-up {
  top: 0;
  right: 1px;

/*  width: 44px;
  height: 44px;*/
  /*width: 40px;*/
  width: 30px;
  height: 40px;

  background-image: url("../images/icons/pluse-gray.png");
  background-repeat: no-repeat; 
  background-size: 13px;
  border: 1px solid #eeeeee;
}
.product__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  align-items: flex-start;
  padding-left: 20px; 

  -webkit-box-align: start;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-align: start;
}
@media only screen and (max-width: 1023px) {
  .product__control {
    padding-left: 0;
  }
}
.product__title {
  margin-bottom: 10px; 
  margin-top: 1px;
  font-weight: normal;
  /*font-weight: bold;*/
  font-size: 25px;
  color: #ff0000;
}
@media only screen and (max-width: 576px) {
  .product__title {
    margin-top: 10px; 

    font-size: 24px;
  }
}
.product__art {
  display: inline-block;
  margin-bottom: 30px; 
  padding: 2px 5px;

  font-size: 12px;
  color: #ffffff;

  background-color: #6e6e6e;
  border-radius: 25px;
}
.product__art span {
  font-weight: bold;
}
.product__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center; 
  margin-bottom: 25px;
  padding-left: 7px;

  font-size: 35px;
  color: #202020;

  -webkit-box-align: center;
  -ms-flex-align: center;
}
.product__price--old {
  font-size: 16px;
  color: #ff0000; 
  text-decoration: line-through;
}
.product__price--new {
  margin-right: 16px;
  color: #62a03f;
}
.product__price span {
  /*font-size: 12px;*/
}
.product__form label {
  display: block;
  margin-bottom: 8px;
  padding-left: 7px; 

  font-size: 16px;
  color: #202020;
}
.product__select {
  margin-bottom: 20px;
}
.product__select label {
  font-weight: bold;
  font-size: 16px;
  text-align: left; 
  color: #cb3233;
}
.product__text {
  margin-bottom: 20px;
  padding-bottom: 20px;

  font-size: 12px;
  line-height: 1.6; 
  color: #6c6c6c;

  border-bottom: 1px solid #d1d1d1;
}
.product__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2px;

  -webkit-box-align: center;
  -webkit-box-pack: start;
  -ms-flex-align: center;
  -ms-flex-pack: start;
}
.product__share a {
  display: inline-block;
  margin-right: 10px; 

  color: #6e6e6e;
  text-decoration: none;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}
.product__share a .icon {
  width: 35px;
  height: 35px;
}
.product__share a:hover {
  color: #ff0000;
}
.product__share span {
  font-size: 16px;
  color: #6e6e6e;
}
.product__description {
  margin-bottom: 40px; 
  padding-right: 30px;

  font-size: 14px;
  color: #6c6c6c;
}
.product__description-title {
  margin-bottom: 40px; 

  font-size: 35px;
  color: #6d6d6d;
}

/*.hide_mobile{
  display: none;
}*/

@media only screen and (max-width: 576px) {
  .product__description-title {
    font-size: 20px;
  }
}
.product__package-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 40px; 

  -webkit-box-align: center;
  -webkit-box-pack: end;
  -ms-flex-align: center;
  -ms-flex-pack: end;
}
@media only screen and (max-width: 1023px) {
  .product__package-arrows {
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px; 

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
  }
}
.product__package-arrows .prew-arrow {
  width: 22px;
  height: 27px;
  margin-right: 5px;

  /*background-image: url("../images/icons/slider_arrow.png");*/
  background-image: url("../images/icons/slider_arrow_red.png");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.product__package-arrows .next-arrow {
  width: 22px;
  height: 27px;

  /*background-image: url("../images/icons/slider_arrow_next.png");*/
  background-image: url("../images/icons/slider_arrow_next_red.png");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.product__package-title {
  margin-bottom: 10px; 

  font-size: 35px;
  color: #6e6e6e;
}
@media only screen and (max-width: 576px) {
  .product__package-title {
    font-size: 20px;
  }
}
.product__package-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 40px; 
  padding: 30px;

  border: 1px solid #e1e1e1;
}
@media only screen and (max-width: 1023px) {
  .product__package-item {
    -ms-flex-direction: column;
        flex-direction: column;
    align-items: center; 

    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: center;
  }
}
.product__package-plus {
  flex-shrink: 0; 
  width: 30px;

  background-image: url("../images/icons/plus.png");
  background-repeat: no-repeat;
  background-position: center;

  -ms-flex-negative: 0;
}
@media only screen and (max-width: 1023px) {
  .product__package-plus {
    height: 30px;
    margin-right: auto; 
    margin-left: auto;
  }
}
.product__package-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0; 
  -ms-flex-direction: column;
      flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 25px;

  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  -ms-flex-pack: center;
}
@media only screen and (max-width: 1023px) {
  .product__package-total {
    margin-top: 30px;
    margin-left: 0;
  }
}
.product__package-total .product__price {
  margin-bottom: 10px;
}
.product__package-total > .product__btn {
  width: 195px;
}
.product__package-total > .product__btn span .icon {
  margin-right: 25px;
}
.product__package-icon {
  width: 60px;
  margin-bottom: 15px;
}
.product__saving {
  margin-bottom: 25px; 

  font-size: 14px;
  color: #ff0000;
}
.product__more-title {
  margin-bottom: 40px; 

  font-size: 35px;
  color: #6e6e6e;
}
@media only screen and (max-width: 576px) {
  .product__more-title {
    font-size: 20px;
  }
}
.product__more-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .product__more-items {
        flex-wrap: wrap; 

    -ms-flex-wrap: wrap;
  }
}
.product__more .main__group-item {
  width: calc(25% - 15px); 
  margin-right: 10px;
}
@media only screen and (max-width: 1023px) {
  .product__more .main__group-item {
    width: calc(50% - 15px);
    margin-right: 5px;
    margin-bottom: 10px;
    margin-left: 5px;
  }
}
@media only screen and (max-width: 576px) {
  .product__more .main__group-item {
    width: calc(100% - 10px);
  }
}
.product__more .main__group-item:last-of-type {
  margin-right: 0;
}
.buy-btn{
  height: 50px;
  width: 315px !important;
}
/*Product End*/
/* Fast order Start*/
.fast-order {
  margin-top: 5px;
  /*margin-bottom: 15px;*/
}
.fast-order__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center; 
  /*height: 44px;*/
  height: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media only screen and (max-width: 576px) {
  .fast-order__form {
    -ms-flex-direction: column;
        flex-direction: column;
    align-items: stretch;
    height: 98px; 

    -webkit-box-align: stretch;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-align: stretch;
  }
}
.fast-order input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  padding-left: 10px; 

  font-size: 16px;
  color: #202020;

  background-color: #f7f7f7;
  border: 1px solid #d1d1d1;
}
.fast-order .button {
  height: 100%;
}
@media only screen and (max-width: 576px) {
  .fast-order .button {
    margin-top: 10px;
    margin-left: 0;

    border-radius: 50px;
  }
}

/* Fast order End*/
/*Select menu Start*/
.ui-selectmenu-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  align-items: center; 
  width: 399px !important;
  height: 44px;
  padding: 0;

  font-size: 16px;
  color: #202020;

  background-color: #f7f7f7;
  border: 1px solid #d1d1d1;

  -webkit-box-align: center;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-align: center;
}
@media only screen and (max-width: 1300px) {
  .ui-selectmenu-button {
    width: 260px !important;
  }
}

.ui-selectmenu-icon {
  width: 20px;
  height: 15px;
  margin-right: 10px; 

  background-image: url("../images/icons/arrow_select.png");
  background-repeat: no-repeat;
  background-position: center;
}

.input-addon_block .ui-selectmenu-text,
.new-checkout__item-input .ui-selectmenu-text{
  flex-grow: 1;
  padding-left: 10px; 
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
}

.input-addon_block .ui-selectmenu-menu,
.new-checkout__item-input .ui-selectmenu-menu{
  z-index: 5;
  background-color: #ffffff;
  border: 1px solid #d1d1d1;
}

.input-addon_block .ui-menu-item ,
.ui-selectmenu-menu .ui-menu-item{
  padding-top: 5px;
  padding-bottom: 5px;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}

.input-addon_block .ui-menu-item:hover ,
.ui-selectmenu-menu .ui-menu-item:hover{
  color: #ffffff; 
  background-color: #ff0000;
}

/*Select menu End*/
/*Zoom Start*/
.xzoom-preview {
  z-index: 5;

  margin-left: 25px;
}

/*Zoom End*/
/*Autocompite Start*/
.ui-autocomplete {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  width: 252px;
  padding: 15px 25px 15px 10px;

  background-color: #ffffff;
}
@media only screen and (max-width: 576px) {
  .ui-autocomplete {
    width: 222px;
    max-height: 60vh;
    overflow-y: auto;
  }
}

.ui-autocomplete a {
  text-decoration: none;
}

.ui-autocomplete .ui-menu-item:hover .autocomplete__title,
.ui-autocomplete .ui-menu-item:hover .autocomplete__price {
  color: #ffffff;
}

.autocomplete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch; 

  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
}

.autocomplete__image {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 10px; 

  -ms-flex-negative: 0;
}

.autocomplete__image img {
  max-width: 100%;
}

.autocomplete__title {
  margin-bottom: 10px; 

  font-size: 16px;
  color: #6e6e6e;
}

.autocomplete__price {
  margin-bottom: 10px; 

  font-size: 14px;
  color: #fd3e30;
}

/*Autocompite End*/
/*Single modal Start*/
.single-modal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  padding: 20px 10px;
}
.single-modal__title {
  margin-bottom: 20px; 

  font-size: 18px;
  text-align: center;
  color: #6e6e6e;
  text-transform: uppercase;
}
.single-modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.single-modal__image {
  width: 100px;
  height: 100px;
  margin-right: 10px; 

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.single-modal__subtitle {
  margin-bottom: 10px;

  font-weight: bold; 
  font-size: 16px;
  color: #6e6e6e;
}
.single-modal__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center; 
  margin-bottom: 10px;

  font-size: 14px;
  color: #ff0000;

  -webkit-box-align: center;
  -ms-flex-align: center;
}
.single-modal__price--old {
  color: #000000; 
  text-decoration: line-through;
}
.single-modal__price--new {
  margin-right: 16px;
}
.single-modal .button {
  margin-bottom: 10px;
}
.single-modal .product__btn {
  width: initial;
}

/*Single modal End*/
/*Callback modal Start*/
.callback .button {
  width: 100%;
}

.callback .success {
  margin-top: 30px;
}

/*Callback modal End*/
/*Cart Start*/
.cart {
  padding-top: 40px;
  padding-bottom: 40px;
}
.cart__title {
  margin-bottom: 30px; 

  font-size: 32px;
  color: #6e6e6e;
}
.cart__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*justify-content: space-around;*/
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 5px;
  padding-bottom: 5px;

  background-color: #f9f9f9; 

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;

  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -ms-flex-pack: distribute;
}

@media only screen and (max-width: 768px) {
  .buy-btn{
    width: 270px !important;
  }
  .hide_mobile{
    display: none;
  }
  .cart__item {
    -ms-flex-direction: column;
        flex-direction: column;
    justify-content: center;
    align-items: center; 

    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
  }
}
/*.cart__item:nth-last-of-type(2n) {
  background-color: #eeeeee;
}*/
/*.cart__item:hover {
  background-color: #eeeeee;
}*/
.cart__item-img {
  flex-shrink: 0; 
  width: 150px;
  height: 150px;
  margin-right: 15px;

  -ms-flex-negative: 0;
}
.cart__item-img--package {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-wrap: wrap;

  background-color: #ff0000; 

  -ms-flex-wrap: wrap;
}
.cart__item-img--package .pic {
  max-width: 50%;
  max-height: 50%;
}
@media only screen and (max-width: 768px) {
  .cart__item-img {
    margin-bottom: 20px;
  }
}
.cart__item-img .pic {
  flex-grow: 1; 
  width: 100%;
  height: 100%;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
}
.cart__item-text {
  margin-right: 20px;
}
.cart__item-name {
  margin-bottom: 10px; 

  font-weight: bold;
  font-size: 24px;
  color: #6e6e6e;
}
@media only screen and (max-width: 576px) {
  .cart__item-name {
    font-size: 20px;
  }
}
.cart__item-price {
  margin-bottom: 20px; 

  font-size: 18px;
  color: #ff0000;
}
@media only screen and (max-width: 768px) {
  .cart__item-price {
    text-align: center;
  }
}
.cart__item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 80px; 
  -webkit-box-align: center;
  -ms-flex-align: center;
  /*margin: auto;*/
}
@media only screen and (max-width: 768px) {
  .cart__item-quantity {
    margin-bottom: 20px;
  }
}
.cart__item-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding-right: 10px; 
  padding-left: 10px;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;

  margin-left: auto;

  /*max-width: 86px;*/
  text-align: center;
}
.cart__item-total label {
  font-weight: bold; 
  font-size: 24px;
  color: #6e6e6e;
}
.cart__item-total span {
  margin-top: 40px; 

  font-weight: bold;
  font-size: 18px;
  color: #ff0000;
}
@media only screen and (max-width: 768px) {
  .cart__item-total span {
    margin-top: 10px;
    margin-bottom: 20px; 

    text-align: center;
  }
}
.cart__item-delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;

  color: #ff0000;

  cursor: pointer; 

  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}
.cart__footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px; 
  margin-bottom: 25px;

  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}
@media only screen and (max-width: 768px) {
  .cart__footer-wrapper {
    -ms-flex-direction: column;
        flex-direction: column; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.cart__total {
  font-weight: bold; 
  font-size: 24px;
  color: #6e6e6e;
}
@media only screen and (max-width: 768px) {
  .cart__total {
    margin-top: 20px;
  }
}
.cart__total span {
  color: #ff0000;
}
.cart__discount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row; 

  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
}
.cart__discount .form-input {
  max-width: 100%;
  margin-right: 10px;
}
.cart__discount .button {
  max-width: 100%;
}
.cart__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: center; 

  -webkit-box-align: center;
  -webkit-box-pack: end;
  -ms-flex-align: center;
  -ms-flex-pack: end;
}
@media only screen and (max-width: 768px) {
  .cart__buttons {
    -ms-flex-direction: column;
        flex-direction: column; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.cart__buttons .button {
  margin-left: 15px;
}
@media only screen and (max-width: 768px) {
  .cart__buttons .button {
    margin-bottom: 20px;
  }
}

/*Cart End*/
/*Number Start*/
.ui-spinner-up {
  position: absolute;
  top: calc(50% - 10px);
  right: 0;

  width: 20px;
  height: 20px;

  color: #ff0000; 

  background-image: url("../images/icons/plus-circle.svg");
  background-position: center;
  background-size: cover;
}

.ui-spinner-down {
  position: absolute;
  top: calc(50% - 10px);
  left: 0;

  width: 20px;
  height: 20px;

  color: #ff0000; 

  background-image: url("../images/icons/minus-circle.svg");
  background-position: center;
  background-size: cover;
}

.ui-spinner {
  position: relative;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center; 
  width: 80px;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

.ui-spinner-input {
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;

  text-align: center; 

  border: 1px solid #ff0000;
  outline: none;
}

/*Number End*/
/*Chekout Start*/
.checkout {
  padding-top: 40px;
  padding-bottom: 40px;

  background-color: #eeeeee;
}
@media only screen and (max-width: 576px) {
  .checkout {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.checkout__title {
  margin-bottom: 30px; 

  font-size: 32px;
  color: #6e6e6e;
}
@media only screen and (max-width: 576px) {
  .checkout__title {
    margin-bottom: 20px; 

    font-size: 24px;
  }
}
.checkout__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .checkout__items {
    -ms-flex-direction: column;
        flex-direction: column; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.checkout__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  width: calc(50% - 20px);
  margin-right: 10px;
  margin-left: 10px;
  padding: 20px 15px;

  background-color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .checkout__item {
    width: calc(100% - 20px);
    max-width: 100%;
    margin-bottom: 25px;
  }
}
.checkout__item-header {
  margin-bottom: 30px; 

  font-size: 22px;
  color: #6e6e6e;
}
@media only screen and (max-width: 576px) {
  .checkout__item-header {
    margin-bottom: 20px; 

    font-size: 18px;
  }
}
.checkout__item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media only screen and (max-width: 576px) {
  .checkout__item-row {
    -ms-flex-direction: column;
        flex-direction: column; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.checkout__item-input {
  flex-grow: 1;
  flex-shrink: 0;
  width: calc(50% - 10px); 
  margin-right: 5px;
  margin-left: 5px;

  -webkit-box-flex: 1;
  -ms-flex-negative: 0;
  -ms-flex-positive: 1;
}
@media only screen and (max-width: 576px) {
  .checkout__item-input {
    width: calc(100% - 10px);
    margin-bottom: 10px;
  }
}
.checkout__item-input .input-label {
  display: inline-block; 
  margin-bottom: 7px;

  font-size: 16px;
  color: #6e6e6e;
}
.checkout__item-input .ui-selectmenu-button {
  width: 100% !important;
}
.checkout__personal {
  /*padding-left: 5px;*/
}
.checkout__personal .filter__checkbox-body {
  position: relative;
  bottom: 2px;
}
.checkout .product__btn {
  margin-left: 10px;
}
@media only screen and (max-width: 576px) {
  .checkout .product__btn {
    width: 100%;
    margin-top: 10px; 
    margin-left: 0;
  }
}

/*Chekout End*/
.iSerror {
  font-size: 12px; 
  color: red;
}

/*Blog Start*/
.blog {
  padding: 25px 35px;
}
.blog__title {
  margin-bottom: 30px; 

  font-size: 35px;
  color: #ff0000;
}
.blog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px; 

  -webkit-box-align: start;
  -ms-flex-align: start;
}
@media only screen and (max-width: 768px) {
  .blog__item {
    -ms-flex-direction: column;
        flex-direction: column; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.blog__item-img {
  flex-shrink: 0; 
  width: 325px;
  height: 325px;
  margin-right: 25px;

  background-image: url("../images/content/product/gall.jpg");
  background-position: center;
  background-size: cover;

  -ms-flex-negative: 0;
}
@media only screen and (max-width: 768px) {
  .blog__item-img {
    width: 225px;
    height: 225px;
  }
}
.blog__item-content {
  -ms-flex-direction: column;
      flex-direction: column; 
  padding-top: 10px;

  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
}
.blog__item-title {
  display: block;
  margin-bottom: 30px;

  font-size: 20px;
  color: #333333;
  text-decoration: none;

  -webkit-transition: 0.5s;
       -o-transition: 0.5s;
          transition: 0.5s;
}

.blog__item-title:hover {
  color: #ff0000;
}

@media only screen and (max-width: 768px) {
  .blog__item-title {
    font-size: 16px;
  }
}
.blog__item-desc {
  margin-bottom: 30px; 

  font-size: 12px;
  color: #333333;
}
.blog__item .product__share {
  max-width: 600px; 
  padding-top: 15px;

  border-top: 1px solid #d1d1d1;
}

/*Blog End*/
/*Contacts Start*/
.contacts {
  padding: 25px 35px;
}
.contacts__title {
  margin-bottom: 30px; 

  font-size: 35px;
  color: #ff0000;
}
@media only screen and (max-width: 576px) {
  .cart__item-quantity {
    margin-bottom: 5px;
  }
  .contacts__title {
    margin-bottom: 0;
  }

  .c-cart-box, .main__carusel .c-cart-box{
    /*width: 140px;*/
    /*height: 220px;*/
    font-size: 15px;
  }
  .slick-slide .c-cart-box, .slick-slide .main__carusel .c-cart-box{
    width: 140px;
    height: 220px;
  }

  .cart__buy {
    display: block !important;
  }
  
  .product__btn-wrapper .cart__item-quantity{
    /*margin-right: unset;*/
    margin-top: 5px;
  }

  .product__btn-wrapper{
    align-items: center;
  }

  .c-cart__title{
    height: unset;
    overflow: unset;
  }

  .c-cart__img{
    margin-bottom: 1px;
    background-size: contain;
  }
}
.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch; 

  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
}
@media only screen and (max-width: 1023px) {
  .contacts__wrapper {
    -ms-flex-direction: column;
        flex-direction: column; 

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
}
.contacts__info {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  max-width: 40%;
  padding-right: 40px;
}
@media only screen and (max-width: 1023px) {
  .contacts__info {
    max-width: initial;
    padding-right: 0;
  }
}
.contacts__info-social .footer__social-link {
  border-color: #000000;
}
.contacts__map {
  width: 100%; 
  min-width: 60%;
}
@media only screen and (max-width: 1023px) {
  .contacts__map {
    width: 100%;
  }

  .header_btn{
    display: none;
  }
}
.contacts__map #map {
  width: 100%;
  height: 500px;
}

/*Contacts End*/
.lightboxOverlay,
.lightbox {
  z-index: 10;
}

.text-danger {
  color: red;
}

.cart__buy{
  text-align: center;
  display: flex;
  justify-content: center;
}

.js-add_to_type{
  position: relative;
}
/*# sourceMappingURL=main.css.map */
