/* FONTS */

@font-face {
  font-display: swap;
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/fira-sans-v17-cyrillic_latin-100.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/fira-sans-v17-cyrillic_latin-200.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fira-sans-v17-cyrillic_latin-regular.woff2")
    format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/fira-sans-v17-cyrillic_latin-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/fira-sans-v17-cyrillic_latin-600.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/fira-sans-v17-cyrillic_latin-700.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v40-cyrillic_latin-regular.woff2")
    format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v40-cyrillic_latin-700.woff2") format("woff2");
}

/* BASE STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: #005ca5;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  background-color: #fff;
  line-height: 1;
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

a {
  display: inline-block;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  user-select: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  user-select: none;
}

td {
  padding: 0;
}

input {
  font-family: inherit;
  padding: 0;
  user-select: none;
}

address {
  margin-bottom: 0;
}

table {
  border-collapse: inherit;
}

.thumbnail {
  border: none;
  border-radius: 4px;
}

#content {
  min-height: 500px;
}

@media screen and (min-width: 991px) {
  html {
    scroll-behavior: smooth;
  }
}

/* LANG */

.header__lang {
  display: flex;
  flex-direction: row;
}

.header__lang-list {
  display: flex;
  align-items: center;
}

.header__lang-list button {
  margin: 0;
  background: #fff;
  color: #000;
  font-weight: 500;
  border: 1px solid #004d83;
}

@media screen and (max-width: 992px) {
  .header__info {
    margin-right: 70px;
  }
}

/* UTILITES */

.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* WRAPPER */

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* PAGE */

.page {
  flex: 1 1 auto;
}

/* CONTAINER */

.container {
  width: 100%;
  max-width: 1350px;
  padding: 0 15px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}

/* LANG */

.header .container {
  position: relative;
}

.header__lang {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  right: 21px;
  top: 20px;
  width: 60px;
  z-index: 2;
}

.header__lang-list {
  display: flex;
  align-items: center;
  gap: 8%;
  flex-direction: row;
}

.header__lang-list button {
  margin: 0;
  width: 46%;
  font-size: 13px;
  padding: 4px 0px;
}

.header__right-part {
  margin-right: 70px;
}

/* BUTTONS */

.language-current {
  background: #025fa1 !important;
  color: #fff !important;
}
.language-current:hover {
  background: #025fa1 !important;
  color: #fff !important;
}

.btn {
  background-color: #005ca5;
  line-height: 1.19;
  color: #fff;
  border-radius: 2px;
  padding: 8px 18px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #2585e5;
  color: #fff;
}

.btn-bordered {
  background-color: transparent;
  border: 1px solid #005ca5;
  padding: 7px 18px;
  color: #005ca5;
  cursor: pointer;
  transition: background-color 0.5s ease, color 0.2s ease;
  line-height: 1.13;
}

.btn-bordered:hover {
  background-color: #005ca5;
  color: #fff;
}

.value-button {
  background-color: #fff;
  padding: 7px 10px;
  border: 1px solid #333;
  color: #333;
  cursor: pointer;
  border-radius: 2px;
  font-size: 13px;
}

.modal-button {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(229, 229, 229, 0.9);
  border: none;
  padding: 10px 20px;
  font-size: 13px;
  color: #666;
  text-wrap: nowrap;
  margin-top: 85px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: none;
  visibility: hidden;
}

/* AMOUNT BTN */

.amount {
  width: 82px;
  height: 34px;
  padding: 7px;
  background-color: #f3f3f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 13px;
}

.amount__btn {
  background-color: transparent;
  padding: 0;
  border: none;
  font-size: 22px;
  color: #666;
  cursor: pointer;
}

.amount__btn:hover {
  color: #222;
}

/* IMAGE ZOOM BTN */

.image-zoom {
  width: 50px;
  height: 50px;
  background-color: #1976d2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-zoom__btn {
  width: 21px;
  height: 22px;
  padding: 0;
  border: none;
  background-color: transparent;
  background-image: url("../images/icons.png");
  background-position: -250px -171px;
  cursor: pointer;
}

/* --------- */

.items-hidden-button,
.header-mobile-menu-btn,
.items-hidden-button,
.header-button {
  background-color: transparent;
  border: none;
  padding: 0;
}

.items-hidden-button {
  background-image: url("../images/icons.png");
  background-position: -1px -336px;
  background-repeat: no-repeat;
  width: 17px;
  height: 8px;
  cursor: pointer;
}

.header-button {
  cursor: pointer;
  position: relative;
}

.header-button:hover .header-button__icon {
  fill: #1976d2;
}

.header-button:hover .header-button__icon.icon-search {
  fill: #005ca5;
}

.header-button__icon {
  fill: #909090;
}

.header-button__icon.cabinet-icon {
  fill: #005ca5;
}

.header-button__icon.icon-search {
  fill: #000;
  fill-rule: evenodd;
}

.header-button__count {
  width: 20px;
  height: 20px;
  background-color: #909090;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0px 0px 0px 2px #fff;
  position: absolute;
  top: -9px;
  right: -11px;
}

.little-delete-btn {
  position: absolute;
  background-color: transparent;
  padding: 0;
  border: none;
  color: #666;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  width: 17px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.little-delete-btn:hover {
  background-color: #005ca5;
  color: #fff;
}

/* OWL NAV BUTTONS */

.button-prev,
.button-next {
  width: 33px;
  height: 35px;
  border-radius: 4px;
  background-image: url("../images/arrow.png");
  background-position: 5px -18px;
  border: 1px solid #e5e5e5;
  background-color: transparent;
  cursor: pointer;
}

.button-prev:hover,
.button-next:hover {
  background-position-y: 6px;
  background-color: #f6f6f7;
}

.button-next {
  transform: rotate(180deg);
}

@media screen and (max-width: 991px) {
  .modal-button {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .header-button:nth-child(-n + 2) {
    display: none;
  }
}

/* --------------------------------FOR ALL PAGES------------------------------------------------ */

/* MARKS */

.product-block__badges {
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: absolute;
  top: 15px;
  left: 20px;
}

.product-card__marks {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
  display: flex;
  gap: 5px;
  flex-direction: column;
}

.mark-hit,
.mark-stocks,
.mark-new {
  position: static;
  padding: 6px 10px;
  margin-bottom: 0;
  color: #fff;
  letter-spacing: 0.5px;
  font-size: 10px;
  line-height: 0.75;
  text-transform: uppercase;
  border-radius: 2px;
  top: 0;
  left: 0;
  z-index: 5;
  width: fit-content;
}

.mark-hit {
  background-color: #2992d9;
}

.mark-stocks {
  background-color: #de1519;
}

.mark-new {
  background-color: #02b72e;
}

/* SHINE PHOTO */

.shine-photo::before {
  content: "";
  width: 25%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  opacity: 0;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-out;
}

/* RATING */

.rating {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 2px;
}

i.fa.fa-star.star-active {
  color: #ffd700;
}

.rating__star-button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.fa-star {
  width: 15px;
  height: 15px;
  color: #ccc;
}

/* COLORS */

.sp-product-group-name {
  color: #888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 7px;
}

.colors__title {
  color: #888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 7px;
}

.colors__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.value-active .colors__color .colors__color-button {
  outline: 2px solid #fff;
  outline-offset: -4px;
  border-color: #1773cf;
}

.sp-product-group-product .group-color.sppg_link_to_load {
  border: 2px solid #fff !important;
  padding: 0 !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset !important;
}

.sp-product-group-product.current .group-color.sppg_link_to_load {
  outline: 2px solid #fff !important;
  outline-offset: -4px !important;
  border-color: #1773cf !important;
}

.sp-product-group-product.current .group-text.sppg_link_to_load {
  background-color: #005ca5 !important;
  border-color: #005ca5 !important;
  color: #fff !important;
}

.sp-product-group-product .group-text.sppg_link_to_load {
  background-color: #fff;
  padding: 7px 10px;
  border: 1px solid #333;
  color: #333;
  cursor: pointer;
  border-radius: 2px !important;
  font-size: 13px;
}

.colors__color-button {
  border: 2px solid #fff;
  padding: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
}

/* TEXTAREA */

.form-textarea {
  position: relative;
}

.form-textarea__label {
  position: absolute;
  top: -20px;
  left: 0;
  color: #888;
  font-size: 13px;
  line-height: 1.43;
}

.form-textarea__control {
  width: 100%;
  background-color: #f7f7f7;
  padding: 10px 13px;
  line-height: 1.25;
  border: 1px solid #eee;
  border-radius: 2px;
  color: #383838;
  font-size: 13px;
  min-height: 193px;
  resize: none;
}

.form-textarea__control:focus {
  outline: none;
}

/* MODAL */

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(58, 63, 68, 0.7);
  transition: visibility 0.2s, opacity 0.2s;
  z-index: 20;
}

.backdrop.is-hidden {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.backdrop.is-hidden .search-modal {
  transform: translateY(-100%);
}

.backdrop.is-hidden .mobile-menu {
  transform: translateX(-100%);
}

.modal-button-close {
  position: absolute;
  top: 31px;
  right: 33px;
  background-color: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  background-image: url("../images/btn-close.png");
  background-position: -1px -46px;
  width: 14px;
  height: 14px;
}

.modal-button-close:hover {
  background-position: -30px -46px;
  background-color: #005ca5;
}

/* FOR MODALS */

.description-block {
}

.description-block__title {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 4px;
  font-weight: 400;
}

.description-block__buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.description-block__value:hover .value-button {
  border-color: #1569bc;
  color: #1569bc;
}

.description-block__value.value-active .value-button {
  background-color: #005ca5;
  border-color: #005ca5;
  color: #fff;
}

/* INPUT */

.input {
  position: relative;
  margin-bottom: 38px;
}

.input:first-child {
  margin-top: 19px;
}

.input__label {
  position: absolute;
  top: -25px;
  left: 0;
  color: #888;
  font-size: 13px;
  line-height: 1.43;
}

.input__control {
  width: 100%;
  background-color: #f7f7f7;
  padding: 10px 13px;
  line-height: 1.25;
  border: 1px solid #eee;
  border-radius: 2px;
  color: #383838;
  font-size: 13px;
}

.input__control:focus {
  outline: none;
}

.input__control[required] + .input__label::after {
  content: "  *";
  color: #e62222;
}

/* SEARCH INPUT */

.search-input {
  padding: 12px 44px 12px 16px;
  background-color: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 4px;
  height: auto;
}

.search-input:focus {
  outline: none;
  border: 1px solid #eee;
  box-shadow: none;
}

/* FORM AGREED */

.form-agreed {
  margin-bottom: 20px;
}

.form-agreed__checkbox {
  appearance: none;
}

.form-agreed__checkbox:checked + .form-agreed__label::before {
  background-image: url("../images/icons.png");
  background-position: -17px 3px;
  border: 1px solid #005ca5;
}

.form-agreed__label {
  position: relative;
  cursor: pointer;
}

.form-agreed__label::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background-color: #005ca5;
  position: absolute;
  top: 3px;
  left: 0;
}

.form-agreed__label-text {
  padding-left: 23px;
  font-size: 13px;
  color: #888;
  line-height: 1.8;
}

.form-agreed__label-text span {
  white-space: nowrap;
}

.form-agreed__link {
  text-decoration: none;
  color: #005ca5;
}

.form-agreed__link:hover {
  color: #1d2029;
}

/* MENU SUBCATEGORIES */

.subcategories {
  position: absolute;
  top: 0;
  left: 100%;
  box-shadow: 0 2px 14px 0 rgba(215, 215, 215, 0.5);
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}

.visible-subcategories:hover .subcategories {
  opacity: 1;
  visibility: visible;
}

.subcategories__item {
  padding-left: 21px;
  padding-right: 21px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.subcategories__link {
  text-wrap: nowrap;
  text-decoration: none;
  color: #014494;
}

/* SECTION MENU HIDDEN */

.section-hidden {
}

.section-hidden__item {
  position: relative;
}

.section-hidden__item:hover .header-menu-section-hidden {
  opacity: 1;
  visibility: visible;
}

.section-hidden__item::before,
.section-hidden__item::after {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #005ca5;
  position: absolute;
  top: 50%;
  right: 14px;
  border-radius: 4px;
}

.section-hidden__item::before {
  transform: rotate(45deg);
  margin-top: -3px;
}

.section-hidden__item::after {
  transform: rotate(-45deg);
}

/* PAGE SCROLLER */

.page-scroller {
  display: inline-block;
  position: fixed;
  bottom: 6%;
  right: 6%;
  z-index: 18;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.page-scroller.scroller-visible {
  opacity: 1;
  visibility: visible;
}

.page-scroller.scroller-absolute {
  position: absolute;
  bottom: 10px;
}

.page-scroller__button {
  background-color: #005ca5;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: rotate(90deg);
}

.page-scroller__button svg {
  fill: #fff;
}

/* HEADER */

.header {
  padding-top: 7px;
  padding-bottom: 20px;
  user-select: none;
}

.header-fixed {
  transform: translateY(-100%);
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-out;
  z-index: 20;
}

.header-fixed.active {
  transform: translateY(0);
  overflow: visible;
}

@media screen and (max-width: 991px) {
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* HEADER DESKTOP */

.header__desktop {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

@media screen and (max-width: 991px) {
  .header__desktop {
    display: none;
  }
}

/* HEADER TOP */

.header__top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  position: relative;
  padding-bottom: 12px;
}

.header__top::after {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #eee;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: calc(-50vw + 50%);
}

.header__left-part {
  display: flex;
  gap: 27px;
  align-items: center;
}

/* HEADER TOP LOGO */

.header__logo {
  width: 138px;
  padding-top: 10px;
}

.header__logo-text {
  text-decoration: none;
  color: #005ca5;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 11.5px;
  line-height: 1.17;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -0.3px;
}

/* HEADER TOP TRADEMARKS */

.header__trademarks-title {
  font-size: 11.6px;
  line-height: 1.1;
  text-transform: uppercase;
  font-family: "Fira Sans", Arial, sans-serif;
  color: #999;
  letter-spacing: 0.25px;
  margin-bottom: 0;
}

.header__trademarks-list {
  display: flex;
  gap: 60px;
}

.header__trademarks-item {
  max-width: 152px;
  max-height: 85px;
}

.header__trademarks-image,
.header__trademarks-image img {
  width: 100%;
  height: 100%;
}

.header__trademarks-image img {
  object-fit: contain;
}

.header__right-part {
  display: flex;
  gap: 35px;
  align-items: center;
}

/* HEADER TOP INFO */

.header__info {
  position: relative;
  padding-left: 14px;
}

.header__info::before {
  content: "";
  width: 9px;
  height: 12px;
  background-image: url("../images/icons/phone.svg");
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 23px;
  margin-top: 5px;
}

.header__number {
  font-size: 16px;
  text-decoration: none;
  color: #222;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
}

.header__schedule {
  margin-bottom: 0;
  font-size: 10.3px;
  color: #999;
  white-space: nowrap;
}

@media screen and (min-width: 992px) {
  .header__info {
    padding-left: 23px;
  }

  .header__number {
    font-size: 15.999px;
  }

  .header__schedule {
    font-size: 12px;
  }
}

@media screen and (min-width: 1065px) {
  .header__number {
    font-size: 20px;
  }

  .header__schedule {
    font-size: 13px;
    white-space: normal;
  }
}

/* HEADER TOP INFO SEARCH */

.header__search {
  position: relative;
}

.header__search-input {
  width: 314px;
}

.header__search-input::placeholder {
  font-size: 14px;
}

.header__search-input:focus {
  outline: none;
}

.header__search-icon {
  position: absolute;
  top: 50%;
  right: 0;
  margin-right: 16px;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* HEADER MENU */

.header__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 22px;
  padding-right: 22px;
}

.header__menu table {
  width: 100%;
}

.header__menu-list {
  flex-grow: 1;
}

.header__menu-item {
  position: relative;
}

.header__menu-item.item-news::before,
.header__menu-item.item-company::before,
.header__menu-item.item-tips::before,
.header__menu-item.item-news::after,
.header__menu-item.item-company::after,
.header__menu-item.item-tips::after {
  content: "";
  width: 6px;
  height: 1.5px;
  background-color: #005ca5;
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 4px;
}

.header__menu-item.item-news::before,
.header__menu-item.item-company::before,
.header__menu-item.item-tips::before {
  transform: rotate(45deg);
  margin-right: 23px;
}

.header__menu-item.item-news::after,
.header__menu-item.item-company::after,
.header__menu-item.item-tips::after {
  transform: rotate(-45deg);
  margin-right: 20px;
}

.header__menu-item.item-active .header__menu-link span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #de1519;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -22px;
}

.header__menu-item:hover .header-menu-catalog,
.header__menu-item:hover .header-menu-section,
.header__menu-items-hidden:hover .header-menu-section {
  opacity: 1;
  visibility: visible;
}

.header__menu-item:nth-last-child(2),
.header__menu-items-hidden .header-menu-section__item:first-child {
  display: none;
}

.header__menu-items-hidden,
.header__menu-link span {
  padding-right: 18px;
  position: relative;
}

.header__menu-items-hidden {
  padding-right: 18px;
}

.header__menu-link {
  color: #005ca5;
  text-decoration: none;
  line-height: 1.33;
  font-weight: 700;
  text-wrap: nowrap;
  padding-right: 40px;
}

.header__menu-link span::after {
  content: "";
  min-width: 0;
  height: 2px;
  background-color: #de1519;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -22px;
  transition: min-width 0.2s ease-out;
}

.header__menu-link:hover {
  text-decoration: none;
}

.header__menu-link:hover span::after {
  min-width: 100%;
}

.link-more-item {
  padding-right: 70px;
}

@media screen and (min-width: 1300px) {
  .header__menu-item:nth-last-child(2) {
    display: table-cell;
  }

  .header__menu-items-hidden {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .header__menu-item:nth-last-child(3) {
    display: none;
  }

  .header__menu-items-hidden .header-menu-section__item:first-child {
    display: block;
  }
}

/* HEADER MENU CATALOG */

.header-menu-catalog {
  position: absolute;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  width: 366px;
  left: 0;
  margin-top: 20px;
  margin-left: -22px;
  background-color: #fff;
  box-shadow: 0 2px 14px 0 rgba(215, 215, 215, 0.5);
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}

.header-menu-catalog.menu-fixed {
  margin-top: 28px;
}

.header-menu-catalog__item {
  position: relative;
}

.header-menu-catalog__item:first-child {
  margin-bottom: 1px;
}

/*.header-menu-catalog__item:first-child .catalog-category,
.header-menu-catalog__item:nth-child(2) .catalog-category {
  background-color: #142a3d;
}

.header-menu-catalog__item:nth-child(2) .catalog-category {
  background-image: url("../images/backgrounds/category-background.png");
  background-size: cover;
}

.header-menu-catalog__item:nth-child(2):hover .catalog-category {
  background-image: none;
}

.header-menu-catalog__item:nth-child(n + 4) .catalog-category::before,
.header-menu-catalog__item:nth-child(n + 4) .catalog-category::after {
  content: "";
  width: 5px;
  height: 1px;
  background-color: #888;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  border-radius: 4px;
  margin-right: 15px;
}

.header-menu-catalog__item:nth-child(n + 4) .catalog-category::before {
  transform: rotate(45deg);
  margin-top: -3px;
}

.header-menu-catalog__item:nth-child(n + 4) .catalog-category::after {
  transform: rotate(-45deg);
}

.header-menu-catalog__item:first-child .catalog-category__name,
.header-menu-catalog__item:nth-child(2) .catalog-category__name {
  color: #fff;
}

.header-menu-catalog__item:first-child:hover .catalog-category__name,
.header-menu-catalog__item:nth-child(2):hover .catalog-category__name {
  color: #005e9f;
}

.header-menu-catalog__item:nth-child(2) .catalog-category__name {
  font-weight: 700;
}

.header-menu-catalog__item:nth-child(3) .catalog-category__name {
  color: #de1519;
}

.header-menu-catalog__item:first-child .catalog-category__image,
.header-menu-catalog__item:nth-child(2) .catalog-category__image {
  background-color: transparent;
}

.header-menu-catalog__item:nth-child(3) .catalog-category__image {
  background-color: #de1519;
}

*/

.header-menu-catalog__item:first-child .catalog-category__image {
  background-color: #de1519;
}

.header-menu-catalog__item:first-child .catalog-category__name {
  color: #de1519;
  font-weight: 600;
}

.header-menu-catalog__item .catalog-category__image {
  background-color: #005e9f;
}

.header-menu-catalog__item .catalog-category__name {
  color: #142a3d;
}

/* CATALOG CATEGORY */

.catalog-category {
  display: flex;
  align-items: center;
  height: 44px;
  text-decoration: none;
  position: relative;
  background-color: #fff;
  transition: background-color 70ms ease-out, background-image 70ms ease-out;
  padding: 3px;
  border: 1px solid #f2f2f2;
  border-bottom-width: 0;
}

.catalog-category:hover {
  background-color: #f8f8f8;
}

.catalog-category__image {
  background-color: #005e9f;
  display: flex;
  align-items: center;
  border-radius: 2px;
}

.catalog-category__name {
  margin-bottom: 0;
  padding-right: 31px;
  padding-left: 14px;
  font-size: 13px;
  max-width: 368px;
  line-height: 1.25;
  color: #005e9f;
  transition: color 70ms ease-out;
}

.catalog-category-background-image {
  opacity: 0.5;
  position: absolute;
  right: 0;
  margin-right: -30px;
}

.catalog-category__subcategories {
  transition: opacity 70ms ease-out, visibility 70ms ease-out;
}

.catalog-category__subcategories-item:hover {
  background-color: #f8f8f8;
}

.catalog-category__subcategory-link {
  font-size: 14px;
}

/* HEADER MENU SECTION */

.header-menu-section {
  position: absolute;
  z-index: 10;
  top: 42px;
  background-color: #fff;
  box-shadow: 0 2px 14px 0 rgba(215, 215, 215, 0.5);
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
}

.header-menu-section.section-visible {
  width: 248px;
  left: -18px;
}

.header-menu-section.section-hidden {
  right: -50%;
}

.header-menu-section__item {
  padding-right: 29px;
}

.header-menu-section__item:not(:first-child) {
  border-top: 1px solid #f0f0f0;
}

.header-menu-section__item:hover .header-menu-section__link {
  color: #1d6dd9;
}

.header-menu-section__link {
  padding: 14px 0 14px 19px;
  overflow: hidden;
  text-decoration: none;
  font-size: 14px;
  color: #005ca5;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

/* HEADER MENU SECTION HIDDEN */

.header-menu-section-hidden {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 100%;
  background-color: #fff;
  box-shadow: 0 2px 14px 0 rgba(215, 215, 215, 0.5);
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  width: 160px;
}

.header-menu-section-hidden__item:not(:first-child) {
  border-top: 1px solid #f0f0f0;
}

.header-menu-section-hidden__link {
  padding: 14px 29px 14px 19px;
  overflow: hidden;
  text-decoration: none;
  font-size: 14px;
  color: #005ca5;
  line-height: 1.43;
  width: 100%;
}

.header-menu-section-hidden__item:hover .header-menu-section__link {
  color: #1d6dd9;
}

/* HEADER BUTTONS */

.header__buttons {
  display: flex;
  gap: 44px;
  margin-left: 20px;
}

.header__button {
  display: flex;
  gap: 7px;
  background-color: transparent;
  border: none;
  padding: 0;
  align-items: center;
  cursor: pointer;
}

.header__button-icon {
  fill: #005ca5;
}

.header__button-count {
  width: 20px;
  height: 20px;
  background-color: #005ca5;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* HEADER DESKTOP FIXED */

.header-desktop-fixed {
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.136);
}

.header-desktop-fixed__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.header-desktop-fixed__logo {
  width: 215px;
}

.header-desktop-fixed__logo-text {
  text-decoration: none;
  color: #005ca5;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 200;
  font-family: "Fira Sans", Arial, sans-serif;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.header-desktop-fixed__logo-text b {
  font-weight: 400;
}

.header-desktop-fixed__menu,
.header-desktop-fixed__menu-list {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}

.header-desktop-fixed__menu-item {
  margin-right: 24px;
  position: relative;
}

.header-desktop-fixed__menu-item.item-active
  .header-desktop-fixed__menu-link::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #de1519;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -28.7px;
}

.header-desktop-fixed__menu-link:hover {
  text-decoration: none;
}

.header-desktop-fixed__menu-item:hover .header-menu-catalog,
.header-desktop-fixed__menu-item:hover .header-menu-section,
.header-desktop-fixed__menu-item.items-hidden:hover .fixed-menu-hidden {
  opacity: 1;
  visibility: visible;
}

.header-desktop-fixed__menu-item.items-hidden {
  position: relative;
  margin-right: 0;
  padding-right: 12px;
  cursor: pointer;
}

.header-desktop-fixed__menu-link {
  text-decoration: none;
  color: #005ca5;
  font-weight: 700;
  position: relative;
}

.header-desktop-fixed__menu-link::after {
  content: "";
  min-width: 0;
  height: 2px;
  background-color: #de1519;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -30px;
  transition: min-width 0.2s ease-out;
}

.header-desktop-fixed__menu-link:hover::after {
  min-width: 100%;
}

.header-desktop-fixed__buttons {
  display: flex;
  gap: 60px;
  margin-left: 5px;
  margin-right: 30px;
}

@media screen and (max-width: 1280px) {
  .header-desktop-fixed__menu-item:nth-last-child(2) {
    display: none;
  }
}

@media screen and (max-width: 1055px) {
  .header-desktop-fixed__menu-item:nth-last-child(3) {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .header-desktop-fixed {
    display: none;
  }
}

/* FIXED MENU HIDDEN */

.fixed-menu-hidden {
  position: absolute;
  z-index: 10;
  top: 44px;
  background-color: #fff;
  box-shadow: 0 2px 14px 0 rgba(215, 215, 215, 0.5);
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  border-top: 2px solid #de1519;
}

.fixed-menu-hidden.section-visible {
  width: 248px;
  left: -18px;
}

.fixed-menu-hidden.section-hidden {
  right: 0;
}

.fixed-menu-hidden__item {
  padding-right: 29px;
}

.fixed-menu-hidden__item:not(:first-child) {
  border-top: 1px solid #f0f0f0;
}

.fixed-menu-hidden__item:hover .header-menu-section__link {
  color: #1d6dd9;
}

.fixed-menu-hidden__item:nth-child(-n + 2) {
  display: none;
}

.fixed-menu-hidden__link {
  padding: 14px 0 14px 19px;
  overflow: hidden;
  text-decoration: none;
  font-size: 14px;
  color: #005ca5;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .fixed-menu-hidden__item:nth-child(2) {
    display: block;
  }
}

@media screen and (max-width: 1055px) {
  .fixed-menu-hidden__item:first-child {
    display: block;
  }
}

/* HEADER MOBILE FIXED */

.header-mobile-fixed {
  background-color: #005ca5;
}

.header-mobile-fixed__container {
  display: flex;
  gap: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-mobile-fixed__mobile-menu-btn-icon {
  fill: #fff;
}

@media screen and (min-width: 992px) {
  .header-mobile-fixed {
    display: none;
  }
}

/* HEADER MOBILE FIXED LOGO */

.header-mobile-fixed__logo {
  flex-grow: 1;
}

.header-mobile-fixed__logo-text {
  text-decoration: none;
  color: #fff;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 0.8px;
  max-width: 121px;
}

/* HEADER MOBILE FIXED BUTTONS */

.header-mobile-fixed__buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-mobile-fixed__button {
  background-color: transparent;
  border: none;
  padding: 0;
}

.header-mobile-fixed__button-icon {
  fill: #fff;
}

/* HEADER MOBILE */

.header__mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  background-color: #fff;
}

.header__mobile::after {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #eee;
  position: absolute;
  bottom: -10px;
  left: 0;
  margin-left: calc(-50vw + 50%);
}

@media screen and (min-width: 992px) {
  .header__mobile {
    display: none;
  }
}

@media screen and (max-width: 375px) {
  .header__mobile {
    gap: 15px;
  }
}

/* BURGER MENU BUTTON */

.header-mobile-menu-btn:hover .header__mobile-menu-btn-icon {
  fill: #005ca5;
}

.header__mobile-menu-btn-icon {
  fill: #222;
}

/* HEADER MOBILE LOGO */

.header__mobile-logo {
  max-width: 109px;
}

.header__mobile-logo-text {
  text-decoration: none;
  color: #005ca5;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 0.8px;
  max-width: 110px;
}

@media screen and (max-width: 500px) {
  .header__mobile-logo {
    flex-grow: 1;
    max-width: none;
  }
}

/* HEADER MOBILE BUTTONS */

.header__mobile-buttons {
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 500px) {
  .header__mobile-buttons {
    display: none;
  }
}

/* CABINET MODAL */

.cabinet-modal {
  max-width: 520px;
  width: 100%;
  max-height: 531px;
  height: 100%;
  position: relative;
  background-color: #fff;
  overflow-x: auto;
  z-index: 21;
  display: flex;
  flex-direction: column;
}

.cabinet-modal__title {
  color: #383838;
  font-size: 26px;
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 0;
  padding: 16px 35px;
  border-bottom: 2px solid #167ab5;
}

/* CABINET MODAL FORM */

.cabinet-modal__form-container {
  flex: 1 1 auto;
}

.cabinet-modal__form {
  position: relative;
  padding: 29px 35px 35px;
}

.cabinet-modal__form-label {
  font-size: 15px;
}

.cabinet-modal__form-button {
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.cabinet-modal__form-link {
  position: absolute;
  right: 35px;
  text-decoration: none;
  color: #005ca5;
  font-size: 13px;
  transition: color ease-out 70ms;
  line-height: 1.5;
  bottom: 78px;
  transition: color 70ms ease-out;
}

.cabinet-modal__form-link:hover {
  color: #333;
  border-color: #333;
}

/* CABINET MODAL SIGN UP */

.cabinet-modal__sign-up-block {
  background-color: #f7f7f7;
  border-top: 1px solid #f2f2f2;
  padding: 28px 35px 35px;
  display: flex;
  gap: 25px;
  align-items: center;
}

.cabinet-modal__sign-up-btn {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  padding: 8px 18px;
  transition: color 70ms ease-out;
}

.cabinet-modal__sign-up-btn:hover {
  color: #333;
  border-color: #333;
  background-color: transparent;
}

.cabinet-modal__sign-up-text {
  margin-bottom: 0;
  color: #999;
  font-size: 12px;
  line-height: 1.5;
}

/* SEARCH MODAL */

.backdrop.search-backdrop {
  align-items: flex-start;
}

.search-modal {
  max-width: 100vw;
  width: 100%;
  max-height: 132px;
  height: 100%;
  position: relative;
  background-color: #fff;
  overflow-x: auto;
  transform: translateY(0);
  transition: transform 0.3s ease;
  padding-left: 70px;
  padding-right: 88px;
}

.search-modal__container,
.search-modal__input,
.search-modal__search-field {
  height: 100%;
}

.search-modal__input {
  display: flex;
  align-items: center;
  gap: 30px;
}

.search-modal__search-field {
  border: none;
  flex-grow: 1;
  font-size: 28px;
  color: #444;
  width: 100%;
  background-color: transparent;
}

.search-modal__search-field:focus {
  outline: none;
}

.search-modal__button {
  border: none;
  padding: 13px 25px;
  font-weight: 700;
}

/* MOBILE MENU */

.mobile-menu-backdrop {
  align-items: flex-start;
  justify-content: flex-start;
}

.mobile-menu,
.mobile-menu-page {
  max-width: 300px;
  width: 100%;
  max-height: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: #fff;
  transition: transform 0.3s ease;
  overflow-x: hidden;
}

.mobile-menu,
.mobile-menu-page.is-open {
  transform: translateX(0);
}

.mobile-menu {
  position: relative;
}

.mobile-menu-page {
  transform: translateX(100%);
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
}

.mobile-menu-page__close {
  display: flex;
  background-color: transparent;
  border: none;
  align-items: center;
  padding: 22px 20px;
  gap: 22px;
  color: #222;
  border-bottom: 1px solid #f2f2f2;
  width: 100%;
}

.mobile-menu-page__title {
  font-size: 15px;
  padding: 20px 22px;
  background-color: #fbfbfb;
  margin-bottom: 0;
}

.mobile-menu-page__title,
.mobile-menu-page__item {
  border-bottom: 1px solid #f2f2f2;
}

.mobile-menu-page__title,
.mobile-menu-page__item:hover .mobile-menu-page__link {
  color: #005ca5;
  width: 100%;
}

.mobile-menu-page__link {
  padding: 20px;
  text-decoration: none;
  color: #222;
  width: 100%;
}

/* MOBILE MENU MAIN PAGE */

.mobile-menu-main-page {
  overflow-x: hidden;
  position: relative;
}

/* MOBILE MENU MENU */

.mobile-menu-main-page__item {
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}

.mobile-item-catalog::after,
.mobile-item-company::after,
.mobile-item-tips::after {
  content: "";
  background-image: url("../images/icons/triangle-arrow.svg");
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-repeat: no-repeat;
}

.mobile-menu-main-page__link {
  background-color: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
  color: #222;
  font-weight: 700;
  padding: 19px 46px 20px 19px;
  width: 100%;
  text-align: left;
}

/* MOBILE MENU SECTIONS */

.mobile-menu-main-page__sections {
  background-color: #fbfbfb;
}

.mobile-menu-main-page__section {
  border-bottom: 1px solid #f2f2f2;
}

.mobile-menu-main-page__section:first-child
  .mobile-menu-main-page__section-icon
  svg {
  opacity: 1;
}

.mobile-menu-main-page__section:hover .mobile-menu-main-page__section-link {
  color: #1976d2;
}

.mobile-menu-main-page__section:first-child
  .mobile-menu-main-page__section-icon
  svg,
.mobile-menu-main-page__section:first-child:hover
  .mobile-menu-main-page__section-icon
  svg {
  fill: #1976d2;
}

.mobile-menu-main-page__section-link {
  padding: 20px 20px 20px 57px;
  display: flex;
  text-decoration: none;
  color: #222;
  font-weight: 700;
  align-items: center;
  position: relative;
}

.mobile-menu-main-page__section-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.mobile-menu-main-page__section-icon svg {
  opacity: 0.5;
  fill-rule: evenodd;
}

.mobile-menu-main-page__section-count {
  width: 17px;
  height: 17px;
  background-color: #969ba5;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 10px;
}

/* MOBILE MENU CONTACT */

.mobile-menu-main-page__contact-info {
  padding: 20px 20px 30px 20px;
}

.mobile-menu-main-page__contact-info-title {
  color: #222;
  font-weight: 700;
  font-size: 15px;
}

.mobile-menu-main-page__contact-info-title,
.mobile-menu-main-page__address {
  margin-bottom: 18px;
}

.mobile-menu-main-page__contact-info-address-list {
  max-width: 250px;
}

.mobile-menu-main-page__contact-info-address-item {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 13px;
  color: #333;
  line-height: 1.13;
}

.mobile-menu-main-page__contact-info-address-item:hover
  .mobile-menu-main-page__contact-info-address-icon
  svg {
  fill: #005ca5;
}

.mobile-menu-main-page__contact-info-address-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.mobile-menu-main-page__contact-info-address-link {
  display: flex;
  text-decoration: none;
  font-size: 13px;
  color: #333;
  line-height: 1.13;
}

/* MOBILE MENU CATALOG */

.mobile-menu-catalog__item {
  border-bottom: 1px solid #f2f2f2;
}

.mobile-menu-catalog__item:hover .mobile-catalog-category__name {
  color: #005ca5;
}

.mobile-menu-catalog__item:nth-child(1) .mobile-catalog-category__image {
  background-color: #de1519;
}

/* MOBILE CATALOG CATEGORY */

.mobile-catalog-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-catalog-category__link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
}

.mobile-catalog-category__image {
  background-color: #005ca5;
}

.mobile-catalog-category__name {
  margin-bottom: 0;
  color: #222;
}

.mobile-catalog-category__arrow {
  display: flex;
  fill-rule: evenodd;
  /* padding-left: 27px; */
  /* padding-right: 27px; */
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

/* PAGE TITLE SECTION */

.page-title-section {
  background-color: #f9f9f9;
  padding-top: 26px;
  padding-bottom: 18px;
  user-select: none;
}

.page-title-section__path {
  color: #b6b5b5;
  font-size: 12px;
  line-height: 1.5;
}

.page-title-section__path-link {
  text-decoration: none;
  color: inherit;
  transition: color 70ms ease;
}

.page-title-section__path-link:last-child span {
  display: none;
}

.page-title-section__path-link:hover {
  color: #005ca5;
}

.page-title-section__title {
  color: #383838;
  font-size: 24px;
  margin-bottom: 0;
}

.page-title-section__title-rus {
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .page-title-section__path {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  .page-title-section {
    text-align: center;
  }
}

/* RUBRIK SECTION */

.rubrik-section {
  padding-top: 20px;
}

.rubrik-section,
.rubrik-section__item {
  position: relative;
}

.rubrik-section__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0px;
}

.rubrik-section__item:hover::after {
  min-width: 100%;
}

.rubrik-section__item:hover .rubrik-menu {
  opacity: 1;
  visibility: visible;
}

.rubrik-section__item:nth-last-child(-n + 3) .rubrik-menu {
  left: auto;
  right: 0;
}

@media screen and (max-width: 991px) {
  .rubrik-section__item {
    width: 20%;
  }
}

@media screen and (min-width: 992px) {
  .rubrik-section__list {
    gap: 20px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .rubrik-section__item::after {
    content: "";
    min-width: 0;
    height: 2px;
    background-color: #de1519;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: min-width 0.2s ease-out;
  }
}

/* RUBRIK CARD */

.rubrik-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.rubrik-link-card__image {
  width: 55px;
  height: 55px;
  background-color: #f6f6f8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rubrik-link-card__name {
  margin-bottom: 20px;
  color: #de1519;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .rubrik-link-card {
    gap: 12px;
  }

  .rubrik-link-card__name {
    font-size: 8px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 375px) {
  .rubrik-link-card__name {
    font-size: 7px;
  }
}

/* RUBRIK MENU */

.rubrik-menu {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  padding-top: 28px;
  padding-bottom: 28px;
  top: 100%;
  margin-top: -2px;
  left: 0;
  margin-left: -31px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  z-index: 5;
}

.rubrik-menu__item {
  padding-left: 24px;
  padding-right: 24px;
}

.rubrik-menu__item:hover .rubrik-menu__link {
  color: #1d6dd9;
}

.rubrik-menu__link {
  white-space: nowrap;
  line-height: 2.15;
  font-size: 13px;
  color: #005ca5;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .rubrik-menu {
    display: none;
  }
}

/* MAIN PART */

.main-part-section {
  padding-top: 32px;
  padding-bottom: 30px;
  position: relative;
}

.main-part-section__container {
  display: flex;
  gap: 30px;
}

/* SIDEBAR */

.main-part-section__sidebar {
  min-width: 210px;
}

@media screen and (min-width: 1200px) {
  .main-part-section__sidebar {
    min-width: 234px;
  }
}

@media screen and (max-width: 991px) {
  .main-part-section__sidebar {
    display: none;
  }
}

/* SIDEBAR CATEGORIES */

.main-part-section__categories-item {
  position: relative;
  margin-bottom: 1px;
}

/*.main-part-section__categories-item:first-child .category,
.main-part-section__categories-item:nth-child(2) .category {
  background-color: #142a3d;
} */

/* .main-part-section__categories-item:nth-child(2) .category {
  background-image: url("../images/backgrounds/category-background.png");
  background-size: cover;
} */

.main-part-section__categories-item:nth-child(n + 1) .category::before,
.main-part-section__categories-item:nth-child(n + 1) .category::after {
  content: "";
  width: 5px;
  height: 1px;
  background-color: #888;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  border-radius: 4px;
  margin-right: 15px;
}

.main-part-section__categories-item:nth-child(n + 1) .category::before {
  transform: rotate(45deg);
  margin-top: -3px;
}

.main-part-section__categories-item:nth-child(n + 1) .category::after {
  transform: rotate(-45deg);
}

.main-part-section__categories-item:first-child .category__image,
.main-part-section__categories-item:nth-child(1) .category__image,
.main-part-section__categories-item:nth-child(1) .category__image {
  background-color: #de1519;
}

.main-part-section__categories-item:first-child .category-name,
.main-part-section__categories-item:nth-child(1) .category-name {
  color: #fff;
}

.main-part-section__categories-item:nth-child(1) .category-name {
  font-weight: 700;
}

.main-part-section__categories-item:nth-child(1) .category-name {
  color: #de1519;
}

/* CATEGORY */

.category {
  display: flex;
  align-items: center;
  height: 55px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  background-color: #f8f8f8;
  border: 1px solid #f2f2f2;
  border-bottom-width: 0;
  transition: background-color 70ms ease-out;
}

.category:hover {
  background-color: #fff;
}

.category__image {
  background-color: #005e9f;
  height: 100%;
  padding-left: 3px;
  padding-right: 3px;
  display: flex;
  align-items: center;
}

.category-name {
  margin-bottom: 0;
  padding-right: 31px;
  padding-left: 14px;
  font-size: 13px;
  max-width: 196px;
  line-height: 1.25;
  color: #005e9f;
}

.category-background-image {
  opacity: 0.5;
  position: absolute;
  right: 0;
  margin-right: -30px;
}

.category-subcategories {
}

.category-subcategories__link {
  font-size: 13px;
}

/* SIDEBAR MENU */

.main-part-section__menu {
  display: flex;
  flex-direction: column;
}

.item-active .main-part-section__link {
  color: #fff;
  background-color: #005ca5;
}

.main-part-section__link {
  color: #383838;
  padding: 11px 31px 13px 17px;
  border: 1px solid #f2f2f2;
  font-size: 13px;
  background-color: #f9f9f9;
  width: 100%;
  text-decoration: none;
  line-height: 1.5;
  position: relative;
  transition: color 70ms ease-out;
}

.main-part-section__link:not(.item-active .main-part-section__link):hover {
  color: #1569dc;
}

.main-part-section__link:not(
    .item-active .main-part-section__link
  ):hover::after {
  content: "";
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1569dc;
}

/* SIDEBAR FORM */

.main-part-section__form {
  background-color: #1771ca;
  padding: 20px;
  margin-top: 30px;
  background-image: url("../images/backgrounds/sidebar-form-background.png");
  background-repeat: no-repeat;
  background-position: 113px 17px;
  border-radius: 2px;
}

.main-part-section__form-title {
  color: #fff;
  font-size: 18.288px;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.5;
}

.main-part-section__form-text {
  color: #fff;
  opacity: 0.8;
  font-size: 13px;
  margin-bottom: 11px;
}

.main-part-section__form-input {
  position: relative;
}

.main-part-section__form-input-control {
  width: 100%;
  background-color: #fff;
  font-size: 13px;
  padding: 7px 43px 7px 13px;
  line-height: 1.25;
  border: 1px solid #eee;
  border-radius: 2px;
}

.main-part-section__form-input-control:focus {
  outline: none;
}

.main-part-section__form-input-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 100%;
  background-color: #ecece2;
  background-image: url("../images/icons.png");
  background-position: -245px -332px;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: none;
  padding: 0;
  opacity: 0.5;
}

.main-part-section__form-input-submit:hover {
  opacity: 0.7;
}

/* MAIN BLOCK */

.main-part-section__main-block {
  width: 100%;
  position: relative;
}

.main-block {
  color: #333;
  line-height: 1.5;
}

/* MAIN BLOCK PRODUCT SORTING */

.main-block__sorting {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 20px;
}

/* SORTING BUTTONS */

.main-block__sorting-buttons {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-block__sorting-button {
  text-decoration: none;
  color: #a5a3a3;
  position: relative;
  transition: color 70ms ease-out;
}

.main-block__sorting-button.desktop-sorting-button {
  font-size: 13px;
}

.main-block__sorting-button.desktop-sorting-button select {
  border-radius: 0;
  height: 35px;
  background: whitesmoke;
  border: none;
  box-shadow: none;
  padding: 0 10px;
}

.main-block__sorting-button.mobile-sorting-button {
  display: none;
  font-size: 18px;
}

.main-block__sorting-button:hover {
  color: #333;
}

.main-block__sorting-button:hover::before,
.main-block__sorting-button:hover::after {
  background-color: #333;
}

/*.main-block__sorting-button::before,
.main-block__sorting-button::after {
  content: '';
  width: 5px;
  height: 1.4px;
  background-color: #a5a3a3;
  position: absolute;
  top: 50%;
  right: -10px;
  border-radius: 4px;
  transition: background-color 70ms ease-out;
}

.main-block__sorting-button::before {
  transform: rotate(45deg);
}

.main-block__sorting-button::after {
  transform: rotate(-45deg);
  right: -13px;
}
*/

@media screen and (max-width: 650px) {
  .main-block__sorting-button.desktop-sorting-button {
    display: block;
    margin-right: 10px;
  }
}

/* SORTING FORMAT */

.main-block__sorting-format {
  display: flex;
  gap: 10px;
  align-items: center;
}

.main-block__sorting-format-btn {
  padding: 11px;
  background-color: #f5f5f5;
  border-radius: 2px;
  border: none;
  cursor: pointer;
}

.main-block__sorting-format-icon {
  background-image: url("../images/icons/sorting-formats.svg");
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
}

.main-block__sorting-format-btn.format-active {
  background-color: #1976d2;
}

.main-block__sorting-format-btn.format-active
  .main-block__sorting-format-icon.format-default {
  background-position: 0px 0px;
}

.main-block__sorting-format-btn.format-active
  .main-block__sorting-format-icon.format-list {
  background-position: -29px 0px;
}

.main-block__sorting-format-btn.format-active
  .main-block__sorting-format-icon.format-table {
  background-position: -57px 0px;
}

.main-block__sorting-format-icon.format-default {
  background-position: 0px -17px;
}

.main-block__sorting-format-icon.format-list {
  background-position: -29px -17px;
}

.main-block__sorting-format-icon.format-table {
  background-position: -57px -17px;
}

/* PRODUCT CARDS */

.main-block__cards {
  display: flex;
}

.main-block__cards.cards-block {
  flex-wrap: wrap;
}

.main-block__cards.cards-list,
.main-block__cards.cards-line {
  flex-direction: column;
}

.cards-block .main-block__item {
  flex-basis: calc(100% / 4);
  height: 464px;
}

.product-card .product-card__code {
  display: flex;
  justify-content: center;
  font-size: 12px;
  color: #a5a5a5;
}

@media screen and (max-width: 991px) {
  .cards-block .main-block__item {
    flex-basis: calc(100% / 2);
  }
}

/* PRODUCT CARD */

.product-card {
  display: flex;
  padding: 20px;
  background-color: #fff;
  position: relative;
}

.product-card:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  z-index: 6;
}

.product-card:hover .modal-button {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.cards-block .product-card {
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 0 1px #f2f2f2 inset;
  min-height: 100%;
}

.cards-block .product-card:hover {
  min-height: max-content;
}

.cards-block .product-card:hover .product-card__hidden-part {
  max-height: max-content;
  overflow: visible;
}

.cards-block .product-card:hover .product-card__wishlist-button-block {
  opacity: 1;
  visibility: visible;
}

.cards-list .product-card,
.cards-line .product-card {
  justify-content: space-between;
  gap: 21px;
  border: 1px solid #f2f2f2;
}

.cards-line .product-card {
  align-items: center;
}

.product-card__mark {
  top: 20px;
  left: 30px;
}

.cards-line .product-card__mark {
  left: 10px;
  top: 10px;
  scale: 0.8;
}

@media screen and (min-width: 768px) {
  .cards-list .product-card {
    height: 284px;
  }
}

@media screen and (max-width: 767px) {
  .cards-list .product-card {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 550px) {
  .cards-block .product-card {
    padding: 20px 10px;
  }

  .cards-block .product-card__mark {
    left: 10px;
  }
}

@media screen and (max-width: 450px) {
  .cards-line .product-card {
    flex-direction: column;
    align-items: center;
  }
}

/* PRODUCT CARD IMAGE */

.product-card__image,
.product-card__image-link {
  position: relative;
}

.product-card__image-link.shine-photo:hover::before {
  opacity: 1;
  transform: skew(-15deg) translateX(160px);
}

.cards-line .shine-photo::before {
  display: none;
}

.cards-list .product-card__image-link img {
  width: 200px;
  height: 200px;
}

.cards-line .product-card__image-link img {
  width: 50px;
  height: 50px;
}

.cards-list .product-card__modal-button {
  bottom: 0;
  top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.cards-line .product-card__modal-button {
  display: none;
}

.product-card__modal-button-line {
  margin-top: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards-block .product-card__modal-button-line,
.cards-list .product-card__modal-button-line {
  display: none;
}

.cards-list .product-card__modal-button-icon,
.cards-line .product-card__modal-button-icon {
  width: 17px;
  height: 16px;
  background-image: url("../images/icons.png");
  background-position: -290px -304px;
  opacity: 0.5;
}

@media screen and (max-width: 991px) {
  .cards-list .product-card__modal-button,
  .product-card__modal-button-line {
    display: none;
  }
}

/* PRODUCT CARD DESCRIPTION */

.product-card__description {
  display: flex;
  flex-direction: column;
}

.cards-list .product-card__description,
.cards-line .product-card__description {
  flex-grow: 1;
}

.product-card__name-en {
  text-decoration: none;
  font-weight: 700;
  line-height: 1.25;
}

.cards-block .product-card__name-en {
  margin-top: 10px;
  color: #005ca5;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
}

.cards-list .product-card__name-en {
  color: #1d2029;
  font-size: 17.0773px;
}

.cards-list .product-card__name-en:hover {
  color: #005ca5;
}

.cards-line .product-card__name-en {
  color: #1d2029;
  font-size: 14px;
}

.product-card__name-ru {
  color: #555;
  font-size: 11px;
  text-transform: uppercase;
}

.cards-block .product-card__name-ru {
  text-align: center;
}

.product-card__description-text {
  line-height: 1.25;
}

.cards-block .product-card__description-text {
  margin-top: 30px;
  text-align: center;
  color: #555;
  font-size: 13px;
  min-height: 36px;
}

.cards-list .product-card__description-text {
  flex: 1 1 auto;
  align-content: flex-end;
  color: #888;
  font-size: 13.935px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 0;
}

.cards-line .product-card__description-text {
  color: #555;
  font-size: 13px;
  align-self: flex-end;
  padding-right: 20px;
}

.product-card__wishlist-button-list {
  align-self: flex-start;
  display: flex;
  gap: 10px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 14px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.5;
  align-items: center;
}

.product-card__wishlist-button-list:hover .product-card__wishlist-button-icon {
  background-color: #e3e3e3;
  fill: #333;
}

.cards-block .product-card__wishlist-button-list,
.cards-line .product-card__wishlist-button-list {
  display: none;
}

.product-card__wishlist-button-icon {
  fill: #797676;
  fill-rule: evenodd;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .cards-list .product-card__description {
    width: 100%;
  }

  .cards-list .product-card__name-en,
  .cards-list .product-card__name-ru,
  .cards-list .product-card__description-text {
    text-align: center;
  }

  .cards-list .product-card__wishlist-button-list {
    align-self: center;
  }
}

@media screen and (max-width: 450px) {
  .cards-line .product-card__name-en,
  .cards-line .product-card__name-ru,
  .cards-line .product-card__description-text {
    text-align: center;
  }

  .cards-line .product-card__description-text {
    padding-right: 0;
  }
}

/* PRODUCT CARD BUY */

.product-card__price {
  color: #1d2029;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.cards-block .product-card__price {
  margin-top: 33px;
  text-align: center;
}

.cards-list .product-card__price {
  margin-top: 10px;
}

.cards-line .product-card__price {
  margin-bottom: 0;
  font-size: 15px;
}

@media screen and (max-width: 1300px) {
  .cards-block .product-card__price {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .cards-line .product-card__buy {
    display: none;
  }

  .cards-list .product-card__price {
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .cards-list .product-card__price {
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  .product-card__price {
    font-size: 14px;
  }
}

/* PRODUCT CARD BUY STOCKS */

.cards-block .product-card__stocks-price {
  text-align: center;
}

.product-card__current-price {
  color: #1d2029;
  font-size: 18px;
  font-weight: 700;
  line-height: 0.94;
  margin-bottom: 7px;
}

.cards-line .product-card__current-price {
  font-size: 15px;
}

.product-card__old-price {
  font-size: 13px;
  color: #666;
  text-decoration: line-through;
}

.product-card__saving {
  color: #1d2029;
  font-size: 12px;
  white-space: nowrap;
}

.product-card__saving span {
  background-color: #ffd02e;
  border-radius: 3px;
  padding: 2px 7px;
}

@media screen and (max-width: 1300px) {
  .cards-block .product-card__current-price {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .cards-list .product-card__stocks-price {
    text-align: center;
  }

  .cards-line .product-card__stocks-price {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .cards-block .product-card__current-price {
    font-size: 14px;
  }
}

/* PRODUCT CARD HIDDEN PART */

.product-card__hidden-part {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards-list .product-card__hidden-part {
  display: none;
}

.product-card__volume-block {
  margin-bottom: 18px;
}

.product-card__volume-block-title {
  text-align: center;
}

.product-card__volume-block-list {
  justify-content: center;
}

.product-card__link-button-block {
  text-decoration: none;
}

/* PRODUCT CARD BUY BUTTONS */

.product-card__volume-list {
  margin-bottom: 18px;
}

.cards-block .product-card__volume-list,
.cards-line .product-card__volume-list {
  display: none;
}

.product-card__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cards-block .product-card__buttons,
.cards-line .product-card__buttons {
  display: none;
}

.product-card__buttons-btn {
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .product-card__volume-list-title {
    text-align: center;
  }

  .product-card__volume-list-list {
    justify-content: center;
  }
}

/* PRODUCT CARD BUY LINE */

.cards-block .product-card__buy-line,
.cards-list .product-card__buy-line {
  display: none;
}

.product-card__price-line {
  color: #1d2029;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.product-card__link-button-line {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .product-card__price-line,
  .product-card__stocks-price-line {
    display: none;
  }
}

/* PRODUCT CARD WISHLIST BUTTON */

.product-card__wishlist-button-block {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.cards-list .product-card__wishlist-button-block {
  display: none;
}

.product-card__wishlist-button-block:hover .product-card__wishlist-button-icon {
  background-color: #e3e3e3;
  fill: #333;
}

@media screen and (max-width: 550px) {
  .product-card__wishlist-button-block {
    right: 0;
  }
}

/* MAIN BLOCK BUTTON SHOW MORE*/

.main-block__button-show-more {
  width: 100%;
  color: #333;
  font-size: 13px;
  display: flex;
  justify-content: center;
  gap: 10px;
  border: 1px solid #f2f2f2;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  line-height: 1.5;
  cursor: pointer;
}

.main-block__button-show-more:hover {
  border-color: #d2d2d4;
}

.main-block__button-show-more:hover .main-block__button-show-more-icon {
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}

.main-block__button-show-more-icon img {
  background-color: #005ca5;
}

/* MAIN BLOCK PAGINATION */

.main-block__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.main-block__pagination-arrow {
  width: 29px;
  height: 29px;
  background-image: url("../images/arrow.png");
  background-position: 3px -20px;
}

.main-block__pagination-arrow:hover {
  background-position-y: -96px;
}

.main-block__pagination-arrow.next-page {
  transform: rotate(180deg);
}

.main-block__pagination-pages {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-block__pagination-page.page-active .main-block__pagination-link {
  color: #fff;
  background-color: #005ca5;
}

.main-block__pagination-link {
  text-decoration: none;
  color: #1d2029;
  font-size: 14px;
  line-height: 2;
  font-weight: 700;
  border-radius: 2px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main-block__pagination-link:not(
    .main-block__pagination-page.page-active .main-block__pagination-link
  ):hover {
  color: #1569bc;
}

@media screen and (max-width: 500px) {
  .main-block__pagination-arrow {
    display: none;
  }
}

/* MAIN BLOCK BUTTON BACK */

.main-block__button-back {
  text-decoration: none;
  color: #222;
  line-height: 1.5;
  border: 1px solid #f2f2f2;
  display: flex;
  width: max-content;
  align-items: center;
  margin-top: 30px;
}

.main-block__button-back:hover {
  background-color: #f5f5f5;
  border-color: #fff;
}

.main-block__button-back:hover .main-block__button-back-icon {
  border-right-color: #fff;
}

.main-block__button-back-icon {
  width: 7px;
  height: 20px;
  background-image: url("../images/arrow.png");
  background-position: 10px 0px;
  background-repeat: no-repeat;
  padding: 9px 24px 9px 20px;
  border-right: 1px solid #f2f2f2;
}

.main-block__button-back-text {
  padding: 9px 20px;
}

/* FOOTER */

.footer {
  padding-top: 34px;
  padding-bottom: 40px;
  background-color: #f6f6f7;
  border-top: 1px solid #eee;
  user-select: none;
}

/* FOOTER TOP */

.footer__container {
  padding-bottom: 38px;
  border-bottom: 1px solid #eee;
  display: flex;
}

@media screen and (max-width: 991px) {
  .footer__container {
    flex-direction: column;
    gap: 30px;
  }
}

/* FOOTER TOP LINKS */

.footer__links {
  display: flex;
  gap: 30px;
}

@media screen and (min-width: 992px) {
  .footer__links {
    flex-basis: 50%;
  }
}

@media screen and (max-width: 767px) {
  .footer__links {
    flex-direction: column;
    align-items: center;
  }
}

/* FOOTER LINKS ABOUT COMPANY AND INFORMATION*/

.footer__about-company-main-link {
  text-decoration: none;
}

.footer__about-company-main-link.link-active {
  color: #2585e5;
}

.footer__about-company-main-link,
.footer__information-title,
.footer__info-form-title,
.footer__info-socials-title,
.footer__info-address-title {
  font-size: 16px;
  font-weight: 700;
  color: #005ca5;
  line-height: 1.2;
  margin-bottom: 17px;
}

.footer__about-company-item,
.footer__inforamtion-item {
  margin-bottom: 10px;
}

.footer__about-company-item.item-active .footer__about-company-link {
  color: #2585e5;
}

.footer__about-company-link,
.footer__inforamtion-link {
  text-decoration: none;
  color: #555;
  line-height: 1.13;
  transition: color 70ms ease-out;
}

.footer__about-company-link:hover,
.footer__inforamtion-link:hover {
  color: #1569bc;
}

@media screen and (min-width: 992px) {
  .footer__about-company {
    max-width: 190px;
  }
}

@media screen and (max-width: 767px) {
  .footer__about-company,
  .footer__information {
    text-align: center;
  }
}

/* FOOTER INFO */

.footer__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (min-width: 1200px) {
  .footer__info {
    gap: 66px;
    flex-direction: row;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .footer__info {
    flex-direction: column;
    gap: 20px;
    flex-basis: 50%;
  }
}

@media screen and (min-width: 992px) {
  .footer__info {
    justify-content: flex-start;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer__info {
    gap: 160px;
  }
}

@media screen and (max-width: 767px) {
  .footer__info {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}

/* FOOTER CONTACT */

.footer__info-contact {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .footer__info-contact {
    max-width: 300px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px),
  (min-width: 1200px) {
  .footer__info-contact {
    flex-basis: 50%;
  }
}

@media screen and (max-width: 767px) {
  .footer__info-contact {
    text-align: center;
  }
}

/* FOOTER FORM */

.footer__info-form {
  margin-bottom: 30px;
}

.footer__info-form-input {
  position: relative;
}

.footer__info-form-input-label {
  top: 27px;
  left: 0;
}

.footer__info-form-input-control {
  width: 100%;
  border-radius: 2px;
  background-color: #fff;
  padding: 11px 43px 11px 13px;
  border: 1px solid #eee;
  line-height: 1.25;
}

.footer__info-form-input-control:focus {
  outline: none;
}

.footer__info-form-button {
  position: absolute;
  top: 1px;
  right: 0;
  width: 39px;
  height: 39px;
  background-color: #005ca5;
  border: none;
  padding: 0;
  border-radius: 0 2px 2px 0;
  background-image: url("../images/icons-2.png");
  background-position: -21px -36px;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer__info-form-button:hover {
  background-color: #2585e5;
}

/* FOOTER ADDRESS */

.footer__info-address-list {
  padding-left: 32px;
}

.footer__info-address-item {
  margin-bottom: 19px;
  color: #333;
  position: relative;
  line-height: 1.5;
}

.footer__info-address-link {
  text-decoration: none;
  font-size: 16.05px;
  color: #333;
  line-height: 1.36;
  transition: color 70ms ease-out;
}

@media screen and (min-width: 992px) {
  .footer__info-address {
    flex-basis: 50%;
  }
}

@media screen and (min-width: 401px) and (max-width: 767px) {
  .footer__info-address {
    text-align: center;
  }
}

@media screen and (min-width: 440px) and (max-width: 767px) {
  .footer__info-address-links {
    display: flex;
    gap: 80px;
    align-items: center;
  }
}

@media screen and (max-width: 400px) {
  .footer__info-address-title {
    text-align: center;
  }

  .footer__info-address-list {
    display: flex;
    flex-direction: column;
    max-width: 230px;
    transform: translateX(10%);
  }
}

/* ADDRESS ITEMS */

.item-number {
  font-weight: 700;
}

.item-number::before,
.item-email::before,
.item-address::before {
  content: "";
  width: 16px;
  height: 18px;
  background-image: url("../images/icons.png");
  position: absolute;
  margin-left: -32px;
}

.item-number::before {
  background-position: -221px -59px;
}

.item-email:hover .footer__info-address-link {
  color: #1976d2;
}

.item-email::before {
  background-position: -161px -118px;
}

.item-address::before {
  background-position: -253px -287px;
}

/* FOOTER BOTTOM */

.footer__text {
  padding-top: 36px;
}

.footer__text-copyright {
  color: #888;
  margin-bottom: 8px;
}

.footer__text-link {
  text-decoration: none;
  color: #888;
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  .footer__text {
    text-align: center;
  }
}

/* PRODUCT MODAL WINDOW */

.product-backdrop {
  padding: 20px;
}

.product-modal {
  max-width: 1040px;
  width: 100%;
  max-height: 657px;
  height: 100%;
  position: relative;
  background-color: #fff;
  z-index: 21;
}

.product-modal__title {
  margin-bottom: 0;
  color: #383838;
  font-weight: 400;
  font-size: 22px;
  padding: 24px 35px;
  border-bottom: 1px solid #f2f2f2;
}

/* PRODUCT MODAL CONTAINER */

.product-modal__container {
  padding-left: 35px;
  padding-right: 35px;
  display: flex;
  height: calc(100% - 71px);
}

/* PRODUCT MODAL IMAGES */

.product-modal__images {
  position: relative;
  min-width: 250px;
  padding-right: 60px;
  padding-top: 24px;
}

.product-modal__images-mark {
  top: 24px;
}

/* PRODUCT MODAL IMAGES SLIDER */

.product-modal__main-image {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.product-modal__main-image:hover .image-zoom {
  opacity: 1;
  visibility: visible;
}

.product-modal__images-slider {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-modal__images-btn {
  width: 29px;
  height: 29px;
  background-color: transparent;
  padding: 0;
  border: none;
  background-image: url("../images/arrow.png");
  background-position: 3px -20px;
  cursor: pointer;
}

.product-modal__images-btn:hover {
  background-position: 3px 4px;
}

.product-modal__images-btn.next {
  transform: rotate(180deg);
}

.product-modal__images-wrapper {
  display: flex;
  gap: 10px;
}

.product-modal__images-slide {
  border: 2px solid #fff;
  transition: border-color 0.2s ease-out;
}

.product-modal__images-slide:hover {
  border-color: #9a9a9a;
}

.product-modal__images-slide.slide-active {
  border-color: #1976d2;
}

.product-modal__image {
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

/* PRODUCT MODAL DESCRIPTION */

.product-modal__description {
  flex-grow: 1;
  padding-right: 30px;
  padding-top: 24px;
  overflow-y: auto;
}

.product-modal__description-title {
  color: #1d2029;
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* PRODUCT MODAL RATING */

.product-modal__description-rating {
  margin-bottom: 15px;
}

/* PRODUCT MODAL INFO */

.product-modal__description-article {
  color: #888;
  font-size: 13px;
  margin-left: 10px;
  line-height: 1.13;
  margin-bottom: 6px;
}

.product-modal__description-button {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px dotted #666;
  padding: 0;
  margin-left: 22px;
  background-color: transparent;
  color: #666;
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
  font-size: 13px;
}

.product-modal__description-button:hover {
  color: #1d2029;
  border-color: #1d2029;
}

.product-modal__description-button::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("../images/icons-2.png");
  background-position: -74px -84px;
  position: absolute;
  top: 0;
  left: -22px;
}

/* PRODUCT MODAL COLORS */

.product-modal__description-colors {
  margin-bottom: 20px;
}

/* PRODUCT MODAL VOLUME */

.product-modal__description-volume {
  margin-bottom: 15px;
}

/* PRODUCT MODAL INFO */

.product-modal__description-text {
  margin-bottom: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.5;
}

/* PRODUCT MODAL BUY */

.product-modal__buy {
  min-width: 216px;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  border-left: 1px solid #f2f2f2;
  padding-top: 24px;
}

.product-modal__buy-price {
  margin-bottom: 20px;
  color: #1d2029;
  font-size: 18px;
  font-weight: 700;
  line-height: 0.94;
}

/* STOCKS-PRICE */

.product-modal__buy-stocks-price {
  margin-bottom: 30px;
}

.product-modal__buy-current-price {
  color: #1d2029;
  font-size: 18px;
  font-weight: 700;
  line-height: 0.94;
  margin-bottom: 7px;
}

.product-modal__buy-old-price {
  font-size: 16px;
  color: #666;
  text-decoration: line-through;
}

.product-modal__buy-saving {
  color: #1d2029;
  font-size: 12px;
}

.product-modal__buy-saving span {
  background-color: #ffd02e;
  border-radius: 3px;
  padding: 2px 7px;
}

/* --------------- */

.product-modal__buy-basket {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}

.product-modal__buy-basket-btn {
  border: none;
  cursor: pointer;
}

.product-modal__buy-button {
  margin-bottom: 25px;
}

.product-modal__add-button {
  background-color: transparent;
  border: none;
  padding: 0 0 0 40px;
  font-size: 13px;
  color: #6d6d6d;
  align-self: flex-start;
  position: relative;
  cursor: pointer;
}

.product-modal__add-button:hover {
  color: #333;
}

.product-modal__add-button:hover .product-modal__add-button-icon {
  background-color: #e3e3e3;
}

.product-modal__add-button:hover .product-modal__add-button-icon i {
  background-position-x: -240px;
}

.product-modal__add-button-icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: background-color 0.3 ease;
}

.product-modal__add-button-icon i {
  width: 20px;
  height: 20px;
  background-image: url("../images/icons-2.png");
  background-position: -203px 0px;
  margin-bottom: 5px;
}

/* CHEAPER MODAL WINDOW */

.cheaper-modal {
  max-width: 508px;
  width: 100%;
  max-height: 884px;
  height: 100%;
  position: relative;
  background-color: #fff;
  overflow-x: auto;
  z-index: 21;
}

.cheaper-modal__title {
  color: #383838;
  font-size: 27.99px;
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 0;
  padding: 16px 35px;
  border-bottom: 2px solid #167ab5;
}

.cheaper-modal__form {
  padding: 29px 35px 35px;
}

.cheaper-modal__input-product-name {
  margin-top: -19px;
  margin-bottom: 38px;
}

.cheaper-modal__input-product-name__label {
  color: #888;
  font-size: 13px;
  line-height: 1.43;
  margin-bottom: 6px;
  font-weight: 400;
}

.cheaper-modal__input-product-name__label::after {
  content: "  *";
  color: #e62222;
}

.cheaper-modal__input-product-name__field {
  width: 100%;
  padding: 10px 13px;
  line-height: 1.25;
  border: 1px solid #eee;
  border-radius: 2px;
  color: #383838;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cheaper-modal__textarea {
  margin-bottom: 35px;
}

.cheaper-modal__button {
  border: none;
  cursor: pointer;
}

/* BUY MODAL */

.buy-modal {
  max-width: 508px;
  width: 100%;
  max-height: 515px;
  height: 100%;
  position: relative;
  background-color: #fff;
  overflow-x: auto;
  z-index: 21;
}

.buy-modal__title {
  color: #383838;
  font-size: 26px;
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 0;
  padding: 16px 35px;
  border-bottom: 2px solid #167ab5;
}

.buy-modal__form {
  padding: 29px 35px 35px;
}

.buy-modal__button {
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
}

/* ------------------------------------MAIN PAGE----------------------------------------------*/

/* SECTION */

.section-title {
  font-size: 21px;
  line-height: 1.13;
  font-weight: 700;
  margin-bottom: 0;
}

.section-link {
  line-height: 1.13;
  transition: color 70ms ease-out;
  color: #005ca5;
}

.section-link:hover {
  text-decoration: none;
}

/* HERO */

.main-page-wrapper .hero-section {
  padding-top: 15px;
  padding-bottom: 20px;
}

.main-page-wrapper .rubrik-section {
  margin-bottom: 30px;
}

.main-page-wrapper .swiper-pagination {
  display: none;
}

.main-page-wrapper .hero-section__container img {
  width: 100%;
  max-height: 460px;
}

@media screen and (max-width: 991px) {
  .main-page-wrapper .hero-section {
    padding-top: 50px;
  }
}

/* MAIN BLOCK SECTIONS */

.main-page-wrapper .main-block__sections {
  display: flex;
  gap: 29px;
  margin-bottom: 30px;
}

.main-page-wrapper .main-block__sections-button {
  background-color: transparent;
  border: none;
  padding: 0;
  color: #005ca5;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  cursor: pointer;
  transition: color 70ms ease-out;
  position: relative;
}

.main-page-wrapper .main-block__sections-button:hover,
.main-page-wrapper .product-section-button-active {
  color: #222;
}

.main-page-wrapper .product-section-button-active::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #005e9f;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -5px;
}

@media screen and (max-width: 450px) {
  .main-page-wrapper .main-block__sections-button {
    font-size: 12px;
  }
}

/* MAIN BLOCK CARDS */

.main-page-wrapper .main-block__list {
  display: flex;
  flex-wrap: wrap;
}

.main-page-wrapper .main-block__item {
  flex-basis: calc(100% / 4);
  height: 383px;
}

@media screen and (max-width: 870px) {
  .main-page-wrapper .main-block__item {
    flex-basis: calc(100% / 2);
  }
}

/* PRODUCT CARD */

.main-page-wrapper .product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #eee;
  padding: 20px;
  position: relative;
  transition: box-shadow 0.3s ease-out;
  text-align: center;
  background-color: #fff;
  min-height: 100%;
  height: 100%;
}

.main-page-wrapper .product-card:hover {
  border-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  z-index: 8;
  min-height: 382px;
}

.main-page-wrapper .product-card:hover .product-card__hidden-part {
  max-height: max-content;
  overflow: visible;
}

.main-page-wrapper .product-card:hover .modal-button {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.main-page-wrapper .product-card__mark {
  left: 20px;
  top: 20px;
}

.main-page-wrapper .product-card__image {
  position: relative;
}

.main-page-wrapper .product-card__image.shine-photo:hover::before {
  opacity: 1;
  transform: translateX(137px);
}

.main-page-wrapper .product-card__name-en {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #005ca5;
  margin-top: 10px;
  margin-bottom: 5px;
  line-height: 1.2;
  text-decoration: none;
}

.main-page-wrapper .product-card__name-ru {
  font-size: 11px;
  text-transform: uppercase;
  color: #555;
  line-height: 1.2;
}

.main-page-wrapper .product-card__description {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 11px;
  color: #555;
  flex: 1 1 auto;
}

.main-page-wrapper .product-card__price {
  font-size: 18px;
  font-weight: 700;
  line-height: 0.94;
  color: #1d2029;
}

@media screen and (max-width: 550px) {
  .main-page-wrapper .product-card {
    padding: 10px;
  }
}

@media screen and (max-width: 400px) {
  .main-page-wrapper .product-card__price {
    font-size: 14px;
  }
}

/* CARD HIDDEN PART */

.main-page-wrapper .product-card__hidden-part {
  max-height: 0;
  overflow: hidden;
  transition: all 70ms ease-in-out;
}

.main-page-wrapper .product-card__link-button {
  text-decoration: none;
}

/* ADVANTAGES */

.main-page-wrapper .advantages-section {
  padding-top: 42px;
  padding-bottom: 17px;
  background-color: #f9f9fa;
}

.main-page-wrapper .advantages-section__heading {
  display: flex;
  gap: 41px;
  align-items: center;
  margin-bottom: 30px;
}

.main-page-wrapper .advantages-section__title {
  margin-left: 7px;
}

.main-page-wrapper .advantages-section__link:hover {
  color: #1d2029;
}

.main-page-wrapper .advantages-section__list {
  display: flex;
  gap: 20px 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-page-wrapper .advantages-section__item {
  flex-basis: calc((100% - 90px) / 4);
}

@media screen and (max-width: 991px) {
  .main-page-wrapper .advantages-section__item {
    flex-basis: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 424px) {
  .main-page-wrapper .advantages-section__heading {
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }
}

/* ADVANTAGE CARD */

.main-page-wrapper .advantage-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  gap: 20px;
  text-decoration: none;
  padding-right: 10px;
  padding-left: 10px;
  height: 100%;
}

.main-page-wrapper .advantage-card__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding-bottom: 7px;
}

.main-page-wrapper .advantage-card__image::after {
  content: "";
  width: calc(100% + 20px);
  height: 7px;
  background-color: #005ca5;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: -10px;
}

.main-page-wrapper .advantage-card__name {
  line-height: 1.5;
  font-weight: 700;
  color: #005ca5;
}

@media screen and (max-width: 1120px) {
  .main-page-wrapper .advantage-card__name {
    font-size: 11px;
  }
}

@media screen and (min-width: 992px) {
  .main-page-wrapper .advantage-card {
    height: 163px;
  }
}

@media screen and (min-width: 425px) {
  .main-page-wrapper .advantage-card__image,
  .main-page-wrapper .advantage-card__name {
    flex-basis: 50%;
  }
}

@media screen and (max-width: 424px) {
  .main-page-wrapper .advantage-card {
    flex-direction: column;
  }

  .main-page-wrapper .advantage-card__image {
    width: 100%;
  }
}

/* OBJECTS */

.main-page-wrapper .objects-section {
  padding-top: 17px;
  padding-bottom: 38px;
  background-color: #f9f9fa;
}

.main-page-wrapper .objects-section__heading {
  display: flex;
  gap: 38px;
  align-items: center;
  margin-bottom: 20px;
}

.objects-nav {
  position: absolute;
  top: -50px;
  right: 0;
}

@media screen and (max-width: 400px) {
  .objects-nav {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .main-page-wrapper .objects-section__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* OBJECT CARD */

.main-page-wrapper .object-card {
  height: 318px;
  box-shadow: 0 0 1px #ccc inset;
  background-color: #fff;
  transition: box-shadow ease-out 0.2s;
  text-decoration: none;
}

.main-page-wrapper .object-card:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.main-page-wrapper .object-card__image {
  width: 100%;
  height: 200px;
  position: relative;
}

.main-page-wrapper .object-card__image.shine-photo::before {
  left: -20%;
  transition-duration: 0.5s;
  width: 15%;
}

.main-page-wrapper .object-card__image.shine-photo:hover::before {
  opacity: 1;
  transform: skewX(-25deg) translateX(370px);
}

.main-page-wrapper .object-card__image img {
  width: 100%;
  height: 100%;
}

.main-page-wrapper .object-card__text {
  padding-top: 15px;
  padding-left: 22px;
  padding-right: 22px;
}

.main-page-wrapper .object-card__date {
  line-height: 1.13;
  font-size: 14, 864px;
  color: #666;
  margin-bottom: 4px;
}

.main-page-wrapper .object-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #005ca5;
}

/* SERTIFICATES */

.main-page-wrapper .sertificates-section {
  padding-top: 4px;
  background-image: url("../images/backgrounds/sertificates-background.jpg");
  background-position: right;
  background-repeat: no-repeat;
  background-color: #f9f9fa;
  padding-bottom: 91px;
}

.main-page-wrapper .sertificates-section__heading {
  display: flex;
  gap: 38px;
  align-items: center;
  margin-bottom: 30px;
}

.main-page-wrapper .sertificates-section__title {
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .main-page-wrapper .sertificates-section {
    padding-top: 30px;
    padding-bottom: 61px;
  }
}

@media screen and (max-width: 767px) {
  .main-page-wrapper .sertificates-section {
    display: none;
  }
}

/* DESCRIPTION COMPANY */

.main-page-wrapper .description-section {
  padding-top: 71px;
  padding-bottom: 60px;
  position: relative;
}

.main-page-wrapper .description-section__container {
  display: flex;
}

.main-page-wrapper .description-section__image {
  padding-left: 20px;
  padding-right: 35px;
  width: 25%;
}

.main-page-wrapper .description-section__text {
  width: 75%;
}

.main-page-wrapper .description-section__title {
  font-size: 22px;
  margin-bottom: 33px;
  line-height: 1.6;
}

.main-page-wrapper .description-section__paragraph {
  margin-bottom: 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.4;
}

.main-page-wrapper .description-section__button {
  text-decoration: none;
}

@media screen and (max-width: 1110px) {
  .main-page-wrapper .description-section__image {
    padding-left: 0;
  }
}

@media screen and (max-width: 991px) {
  .main-page-wrapper .description-section__image {
    width: 30%;
  }

  .main-page-wrapper .description-section__text {
    width: 65%;
  }
}

@media screen and (max-width: 767px) {
  .main-page-wrapper .description-section__image {
    display: none;
  }

  .main-page-wrapper .description-section__text {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .main-page-wrapper .description-section__title {
    text-align: center;
  }
}

/* ---------------------------------------BASKET----------------------------------------- */

/* BASKET EMPTY */

.basket-wrapper .main-block__basket-empty {
  border-bottom: 1px solid #f2f2f2;
}

.basket-wrapper .main-block__basket-empty-text {
  margin-bottom: 20px;
  color: #e83333;
  line-height: 1.5;
}

/* PERSONAL RECOMMENDATIONS */

.basket-wrapper .main-block__personal-rec {
  padding-top: 32px;
}

.basket-wrapper .main-block__personal-rec-title {
  color: #005ca5;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.86;
  margin-bottom: 28px;
}

.basket-wrapper .main-block__personal-rec-item {
  height: 412px;
}

.basket-wrapper .personal-recommendations-nav {
  position: absolute;
  top: -60px;
  right: 0;
}

@media screen and (max-width: 500px) {
  .basket-wrapper .personal-recommendations-nav {
    display: none;
  }
}

/* RECOMMENDATION CARD */

.basket-wrapper .recommendation-card {
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s ease-out;
  overflow: hidden;
  position: relative;
  border: 1px solid #eee;
}

.basket-wrapper .recommendation-card:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.basket-wrapper .recommendation-card:hover .recommendation-card__button,
.basket-wrapper .recommendation-card:hover .modal-button {
  visibility: visible;
  opacity: 1;
}

.basket-wrapper .recommendation-card:hover .recommendation-card__button {
  max-height: max-content;
}

.basket-wrapper .recommendation-card:hover .modal-button {
  pointer-events: all;
}

.basket-wrapper .recommendation-card__mark {
  top: 20px;
  left: 20px;
}

.basket-wrapper .recommendation-card__image {
  position: relative;
  width: 170px;
  height: 170px;
}

.basket-wrapper .recommendation-card__image.shine-photo:hover::before {
  opacity: 1;
  transform: translateX(137px);
}

.basket-wrapper .recommendation-card__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.basket-wrapper .recommendation-card__name {
  color: #005ca5;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
}

.basket-wrapper .recommendation-card__name:hover {
  color: #1569bc;
}

.basket-wrapper .recommendation-card__rating {
  display: flex;
  margin-bottom: 10px;
  gap: 3px;
  justify-content: center;
}

.basket-wrapper .recommendation-card__rating-star .fa-star::before {
  width: 15px;
  height: 14px;
  display: block;
}

.basket-wrapper .recommendation-card__price {
  font-size: 18px;
  color: #1d2029;
  font-weight: 700;
  line-height: 0.94;
  margin-bottom: 20px;
  text-align: center;
}

/* STOCKS */

.basket-wrapper .recommendation-card__stocks-price {
  font-size: 18px;
  color: #1d2029;
  font-weight: 700;
  line-height: 0.94;
  margin-bottom: 10px;
  text-align: center;
}

.basket-wrapper .recommendation-card__stocks-price span {
  font-size: 13px;
  color: #888;
  font-weight: 700;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 10px;
  white-space: nowrap;
}

.basket-wrapper .recommendation-card__stocks-saving {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
  text-align: center;
}

.basket-wrapper .recommendation-card__stocks-saving span {
  color: #1d2029;
  background-color: #ffd700;
  border-radius: 3px;
  margin-left: 5px;
  padding: 2px 8px;
}

/* ----------------- */

.basket-wrapper .recommendation-card__button {
  text-decoration: none;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.1s ease-out;
}

/* ---------------------------CABINET PAGE------------------------------------------- */

/* SIDEBAR MENU */

.cabinet-wrapper .main-part-section__button-exit {
  padding: 11px 31px 13px 33px;
  border: 1px solid #f2f2f2;
  font-size: 13px;
  background-color: #f9f9f9;
  width: 100%;
  line-height: 1.5;
  position: relative;
  text-align: left;
  color: #005ca5;
  cursor: pointer;
}

.cabinet-wrapper .main-part-section__button-exit::before {
  content: "";
  width: 16px;
  height: 10px;
  background-image: url("../images/arrow-down.png");
  position: absolute;
  top: 50%;
  left: 10px;
  background-size: cover;
  opacity: 0.5;
  transform: translateY(-50%) rotate(90deg);
}

/* MAIN BLOCK CARDS */

.cabinet-wrapper .main-block__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cabinet-wrapper .main-block__item {
  flex-basis: calc((100% - 20px) / 2);
}

@media screen and (min-width: 1200px) {
  .cabinet-wrapper .main-block__item {
    flex-basis: calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 450px) {
  .cabinet-wrapper .main-block__item {
    flex-basis: 100%;
  }
}

/* SECTION CARD */

.cabinet-wrapper .section-card {
  text-decoration: none;
  padding: 25px 15px;
  background-color: #fbfbfb;
  border: 1px solid #f2f2f2;
  width: 100%;
  height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.cabinet-wrapper .section-card__image {
  width: 50px;
  height: 50px;
  background-image: url("../images/sections-cabinet.png");
  background-color: #1976d2;
}

.cabinet-wrapper .section-card__image.my-data {
  background-position-x: -100px;
}

.cabinet-wrapper .section-card__image.order-history {
  background-position-x: -150px;
}

.cabinet-wrapper .section-card__image.order-profiles {
  background-position-x: -200px;
}

.cabinet-wrapper .section-card__image.basket {
  background-position-x: -250px;
}

.cabinet-wrapper .section-card__image.subscriptions {
  background-position-x: -300px;
}

.cabinet-wrapper .section-card__image.contacts {
  background-position-x: -350px;
}

.cabinet-wrapper .section-card__name {
  color: #383838;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
}

/* -------------------------------------------------CATEGORY PAGE------------------------------- */

/* MAIN BLOCK PRODUCT CATEGORIES */

.category-wrapper .main-block__product-categories {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.category-wrapper .main-block__product-categories-button {
  border: 1px solid #005ca5;
  padding: 2px 12px;
  border-radius: 2px;
  line-height: 1.44;
  color: #005ca5;
  text-decoration: none;
  transition: background-color 70ms ease, color 70ms ease;
}

.category-wrapper .main-block__product-categories-button:hover,
.category-wrapper .main-block__product-categories-button.category-active {
  background-color: #005ca5;
  color: #fff;
}

/* MAIN BLOCK DESCRIPTION */

.category-wrapper .main-block__description {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 20px;
}

.category-wrapper .main-block__description-text,
.category-wrapper .main-block__description-list {
  margin-bottom: 20px;
}

.category-wrapper .main-block__description-list {
  list-style-type: disc;
  padding-left: 20px;
}

.category-wrapper .main-block__description-item {
  margin-bottom: 4px;
}

.category-wrapper .main-block__description-item::marker {
  color: #005ca5;
}

/* -----------------------------------COMPARE PAGE------------------------------------ */

/* MAIN BLOCK */

.compare-wrapper .main-part-section__main-block {
  width: calc(100% - 243px);
}

@media screen and (max-width: 991px) {
  .compare-wrapper .main-part-section__main-block {
    width: 100%;
  }
}

/* MAIN BLOCK CLEAN BUTTON */

.compare-wrapper.non-empty .main-block__clean-btn {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.19;
  color: #888;
  border: 1px solid #aaa;
  background-color: #fff;
  border-radius: 2px;
  padding: 8px 18px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.compare-wrapper.non-empty .main-block__clean-btn:hover {
  color: #fff;
  border-color: #1976d2;
  background-color: #005ca5;
}

@media screen and (min-width: 768px) {
  .compare-wrapper.non-empty .main-block__clean-btn {
    right: 0;
    left: auto;
  }
}

/* MAON BLOCK TABLE */

.compare-wrapper.non-empty .main-block__compare-block {
  overflow-x: auto;
  margin-top: 83px;
  overflow-y: hidden;
}

.compare-wrapper.non-empty .main-block__table {
  border-collapse: collapse;
}

.compare-wrapper.non-empty .main-block__row-cards .main-block__table-cell {
  padding: 40px 20px 20px;
  border: none;
}

.compare-wrapper.non-empty .main-block__row {
  cursor: pointer;
  border: 1px solid #f2f2f2;
}

.compare-wrapper.non-empty .main-block__row:hover {
  background-color: #f7f7f7;
}

.compare-wrapper.non-empty
  .main-block__row:hover
  .main-block__table-cell-label-btn {
  opacity: 1;
  visibility: visible;
}

.compare-wrapper.non-empty .main-block__table-cell-label {
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  color: #383838;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 27px 13px 18px;
  text-align: left;
  line-height: 1.5;
  vertical-align: top;
  position: relative;
}

.compare-wrapper.non-empty .main-block__table-cell-label-btn {
  top: 5px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
}

.compare-wrapper.non-empty .main-block__table-cell {
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  padding: 10px 27px 13px 18px;
  font-size: 13px;
  color: #6d6d6d;
  vertical-align: top;
  line-height: 1.5;
  border: 1px solid #f2f2f2;
}

@media screen and (max-width: 500px) {
  .compare-wrapper.non-empty .main-block__table-cell-label {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    font-size: 10px;
  }

  .compare-wrapper.non-empty .main-block__table-cell-label-btn {
    right: 0;
    top: 0;
  }
}

/* PRODUCT COMPARE CARD */

.compare-wrapper.non-empty .product-compare-card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.compare-wrapper.non-empty .product-compare-card__btn-close {
  top: 0;
  right: 0;
}

.compare-wrapper.non-empty .product-compare-card__image {
  height: 170px;
  width: 170px;
}

.compare-wrapper.non-empty .product-compare-card__image img {
  width: 100%;
  height: 100%;
}

.compare-wrapper.non-empty .product-compare-card__name {
  margin-top: 30px;
  font-size: 13px;
  margin-bottom: 35px;
  font-weight: 700;
  text-decoration: none;
  transition: color ease-out 70ms;
  line-height: 1.5;
  color: #005ca5;
}

.compare-wrapper.non-empty .product-compare-card__name:hover {
  color: #1d2029;
}

.compare-wrapper.non-empty .product-compare-card__price {
  color: #1d2029;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.94;
  margin-bottom: 15px;
}

.compare-wrapper.non-empty .product-compare-card__btn-buy {
  align-self: flex-start;
  text-decoration: none;
}

@media screen and (max-width: 400px) {
  .compare-wrapper.non-empty .product-compare-card__price {
    font-size: 14px;
  }
}

/* ------------------------FORGOT PASSWORD PAGE-------------------------------- */

.forgot-password-wrapper .page-title-section {
  text-align: center;
}

/* MAIN BLOCK */

.forgot-password-wrapper .main-block {
  padding: 38px 43px;
  border: 1px solid #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.forgot-password-wrapper .main-block__text {
  text-align: center;
  margin-bottom: 30px;
}

.forgot-password-wrapper .main-block__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.forgot-password-wrapper .main-block__input {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 19px;
}

.forgot-password-wrapper .main-block__input-control {
  max-width: 400px;
}

.forgot-password-wrapper .main-block__input-label {
  left: 50%;
  transform: translateX(-50%);
}

.forgot-password-wrapper .main-block__button {
  border: none;
  cursor: pointer;
}

/* ----------------------------------LOG IN PAGE------------------------------------ */

/* MAIN BLOCK FORM */

.log-in-wrapper .main-block__text {
  margin-bottom: 50px;
}

.log-in-wrapper .main-block__form {
  position: relative;
}

.log-in-wrapper .main-block__label {
  font-size: 15px;
}

.log-in-wrapper .main-block__button {
  border: none;
  cursor: pointer;
}

.log-in-wrapper .main-block__link {
  position: absolute;
  right: 0;
  text-decoration: none;
  color: #005ca5;
  font-size: 13px;
  transition: color ease-out 70ms;
  line-height: 1.5;
  bottom: 60px;
  transition: color 70ms ease-out;
}

.log-in-wrapper .main-block__link:hover {
  color: #333;
  border-color: #333;
}

.log-in-wrapper .main-block__sign-up-block {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 35px;
  padding-top: 28px;
  padding-bottom: 37px;
  border-top: 1px solid #f2f2f2;
}

.log-in-wrapper .main-block__sign-up-btn {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  padding: 8px 18px;
  transition: color 70ms ease-out;
}

.log-in-wrapper .main-block__sign-up-btn:hover {
  color: #333;
  border-color: #333;
  background-color: transparent;
}

.log-in-wrapper .main-block__sign-up-text {
  margin-bottom: 0;
  color: #999;
  font-size: 12px;
  line-height: 1.5;
}

/* ------------------------------------OBJECT PAGE---------------------------- */

/* MAIN BLOCK IMAGE */

.object-wrapper .main-block__image {
  position: relative;
}

.object-wrapper .main-block__image img {
  width: 100%;
  max-height: 500px;
}

.object-wrapper .main-block__image-title {
  color: #005ca5;
  font-size: 27px;
  padding: 9px 18px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .object-wrapper .main-block__image-title {
    font-size: 17px;
    padding: 5px 10px;
    left: 10px;
  }
}

/* MAIN BLOCK CONTENT */

.object-wrapper .main-block__content {
  display: flex;
  padding: 35px 33px 40px;
  gap: 46px;
  background-color: #efefef;
  margin-bottom: 28px;
}

.object-wrapper .main-block__content-title {
  color: #575757;
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .object-wrapper .main-block__content {
    flex-direction: column;
    padding: 10px;
  }

  .object-wrapper .main-block__content-title {
    font-size: 17px;
  }
}

@media screen and (max-width: 600px) {
  .object-wrapper .main-block__content {
    margin-bottom: 18px;
  }
}

/* MAIN BLOCK CONTENT DESCRIPTION */

.object-wrapper .main-block__description {
  flex-basis: 50%;
}

.object-wrapper .main-block__description-location {
  color: #fff;
  font-size: 17px;
  background-color: #00399b;
  display: inline-block;
  padding: 9px 10px;
  line-height: 1.5;
}

.object-wrapper .main-block__description-text {
  color: #555;
}

.object-wrapper .main-block__description-text-link {
  text-decoration: none;
  color: #005ca5;
}

.object-wrapper .main-block__description-text-link:hover {
  color: #192029;
}

.object-wrapper .main-block__description-table {
  border-collapse: collapse;
  border: 1px solid #fff;
}

.object-wrapper .main-block__description-table-head {
  padding: 12px 18px;
  color: #00399b;
  font-size: 15px;
  text-align: left;
}

.object-wrapper .main-block__description-table-row {
  border-bottom: 1px solid #fff;
}

.object-wrapper .main-block__description-table-cell {
  color: #555;
  padding: 5px 18px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .object-wrapper .main-block__description-location {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 15px;
  }
}

/* MAIN BLOCK CONTENT USED PRODUCTS */

.object-wrapper .main-block__used-products {
  flex-basis: 50%;
}

.object-wrapper .main-block__used-products-item {
  margin-top: 16px;
}

.object-wrapper .main-block__used-products-link {
  display: flex;
  text-decoration: none;
  align-items: center;
  gap: 17px;
}

.object-wrapper .main-block__used-products-link-name {
  color: #00399b;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .object-wrapper .main-block__used-products-image {
    width: 80px;
    height: 80px;
  }
}

/* MAIN BLOCK CAROUSEL */

.object-wrapper .main-block__carousel {
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.object-wrapper .object-photo {
  border: none;
  padding: 0;
  height: 188px;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.object-wrapper .object-photo:hover {
  opacity: 0.7;
}

.object-wrapper .object-photo img {
  width: 100%;
  height: 100%;
}

.object-nav {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .object-wrapper .object-photo {
    height: auto;
    max-height: 333px;
  }

  .object-nav {
    position: absolute;
    top: -60px;
    right: 0;
  }
}

@media screen and (max-width: 500px) {
  .object-nav {
    display: none;
  }
}

/* ----------------------------------OBJECTS PAGE----------------------------------- */

/* MAIN BLOCK CARDS */

.objects-wrapper .main-block__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.objects-wrapper .main-block__item {
  flex-basis: calc((100% - 60px) / 3);
}

@media screen and (max-width: 991px) {
  .objects-wrapper .main-block__item {
    flex-basis: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 660px) {
  .objects-wrapper .main-block__item {
    flex-basis: 100%;
  }
}

/* OBJECT CARD */

.objects-wrapper .object-card {
  height: 297px;
  background-color: #fff;
  text-decoration: none;
  width: 100%;
}

.objects-wrapper .object-card:hover .object-card__name {
  color: #005ca5;
}

.objects-wrapper .object-card__image {
  width: 100%;
  height: 201px;
  position: relative;
  z-index: 4;
}

.objects-wrapper .object-card__image:hover {
  z-index: 3;
}

.objects-wrapper .object-card__image.shine-photo::before {
  left: -20%;
  transition-duration: 0.5s;
  width: 15%;
}

.objects-wrapper .object-card__image.shine-photo:hover::before {
  opacity: 1;
  transform: skewX(-25deg) translateX(500px);
}

.objects-wrapper .object-card__image img {
  width: 100%;
  height: 100%;
}

.objects-wrapper .object-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #222;
  padding-top: 15px;
  padding-left: 22px;
  padding-right: 22px;
}

@media screen and (max-width: 991px) {
  .objects-wrapper .object-card {
    height: 373px;
  }

  .objects-wrapper .object-card__image {
    height: 301px;
  }
}

@media screen and (max-width: 767px) {
  .objects-wrapper .object-card {
    height: 272px;
  }

  .objects-wrapper .object-card__image {
    height: 200px;
  }
}

/* --------------------------------------------ORDER PLACEMENT----------------------------------*/

.order-placement-wrapper .form-textarea__label {
  top: 0;
  color: #555;
  font-size: 15px;
}

.order-placement-wrapper .form-textarea__control {
  font-size: 15px;
}

/* MAIN BLOCK FORM */

.order-placement-wrapper .main-block {
  padding-bottom: 30px;
}

.order-placement-wrapper .main-block__order-form-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.order-placement-wrapper .main-block__order-title {
  color: #383838;
  font-size: 19.95px;
  line-height: 1.25;
  margin-top: 40px;
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .order-placement-wrapper .main-block__order-form-container {
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 600px) {
  .order-placement-wrapper .main-block__order-title {
    text-align: center;
  }
}

/* MAIN BLOCK FORM FORM */

.order-placement-wrapper .main-block__order-form {
  flex-grow: 1;
}

.order-placement-wrapper .main-block__order-form-input {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  gap: 20px;
}

.order-placement-wrapper .main-block__order-form-label {
  width: 20%;
  color: #555;
  line-height: 1.25;
  white-space: nowrap;
}

.order-placement-wrapper .main-block__order-form-field {
  width: 70%;
}

.order-placement-wrapper
  .main-block__order-form-field[required]
  + .main-block__order-form-label::after {
  content: " *";
}

.order-placement-wrapper .main-block__order-form-textarea {
  padding-top: 35px;
}

/* MAIN BLOCK FORM PAYMENT */

.order-placement-wrapper .main-block__order-payment-inputs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.order-placement-wrapper .main-block__order-payment-input {
  display: flex;
  align-items: center;
}

.order-placement-wrapper .main-block__order-payment-label {
  color: #363636;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 87px;
}

.order-placement-wrapper .main-block__order-payment-label-text {
  position: relative;
}

.order-placement-wrapper .main-block__order-payment-label-text::before {
  content: "";
  width: 57px;
  height: 38px;
  bottom: 50%;
  left: -63px;
  position: absolute;
  background-size: cover;
  transform: translateY(50%);
}

.order-placement-wrapper
  .main-block__order-payment-label-text[for="payment-online"]::before {
  background-image: url("../images/payment-online.jpg");
}

.order-placement-wrapper
  .main-block__order-payment-label-text[for="payment-cash"]::before {
  background-image: url("../images/payment-cash.jpg");
}

.order-placement-wrapper
  .main-block__order-payment-label-text[for="payment-card"]::before {
  background-image: url("../images/payment-card.jpg");
}

.order-placement-wrapper .main-block__order-button {
  margin-top: 40px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-weight: 700;
}

/* -----------------------------OUTLET REMMERS PAGE-------------------------------- */

/* MAIN BLOCK DATE */

.outlet-remmers-wrapper .main-block__date {
  color: #555;
  font-size: 12px;
  margin-bottom: 29px;
  line-height: 1.36;
}

@media screen and (min-width: 768px) {
  .outlet-remmers-wrapper .main-block__date {
    margin-bottom: 9px;
  }
}

@media screen and (max-width: 600px) {
  .outlet-remmers-wrapper .main-block__date {
    margin-bottom: 59px;
  }
}

/* MAIN BLOCK TITLE */

.outlet-remmers-wrapper .main-block__title {
  color: #383838;
  font-size: 31.995px;
  line-height: 1.86;
  margin-bottom: 43px;
}

@media screen and (max-width: 600px) {
  .outlet-remmers-wrapper .main-block__title {
    text-align: center;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 39px;
  }
}

/* MAIN BLOCK IMAGE */

.outlet-remmers-wrapper .main-block__image {
  margin-bottom: 20px;
}

.outlet-remmers-wrapper .main-block__image img {
  width: 100%;
  max-height: 209px;
}

/* MAIN BLOCK INPUTS */

.outlet-remmers-wrapper .main-block__inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 20px;
}

.outlet-remmers-wrapper .main-block__input-label {
  color: #555;
  font-weight: 700;
}

.outlet-remmers-wrapper .main-block__select-control,
.outlet-remmers-wrapper .main-block__search-control {
  border-radius: 3px;
  color: #444444;
  background-color: #f5f5f5;
  font-size: 13px;
  margin-left: 10px;
  padding: 8px 13px;
  border: 1px solid #eee;
}

.outlet-remmers-wrapper .main-block__select-control {
  margin-left: 12px;
  margin-right: 12px;
}

.outlet-remmers-wrapper .main-block__select-control:focus {
  outline: none;
}

.outlet-remmers-wrapper .main-block__search-control {
  margin-left: 10px;
}

/* MAIN BLOCK TABLE */

.outlet-remmers-wrapper .main-block__table {
  overflow-x: auto;
}

.outlet-remmers-wrapper .main-block__table table {
  width: 100%;
  border-collapse: collapse;
}

.outlet-remmers-wrapper .main-block__table-head-row:hover,
.outlet-remmers-wrapper
  .main-block__table-head-row:hover
  .main-block__table-head-cell.article,
.outlet-remmers-wrapper .main-block__table-row:hover,
.outlet-remmers-wrapper
  .main-block__table-row:hover
  .main-block__table-cell.article {
  background-color: #ededed;
}

.outlet-remmers-wrapper
  .main-block__table-head-row:hover
  .main-block__table-head-cell.article,
.outlet-remmers-wrapper
  .main-block__table-row:hover
  .main-block__table-cell.article {
  color: #212529;
}

.outlet-remmers-wrapper .main-block__table-head-row {
  border-bottom: 2px solid #f5e1a6;
}

.outlet-remmers-wrapper .main-block__table-head-cell {
  text-align: left;
  color: #212529;
  font-weight: 700;
  padding: 5px 9px;
}

.outlet-remmers-wrapper .main-block__table-head-cell.article,
.outlet-remmers-wrapper .main-block__table-cell.article {
  color: #fff;
  background-color: #142a3d;
}

.outlet-remmers-wrapper .main-block__table-cell {
  text-align: left;
  color: #212529;
  padding: 5px 9px;
}

.outlet-remmers-wrapper .main-block__table-cell.price-stocks {
  color: #ff0000;
  background-color: #ededed;
  font-weight: 700;
}

/* MAIN BLOCK TABLE INFO TEXT */

.outlet-remmers-wrapper .main-block__table-info {
  margin-top: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* SUBCRIBE SECTION */

.outlet-remmers-wrapper .subscribe-section {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #19293c;
  background-image: url("../images/backgrounds/subscribe-background.png");
  position: relative;
}

.outlet-remmers-wrapper .subcribe-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.outlet-remmers-wrapper .subcribe-section__title,
.outlet-remmers-wrapper .subcribe-section__text {
  color: #fff;
  line-height: 1.5;
}

.outlet-remmers-wrapper .subcribe-section__title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.outlet-remmers-wrapper .subcribe-section__text {
  margin-bottom: 40px;
}

@media screen and (min-width: 600px) {
  .outlet-remmers-wrapper .subscribe-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .outlet-remmers-wrapper .subcribe-section__title {
    font-size: 20px;
  }
}

/* SUBSCRIBE SECTION FORM */

.outlet-remmers-wrapper .subscribe-section__form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.outlet-remmers-wrapper .subcribe-section__input {
  width: 300px;
  position: relative;
  display: flex;
}

.outlet-remmers-wrapper .subcribe-section__input-label {
  width: 40px;
  background-color: #fff;
  background-image: url("../images/icons/email.svg");
  background-position: center;
  display: inline-block;
  background-size: 50%;
  background-repeat: no-repeat;
  border-radius: 2px;
}

.outlet-remmers-wrapper .subscribe-section__input-control {
  width: 100%;
  background-color: rgba(225, 225, 225, 0.5);
  padding: 10px;
  color: #fff;
  line-height: 1.25;
  font-size: 13px;
  border: none;
}

.outlet-remmers-wrapper .subscribe-section__input-control::placeholder {
  color: #fff;
}

.outlet-remmers-wrapper .subscribe-section__input-control:focus {
  outline: none;
}

.outlet-remmers-wrapper .subscribe-section__submit {
  background-color: #ce3632;
  padding: 10px 20px;
  border-radius: 2px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.25;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 350px) {
  .outlet-remmers-wrapper .subscribe-section__form {
    flex-direction: column;
  }
}

/* SUBCRIBE SOCIALS */

.outlet-remmers-wrapper .subcribe-section__socials {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* -----------------------------------PRODUCT PAGE------------------------------- */

/* PAGE TITLE SECTION */

.product-wrapper .page-title-section {
  position: sticky;
  top: 72px;
  z-index: 6;
  left: 0;
}

@media screen and (max-width: 1000px) {
  .product-wrapper .page-title-section {
    position: static;
  }
}

/* MAIN BLOCK */

.product-wrapper .main-part-section__main-block {
  padding-bottom: 50px;
  width: calc(100% - 243px);
}

@media screen and (max-width: 991px) {
  .product-wrapper .main-part-section__main-block {
    width: 100%;
  }
}

.product-wrapper .main-block__section {
  padding-bottom: 57px;
  padding-top: 40px;
  border-bottom: 1px solid #f2f2f2;
}

.product-wrapper .main-block__section.reviews {
  border-bottom: none;
}

.product-wrapper .main-block__section-title {
  color: #383838;
  font-size: 19.95px;
  margin-bottom: 26px;
}

@media screen and (max-width: 600px) {
  .product-wrapper .main-block__section-title {
    text-align: center;
  }
}

/* MAIN BLOCK BUTTON BACK */

.product-wrapper .main-block__btn-back {
  display: flex;
}

.product-wrapper .main-block__btn-back-link:hover {
  background-color: #f5f5f5;
}

.product-wrapper .main-block__btn-back-link {
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 9px 15px;
  background-color: transparent;
  border: 1px solid #f2f2f2;
  color: #222;
  font-weight: 700;
  line-height: 1.5;
  transition: background-color 70ms ease-out;
}

.product-wrapper .main-block__btn-back-icon {
  transform: rotate(90deg);
}

/* MAIN BLOCK BUTTONS */

.product-wrapper .main-block__buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}

.product-wrapper .main-block__buttons-item:nth-child(2),
.product-wrapper .main-block__buttons-item:nth-child(3) {
  display: none;
}

.product-wrapper .main-block-button {
  font-size: 13px;
  text-decoration: none;
  display: flex;
  padding: 0;
  border: none;
  background-color: transparent;
  gap: 5px;
  align-items: center;
  font-weight: 700;
  color: #005ca5;
  cursor: pointer;
}

.product-wrapper .main-block-button-icon {
  fill: #005ca5;
}

@media screen and (min-width: 768px) {
  .product-wrapper .main-block__buttons {
    justify-content: flex-start;
  }

  .product-wrapper .main-block__buttons-item:nth-child(2),
  .product-wrapper .main-block__buttons-item:nth-child(3) {
    display: block;
  }
}

/* PRODUCT BLOCK */

.product-wrapper .product-block {
  display: flex;
  gap: 30px;
  padding: 30px 20px 20px;
  position: relative;
  border: 1px solid #f2f2f2;
  margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
  .product-wrapper .product-block {
    flex-direction: column;
    padding: 0;
    border: none;
    gap: 0;
  }
}

.product-wrapper .product-block__description-block {
  background-color: #f6f6f8;
  border-bottom: 1px solid #e7e7e5;
  font-size: 13px;
  color: #000;
  font-weight: 700;
  line-height: 1.5;
  padding: 10px 31px 10px 24px;
  margin-bottom: 0;
}

.product-wrapper .product-block__description-block span {
  color: #df2123;
}

@media screen and (max-width: 600px) {
  .product-wrapper .product-block__description-block.image-description {
    display: none;
  }
}

@media screen and (min-width: 601px) {
  .product-wrapper .product-block__description-block.info-description {
    display: none;
  }
}

/* PRODUCT BLOCK IMAGE */

.product-wrapper .product-block__mark {
  top: 30px;
  left: 35px;
}

.product-wrapper .product-block__image {
  flex-basis: 50%;
  padding-top: 50px;
}

.product-wrapper .product-block__image-photo {
  position: relative;
  padding-left: 36px;
  padding-right: 56px;
  padding-bottom: 60px;
}

.product-wrapper .product-block__image-photo:hover .image-zoom {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .product-wrapper .product-block__image {
    padding-top: 30px;
    padding-left: 0;
    border: 1px solid #f2f2f2;
  }

  .product-wrapper .product-block__image-photo {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .product-wrapper .product-block__image-description {
    display: none;
  }
}

/* PRODUCT BLOCK DESCRIPTION */

.product-wrapper .product-block__description {
  flex-basis: 50%;
  padding-top: 13px;
}

.product-wrapper .product-block__description-text {
  color: #333;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}

.product-wrapper .product-block__description-type {
  margin-bottom: 8px;
  margin-top: 34px;
}

.product-wrapper .product-block__description-colors {
  margin-bottom: 10px;
}

.product-wrapper .product-block__description-volume {
  margin-bottom: 15px;
}

.product-wrapper .product-block__description-btn-ral {
  color: #005ca5;
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 700;
  transition: color 70ms ease-out;
}

.product-wrapper .product-block__description-btn-ral:hover {
  color: #1d2029;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .product-wrapper .product-block__description {
    padding-left: 11px;
    padding-right: 11px;
    padding-top: 0;
  }

  .product-wrapper .product-block__description-text {
    border: 1px solid #f2f2f2;
    width: calc(100% + 22px);
    margin-left: -11px;
    padding-left: 11px;
    padding-right: 11px;
    padding-top: 41px;
  }
}

/* PRODUCT BLOCK PRICE */

.product-wrapper .product-block__description-price {
  display: flex;
  margin-bottom: 40px;
  align-items: end;
}

.product-wrapper .product-block__description-price-section {
  flex-grow: 1;
  height: 100%;
}

.product-wrapper
  .product-block__description-price-section:first-child
  .product-block__description-price-digit {
  font-weight: 700;
  color: #005ca5;
  font-size: 22px;
  padding-top: 9px;
  padding-left: 10px;
}

.product-wrapper .product-block__description-price-measure {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

.product-wrapper
  .product-block__description-price-measure:not(
    .product-wrapper
      .product-block__description-price-section:first-child
      .product-block__description-price-measure
  ) {
  padding-left: 10px;
}

.product-wrapper .product-block__description-price-digit {
  margin-bottom: 0;
  font-size: 18px;
  color: #555;
  padding: 15px 10px;
  border: 1px solid #f2f2f2;
}

.product-wrapper .product-block__description-price-consumption {
  display: none;
}

/* PRODUCT BLOCK BUY BUTTONS */

.product-wrapper .product-block__description-buy-buttons {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  gap: 12px;
  flex-wrap: wrap;
}

.product-wrapper .product-block__description-buy-button-btn {
  zoom: 1.2;
}

.product-wrapper .product-block__description-buy-button-btn.basket-btn {
  border: none;
  cursor: pointer;
}

.product-block__description-buy-button-btn input {
  text-align: center;
  border: none;
  background: none;
  box-shadow: none;
}

/* PRODUCT BLOCK INFO BUTTONS */

.product-wrapper .product-block__description-info-buttons {
  display: flex;
  background-color: #f6f6f8;
  padding: 10px 25px 10px 10px;
  justify-content: space-between;
}

.product-wrapper .product-block__description-info-item,
.product-wrapper .product-block__description-info-btn {
  position: relative;
}

.product-wrapper .product-block__description-info-btn {
  background-color: transparent;
  padding: 0;
  border: none;
  display: flex;
  gap: 6px;
  align-items: center;
  color: #005ca5;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding-right: 15px;
  white-space: nowrap;
}

.product-wrapper .product-block__description-info-btn::after {
  content: "";
  width: 3px;
  height: 5px;
  background-image: url("../images/icons/triangle-arrow.svg");
  position: absolute;
  right: 5px;
  top: 50%;
  transform: rotate(270deg);
  background-repeat: no-repeat;
}

@media screen and (max-width: 1300px) {
  .product-wrapper .product-block__description-info-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 600px) {
  .product-wrapper .product-block__description-info-buttons {
    align-items: stretch;
  }
}

/* DESCRIPTION INFO BLOCK */

.product-wrapper .description-info-block {
  width: 428px;
  background-color: #005ca5;
  position: absolute;
  bottom: 35px;
  padding: 21px 14px 30px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.product-wrapper .description-info-block.is-open {
  opacity: 1;
  visibility: visible;
}

.product-wrapper .description-info-block.block-delivery {
  right: -50%;
  transform: translateX(25%);
}

.product-wrapper .description-info-block.block-deadline {
  right: -35%;
}

.product-wrapper .description-info-block.block-payment {
  right: -80%;
}

.product-wrapper
  .description-info-block.block-payment
  .description-info-block__arrow {
  right: 25%;
  left: auto;
  transform: rotate(45deg);
}

.product-wrapper .description-info-block__btn {
  position: absolute;
  top: 21px;
  right: 14px;
  background-color: transparent;
  padding: 0;
  border: none;
  opacity: 0.5;
  cursor: pointer;
  font-size: 21px;
  color: #fff;
}

.product-wrapper .description-info-block__btn:hover {
  opacity: 1;
}

.product-wrapper .description-info-block__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.25;
}

.product-wrapper .description-info-block__text {
  font-size: 12px;
  color: #d8e7ee;
  line-height: 1.13;
  margin-bottom: 10px;
}

.product-wrapper .description-info-block__link {
  position: absolute;
  right: 14px;
  bottom: 16px;
  color: #fff;
  font-size: 12px;
}

.product-wrapper .description-info-block__arrow {
  width: 20px;
  height: 10px;
  background-color: #005ca5;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

@media screen and (max-width: 1300px) {
  .product-wrapper .description-info-block.block-payment {
    right: -50%;
    transform: translateX(30%);
  }

  .product-wrapper
    .description-info-block.block-payment
    .description-info-block__arrow {
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
}

@media screen and (max-width: 600px) {
  .product-wrapper .description-info-block {
    width: 100vw;
  }

  .product-wrapper .description-info-block.block-delivery,
  .product-wrapper .description-info-block.block-deadline,
  .product-wrapper .description-info-block.block-payment {
    right: 50%;
    transform: translateX(50%);
  }

  .product-wrapper .description-info-block__arrow,
  .product-wrapper
    .description-info-block.block-payment
    .description-info-block__arrow {
    left: 60px;
    transform: translateX(0) rotate(45deg);
  }
}

/* MAIN BLOCK OTHER PRODUCTS */

.product-wrapper .main-block__other-products-title {
  font-size: 16px;
  color: #222;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 2px solid #005ca5;
  display: inline-block;
  margin-bottom: 20px;
}

.product-wrapper .main-block__other-products-list {
  cursor: grab;
}

.product-wrapper .main-block__other-products-item {
  height: 412px;
}

.other-products-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.other-products-nav .other-products-prev,
.other-products-nav .other-products-next {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-image: url("../images/icons/arrow-right.svg");
  background-position: center;
  border: 1px solid #e5e5e5;
  background-repeat: no-repeat;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  background-size: 18px 15px;
}

.other-products-nav .other-products-next {
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .other-products-nav {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .product-wrapper .main-block__other-products-title {
    font-size: 12px;
  }
}

/* OTHER PRODUCT CARD */

.product-wrapper .other-product-card {
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s ease-out;
  overflow: hidden;
  position: relative;
  border: 1px solid #eee;
}

.product-wrapper .other-product-card:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.product-wrapper .other-product-card:hover .other-product-card__button,
.product-wrapper .other-product-card:hover .modal-button {
  visibility: visible;
  opacity: 1;
}

.product-wrapper .other-product-card:hover .other-product-card__button {
  max-height: max-content;
}

.product-wrapper .other-product-card:hover .modal-button {
  pointer-events: all;
}

.product-wrapper .other-product-card__mark {
  top: 20px;
  left: 20px;
}

.product-wrapper .other-product-card__image {
  position: relative;
  width: 170px;
  height: 170px;
}

.product-wrapper .other-product-card__image.shine-photo:hover::before {
  opacity: 1;
  transform: translateX(137px);
}

.product-wrapper .other-product-card__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-wrapper .other-product-card__name {
  color: #005ca5;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
}

.product-wrapper .other-product-card__name:hover {
  color: #1569bc;
}

.product-wrapper .other-product-card__rating {
  display: flex;
  margin-bottom: 10px;
  gap: 3px;
}

.product-wrapper .other-product-card__rating-star .fa-star::before {
  width: 15px;
  height: 14px;
  display: block;
}

.product-wrapper .other-product-card__price {
  font-size: 18px;
  color: #1d2029;
  font-weight: 700;
  line-height: 0.94;
  margin-bottom: 20px;
}

/* STOCKS */

.product-wrapper .other-product-card__stocks-price {
  font-size: 18px;
  color: #1d2029;
  font-weight: 700;
  line-height: 0.94;
  margin-bottom: 10px;
}

.product-wrapper .other-product-card__stocks-price span {
  font-size: 13px;
  color: #888;
  font-weight: 700;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 10px;
  white-space: nowrap;
}

.product-wrapper .other-product-card__stocks-saving {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}

.product-wrapper .other-product-card__stocks-saving span {
  color: #1d2029;
  background-color: #ffd700;
  border-radius: 3px;
  margin-left: 5px;
  padding: 2px 8px;
}

/* ------------ */

.product-wrapper .other-product-card__button {
  text-decoration: none;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.1s ease-out;
}

/* MAIN BLOCK NAVIGATION MENU */

.product-wrapper .main-block__product-nav {
  padding-bottom: 50px;
  display: none;
}

.product-wrapper .main-block__product-nav-list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #f2f2f2;
}

.product-wrapper .main-block__product-nav-item {
  border: 1px solid #f2f2f2;
}

.product-wrapper .main-block__product-nav-item.item-active {
  background-color: #fff;
  border-top-color: #005ca5;
  border-top-width: 2px;
  z-index: 2;
}

.product-wrapper
  .main-block__product-nav-item:hover
  .main-block__product-nav-link,
.product-wrapper
  .main-block__product-nav-item.item-active
  .main-block__product-nav-link,
.product-wrapper .main-block__product-nav-link:active,
.product-wrapper .main-block__product-nav-link:focus {
  color: #1976d2;
  background-color: #fff;
}

.product-wrapper .main-block__product-nav-link {
  text-decoration: none;
  color: #222;
  font-weight: 700;
  line-height: 1.43;
  transition: color 70ms ease-out;
  padding: 18px 25px;
  background-color: #f9f9fa;
}

@media screen and (min-width: 768px) {
  .product-wrapper .main-block__product-nav {
    display: block;
    padding-top: 80px;
  }
}

/* SCOPE OF UTILIZATION */

.scope-utilization {
}

/*.product-wrapper .scope-utilization__text {
  list-style-type: disc;
  padding-left: 20px;
}*/

.product-wrapper .scope-utilization__item {
  color: #555;
  line-height: 1.5;
  margin-bottom: 4px;
}

.product-wrapper .scope-utilization__item::marker {
  color: #005ca5;
}

.product-wrapper .scope-utilization__list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 27px;
}

.scope-utilization__text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 27px;
}

.scope-utilization__text li {
  color: #555;
  line-height: 1.5;
  margin-bottom: 4px;
}

.scope-utilization__text li::marker {
  color: #005ca5;
}

/* MAIN BLOCK PROPERTIES */

.properties {
}

/*.product-wrapper .properties__text {
  list-style-type: disc;
  padding-left: 20px;
}*/

.product-wrapper .properties__item {
  color: #555;
  line-height: 1.5;
  margin-bottom: 4px;
}

.product-wrapper .properties__item::marker {
  color: #005ca5;
}

.properties__text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 27px;
}

.properties__text li {
  color: #555;
  line-height: 1.5;
  margin-bottom: 4px;
}

.properties__text li::marker {
  color: #005ca5;
}

/* MAIN BLOCK CHARACTERISTICS */

.characteristics {
}

.product-wrapper .characteristics__table {
  margin-bottom: 28px;
  border-collapse: collapse;
  width: 100%;
}

.product-wrapper .characteristics__row {
  border-bottom: 1px solid #f2f2f2;
}

/*.product-wrapper .characteristics__row:not(:nth-child(-n + 4)) {
  display: none;
}*/

.product-wrapper .characteristics__cell {
  padding: 4px 10px 4px 0;
  color: #555;
  font-size: 13px;
  line-height: 1.5;
  vertical-align: top;
}

.product-wrapper .characteristics__cell.property-cell {
  width: 30%;
}

.product-wrapper .characteristics__cell.value-cell {
  padding-left: 10px;
  width: 60%;
}

.product-wrapper .charactiristics__cell-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 27px;
}

.product-wrapper .characteristics__cell-item {
  margin-bottom: 4px;
}

.product-wrapper .characteristics__cell-item::marker {
  color: #005ca5;
}

.product-wrapper .characteristics__button {
  display: block;
  margin: 0 auto;
  font-weight: 700;
}

.product-wrapper .characteristics__button.hide-rows {
  display: none;
}

/* MAIN BLOCK DOCUMENTS */

.documents {
}

.product-wrapper .documents__list {
  list-style-type: disc;
  margin-left: 30%;
}

.product-wrapper .documents__link {
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  padding-left: 20px;
  position: relative;
  color: #005ca5;
}

.product-wrapper .documents__link:hover {
  color: #1d2029;
}

.product-wrapper .documents__link::after {
  content: "";
  background-image: url("../images/pdf-icon.gif");
  width: 20px;
  height: 21px;
  position: absolute;
  top: 0;
  left: -5px;
}

/* MAIN BLOCK CALCULATOR */

.product-wrapper .main-block__product-calculator {
  padding-top: 28px;
  padding-bottom: 30px;
}

.product-wrapper .calculator {
  background-color: #fafafa;
  border: 1px solid #dddddd;
}

.product-wrapper .calculator__title {
  color: #000;
  font-size: 16px;
  text-align: center;
  padding: 30px 50px;
  border-bottom: 1px solid #e7e7e4;
}

.product-wrapper .calculator__container {
  padding: 30px 50px;
}

.product-wrapper .calculator__block {
  display: flex;
  margin-bottom: 58px;
  justify-content: space-between;
}

@media screen and (max-width: 570px) {
  .product-wrapper .calculator__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .product-wrapper .calculator__block {
    flex-direction: column;
    align-items: center;
  }
}

/* CALCULATOR IMAGE */

@media screen and (min-width: 571px) and (max-width: 1024px) {
  .product-wrapper .calculator__image {
    display: none;
  }
}

@media screen and (max-width: 570px) {
  .product-wrapper .calculator__image {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
}

/* CALCULATOR INPUT OUTPUT DATA */

.product-wrapper .calculator__data {
  width: calc(100% - 270px);
}

.product-wrapper .calculator__data-input {
  position: relative;
  padding-top: 57px;
  margin-bottom: 28px;
}

.product-wrapper .calculator__data-input-label {
  position: absolute;
  top: 0;
  left: 0;
  color: #444;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.product-wrapper .calculator__data-input-field {
  width: 134px;
  border-radius: 3px;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  line-height: 1.19;
  padding: 10px 14px;
  margin-right: 8px;
}

.product-wrapper .calculator__data-input-field:focus {
  outline: none;
}

.product-wrapper .calculator__data-button {
  border: none;
  cursor: pointer;
  font-weight: 700;
  zoom: 1.15;
}

.product-wrapper .calculator__data-values-title {
  color: #444;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 1024px) {
  .product-wrapper .calculator__data {
    width: 100%;
  }
}

@media screen and (max-width: 570px) {
  .product-wrapper .calculator__data {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-wrapper .calculator__data-input {
    margin: 0 auto 28px;
    width: 90%;
  }

  .product-wrapper .calculator__data-input-field,
  .product-wrapper .calculator__data-button {
    width: 46%;
  }

  .product-wrapper .calculator__data-button {
    zoom: 1;
    font-weight: 400;
  }
}

@media screen and (max-width: 375px) {
  .product-wrapper .calculator__data-input {
    margin: 0 auto 28px;
    width: 90%;
    padding-top: 80px;
  }
}

/* CALCULATOR DATA TABLE */

.product-wrapper .calculator__data-table {
  border-collapse: collapse;
}

.product-wrapper .calculator__data-table tbody,
.product-wrapper .calculator__data-row {
  display: flex;
}

.product-wrapper .calculator__data-row {
  flex-direction: column;
}

.product-wrapper .calculator__data-cell-label {
  padding: 6px 20px 6px 2px;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid #e7e7e4;
  line-height: 1.2;
}

.product-wrapper .calculator__data-cell {
  color: #222;
  font-size: 16px;
  padding: 13px 2px 6px 2px;
  line-height: 1.2;
}

@media screen and (max-width: 570px) {
  .product-wrapper .calculator__data-table {
    width: 100%;
  }

  .product-wrapper .calculator__data-table tbody {
    flex-direction: column;
  }

  .product-wrapper .calculator__data-row {
    flex-direction: row;
    border-bottom: 1px solid #e7e7e4;
  }

  .product-wrapper .calculator__data-cell-label {
    border: none;
  }

  .product-wrapper .calculator__data-cell-label,
  .product-wrapper .calculator__data-cell {
    width: 50%;
    padding: 6px 2px;
  }
}

/* CALCULATOR DESCRIPTION */

.product-wrapper .calculator__description {
  margin-bottom: 0;
  color: #747474;
  font-size: 12px;
  line-height: 1.2;
}

/* MAIN BLOCK PRODUCT VIDEO */

.video {
}

.product-wrapper .video__iframe {
  width: 560px;
  height: 315px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .product-wrapper .video__iframe {
    width: 100%;
  }
}

/* MAIN BLOCK REVIEWS */

.product-wrapper .reviews.active .reviews__spoller::before {
  transform: translate(-25px, -50%) rotate(40deg);
}

.product-wrapper .reviews.active .reviews__spoller::after {
  transform: translate(-29px, -50%) rotate(-40deg);
}

.product-wrapper .reviews.active .reviews__spoller {
  color: #1976d2;
}

.product-wrapper .reviews__spoller {
  color: #222;
  border: 1px solid #f5f5f5;
  background-color: #fff;
  padding: 18px 25px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.5;
  position: relative;
}

div#review p {
  margin-bottom: 20px;
}

.product-wrapper .reviews__spoller:active,
.product-wrapper .reviews__spoller:focus,
.product-wrapper .reviews__spoller:hover {
  color: #1976d2;
}

.product-wrapper .reviews__spoller::after,
.product-wrapper .reviews__spoller::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-25px, -50%);
  width: 6px;
  height: 1px;
  background-color: #005ca5;
  transition: transform 0.2s ease-out;
  right: 0;
}

.product-wrapper .reviews__spoller::before {
  transform: translate(-25px, -50%) rotate(-40deg);
}

.product-wrapper .reviews__spoller::after {
  transform: translate(-29px, -50%) rotate(40deg);
}

.product-wrapper .reviews__block {
  display: flex;
  justify-content: space-between;
  gap: 27px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.product-wrapper .reviews__text {
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}

.product-wrapper .reviews__button {
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .product-wrapper .reviews__container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }

  .product-wrapper .reviews__title {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .product-wrapper .reviews__spoller {
    display: none;
  }
}

/* REVIEW FORM */

.product-wrapper .review__form-label {
  font-size: 15px;
}

.product-wrapper .review__form-textarea {
  margin-bottom: 30px;
}

.product-wrapper .review__form-button {
  border: none;
  cursor: pointer;
  margin-bottom: 16px;
}

/* PRODUCT NAVIGATION FIXED */

.product-wrapper .product-nav-fixed {
  position: fixed;
  top: 73px;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-out;
  box-shadow: 0 4px 14px 0 rgba(32, 54, 74, 0.23);
}

.product-wrapper .product-nav-fixed__menu-list {
  display: flex;
  flex-wrap: wrap;
}

.product-wrapper
  .product-nav-fixed__menu-item.item-active
  .product-nav-fixed__menu-link {
  color: #1976d2;
}

.product-wrapper
  .product-nav-fixed__menu-item.item-active
  .product-nav-fixed__menu-link::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #1976d2;
  position: absolute;
  bottom: 0;
  left: 0;
}

.product-wrapper .product-nav-fixed__menu-link {
  text-decoration: none;
  color: #1d2029;
  font-weight: 700;
  transition: color ease-out 70ms;
  line-height: 1.43;
  padding: 18px 36px;
  position: relative;
}

.product-wrapper .product-nav-fixed__menu-link:hover {
  color: #1569bc;
}

@media screen and (max-width: 991px) {
  .product-wrapper .product-nav-fixed {
    display: none;
  }
}

/* RUBRIK SECTION */

.product-wrapper .rubrik-section {
  padding-bottom: 54px;
}

/* ------------------------------SEARCH PAGE----------------------------------------- */

/* MAIN BLOCK INPUT SEARCH */

.search-page-wrapper .main-block__search-input {
  margin-bottom: 20px;
}

.search-page-wrapper .main-block__search-input-control {
  background-color: #f7f7f7;
  padding: 8px 13px;
  width: 320px;
  border: 1px solid #eeeeee;
  border-radius: 2px;
  font-size: 13px;
  line-height: 1.25;
  margin-right: 10px;
}

.search-page-wrapper .main-block__search-input-control:focus {
  outline: none;
}

.search-page-wrapper .main-block__search-input-btn {
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 450px) {
  .search-page-wrapper .main-block__search-input {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .search-page-wrapper .main-block__search-input-control {
    width: 100%;
  }

  .search-page-wrapper .main-block__search-input-btn {
    align-self: flex-start;
  }
}

/* ---------------------------------------SIGN-UP--------------------------------- */

/* PAGE TITLE SECTION */

.sign-up-wrapper .page-title-section {
  text-align: center;
}

/* MAIN BLOCK */

.sign-up-wrapper .main-block {
  border: 1px solid #f2f2f2;
  padding-left: 44px;
  padding-right: 44px;
}

@media screen and (max-width: 768px) {
  .sign-up-wrapper .main-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* MAIN BLOCK FORM */

.sign-up-wrapper .main-block__form {
  width: 73%;
  border-right: 1px solid #f2f2f2;
  padding: 38px 61px 25px 0px;
}

.sign-up-wrapper .main-block__form-text {
  padding-left: 42px;
  padding-bottom: 37px;
  color: #383838;
  font-size: 13px;
  line-height: 1.5;
  position: relative;
}

.sign-up-wrapper .main-block__form-text::before {
  content: "";
  width: 26px;
  height: 26px;
  background-color: #005ca5;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.sign-up-wrapper .main-block__form-text::after {
  content: "";
  width: 16px;
  height: 9px;
  background-image: url("../images/icons-3.png");
  background-position: -33px -4px;
  position: absolute;
  top: 9px;
  left: 4px;
}

.sign-up-wrapper .main-block__form-text-link {
  text-decoration: none;
  color: #005ca5;
}

.sign-up-wrapper .main-block__form-field {
  display: flex;
  gap: 25px;
}

.sign-up-wrapper .main-block__form-field-input {
  width: 56%;
}

.sign-up-wrapper .main-block__form-field-text {
  width: 38%;
  color: #999;
  font-size: 12.138px;
  line-height: 1.54;
  padding-top: 20px;
}

.sign-up-wrapper .main-block__form-agreed {
  width: 59%;
}

.sign-up-wrapper .main-block__form-button {
  border: none;
  cursor: pointer;
}

.home-relative-slider {
  margin-bottom: 30px;
}

.home-relative-slider .main-block__list {
  display: none;
}

.home-relative-slider .main-block__list.home-relative-slider-active {
  display: flex;
}

@media screen and (max-width: 768px) {
  .sign-up-wrapper .main-block__form {
    width: 100%;
    border: none;
  }

  .sign-up-wrapper .main-block__form-field {
    flex-direction: column;
    gap: 0;
  }

  .sign-up-wrapper .main-block__form-field-input {
    width: 100%;
    margin-bottom: 20px;
  }

  .sign-up-wrapper .main-block__form-field-text {
    padding-top: 0;
    width: 100%;
  }

  .sign-up-wrapper .main-block__form-agreed {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .sign-up-wrapper .main-block__form {
    padding-right: 0;
    padding-top: 10px;
  }
}

@media screen and (max-width: 550px) {
  .sign-up-wrapper .main-block__form-text {
    padding-left: 0;
    padding-bottom: 20px;
    font-size: 10px;
  }

  .sign-up-wrapper .main-block__form-text::before {
    display: none;
  }

  .sign-up-wrapper .main-block__form-text::after {
    display: none;
  }
}

@media screen and (max-width: 420px) {
  .header__info {
    margin-top: 30px;
    margin-right: 0;
  }
  .header__lang {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    right: 15px;
    top: 0;
    width: 60px;
    z-index: 2;
  }
}

/* SEARCH PAGE */

.search-section__field {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.search-section__select {
  height: auto;
  padding: 12px 16px;
  max-width: 270px;
}

.search-section__button {
  height: auto;
  padding: 12px 16px;
  max-width: 200px;
  width: 100%;
}

.search-section__checkboxes {
  margin-bottom: 30px;
  display: flex;
  gap: 30px;
}

.search-section__checkboxes .checkbox-inline {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .search-section__field {
    align-items: flex-start;
    flex-direction: column;
  }
}
