@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800;900&display=swap');

/* style general
-----------------*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', 'Arial', sans-serif;
}

html {
  height: -webkit-fill-available;
}

body {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", "Arial", sans-serif;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

body.fix {
  overflow: hidden;
}

a {
  text-decoration: none;
  z-index: 0;
  display: inline-block;
}

li {
  list-style: none;
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
}

input[type="submit"], input[type='number'], select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="radio"], input[type="checkbox"] {
  display: none;
}

mark {
  background: transparent;
}

header, main, section, footer {
  width: 100%;
}

:root {
  --color-theme: #414141;
  --color-button: #618FA5;
  --bg-lite: #F9F9F9;
  --color-icon: #526168;
  --color-no-valide: #E81717;
  --content-size: calc(50% - 575px);
}

h3 {
  font-size: 28px;
  line-height: 120%;
  color: var(--color-theme);
  font-weight: 600;
  text-align: center;
  width: max-content;
  margin: 0 auto;
}

.animate__animated {
  opacity: 0;
  transition: .8s ease;
}

.animate__animated.visible {
  opacity: 1;
}

/* style header
-----------------*/
.header {
  padding-bottom: 10px;
}

.header__wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--content-size);
}

.header__wrap:nth-child(3) {
  padding: 35px var(--content-size) 7px;
  align-items: flex-start;
}

.top-wrap {
  background-color: var(--bg-lite);
  padding: 10px var(--content-size);
}

.header__menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.header__menu li {
  margin-right: 25px;
}

.header__menu li:last-child {
  margin-right: 0;
}

.header__menu a {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: var(--color-theme);
  font-family: 'Nunito', sans-serif;
  transition: .4s ease;
}

.header__menu a:hover, .header__user a:hover {
  color: var(--color-button);
}

.header__user {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.header__user a {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--color-theme);
  transition: .4s ease;
}

.vertical-line {
  width: 1px;
  height: 14px;
  background-color: var(--color-theme);
  margin: 0 10px;
  display: inline-block;
}

.header__info-icon {
  width: 40px;
  height: 40px;
  background-color: var(--bg-lite);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}

.header__info svg {
  fill: var(--color-icon);
  width: 22px;
}

.header__logo-img {
  fill: var(--color-icon);
  width: 178px;
}


.header__info {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.header__info:nth-child(1), .header__info:nth-child(2) {
  justify-content: flex-start;
}

.header__info:nth-child(1) .header__info-icon, .header__info:nth-child(2) .header__info-icon {
  margin: 0 10px 0 0;
}

.header__info-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.header__info-text span {
  font-weight: 900;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--color-theme);
  font-family: 'Nunito', sans-serif;
}

.header__info-text p, .header__info-text a {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: var(--color-theme);
  transition: .4s ease;
}

.header__info-text a:hover {
  color: var(--color-button);
}

.header__info:nth-child(1) .header__info-text, .header__info:nth-child(2) .header__info-text {
  align-items: flex-start;
}

.header__info-text p, .header__info-text p {
  text-align: right;
}

.header__info:nth-child(1) p, .header__info:nth-child(2) p {
  text-align: left;
}

.header__categories {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.header__categories li {
  padding: 8px 10px;
  background: var(--bg-lite);
  border-radius: 5px;
  margin-right: 5px;
}

.header__categories li:last-child {
  margin-right: 0;
}

.header__categories a {
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
  transition: .4s ease;
  color: var(--color-theme);
}

.header__categories a:hover {
  color: var(--color-button);
}

.header__order-management {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.header__card {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header__card svg {
  width: 22px;
  margin-right: 5px;
  transition: .4s ease;
}

.header__order-management svg {
  fill: var(--color-icon);
}

.header__order-management button, .header__card {
  background-color: #F9F9F9;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: .4s ease;
}

.header__card span {
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  transition: .4s ease;
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: 10;
  padding: 1px 2px;
  background-color: #526168;
  border-radius: 2px;
}

.header__order-management button:hover, .header__search.active, .header__card:hover {
  background-color: var(--color-button);
}

.header__search svg {
  width: 20px;
  transition: .4s ease;
}

.header__order-management button:hover svg, .header__search.active svg, .header__card:hover svg {
  fill: #fff;
}

.header__order-management button:hover span, .header__search.active span, .header__card:hover span {
  color: #fff;
}

.header__search {
  width: 34px;
  height: 34px;
  margin-left: 5px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header__logo a {
  display: block;
  margin-bottom: 10px;
}

.header__logo span {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  color: #414141;
}

.header__open-menu, .header__mobile-phone, .header__mobile-basket, .header__mobile-search {
  width: 26px;
  height: 26px;
  background: var(--bg-lite);
  border-radius: 5px;
  transition: .4s ease;
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header__basket-orders {
  position: absolute;
  top: -2px;
  right: -2px;
  font-weight: bold;
  font-size: 8px;
  line-height: 100%;
  color: #fff;
  padding: 2px;
  background-color: #526168;
  border-radius: 2px;
  height: 10px;
  width: 10px;
  min-width: 10px;
  display: flex;
  justify-content: center;
  align-content: center;
}

.header__mobile-phone, .header__mobile-search {
  margin-left: 5px;
}

.header__mobile-menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background-color: #fff;
  transition: .4s ease;
  padding: 6px 6px 100px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.header__mobile-menu.hide {
  left: -100vw;
}

.header__mobile-menu > div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header__mobile-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header__mobile-social li {
  margin-right: 15px;
}

.header__mobile-social a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background-color: var(--bg-lite);
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__mobile-contacts li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 13px;
}

.header__mobile-contacts li:last-child, .header__mobile-social li:last-child, .header__mobile-nav > ul li:last-child {
  margin: 0;
}

.header__mobile-contacts li span, .header__mobile-contacts li a {
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  color: var(--color-theme);
  display: inline-block;
  margin-left: 3px;
}

.header__mobile-nav > ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header__mobile-nav > ul li {
  margin-bottom: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.header__mobile-nav > ul > li > a {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: var(--color-theme);
}

.bottom__menu {
  overflow: hidden;
  height: 0;
}

.bottom__menu li {
  margin-top: 12px;
}

.bottom__menu a {
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  color: var(--color-theme);
}

.arrow-menu.open + .bottom__menu {
  height: auto;
}

.arrow-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 3px;
  transition: .4s ease;
  position: absolute;
  right: 0;
  top: 8px;
}

.arrow-menu.open {
  transform: rotate(180deg);
  top: 7px;
}

.arrow-menu svg {
  width: 6px;
  height: 3px;
}

.header__mobile-wrap {
  width: 100%;
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header__mobile-wrap > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* style content sidebar
----------------------*/

.content-sidebar {
  width: 100%;
  overflow-x: hidden;
}

/* style breadcrumbs
----------------------*/
.breadcrumbs {
  width: 100%;
  padding: 20px var(--content-size) 0;
  background-color: var(--bg-lite);
}

.breadcrumbs a {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #A3A3A3;
  transition: .4s ease;
  display: inline-flex;
}

.breadcrumbs a:after {
  content: "-";
  margin: 0 5px;
}

.breadcrumbs a:last-child:after {
  content: none;
}

.breadcrumbs a:last-child, .breadcrumbs a:hover {
  color: var(--color-theme);
}

.breadcrumbs + section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* style preview
----------------------*/
.preview__slider, .preview__slider-item {
  width: 100%;
}

.preview__slider-item {
  position: relative;
  height: 767px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.preview__slider-item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
}

.preview__slider-item img {
  min-height: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 5;
}

.preview__slider-content {
  position: relative;
  z-index: 30;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 5px;
  padding: 30px 30px 40px;
  max-width: 640px;
  width: 100%;
  margin: 0 auto 0 var(--content-size);
}

.preview__slider-content h2 {
  font-weight: 700;
  font-size: 39px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-theme);
  font-family: 'Nunito', sans-serif;
}

.preview__slider-content p {
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
  color: var(--color-theme);
  margin-top: 12px;
}

.preview__slider-content a {
  padding: 15px 20px;
  text-align: center;
  display: block;
  border: 1px solid var(--color-button);
  border-radius: 5px;
  color: var(--color-button);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  margin-top: 20px;
  width: max-content;
  transition: none;
}

.preview__slider-content a.no-touch:hover {
  background-color: var(--color-button);
  color: #fff;
  transition: .4s ease;
}

/* style products
----------------------*/
.products {
  padding: 80px var(--content-size);
}

.products.lite-bg {
  background-color: var(--bg-lite);
}

.products__wrap {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.products__wrap:last-child {
  margin-bottom: 0;
}

.products__wrap.reverse {
  justify-content: flex-end;
}

.products__slider {
  width: 695px;
  height: 462px;
  overflow: hidden;
  border-radius: 5px;
}

.products__slider .slick-track li {
  width: 100%;
  height: 462px;
  position: relative;
}

.products__slider .slick-dots {
  bottom: 20px;
  left: 30px;
  width: max-content;
}

.products__slider .slick-dots li {
  margin: 0;
}

.products__slider .slick-dots li.slick-active button {
  background-color: var(--color-button);
}

.products__slider .slick-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}

.products__slider img {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.products__info {
  position: absolute;
  right: 0;
  width: 100%;
  max-width: 575px;
  min-height: 260px;
  padding: 30px 10px 50px 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.products__wrap.reverse .products__info {
  right: auto;
  left: 0;
}

.products__info h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: var(--color-theme);
  width: max-content;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-button);
}

.products__info p {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--color-theme);
}

.products__info a {
  border: 1px solid var(--color-button);
  border-radius: 5px;
  padding: 12px 26px;
  color: var(--color-button);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  margin-top: 30px;
  transition: none;
}

.products__info a.no-touch:hover {
  background-color: var(--color-button);
  color: #fff;
  transition: .4s ease;
}

/* pagination */

.van-paginagion-active {
  width: 35px;
  height: 35px;
  background: var(--color-button);
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  border-radius: 5px;
}

.van-paginagion {
  width: 35px;
  height: 35px;
  background: #fff;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  border-radius: 5px;
}

.van-paginagion:hover {
  background: #9fb8ce
}

.van-paginagion > a {
  color: var(--color-button);
}

.van-paginagion > a:hover {
  text-decoration: none
}

.van-paginagion-active > a {
  color: #fff
}

.van-paginagion-active > a:hover {
  text-decoration: none
}

.van-paginagion-li {
  display: inline;
  list-style-type: none;
  margin-right: 10px
}

.van-paginagion-ul {
  display: inline-flex
}

.van-paginagion-block {
  text-align: center;
  padding-bottom: 60px;
  padding-top: 20px
}


/* style advantages
----------------------*/
.advantages {
  padding: 80px var(--content-size);
  background-color: var(--bg-lite);
}

.advantages h3 mark {
  font-weight: 700;
  color: var(--color-theme);
}

.advantages__list {
  width: 100%;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 30px;
}

.advantages__list li {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.advantages__list svg {
  height: 70px;
  margin-bottom: 25px;
}

.advantages__list li:last-child svg {
  height: 50px;
  margin: 15px auto 30px;
}

.advantages__list p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #3A4549;
}

.advantages__list p mark {
  font-weight: 600;
  color: var(--color-theme);
}

/* style new production
----------------------*/
.new-products {
  padding: 80px var(--content-size);
}

.new-products h3 {
  position: relative;
  width: max-content;
}

.new-products h3:before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-image: url("../img/icons/fire.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
}

.new-products__slider {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.slider__prev, .slider__next {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: .4s ease;
  border-radius: 50%;
}

.slider__prev svg, .slider__next svg {
  fill: var(--color-theme);
  transition: .4s ease;
  width: 8px;
}

.slider__prev:hover, .slider__next:hover {
  background-color: rgba(201, 214, 215, 0.6);
}

.slider__prev {
  right: calc(100% + 35px);
}

.slider__next {
  left: calc(100% + 35px);
}

.new-products__list {
  display: inline-flex;
  width: 100%;
}

.new-products__list .slick-list {
  padding: 15px 0;
}

.new-products__item {
  width: 560px;
  background: #fff;
  box-shadow: 0 0 15px rgba(65, 65, 65, 0.20);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 30px;
  margin: 0 15px;
}

.new-products__img {
  width: 100%;
  height: 270px;
  overflow: hidden;
  position: relative;
  border-radius: 5px 5px 0 0;
}

.new-products__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  min-height: 101%;
}

.new-products__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-theme);
  margin-top: 30px;
  padding: 0 15px;
  width: 100%;
  text-align: center;
}

.new-products__item[data-available="true"] .marker-stock {
  color: var(--color-button);
}

.new-products__item[data-available="false"] .marker-stock {
  color: var(--color-theme);
}

.popular__title {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: #3A4549;
  margin-top: 31px;
  padding: 0 10px;
}

.new-products__cost {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: var(--color-button);
  display: inline-block;
}

.new-products__cost mark {
  font-weight: 300;
  font-size: 18px;
  color: var(--color-button);
}

.new-products__details {
  padding: 12px 26px;
  border: 1px solid var(--color-button);
  border-radius: 5px;
  transition: .4s ease;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-button);
  margin-top: 20px;
}

.new-products__details.no-touch:hover {
  background-color: var(--color-button);
  color: #fff;
}

/* style add-service
----------------------*/
.add-service {
  padding: 80px var(--content-size);
  display: grid;
  grid-template-columns: 1fr 560px;
  grid-column-gap: 50px;
  background-color: var(--bg-lite);
}

.add-service__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.add-service__info h3 {
  margin: 0;
}

.add-service__info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-theme);
  margin-top: 20px;
}

.add-service__info a {
  display: block;
  text-align: center;
  border: 1px solid var(--color-button);
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--color-button);
  transition: .4s ease;
  margin-top: 40px;
  padding: 15px 20px;
}

.add-service__info a.no-touch:hover {
  background-color: var(--color-button);
  color: #fff;
}

.add-service__list, .add-service__item {
  width: 100%;
}

.add-service__item {
  display: grid;
  grid-template-columns: 92px 83px 1fr;
  margin-bottom: 25px;
}

.add-service__item:last-child {
  margin-bottom: 0;
}

.add-service__item img {
  width: 100%;
  grid-column: 1/3;
  grid-row: 1/2;
  margin: auto;
  position: relative;
  z-index: 50;
}

.add-service__item div {
  grid-column: 2/4;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #fff;
  padding: 10px 44px 7px 94px;
  border-radius: 5px;
  height: 80px;
}

.add-service__item h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-theme);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}

.add-service__item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--color-icon);
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

/* style popular
----------------------*/
.popular {
  padding: 80px var(--content-size);
}

.popular__list {
  width: 100%;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: max-content max-content;
  grid-gap: 30px 32px;
}

.popular__item {
  width: 100%;
  background: #fffF;
  box-shadow: 0 0 20px rgba(65, 65, 65, 0.25);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 30px;
}

.popular__img {
  width: 100%;
  height: 240px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}

.popular__img img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-height: 100%;
  transition: .4s ease;
}

.popular__item:hover img {
  width: 103%;
}

.marker-stock {
  position: absolute;
  z-index: 20;
  top: 20px;
  right: 0;
  padding: 3px 5px;
  background: #fff;
  border-radius: 5px 0 0 5px;
  display: inline-block;
}

.popular__item[data-available="true"] .marker-stock {
  color: var(--color-button);
}

.popular__item[data-available="false"] .marker-stock {
  color: var(--color-theme);
}

.popular__title {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: #3A4549;
  margin-top: 31px;
  padding: 0 10px;
}

.popular__cost {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: var(--color-button);
  display: inline-block;
}

.popular__cost mark {
  font-weight: 300;
  font-size: 18px;
  color: var(--color-button);
}

.popular__details {
  padding: 12px 26px;
  border: 1px solid var(--color-button);
  border-radius: 5px;
  transition: .4s ease;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-button);
  margin-top: 20px;
}

.popular__details.no-touch:hover {
  background-color: var(--color-button);
  color: #fff;
}

/* style feedback
----------------------*/
.feedback {
  padding: 80px var(--content-size);
  background-color: var(--bg-lite);
}

.feedback__wrap {
  width: 100%;
  position: relative;
  margin-top: 65px;
}

.feedback__list {
  width: 100%;
  display: inline-flex;
}

.feedback__list .slick-list {
  padding-top: 30px;
}

.feedback__item {
  width: 100%;
  background-image: url("../img/marks.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) 0;
  background-size: 161px;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 25px 40px;
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: 50px auto;
  margin: 0 40px;
}

.feedback__img {
  width: 100px;
  height: 100px;
  background-color: #C4C4C4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  grid-column: 1/2;
  top: -50px;
}

.feedback__img img {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.feedback__name {
  font-weight: 400;
  height: max-content;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--color-theme);
  grid-column: 2/3;
  margin-left: 20px;
}

.slick-initialized .feedback__item.slick-slide {
  display: grid;
}

.feedback__item p {
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-theme);
  margin-top: 30px;
  grid-column: 1/3;
}

.feedback__item time {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #C4C4C4;
  margin-top: 20px;
  display: inline-block;
  grid-column: 1/3;
}

/* style price
-----------------*/
.price {
  padding: 80px var(--content-size);
  background-color: var(--bg-lite);
  display: grid;
  grid-template-columns: 256px 1fr;
  grid-column-gap: 30px;
}
.price.no_form {
	grid-template-columns: none;
}
.price__result, .price__result {
  width: 100%;
}

.price__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.no_form .price__list {
	grid-template-columns: repeat(3, 1fr);
}
.price__item {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 20px rgba(65, 65, 65, 0.25);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 30px;
}

.price__item[data-available="true"] .marker-stock {
  color: var(--color-button);
}

.price__item[data-available="false"] .marker-stock {
  color: var(--color-theme);
}

.price__img {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  display: block;
}

.price__img img {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .4s ease;
  z-index: 3;
}

.price__title {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: #3A4549;
  margin-top: 31px;
  padding: 0 10px;
}

.price__cost {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: var(--color-button);
  display: inline-block;
}

.price__cost mark {
  font-weight: 300;
  font-size: 18px;
  color: var(--color-button);
}

.price__details {
  padding: 12px 26px;
  border: 1px solid var(--color-button);
  border-radius: 5px;
  transition: .4s ease;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-button);
  margin-top: 20px;
}

.price__details:hover {
  background-color: var(--color-button);
  color: #fff;
}

.price__sort {
  width: 100%;
  box-shadow: 0 0 20px rgba(65, 65, 65, 0.25);
  border-radius: 3px;
  background-color: #fff;
  height: max-content;
  padding: 20px 15px 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: .4s ease;
}

.price__sort-title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
}

.price__sort-title:first-child {
  margin-top: 0;
}

.price__sort-title h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: var(--color-button);
}

.price__sort-title span {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-theme);
  display: inline-block;
  margin-right: 5px;
}

.price__sort-title h6 + span {
  margin-left: 5px;
}

.price__range {
  width: 100%;
}

.price__range-value {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10px;
  margin-top: 10px;
}

.price__range-value input {
  border: 1px solid #526168;
  border-radius: 5px;
  width: 100%;
  padding: 8px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-theme);
  opacity: 0.8;
}

.price__range-value input:last-child {
  text-align: right;
}

.price__sort label {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}

.price__sort label span {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-theme);
  opacity: 0.8;
  width: 100%;
  display: block;
  position: relative;
  padding-left: 26px;
}

.price__sort label span:before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #526168;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.price__sort label span:after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-button);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: .4s ease;
}

.price__sort label input[type="radio"]:checked + span:after,
.price__sort label input[type="checkbox"]:checked + span:after {
  visibility: visible;
  opacity: 1;
}

.price__select-color {
  width: 100%;
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

.price__select-color label {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: 50px;
  border: 2px solid #526168;
}

.price__select-color label img {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.price__select-color input:checked + img {

}

.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
  font-family: Arial, sans-serif
}

.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important
}

.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0
}

.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0
}

.irs-handle {
  position: absolute;
  display: block;
  box-sizing: border-box;
  cursor: default;
  z-index: 1
}

.irs-handle.type_last {
  z-index: 2
}

.irs-min, .irs-max {
  position: absolute;
  display: block;
  cursor: default
}

.irs-min {
  left: 0
}

.irs-max {
  right: 0
}

.irs-from, .irs-to, .irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap
}

.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px
}

.irs-with-grid .irs-grid {
  display: block
}

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000
}

.irs-grid-pol.small {
  height: 4px
}

.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000
}

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2
}

.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed
}

.irs-disabled {
  opacity: .4
}

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important
}

.irs--flat {
  height: 13px;
  width: 100%;
  margin-top: 10px;
}

.irs--flat.irs-with-grid {
  height: 60px
}

.irs--flat .irs-line {
  top: 0;
  height: 8px;
  background-color: #f9f9f9;
  border-radius: 4px;
  border: 1px solid var(--color-button);
}

.irs--flat .irs-bar {
  top: 0;
  height: 8px;
  background-color: transparent;
}

.irs--flat .irs-bar--single {
  border-radius: 4px 0 0 4px
}

.irs--flat .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: #e1e4e9;
  display: none;
}

.irs--flat .irs-handle {
  top: -2px;
  width: 16px;
  height: 18px;
  background-color: transparent
}

.irs--flat .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: -2px;
  width: 14px;
  height: 16px;
  margin-left: -1px;
  background-color: var(--color-button);
  border-radius: 3px;
  cursor: pointer;
}

.irs--flat .irs-handle.from > i {
  left: 5%;
}

.irs--flat .irs-handle.to > i {
  right: 0;
}

.irs--flat .irs-handle > i:first-child:before, .irs--flat .irs-handle > i:first-child:after {
  content: '';
  width: 1px;
  height: 10px;
  background-color: #fff;
  position: absolute;
  top: 3px;
}

.irs--flat .irs-handle > i:first-child:before {
  left: 4px;
}

.irs--flat .irs-handle > i:first-child:after {
  right: 4px;
}

.irs--flat .irs-min, .irs--flat .irs-max {
  display: none;
}

.irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single {
  display: none;
}

.irs--flat .irs-grid-pol {
  background-color: #e1e4e9
}

.irs--flat .irs-grid-text {
  color: #999
}

.open-filter {
  width: 100%;
  border: 1px solid var(--color-button);
  display: none;
  font-size: 12px;
  font-weight: 400;
  padding: 5px 0;
  background-color: var(--color-button);
  color: #fff;
  transition: .4s ease;
}

.open-filter:hover {
  background-color: #fff;
  color: var(--color-button);
}

.price__sort-result {
  width: 260px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.price__sort-result select {
  width: 259px;
  height: 30px;
  border-bottom: 1px solid var(--color-button);
  border-right: 1px solid var(--color-button);
  cursor: pointer;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-theme);
  border-radius: 0 0 5px 0;
  position: relative;
  z-index: 10;
  background-color: transparent;
}

.price__sort-result:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../img/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-button);
  border-radius: 5px 5px 5px 0;
  z-index: 5;
}

/* style card
----------------------*/
.card {
  padding: 80px var(--content-size);
  background-color: var(--bg-lite);
}

.card h3 {
  text-align: left;
  margin: 0;
}

.card__orders {
  margin-top: 20px;
}

.order__info-wrap {
  width: 100%;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
}

.order__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.order__info h6 {
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: #414141;
  margin-bottom: 10px;
}

.order__info div {
  width: 100%;
  border-radius: 5px;
  padding: 30px;
  height: 100%;
  background-color: #fff;
}

.order__info p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #414141;
  margin-bottom: 10px;
}

.order__info p b {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #414141;
  margin-left: 10px;
}

.order__info input[type='submit'] {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-button);
  background: transparent;
  cursor: pointer;
}

.order__info table {
  border-spacing: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #414141;
}

.card__orders-title, .card__orders-item {
  display: grid;
  grid-template-columns: 115px 1fr 140px 130px 105px;
  grid-column-gap: 5px;
}

.card__orders-title.orders-info, .card__orders-title.orders-info + ul .card__orders-item {
  grid-template-columns: 115px 1fr 140px 130px;
}

.card__orders-title.orders-info {
  margin-top: 20px;
}

.card__orders-title.orders-info + ul .card__orders-value {
  margin: auto;
  padding: 6px 13px;
  border: 1px solid #D4DCDF;
  border-radius: 5px;
  width: max-content;
}

.card__orders-list, .card__orders-item, .card__orders, .card__orders-title {
  width: 100%;
}

.card__orders-item {
  margin-top: 5px;
  height: 80px;
  background-color: #fff;
  position: relative;
}

.card__orders-title span {
  width: 100%;
  height: 40px;
  padding: 0 5px 0 10px;
  background-color: #526168;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
}

.card__orders-img {
  width: 100%;
  height: 80px;
  position: relative;
  overflow: hidden;
  border-radius: 5px 0 0 5px;
}

.card__orders-img img {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .4s ease;
  object-fit: cover;
}

.card__orders-item a {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-theme);
  transition: .4s ease;
}

.card__orders-item a:hover {
  color: var(--color-button);
}

.card__orders-delete {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .4s ease;
  background-color: transparent;
  border: 1px solid #D4DCDF;
  border-radius: 5px;
  margin: auto;
}

.card__orders-delete svg {
  width: 14px;
  fill: #E81717;
  transition: .4s ease;
}

.card__orders-delete:hover {
  background-color: var(--color-button);
  border-color: var(--color-button);
}

.card__orders-delete:hover svg {
  fill: #fff;
}

.card__orders-cost {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-theme);
}

.card__orders-value {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.card__orders-value button {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #526168;
  transition: .4s ease;
}

.card__orders-value button:hover {
  color: var(--color-theme);
}

.card__orders-value input {
  border: 1px solid #D4DCDF;
  border-radius: 5px;
  text-align: center;
  padding: 1px;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #526168;
}

.card__orders-value input:focus {
  border-color: var(--color-theme);
}

.card__info {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.card__update {
  padding: 12px 28px;
  border: 1px solid var(--color-button);
  border-radius: 5px;
  color: var(--color-button);
  transition: .4s ease;
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
}

.card__update:hover {
  background-color: var(--color-button);
  color: #fff;
}

.card__result {
  width: 240px;
  padding: 12px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  background: var(--color-button);
  border-radius: 5px;
  color: #fff;
}

.card__result output {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}

.card__order-completion {
  width: 100%;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
}

.card__delivery-select {
  padding: 30px 25px 30px 30px;
  background-color: #fff;
  border-radius: 5px;
}

.card__order-completion h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: var(--color-theme);
  margin-bottom: 10px;
}

.card__delivery-select label {
  width: 100%;
  margin-top: 40px;
  display: inline-block;
  cursor: pointer;
  transition: .4s ease;
}

.card__delivery-select label:first-child {
  margin-top: 0;
}

.card__delivery-select p, .card__delivery-select a {
  margin-top: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-theme);
}

.card__delivery-select a {
  color: var(--color-button);
}

.card__delivery-select label span, .card__payment-list label span {
  width: 100%;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-theme);
  padding-left: 15px;
  position: relative;
  transition: .4s ease;
}

.card__delivery-select label span:before, .card__payment-list label span:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid var(--color-button);
  border-radius: 50%;
  box-sizing: border-box;
}

.card__delivery-select label span:after, .card__payment-list label span:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--color-button);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
}

.card__delivery-select label:hover span, .card__payment-list label:hover span {
  color: var(--color-button);
}

.card__delivery-select input:checked + span:after, .card__payment-list input:checked + span:after {
  visibility: visible;
  opacity: 1;
}

.card__payment-list {
  width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
}

.card__payment-list label {
  width: 100%;
  margin-top: 10px;
  display: block;
  cursor: pointer;
  transition: .4s ease;
}

.card__payment-list label:first-child {
  margin-top: 0;
}

.card__form-info {
  width: 100%;
  padding: 30px 30px 50px;
  margin-top: 10px;
  background-color: #fff;
}

.card__form-info input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #526168;
  height: 24px;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-theme);
  transition: .4s ease;
}

.card__form-info input[type="text"]:focus, .card__form-info textarea:focus {
  border-bottom-color: var(--color-button);
}

.card__form-info input[type="text"]::placeholder, .card__form-info textarea::placeholder {
  color: #C4C4C4;
}

.card__form-info textarea {
  min-width: 100%;
  width: 500px;
  max-width: 100%;
  padding-bottom: 20px;
  min-height: 44px;
  overflow: hidden;
  margin-bottom: 30px;
  border-bottom: 1px solid #526168;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-theme);
  transition: .4s ease;
  height: 44px;
  resize: none;
}

.card__form-info input[type="submit"] {
  border: 1px solid var(--color-button);
  border-radius: 5px;
  padding: 12px 28px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-button);
  transition: .4s ease;
  background-color: transparent;
  cursor: pointer;
}

.card__form-info input[type="submit"]:hover {
  color: #fff;
  background-color: var(--color-button);
}

.card__form-info input + span {
  color: #E81717;
  margin-bottom: 15px;
  display: none;
}

.card__form-info input[type="text"].no-valid, .card__form-info input[type="text"].no-valid:focus {
  border-bottom-color: var(--color-no-valide);
  margin-bottom: 15px;
}

.card__form-info input[type="text"].no-valid + span {
  display: inline-block;
}

.card__delivery-select label.no-valid, .card__payment-list label.no-valid {
  padding: 5px;
  border: 1px solid var(--color-no-valide);
}

#text-area {
  width: 170px;
  font-size: 12px;
  white-space: pre-wrap;
  word-wrap: break-word;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}


.move_zone {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  z-index: 5;
}

/* style description
----------------------*/
.description {
  padding: 80px var(--content-size);
  background-color: var(--bg-lite);
  display: grid;
  grid-template-columns: 575px 1fr;
  grid-template-rows: 488px auto;
}

.description__slider {
  width: 100%;
  grid-column: 1/2;
  grid-row: 1/2;
  height: 488px;
}

.description__slider-bottom {
  width: 100%;
  height: 88px;
  margin-top: 16px;
  display: inline-flex;
}

.description__slider-bottom .slick-list {
  width: 100%;
}

.description__slider-general {
  width: 100%;
  position: relative;
  height: 382px;
  overflow: hidden;
}

.description__button-fullscreen {
  position: absolute;
  top: 10px;
  left: 10px;
  transform: translate(-50px);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  z-index: 50;
  transition: .4s ease;
}

.description__button-fullscreen svg {
  transition: .4s ease;
  fill: #526168;
}

.description__slider-general:hover .description__button-fullscreen {
  transform: translate(0);
}

.description__slider-prev, .description__slider-next {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: .4s ease;
}

.description__slider-general button:hover {
  background-color: var(--color-button);
}

.description__slider-general button svg {
  fill: var(--color-theme);
  transition: .4s ease;
}

.description__slider-general button:hover svg {
  fill: #fff;
}

.description__slider-prev {
  left: 10px;
}

.description__slider-next {
  right: 10px;
}

.description__slider-bottom li {
  width: 100%;
  height: 88px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: .4s ease;
}

.description__slider-bottom li.slick-current {
  border-color: var(--color-button);
}

.description__slider-bottom img, .description__slider-img img {
  border-radius: 10px;
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.description__slider-img {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  padding: 0 8px;
}

.description__slider-img li {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 382px;
}

.description__slider-color {
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  z-index: 50;
  top: 10px;
  right: 10px;
}

.description__content-info {
  width: 100%;
  grid-column: 2/3;
  grid-row: 1/3;
}

.description__downloads {
  width: 100%;
  grid-column: 1/2;
  grid-row: 2/3;
  margin-top: 40px;
}

.description__info-product {
  width: 100%;
  grid-column: 1/3;
  grid-row: 3/4;
  margin-top: 85px;
}

.description__product-title {
  display: grid;
  /*grid-template-columns: 1fr 100px;*/
  align-items: flex-start;
  padding-left: 50px;
}

.description__product-title h3 {
  text-align: left;
  margin: 0;
  max-width: 100%;
  width: fit-content;
  padding-right: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-button);
}

.description__product-title span {
  width: 100%;
  height: 30px;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-button);
}

.description__product-characteristic {
  width: 100%;
  margin: 40px 0 0 -8px;
}

.description__product-characteristic div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 10px 30px 10px 50px;
  background: #fff;
  border-radius: 0 10px 10px 0;
}

.description__product-characteristic div:first-child {
  margin-top: 0;
}

.description__product-characteristic div:nth-child(odd) {
  background-color: #fff;
}

.description__product-characteristic div span {
  line-height: 120%;
  color: var(--color-theme);
  font-weight: 400;
}

.description__product-characteristic div span:first-child, .description__select-variants span {
  font-size: 18px;
}

.description__product-characteristic div span:last-child {
  text-align: right;
  font-style: italic;
  font-size: 14px;
}

.description__downloads h4 {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  color: var(--color-theme);
}

.description__downloads ul {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.description__downloads a {
  padding: 12px 14px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-icon);
  box-sizing: border-box;
  border-radius: 5px;
  transition: .4s ease;
}

.description__downloads a span {
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-icon);
  transition: .4s ease;
}

.description__downloads li {
  margin: 0 20px 20px 0;
}

.description__downloads li:last-child {
  margin-right: 0;
}

.description__downloads a svg {
  fill: var(--color-icon);
  width: 15px;
  margin-right: 5px;
  transition: .4s ease;
}

.description__downloads a:hover {
  background-color: var(--color-icon);
}

.description__downloads a:hover span {
  color: #fff;
}

.description__downloads a:hover svg {
  fill: #fff;
}

.description__select-size, .description__select-color {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.description__select-size h4, .description__select-color h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--color-theme);
}

.description__select-color ul {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.description__select-size label {
  display: inline-block;
  margin-left: 15px;
}

.description__select-size span {
  padding: 8px 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #526168;
  border-radius: 5px;
  cursor: pointer;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-theme);
  opacity: 0.8;
  transition: .4s ease;
}

.description__select-size input:checked + span {
  color: #fff;
  background-color: #526168;
}

.description__select-color li {
  margin: 0 10px 10px 0;
}

.description__select-color li:first-child {
  margin-left: 0;
}

.description__select-color label {
  width: 65px;
  height: 65px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #526168;
}

.description__select-color label img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  min-height: 100%;
}

.description__select-parameters {
  width: 100%;
  padding: 10px 0 10px 50px;
}

.description__select-variants {
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.description__select-variants > select {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(82, 97, 104, 0.25);
  border-radius: 10px;
  padding: 12px 30px 11px;
  width: 290px;
  background-image: url("../img/arrow-select.svg");
  background-position: calc(100% - 30px) center;
  background-size: 12px;
  background-repeat: no-repeat;
}

.description__checked-color {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--color-theme);
  margin-left: 10px;
}

.description__total-result {
  width: 100%;
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.add-to-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  border: 1px solid var(--color-button);
  border-radius: 5px;
  transition: .4s ease;
  color: #31505f;
}

.add-to-card svg {
  fill: var(--color-button);
  width: 22px;
  transition: .4s ease;
  margin-right: 10px;
}

.add-to-card span {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--color-button);
  transition: .4s ease;
}

.add-to-card:hover {
  background-color: var(--color-button);
}

.add-to-card:hover svg {
  fill: #fff;
}

.add-to-card:hover span {
  color: #fff;
}

.total-result__sale {
  position: absolute;
  top: -45px;
  left: 0;
  font-weight: normal;
  font-size: 30px;
  line-height: 37px;
  color: #C4C4C4;
  text-decoration: line-through;
}

.total-result {
  font-weight: 600;
  font-size: 40px;
  line-height: 49px;
  color: var(--color-theme);
}

.total-result mark {
  font-size: 35px;
  font-weight: 400;
  color: var(--color-theme);
}

.description__info-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.description__info-nav button {
  padding: 6px 30px;
  font-weight: 600;
  font-size: 20px;
  line-height: 34px;
  color: #C4C4C4;
  margin-left: 30px;
  border-radius: 5px 5px 0 0;
  transition: .4s ease;
}

.description__info-nav button:first-child {
  margin-left: 0;
}

.description__info-nav button.active {
  background-color: #fff;
  color: var(--color-button);
}

.description__wrap {
  width: 100%;
  position: relative;
}

.description__info-wrap, .description__info-specifications {
  padding: 40px 115px 40px 30px;
}

.description__info-specifications p {
  font-weight: normal;
  font-size: 18px;
  line-height: 120%;
  color: #414141;
  margin-bottom: 20px;
}

.description__logos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 35px;
}

.description__logos-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.description__logos-item span {
  font-weight: normal;
  font-size: 18px;
  line-height: 120%;
  color: #414141;
  text-transform: uppercase;
}

.description__logos-item img {
  width: 100%;
  margin-top: 21px;
}

.comment_list {
  width: 100%;
}

.comment_list li {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 5px;
  padding: 10px 15px;
  margin: 10px 10px 20px;
}

.comment_list .comment__text {
  font-style: italic;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-theme);
  text-transform: none;
}

.comment_list li:last-child {
  margin-bottom: 0;
}

.description__info-feedback span {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--color-theme);
  display: inline-block;
}

.description__info-feedback p, .no-comments {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--color-theme);
  font-style: normal;
}

.no-comments {
  padding: 30px;
}

.comment__wrap {
  position: relative;
  width: 100%;
  padding: 35px 30px 65px;
}

.comment__wrap .slick-track {
  padding-bottom: 15px;
}

.comment_list li i {
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #C4C4C4;
  margin-top: 10px;
}

.description__info-feedback b {
  font-size: 12px;
}

.description__info-feedback .comment_header {
  margin-bottom: 10px;
  background-color: transparent;
}

.description__wrap > div {
  position: relative;
  top: 0;
  left: 0;
  border-radius: 0 5px 5px 5px;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  transition: .4s ease;
  opacity: 1;
  visibility: visible;
}

.form__add-comment {
  width: 600px;
  padding-left: 30px;
  padding-bottom: 30px;
}

.form__add-comment h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: var(--color-theme);
  padding-bottom: 10px;
}

.form__add-comment input[type="text"], .form__add-comment textarea {
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-theme);
  padding: 10px;
  margin-top: 10px;
  border-bottom: 1px solid var(--color-button);
  width: 100%;
  transition: .4s ease;
}

.form__add-comment input[type="text"]::placeholder, .form__add-comment textarea::placeholder {
  color: #A3A3A3;
}

.form__add-comment textarea {
  height: 130px;
  resize: none;
}

.form__add-comment input[type="submit"] {
  padding: 12px 16px;
  border: 1px solid var(--color-button);
  border-radius: 5px;
  margin-top: 30px;
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-button);
  transition: .4s ease;
  cursor: pointer;
  background-color: transparent;
}

.form__add-comment input[type="submit"]:hover {
  background-color: var(--color-button);
  color: #fff;
}

.description__wrap div.hide {
  opacity: 0;
  visibility: hidden;
  z-index: -100;
  position: absolute;
}

.description__info-wrap p, .description__info-wrap ul li, .description__info-specifications p,
.description__info-specifications ul li {
  font-weight: normal;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-theme);
}

.description__info-wrap p, .description__info-specifications p {
  margin-top: 28px;
}

.description__info-wrap p:first-child, .description__info-wrap h6:first-child, .description__info-wrap ul li:first-child,
.description__info-specifications p:first-child, .description__info-specifications h6:first-child,
.description__info-specifications ul li:first-child {
  margin-top: 0;
}

.description__info-wrap h6, .description__info-specifications h6 {
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  color: var(--color-theme);
  margin-top: 28px;
}

.description__info-wrap ul, .description__info-specifications ul {
  width: 100%;
  padding-left: 10px;
  padding-top: 10px;
}

.description__info-wrap ul li {
  margin-top: 10px;
  list-style-type: "\2022";
  padding-left: 10px;
}

/* style examples
----------------------*/
.examples {
  padding: 80px var(--content-size);
}

.examples h3 {
  text-align: left;
  margin: 0;
  padding-left: 15px;
}

.examples__wrap {
  width: 100%;
  position: relative;
  margin-top: 30px;
}

.examples__list li {
  width: 100%;
  margin: 0 15px;
  position: relative;
  height: 280px;
}

.examples__list img {
  width: 100%;
  min-height: 100%;
  position: absolute;
  border-radius: 5px;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* style viewed
----------------------*/
.viewed {
  padding: 80px var(--content-size);
  background-color: var(--bg-lite);
}

.viewed__wrap {
  width: 100%;
  position: relative;
  margin-top: 30px;
}

.viewed__list {
  width: 100%;
  display: inline-flex;
}

.viewed__list .slick-list {
  padding: 20px 0;
}

.viewed__list.no-slider__desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
}

.viewed__list.no-slider__tablet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
}

.viewed__list.no-slider__mobile {
  display: grid;
  grid-template-columns: 1fr;
}

.viewed__item {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(65, 65, 65, 0.25);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 30px;
  margin: 0 15px;
  overflow: hidden;
}

.viewed__img {
  width: 100%;
  height: 240px;
  position: relative;
  display: block;
  overflow: hidden;
}

.viewed__img img {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  object-fit: cover;
  transition: .4s ease;
}

.viewed__item:hover img {
  width: 103%;
}

.viewed__item[data-available="true"] .marker-stock {
  color: var(--color-button);
}

.viewed__item[data-available="false"] .marker-stock {
  color: var(--color-theme);
}

.viewed__title {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: #3A4549;
  margin-top: 31px;
  padding: 0 10px;
}

.viewed__cost {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: var(--color-theme);
  display: inline-block;
}

.viewed__cost mark {
  font-weight: 300;
  font-size: 18px;
}

.viewed__details {
  padding: 12px 26px;
  border: 1px solid var(--color-button);
  border-radius: 5px;
  transition: .4s ease;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-button);
  margin-top: 20px;
}

.viewed__details:hover {
  background-color: var(--color-button);
  color: #fff;
}


.viewed__sale {
  font-weight: normal;
  font-size: 18px;
  line-height: 120%;
}

div[class*="cost-wrap"] {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}

span[class*="__sale"] {
  color: #A3A3A3;
  text-decoration: line-through;
  margin-right: 15px;
}

/* style search
----------------------*/
.header__form-search {
  width: 100%;
  height: 44px;
  overflow: hidden;
  transition: .4s ease;
  display: grid;
  grid-template-columns: 1fr 150px;
  grid-column-gap: 48px;
}

.header__form-search.hide {
  height: 0;
}

.header__form-search input[type="submit"] {
  background: #F9F9F9;
  border-radius: 5px;
  width: 100%;
  height: 34px;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  color: var(--color-theme);
  cursor: pointer;
  transition: .4s ease;
}

.header__form-search input[type="submit"]:hover {
  background-color: var(--color-button);
  color: #fff;
}

.header__form-search input[type="search"] {
  width: 100%;
  height: 34px;
  padding: 0 10px;
  background-color: var(--bg-lite);
  font-weight: normal;
  font-size: 13px;
  line-height: 100%;
  color: var(--color-theme);
}

/* style login
----------------------*/
.login {
  width: 100%;
  padding: 80px var(--content-size);
  background-color: var(--bg-lite);
}

.login__form {
  width: 575px;
  padding: 50px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.login__form h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: var(--color-theme);
  padding-bottom: 10px;
}

.login__form input[type="text"], .login__form input[type="password"] {
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-theme);
  padding: 10px 10px 10px 0;
  margin-top: 10px;
  border-bottom: 1px solid var(--color-button);
  width: 100%;
  transition: .4s ease;
}

.login__form input::placeholder {
  color: #A3A3A3;
}

.login__form input[type="text"]:focus, .login__form input[type="password"]:focus {
  border-bottom-color: var(--color-theme);
}

.login__form input[type="text"].no-valid, .login__form input[type="password"].no-valid {
  border-bottom-color: var(--color-no-valide);
}

.login__form input[type="submit"] {
  padding: 12px 16px;
  border: 1px solid var(--color-button);
  border-radius: 5px;
  margin-top: 30px;
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--color-button);
  transition: .4s ease;
  cursor: pointer;
  background-color: transparent;
}

.login__form input[type="submit"]:hover {
  background-color: var(--color-button);
  color: #fff;
}

.login__reminder-password {
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  text-decoration: underline;
  color: var(--color-button);
  margin-top: 10px;
  display: inline-block;
  width: max-content;
}

/* style article
----------------------*/
.article {
  padding: 80px var(--content-size) 0;
  background-color: var(--bg-lite);
}

.article h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: var(--color-theme);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-button);
  width: max-content;
}

.article p {
  margin-top: 20px;
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-theme);
}

.contacts__wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 475px;
  grid-column-gap: 30px;
  padding: 50px 40px 80px;
  background-color: #fff;
}

.contacts__contact-list, .contacts__form-feedback {
  width: 100%;
}

.contacts__contact-list h4 {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: var(--color-theme);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-button);
  width: max-content;
}

.contacts__contact-list ul {
  width: 100%;
  margin-top: 20px;
}

.contacts__contact-list li {
  width: 100%;
  display: grid;
  grid-template-columns: 19px 1fr;
  grid-column-gap: 11px;
  margin-bottom: 20px;
}

.contacts__contact-list li p, .contacts__contact-list li a {
  font-weight: normal;
  font-size: 16px;
  line-height: 120%;
  color: var(--color-theme);
  transition: .4s ease;
}

.contacts__contact-list li a:hover {
  color: var(--color-button);
}

.contacts__contact-list li br {
  display: none;
}

.contacts__contact-list li:last-child {
  margin-bottom: 0;
}

.contacts__form-feedback h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: var(--color-theme);
  padding-bottom: 20px;
}

.contacts__form-feedback form {
  width: 100%;
}

.contacts__form-feedback input[type="text"], .contacts__form-feedback textarea {
  width: 100%;
  padding: 10px 10px 10px 0;
  border-bottom: 1px solid var(--color-button);
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  margin-top: 10px;
  transition: .4s ease;
}

.contacts__form-feedback textarea {
  height: 44px;
  min-height: 44px;
  resize: none;
  padding: 0;
}

.contacts__form-feedback input[type="text"]::placeholder, .contacts__form-feedback textarea::placeholder {
  color: #A3A3A3;
}

.contacts__form-feedback input[type="text"]:focus, .contacts__form-feedback textarea:focus {
  border-bottom-color: var(--color-theme);
}

.contacts__form-feedback input[type="text"].no-valid, .contacts__form-feedback textarea.no-valid {
  border-bottom-color: var(--color-no-valide);
}

.contacts__form-feedback input[type="submit"] {
  padding: 12px 33px 12px 32px;
  margin-top: 38px;
  border: 1px solid var(--color-button);
  border-radius: 5px;
  color: var(--color-button);
  transition: .4s ease;
  cursor: pointer;
  background-color: transparent;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
}

.contacts__form-feedback input[type="submit"]:hover {
  background-color: var(--color-button);
  color: #fff;
}

.contacts__photo {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.contacts__photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

/* style contacts
----------------------*/
.contacts {
  padding: 80px var(--content-size) 0;
  background-color: var(--bg-lite);
}

.contacts__map {
  width: 100%;
  height: 400px;
}


/* style footer
----------------------*/
.footer {
  padding: 80px var(--content-size) 0;
}

.footer__content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 80px;
}

.footer__support {
  width: 100%;
  padding: 20px var(--content-size);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-icon);
}

.footer__support p {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-theme);
}

.text-support {
  /*text-transform: uppercase;*/
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.text-support svg {
  width: 99px;
}

.footer__content h6 {
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  color: var(--color-theme);
  margin-bottom: 20px;
}

.footer__contacts-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  margin-bottom: 20px;
}

.footer__contacts-list li:last-child {
  margin-bottom: 0;
}

.footer__contacts-list svg {
  fill: var(--color-icon);
  margin: 0 auto;
}

.footer__menu a, .footer__catalog-list a {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: var(--color-theme);
  transition: .4s ease;
}

.footer__menu a:hover, .footer__catalog-list a:hover, .footer__contacts a:hover {
  color: var(--color-button);
}

.footer__menu li, .footer__catalog-list li {
  margin-bottom: 15px;
}

.footer__menu li:last-child, .footer__catalog-list li:last-child {
  margin-bottom: 0;
}

.footer__contacts p, .footer__contacts a {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: var(--color-theme);
  transition: .4s ease;
  width: 100%;
  padding-left: 5px;
}

.footer__logo svg {
  width: 178px;
}

.footer__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
}

.footer__social li {
  margin-right: 15px;
}

.footer__social li:last-child {
  margin-right: 0;
}

.footer__social a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-lite);
  border-radius: 5px;
  transition: .4s ease;
}

.footer__social a svg {
  fill: var(--color-icon);
  transition: .4s ease;
}

.footer__social a:hover {
  background-color: var(--color-button);
}

.footer__social a:hover svg {
  fill: #fff;
}

.footer__info p {
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: var(--color-theme);
}

.footer__info p:first-child {
  margin-top: 15px;
}

/* style @media
----------------------*/
@media screen and (max-width: 1440px) {
  .preview__slider-item {
    height: 600px;
  }

  .feedback__item p {
    font-size: 16px;
    line-height: 140%;
  }

  .preview__slider-content p, .products__info p, .add-service__info p {
    font-size: 18px;
  }

  .description__info-nav button {
    font-size: 20px;
  }

  .description__info-wrap h6, .description__info-specifications h6 {
    font-size: 20px;
  }

  .total-result {
    font-size: 32px;
  }

}

@media screen and (max-width: 1360px) {
  .slider__next {
    left: calc(100% - 60px);
  }

  .slider__prev {
    right: calc(100% - 60px);
  }

  .slider__prev, .slider__next {
    z-index: 200;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --content-size: calc(50% - 480px);
  }

  .footer__support p {
    font-size: 14px;
  }

  .viewed__img {
    height: 200px;
  }

  .description__product-title {
    padding-left: 20px;
  }

  .description__product-characteristic div {
    padding: 10px 30px 10px 20px;
  }

  .description {
    grid-template-columns: 500px 1fr;
  }

  .description__product-characteristic div span:first-child, .description__select-size span,
  .description__select-variants span {
    font-size: 16px;
  }

  .description__select-color label {
    width: 50px;
    height: 50px;
  }

  .description__select-variants > select {
    width: 230px;
  }

  .total-result {
    font-size: 32px;
    line-height: 49px;
  }

  .price__title {
    font-size: 14px;
  }

  .price__img {
    height: 185px;
  }

  .price__cost {
    font-size: 20px;
  }

  .feedback__item {
    margin: 0 20px;
  }

  .description__select-parameters {
    padding: 10px 0 10px 20px;
  }

  div[class*="cost-wrap"] {
    flex-direction: column;
  }

  span[class*="__sale"] {
    margin: 0 0 15px 0;
  }

  .new-products__img {
    height: 210px;
  }
}

@media screen and (max-width: 1023px) {
  :root {
    --content-size: calc(50% - 415px);
  }

  .header__info-text span {
    font-size: 9px;
    line-height: 15px;
  }

  .header__logo-img {
    width: 120px;
  }

  .header__logo span {
    font-size: 11px;
  }

  .header__info svg {
    width: 18px;
  }

  .header__user {
    display: none;
  }

  .header__button-menu, .header__button-phone {
    width: 26px;
    height: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--content-size);
    border-radius: 5px;
  }

  .header {
    padding: 7px var(--content-size);
  }


  .footer__contacts p, .footer__contacts a, .footer__menu a, .footer__catalog-list a, .footer__info p {
    font-size: 14px;
  }

  .footer__info p {
    margin-top: 10px;
  }

  .footer__support p {
    font-size: 12px;
  }

  .description {
    grid-template-columns: 355px 1fr;
    grid-template-rows: 370px auto;
  }

  .description__slider-general, .description__slider-img li {
    height: 285px;
  }

  .description__slider-bottom li {
    height: 50px;
  }

  .description__slider {
    height: 370px;
  }

  .description__slider-bottom {
    height: auto;
  }

  .viewed__img {
    height: 175px;
  }

  .card__form-info textarea {
    width: 100%;
  }

  .price__list, .no_form .price__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .add-service__info p {
    font-size: 16px;
  }

  .add-service__item {
    grid-template-columns: 50px 83px 1fr;
  }

  .add-service__item p {
    font-size: 14px;
  }

  .add-service {
    grid-template-columns: 1fr 400px;
  }

  h3 {
    width: auto;
  }

  .advantages__list p {
    font-size: 13px;
  }

  .new-products__img {
    height: 275px;
  }

  .contacts__contact-list li br {
    display: block;
  }

  .price__img {
    height: 135px;
  }
}

@media screen and (max-width: 899px) {
  :root {
    --content-size: calc(50% - 355px);
  }

  .footer__contacts p, .footer__contacts a, .footer__menu a, .footer__catalog-list a, .footer__info p {
    font-size: 12px;
  }

  .footer__content h6 {
    font-size: 16px;
  }

  .text-support svg {
    width: 75px;
  }

  .footer__support p {
    font-size: 11px;
  }

  .products__info {
    position: static;
    max-width: 100%;
  }

  .products__wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .products__slider img {
    position: static;
    transform: none;
  }

  .products__slider .slick-track li, .products__slider {
    height: 250px;
  }

  .products__slider {
    width: 100%;
  }

  .description__product-characteristic div span:last-child {
    font-size: 11px;
  }

  .description__select-size h4, .description__select-color h4, .description__downloads h4 {
    font-size: 14px;
  }

  .description__select-color label {
    width: 40px;
    height: 40px;
  }

  .description__total-result {
    width: 100%;
    margin-top: 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .add-to-card, .description__product-characteristic {
    margin-top: 10px;
  }

  .description__product-characteristic {
    margin-left: 0;
  }

  .description__downloads a span {
    font-size: 12px;
  }

  .description__info-nav button {
    font-size: 16px;
  }

  .description__info-wrap p, .description__info-wrap ul li, .description__info-feedback p,
  .description__info-specifications p, .description__info-specifications ul li {
    font-size: 16px;
  }

  .description__info-feedback {
    grid-column-gap: 60px;
  }

  .examples, .viewed, .description, .popular, .advantages, .products, .new-products, .add-service, .feedback, .login,
  .article, .contacts {
    padding: 50px var(--content-size);
  }

  .viewed__title {
    font-size: 14px;
  }

  .viewed__cost {
    font-size: 18px;
  }

  .add-service__info h3 {
    text-align: left;
  }

  .popular__img {
    height: 160px;
  }

  .popular__title {
    font-size: 13px;
  }

  h3 br {
    display: none;
  }

  .top-wrap, .header__wrap {
    display: none;
  }

  .header__wrap.header__form-search {
    display: flex;
  }

  .header__open-menu, .header__mobile-phone, .header__mobile-menu, .header__mobile-wrap, .header__mobile-basket,
  .header__mobile-search {
    display: flex;
  }

  .contacts__wrap {
    grid-template-columns: 1fr 375px;
  }

  .description__product-characteristic div span:first-child, .description__select-size span, .description__select-variants span {
    font-size: 14px;
  }

  .description__select-variants > select {
    background-position: calc(100% - 15px) center;
  }

  .total-result__sale {
    top: -30px;
  }
}

@media screen and (max-width: 765px) {
  :root {
    --content-size: calc(50% - 270px);
  }

  .footer {
    padding: 50px var(--content-size) 0;
  }

  .footer__content, .footer__support, .footer__contacts-list, .footer__menu, .footer__catalog-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer__catalog {
    width: 100%;
  }
  .footer__social {
    justify-content: center;
  }

  .footer__support p, .footer__content h6, .footer__info p {
    text-align: center;
  }

  .footer__menu li, .footer__catalog-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
  }

  .footer__contacts-list br, .footer__support p br, .footer__logo + p br {
    display: none;
  }

  .footer__catalog, .footer__nav, .footer__contacts {
    margin-top: 20px;
  }

  .footer__info p {
    line-height: 120%;
    margin-top: 20px;
  }

  .footer__content {
    padding-bottom: 60px;
  }

  .footer__support {
    border: none;
  }

  .description {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .description__slider {
    grid-column: 1/2;
    grid-row: 1/2;
    height: auto;
    overflow: hidden;
  }

  .description__content-info {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-top: 30px;
  }

  .description__downloads {
    grid-column: 1/2;
    grid-row: 3/4;
  }

  .description__info-product {
    grid-column: 1/2;
    grid-row: 4/5;
  }

  .description__slider-bottom li {
    height: 80px;
  }

  .description__info-nav button {
    padding: 6px 15px;
  }

  .description__info-specifications img {
    width: 100%;
  }

  .description__info-feedback {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .description__wrap div {
    margin-top: 30px;
  }

  .description__wrap div:first-child {
    margin-top: 0;
  }

  .description__slider-general, .description__slider-img li {
    height: 350px;
  }

  .card__order-completion {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .card__orders-title {
    display: none;
  }

  .card__orders-title, .card__orders-item {
    grid-template-columns: 70px 1fr auto 30px;
    grid-row-gap: 20px;
    height: auto;
  }

  .card__orders-title.orders-info, .card__orders-title.orders-info + ul .card__orders-item {
    grid-template-columns: 70px 1fr auto 30px;
    padding: 10px;
  }

  .card__orders-item a {
    grid-column: 1/4;
    grid-row: 1/2;
    font-size: 20px;
    height: auto;
    padding: 0;
  }

  .card__orders-img {
    grid-column: 1/2;
    grid-row: 2/3;
    height: 65px;
  }

  .card__orders-value {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  .card__orders-cost {
    grid-column: 3/5;
    grid-row: 2/3;
  }

  .card__orders-delete {
    grid-column: 4/5;
    grid-row: 1/2;
  }

  .card__orders-item {
    margin-top: 15px;
  }

  .price__sort-title h6 {
    font-size: 15px;
  }

  .price__sort label {
    margin-top: 6px;
  }

  .price__sort-result {
    display: none;
  }

  .price {
    padding: 50px var(--content-size);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .price__select-color {
    grid-template-columns: repeat(9, 1fr);
  }

  .price__sort-title {
    margin-top: 20px;
  }

  .price__select-color label {
    height: 40px;
  }

  .price__sort {
    margin-bottom: 40px;
  }

  .popular__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .new-products__img {
    height: 190px;
  }

  .add-service {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .add-service__list {
    margin-top: 30px;
  }

  .advantages__list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }

  .preview__slider-content h2 {
    font-size: 29px;
  }

  .preview__slider-content p {
    font-size: 16px;
  }

  .preview__slider-content {
    max-width: 500px;
    margin: 0 auto 0 20px;
  }

  .footer__menu li, .footer__catalog-list li {
    margin-bottom: 5px;
  }

  .open-filter {
    display: block;
  }

  .price__sort {
    overflow: hidden;
    height: 0;
    padding: 0;
    margin-top: 0;
  }

  .price__sort.open {
    height: auto;
    padding: 20px 15px 30px 20px;
    margin-top: 20px;
  }

  .login__form {
    width: 100%;
  }

  .contacts__wrap {
    grid-template-columns: 1fr 255px;
  }

  .contacts__contact-list li p, .contacts__contact-list li a {
    font-size: 14px;
  }

  .form__add-comment {
    width: 100%;
  }

  .comment_list {
    padding: 35px 15px 65px;
    display: inline-block;
  }

  .move_zone {
    top: 67%;
    left: -11px;
  }

  .slider__next, .slider__prev {
    width: 30px;
    height: 30px;
  }

  .slider__next {
    left: calc(100% - 40px);
  }

  .slider__prev {
    right: calc(100% - 40px);
  }

  .order__info-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .order__info {
    margin-bottom: 30px;
  }

  .order__info:last-child {
    margin: 0;
  }

  .comment__wrap {
    width: 100%;
    padding: 35px 0 65px;
  }

  .comment_list {
    padding: 0;
  }

  .description__info-feedback .comment_header {
    margin-top: 0;
  }
}

@media screen and (max-width: 599px) {
  :root {
    --content-size: calc(50% - 220px);
  }

  .comment_list .comment__text {
    font-size: 14px;
  }

  .products__info {
    padding: 20px;
    min-height: auto;
  }

  .products, .card {
    padding: 50px var(--content-size);
  }

  .products__wrap {
    margin-bottom: 30px;
  }

  .breadcrumbs + section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .products__slider .slick-dots {
    left: 9px;
    bottom: 9px;
  }

  .slick-dots li, .products__slider .slick-dots button {
    width: 10px;
    height: 10px;
  }

  .products__slider .slick-dots li {
    margin-right: 4px;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }

  .footer__content {
    padding-bottom: 40px;
  }

  .text-support {
    margin-top: 10px;
  }

  .description__slider-general, .description__slider-img li {
    height: 290px;
  }

  .description__slider-bottom li {
    height: 60px;
  }

  .description__info-nav button {
    font-size: 15px;
    margin-left: 10px;
  }

  .description__info-wrap, .description__info-specifications {
    padding: 40px 30px 40px;
  }

  .description__info-wrap p, .description__info-wrap ul li, .description__info-feedback p,
  .description__info-specifications p, .description__info-specifications ul li {
    font-size: 14px;
  }

  .card__update {
    font-size: 10px;
  }

  .card__delivery-select label span, .card__payment-list label span {
    font-size: 13px;
  }

  .card__delivery-select p {
    font-size: 12px;
  }

  .card__order-completion h4 {
    font-size: 18px;
  }

  .card__delivery-select label {
    margin-top: 20px;
  }

  h3 {
    font-size: 22px;
  }

  .card__form-info input[type="text"], .card__form-info textarea {
    border: 1px solid var(--color-button);
    padding: 12px 10px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 10px;
  }

  .card__form-info input[type="submit"] {
    background-color: var(--color-button);
    color: #fff;
    width: 100%;
  }

  .card__form-info input[type="submit"]:hover {
    background-color: transparent;
    color: var(--color-button);
  }

  .price__select-color {
    grid-template-columns: repeat(7, 1fr);
  }

  .preview__slider-content h2 {
    font-size: 19px;
  }

  .preview__slider-content p, .add-service__item h5 {
    font-size: 14px;
  }

  .preview__slider-content {
    max-width: 390px;
  }

  .preview__slider-item {
    height: auto;
  }

  .add-service__item p {
    font-size: 12px;
  }

  .feedback {
    padding-bottom: 0;
  }

  .feedback__item p {
    font-size: 12px;
  }

  .feedback__name {
    font-size: 14px;
  }

  .feedback__img {
    width: 60px;
    height: 60px;
    top: -10px;
  }

  .feedback__item {
    grid-template-columns: 60px 1fr;
  }

  .feedback__wrap {
    margin-top: 15px;
  }

  .preview__slider-item:before {
    content: none;
  }

  .preview__slider-item img {
    position: static;
    transform: none;
    min-height: auto;
    height: 250px;
  }

  .preview__slider-content {
    width: 100%;
    position: static;
    padding: 30px 27px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .preview__slider-content h2 {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 120%;
  }

  .preview__slider-content p {
    text-align: center;
    font-weight: normal;
    font-size: 12px;
    line-height: 140%;
  }

  .header__form-search input[type="submit"] {
    width: 100px;
  }

  .description__select-size h4 {
    width: 100%;
    margin-bottom: 10px;
  }

  .description__select-size label {
    margin: 0 15px 0 0;
  }

  .description__select-size, .description__select-color {
    margin-top: 25px;
  }

  .description__select-color label {
    width: 30px;
    height: 30px;
  }

  .examples, .viewed {
    padding: 50px var(--content-size);
  }

  .examples h3, .viewed h3 {
    padding: 0 var(--content-size);
  }

  .examples__list li, .viewed__item {
    margin: 0;
  }

  .card__result {
    text-align: right;
  }

  .card {
    padding: 50px 16px;
  }

  .card__orders-item {
    padding: 10px;
  }

  .contacts__wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .contacts__contact-list li br {
    display: none;
  }

  .contacts__form-feedback {
    margin-top: 30px;
  }

  .contacts__form-feedback h4 {
    padding-bottom: 0;
  }

  .contacts__contact-list h4 {
    padding-bottom: 10px;
  }

  .comment_list li {
    margin-top: 30px;
  }

  .comment_list li:first-child {
    margin-top: 0;
  }

  .form__add-comment {
    padding: 0;
    margin-top: 20px;
  }

  .form__add-comment h4 {
    font-size: 16px;
  }

  .description__select-variants > select {
    font-size: 11px;
    width: 185px;
  }

  .total-result__sale {
    font-size: 22px;
  }

  .description__logos {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .order__info div {
    padding: 5px;
  }

  .order__info h6 {
    font-size: 18px;
  }

  .order__info p {
    font-size: 13px;
  }

  .order__info table {
    font-size: 11px;
  }
}

@media screen and (max-width: 479px) {
  :root {
    --content-size: calc(50% - 160px);
  }

  .footer__info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer__logo svg {
    width: 86px;
    margin: auto;
  }

  .products__info h4 {
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 10px;
  }

  .products__info p {
    font-size: 12px;
    margin-top: 10px;
  }

  .description__slider-general, .description__slider-img li {
    height: 204px;
  }

  .description__slider-general button {
    width: 35px;
    height: 35px;
  }

  .description__slider-bottom li {
    height: 45px;
    margin: 0 5px;
  }

  .contacts__photo {
    display: none;
  }

  h3 {
    font-size: 18px;
  }

  .description__product-characteristic div {
    margin-top: 8px;
  }

  .description__product-characteristic div {
    padding: 6px 10px;
  }

  .description__product-characteristic div span:first-child, .description__select-size span,
  .description__select-variants span {
    font-size: 12px;
  }

  .description__product-characteristic div span:last-child {
    font-size: 10px;
  }

  .description__total-result {
    align-items: center;
  }

  .total-result, .total-result mark {
    font-size: 18px;
    line-height: 25px;
  }

  .add-to-card {
    margin-top: 20px;
  }

  .description__downloads a {
    border: none;
    padding: 0;
  }

  .description__downloads a:hover {
    background: none;
  }

  .description__downloads a:hover span {
    color: var(--color-icon);
  }

  .description__downloads a:hover svg {
    fill: var(--color-icon);
  }

  .description__info-product {
    margin-top: 45px;
  }

  .description__info-nav button {
    font-size: 16px;
    padding: 3px 10px;
    margin: 0;
  }

  .description__info-feedback, .description__info-wrap, .description__info-specifications {
    padding: 15px 10px;
  }

  .description__info-wrap h6 {
    font-size: 18px;
  }

  .description__info-wrap p, .description__info-wrap ul li, .description__info-feedback p,
  .description__info-specifications p, .description__info-specifications ul li {
    font-size: 12px;
  }

  .card__info {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .card__update {
    width: 100%;
    margin-bottom: 20px;
  }

  .card__result {
    width: 100%;
  }

  .card__delivery-select, .card__payment-list, .card__form-info {
    padding: 10px 5px;
  }

  .card__orders-item a {
    font-size: 12px;
  }

  .card__orders-delete {
    width: 20px;
    height: 20px;
  }

  .card__orders-title, .card__orders-item {
    grid-template-columns: 70px 1fr auto 20px;
  }

  .card__orders-title.orders-info, .card__orders-title.orders-info + ul .card__orders-item {
    grid-template-columns: 70px 1fr auto 20px;
    padding: 10px;
  }

  .card__orders-delete svg {
    width: 8px;
  }

  .price__list, .no_form .price__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .price__img {
    height: 205px;
  }

  .price__select-color {
    grid-template-columns: repeat(6, 1fr);
  }

  .popular__list {
    grid-template-columns: 1fr;
  }

  .advantages__list {
    grid-template-columns: 1fr;
  }

  .preview__slider-content h2 {
    font-size: 14px;
  }

  .preview__slider-content p {
    font-size: 11px;
  }

  .preview__slider-content {
    max-width: calc(100% - 40px);
  }

  .advantages__list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-column-gap: 10px;
  }

  .advantages__list p {
    text-align: left;
    padding-left: 10px;
  }

  .advantages__list svg {
    margin: auto;
    height: 50px;
  }

  .advantages__list li:last-child svg {
    height: 30px;
    margin: auto;
  }

  .header__form-search {
    grid-column-gap: 10px;
  }

  .login__form {
    padding: 20px 15px;
  }

  .article p {
    font-size: 12px;
  }

  .article h4 {
    font-size: 21px;
    padding-bottom: 5px;
  }

  .contacts__contact-list li br {
    display: block;
  }

  .description__select-parameters {
    padding: 10px;
  }

  .total-result__sale {
    font-size: 17px;
    left: 50%;
    transform: translateX(-50%);
  }

  .add-service__item {
    grid-template-columns: 50px 44px 1fr;
    margin-bottom: 10px;
  }

  .add-service__item div {
    padding: 10px 0 7px 56px;
  }
}

@media screen and (max-width: 359px) {
  :root {
    --content-size: calc(50% - 140px);
  }

  .price__select-color {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (pointer:coarse) {
  .products__info a:hover {
    background: none;
  }
}