@charset "UTF-8";
* {
  margin: 0;
  box-sizing: border-box;
}

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

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
}

/* roboto-100 - latin_cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: url("../../../public/fonts/roboto-v30-latin_cyrillic-100.woff2") format("woff2");
}
/* roboto-300 - latin_cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../../../fonts/roboto-v30-latin_cyrillic-300.woff2") format("woff2");
}
/* roboto-regular - latin_cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../../../fonts/roboto-v30-latin_cyrillic-regular.woff2") format("woff2");
}
/* roboto-500 - latin_cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../../../fonts/roboto-v30-latin_cyrillic-500.woff2") format("woff2");
}
/* roboto-700 - latin_cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../../../fonts/roboto-v30-latin_cyrillic-700.woff2") format("woff2");
}
/* roboto-900 - latin_cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("../../../fonts/roboto-v30-latin_cyrillic-900.woff2") format("woff2");
}
.container {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 425px) {
  .container {
    max-width: 425px;
  }
}
@media (min-width: 500px) {
  .container {
    max-width: 500px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 880px) {
  .container {
    max-width: 820px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1290px) {
  .container {
    max-width: 1224px;
  }
}

.myrow, .footer__row, .products__row, .actions__row, .header__row, .nav__pagination-row, .bread-crumbs__row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.myrow > *, .footer__row > *, .products__row > *, .actions__row > *, .header__row > *, .nav__pagination-row > *, .bread-crumbs__row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

._modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
  pointer-events: none;
}
._modal._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  padding: 20px;
}

.modal-body {
  padding: 38px;
  background-color: #fff;
  width: 700px;
  margin: auto;
  max-height: 90%;
  overflow: auto;
  border-radius: 10px;
  position: relative;
}

.modal-body__reg {
  width: 526px;
}

.modal-body__hint-fastener-type {
  width: 1050px;
}

.modal-body__hint-color-control {
  width: 582px;
}

.modal-body__hint-color-temperature {
  width: 1050px;
}

.modal-body__cart-info {
  width: 526px;
}

.modal-close {
  position: absolute;
  top: 38px;
  right: 38px;
  cursor: pointer;
}

.modal-close img {
  height: 12px;
  min-height: 12px;
  width: 12px;
  min-width: 12px;
}

.modal__title {
  margin-bottom: 38px;
}

.modal__title h3 {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
}

.modal__inputs-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 22px;
}

.modal__input {
  height: 38px;
  width: 100%;
  padding: 0px 16px;
  border-radius: 10px;
  outline: none;
  border: 1px solid #dbdbdb;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
}
.modal__input:focus {
  border: 1px solid #1a1a1a;
}

.modal__submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 38px;
}

.modal__submit-info {
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
}

.modal__forgot-password {
  display: flex;
  justify-content: center;
}
.modal__forgot-password a {
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: underline;
  transition: all 300ms ease;
}
.modal__forgot-password a:hover {
  color: rgb(146, 146, 146);
}

.modal__login-btn {
  height: 42px;
  width: 163px;
  border: none;
  outline: none;
  border-radius: 20px;
  color: #fff;
  background-color: #262626;
  font-size: 14px;
  font-weight: 400;
  transition: all 300ms ease;
  cursor: pointer;
}
.modal__login-btn:hover {
  background-color: #4b4b4b;
}

.modal__register-btn {
  height: 42px;
  width: 212px;
  border: none;
  outline: none;
  border-radius: 20px;
  color: #fff;
  background-color: #262626;
  font-size: 14px;
  font-weight: 400;
  transition: all 300ms ease;
  cursor: pointer;
}
.modal__register-btn:hover {
  background-color: #4b4b4b;
}

.modal__pollicy {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #999999;
  margin-top: 38px;
  text-align: center;
}
.modal__pollicy a {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: underline;
  transition: all 300ms ease;
}
.modal__pollicy a:hover {
  color: rgb(146, 146, 146);
}

.modal__modify-fastener-type-title {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.modal__modify-fastener-types {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.modal__modify-fastener-type {
  display: flex;
  flex-direction: column;
  row-gap: 26px;
}

.modal__modify-fastener-types h3 {
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
}

.modal__modify-fastener-types img {
  width: 100%;
  height: auto;
}

.modal__modify-fastener-types p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #1a1a1a;
}

.modal__modify-fastener-type-info {
  font-size: 13px;
  line-height: 21px;
  font-weight: 400;
  color: #888888;
  margin-top: 50px;
}

.modal__modify-color-temperature-title {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 38px;
}

.modal__modify-color-temperature-img {
  width: 100%;
  height: auto;
}

.modal__modify-color-control-title {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.modal__modify-color-control-text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.modal__modify-color-control-text p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #1a1a1a;
}

.modal__cart-info-title {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 38px;
}

.modal__cart-info-title-ok {
  color: rgb(22, 187, 22);
}

.modal__cart-info-title-fail {
  color: rgb(177, 42, 18);
}

.modal__cart-info-text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .modal__modify-fastener-types {
    flex-direction: column;
    row-gap: 50px;
  }
  .modal__modify-fastener-types h3 {
    font-weight: 500;
  }
}
@media (max-width: 500px) {
  .modal__submit {
    flex-direction: column;
    gap: 20px;
  }
}
body {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1 1 auto;
}

.fslightbox-slide-btn {
  border-radius: 50%;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
}

.bread-crumbs__col {
  flex: 1 1 0;
  max-width: 100%;
}
.bread-crumbs__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  padding: 0;
  margin-top: 38px;
  margin-bottom: 38px;
  line-height: 13px;
}
.bread-crumbs__list-item {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
}
.bread-crumbs__list-item a {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  transition: all 350ms ease;
}
.bread-crumbs__list-item a:hover {
  color: #1a1a1a;
}
.bread-crumbs__list-item_separator::before {
  content: "/";
  margin-left: 4px;
  font-size: 14px;
  font-weight: 400;
}
.bread-crumbs__hr-bootom {
  color: #e5e5e5;
  background-color: #e5e5e5;
  height: 1px;
  border: 0;
}

.pagination-container {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 370px);
}

.nav__pagination-row {
  flex: 1;
  display: flex;
  align-items: end;
  margin-top: 50px;
  margin-bottom: 50px;
}
.nav__pagination-col {
  flex: 0 0 auto;
  width: 100%;
}
.nav__pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.nav__pagination-btn {
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__pagination-btn img {
  display: block;
  width: 10px;
  height: 10px;
}
.nav__pagination-btn_active {
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease;
}
.nav__pagination-btn_active img {
  display: block;
  width: 10px;
  height: 10px;
}
.nav__pagination-btn_active:hover {
  background-color: #f0f0f0;
}
.nav__pagination-item_current {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 13px;
  height: 34px;
  min-height: 34px;
  border-radius: 25px;
  font-size: 15px;
  line-height: 14px;
  font-weight: 400;
  color: white;
  background-color: #343434;
}
.nav__pagination-item_link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 13px;
  height: 34px;
  min-height: 34px;
  border-radius: 25px;
  font-size: 15px;
  line-height: 14px;
  font-weight: 400;
  color: #1a1a1a;
  transition: all 300ms ease;
}
.nav__pagination-item_link:hover {
  background-color: #f0f0f0;
}
.nav__pagination-item_serarator {
  font-size: 18px;
  line-height: 17px;
  font-weight: 500;
  color: #cfcfcf;
}
@media (max-width: 879.98px) {
  .nav__pagination-btn {
    width: 28px;
    min-width: 28px;
    height: 28px;
    min-height: 28px;
  }
  .nav__pagination-btn_active {
    width: 28px;
    min-width: 28px;
    height: 28px;
    min-height: 28px;
  }
  .nav__pagination-item_current {
    padding: 0px 11px;
    height: 28px;
    min-height: 28px;
    font-size: 14px;
    line-height: 13px;
  }
  .nav__pagination-item_link {
    padding: 0px 11px;
    height: 28px;
    min-height: 28px;
    font-size: 14px;
    line-height: 13px;
  }
}
@media (max-width: 575.98px) {
  .nav__pagination {
    flex-wrap: wrap;
    justify-content: start;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 10px;
  }
  .nav__pagination-btn {
    border: 1px solid #e9e9e9;
  }
  .nav__pagination-btn_active {
    border: 1px solid #1a1a1a;
  }
}

.hint {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.hint:hover .hint__info {
  display: block;
}
.hint__element {
  height: 18px;
  width: 18px;
  border: 1px solid black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hint__element:hover {
  filter: brightness(1.1);
}
.hint__info {
  display: none;
  position: absolute;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: rgb(68, 68, 68);
  background-color: #f5deb3;
  z-index: 1;
}
.hint__info::after {
  content: "";
  position: absolute;
  border: 0 solid transparent;
}
.hint__info::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
}

.hint_top .hint__info {
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 100%;
  margin-bottom: 7px;
}
.hint_top .hint__info::after {
  left: 50%;
  transform: translate(-50%, 0);
  top: 100%;
  border-width: 5px 5px 0 5px;
  border-top-color: #f5deb3;
}

.hint_bottom .hint__info {
  left: 50%;
  transform: translate(-50%, 0);
  top: 100%;
  margin-top: 7px;
}
.hint_bottom .hint__info::after {
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 100%;
  border-width: 0 5px 5px 5px;
  border-bottom-color: #f5deb3;
}

.hint_right .hint__info {
  top: 50%;
  transform: translate(0, -50%);
  left: 100%;
  margin-left: 7px;
}
.hint_right .hint__info::after {
  top: 50%;
  transform: translate(0, -50%);
  right: 100%;
  border-width: 5px 5px 5px 0;
  border-right-color: #f5deb3;
}

.hint_left .hint__info {
  top: 50%;
  transform: translate(0, -50%);
  right: 100%;
  margin-right: 7px;
}
.hint_left .hint__info::after {
  top: 50%;
  transform: translate(0, -50%);
  left: 100%;
  border-width: 5px 0 5px 5px;
  border-left-color: #f5deb3;
}

.custom-select {
  position: relative;
}
.custom-select__button {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 13px;
  color: #1a1a1a;
  background: #f0f0f0;
  border: none;
  outline: none;
  border-radius: 10px;
  height: 38px;
  padding-left: 20px;
  padding-right: 40px;
  cursor: pointer;
}
.custom-select__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  /* Рисуем треугольник */
  width: 0;
  height: 0;
  border-width: 7px 5px 0 5px;
  border-color: #333333 transparent transparent transparent;
  border-style: solid;
  /* Снимаем клик с треугольника */
  pointer-events: none;
}
.custom-select__button--active {
  background: #333333;
  color: white;
}
.custom-select__button--active::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 15px;
  transform: translateY(-50%);
  /* Рисуем треугольник */
  width: 0;
  height: 0;
  border-width: 7px 5px 0 5px;
  border-color: rgb(255, 255, 255) transparent transparent transparent;
  border-style: solid;
  transition: all 320ms ease-out;
  transform: rotate(180deg);
  /* Снимаем клик с треугольника */
  pointer-events: none;
}
.custom-select__list {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 22px);
  margin: 0;
  padding: 15px;
  list-style-type: none;
  background: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}
.custom-select__list--visible {
  display: block;
}
.custom-select__list-item {
  margin: 0;
  padding: 0;
  border-bottom: 0px;
}
.custom-select__list-item:first-child {
  border-radius: 10px 10px 0 0;
}
.custom-select__list-item:last-child {
  border-radius: 0 0 10px 10px;
}
.custom-select__link {
  display: block;
  font-size: 14px;
  line-height: 13px;
  font-weight: 400;
  white-space: nowrap;
  padding: 17px 15px;
  border-radius: 10px;
}
.custom-select__link:hover {
  background: #f0f0f0;
}
.custom-select__input-hidden {
  display: none;
}

._register-errors {
  background-color: #e29b9b;
  border-radius: 10px;
  margin-bottom: 38px;
}
._register-errors ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 9px;
  list-style-type: disc;
  padding: 14px 30px;
  font-size: 14px;
  line-height: 15px;
  font-weight: 500;
  color: white;
}

._register-info {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  color: #1a1a1a;
}

.header {
  background-color: #262626;
  color: #f5f5f5;
  height: 80px;
}
.header__row {
  flex-wrap: nowrap;
  height: 80px;
}
.header__logo-col {
  flex: 0 0 auto;
  width: 25%;
  display: flex;
  justify-content: start;
  align-items: center;
  transition: all 350ms ease;
}
.header__logo-link {
  transition: all 300ms ease;
}
.header__logo-link:hover {
  filter: brightness(70%);
}
.header__logo-img {
  display: block;
  width: 135px;
}
.header__burger-btn {
  display: none;
  position: relative;
  height: 30px;
  width: 30px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 350ms ease;
  z-index: 3;
}
.header__burger-btn:active {
  background-color: #111;
}
.header__burger-btn span {
  position: absolute;
  width: 30px;
  height: 3px;
  left: 0px;
  background-color: #929292;
  transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}
.header__burger-btn span:nth-child(1) {
  transform: translateY(-10px);
}
.header__burger-btn span:nth-child(3) {
  transform: translateY(10px);
}
.header.open .header__burger-btn span {
  background-color: rgb(238, 237, 237);
}
.header.open .header__burger-btn span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.header.open .header__burger-btn span:nth-child(2) {
  opacity: 0;
}
.header.open .header__burger-btn span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}
.header__nav-col {
  flex: 0 0 auto;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.header__menu-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.header__menu-link {
  font-size: 15px;
  font-weight: 400;
  transition: all 300ms ease;
}
.header__menu-link:hover {
  color: rgb(146, 146, 146);
}
.header__user-col {
  flex: 0 0 auto;
  width: 25%;
  display: flex;
  justify-content: end;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
}
.header__basket-link {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
  height: 20px;
}
.header__basket-img {
  height: 20px;
  width: 20px;
  transition: all 300ms ease;
}
.header__basket-img:hover {
  filter: brightness(70%);
}
.header__basket-count {
  color: white;
  font-size: 12px;
  line-height: 11px;
  font-weight: 400;
  transition: all 300ms ease;
}
.header__basket-count:hover {
  color: rgb(153, 153, 153);
}
.header__user-menu {
  position: relative;
  height: 20px;
}
.header__user-img {
  height: 20px;
  width: 20px;
  position: relative;
  transition: all 300ms ease;
}
.header__user-img:hover {
  filter: brightness(70%);
}
.header__user-notify-img {
  width: 21px;
  min-width: 21px;
  height: 21px;
  min-height: 21px;
}
.header .menu {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.header .list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header .menu__item {
  position: relative;
  display: block;
  height: 20px;
}
.header .menu__item:not(:last-child) {
  margin-right: 30px;
}
.header .menu__btn {
  background-color: transparent;
  outline: 0 solid transparent;
  border: none;
  height: 20px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
}
.header .menu__btn span {
  color: white;
  font-weight: 400;
  font-size: 12px;
  line-height: 11px;
  transition: all 300ms ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.header .menu__btn span:hover {
  color: rgb(153, 153, 153);
}
.header .dropdown {
  position: absolute;
  right: 0px;
  top: 64px;
  width: 150px;
  background-color: #262626;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 3;
  border-radius: 10px;
}
.header .dropdown__list {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  margin: 0;
  padding: 15px;
  list-style: none;
}
.header .dropdown--active {
  opacity: 1;
  visibility: visible;
}
.header .dropdown__link {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 13px;
  font-weight: 400;
  padding: 14px;
  border-radius: 10px;
  color: white;
  transition: all 300ms ease;
}
.header .dropdown__link:hover {
  background-color: #4c4c4c;
}
.header .dropdown__btn {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
  font-size: 14px;
  line-height: 13px;
  font-weight: 400;
  text-align: left;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 300ms ease;
}
.header .dropdown__btn:hover {
  background-color: #4c4c4c;
}
@media (max-width: 1199.98px) {
  .header__logo-col {
    flex: 0 0 auto;
    width: 25%;
  }
  .header__nav-col {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .header__user-col {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .header__menu-link {
    font-size: 14px;
  }
}
@media (max-width: 879.98px) {
  .header__logo-col {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .header__nav-col {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .header__user-col {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .header__logo-link {
    margin-left: 25px;
  }
  .header__logo-img {
    width: 114px;
  }
  .header__burger-btn {
    display: block;
  }
  .header__nav {
    position: absolute;
    left: -330px;
    top: 0px;
    width: 330px;
    background-color: #262626;
    padding: 100px 60px 60px 95px;
    transition: all 500ms ease;
    z-index: 2;
  }
  .header.open .header__nav {
    transform: translateX(100%);
  }
  .header__menu-list {
    display: block;
  }
  .header__menu-link {
    display: block;
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .header__logo-col {
    flex: 0 0 auto;
    width: 50%;
  }
  .header__nav-col {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .header__user-col {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .header .menu__btn span {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .header__logo-col {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .header__nav-col {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .header__user-col {
    flex: 0 0 auto;
    width: 50%;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .header__logo-link {
    margin-left: 20px;
  }
  .header__logo-img {
    width: 100px;
  }
}
@media (max-width: 499.98px) {
  .header__logo-col {
    flex: 0 0 auto;
    width: 50%;
  }
  .header__nav-col {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .header__user-col {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .header__logo-img {
    width: 85px;
  }
  .header__logo-link {
    margin-left: 14px;
  }
}

.actions__row {
  margin-top: 38px;
}
.actions__sort-col {
  flex: 0 0 auto;
  width: 50%;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.actions__search-col {
  flex: 0 0 auto;
  width: 50%;
}
.actions__search-form-wrapper {
  display: flex;
  justify-content: end;
  align-items: center;
}
.actions__search-form {
  display: flex;
}
.actions__search-input {
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  border-left: 1px solid #dbdbdb;
  border-right: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  outline: none;
  padding: 0px 0px 0px 16px;
  height: 38px;
  width: 330px;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
}
.actions__search-close-link {
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  height: 38px;
  width: 48px;
  min-width: 48px;
  transition: all 350ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.actions__search-close-link img {
  height: 12px;
}
.actions__search-close-link:hover {
  background-color: rgb(245, 245, 245);
}
.actions__search-btn {
  background-color: white;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  border-left: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0;
  height: 38px;
  width: 48px;
  min-width: 48px;
  transition: all 350ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.actions__search-btn img {
  height: 13px;
}
.actions__search-btn:hover {
  background-color: rgb(245, 245, 245);
}
@media (max-width: 879.98px) {
  .actions__search-col {
    flex: 0 0 auto;
    width: 100%;
    order: 1;
    margin-bottom: 18px;
  }
  .actions__sort-col {
    flex: 0 0 auto;
    width: 100%;
    order: 2;
    flex-wrap: wrap;
    row-gap: 18px;
  }
  .actions__search-form-wrapper {
    justify-content: start;
  }
  .actions__search-form {
    flex: 1;
  }
  .actions__search-input {
    flex: 1 1;
    width: 100%;
  }
  .actions__search-btn {
    flex: 0 0 48px;
  }
}

.products__col {
  flex: 0 0 auto;
  width: 33.33333333%;
  margin-top: 38px;
}
.products__search {
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 70px;
}
.products__img-wrapper {
  margin-bottom: 22px;
  overflow: hidden;
}
.products__img-wrapper img {
  width: 100%;
  height: auto;
  transition: all 350ms ease;
}
.products__img-wrapper img:hover {
  filter: brightness(82%);
}
.products__title-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 350ms ease;
}
.products__title-link:hover {
  color: rgb(146, 146, 146);
}
.products__price {
  font-size: 15px;
  font-weight: 400;
  line-height: 14px;
  color: #888888;
  margin-top: 12px;
}
@media (max-width: 575.98px) {
  .products__col {
    flex: 0 0 auto;
    width: 100%;
  }
  .products__img-wrapper {
    margin-bottom: 15px;
  }
  .products__price {
    margin-top: 8px;
  }
}

.footer {
  background-color: #262626;
  min-height: 290px;
}
.footer__row {
  padding-top: 34px;
}
.footer__top-col {
  flex: 0 0 auto;
  width: 100%;
}
.footer__bottom-col {
  flex: 0 0 auto;
  width: 100%;
  margin-top: 34px;
}
.footer__bottom-col hr {
  color: #4d4d4d;
  background-color: #4d4d4d;
  height: 1px;
  border: 0;
}
.footer__top-wrapper {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.footer__cookie {
  position: fixed;
  left: 50%;
  bottom: 50px;
  transform: translate(-50%, 0%);
  margin: 0 auto;
  background-color: rgba(127, 127, 127, 0.85);
  border-radius: 10px;
  padding: 26px;
  display: none;
}
.footer__cookie_show {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.footer__cookie-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: white;
}
.footer__cookie-text a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: white;
  text-decoration: underline;
  transition: all 300ms ease;
}
.footer__cookie-text a:hover {
  color: rgb(225, 225, 225);
}
.footer__cookie-btn {
  border: none;
  outline: none;
  border-radius: 10px;
  width: 94px;
  min-width: 94px;
  height: 38px;
  min-height: 38px;
  font-size: 14px;
  font-weight: 400;
  color: white;
  cursor: pointer;
  background-color: #262626;
  transition: all 300ms ease;
}
.footer__cookie-btn:hover {
  background-color: #4b4b4b;
}
.footer__left-menu {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 34px;
}
.footer__left-menu-items {
  display: flex;
  flex-direction: column;
  row-gap: 22px;
}
.footer__left-menu-link {
  font-size: 14px;
  line-height: 13px;
  font-weight: 400;
  color: white;
  text-wrap: nowrap;
  transition: all 300ms ease;
}
.footer__left-menu-link:hover {
  color: rgb(146, 146, 146);
}
.footer__left-contact {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.footer__left-contact-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.footer__left-contact-item img {
  height: 16px;
}
.footer__left-contact-item span {
  text-wrap: nowrap;
  font-size: 14px;
  line-height: 13px;
  font-weight: 400;
  color: #818181;
}
.footer__right-wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.footer__right-messenger {
  display: flex;
  flex-direction: column;
  row-gap: 22px;
}
.footer__right-messenger-link-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.footer__right-messenger-img {
  display: block;
  height: 38px;
  min-height: 38px;
  width: 38px;
  min-width: 38px;
}
.footer__right-messenger-link {
  font-size: 14px;
  line-height: 13px;
  font-weight: 400;
  color: white;
  transition: all 300ms ease;
}
.footer__right-messenger-link:hover {
  color: rgb(146, 146, 146);
}
.footer__bottom-copyright {
  display: flex;
  justify-content: space-between;
  margin-top: 34px;
}
.footer__bottom-copyright-date {
  font-size: 14px;
  font-weight: 400;
  color: #7f7f7f;
  text-wrap: nowrap;
}
.footer__bottom-copyright-text {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.footer__bottom-copyright-text span {
  font-size: 14px;
  font-weight: 400;
  color: #7f7f7f;
  text-wrap: nowrap;
}
@media (max-width: 1199.98px) {
  .footer__left-contact {
    flex-direction: column;
    row-gap: 21px;
  }
  .footer__left-menu-items {
    row-gap: 43px;
  }
  .footer__right-wrapper {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .footer__right-messenger {
    row-gap: 20px;
  }
  .footer__bottom-copyright {
    margin-bottom: 34px;
  }
}
@media (max-width: 879.98px) {
  .footer__top-wrapper {
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
  .footer__left-menu {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .footer__bottom-copyright {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .footer__top-wrapper {
    flex-direction: column;
    row-gap: 50px;
  }
  .footer__cookie {
    flex-direction: column;
    row-gap: 30px;
  }
  .footer__top-left {
    order: 2;
  }
  .footer__top-right {
    order: 1;
  }
  .footer__left-menu {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    margin-bottom: 40px;
  }
  .footer__left-menu-items {
    row-gap: 20px;
    align-items: center;
  }
  .footer__right-wrapper {
    justify-content: space-between;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .footer__left-contact {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer__bottom-copyright-text {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
  }
  .footer__bottom-copyright-text span {
    text-wrap: wrap;
  }
}
@media (max-width: 499.98px) {
  .footer__right-wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
  }
  .footer__bottom-copyright-text span {
    text-align: center;
  }
}