.clearfix::after{
    content: "";
    clear: both;
    display: table;
}
body{
  margin: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.setObDiv{
  width: 1280px;
  margin: 0px auto;
}

header{
  -webkit-transition: top 0.5s ease-in-out;
  -moz-transition: top 0.5s ease-in-out;
  -ms-transition: top 0.5s ease-in-out;
  -o-transition: top 0.5s ease-in-out;
  transition: top 0.5s ease-in-out;
}
.headerFixed{
  position: fixed;
  top: -100px;
  left: 0px;
  width: 100%;
  z-index: 666;
  background-color: rgb(255,255,255,1);
  -webkit-box-shadow:0 1px 5px 0 rgba(57,63,72,0.2);
  box-shadow: 0 1px 5px 0 rgba(57,63,72,0.2);
}
.headerFixed~main{
  margin-top: 100px;
}
.headerObDiv{
  width: 94%;
  margin: 0px auto;
  padding: 30px 0px;
}
.headerFixed .headerObDiv{
  padding: 20px 0px;
}
.headerLogoDiv{
  display: block;
  font-size: 0px;
  float: left;
  height: 40px;
  width: 170px;
}
.headerLogoDiv>img{
  display: block;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.headerMenuObDiv{
  float: left;
  width: calc(100% - 360px);
  text-align: center;
}
.headerMenuObDiv>ul{
  width: 100%;
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-size: 0px;
}
.headerMenuObDiv>ul>li{
  display: inline-block;
  margin-right: 20px;
}
.headerMenuObDiv>ul>li:last-child{
  margin-right: 0px;
}
.headerMenuObDiv>ul>li>a{
  display: block;
  color: #121212;
  text-decoration: none;
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
  padding: 12px 0px;
  position: relative;
}

.headerMenuObDiv>ul>li.sub>a{
  padding-right: 12px;
}
.headerMenuObDiv>ul>li.sub>a::after{
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-image: url(../images/downArrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 0px;
  top: 16px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.headerMenuObDiv>ul>li.sub>a:hover::after{
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.headerMenuObDiv>ul>li.sub:hover>ul{
  display: block;
}
.headerMenuObDiv>ul>li>a::before{
  content: "";
  display: block;
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background: #121212;
  transform-origin: right bottom;
  transform: scaleX(0);

  -webkit-transition: transform .5s ease 0s;
  -moz-transition: transform .5s ease 0s;
  -ms-transition: transform .5s ease 0s;
  -o-transition: transform .5s ease 0s;
  transition: transform .5s ease 0s;
}
.headerMenuObDiv>ul>li>a:hover::before,.headerMenuObDiv>ul>li.active>a::before{
  transform-origin: left bottom;
  transform: scaleX(1);
}

.headerMenuObDiv>ul>li>ul{
  position: absolute;
  top: 114px;
  left: 0px;
  z-index: 999;
  margin: 0px;
  padding: 50px 3% 20px 3%;
  list-style: none;
  width: 94%;
  text-align: center;
  display: none;
  background-color: #fff;

  -webkit-transition: top 600ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  -moz-transition: top 600ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  -ms-transition: top 600ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  -o-transition: top 600ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  transition: top 600ms cubic-bezier(0.17, 0.67, 0.24, 0.99);

}
.headerFixed .headerMenuObDiv>ul>li>ul{
  top: 58px;
}
.headerMenuObDiv>ul>li>ul::after {
  content: "";
  clear: both;
  display: table;
}
.headerMenuObDiv>ul>li>ul>li{
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  max-width: 150px;
  margin: 0px 20px 20px 20px;
}

.headerMenuObDiv>ul>li>ul>li>a{
  display: block;
  color: #121212;
  text-decoration: none;
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.headerMenuObDiv>ul>li>ul>li>ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
  margin-top: 10px;
}
.headerMenuObDiv>ul>li>ul>li>ul>li{
  margin-bottom: 10px;
}
.headerMenuObDiv>ul>li>ul>li>ul>li:last-child{
  margin-bottom: 0px;
}
.headerMenuObDiv>ul>li>ul>li>ul>li>a{
  text-decoration: none;
  font-size: 12px;
  line-height: 14px;
  color: #646060;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.headerMenuObDiv>ul>li>ul>li>ul>li>a:hover{
  color: #121212;
}




.headerRightObDiv{
  float: right;
  width: 190px;
}
.headerRightUlDiv{
  margin: 0px;
  padding: 0px;
  list-style: none;
  width: 100%;
}
.headerRightDiv{
  display: block;
  float: right;
  font-size: 0px;
  text-align: center;
  text-decoration: none;
  margin-right: 20px;
  position: relative;
  padding: 8px 0px;
  cursor: pointer;
}
.headerRightDiv:first-child{
  margin-right: 0px;
}
.headerRightLinkDiv{
  display: block;
  cursor: pointer;
  font-size: 0px;
  text-decoration: none;
}
.headerRightLinkDiv>img{
  height: 24px;
  float: left;
  opacity: 1;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.headerRightLinkDiv>span{
  display: block;
  float: left;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background-color: #121212;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 24px;
  margin-left: 5px;
}
.headerRightLinkDiv:hover>img{
  opacity: 0.6;
}
.headerTopObDivBody{
  background-color: #121212;
}
.headerTopObDiv{
  width: 94%;
  margin: 0px auto;
}
.headerTopLeft{
  float: left;
}
.headerLeftLng{
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.headerLeftLng>li{
  position: relative;
  padding: 14px 0px;
  cursor: pointer;
}
.headerLeftLng>li>span{
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  position: relative;
  width: 35px;
}

.headerLeftLng>li>span::before{
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-image: url(../images/downArrowLng.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 0px;
  top: 5px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}


.headerLeftLng>li>ul{
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 99;
  width: 100px;
  margin: 0px;
  padding: 0px;
  list-style: none;
  -webkit-box-shadow: 0 6px 10px #b5b9bd24;
  box-shadow: 0 6px 10px #b5b9bd24;
  padding: 13px 4px;
  background-color: #fff;
  display: none;
}

.headerLeftLng>li>ul>li{
  margin-bottom: 2px;
}
.headerLeftLng>li>ul>li:last-child{
  margin-bottom: 0px;
}
.headerLeftLng>li>ul>li>a{
  display: block;
  padding: 7px 10px;
  border-radius: 1px;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
  color: #121212;
  text-decoration: none;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.headerLeftLng>li>ul>li>a.active,.headerLeftLng>li>ul>li>a:hover{
  background-color: #f2f3f5;
}
.headerLeftLng>li:hover>ul{
  display: block;
}
.headerLeftLng>li:hover>span::before{
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.headerTopRight{
  float: right;
  padding: 14px 0px;
}
.headerTopRight>a{
  display: block;
  float: right;
  width: 16px;
  height: 16px;
  font-size: 0px;
  margin-left: 15px;
  opacity: 0.7;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.headerTopRight>a:last-child{
  margin-left: 0px;
}
.headerTopRight>a:hover{
  opacity: 1;
}
.headerTopRight>a>img{
  height: 100%;
}

.headerPopupSearchObDivBody{
  position: fixed;
  top: -150vh;
  left: 0px;
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 60px 0px;
  z-index: 999;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

}
.headerPopupSearchObDivBody.open{
  top: 0px;
}
.headerPopupSearchDiv{

}
.headerPopupSearchForm{
  position: relative;
  width: 100%;
  height: 46px;
}
.headerPopupSearchButtom{
  width: 22px;
  height: 22px;
  float: left;
  border: none;
  outline: none;
  margin: 7px 0px 0px 0px;
  padding: 0px 0px;
  background-color: transparent;
  background-image: url(../images/headerSearch.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  z-index: 999;
  cursor: pointer;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.headerPopupSearchButtom:hover{
  opacity: 0.6;
}
.headerPopupSearchInput{
  width: 100%;
  height: 46px;
  float: left;
  outline: none;
  margin: 0px;
  padding: 0px 36px 6px 46px;
  background-color: transparent;
  position: absolute;
  top: 0px;
  left: 0px;
  box-sizing: border-box;
  border: none;
  font-size: 18px;
  color: #121212;
  border-bottom: solid 2px #bec0c4;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.headerPopupSearchInput:focus{
  border-bottom-color: #121212;
}
.headerPopupSearchInput::-webkit-input-placeholder { color: #121212; }
.headerPopupSearchInput::-moz-placeholder { color: #121212; }
.headerPopupSearchInput:-ms-input-placeholder { color: #121212; }
.headerPopupSearchInput:-moz-placeholder { color: #121212; }

.headerPopupSearchInput::-webkit-search-cancel-button{
  position: relative;
  right: -32px;
  -webkit-appearance: none;
  z-index: 999;
  cursor: pointer;
  width: 26px;
  height: 26px;
}
.headerPopupSearchClear{
  position: absolute;
  display: block;
  right: 8px;
  top: 8px;
  z-index: 888;
  opacity: 0.2;
  height: 20px;
  width: 20px;
  background-image: url(../images/close.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}

.headerPopupSearchInput:hover + .headerPopupSearchClear{
  opacity: 1;
}
.headerPopupSearchDiv>h6{
  font-size: 14px;
  line-height: 18px;
  color: #121212;
  font-weight: normal;
  margin: 0px 0px 30px 0px;
}
.headerPopupSearchClose{
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 888;
  opacity: 0.6;
  height: 20px;
  width: 20px;
  background-image: url(../images/close.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.headerPopupSearchClose:hover{
  opacity: 1;
}

.headerCartObDivBody{
  padding: 40px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  right: 0px;
  z-index: 999;
  -webkit-box-shadow: 0 6px 10px #b5b9bd24;
  box-shadow: 0 6px 10px #b5b9bd24;
  min-width: 424px;
  max-height: 700px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  display: none;
}
.headerRightDiv:hover>.headerCartObDivBody{
  display: block;
}

.headerCartObDivBody::-webkit-scrollbar,
.checkoutRightProductsList::-webkit-scrollbar,
.popupBasketRightDiv::-webkit-scrollbar{
  width: 4px;
}
.headerCartObDivBody::-webkit-scrollbar-track,
.checkoutRightProductsList::-webkit-scrollbar-track,
.popupBasketRightDiv::-webkit-scrollbar-track{
    background: rgba(0, 0, 0, 0);
    border-radius: 40px;
    border-bottom: 2px solid transparent;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
}
.headerCartObDivBody::-webkit-scrollbar-thumb,
.checkoutRightProductsList::-webkit-scrollbar-thumb,
.popupBasketRightDiv::-webkit-scrollbar-thumb{
    border-radius: 40px;
    background: rgba(0, 0, 0, 1);
}

.headerCartProductsObDiv{
  
}
.headerCartProductsDiv{
  position: relative;
  padding: 20px 0px;
  border-bottom: 1px solid #e1e2e4;
}
.headerCartProductsImages{
  display: block;
  width: 80px;
  height: 94px;
  float: left;
  margin-right: 20px;
}
.headerCartProductsImages>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headerCartProductsSred{
  width: calc(100% - 130px);
  float: left;  
}
.headerCartProductsName{
  margin: 0px;

}
.headerCartProductsName>a{
  display: block;
  font-size: 14px;
  color: #121212;
  line-height: 18px;
  text-decoration: none;
  text-align: left;
  font-weight: 500;
  height: 36px;
  overflow: hidden;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.headerCartProductsName>a:hover{
  color: #797b7e;
}
.headerCartProductsCountPriceDiv{

}
.headerCartProductsCount{
  font-size: 14px;
  color: #121212;
  line-height: 14px;
  margin: 0px;
  float: left;
}
.headerCartProductsCountPriceDiv>span{
  font-size: 14px;
  color: #797b7e;
  line-height: 14px;
  margin: 0px 5px;
  float: left;
}
.headerCartProductsPrice{
  font-size: 14px;
  color: #121212;
  line-height: 14px;
  margin: 0px;
  float: left;
}
.headerCartProductsSize{
  font-size: 14px;
  color: #121212;
  line-height: 18px;
  margin: 12px 0px;
  text-align: left;
  height: 18px;
  overflow: hidden;
}
.headerProductsDisebledUnderline{
  color: #797b7e;
  text-decoration: line-through;
  margin-right: 3px;
}
.headerCartProductsDelete{
  position: absolute;
  top: 20px;
  right: 0px;
  width: 20px;
  height: 20px;
  background-image: url(../images/trash.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.headerCartProductsDelete:hover{
  opacity: 0.6;
}
.headerCartTottalDiv{
  margin: 30px 0px;
}
.headerCartTottalText{
  font-size: 16px;
  line-height: 16px;
  color: #121212;
  float: left;
  text-transform: uppercase;
}
.headerCartTottalPrice{
  font-size: 16px;
  line-height: 16px;
  color: #121212;
  float: right;
}
.headerCartButtonView{
  display: block;
  width: 100%;
  height: 46px;
  font-size: 14px;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
  background-color: #121212;
  color: #fff;
  text-decoration: none;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  
}
.headerCartButtonView:hover{
  background-color: #505152;
}
.headerCartButtonCheckout{
  display: block;
  width: 100%;
  height: 46px;
  font-size: 14px;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
  background-color: #f2f3f5;
  color: #121212;
  text-decoration: none;
  margin-top: 15px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.headerCartButtonCheckout:hover{
  background-color: #121212;
  color: #fff;
}
.homeTopSliderObDivBody{

}
.homeTopSliderDiv{
  font-size: 0px;
  height: 800px;
}
.homeTopSliderImages{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0px;
  left: 0px;
}
.homeTopSliderTextObDiv{
  position: relative;
  height: 100%;
}
.homeTopSliderTextDiv{
  width: 450px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0px;
  left: 0px;
}
.homeTopSliderTextDiv>h2{
  color: #121212;
  font-size: 50px;
  line-height: 60px;
  margin: 0px;
}
.homeTopSliderTextDiv>p{
  color: #797b7e;
  font-size: 16px;
  line-height: 26px;
  margin: 35px 0px;
}
.homeTopSliderTextDiv>a{
  display: block;
  width: 200px;
  height: 46px;
  font-size: 14px;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
  background-color: #121212;
  color: #fff;
  text-decoration: none;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.homeTopSliderTextDiv>a:hover{
  background-color: #505152;
}
.homeTopSliderPagination .swiper-pagination-bullet,
.coruselPaginationStyle .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  opacity: 1;
  outline: none;
  background-color: #c8c8c8;
  margin: 0 9px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.homeTopSliderPagination .swiper-pagination-bullet.swiper-pagination-bullet-active,.homeTopSliderPagination .swiper-pagination-bullet:hover,
.coruselPaginationStyle .swiper-pagination-bullet.swiper-pagination-bullet-active,.coruselPaginationStyle .swiper-pagination-bullet:hover{
    opacity: 1;
    background-color: #121212;
    -webkit-box-shadow: 0 0 0 2px #121212;
    box-shadow: 0 0 0 2px #121212;
}
.bestSellersObDivBody{
  padding: 80px 0px;
}
.bestSellersObDiv{

}

.blokNameH2{
  font-size: 30px;
  line-height: 38px;
  color: #121212;
  font-weight: bold;
  margin: 0px 0px 10px 0px;
}
.blokTextP{
  font-size: 14px;
  line-height: 24px;
  color: #797b7e;
  font-weight: 500;
  margin: 0px;
}
.homeNameSliderDiv{
  text-align: center;
  position: relative;
}
.homeNameSliderDiv::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #dee2e6;
  position: absolute;
  top: 19px;
  left: 0;
  z-index: -1;
}
.homeNameSliderDiv>.blokNameH2{
  text-align: center;
  display: inline-block;
  background-color: #fff;
  padding: 0px 20px;
}
.bestSellersObDiv>p{
  text-align: center;
}
.bestSellersList{
  padding-top: 36px;
}
.productsListDiv{
  width: 300px;
  position: relative;
}
.productsListImagesDiv{
  display: block;
  width: 100%;
  height: 350px;
  font-size: 0px;
  overflow: hidden;
}
.productsListImagesDiv>img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.productsListDiv:hover .productsListImagesDiv>img{
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.productsListName{
  margin: 25px 0px 15px 0px;
}
.productsListName>a{
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #121212;
  text-decoration: none;
  text-align: center;
  height: 16px;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.productsListPrice{
  font-size: 16px;
  line-height: 20px;
  color: #121212;
  font-weight: 500;
  text-align: center;
  height: 20px;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.productsListPriceDisebled{
  color: #ea3253;
}
.productsListPriceDisebled>span{
  color: #797b7e;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 3px;
}
.productsListBasketViewDiv{
  width: 110px;
  position: absolute;
  bottom: 95px;
  left: calc(50% - 55px);
  opacity: 0;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.productsListDiv:hover .productsListBasketViewDiv{
  opacity: 1;
}
.productsListBasket,.productsListView{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  float: left;
  background-color: #121212;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.productsListBasket{
  margin-right: 10px;
  background-image: url(../images/productsListBasket.png);
}
.productsListView{
  background-image: url(../images/productsListView.png);
}
.productsListBasket:hover,.productsListView:hover{
  background-color: #505152;
}
.productsListFavorite{
  width: 24px;
  height: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 1;
  background-image: url(../images/headerFavorite.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.productsListFavorite:hover{
  opacity: 0.6;
}
.productsListFavorite.active{
  background-image: url(../images/favoriteActive.png);
}
.productsListBadgeDiv{
  position: absolute;
  top: 0px;
  left: 0px;
  max-width: calc(100% - 60px);
}
.productsListBadgeDiv>span{
  display: block;
  padding: 3px 5px;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 7px;
  -webkit-box-shadow: 0 0 3px 3px rgba(192,199,203,0.14);
  box-shadow: 0 0 3px 3px rgba(192,199,203,0.14);
}
.productsListBadgeDiv>span:last-child{
  margin-bottom: 0px;
}
.productsListBadgeDiv>span.salePrice{
  background-color: #ea3253;
}
.productsListBadgeDiv>span.new{
  background-color: #121212;
}
.productsListBadgeDiv>span.sale{
  background-color: #ea3253;
}
.bestSellersList .swiper-container{
  padding-bottom: 72px;
}

.coruselNextStyle,.coruselPrevStyle{
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  background-size: 26px;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 3px 3px rgba(192,199,203,0.14);
  box-shadow: 0 0 3px 3px rgba(192,199,203,0.14);
  top: calc(50% - 68px);
  pointer-events: initial !important;
  cursor: pointer !important;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.coruselNextStyle{
  background-image: url(../images/arrowRight.png);
  background-position: 4px center;
}
.coruselPrevStyle{
  background-image: url(../images/arrowLeft.png);
  background-position: 2px center;
}
.coruselNextStyle:hover,.coruselPrevStyle:hover{
  opacity: 0.8;
}
.brandHomeObDivBody{
  padding: 80px 0px;
}
.brandHomeObDiv{

}

.brandHomeObDiv>p{
  text-align: center;
}
.brandHomeList{
  padding-top: 36px;
  position: relative;
}
.brandHomeList .swiper-container {
  padding-bottom: 72px;
  width: calc(100% - 70px);
  margin: 0px auto;
}
.brandHomeList .coruselNextStyle,.brandHomeList .coruselPrevStyle{
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  top: 120px;
}
.brandHomeList .coruselNextStyle{
  right: 0px;
}
.brandHomeList .coruselPrevStyle{
  left: 0px;
}
.brandHomeDiv{
  display: block;
  width: 160px;
  margin: 0px auto;
  text-decoration: none;
}
.brandHomeImagesDiv{
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #dee2e6;
  box-sizing: border-box;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.brandHomeImagesDiv>img{
  width: 96%;
  height: 96%;
  object-fit: cover;
  margin: 2%;

  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}

.brandHomeName{
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #797b7e;
  margin: 15px 0px 0px 0px;
  text-align: center;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.brandHomeDiv:hover .brandHomeImagesDiv{
  border-color: #121212;
}
.brandHomeDiv:hover .brandHomeName{
  color: #121212;
}
.brandHomeDiv:hover .brandHomeImagesDiv>img{
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.homeBgFixedObDivBody{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.homeBgFixedObDiv{
  padding: 250px 0px;
}
.homeBgFixedObDiv>h2{
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin: 0px 0px 20px 0px;
}
.homeBgFixedObDiv>p{
  text-align: center;
  color: #fff;
}
.homeCategoryObDivBody{
  padding: 80px 0px;
}
.homeCategoryObDiv{

}
.homeCategoryLeft{
  width: 400px;
  float: right;
  height: 450px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.homeCategoryLeft>h2{
 
}
.homeCategoryLeft>p{
  
}
.homeCategoryRight{
  width: calc(100% - 500px);
  float: left;
}
.homeCategoryDiv{
  display: block;
  width: 370px;
  height: 450px;
  position: relative;
  text-align: center;
}
.homeCategoryImages{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
}
.homeCategoryName{
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0px;
  z-index: 10;
  text-align: center;
}
.homeCategoryName>h3{
  display: inline-block;
  min-width: 130px;
  max-width: calc(96% - 30px);
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  color: #121212;
  font-weight: 500;
  padding: 10px 15px;
}
.homeCategoryRight .coruselNextStyle, .homeCategoryRight .coruselPrevStyle{
  top: 50%;
}
footer{

}
.footerSubscribeObDivBody{
  border-top: 1px solid #f2f3f5;
  border-bottom: 1px solid #f2f3f5;
  padding: 40px 0px;
}
.footerSubscribeObDiv{

}
.footerSubscribeLeft{
  float: left;
  width: 600px;
}
.footerSubscribeLeft>h2{
  text-transform: uppercase;
}
.footerSubscribeLeft>p{

}
.footerSubscribeRight{
  float: right;
  width: 500px;
  padding: 11px 0px;
}
.footerSubscribeInput{
  width: 340px;
  height: 50px;
  padding: 12px 16px;
  box-sizing: border-box;
  margin: 0px;
  border: solid 1px #cccccc;
  background-color: transparent;
  border-radius: 6px;
  font-size: 16px;
  color: #121212;
  font-weight: 500;
  outline: none;
  float: left;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.footerSubscribeInput.error{
  border-color: #ea3253;
}
.footerSubscribeInput:focus{
  border-color: #121212;
}
.homeContactFormInput::-webkit-input-placeholder { color: #797b7e; }
.homeContactFormInput::-moz-placeholder { color: #797b7e; }
.homeContactFormInput:-ms-input-placeholder { color: #797b7e; }
.homeContactFormInput:-moz-placeholder { color: #797b7e; }

.footerSubscribeButton{
  width: 140px;
  height: 50px;
  padding: 12px 16px;
  box-sizing: border-box;
  margin: 0px;
  border: none;
  background-color: #121212;
  border-radius: 6px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  outline: none;
  float: right;
  cursor: pointer;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.footerSubscribeButton:hover{
  background-color: #505152;
}
.footerObDivBody{
  padding: 80px 0px;
}
.footerObDiv{

}
.footerLeft{
  width: 400px;
  float: left;
}
.footerLogoDiv{
  width: 210px;
  display: block;
  font-size: 0px;
  margin-bottom: 20px;
}
.footerLogoDiv>img{
  width: 100%;
}
.footerLeftText{
  color: #121212;
  margin: 0px 0px 20px 0px;
  font-weight: 500;
}
.footerLeftEmailPhoneDiv{
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}
.footerLeftEmailPhoneDiv:last-child{
  margin-bottom: 0px;
}
.footerLeftEmailPhoneDiv>img{
  height: 24px;
  float: left;
  margin-right: 10px;
}
.footerLeftEmailPhoneDiv>span{
  display: block;
  float: left;
  width: calc(100% - 34px);
}
.footerRight{
  width: calc(100% - 420px);
  float: right;
}
.footerRight>ul{
  padding: 0px;
  list-style: none;
  margin: 0px;
}
.footerRight>ul>li{
  float: left;
  width: 33.33%;
  padding: 0px 15px;
  box-sizing: border-box;
}
.footerRight>ul>li>a{
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  text-decoration: none;
  color: #121212;
  text-transform: uppercase;
}
.footerRight>ul>li>ul{
  padding: 0px;
  margin: 24px 0px 0px 0px;
  list-style: none;
}
.footerRight>ul>li>ul>li{
  margin-bottom: 10px;
}
.footerRight>ul>li>ul>li:last-child{
  margin-bottom: 0px;
}
.footerRight>ul>li>ul>li>a{
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  color: #797b7e;
  font-weight: 500;
  position: relative;
}

.footerRight>ul>li>ul>li>a::before{
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: #121212;
  transform-origin: right bottom;
  transform: scaleX(0);

  -webkit-transition: transform .5s ease 0s;
  -moz-transition: transform .5s ease 0s;
  -ms-transition: transform .5s ease 0s;
  -o-transition: transform .5s ease 0s;
  transition: transform .5s ease 0s;
}
.footerRight>ul>li>ul>li>a:hover::before,.footerRight>ul>li>ul>li.active>a::before{
  transform-origin: left bottom;
  transform: scaleX(1);
}


.footerBottomObDivBody{
  
}
.footerBottomObDiv{
  padding: 15px 0px;
  border-top: 1px solid #f2f3f5;
}
.footerCopy{
  width: calc(100% - 300px);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #797b7e;
  margin: 0px;
  float: left;
}
.footerBottomRight{
  float: right;
}
.footerBottomRight>a{
  display: block;
  float: right;
  width: 20px;
  height: 20px;
  margin-left: 15px;
  opacity: 0.7;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footerBottomRight>a:last-child {
  margin-left: 0px;
}
.footerBottomRight>a:hover{
  opacity: 1;
}
.footerBottomRight>a>img{
  width: 100%;
}
.scrollTop{
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #121212;
  position: fixed;
  right: 20px;
  bottom: -200px;
  z-index: 888;
  cursor: pointer;
  font-size: 0px;
  background-image: url(../images/arrowheadUp.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.scrollTop:hover{
  background-color: #505152;
}
.burgerMenuMobile{
  display: none;
  float: left;
  width: 26px;
  height: 26px;
  margin: 7px 15px 7px 0px;
}
.burgerMenuMobile>img{
  width: 100%;
}
.menuMobileObDivBody{
  display: none;
  width: 320px;
  max-width: 100%;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: -150%;
  z-index: 999;
  background-color: #fff;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.menuMobileObDivBody.open{
  left: 0px;
}
.menuMobileObDivPosition{
  position: relative;
  width: calc(100% - 40px);
  height: calc(100% - 110px);
  padding: 80px 20px 30px 20px;
  margin: 0px auto;
}
.menuMobileObDiv{
  /* overflow-y: scroll;
  -webkit-overflow-scrolling: touch !important;
  height: calc(100% - 204px); */
}
.menuMobileObDiv>ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch !important;
  max-height: calc(100vh - 220px);
  padding-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 20px;
  /* background-color: #505152; */
}
.menuMobileObDiv>ul>li{
  margin-bottom: 5px;
}
.menuMobileObDiv>ul>li>a{
  display: inline-block;
  color: #121212;
  text-decoration: none;
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  max-width: calc(100% - 40px);
  padding: 5px 0px;
}
.menuMobileObDiv>ul>li>ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
  position: absolute;
  top: 80px;
  left: -200%;
  z-index: 99;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #fff;
  padding: 0px 20px 20px 20px;
  box-sizing: border-box;

  overflow-y: scroll;
  -webkit-overflow-scrolling: touch !important;
  /* height: calc(100% - 204px); */
  /* background-color: red; */

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.menuMobileObDiv>ul>li>ul.open{
  left: 0px;
}
.menuMobileObDiv>ul>li>ul>li{
  margin-bottom: 5px;
}
.menuMobileObDiv>ul>li>ul>li a{
  display: inline-block;
  color: #121212;
  text-decoration: none;
  font-size: 15px;
  line-height: 20px;
  max-width: calc(100% - 40px);
  padding: 5px 0px;
}
.menuMobileObDiv>ul>li>ul>li>ul{
  margin: 0px;
  padding: 0px;
  list-style: none;
  position: absolute;
  top: 0px;
  left: -200%;
  z-index: 99;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #fff;
  padding: 0px 20px 20px 20px;
  box-sizing: border-box;

  overflow-y: scroll;
  -webkit-overflow-scrolling: touch !important;
  /* height: calc(100% - 204px); */
  /* background-color: rgb(30, 230, 136); */

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menuMobileObDiv>ul>li>ul>li>ul.open{
  left: 0px;
}
.menuMobileObDiv>ul>li>ul>li>ul>li{
  margin-bottom: 5px;
}
.menuMobileObDiv>ul>li>ul>li>ul>li>a{

}
.mobileMenuArrow{
  display: none;
  background-image: url(../images/arrowRight.png);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  width: 30px;
  height: 30px;
  float: right;
}
.mobileLngCheck{
  display: inline-block;
  background-image: url(../images/lngCheckMark.png);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  width: 30px;
  height: 30px;
  float: right;
}
.menuMobileClose{
  width: 20px;
  height: 20px;
  padding: 5px 5px;
  position: absolute;
  top: 15px;
  right: 15px
}
.menuMobileClose>img{
  width: 20px;
}
.menuMobileBack{
  display: none;
  position: absolute;
  top: 20px;
  left: 15px;
}
.menuMobileBack>img{
  height: 20px;
  float: left;
}
.menuMobileBack>span{
  display: block;
  color: #121212;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  float: left;
}

.mobileLoginObDiv{

}
.mobileLoginDiv{
  float: left;
  width: 50%;
}
.mobileLoginDiv>img{
  height: 24px;
  float: left;
  margin-right: 10px;
}
.mobileLoginDiv>span{
  color: #121212;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  float: left;
}
.mobileMenuSocial{
  width: calc(100% - 40px);
  position: absolute;
  bottom: 30px;
  left: 20px;
  font-size: 0px;
  text-align: center;
}
.mobileMenuSocial>a{
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 2px;
  margin-right: 12px;
  opacity: 0.7;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.mobileMenuSocial>a:last-child {
  margin-right: 0px;
}
.mobileMenuSocial>a:hover{
  opacity: 1;
}
.mobileMenuSocial>a>img{
  width: 100%;
}
.menuBg{
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 888;
  background-color: rgba(0,0,0,.6);
}

.baskedMobileClose,.filterMobileClose{
  display: none;
  width: 20px;
  height: 20px;
  padding: 5px 5px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 9999;
}
.baskedMobileClose>img,.filterMobileClose>img{
  width: 20px;
}
.headerCartNameMobile{
  display: none;
  text-align: left;
  font-weight: 500;
}

.productsListObDivBody{
  padding-top: 20px;
}
.productsListObDiv{

}

.productsListRightObDiv{
  width: calc(100% - 320px);
  float: right;
}
.productsListRight{

}
.productsListShortText,.productsListBasketFavoriteDiv{
  display: none;
}
.productsListRight .productsListDiv{
  float: left;
  margin-right: 30px;
  margin-bottom: 50px;
}
.productsListRight .productsListDiv:nth-child(3n+3){
  margin-right: 0px;
}
.productsListTopBlok{
  margin-bottom: 40px;
}
.productsListButtonObDiv{
  float: right;
  margin-top: 6px;
}
.productsListButton{
  display: block;
  width: 20px;
  height: 20px;
  font-size: 0px;
  float: right;
  margin-left: 15px;
  cursor: pointer;
  opacity: 0.5;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.productsListButton:last-child{
  margin-left: 0px;
}
.productsListButton:hover,.productsListButton.active{
  opacity: 1;
}
.productsListButton>img{
  height: 100%;
}

.productsListFilterObDiv{
  width: 270px;
  float: left;
}
.productsListFilterDiv{
  border-bottom: 1px solid #dee2e6;
  height: 52px;
  overflow: hidden;
}
.productsListFilterName{
  cursor: pointer;
  padding: 16px 0px;
}
.productsListFilterName>span,.filterSelectSortName{
  display: block;
  color: #121212;
  text-decoration: none;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  margin: 0px;
  max-width: calc(100% - 24px);
  float: left;
}
.filterSelectSortName{
  float: none;
  max-width: 100%;
  margin-bottom: 16px;
}
.productsListFilterName:hover>span{
  text-decoration: underline;
}
.productsListFilterName::before{
  content: "";
  background-image: url(../images/arrowRight.png);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  width: 20px;
  height: 20px;
  float: right;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.productsListFilterDiv.open{
  height: auto;
}
.productsListFilterDiv.open .productsListFilterName::before{
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.productsListFilter{
  padding-bottom: 15px;
}
.productsListFilterLabel{
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 5px;
  padding: 2px 0px;
}
.productsListFilterLabel>h4{
  display: block;
  color: #646060;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin: 0px;
  max-width: calc(100% - 24px);
  float: left;

}

.productsListFilterLabel>input{
  position: absolute;
  top: 0px;
  right: 0px;
  opacity: 0;
  cursor: pointer;
  margin: 0px;
  padding: 0px;
}
.filterCheckboxDiv{
  width: 16px;
  height: 16px;
  border: 1px solid #646060;
  float: right;
  margin-top: 1px;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.productsListFilterLabel>input:checked+.filterCheckboxDiv{
  background-color: #121212;
  border-color: #121212;
  background-image: url(../images/check.png);

}
.productsListFilterLabel>input:checked+.filterCheckboxDiv+h4,.productsListFilterLabel:hover>h4{
  text-decoration: underline;
  color: #121212;
}

.productsListFilterLabel:hover>.filterCheckboxDiv{
 border-color: #121212;
}
.filterSelectSort{
  width: 100%;
  height: 40px;
  padding: 10px 10px;
  box-sizing: border-box;
  border: 1px solid #dee2e6;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #121212;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/downArrow.png);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: calc(100% - 10px) 15px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.filterSelectSort:focus,.filterSelectSort:hover{
  border-color: #121212;
}
.productsListFilterSelectDiv{
  margin-bottom: 16px;
}

.filterPriceSliderObDiv .ui-widget.ui-widget-content{
  width: calc(100% - 22px) !important;
  margin: 0px auto !important;
  height: 6px !important;
  border: none !important;
  background-color: #121212 !important;
  border-radius: 1px !important;
}
.filterPriceSliderObDiv .ui-state-default{
  width: 16px !important;
  height: 16px !important;
  background-color: #fff !important;
  border: 1px solid #121212 !important;
  border-radius: 2px !important;
  top: -6px !important;
  outline: none !important;
  cursor: pointer !important;
}
.filterPriceSliderObDiv .ui-widget-header{
  background-color: #121212;
}
.filterPriceSliderObDiv{
  margin-top: 10px;
}
.filterPriceInputDiv{
  margin-top: 22px;
  margin-bottom: 5px;
}
.filterPriceInputDiv>input{
  width: calc(50% - 20px);
  height: 32px;
  float: left;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #dee2e6;
  outline: none;
}
.filterPriceInputDiv>input:focus,.filterPriceInputDiv>input:hover{
  border-color: #121212;
}
.filterPriceInputDiv>span{
  display: block;
  width: 10px;
  height: 2px;
  color: #121212;
  line-height: 32px;
  text-align: center;
  float: left;
  background-color: #121212;
  margin: 15px 15px;
}
.buttonFilterOpen{
  display: inline-block;
  float: left;
  padding: 7px 10px;
  border: 1px solid #dee2e6;
  display: none;
}
.buttonFilterOpen>img{
  height: 16px;
  float: left;
  margin-right: 7px;
}
.buttonFilterOpen>span{
  display: block;
  float: left;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #121212;
}
.filterResultObDiv{

}
.filterResultDiv{
  margin-bottom: 14px;
}
.filterResult{
  background-color: #f2f3f5;
  padding: 7px;
  display: inline-block;
  float: left;
  margin-right: 7px;
  margin-bottom: 7px;
  cursor: pointer;
}
.filterResultName{
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  color: #646060;
  float: left;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.filterClear{
  width: 12px;
  height: 12px;
  display: block;
  float: left;
  background-image: url(../images/close.png);
  background-size: 7px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 7px;
}
.filterResult:hover .filterResultName{
  color: #121212;
}
.filterClearAll{
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #121212;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.filterClearAll:hover{
  text-decoration: underline;
}
#productsListFilterResultObDiv{
  display: none;
}


.productsObDivBody{
  padding: 40px 0px;
}
.productsObDiv{

}
.productsLeftDiv{
  width: 570px;
  float: left;
}


/* zomm Gallery */

.cfg-btn {
  background-color: rgb(55, 181, 114);
  color: #fff;
  border: 0;
  box-shadow: 0 0 1px 0px rgba(0,0,0,0.3);
  outline:0;
  cursor: pointer;
  width: 200px;
  padding: 10px;
  font-size: 1em;
  position: relative;
  display: inline-block;
  margin: 10px auto;
}
.cfg-btn:hover:not([disabled]) {
  background-color: rgb(37, 215, 120);
}
.mobile-magic .cfg-btn:hover:not([disabled]) { background: rgb(55, 181, 114); }
.cfg-btn[disabled] { opacity: .5; color: #808080; background: #ddd; }

.cfg-btn.btn-preview,
.cfg-btn.btn-preview:active,
.cfg-btn.btn-preview:focus {
  font-size: 1em;
  position: relative;
  display: block;
  margin: 10px auto;
}

.cfg-btn,
.preview,
.app-figure,
.api-controls,
.wizard-settings,
.wizard-settings .inner,
.wizard-settings .footer,
.wizard-settings input,
.wizard-settings select {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.preview,
.wizard-settings {
  padding: 10px;
  border: 0;
  min-height: 1px;
}
.preview {
  position: relative;
}

.api-controls {
  text-align: center;
}
.api-controls button,
.api-controls button:active,
.api-controls button:focus {
   width: 80px; font-size: .7em;
   white-space: nowrap;
}

.app-figure {
  width: 100% !important;
  margin: 0px auto;
  padding: 0px;
  position: relative;
  text-align: center;
}
.selectors { 
  margin-top: 10px;
  font-size: 0px;
 }
 .selectors .mz-thumb{
  width: 110px;
  height: 130px;
  margin-right: 5px;
  margin-bottom: 5px;
  border: 1px solid transparent;
  box-sizing: border-box;
 }
 .selectors .mz-thumb:nth-child(5n+5){
   margin-right: 0px;
 }
 .mz-thumb.mz-thumb-selected{
  border-color: #121212 !important;
}
.selectors .mz-thumb img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0px;
  border: 0 !important;
 }


.app-code-sample {
  max-width: 80%;
  margin: 30px auto 0;
  text-align: center;
  position: relative;
}
.app-code-sample input[type="radio"] {
  display: none;
}
.app-code-sample label {
  display: inline-block;
  padding: 2px 12px;
  margin: 0;
  font-size: .8em;
  text-decoration: none;
  cursor: pointer;
  color: #666;
  border: 1px solid rgba(136, 136, 136, 0.5);
  background-color: transparent;
}
.app-code-sample label:hover {
  color: #fff;
  background-color: rgb(253, 154, 30);
  border-color: rgb(253, 154, 30);
}
.app-code-sample input[type="radio"]:checked+label {
  color: #fff;
  background-color: rgb(110, 110, 110) !important;
  border-color: rgba(110, 110, 110, 0.7) !important;
}
.app-code-sample label:first-of-type {
  border-radius: 4px 0 0 4px;
  border-right-color: transparent;
}
.app-code-sample label:last-of-type {
  border-radius: 0 4px 4px 0;
  border-left-color: transparent;
}

.app-code-sample .app-code-holder {
  padding: 0;
  position: relative;
  border: 1px solid #eee;
  border-radius: 0px;
  background-color: #fafafa;
  margin: 15px 0;
}
.app-code-sample .app-code-holder > div {
  display: none;
}
.app-code-sample .app-code-holder pre {
  text-align: left;
  white-space: pre-line;
  border: 0px solid #eee;
  border-radius: 0px;
  background-color: transparent;
  padding: 25px 50px 25px 25px;
  margin: 0;
  min-height: 25px;
}
.app-code-sample input[type="radio"]:nth-of-type(1):checked ~ .app-code-holder > div:nth-of-type(1) {
  display: block;
}
.app-code-sample input[type="radio"]:nth-of-type(2):checked ~ .app-code-holder > div:nth-of-type(2) {
  display: block;
}

.app-code-sample .app-code-holder .cfg-btn-copy {
  display: none;
  z-index: -1;
  position: absolute;
  top:10px; right: 10px;
  width: 44px;
  font-size: .65em;
  white-space: nowrap;
  margin: 0;
  padding: 4px;
}
.copy-msg {
  font: normal 11px/1.2em 'Helvetica Neue', Helvetica, 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Arial, sans-serif;
  color: #2a4d14;
  border: 1px solid #2a4d14;
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  width: 200px;
  max-width: 70%;
  padding: 4px;
  margin: 0px auto;
  text-align: center;
}
.copy-msg-failed {
  color: #b80c09;
  border-color: #b80c09;
  width: 430px;
}
.mobile-magic .app-code-sample .cfg-btn-copy { display: none; }
#code-to-copy { position: absolute; width: 0; height: 0; top: -10000px; }
.lt-ie9-magic .app-code-sample { display: none; }

.wizard-settings {
  background-color: #4f4f4f;
  color: #a5a5a5;
  position: absolute;
  right: 0;
  width: 340px;
}
.wizard-settings .inner {
  width: 100%;
  margin-bottom: 30px;
}
.wizard-settings .footer {
  color: #c7d59f;
  font-size: .75em;
  width: 100%;
  position: relative;
  vertical-align: bottom;
  text-align: center;
  padding: 6px;
  margin-top: 10px;
}
.wizard-settings .footer a { color: inherit; text-decoration: none; }
.wizard-settings .footer a:hover { text-decoration: underline; }

.wizard-settings a { color: #cc9933; }
.wizard-settings a:hover { color: #dfb363; }
.wizard-settings table > tbody > tr > td { vertical-align: top; }
.wizard-settings table { min-width: 300px; max-width: 100%; font-size: .8em; margin: 0 auto; }
.wizard-settings table caption { font-size: 1.5em; padding: 16px 8px; }
.wizard-settings table td { padding: 4px 8px; }
.wizard-settings table td:first-child { white-space: nowrap; }
.wizard-settings table td:nth-child(2) { text-align: left; }
.wizard-settings table td .values {
  color: #a08794;
  font-size: 0.8em;
  line-height: 1.3em;
  display: block;
  max-width: 126px;
}
.wizard-settings table td .values:before { content: ''; display: block; }

.wizard-settings input,
.wizard-settings select {
  width: 126px;
}
.wizard-settings input {
  padding: 0px 4px;
}
.wizard-settings input[disabled] {
  color: #808080;
  background: #a7a7a7;
  border: 1px solid #a7a7a7;
}

.preview { width: 70%; float: left; }

.MagicZoom{
  width: 100%;
}
figure.mz-figure{
  width: 100%;
}
body main section div div div#zoom-fig a#Zoom-1:not(.mz-no-rt-width-css) > .mz-figure:not(.mz-no-rt-width-css) > img{
  max-width: initial !important;
  max-height: initial !important;
}


@media (min-width: 0px) {
  .preview { width: 100%; float: none; }
}

@media (min-width: 1024px) {
  .preview { width: calc(100% - 340px); }
  .wizard-settings { top: 0; min-height: 100%; }
  .wizard-settings .inner { margin-top: 60px; }
  .wizard-settings .footer { position: absolute; bottom: 0; left: 0; }
  .wizard-settings .settings-controls {
      position: fixed;
      top: 0; right: 0;
      width: 340px;
      padding: 10px 0 0;
      text-align: center;
      background-color: inherit;
  }
}
@media screen and (max-width: 1024px) {
  .api-controls button, .api-controls button:active, .api-controls button:focus {
      width: 70px;
  }
}
@media screen and (max-width: 1023px) {
  .app-code-sample { display: none; }
  .wizard-settings { width: 100%; }
}

@media screen and (max-width: 560px) {
  .api-controls .sep { content: ''; display: table; }
}
@media screen and (min-width: 1600px) {
  .preview { padding: 10px 160px; }
}

/* zomm Gallery End */

.productsRightDiv{
  width: 620px;
  float: right;
}
.productsBadgeDiv.productsBadgeDiv{
  position: initial;
  font-size: 0px;
  margin-bottom: 16px;
}
.productsBadgeDiv{
  max-width: initial;
}
.productsBadgeDiv>span{
  display: inline-block;
  margin-right: 7px;
}
.productsBadgeDiv>span:last-child{
  margin-right: 0px;
}
.productsRightDiv>h1{
  font-weight: 500;
  margin-bottom: 30px;
}
.productsPrice{
  text-align: left;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 26px;
  height: 26px;
}
.productsRightDiv>.blokTextP{
  padding-bottom: 30px;
  border-bottom: 1px solid #dee2e6;
}
.productsColorObDiv{
  margin-top: 30px;
}
.productsColorObDiv>p{

}
.productsColorDiv{
  margin-top: 10px;
}
.productsColor{
  display: block;
  width: 50px;
  height: 60px;
  font-size: 0px;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid #dee2e6;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.productsColor.active,.productsColor:hover{
  border-color: #121212;
}
.productsColor>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #fff;
  box-sizing: border-box;
}
.productsSizeObDiv{
  margin-top: 20px;
}
.productsSizeObDiv>p{
  
}
.productsSizeDiv{
  margin-top: 10px;
}
.productsSizeLabel{
  position: relative;
  display: block;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.productsSizeLabel>input{
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0px;
}
.productsSizeInputDiv{
  min-width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #dee2e6;
  padding: 0px 5px;
  box-sizing: border-box;
  color: #797b7e;
  cursor: pointer;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.productsSizeLabel>input:checked+.productsSizeInputDiv,.productsSizeLabel:hover .productsSizeInputDiv{
  color: #121212;
  border-color: #121212;
}

.productsQtyObDiv{
  margin-top: 20px;
}
.productsQtyObDiv>p{

}
.productsQtyDiv{
  margin-top: 10px;
  width: 130px;
  height: 46px;
  border: 1px solid #dee2e6;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.productsQtyDiv:hover{
  border-color: #121212;
}

.productsQty{
  width: 60px;
  height: 100%;
  padding: 10px 0px;
  text-align: center;
  float: left;
  box-sizing: border-box;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent !important;
  color: #121212;
}
.productsQtyMinus,.productsQtyPlus{
  display: block;
  float: left;
  height: 100%;
  width: 35px;
  cursor: pointer;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.productsQtyMinus{
  background-image: url(../images/minus.png);
}
.productsQtyPlus{
  background-image: url(../images/plus.png);
}

/* Chrome, Safari, Edge, Opera */
.productsQty::-webkit-outer-spin-button,
.productsQty::-webkit-inner-spin-button,
.filterPriceInputDiv>input::-webkit-outer-spin-button,
.filterPriceInputDiv>input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
.productsQty,.filterPriceInputDiv>input{
  -moz-appearance: textfield;
}

.productsBasketFavoriteDiv{
  margin-top: 30px;
}
.productsFavorite,.productsBasket{
  padding: 14px 16px;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  justify-content: center;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.productsFavorite{
  background-color: #f2f3f5;
  border: 1px solid #f2f3f5;
}
.productsBasket{
  background-color: #121212;
  border: 1px solid #121212;
  margin-bottom: 10px;
}
.productsFavorite>img,.productsBasket>img{
  height: 18px;
  margin-right: 7px;
}
.productsFavorite>span,.productsBasket>span{
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
}
.productsFavorite>span{
  color: #121212;
}
.productsBasket>span{
  color: #fff;
}
.productsFavorite:hover{
  background-color: #fff;
  border-color: #000;
  opacity: 1;
}

.productsFavorite>img.productsListFavoriteImagesActive,
.productsFavorite.active>img.productsListFavoriteImages{
  display: none;
}
.productsFavorite>img.productsListFavoriteImages,
.productsFavorite.active>img.productsListFavoriteImagesActive{
  display: block;
}

.productsBasket:hover{
  opacity: 0.7;
}

.loginObDivBody{
  padding: 80px 0px;
}
.loginObDiv{

}
.loginLeftDiv{
  width: 50%;
  float: left;
}
.loginRightDiv{
  width: 50%;
  float: left;
  box-sizing: border-box;
  border-left: 1px solid #dee2e6;
}

.loginObBlokDiv{
  width: 100%;
  max-width: 440px;
  margin: 0px auto;
}
.loginObBlokDiv>h2{

}
.loginForm{
  margin-top: 30px;
}
.loginInputObDiv{
  margin-bottom: 30px;
  position: relative;
}
.loginInputObDiv>label{
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #121212;
  font-weight: 500;
  margin: 0px 0px 7px 0px;
  padding: 0px 5px;
  box-sizing: border-box;
}
.loginInputDiv{
  position: relative;
}
.loginInputDiv>input{
  width: 100%;
  height: 50px;
  padding: 12px 16px;
  box-sizing: border-box;
  outline: none;
  margin: 0px;
  font-size: 16px;
  color: #121212;
  font-weight: 500;
  background-color: #fff;
  border: solid 1px #cccccc;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.loginInputDiv>input.error{
  border-color: #ea3253;
}

.loginInputDiv>input:focus{
  border-color: #121212;
}
.loginInputDiv>input::-webkit-input-placeholder { color: #797b7e; }
.loginInputDiv>input::-moz-placeholder { color: #797b7e; }
.loginInputDiv>input:-ms-input-placeholder { color: #797b7e; }
.loginInputDiv>input:-moz-placeholder { color: #797b7e; }

.loginPhoneDiv>input{
  padding-left: 55px;
}
.loginPhoneDiv>span{
  font-size: 16px;
  line-height: 22px;
  color: #121212;
  font-weight: 500;
  position: absolute;
  top: 14px;
  left: 16px;
}
.loginPasswordDiv{

}
.loginPasswordDiv>input{
  padding-right: 55px;
}
.loginPasswordDiv>span.loginPasswordSpan{
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/hide2.png);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 15px 16px;
  cursor: pointer;
}
.loginButton{
  width: 100%;
  height: 50px;
  padding: 12px 16px;
  box-sizing: border-box;
  margin: 0px;
  border: none;
  background-color: #121212;
  border-radius: 6px;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.loginButton:hover {
  background-color: #505152;
}
.loginForgot{
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.loginForgot:hover{
  color: #121212;
}

.loginLinkMobile,.registrLinkMobile{
  display: none;
}

.informationObDivBody{
  padding: 80px 0px
}
.informationObDiv{

}
.informationLeftObDiv{
  width: 270px;
  float: left;
  border: 1px solid #dee2e6;

}
.informationLeftDiv{
  display: block;
  border-bottom: 1px solid #dee2e6;
  padding: 15px 20px;
  box-sizing: border-box;
  text-decoration: none;
  background-color: transparent;
}
.informationLeftDiv:last-child{
  border-bottom: 0px;
}
.informationLeftName{
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: #797b7e;
  max-width: calc(100% - 30px);
  float: left;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.informationLeftDiv.active>.informationLeftName,.informationLeftDiv:hover>.informationLeftName{
  color: #121212;
}
.informationLeftDiv.active{
  background-color: #f2f3f5;
}
.informationLeftCount{
  display: block;
  float: right;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #121212;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
.informationRightObDiv{
  width: calc(100% - 400px);
  float: right;
}
.informationRightObDiv>h1{

}
.informationRightDiv{
  margin-top: 40px;
}
.informationRightForm{

}
.passwordEditOpenButton{
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.passwordEditOpenButton:hover{
  color: #121212;
}
.passwordEditDiv{
  margin: 30px auto 0px auto;
  background-color: #f2f3f5;
  padding: 40px 40px;
  box-sizing: border-box;
  display: none;
}
.passwordEditForm{

}
.passwordEditZaq{
  padding-bottom: 20px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 40px;
}
.passwordEditZaq>h2{
  font-size: 20px;
  line-height: 24px;
  color: #121212;
  font-weight: 500;
  margin: 0px;
  width: calc(100% - 40px);
  float: left;
}
.passwordEditClose{
  display: block;
  width: 16px;
  height: 16px;
  float: right;
  padding: 4px;
  opacity: 0.6;
  cursor: pointer;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.passwordEditClose>img{
  width: 100%;
}
.passwordEditClose:hover{
  opacity: 1;
}
.passwordEditForm .loginInputObDiv:last-child{
  margin-bottom: 0px;
}
.ordersDiv{
  padding: 20px 20px;
  border: 1px solid #dee2e6;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ordersDiv:last-child{
  margin-bottom: 0px;
}
.ordersDiv:hover{
  border-color: #121212;
}
.ordersDiv>span{
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #121212;
}
.ordersDiv>span.ordersNumber{
  font-weight: bold;
}
.orderBack{
  display: inline-block;
  opacity: 0.6;
  margin-top: 7px;
  float: left;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.orderBack>img{
  height: 24px;
  float: left;
}
.orderBack>span{
  display: block;
  color: #121212;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  float: left;
}
.orderBack:hover{
  opacity: 1;
}
.orderNumber{
  float: right;
  margin-bottom: 0px;
}
.orderObDiv{
  margin-top: 40px;
}
.orderLeftObDiv{
  width: 380px;
  float: left;
}
.orderLeftDiv{
  margin-bottom: 24px;
}
.orderLeftDiv:last-child{
  margin-bottom: 0px;
}
.orderLeftDivStatus{
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #797b7e;
}
.orderLeftDivText{
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #121212;
}
.orderRightObDiv{
  float: right;
  width: calc(100% - 400px);
}
.orderRightProductsObDiv{

}
.orderRightProductsDiv{
  margin-bottom: 24px;
}

.orderRightProductsImagesDiv{
  display: block;
  width: 80px;
  height: 94px;
  float: left;
  margin-right: 20px;
  position: relative;
}
.orderRightProductsImagesDiv>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.orderRightProductsCount{
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 10;
  width: 20px;
  height: 20px;
  background-color: #121212;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
}
.orderRightProductsSred{
  float: left;
  width: calc(100% - 200px);
}
.orderRightProductsName{
  margin: 0px;
  max-height: 80px;
  min-height: 70px;
  overflow: hidden;
}
.orderRightProductsName>a{
  display: block;
  font-size: 16px;
  color: #121212;
  line-height: 20px;
  text-decoration: none;
  text-align: left;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.orderRightProductsName>a:hover{
  color: #797b7e;
}
.orderRightProductsSize{
  line-height: 18px;
}
.orderRightProductsPrice{
  font-size: 16px;
  line-height: 20px;
  color: #121212;
  font-weight: bold;
  float: right;
  width: 100px;
  text-align: right;
  height: 94px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.orderRightTottalPriceObDiv{

}

.orderRightSubTottalPriceDiv{
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  font-weight: 500;
  padding: 20px 0px;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}
.orderRightSubTottalPriceText{
  display: block;
  float: left;
  color: #797b7e;
  width: calc(100% - 110px);
}
.orderRightSubTottalPrice{
  display: block;
  float: right;
  color: #121212;
  width: 105px;
  text-align: right;
}
.orderRightTottalPriceDiv{
  font-size: 16px;
  color: #121212;
  line-height: 24px;
  text-decoration: none;
  font-weight: bold;
  padding: 20px 0px;
}

.orderRightTottalPriceText{
  display: block;
  float: left;
  width: calc(100% - 110px);
}
.orderRightTottalPrice{
  display: block;
  float: right;
  font-size: 18px;
  width: 105px;
  text-align: right;
}
.addresListObDiv{

}
.addresObDiv{
  padding: 16px;
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,0.125);
  margin-bottom: 24px;
}
.addresObDiv:last-child{
  margin-bottom: 0px;
}
.addresDiv{

}
.addresRadioButtonLabel{
  position: relative;
  cursor: pointer;
  float: left;
  width: calc(100% - 65px);
}
.addresRadioButtonLabel>input{
  position: absolute;
  top: 0px;
  left: 0px;
  cursor: pointer;
  opacity: 0;
}
.addresRadioButtonDiv{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  box-sizing: border-box;
  float: left;
  background-color: transparent;
  margin-top: 4px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.addresRadioButtonDiv::before{
  content: "";
  display: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  margin: 4px;
}
.addresRadioButtonLabel>input:checked+.addresRadioButtonDiv{
  background-color: #121212;
  border-color: #121212;
}
.addresRadioButtonLabel>input:checked+.addresRadioButtonDiv::before{
  display: block;
}
.addresRadioButtonLabel>p{
  font-size: 16px;
  line-height: 24px;
  color: #121212;
  font-weight: bold;
  float: left;
  margin: 0px 0px 0px 10px;
  width: calc(100% - 26px);
}
.addresDeleteButtton,.addresEditButtton{
  float: right;
  display: block;
  width: 22px;
  height: 22px;
  font-size: 0px;
  margin-top: 1px;
  cursor: pointer;
}
.addresDeleteButtton{
  margin-left: 10px;
}
.addresDeleteButtton>img,.addresEditButtton>img{
  height: 100%;
}
.addresEditObDiv{
  padding-left: 26px;
  box-sizing: border-box;
  height: 0px;
  overflow: hidden;
}
.addresEditObDiv .loginButton{
  margin-bottom: 16px;
}
.addresObDiv.open .addresDiv{
  margin-bottom: 32px;
}
.addresObDiv.open .addresEditObDiv{
  height: auto;
}
.addresAddObDiv{
  padding: 0;
  border: none;
}
.addresAddDiv{

}
.addresAddButton{
  display: inline-block;
  height: 50px;
  padding: 12px 16px;
  box-sizing: border-box;
  margin: 0px;
  border: none;
  background-color: #121212;
  border-radius: 6px;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.addresAddButton:hover{
  background-color: #505152;
}
.addresObDiv.open .addresAddButton{
  margin-bottom: 32px;
}
.addresAddButton>img{
  height: 18px;
  float: left;
  margin-top: 4px;
  margin-right: 10px;
}
.addresAddButton.addresAddClose>img{
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.addresAddButton>span{
  float: left;
}
.addresAdd{
  display: inline-block;
}
.addresAddClose{
  display: none;
}
.addresAddObDiv.open .addresAdd{
  display: none;
}
.addresAddObDiv.open .addresAddClose{
  display: inline-block;
}
.addresAddObDiv .addresEditObDiv{
  padding-left: 0px;
}

.favoritesObDivBody{
  padding: 40px 0px;
}
.favoritesObDiv{

}
.favoritesObDiv>h1{
  text-align: center;
  margin-bottom: 80px;
}
.favoritesList{
  padding-top: 40px;
}
.favoritesList .productsListDiv{
  float: left;
  margin-right: 26px;
  margin-bottom: 50px;
}
.favoritesList .productsListDiv:nth-child(4n+4){
  margin-right: 0px;
}

.cartObDivBody{
  padding: 40px 0px;
}
.cartObDiv{

}
.cartObDiv>h1{
  text-align: center;
  margin-bottom: 80px;
}
.cartList{
  padding-top: 40px;
}
.cartLeftObDiv{
  width: 800px;
  float: left;
}
.cartLeftDiv{
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.cartLeftImagesNameDiv{
  float: left;
  width: 400px;
}
.cartLeftImagesDiv{
  display: block;
  width: 90px;
  height: 106px;
  float: left;
  margin-right: 20px;
  font-size: 0px;
}
.cartLeftImagesDiv>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cartLeftNameDiv{
  float: left;
  width: calc(100% - 110px);
  position: relative;
  height: 106px;
}
.cartLeftName{
  margin: 0px 0px 5px 0px;
}
.cartLeftName>a{
  display: block;
  font-size: 16px;
  color: #121212;
  line-height: 20px;
  text-decoration: none;
  font-weight: bold;
  max-height: 60px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cartLeftName>a:hover {
  color: #797b7e;
}
.carLefttSize{
  display: block;
  font-size: 14px;
  color: #121212;
  line-height: 20px;
  text-decoration: none;
  font-weight: 500;
}
.carLefttSize>span{
  color: #797b7e;
}
.cartLeftPrice{
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.cartLeftQtyTottalPriceObDiv{
  width: 300px;
  float: right;
}

.cartLeftQtyDiv{
  float: right;
  margin-top: 29px;
}
.cartLeftTottalPrice{
  float: right;
  font-size: 16px;
  color: #121212;
  line-height: 20px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 43px;
  width: calc(100% - 155px);
  padding: 0px 5px;
  box-sizing: border-box;
  text-align: center;
}
.cartLeftDelete{
  float: right;
  width: 22px;
  font-size: 0px;
  margin-top: 42px;
  cursor: pointer;
}
.cartLeftDelete>img{
  width: 100%;
}

.cartRightObDiv{
  width: 360px;
  padding: 35px;
  box-sizing: border-box;
  float: right;
  background-color: #f2f3f5;
}
.cartRightObDiv>h3{
  display: block;
  font-size: 20px;
  color: #121212;
  line-height: 24px;
  text-decoration: none;
  font-weight: bold;
  margin: 0px 0px 35px 0px;
}
.cartRightCountDiv{
  font-size: 16px;
  color: #121212;
  line-height: 20px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dee2e6;
}
.cartRightCountText{
  float: left;
  width: 50%;
  color: #797b7e;
}
.cartRightCountNumber{
  float: right;
  width: 50%;
  text-align: right;
}
.cartRightTottolPriceDiv{
  font-size: 16px;
  color: #121212;
  line-height: 20px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
}
.cartRightTottolPriceText{
  float: left;
  width: 50%;
}
.cartRightTottolPriceNumber{
  float: right;
  width: 50%;
  text-align: right;
}
.cartRightClearAllDiv{
  text-align: right;
  margin-bottom: 20px;
}
.cartRightClearAll{
  font-size: 16px;
  color: #797b7e;
  line-height: 20px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cartRightClearAll:hover{
  color: #121212;
}
.cartRightComplete,.cartRightContinue{
  display: block;
  padding: 14px 16px;
  height: 48px;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.cartRightComplete{
  background-color: #121212;
  border: 1px solid #121212;
  color: #fff;
  margin-bottom: 10px;
}
.cartRightContinue{
  background-color: #fff;
  border: 1px solid #121212;
  color: #121212;
}
.cartRightComplete:hover{
  opacity: 0.7;
}
.cartRightContinue:hover{
  background-color: #121212;
  color: #fff;
}
.checkoutObDivBody{
  border-top: 1px solid #dee2e6;
  overflow: hidden;
}
.checkoutObDiv{

}
.checkoutLeftDiv{
  width: 50%;
  float: left;
  padding: 30px 40px 20px 0px;
  box-sizing: border-box;
}
.checkoutRightDiv{
  width: 50%;
  float: right;
  position: relative;
  padding: 30px 0px 20px 40px;
  box-sizing: border-box;
  min-height: calc(100vh - 144px);
}
.checkoutRightDiv::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: -300%;
  z-index: -1;
  background-color: #f2f3f5;
  -webkit-box-shadow: inset 1px 0 5px #dee2e6;
  box-shadow: inset 1px 0 5px #dee2e6;
}
.checkoutRightProductsList{
  min-height: 250px;
  max-height: 360px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding-top: 12px;
  padding-right: 10px;
}

.checkoutRightProductsList .orderRightProductsName>a{
  font-size: 14px;
}
.checkoutRightProductsList .orderRightProductsPrice{
  font-size: 16px;
  line-height: 20px;
  height: 94px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.orderRightProductsPrice>span{
  color: #797b7e;
  text-decoration: line-through;
  font-size: 14px;
  margin-bottom: 3px;
  font-weight: normal;
  display: block;
}
.checkoutRightTottalPriceObDiv{
  margin-top: 80px;
}
.checkoutLeftRegisteredObDiv{
  border: 1px solid #dee2e6;
  padding: 0px 16px;
  border-radius: 5px;
  box-sizing: border-box;
}
.checkoutLeftContactDiv{
  margin-bottom: 40px;
}

.checkoutLeftContactDiv>h2{
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  font-weight: 500;
  color: #121212;
  margin: 0px 0px 20px 0px;
}
.checkoutLeftRegisteredDiv{
  border-bottom: 1px solid #dee2e6;
  padding: 12px 0px;
}
.checkoutLeftRegisteredDiv:last-child{
  border-bottom: none;
}
.checkoutLeftRegisteredDiv>span{
  font-size: 15px;
  line-height: 24px;
  text-decoration: none;
  font-weight: 500;
  color: #121212;
  float: left;
  width: 50%;
  text-align: right;
}
.checkoutLeftRegisteredDiv>span:nth-child(1){
  color: #797b7e;
  text-align: left;
}
.checkoutLeftDeliveryMethodObDiv{
  margin-bottom: 20px;
}
.deliveryMethodLabel{
  position: relative;
  display: block;
  width: calc(50% - 10px);
  float: left;
  cursor: pointer;
  border: 1px solid #dee2e6;
  padding: 12px 16px;
  border-radius: 5px;
  box-sizing: border-box;
  margin-right: 20px;
}
.deliveryMethodLabel:nth-child(2n+2){
  margin-right: 0px;
}
.deliveryMethodLabel>input{
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 0px;
  opacity: 0;
}
.deliveryMethodLabel>p{
  font-size: 15px;
  line-height: 24px;
  text-decoration: none;
  font-weight: 500;
  color: #121212;
  float: left;
  margin: 0px 0px 0px 10px;
  width: calc(100% - 26px);

}
.deliveryMethodDiv{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  box-sizing: border-box;
  float: left;
  background-color: transparent;
  margin-top: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.deliveryMethodDiv::before {
  content: "";
  display: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  margin: 4px;
}
.deliveryMethodLabel>input:checked+.deliveryMethodDiv{
  background-color: #121212;
  border-color: #121212;
}
.deliveryMethodLabel>input:checked+.deliveryMethodDiv::before {
  display: block;
}
.checkoutLeftRegisterObDiv{
  
}
.checkoutLeftRegisterObDiv .loginInputObDiv{
  margin-bottom: 10px;
}
.checkoutLeftRegisterObDiv .loginInputObDiv:last-child{
  margin-bottom: 0px;
}

.pacinationObDiv{
  text-align: center;
  font-size: 0px;
  padding-bottom: 40px;
}
.pacinationObDiv>a{
  display: inline-block;
  color: #121212;
  text-decoration: none;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  margin: 0px 5px;
  padding: 0px 5px;
  height: 30px;
  vertical-align: middle;
  opacity: 0.7;
  border-bottom: 1px solid transparent;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.pacinationObDiv>a>img{
  height: 100%;
}
.pacinationObDiv>a:hover,.pacinationObDiv>a.active{
  opacity: 1;
  border-color: #121212;
}
.pacinationObDiv>a.pacinationArrow{
  border-color: transparent !important;
}
.pacinationObDiv>a:last-child{
  margin-right: 0px;
}
.pacinationObDiv>a:first-child{
  margin-left: 0px;
}
.popupBasketObDiv{
  position: fixed;
  top: -150vh;
  left: calc(50% - 450px);
  z-index: 999;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 10px #b5b9bd24;
  box-shadow: 0 6px 10px #b5b9bd24;
  border-radius: 5px;
  width: 900px;
  height: 500px;
  padding: 40px 40px;
  box-sizing: border-box;

  -webkit-transition: top 600ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  -moz-transition: top 600ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  -ms-transition: top 600ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  -o-transition: top 600ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  transition: top 600ms cubic-bezier(0.17, 0.67, 0.24, 0.99);

}
.popupBasketObDiv.open{
  top: calc(50vh - 250px);
}
.popupBasketDiv{
  width: 100%;
  height: 100%;
}
.popupBasketLeftDiv{
  width: 300px;
  float: left;
  height: 100%;
}
.popupBasketRightDiv{
  width: 500px;
  height: 100%;
  float: right;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.popupBasketRightDiv .productsSizeObDiv{
  margin-bottom: 20px;
}

.popupBasketGalleryTop {
  height: 350px;
  width: 100%;
}
.popupBasketGalleryThumbs {
  height: 70px;
  box-sizing: border-box;
  padding: 10px 0px  0px 0px;
}
.popupBasketGalleryThumbs .swiper-slide {
  width: 50px;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
}
.popupBasketGalleryThumbs .swiper-slide-active {
  opacity: 1;
}
.popupBasketLeftDiv .swiper-slide>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popupBasketClose{
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px 5px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.popupBasketClose>img{
  width: 20px;
}
.notificationObDiv{
  position: fixed;
  top: -100vh;
  left: 0px;
  z-index: 999;
  width: 100%;
  padding: 25px 0px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.notificationObDiv.success{
  background-color: #0faa82;
}
.notificationObDiv.error{
  background-color: #ea3253;
}
.notificationObDiv.open{
  top: 0px;
}
.notificationDiv{
  width: 92%;
  margin: 0px auto;
}
.notificationDiv>p{
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  margin: 0px;
}

.headerCartProductsDisplayNone{
  display: none;
  text-align: center;
}
.headerCartProductsDisplayNone>p{
  font-size: 18px;
  line-height: 24px;
  color: #121212;
  margin: 0px;
  text-align: center;
}

.skeleton {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeholderSkeleton;
  -webkit-animation-timing-function: linear;
  background-color: #e8e9e4 !important;
  background-image: -webkit-gradient(linear, left center, right center, from(#e8e9e4), color-stop(.1, #edeef1), color-stop(.9, #e8e9e4), to(#e8e9e4));
  background-image: -webkit-linear-gradient(left, #e8e9e4 0%, #edeef1 20%, #e8e9e4 40%, #e8e9e4 100%);
  background-repeat: no-repeat;
  background-size: 50% 100%;
  border: 0px;

  box-shadow: none;
  -webkit-box-shadow: none;

}
@-webkit-keyframes placeholderSkeleton {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.skeletonObDivBody{
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.skeletonObDivBody::-webkit-scrollbar{
  width: 0px;
}
.skeletonObDivBody::-webkit-scrollbar-track{
  background: rgba(0, 0, 0, 0);
  border-radius: 0px;
  border-bottom: 0px solid transparent;
  border-top: 0px solid transparent;
  border-left: 0px solid transparent;
}
.skeletonObDivBody::-webkit-scrollbar-thumb{
  border-radius: 0px;
  background: rgba(0, 0, 0, 1);
}

.productsListRightSkeletonDiv{
  display: none;
}
.homeViewAllButton{
  display: block;
  width: 100%;
  max-width: 200px;
  height: 46px;
  font-size: 14px;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
  background-color: #f2f3f5;
  color: #121212;
  text-decoration: none;
  margin: 30px auto 0px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.homeViewAllButton:hover{
  background-color: #121212;
  color: #fff;
}
.noResultsDiv{
  text-align: center;
}
.noResultsImages{
  width: 80px;
  margin-bottom: 30px;
}
.noResultsButton{
  display: inline-block;
  height: 46px;
  padding: 0px 25px;
  font-size: 14px;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
  background-color: #f2f3f5;
  color: #121212;
  text-decoration: none;
  margin: 30px auto 0px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.noResultsButton:hover{
  background-color: #121212;
  color: #fff;
}

.errorText{
  margin: 0;
  position: absolute;
  top: calc(100% - 10px);
  right: 5px;
  padding: 0px 5px;
  max-width: calc(100% - 20px);
  font-size: 14px;
  line-height: 18px;
  color: #ea3253;
  font-weight: 500;
  display: none;
  background-color: #fff;
  z-index: 10;
}
.error.loginInputObDiv .errorText{
  display: block;
}
.error.loginInputObDiv>label,.loginError{
  color: #ea3253;
}
.error.loginInputObDiv .loginInputDiv>input{
  border-color: #ea3253;
}
.profileEditSuccess{
  color: #00b368;
}
.profileEditSuccess>span.error{
  color: #ea3253;
}
.logOutObDiv{

}
.logOutDiv{
  text-align: center;
  font-size: 0px;
  margin-top: 40px;
}

.logOutDiv>input,.logOutDiv>a{
  display: inline-block;
  padding: 14px 42px;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  text-decoration: none;
  outline: none;
  border-radius: 6px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.logOutDiv>a{
  background-color: #f2f3f5;
  border: 1px solid #f2f3f5;
  color: #121212;
}
.logOutDiv>input{
  background-color: #121212;
  border: 1px solid #121212;
  color: #fff;
  margin-right: 10px;
}

.logOutDiv>input:hover{
  opacity: 0.7;
}
.logOutDiv>a:hover{
  background-color: #fff;
  border-color: #000;
}

.orderSuccessfullyPopup{
  position: fixed;
  top: calc(50vh - 155px);
  left: calc(50% - 300px);
  z-index: 999;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 10px #b5b9bd24;
  box-shadow: 0 6px 10px #b5b9bd24;
  border-radius: 5px;
  width: 600px;
  height: 310px;
  padding: 40px 40px;
  box-sizing: border-box;
  text-align: center;
}
.orderSuccessfullyPopup>h2{
  text-align: center;
}
.orderSuccessfullyPopup>img{
  width: 128px;
  display: inline-block;
  margin-top: 50px;
}
.ordersListObDiv{
  margin-bottom: 40px;
}
.headerSearchResultObDiv{

}
.headerSearchResultObDiv .swiper-container{
  margin: 30px 0px;
}
.headerSearchResultObDiv>.productsListDiv{

}
.headerSearcNoResultText{
  text-align: center;
  margin-top: 60px;
}
.headerSearchSkeletonDiv{
  display: none;
}
.pageObDivBody{
  padding: 40px 0px;
}
.pageObDiv{

}
.pageDiv{
  font-size: 14px;
  line-height: 24px;
  color: #797b7e;
  font-weight: 500;
  margin: 0px;
  padding-top: 40px;
}
.pagedivImages{
  max-width: 50%;
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
  object-fit: cover;
  border-radius: 3px;
}

.pageDiv p{
  margin: 0px 0px 15px 0px;
}
.pageDiv a,.blokTextP a{
  color: #00b368;
}
.blogListObDivBody{
  padding: 40px 0px;
}
.blogListObDiv{

}
.blogListDiv{
  padding: 40px 0px;
}
.blogList{
  display: block;
  float: left;
  font-size: 0px;
  width: 400px;
  margin-right: 40px;
  margin-bottom: 40px;
  text-decoration: none;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px 1px rgba(0,0,0,0.12);
  box-shadow: 0 0 20px 1px rgba(0,0,0,0.12);

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blogList:nth-child(3n+3){
  margin-right: 0px;
}
.blogList:hover{
  -webkit-box-shadow: 0 0 30px 1px rgba(0,0,0,0.3);
  box-shadow: 0 0 30px 1px rgba(0,0,0,0.3);

  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.blogListImages{
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blogListTextDiv{
  padding: 20px 20px;
  box-sizing: border-box;
}
.blogListName{
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #121212;
  text-decoration: none;
  height: 20px;
  word-break: break-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0px 0px 10px 0px;
}
.blogListShortText{
  font-size: 14px;
  line-height: 20px;
  color: #797b7e;
  font-weight: 500;
  height: 40px;
  overflow: hidden;
  margin: 0px;
}
.pageGalleryObDiv{
  padding-top: 40px;
}
.newsListDateAdded{
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #797b7e;
  font-weight: 500;
  height: 16px;
  overflow: hidden;
  margin: 0px 0px 10px 0px;
}
.newsDateAdded{
  display: block;
  font-weight: bold;
  color: #121212;
  margin: 0px 0px 10px 0px;
}
.partnersListObDivBody{
  padding: 40px 0px;
}
.partnersListObDiv{

}
.partnersList{
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
}
.partnersListDiv{
  display: flex;
  justify-content: center;
  width: 200px;
  height: 100px;
  cursor: pointer;
  margin: 20px 20px;
  padding: 0px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.partnersListDiv:hover{
  -moz-transform: scale(1.07) rotate(0deg);
  -webkit-transform: scale(1.07) rotate(0deg);
  -o-transform: scale(1.07) rotate(0deg);
  -ms-transform: scale(1.07) rotate(0deg);
  transform: scale(1.07) rotate(0deg);
}
.partnersListDiv>img{
  width: 100%;
  max-width: 80%;
  height: auto;
  object-fit: contain;
}
.faqListObDivBody{
  padding: 40px 0px;
}
.faqListObDiv{

}
.faqList{
  padding-top: 40px;
}
.faqDiv{
  padding: 20px 20px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
  box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
}
.faqName{
  margin: 0px;
  cursor: pointer;
}
.faqName>span{
  display: block;
  width: calc(100% - 24px);
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #121212;
  float: left;
}
.faqName::before{
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  float: right;
  background-image: url(../images/downArrowFaq.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.faqDiv.open .faqName::before{
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faqText{
  height: 0px;
  overflow: hidden;
}
.faqDiv.open .faqText{
  height: auto;
}
.faqText>p{
  font-size: 14px;
  line-height: 24px;
  color: #797b7e;
  font-weight: 500;
  margin: 20px 0px 0px 0px;
}

.servicesListObDivBody{
  padding: 40px 0px;
}
.servicesListObDiv{

}
.servicesListDiv{
  padding: 40px 0px;
}
.servicesList{
  display: block;
  width: 400px;
  height: 300px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  float: left;
  margin-right: 40px;
  margin-bottom: 40px;
}
.servicesList:nth-child(3n+3){
  margin-right: 0px;
}
.servicesList::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  position: absolute;
  bottom: -110%;
  left: 0px;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.servicesListImages{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  -webkit-filter: brightness(80%);
  filter: brightness(80%);
  object-fit: cover;
}

.servicesListName{
  margin: 0px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  padding: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  height: 80px;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 3;
  display: grid;
  align-items: end;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.servicesListShortText{
  margin: 0px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  position: absolute;
  bottom: -200%;
  left: 0px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.servicesList:hover::before{
  bottom: 0px;
}
.servicesList:hover .servicesListName{
  bottom: calc(100% - 80px);
  align-items: start;
}
.servicesList:hover .servicesListShortText{
  bottom: 0px;
}

@media (min-width: 499px){
  .productsOnList .productsListDiv{
    width: 100%;
    float: none;
    margin-right: 0px;
  }
  .productsOnList .productsListImagesDiv{
    width: 200px;
    height: 235px;
    float: left;
    margin-right: 20px;
  }
  .productsOnList .productsListName{
    float: left;
    width: calc(100% - 220px);
    margin: 0px 0px 15px 0px;
  }
  .productsOnList .productsListName>a{
    text-align: left;
    font-size: 16px;
    line-height: 20px;
  }
  .productsOnList .productsListPrice{
    float: left;
    width: calc(100% - 220px);
    text-align: left;
  }
  .productsOnList .productsListShortText{
    display: block;
    float: left;
    width: calc(100% - 220px);
    font-size: 14px;
    margin-bottom: 15px;
    height: 72px;
    overflow: hidden;
  }
  .productsOnList .productsListBasketViewDiv{
    display: none;
  }
  .productsOnList .productsListFavorite{
    display: none;
  }
  .productsOnList .productsListBasketFavoriteDiv{
    display: block;
    position: absolute;
    bottom: 0px;
    left: 220px;
    width: calc(100% - 220px);
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite,
  .productsOnList .productsListBasketFavoriteDiv .productsListBasket{
    position: initial;
    background-image: none;
    padding: 8px 16px;
    width: auto;
    height: auto;
    border-radius: 0;
    float: left;
    margin: 0px;
    display: flex;
    justify-content: center;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite{
    background-color: #f2f3f5;
    border: 1px solid #f2f3f5;
    margin-right: 7px;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite:hover{
    background-color: #fff;
    border-color: #000;
    opacity: 1;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListBasket{
    background-color: #121212;
    border: 1px solid #121212;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListBasket:hover{
    opacity: 0.7;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite>img,
  .productsOnList .productsListBasketFavoriteDiv .productsListBasket>img{
    height: 18px;
    margin-right: 7px;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite>span,
  .productsOnList .productsListBasketFavoriteDiv .productsListBasket>span{
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite>span{
    color: #121212;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListBasket>span{
    color: #fff;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite>span.deleteFavoriteText,
  .productsFavorite>span.deleteFavoriteText{
    display: none;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite.active>span.deleteFavoriteText,
  .productsFavorite.active>span.deleteFavoriteText{
    display: inline-block;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite.active>span.addFavoriteText,
  .productsFavorite.active>span.addFavoriteText{
    display: none;
  }

  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite>img.productsListFavoriteImagesActive,
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite.active>img.productsListFavoriteImages{
    display: none;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite>img.productsListFavoriteImages,
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite.active>img.productsListFavoriteImagesActive{
    display: block;
  }

}
@media (min-width: 1150px) and (max-width: 1320px){
  .setObDiv {
    width: 1110px;
  }
  .homeTopSliderDiv{
    height: 600px;
  }
  .headerMenuObDiv>ul>li>a{
    font-size: 12px;
  }
  .homeBgFixedObDiv {
    padding: 200px 0px;
  }
  .footerSubscribeLeft{
    width: 550px;
  }
  .homeCategoryDiv{
    width: 300px;
    height: 365px;
  }
  .homeCategoryLeft{
    height: 365px;
  }
  .productsListRight .productsListDiv{
    width: 250px;
    margin-right: 20px;
  }
  .productsListRight .productsListImagesDiv{
    height: 292px;
  }
  .productsOnList.productsListRight .productsListDiv{
    width: 100%;
    margin-right: 0px;
  }
  .productsOnList.productsListRight .productsListImagesDiv{
    height: 235px;
  }
  .productsLeftDiv{
    width: 500px;
  }
  .productsRightDiv{
    width: 550px;
  }
  .selectors .mz-thumb{
    width: 96px;
    height: 112px;
  }
  .informationRightObDiv{
    width: calc(100% - 320px);
  }
  .orderLeftObDiv{
    width: 300px;
  }
  .orderRightObDiv{
    width: calc(100% - 320px);
  }
  .favoritesList .productsListDiv{
    width: 258px;
  }
  .favoritesList .productsListImagesDiv{
    height: 301px;
  }
  .cartRightObDiv{
    width: 340px;
  }
  .cartLeftObDiv{
    width: 740px;
  }
  .checkoutRightDiv{
    width: 480px;
  }
  .checkoutLeftDiv{
    width: 630px;
  }
  .blogList{
    width: 350px;
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .blogListImages{
    height: 175px;
  }
  .servicesList{
    width: 356px;
    height: 267px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1000px) and (max-width: 1149px){
  .setObDiv{
    width: 960px;
  }
  .homeTopSliderDiv{
    height: 500px;
  }
  .headerMenuObDiv>ul>li>a{
    font-size: 12px;
  }
  .headerRightDiv{
    margin-right: 15px;
  }
  .headerRightLinkDiv>img{
    height: 20px;
  }
  .headerLogoDiv{
    width: 150px;
  }
  .headerRightObDiv{
    width: 156px;
  }
  .headerMenuObDiv{
    width: calc(100% - 310px);
  }
  .homeBgFixedObDiv {
    padding: 150px 0px;
  }
  .homeBgFixedObDiv>h2{
    font-size: 50px;
    line-height: 60px;
  }
  .footerSubscribeLeft{
    width: 450px;
  }
  .footerSubscribeRight{
    width: 480px;
  }
  .footerSubscribeInput{
    width: 320px;
  }
  .homeTopSliderTextDiv>h2{
    width: 45px;
  }

  .homeCategoryDiv{
    width: 300px;
    height: 365px;
  }
  .homeCategoryLeft{
    height: 365px;
  }

  .productsListRight .productsListDiv{
    margin-right: 40px;
  }
  .productsListRight .productsListDiv:nth-child(3n+3){
    margin-right: 40px;
  }
  .productsListRight .productsListDiv:nth-child(2n+2){
    margin-right: 0px;
  }
  .productsOnList.productsListRight .productsListDiv{
    margin-right: 0px;
  }
  .productsOnList.productsListRight .productsListDiv:nth-child(3n+3){
    margin-right: 0px;
  }
  .productsLeftDiv{
    width: 400px;
  }
  .productsRightDiv{
    width: 520px;
  }
  .selectors .mz-thumb{
    width: 78px;
    height: 92px;
    margin-right: 2px;
    margin-bottom: 2px;
  }
  .loginObBlokDiv{
    max-width: 380px;
  }
  .informationRightObDiv{
    width: calc(100% - 320px);
  }

  .orderLeftObDiv{
    width: 260px;
  }
  .orderRightObDiv{
    width: calc(100% - 280px);
  }
  .favoritesList .productsListDiv{
    margin-right: 30px;
  }
  .favoritesList .productsListDiv:nth-child(4n+4){
    margin-right: 30px;
  }
  .favoritesList .productsListDiv:nth-child(3n+3){
    margin-right: 0px;
  }
  .cartRightObDiv{
    width: 330px;
  }
  .cartLeftObDiv{
    width: 600px;
  }
  .cartLeftQtyTottalPriceObDiv{
    width: 260px;
  }
  .cartLeftImagesNameDiv{
    width: 320px;
  }
  .checkoutRightDiv{
    width: 400px;
  }
  .checkoutLeftDiv{
    width: 560px;
  }
  .blogList{
    width: 460px;
  }
  .blogListImages{
    height: 230px;
  }
  .blogList:nth-child(3n+3){
    margin-right: 40px;
  }
  .blogList:nth-child(2n+2){
    margin-right: 0px;
  }
  .servicesList{
    width: 460px;
    height: 345px;
  }
  .servicesList:nth-child(3n+3){
    margin-right: 40px;
  }
  .servicesList:nth-child(2n+2){
    margin-right: 0px;
  }
}
@media (min-width: 0px) and (max-width: 999px){
  .setObDiv{
    width: 92%;
  }
  .headerFixed~main{
    margin-top: 60px;
  }
  .bestSellersObDivBody,.homeCategoryObDivBody,.brandHomeObDivBody,.footerObDivBody,.loginObDivBody,.informationObDivBody{
    padding: 40px 0px;
  }
  .headerMenuObDiv{
    display: none;
  }
  .headerRightWebDiv{
    display: none;
  }
  .headerObDiv{
    padding: 10px 0px;
  }
  .headerFixed .headerObDiv {
    padding: 10px 0px;
  }
  .headerFixed+main {
    margin-top: 60px;
  }
  .headerRightObDiv{
    width: 100px;
  }
  .headerLogoDiv{
    width: 140px;
  }
  .homeTopSliderDiv{
    height: 80vw;
  }
  .homeTopSliderTextDiv{
    width: 100%;
    max-width: 450px;
  }
  .homeTopSliderTextDiv>h2{
    font-size: 28px;
    line-height: 34px;
  }
  .homeTopSliderTextDiv>p{
    margin: 20px 0px;
    font-weight: 500;
  }
  .homeTopSliderTextDiv>a{
    width: 160px;
    height: 40px;
    font-size: 12px;
    line-height: 40px;
  }
  .homeCategoryLeft{
    display: block;
    width: 100%;
    float: none;
    height: auto;
    margin-bottom: 36px;
  }
  .homeCategoryRight{
    width: 100%;
    float: none;
  }
  .homeCategoryLeft>h2,.homeCategoryLeft>p,.footerSubscribeLeft>h2,.footerSubscribeLeft>p{
    text-align: center;
  }
  .homeBgFixedObDiv>h2{
    font-size: 28px;
    line-height: 34px;
  }
  .homeBgFixedObDiv {
    padding: 150px 0px;
  }
  .footerSubscribeLeft{
    width: 100%;
    float: none;
  }
  .footerSubscribeRight{
    float: none;
    margin: 20px auto 0px auto;
  }
  .footerLeft{
    float: none;
    width: 100%;
    margin-bottom: 40px;
  }
  .footerRight{
    float: none;
    width: 100%;
  }
  .footerLeftEmailPhoneDiv{
    display: flex;
    justify-content: center;
  }
  .footerLeftEmailPhoneDiv>img{
    float: none;
  }
  .footerLeftEmailPhoneDiv>span{
    float: none;
    width: auto;
    text-decoration: none;
  }
  .footerLogoDiv{
    margin: 0px auto 20px auto;
  }
  .footerLeftText{
    text-align: center;
  }
  .scrollTop{
    display: none;
  }

  .productsListDiv{
    width: 30vw;
  }
  .productsListImagesDiv{
    height: 35vw;
  }
  .homeCategoryDiv{
    width: 45vw;
    height: 55vw;
  }
  .brandHomeDiv{
    width: 120px;
  }
  .brandHomeImagesDiv{
    width: 120px;
    height: 120px;
  }
  .brandHomeList .coruselNextStyle,.brandHomeList .coruselPrevStyle{
    top: 100px;
  }

  .headerTopObDivBody{
    display: none;
  }
  .burgerMenuMobile{
    display: block;
  }
  .menuMobileObDivBody{
    display: block;
  }
  .mobileMenuArrow{
    display: inline-block;
  }
  .headerCartObDivBody{
    position: fixed;
    right: -150%;
    top: 0px;
    display: block;
    z-index: 999;
    min-width: initial;
    width: 320px;
    height: 100vh;
    max-height: initial;
    padding: 14px 20px 30px 20px;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;

  }
  .headerCartObDivBody.open{
    right: 0px;
  }
  .baskedMobileClose,.filterMobileClose{
    display: block;
  }
  .headerCartNameMobile{
    display: block;
  }
  .productsListBasketViewDiv{
    opacity: 1;
  }

  .productsListRightObDiv{
    width: 100%;
    float: none;
  }
  .productsListRight .productsListDiv,.favoritesList .productsListDiv{
    width: calc(33.33% - 14px);
    margin-right: 21px;
  }
  .favoritesList .productsListDiv:nth-child(4n+4){
    margin-right: 21px;
  }
  .favoritesList .productsListDiv:nth-child(3n+3){
    margin-right: 0px;
  }
  .productsListRight .productsListImagesDiv,.favoritesList .productsListImagesDiv{
    height: 34vw;
  }
  .productsListRight.productsOnList .productsListDiv{
    width: 100%;
    margin-right: 0px;
  }
  .productsListRight.productsOnList .productsListImagesDiv{
    height: 235px;
  }
  .productsListFilterObDiv{
    width: 320px;
    max-width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    float: none;
    right: -150%;
    z-index: 999;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .productsListFilterObDiv.open{
    right: 0px;
  }
  .productsListFilterScroll{
    width: calc(100% - 40px);
    height: calc(100vh - 80px);
    padding: 0px 20px 0px 20px;
    margin-top: 50px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch !important;
  }
  .buttonFilterOpen{
    display: block;
  }

  .productsLeftDiv{
    float: none;
    width: 100%;
    max-width: 550px;
    margin: 0px auto 50px auto;
  }
  .productsRightDiv{
    float: none;
    width: 100%;
  }
  .selectors .mz-thumb{
    width: 108px;
    height: 126px;
    margin-right: 2px;
    margin-bottom: 2px;
  }
  .loginLeftDiv{
    float: none;
    width: 100%;
  }
  .loginRightDiv{
    float: none;
    width: 100%;
    border-left: none;
    display: none;
  }

  .loginObDiv.loginObDivRegistrError .loginLeftDiv{
    display: none;
  }
  .loginObDiv.loginObDivRegistrError .loginRightDiv{
    display: block;
  }

  .loginLinkMobile,.registrLinkMobile{
    display: inline-block;
  }

  .informationRightObDiv{
    width: calc(100% - 300px);
  }
  .informationRightObDiv{
    width: 100%;
    float: none;
  }
  .informationLeftObDiv{
    float: none;
    width: 100%;
    margin: 0px auto 40px auto;
  }
  .orderLeftObDiv{
    width: 260px;
  }
  .orderRightObDiv{
    width: calc(100% - 280px);
  }
  .favoritesObDiv>h1,.cartObDiv>h1{
    margin-bottom: 40px;
  }
  .cartRightObDiv{
    width: 100%;
    float: none;
  }
  .cartLeftObDiv{
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .checkoutRightDiv{
    width: 100%;
    float: none;
    padding: 30px 0px;
    min-height: initial;
  }
  .checkoutLeftDiv{
    width: 100%;
    float: none;
    padding: 30px 0px;
  }
  .checkoutRightDiv::before{
    left: -10%;
    right: -10%;
  }
  .popupBasketLeftDiv{
    display: none;
  }
  .popupBasketObDiv{
    width: 96%;
    left: 2%;
  }
  .popupBasketRightDiv{
    width: 100%;
    float: none;
  }
  .headerCartProductsDisplayNone>p{
    font-size: 16px;
  }
  .headerPopupSearchDiv>h6{
    display: none;
  }
  .headerPopupSearchClear{
    display: none;
  }
  .headerPopupSearchObDivBody{
    padding: 20px 0px;
  }
  .headerPopupSearchClose{
    right: calc(4% + 8px);
    top: 28px;
  }

  .headerPopupSearchInput{
    padding-left: 36px;
  }
  .headerSearcNoResultText{
    margin-top: 20px;
  }
  .pagedivImages{
    float: none;
    width: 100%;
    max-width: initial;
    margin-left: 0px;
    margin-bottom: 20px;
  }
  .blogList{
    width: calc(50% - 20px);
  }
  .blogList:nth-child(3n+3){
    margin-right: 40px;
  }
  .blogList:nth-child(2n+2){
    margin-right: 0px;
  }
  .blogListImages{
    height: calc(25vw - 25px);
  }
  .partnersListDiv{
    width: 106px;
  }
  .partnersListDiv>img{
    max-width: 100%;
  }
  .faqDiv{
    padding: 20px 10px;
  }
  .faqName>span{
    font-size: 16px;
    line-height: 22px;
  }
  .faqName::before{
    width: 16px;
    height: 16px;
  }
  .servicesList{
    width: calc(50% - 20px);
    height: calc(50vw - 156px);
  }
  .servicesList:nth-child(3n+3){
    margin-right: 40px;
  }
  .servicesList:nth-child(2n+2){
    margin-right: 0px;
  }
}
@media (min-width: 0px) and (max-width: 799px){
  .productsListDiv{
    width: 38vw;
  }
  .productsListImagesDiv{
    height: 45vw;
  }
  .cartLeftImagesNameDiv{
    width: 100%;
    float: none;
  }
  .cartLeftQtyTottalPriceObDiv{
    width: 100%;
    float: none;
  }
}
@media (min-width: 0px) and (max-width: 699px){

  .blokNameH2{
    font-size: 24px;
    line-height: 32px;
  }
  .footerSubscribeRight{
    width: 100%;
  }
  .footerSubscribeInput{
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
  .footerSubscribeButton{
    width: 100%;
    float: none;
  }

  .footerCopy{
    float: none;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .footerBottomRight{
    float: none;
    margin: 0px auto;
    text-align: center;
  }
  .footerBottomRight>a{
    float: none;
    display: inline-block;
  }
  .footerRight>ul>li{
    float: none;
    width: 100%;
    border-top: 1px solid #f2f3f5;
    position: relative;
  }
  .footerRight>ul>li:last-child{
    border-bottom: 1px solid #f2f3f5;
  }
  .footerRight>ul>li::after{
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 15px;
    top: 26px;
    background-image: url(../images/arrowRight.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;

  }
  .footerRight>ul>li.open::after{
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .footerRight>ul>li>a{
    display: block;
    padding: 24px 0px;
  }
  .footerRight>ul>li>ul{
    margin: 0px;
    height: 0px;
    overflow: hidden;
  }
  .footerRight>ul>li>ul>li:last-child{
    margin-bottom: 24px;
  }

  .footerBottomObDiv{
    border-top: 0px;
  }
  .productsListDiv{
    width: 45vw;
  }
  .productsListImagesDiv{
    height: 53vw;
  }
  .homeCategoryDiv {
    width: 56vw;
    height: 68vw;
  }
  .productsListRight .productsListDiv,.favoritesList .productsListDiv{
    width: calc(50% - 6px);
    margin-right: 12px;
  }
  .productsListRight .productsListDiv:nth-child(3n+3),.favoritesList .productsListDiv:nth-child(3n+3){
    margin-right: 12px;
  }
  .productsListRight .productsListDiv:nth-child(2n+2),.favoritesList .productsListDiv:nth-child(2n+2){
    margin-right: 0px;
  }
  .productsListRight .productsListImagesDiv,.favoritesList .productsListImagesDiv{
    height: 51vw;
  }

  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite,.productsOnList .productsListBasketFavoriteDiv .productsListBasket{
    float: none;
  }
  .productsOnList .productsListBasketFavoriteDiv .productsListFavorite{
    margin-right: 0px;
    margin-bottom: 7px;
  }

  .orderLeftObDiv{
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .orderRightObDiv{
    width: 100%;
    float: none;
  }
  .orderRightProductsImagesDiv{
    margin-right: 10px;
  }
  .orderRightProductsSred{
    width: calc(100% - 170px);
  }
  .orderRightProductsPrice{
    font-size: 14px;
    line-height: 16px;
    width: 80px;
  }
  .checkoutRightProductsList .orderRightProductsPrice{
    font-size: 14px;
    line-height: 16px;
    width: 80px;
  }
  .orderRightProductsPrice>span{
    font-size: 12px;
  }
  .popupBasketObDiv{
    padding: 20px 20px;
  }
  .popupBasketClose{
    right: 20px;
  }
  .homeNameSliderDiv>h2{
    padding: 0px 10px;
  }
  .homeNameSliderDiv::before{
    top: 16px;
  }
  .orderSuccessfullyPopup{
    width: 96%;
    height: 300px;
    top: calc(50vh - 150px);
    left: 2%;
  }
  .orderSuccessfullyPopup>h2{
    font-size: 20px;
    line-height: 28px;
  }
  .orderSuccessfullyPopup>img{
    width: 100px;
  }
  .orderBack{
    display: none;
  }
  .orderNumber{
    float: none;
  }

  .blogList{
    width: 100%;
    float: none;
    margin-right: 0px;
  }
  .blogList:nth-child(3n+3){
    margin-right: 0px;
  }
  .blogListImages{
    height: calc(50vw - 15px);
  }
  .servicesList{
    float: none;
    width: 100%;
    height: calc(100vw - 135px);
    margin-right: 0px;
  }
  .servicesList:nth-child(3n+3){
    margin-right: 0px;
  }
}
@media (min-width: 0px) and (max-width: 599px){
  .selectors .mz-thumb {
    width: 90px;
    height: 105px;
  }
  .ordersDiv>span{
    width: 50%;
    text-align: left;
  }
  .ordersDiv>span:nth-child(2n+2){
    text-align: right;
  }
  .ordersDiv>span:nth-child(1){
    margin-bottom: 10px;
  }
  .checkoutLeftRegisteredDiv>span{
    width: 100%;
    float: none;
    display: block;
    text-align: left;
  }
  .checkoutLeftRegisteredDiv>span:nth-child(1){
    text-align: left;
  }
  .deliveryMethodLabel{
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .deliveryMethodLabel:nth-child(2n+2){
    margin-bottom: 0px;
  }
  .checkoutRightTottalPriceObDiv{
    margin-top: 40px;
  }
}
@media (min-width: 0px) and (max-width: 499px){
  .productsListDiv{
    width: 67vw;
  }
  .productsListImagesDiv{
    height: 78vw;
  }
  .homeCategoryDiv {
    width: 78vw;
    height: 94vw;
  }
  .productsListFavorite{
    width: 20px;
    height: 20px;
    top: 8px;
    right: 8px;
  }
  .productsListBasketViewDiv{
    width: 90px;
    bottom: 85px;
    left: calc(50% - 45px);
  }
  .productsListBasket, .productsListView{
    display: block;
    width: 40px;
    height: 40px;
    background-size: 16px;
  }
  .productsOnList .productsListShortText{
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
    height: 72px;
    overflow: hidden;
  }
  .productsListRight.productsOnList .productsListImagesDiv{
    height: 108vw;
  }
  .productsListRight.productsOnList .productsListBasketViewDiv{
    bottom: 180px;
  }
  .selectors .mz-thumb {
    width: 72px;
    height: 84px;
  }
  .passwordEditDiv{
    padding: 30px 20px;
  }
  .passwordEditZaq>h2{
    font-size: 18px;
  }
  .addresEditObDiv{
    padding-left: 0px;
  }
  .notificationDiv>p{
    font-size: 16px;
  }
}
@media (min-width: 0px) and (max-width: 399px){
  .homeTopSliderDiv{
    height: 120vw;
  }
  .brandHomeDiv{
    width: 110px;
  }
  .brandHomeImagesDiv{
    width: 110px;
    height: 110px;
  }
  .brandHomeList .coruselNextStyle,.brandHomeList .coruselPrevStyle{
    top: 95px;
  }
  .bestSellersList .swiper-container,.brandHomeList .swiper-container{
    padding-bottom: 60px;
  }
  .selectors .mz-thumb {
    width: 64px;
    height: 75px;
  }
  .cartRightObDiv{
    padding: 35px 25px;
  }
}