* {
  padding: 0;
  margin: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat";
  box-sizing: border-box;
  font-weight: normal;
  font-size: 16px;
  background: #F7F7F7;
}

img {
  max-width: 100%;
}

a,
a:hover {
  text-decoration: none;
}

a {
  transition: .3s;
}

ul {
  margin: 0;
  padding: 0;
}

button:focus,
input:focus {
  outline: none;
}

/* style main */
.logo__txt2 {
  color: rgba(0, 0, 0, 0.77);
  font-size: 12px;
  line-height: 15px;
  display: block;
}

.logo__txt1 {
  color: rgba(51, 51, 51, 0.5);
  font-size: 18px;
  font-family: "HelveticaNeueCyr";
  text-transform: uppercase;
  display: block;
}

.fw-400 {
  font-weight: normal !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.ml-1 {
  margin-left: 14px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mt-big {
  margin-top: 90px;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.fz-md {
  font-size: 14px;
  line-height: 20px;
}

.grey-txt {
  color: #898989;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pl-5 {
  padding-left: 65px;
}

.pt-big {
  padding-top: 115px !important;
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.text-underline {
  text-decoration: underline;
}

.text-white {
  color: #fff;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

.text-left {
  text-align: left !important;
}

/* end main style*/
.top {
  background: #fff;
}

.header__tel {
  color: #333333;
  font-weight: 600;
  font-size: 18px;
}

.sub-menu {
  flex-direction: column;
}

.catalog-btn {
  position: relative;
  height: 60px;
  background: #00456C;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.catalog-btn-txt {
  font-weight: 600;
  color: #fff;
}

.catalog-btn:hover .catalog-btn-txt {
  color: #fff;
  opacity: .8;
}

.sub-menu li {
  list-style-type: none;
  margin-bottom: 15px;
}

.d-flex-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.top-area {
  position: fixed;
  left: 0;
  top: 51px;
  width: 300px;
  z-index: 999;
  height: 100%;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.top-area.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.top-area__wrap {
  height: calc(100% - 52px);
  overflow-y: scroll;
}

.top-area__wrap ul {
  list-style: none;
}

.top-area__header {
  padding-top: 50px;
  padding-bottom: 25px;
  background: #fff;
  padding-left: 15px;
}

.top-area__cont {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
  padding-right: 15px;
}

.ancor-panel__cont.fixed {
  position: fixed;
  top: 0;
}

.d-none {
  display: none !important;
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding-top: 4px;
  padding-bottom: 4px;
}

.top__menu {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top__menu li {
  height: 48px;
  background: #fff;
  border-radius: 3px;
  transition: .5s;
  padding: 3px 15px;
  display: flex;
  align-items: center;
}

.top__menu li a {
  color: #333333;
}

.top__menu li:hover {
  background: rgba(57, 48, 48, 0.03);
}

.top__menu li:hover a {
  color: #925650;
}

/* mobile-search */
.mobile-search {
  display: none;
  z-index: 3;
  top: 75px;
  position: fixed;
  width: 100%;
  background: #fff;
  padding: 20px 0;
}

.search-block__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  padding-right: 7px;
  height: 45px;
  overflow: hidden;
}

.search-block__inp {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  height: 100%;
  color: #000;
  border: none;
  position: relative;
  z-index: 5;
  width: calc(100% - 182px);
  padding-right: 15px;
  padding-left: 30px;
}

.search-block__inp::placeholder {
  color: rgba(86, 75, 73, 0.5);
}

.search-block__btn {
  width: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  background: transparent;
  height: 34px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 10;
}

.searchb {
  position: relative;
  z-index: 10;
}

.search-suggesstion {
  position: absolute;
  top: 100%;
  right: 32px;
  background: #fff;
  border-top: none;
  display: none;
  border-radius: 6px;
  width: 620px;
  z-index: 9;
  box-shadow: 0 0 4px rgb(0 0 0 / 25%);
}

.search-suggesstion .agroup .astitle {
  color: #a92a57;
  font-weight: bold;
  font-size: 12px;
  background: #ffecec;
  padding: 4px 9px;
}

.search-suggesstion .agroup>a.asitem {
  color: #333;
  font-size: 14px;
  padding: 10px 10px;
  border-bottom: 1px solid #e8e8e8;
  word-wrap: normal;
  cursor: pointer;
  display: block;
  line-height: 15px;
  overflow: hidden;
}

.search-suggesstion .agroup>a.asitem img {
  margin-right: 15px;
}

.search-suggesstion .agroup>a.asitem span {
  line-height: 20px;
  vertical-align: middle;
}

.search-suggesstion .agroup>a.asitem:hover {
  background: #bdbdbd;
}

.search-suggesstion .agroup>a.asitem:last-child {
  border-bottom: none;
}

.pr {
  position: relative;
}

/* end search mobile */

.justify-content-end {
  justify-content: flex-end;
}

.menu-button {
  position: relative;
  z-index: 100;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.menu-button__burger {
  position: absolute;
  top: 50%;
  left: 43%;
  width: 20px;
  height: 2px;
  margin: 0px 0 0 -20%;
  -webkit-transition: -webkit-transform 0.2s ease 0s;
  transition: -webkit-transform 0.2s ease 0s;
  -o-transition: transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
}

.menu-button__burger-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.2s linear 0.2s;
  transition: -webkit-transform 0.2s linear 0.2s;
  -o-transition: transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s, -webkit-transform 0.2s linear 0.2s;
  background: #000;
}

.menu-button__burger:after,
.menu-button__burger:before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
}

.menu-button__burger:before {
  top: -6px;
  -webkit-transition: top 0.2s linear 0.4s;
  -o-transition: top 0.2s linear 0.4s;
  transition: top 0.2s linear 0.4s;
}

.menu-button__burger:after {
  bottom: -6px;
  -webkit-transition: bottom 0.2s linear 0.4s;
  -o-transition: bottom 0.2s linear 0.4s;
  transition: bottom 0.2s linear 0.4s;
}

.menu-button.active .menu-button__burger {
  -webkit-transition: -webkit-transform 0.2s linear 0.4s;
  transition: -webkit-transform 0.2s linear 0.4s;
  -o-transition: transform 0.2s linear 0.4s;
  transition: transform 0.2s linear 0.4s;
  transition: transform 0.2s linear 0.4s, -webkit-transform 0.2s linear 0.4s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-button.active .menu-button__burger:before {
  top: 0;
  -webkit-transition: top 0.2s linear;
  -o-transition: top 0.2s linear;
  transition: top 0.2s linear;
}

.menu-button.active .menu-button__burger-line {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.menu-button.active .menu-button__burger:after {
  bottom: 0;
  -webkit-transition: bottom 0.2s linear;
  -o-transition: bottom 0.2s linear;
  transition: bottom 0.2s linear;
}

/* end header */

/* baner */
.top__slider {
  margin-top: 3px;
  position: relative;
}

.top__slider .item {
  padding-top: 115px;
  padding-bottom: 65px;
  background-size: cover;
}

.top__slider .slick-prev {
  left: 0px;
  background: #FFFFFF;
  opacity: 0.5;
  width: 89px;
  height: 95px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  top: 50%;
  transform: translate(0, -50%);
}

.top__slider .slick-prev:after {
  content: none;
}

.top__slider .slick-prev:before {
  background-image: url(../../images/left.svg);
  width: 9px;
  height: 19px;
  background-size: contain;
  background-color: transparent;
  transform: rotate(0);
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top__slider .slick-next {
  right: 0px;
  left: unset;
  background: #FFFFFF;
  opacity: 0.5;
  width: 89px;
  height: 95px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  top: 50%;
  transform: translate(0, -50%);
}

.top__slider .slick-next:after {
  content: none;
}

.top__slider .slick-next:before {
  background-image: url(../../images/right.svg);
  width: 9px;
  height: 19px;
  background-size: contain;
  background-color: transparent;
  transform: rotate(0);
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top__slider .slick-dots {
  bottom: 35px;
  left: 0;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.top__slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 5px;
  display: flex;
  align-items: center;
}

.top__slider .slick-dots li button {
  font-size: 0em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.top__slider .slick-dots li.slick-active button {
  width: 32px;
  height: 14px;
  border-radius: 22px;
}

.top__title {
  font-weight: 700;
  font-size: 40px;
  color: #FFFFFF;
  line-height: 44px;
  margin-bottom: 20px;
}

.top__btn {
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  border: 1px solid rgb(255, 255, 255, .5);
  border-radius: 2px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top__btn:hover {
  color: #fff;
  opacity: .8;
}

.top__btn-half {
  height: 60px;
  width: 60px;
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: #C9C5C1;
  border-radius: 100px 0px 0px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* end baner */

/* products */
.section-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}

.txt-grey {
  color: rgb(86, 75, 73, .5);
}

.products__item {
  background-size: cover;
  padding: 30px 40px;
  height: 100%;
  display: block;
}

.title-md {
  font-size: 22px;
  margin-top: 0;
}

.products__txt {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  width: calc(100% - 40px);
}

.products__footer {
  justify-content: space-between;
  align-items: center;
}

.main__btn {
  width: 36px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  font-weight: 500;
  font-size: 15px;
  color: #FFFFFF;

}

.main__btn:hover {
  opacity: .8;
  color: #FFFFFF;
}

/* end products */

/* popular */
.product__card {
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
  height: 100%;
  display: block;
}

.popular__slider .item {
  margin-right: 15px;
}

.prod__img {
  position: relative;
  display: block;
}

.prod__img .img {
  height: 327px;
  object-fit: cover;
  width: 100%;
}

.new {
  width: 44px;
  height: 44px;
  background: #9D3838;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  margin-bottom: 10px;
}

.pop {
  width: 44px;
  height: 44px;
  background: #B0742F;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod__content {
  padding: 25px;
}

.prod__header {
  position: absolute;
  top: 20px;
  left: 20px;
}

.prod__title {
  font-weight: 600;
  font-size: 19px;
  color: #303030;
  margin-bottom: 12px;
  display: block;
}

.prod__txt {
  color: rgba(51, 51, 51, 0.6);
  font-weight: 500;
  font-size: 13px;
}

.prod__price {
  font-weight: 700;
  font-size: 28px;
  color: #303030;
}

.prod__price span {
  font-size: 18px;
  font-weight: normal;
}

.btn-grey {
  color: #898989;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid #BBBBBB;
  border-radius: 3px;
  width: 216px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-grey span {
  transform: rotate(90deg);
  margin-left: 7px;
  margin-top: 2px;
}

.btn-grey:hover {
  opacity: .8;
  color: #898989;
}

.popular__slider .slick-prev {
  left: 0px;
  background: #FFFFFF;
  opacity: 0.5;
  width: 89px;
  height: 95px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  top: 50%;
  transform: translate(0, -50%);
}

.popular__slider .slick-prev:after {
  content: none;
}

.popular__slider .slick-prev:before {
  background-image: url(../../images/left.svg);
  width: 9px;
  height: 19px;
  background-size: contain;
  background-color: transparent;
  transform: rotate(0);
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popular__slider .slick-next {
  right: 15px;
  left: unset;
  background: #FFFFFF;
  opacity: 0.5;
  width: 89px;
  height: 95px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  top: 50%;
  transform: translate(0, -50%);
}

.popular__slider .slick-next:after {
  content: none;
}

.popular__slider .slick-next:before {
  background-image: url(../../images/right.svg);
  width: 9px;
  height: 19px;
  background-size: contain;
  background-color: transparent;
  transform: rotate(0);
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popular__slider .slick-slide img {
  float: unset;
}

.popular__slider .slick-track {
  display: flex !important;
}

.popular__slider .slick-slide {
  height: inherit !important;
}

/* end popular products */

/* about */
.about {
  position: relative;
  background: rgba(17, 16, 16, 0.05);
  padding-bottom: 120px;
  margin-top: 225px;
}

.about::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-image: url(../../images/abt-fig.png);
}

.about__layout {
  background: #fff;
  font-size: 15px;
  color: rgba(51, 51, 51, 0.7);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 0 30px 40px 30px;
  position: absolute;
  top: -135px;
  width: 510px;
  z-index: 2;
}

.about__layout .section-title {
  margin-bottom: 15px;
}

.about__layout::after {
  position: absolute;
  content: "";
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  height: 100%;
  width: 109px;
  z-index: -1;
  right: -47px;
  top: 0;
  background: #fff;
}

.btn-link {
  font-weight: 500;
  font-size: 15px;
  color: #C5BE9D;
}

.abt__img {
  margin-top: -65px;
}

.adv__contetnt {
  font-weight: 500;
  font-size: 13px;
  color: rgba(51, 51, 51, 0.6);
  width: calc(100% - 50px);
}

.adv__title {
  font-weight: 600;
  font-size: 18px;
  color: #303030;
  margin-bottom: 12px;
  margin-top: 0;
}

/* end about */


/* footer */
.footer {
  padding-top: 60px;
  background-image: url(../../images/footer.jpg);
  background-size: cover;
}

.txt-tiny {
  font-size: 13px;
  font-weight: 300;
}

.footer__menu li {
  list-style-type: none;
  margin-bottom: 15px;
}

.footer__menu li a {
  font-weight: 600;
  font-size: 14px;
  color: #757575;
}

.footer__title {
  color: #303030;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 2px solid #303030;
  width: 60px;
}

.txt-red {
  color: #925650 !important;
}

.txt-dark {
  color: #333 !important;
}

.time-t {
  font-weight: 300;
  font-size: 14px;
}

.footer .logo__txt1 {
  color: #BBBBBB;
}

.footer .logo__txt2 {
  color: #303030;
}

.site-bottom {
  font-size: 14px;
  padding-bottom: 30px;
}

.web-dev {
  font-family: 'Gilroy';
  position: relative;
}

.web-dev img {
  position: absolute;
  top: -10px;
  right: -20px;
}

/* -------------------------------- */

/* CATEGORY PAGE */
.breadcrumbs {
  margin: 30px 0;
}

.breadcrumbs a {
  color: #000;
  font-size: 10px;
  position: relative;
  text-transform: uppercase;
  margin: 0 3px;
}

.breadcrumbs a:last-child {
  color: rgb(0, 0, 0, .5);
}

.breadcrumbs a:before {
  content: "/";
  position: absolute;
  top: 0px;
  width: 1px;
  height: 100%;
  color: #000;
  right: -5px;
}

.breadcrumbs a:last-child::before {
  content: none;
}

.category__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  color: #3A3A3A;
  height: 66px;
  margin-right: 15px;
  transition: 0.3s;
  margin-bottom: 25px;
  padding: 15px;
}

.category__item:hover {
  border: 1px solid #925650;
  color: #925650;
}

.category__image {
  width: 50px;
}

.category__link {
  display: block;
  font-size: 16px;
  color: #000;
  width: calc(100% - 50px);
}

.position-relative {
  position: relative;
}

/* filter */
.title-sm {
  font-size: 12px;
  color: #666666;
  margin-right: 20px;
}

.sorting {
  background: #FFFFFF;
  border-radius: 3px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}

.sorting__btn {
  border: 0.882709px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  height: 33px;
  display: flex;
  padding-left: 15px;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  color: #303030;
  width: 205px;
  position: relative;
}

.sorting__btn:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 8px;
  right: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../../images/dowb2.svg);
  -webkit-transition: transform 0.5s ease-in;
  -moz-transition: transform 0.5s ease-in;
  -ms-transition: transform 0.5s ease-in;
  -o-transition: transform 0.5s ease-in;
  transition: transform 0.5s ease-in;
  background-size: contain;
}

.sorting__box {
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 6px 20px rgb(68 68 68 / 25%);
  border-radius: 5px;
  width: 100%;
  padding: 15px;
  top: 40px;
  flex-direction: column;
  left: 0px;
  z-index: 99;
  display: none;
}

.sorting__box a {
  font-weight: 500;
  font-size: 14px;
  color: #303030;
}

.change-view {
  width: 70px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.change-view button {
  border: none;
  background: none;
  width: 50%;
  height: 100%;
  position: relative;
}

#btn_tab img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
}

#btn_grid img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 21px;
}

.change-view button img:first-child {
  display: none;
}

.change-view button.active {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EFF0F3;
}

.change-view button.active img:first-child {
  display: block;
}

.grid-view .grid-card {
  width: 100%;
}

.grid-view .grid-card .product__card {
  display: flex;
}

.grid-view .grid-card .prod__img .img {
  height: 155px;
  width: 155px;
}

.grid-view .grid-card .prod__content {
  width: calc(100% - 155px);
}

.grid-view .grid-card .item .overlay {
  visibility: hidden;
}

.grid-view .grid-card .item:hover .prod__title,
.grid-view .grid-card .item:hover .prod__price {
  color: #303030 !important;
}

.grid-view .grid-card .item:hover .prod__txt {
  color: rgba(51, 51, 51, 0.6);
}

.grid-view .grid-card .new,
.grid-view .grid-card .pop {
  width: 28px;
  height: 28px;
  font-size: 8px;
}

.grid-view .grid-card .prod__header {
  top: 11px;
  left: 10px;
}

.grid-view .grid-card .pop img {
  width: 9px;
}

.filter__wrap {
  background: #fff;
  margin-top: 5px;
  padding: 25px 18px;
}

.filter__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #303030;
}

.filter__container a {
  color: #000;
  position: relative;
  margin: 5px 0;
}

.right-line {
  height: 100%;
  border-right: 1px solid #000;
  margin: 0 15px;
}

.filter__sort {
  color: #777;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  width: 22px;
  height: 22px;
  background: #9D3838;
  border-radius: 50%;
  border: 0;
  top: -9px;
}

.ui-slider-handle:hover,
.ui-slider-handle:active,
.ui-slider-handle:focus {
  outline: none;
}

.ui-slider-horizontal .ui-slider-range {
  top: -1px;
  height: 5px;
  background: #9D3838;
}

.ui-widget-content {
  height: 2px;
  background: rgba(51, 51, 51, 0.33);
  border: none;
  border-radius: none;
  top: 25px;
}

.slider-wrapper {
  height: 40px;
}

.price-input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(51, 51, 51, 0.6);
  font-weight: 500;
  font-size: 13px;
  text-align: center;
}

.f__item {
  border-bottom: 1px solid #E3E3E5;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.check__wrapp {
  margin-bottom: 10px;
}

.radio-btn [type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio-btn [type="radio"]:checked+label,
.radio-btn [type="radio"]:not(:checked)+label {
  position: relative;
  margin-right: 15px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}

.radio-btn [type="radio"]:checked+label:after,
.radio-btn [type="radio"]:not(:checked)+label:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  top: -5px;
  left: -5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 1px solid #925650;
}

.radio-btn [type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.radio-btn [type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.radio-btn .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.custom-radios input[type="checkbox"] {
  display: none;
}

.custom-radios label {
  font-weight: 500;
  font-size: 13px;
  color: rgba(51, 51, 51, 0.6);
  display: flex;
  align-items: center;
}

.custom-radios input[type="checkbox"]+label span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  margin-right: 10px;
  cursor: pointer;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
}

.custom-radios .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.custom-radios .round input[type="checkbox"]+label span {
  border-radius: 50%;
  border: 1px solid #fff;
}

.custom-radios input[type="checkbox"]:checked+label {
  color: #925650;
}

.custom-radios.round input[type="checkbox"]:checked+label {
  color: rgba(51, 51, 51, 0.6);
}

.custom-radios.round input[type="checkbox"]:checked+label span {
  border: 1px solid #925650;
}

.custom-radios input[type="checkbox"]:checked+label span {
  border: 1px solid #925650;
  background: #fff;
}

.custom-radios input[type="checkbox"]+label span img {
  opacity: 0;
  transition: all 0.3s ease;
  width: 12px;
  height: 9px;
}

.custom-radios input[type="checkbox"]:checked+label span img {
  opacity: 1;
}

.f__btn {
  width: 90%;
  margin: 0 auto;
}

.btn-red {
  height: 60px;
  background: #925650;
  border: 1px solid #925650;
  border-radius: 3px;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-red:hover {
  color: #fff;
  opacity: .8;
}

.btn-red.btn-transp {
  background: transparent;
  border: 1px solid #925650;
  color: #925650;
}

.cat__footer {
  align-items: center;
  justify-content: space-between;
}

.pagination-list {
  display: flex;
  list-style-type: none;
}

.pagination-list a {
  border: 0.8px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  width: 54px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-weight: 500;
  font-size: 14px;
  color: rgba(51, 51, 51, 0.6);
  background: transparent;
}

.pagination-list a.active,
.pagination-list a:hover {
  background: #898989;
  color: #fff;
  border: 0.8px solid #898989;
}

.about-products p:not([class]) {
  color: rgba(51, 51, 51, 0.7);
  font-size: 15px;
}

.about-products ul li {
  font-size: 15px;
  color: rgba(51, 51, 51, 0.7);
  padding-left: 20px;
  list-style-type: none;
  position: relative;
  margin-bottom: 5px;
}

.about-products ul li:before {
  position: absolute;
  content: "";
  top: 10px;
  left: 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(51, 51, 51, 0.7);
}

.filter_header {
  padding: 13px 0;
  width: 100%;
  background: #925650;
  border: 1px solid #925650;
  border-radius: 3px;
  color: #fff;
  display: none;
}

.filter-mobile {
  display: none;
}

.product__row {
  display: flex;
  flex-wrap: wrap;
}

.product__row .col-xs-6 {
  margin-bottom: 30px;
}

.product__row .product__title {
  min-height: 70px;
}

.prod__img .categ-img {
  height: 277px;
  width: 100%;
}

/* END CATEGORY PAGE */

/* PRODUCT PAGE */
.product-single {
  background: #fff;
  border-radius: 3px;
}

.single-image {
  position: relative;
}

.products-single__gallery-layout {
  display: flex;
  justify-content: space-between;
}

.one-product__slider {
  width: calc(100% - 110px);
  display: inline-block !important;
}

.one-product__slider_navigation {
  width: 85px;
  display: inline-block;
  padding: 85px 0;
}

.one-product__slider_navigation .single-nav .item {
  border: 1px solid transparent;
  width: 83px;
  height: 63px;
  border-radius: 5px;
  padding: 5px;
}

.one-product__slider_navigation .single-nav.slick-slide.slick-current.slick-active .item {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.one-product__slider_navigation .slick-prev {
  left: 0;
  top: 30px;
  width: 83px;
  background: #FFFFFF;
  border: 0.8px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  height: 39px
}

.one-product__slider_navigation .slick-next {
  width: 83px;
  background: #FFFFFF;
  border: 0.8px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  height: 39px;
  bottom: 30px;
  left: unset;
}

.one-product__slider_navigation .slick-prev:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  background-image: url(../../images/prev1.svg);
  z-index: 2;
}

.one-product__slider_navigation .slick-next:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  background-image: url(../../images/next1.svg);
  z-index: 2;
}

.one-product__slider_navigation .slick-prev:before,
.one-product__slider_navigation .slick-next:before {
  content: none;
}

.single-desk {
  font-weight: 300;
  font-size: 13px;
  color: rgba(51, 51, 51, 0.7);
}

.attr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 5px;
  margin-bottom: 5px;
  color: #757575;
}

.attr span {
  width: 50%;
}

.attr span:last-child {
  color: #000000;
  text-align: right;
}

.tb__row {
  display: flex;
  align-items: center;
  color: #777777;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.tb__row span {
  width: 50%;
  display: block;
}

.tb__row span:last-child {
  color: #000;
  font-weight: 500;
}

.tbl__desc p {
  color: #303030;
  font-size: 15px;
  margin-bottom: 25px;
}

.seen__slider .item {
  border-radius: 3px;
  background: #fff;
}

.seen__content {
  padding: 20px;
}

.seen__content {
  color: rgba(51, 51, 51, 0.6);
  font-weight: 500;
  font-size: 13px;
}

.seen__img img {
  object-fit: cover;
  width: 100%;
  border-radius: 3px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  top: 0;
  z-index: 1;
  transition: .3s;
}

.overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}

.item {
  position: relative;
}

.item:hover .overlay {
  opacity: 1;
}

.seen__slider .item {
  margin-right: 20px;
}

.overlay:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(78, 52, 50, .66);
  transition: .3s;
}

.seen__slider .item:hover .seen__content {
  color: #fff;
  z-index: 2;
  position: relative;
}

.item:hover .prod__content {
  position: relative;
  z-index: 2;
  color: #fff !important;
}

.item:hover .prod__content a,
.item:hover .prod__txt,
.item:hover .prod__price,
.item:hover .prod__title {
  color: #fff;
}

.item:hover .prod__header {
  z-index: 2;
}

.slick-slide img {
  float: unset;
}

.seen__slider .slick-prev {
  left: 0px;
  background: #FFFFFF;
  opacity: 0.5;
  width: 51px;
  height: 55px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  top: 50%;
  transform: translate(0, -50%);
}

.seen__slider .slick-prev:after {
  content: none;
}

.seen__slider .slick-prev:before {
  background-image: url(../../images/left.svg);
  width: 9px;
  height: 19px;
  background-size: contain;
  background-color: transparent;
  transform: rotate(0);
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.seen__slider .slick-next {
  right: 20px;
  left: unset;
  background: #FFFFFF;
  opacity: 0.5;
  width: 51px;
  height: 55px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  top: 50%;
  transform: translate(0, -50%);
}

.seen__slider .slick-next:after {
  content: none;
}

.seen__slider .slick-next:before {
  background-image: url(../../images/right.svg);
  width: 9px;
  height: 19px;
  background-size: contain;
  background-color: transparent;
  transform: rotate(0);
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* END */

/* modal */
.modal-title {
  font-weight: 600;
  font-size: 20px;
  color: #303030;
  line-height: 22px;
}

.form-group input {
  background: #FFFFFF;
  border: 1px solid rgba(130, 130, 130, 0.4);
  border-radius: 3px;
  width: 100%;
  height: 60px;
  padding-left: 18px;
  font-size: 14px;
  color: #000;
}

.modal-content {
  padding: 15px;
}

.modal-header {
  border: none;
}

.modal-header .close {
  position: absolute;
  top: 30px;
  right: 35px;
}

.text-sm {
  color: rgba(51, 51, 51, 0.7);
  font-weight: 300;
  font-size: 12px;
  padding-left: 15px;
}

/* end modald */

/* RESPONSIVE */
@media (min-width: 576px) {
  .justify-content-start-sm {
    justify-content: start !important;
  }
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 425px;
    margin: 30px auto;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .ancor-panel {
    margin-top: 52px;
    position: relative;
    display: none;
  }

  .ancor-panel__cont {
    position: absolute;
    top: -52px;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .top-area {
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    z-index: 110;
  }

  .top-area__cont {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-header {
    position: relative;
    padding-top: 15px;
    background: #fff;
    padding-bottom: 25px;
  }

  .categories {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    padding: 30px 20px;
    list-style-type: none;
    margin-top: 8px;
  }

  .categories li {
    margin-bottom: 15px;
  }

  .sub-menu {
    position: absolute;
    width: 100%;
    z-index: 9;
    top: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    visibility: hidden;
    opacity: 0;
    padding: 30px 20px;
  }

  .catalog-btn:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .sub-menu__link {
    color: #3A3A3A;
  }

  .sub-menu__link img {
    margin-right: 15px;
  }

  

}

@media (min-width: 1200px) {
  .container {
    width: 1230px;
  }

  .header__address {
    padding-left: 150px;
  }
}

@media (max-width: 1199px) {
  .p-0 {
    padding: 0;
  }

  body {
    font-size: 14px;
  }

  .top__menu li {
    padding: 3px 10px;
  }

  .prod__img .img {
    height: 220px;
  }

  .cat__footer {
    flex-direction: column-reverse;
    justify-content: center;
  }

  .btn-grey {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {

  .prod__title {
    font-size: 17px;
  }

  .top {
    display: none;
  }

  .sub-menu.active {
    display: block;
    -webkit-box-shadow: inset 0 0 15px rgb(0 0 0 / 15%);
    box-shadow: inset 0 0 15px rgb(0 0 0 / 15%);
  }


  .site-header {
    background: #fff;
    border-bottom: 1px solid #eeeeee;
  }

  .top-area {
    background-color: #fff;
  }

  .top__menu li {
    height: auto;
    background: transparent;
    border-radius: 3px;
    transition: .5s;
    padding: 3px 15px;
    display: flex;
    align-items: center;
  }

  .top-area__header {
    padding-bottom: 0;
    padding-right: 15px;
  }


  .sub-menu {
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
  }

  .top__menu {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }

  .sub-menu__link {
    padding: 0px 15px;
    display: block;
    color: #000;
  }

  .sub-menu__link img {
    margin-right: 10px;
  }

  .filter__wrap {
    margin-bottom: 30px;
  }

  .filter__wrap.active {
    display: block;
  }

  .filter_header {
    display: block;
  }

  .breadcrumbs {
    margin-top: 95px;
  }

  .site-bottom {
    text-align: center;
  }

  .product-single {
    padding: 25px;
  }

  .search-suggesstion {
    right: 0;
    left: 0;
    width: 100%;
  }
  
}

@media (max-width: 767px) {

  .d-none-md {
    display: none;
  }

  .top__title {
    font-size: 35px;
  }

  .prod__content {
    padding: 15px;
  }

  .prod__price,
  .section-title {
    font-size: 25px;
  }

  .about {
    position: relative;
    background: rgba(17, 16, 16, 0.05);
    padding: 60px 0;
    margin-top: 65px;
  }

  .about__layout {
    width: 100%;
    position: static;
    padding-top: 10px;
  }

  .about__layout::after {
    content: none;
  }

  .abt__img,
  .footer__title {
    display: none;
  }

  .mt-big {
    margin-top: 50px;
  }

  .prod__img .categ-img {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .logo__txt1 {
    font-size: 13px;
  }

  .site-header .logo__txt2 {
    display: none;
  }

  .logo {
    width: 35px !important;
  }

  .mobile-search {
    top: 50px;
  }

  .top__title {
    font-size: 30px;
  }

  .prod__price,
  .section-title {
    font-size: 22px;
  }

  .pagination-list a {
    margin-right: 10px;
    width: 40px;
    height: 30px;
  }

  .products-single__gallery-layout {
    flex-direction: column;
  }

  .one-product__slider {
    width: 100%;
  }

  .one-product__slider_navigation {
    width: 100%;
    padding: 0;
  }

  .popular__slider .slick-next,
  .popular__slider .slick-prev {
    width: 55px;
    height: 50px;
  }

  .pl-5 {
    padding-left: 0;
  }

  .f_col {
    width: 100%;
  }

  .footer {
    text-align: center;
  }
}

@media (max-width: 475px) {

  .top__slider .item .col-xs-6,
  .grid-view .col-xs-6 {
    width: 100%;
  }

  .change-view {
    display: none;
  }

  .top__btn {
    font-size: 13px;
    height: 40px;
    margin-bottom: 20px;
  }

  .top__btn-half {
    height: 40px;
    width: 40px;
  }

  .btn-cons {
    font-size: 13px;
  }

  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mobile-search {
    top: 63px;
    padding: 10px 0;
  }

  .filter__sort {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .filter__container {
    width: 100%;
  }

  .title__wrapp {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 425px) {
  .baner__txt h1 {
    font-size: 30px;
  }

  .cart__amount {
    width: 15px;
    height: 15px;
  }

  .site-header__logo-cont img {
    width: 145px;
  }

  .menu-button__burger {
    top: 46%;
    left: 38%;
  }

  .categ__img.link {
    flex-direction: column;
    justify-content: center;
  }

  .categ__link {
    margin-bottom: 20px;
  }

  .cons__tel {
    width: 200px;
    height: 40px;
  }

  .cons__wa,
  .cons__tg {
    width: 40px;
    height: 40px;
  }

  .cons__wa {
    margin: 0 5px;
  }

  .cons__content h2 {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
  .products__slider__content h1 {
    font-size: 22px;
  }

  .product__row .col-xs-6 {
    width: 100%;
  }

  .products__slider__content h1 span:first-child {
    width: 100%;
  }

  .product__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .product__popular .col-xs-6 {
    width: 100%;
  }

}