@charset "UTF-8";
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Light"), url("../fonts/opensans-light.woff") format("woff"), url("../fonts/opensans-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans"), url("../fonts/opensans-regular.woff") format("woff"), url("../fonts/opensans-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Semibold"), url("../fonts/opensans-semibold.woff") format("woff"), url("../fonts/opensans-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Bold"), url("../fonts/opensans-bold.woff") format("woff"), url("../fonts/opensans-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
header {
  background-color: #ffffff;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}

header, .sticky-header {
  display: none;
}

.sticky-header {
  position: fixed;
  top: 0;
  background-color: #ffffff;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid var(--color-primary);
  visibility: hidden;
  transition: transform 0.4s ease-in-out;
  transform: translateY(-100px);
}
.sticky-header.show {
  visibility: visible;
  transform: translateY(0%);
}

.no-transition-padding .header-wrapper {
  transition: none !important;
  margin-right: 8.5px;
  margin-left: -8.5px;
}

.header-contacts {
  --icon-size: 24px;
}
.header-contacts .dropdown-menu {
  top: 16px;
  padding: 19px 19px 19px 45px;
  font-size: 14px;
  width: 300px;
}
.header-contacts .dropdown-menu li:not(:last-child) {
  margin-bottom: 15px;
}
.header-contacts .all-addresses {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #ABABAB;
  border-top: 1px solid #E5E5E5;
  padding: 13px 0 5px;
}
.header-contacts .messengers {
  --icon-size: 16px;
}

.dropdown-menu__address {
  position: relative;
  display: flex;
  flex-direction: column;
}
.dropdown-menu__address .icon {
  position: absolute;
  left: -28px;
}
.dropdown-menu__address a {
  font-weight: 400;
  font-size: 12px;
  color: var(--color-primary);
}

.dropdown-cart-img {
  display: block;
  width: 70px;
}

#cart .ocp-scrollbar {
  max-height: 300px;
  overflow-y: auto;
}

.header-search {
  position: relative;
}

header .header-search {
  width: 346px;
}

.sticky-header .header-search {
  width: 192px;
}
.sticky-header .header-links {
  gap: 18px;
}

.header-search__input {
  border-radius: 10px;
  height: 42px;
  background: #f1f1f1;
  border: none;
  width: 100%;
  text-indent: 15px;
  transition: all 0.2s ease-in-out;
}

.header-search__input:focus {
  border-color: #852B00;
  box-shadow: 0 0 0 3.2px rgba(255, 86, 5, 0.25);
  background-color: #fff;
  outline: 0;
}

.header-search__button {
  position: absolute;
  right: 0;
  top: 0;
  --icon-size: 20px;
}

.header-account {
  --icon-size: 20px;
  justify-content: center;
}
.header-account .icon {
  position: relative;
  left: 3px;
}

.header-account-personal__title, .header-contacts__phone > a {
  line-height: 12px;
  font-weight: 700;
  display: block;
}

.header-contacts__phone > a {
  position: relative;
  z-index: 99;
}

.header-account-personal__title:hover, .header-contacts__phone > a:hover {
  color: #121313;
}

.header-contacts__phone > a .icon {
  fill: #a5a5a5;
  --icon-size: 8px;
  transition: all 0.2s ease-in-out;
}

.header-contacts__phone.show > a .icon {
  transform: rotate(180deg);
}
.header-contacts__phone.show .dropdown-menu {
  display: block;
}

.header-account-personal__links, .header-account-personal__links a, .header-contacts__link {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
}

.header-account-personal__links:hover, .header-contacts__link:hover {
  color: var(--color-primary-shade);
}

.header-account__icon, .header-search__button {
  width: 42px;
  height: 42px;
  background-color: var(--color-primary);
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: white;
}
.header-account__icon .icon, .header-search__button .icon {
  fill: var(--color-fill-with-background);
}
.header-account__icon:hover, .header-search__button:hover {
  background-color: var(--color-primary-shade);
}

.header-links, .footer-mob-links {
  --icon-size: 25px;
  gap: 28px;
  margin-right: 12px;
}
.header-links .icon, .footer-mob-links .icon {
  transition: all 0.2s ease-in-out;
  fill: #bdbdbd;
}
.header-links .icon:hover, .footer-mob-links .icon:hover {
  fill: var(--color-primary);
}
.header-links > a, .footer-mob-links > a {
  position: relative;
}
.header-links > a:last-child, .footer-mob-links > a:last-child {
  margin-right: 10px;
}
.header-links .buble, .footer-mob-links .buble {
  position: absolute;
  background: var(--color-primary);
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-fill-with-background);
  top: -15px;
  right: -14px;
  min-width: 20px;
  height: 20px;
}

.header-notify {
  position: relative;
}
.header-notify .header-notify-close {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 10px 5px;
}
.header-notify p {
  margin: auto;
}
.header-notify a {
  color: inherit;
}
.header-notify .header-notify-content {
  text-align: center;
  padding: 5px 0;
}
.header-notify .icon {
  --icon-size: 12px;
}

.link-primary {
  color: var(--color-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
}

.accordion-button.no-children a {
  display: block;
  width: 100%;
}
.accordion-button.no-children::after {
  background: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: unset;
}
.accordion-button:not(.collapsed) {
  background-color: unset;
  color: var(--color-primary);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

#mobile_menu_links .messengers {
  --icon-size: 16px;
}

.accordion-body {
  background: #E5E5E5;
}

.search-icon {
  fill: var(--color-fill-with-background);
}

.mobile-search {
  position: fixed;
  top: 0;
  z-index: 11;
  overflow-x: hidden;
  padding: 5px 12px;
  display: flex;
  background: #F5F5F5;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-primary);
  visibility: hidden;
  transform: translateY(-100%);
  transition: 0.5s ease-in-out;
}
.mobile-search.show {
  visibility: visible;
  transform: translateY(0);
}
.mobile-search:has(.ocp-live-search.show) {
  overflow-x: visible;
}
.mobile-search input {
  border-radius: 10px;
  height: 42px;
  background: #d9d9d9;
  border: none;
  width: calc(100vw - 1.5rem);
  text-indent: 15px;
  transition: ease-in 0.6s;
  opacity: 0;
  transform: translateX(100%);
  position: absolute;
}
.mobile-search > button {
  width: 42px;
  height: 42px;
  background-color: var(--color-primary);
  border-radius: 10px;
  appearance: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: white;
  transition: opacity 0.6s;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.mobile-search > button .icon {
  --icon-size: 22px;
}
.mobile-search .live-search-container {
  width: 100%;
  top: 6px;
}
.mobile-search .close-icon {
  display: none;
  rotate: 45deg;
}
.mobile-search.show-mobile-search input {
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
}
.mobile-search.show-mobile-search > button {
  opacity: 1;
}
.mobile-search.show-mobile-search .search-icon {
  display: none;
}
.mobile-search.show-mobile-search .close-icon {
  display: block;
}

.mobile-search__logo {
  max-width: 250px;
  height: 50px;
}
.mobile-search__logo img {
  max-height: 100%;
}

#cart .dropdown-menu {
  width: 400px;
}
#cart .dropdown-menu .dropdown-menu li:first-child {
  max-height: 300px;
  overflow-y: auto;
}
#cart .dropdown-menu button .icon {
  fill: #000000;
}
#cart .dropdown-menu button .icon:hover {
  fill: var(--color-primary);
}

.dropdown-cart-footer-buttons {
  margin-top: 20px;
  flex-wrap: wrap;
}
.dropdown-cart-footer-buttons a {
  padding: 10px 20px;
  width: 100%;
}

.dropdown-cart-footer-total, .dropdown-cart-footer-buttons {
  justify-content: space-between;
}

.dropdown-cart-footer {
  padding: 15px 20px 10px;
}

.dropdown-cart-footer-buttons a:first-child {
  margin-bottom: 15px;
}

.dropdown-cart-footer-buttons a span {
  margin-left: 15px;
}

#top-menu {
  background: var(--color-primary);
  z-index: 5;
  position: relative;
}
#top-menu .menu-icon {
  width: 24px;
}
#top-menu .has-children {
  position: relative;
}
#top-menu .has-children > a {
  padding-right: 21px;
  cursor: pointer;
}
#top-menu .has-children .icon {
  --icon-size: 12px;
  position: absolute;
  top: 26px;
  right: 4px;
  fill: var(--color-fill-with-background);
  transition: 0.2s ease-in-out;
}
#top-menu .has-children:hover .icon {
  rotate: 180deg;
}
#top-menu .top-menu__row {
  height: 60px;
  position: relative;
  flex-wrap: nowrap;
}

.top-menu__main .icon-burger-x {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.top-menu__main .icon-burger-x span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-fill-with-background);
  left: 0;
  transition: 0.25s ease-in-out;
}
.top-menu__main .icon-burger-x span:nth-child(1) {
  top: 3px;
}
.top-menu__main .icon-burger-x span:nth-child(2), .top-menu__main .icon-burger-x span:nth-child(3) {
  top: 11px;
}
.top-menu__main .icon-burger-x span:nth-child(4) {
  top: 19px;
}
.top-menu__main .top-menu-button.active .icon-burger-x span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.top-menu__main .top-menu-button.active .icon-burger-x span:nth-child(2) {
  transform: rotate(45deg);
}
.top-menu__main .top-menu-button.active .icon-burger-x span:nth-child(3) {
  transform: rotate(-45deg);
}
.top-menu__main .top-menu-button.active .icon-burger-x span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.top-menu__main .top-menu-button.active > .icon {
  transform: rotate(180deg);
}
.top-menu__main .main-category-name {
  font-size: 30px;
  line-height: 1;
  padding-bottom: 28px;
  color: #ABABAB;
}

.top-menu-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0 16px;
  background: var(--color-primary-shade);
}
.top-menu-button span {
  color: var(--color-fill-with-background);
  font-weight: bold;
}
.top-menu-button .icon {
  --icon-size: 16px;
  fill: var(--color-fill-with-background);
  transition: 0.2s ease-in-out;
}

.top-menu__block {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  min-height: 300px;
  max-height: 70vh;
  background-color: white;
  z-index: 15;
  box-shadow: 0 12px 30px -15px rgba(61, 72, 81, 0.75);
}
.top-menu__block ul {
  width: 305px;
  max-height: 70vh;
  margin-bottom: 0;
  border-right: 1px solid #ABABAB;
}
.top-menu__block ul .nav-link {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-menu__block ul li.active .category-children {
  display: block;
}
.top-menu__block ul li.active, .top-menu__block ul li:hover {
  background: #F3F3F3;
  box-shadow: inset 3px 0 0 var(--color-primary);
}
.top-menu__block .category-children {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  width: calc(100% - 270px);
  height: 100%;
  display: none;
}
.top-menu__block .btn-children {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #000;
  margin-right: 14px;
  -webkit-transition: color 0.25s cubic-bezier(0.4, 0, 0.21, 1.1);
  -o-transition: color 0.25s cubic-bezier(0.4, 0, 0.21, 1.1);
  transition: color 0.25s cubic-bezier(0.4, 0, 0.21, 1.1);
  text-decoration: none;
}
.top-menu__block .btn-children:hover {
  color: var(--color-primary);
}
.top-menu__block .category-children .dropdown-category a {
  font-size: 14px;
  color: #4e4e4e;
}
.top-menu__block .category-children .dropdown-category a:hover {
  color: var(--color-primary);
}

.sticky-header .top-menu__main {
  height: 60px;
  width: 160px;
}
.sticky-header .top-menu__main .icon {
  display: none;
}
.sticky-header .top-menu__block {
  left: 0;
}

#top-menu .top-menu__main, .top-menu__block ul {
  width: 250px;
}

.top-menu__info {
  display: flex;
  align-items: center;
  width: auto;
  margin: 0;
  position: relative;
}
.top-menu__info .children {
  padding: 0;
  position: absolute;
  top: 100%;
  background-color: #ffffff;
  display: none;
  box-shadow: 0 12px 30px -15px rgba(61, 72, 81, 0.75);
  min-width: 100%;
  max-height: 80vh;
}
.top-menu__info .children a {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  padding: 16px;
}
.top-menu__info .children a:hover {
  background: #F3F3F3;
  box-shadow: inset 3px 0 0 var(--color-primary);
  color: #000000;
}
.top-menu__info li {
  list-style-type: none;
  height: 100%;
  white-space: nowrap;
  position: relative;
}
.top-menu__info li.hidden-menu {
  float: right;
  position: relative;
  display: none;
  order: 100;
}
.top-menu__info li.hidden-menu .hidden-menu__list .children {
  position: unset;
  box-shadow: none;
}
.top-menu__info .show .children {
  display: block;
}
.top-menu__info a {
  display: flex;
  align-items: center;
  color: var(--color-fill-with-background);
  font-weight: bold;
  height: 100%;
  padding: 0 16px;
  text-decoration: none;
  position: relative;
}
.top-menu__info a:hover {
  color: var(--color-fill-with-background);
  background: var(--color-primary-shade);
}
.top-menu__info a:not(:first-child):after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  left: -1px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.75;
}

.footer-mobile-menu a {
  position: absolute;
  background-color: var(--color-primary);
  width: 100%;
  height: 57px;
  bottom: -9px;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-mobile-menu a .icon {
  width: 40px;
  height: 30px;
}

.footer-mob-links {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.footer-mob-links a:last-child {
  margin-right: 0;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #ffffff;
  overflow: auto;
  transition: all 0.2s linear;
  transform: translateY(-100%);
  padding: 10px 10px 25px;
}
.mobile-menu .accordion-button {
  padding: 1rem 0;
}
.mobile-menu.active {
  height: calc(100% - 45px);
  transform: translateY(0%);
}
.mobile-menu-header {
  background: var(--color-primary);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 8fr 1fr;
  align-items: center;
  cursor: pointer;
}
.mobile-menu-header__inner {
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
.mobile-menu-header__inner.active {
  display: flex;
}
.mobile-menu-header .icon {
  --icon-size: 16px;
  fill: white;
  transition: 0.2s ease-in-out;
}
.mobile-menu-header__title {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}
.mobile-menu-header__toggle {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu-header__toggle--inner {
  width: 20px;
  height: 2px;
  background: #ffffff;
}
.mobile-menu-header__toggle::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background: #ffffff;
  top: 5px;
  transition: all 0.2s linear;
}
.mobile-menu-header__toggle::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background: #ffffff;
  top: 17px;
  transition: all 0.2s linear;
}
.mobile-menu-header__toggle.toggled .mobile-menu-header__toggle--inner {
  display: none;
}
.mobile-menu-header__toggle.toggled::before {
  transform: rotate(45deg);
  top: 12px;
}
.mobile-menu-header__toggle.toggled::after {
  transform: rotate(135deg);
  top: 12px;
}
.mobile-menu-header__arrow {
  text-align: end;
}

#mobile-menu-catalog {
  display: none;
}
#mobile-menu-catalog.active {
  display: block;
}
#mobile-menu-catalog .mobile-menu-catalog__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mobile-menu-catalog .mobile-menu-catalog__item {
  margin-bottom: 15px;
}
#mobile-menu-catalog .mobile-menu-catalog__item:last-child {
  margin-bottom: 0;
}
#mobile-menu-catalog .accordion-body.parent-has-icon {
  padding-left: 40px;
}

.mobile-menu-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.mobile-menu-header.toggled .icon {
  rotate: 180deg;
}

.mobile-menu-link-wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-link {
  padding: 12px 0;
  border-bottom: 1px solid #E5E5E5;
}
.mobile-menu-link:last-child {
  border-bottom: none;
}

.mobile-menu-address {
  margin: 20px 0 0;
  display: flex;
  gap: 10px;
}
.mobile-menu-address p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

footer {
  padding: 24px 0 40px;
}
footer .messengers {
  --icon-size: 18px;
}
footer hr {
  border-top: 2px solid #5e5f61;
}
footer .ocp-subscribe-form {
  display: flex;
  align-items: center;
  position: relative;
}
footer .ocp-subscribe-form input {
  background: #ffffff;
  height: 50px;
  text-indent: 15px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  color: #495057;
  width: 100%;
}
footer .ocp-subscribe-form input:focus {
  background: white;
  border-color: var(--color-primary);
}
footer .ocp-subscribe-form button {
  position: absolute;
  right: 0;
  background-color: var(--color-primary);
  border: none;
  --icon-size: 22px;
  fill: var(--color-fill-with-background);
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.footer-contacts > *:not(:last-child) {
  margin-bottom: 20px;
}

.footer-contacts__block {
  display: flex;
  align-items: center;
  gap: 15px;
  --icon-size: 22px;
  fill: var(--color-fill-with-background);
  height: 100%;
}
.footer-contacts__block .icon:not(.messengers .icon) {
  flex-shrink: 0;
  background-color: var(--color-primary);
  --icon-size: 30px;
  padding: 6px;
  border-radius: 10px;
}
.footer-contacts__block .phones {
  display: flex;
  flex-direction: column;
}
.footer-contacts__block a.text-white:hover {
  text-decoration: none;
  color: var(--color-primary) !important;
}
.footer-contacts__block .dropdown-toggle {
  padding: 0 0 2px 0;
}

.footer__products-categories, .footer__info-categories {
  display: none;
}

.footer-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  page-break-inside: avoid;
  break-inside: avoid;
}
.footer-categories a {
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.footer-categories a.text-small {
  line-height: 16px;
}
.footer-categories:not(.footer__title) {
  font-size: 14px;
}

.footer-mobile {
  position: fixed;
  bottom: 0;
  padding: 10px;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid var(--color-primary);
  z-index: 100;
}
.footer-mobile-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
}
.footer-mobile-menu {
  position: relative;
  margin: 0 10px;
}

.footer__bottom {
  background-color: #0b0c0e;
  padding-top: 48px;
}

.footer__title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-contacts__callback {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
}
.footer-contacts__callback:hover {
  color: var(--color-primary-shade);
}

.footer__products-categories {
  column-count: 2;
}

.footer__powered {
  border-top: 1px solid #2f3234 !important;
}

#information-contact .messengers {
  --icon-size: 18px;
}
#information-contact .contacts-title {
  font-weight: bold;
}
#information-contact .contacts-description {
  font-size: 14px;
  margin-bottom: 15px;
}

#information-sitemap .ocp-list li, #information-sitemap .ocp-list a, #information-sitemap .ocp-list div {
  margin-bottom: 15px;
}
#information-sitemap .ocp-list a {
  display: block;
}

#product {
  border-left: 1px solid #E2E2E2;
}

.product-layout {
  padding: 16px;
  position: relative;
  z-index: 4;
  border-radius: 0;
  border: none;
  border-right: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}
.product-layout:not(.product-set-item)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  transition: transform 0.3s ease;
}
.product-layout .card-footer {
  position: relative;
}
.product-layout .card-footer__inner {
  width: 100%;
  position: absolute;
  top: 10px;
}
.product-layout .card-header {
  position: relative;
  padding: 0;
  border: 0;
  padding-bottom: 24px;
  background-color: transparent;
}
.product-layout .buttons {
  top: 0;
}
.product-layout .card-body {
  padding: 0;
  border: none;
}
.product-layout .card-title {
  margin-bottom: 10px;
  line-height: 1;
}
.product-layout .card-title a {
  font-size: 16px;
  font-weight: 700;
  color: #0e0e0e;
}
.product-layout .card-title a:hover {
  text-decoration: underline;
}
.product-layout .image.no-in-stock {
  opacity: 0.2;
}
.product-layout .rating-li .icon {
  --icon-size: 14px;
}
.product-layout .product-attributes {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.product-layout .product-attributes__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-layout .product-attributes__block div:nth-child(2) {
  text-align: end;
}
.product-layout .card-footer {
  padding: 0;
  background-color: #ffffff;
  border: none;
}
.product-layout .card-footer .btn-default {
  width: 100%;
  background: #000000;
  color: #FFFFFF;
}
.product-layout .card-footer:not(.product-list .card-footer) {
  display: none;
}
.product-layout .swiper-overlay-pagination {
  position: absolute;
  height: calc(100% + 12px);
  width: 100%;
  top: -12px;
  display: flex;
  z-index: 2;
}
.product-layout .swiper-overlay-pagination .swiper-pagination-block {
  width: 33%;
  display: flex;
  align-items: flex-end;
}
.product-layout .swiper-overlay-pagination .swiper-pagination-block:hover:after {
  opacity: 1;
}
.product-layout .swiper-overlay-pagination .swiper-pagination-block:after {
  background-color: var(--color-primary);
  content: "";
  display: block;
  flex-grow: 1;
  margin: 0 1px 2px;
  height: 2px;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 4;
}
.product-layout .swiper-pagination-bullet {
  display: none;
}
.product-layout .product-quantity {
  margin-bottom: 15px;
}
.product-layout .button-quick-order {
  border: 1px solid #e5e5e5;
}
.product-layout .price-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 16px;
  row-gap: 15px;
}
.product-layout .countdown {
  margin-bottom: 10px;
}
.product-layout .swiper-slide {
  transform: none !important;
}

.button-cart-disabled {
  background-color: #8e8e8e !important;
  cursor: auto !important;
}
.button-cart-disabled .icon {
  fill: white;
}

.price-new {
  color: #c11111;
}

.price, .price-new {
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
}

.price-old {
  color: #7d8698;
  font-size: 14px;
  text-decoration: line-through;
}

.swiper-slide .product-layout {
  border-right: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
  height: 100%;
}

.product-layout .btn-cart, .ocp-live-search .btn-cart, .product-small-card .btn-cart {
  background-color: var(--color-primary);
  width: auto;
  border-radius: 10px;
  padding: 8px;
}
.product-layout .btn-cart .icon, .ocp-live-search .btn-cart .icon, .product-small-card .btn-cart .icon {
  --icon-size: 26px;
  fill: var(--color-fill-with-background);
}
.product-layout .btn-cart:hover, .ocp-live-search .btn-cart:hover, .product-small-card .btn-cart:hover {
  background-color: var(--color-primary-shade);
}

.price-block .ms-3 {
  margin: 0 !important;
}

.product-set-item {
  transition: box-shadow 0.35s ease;
  transform: none !important;
}
.product-set-item.product-layout {
  z-index: unset;
  height: auto;
}
.product-set-item:not(:first-child)::before {
  content: "";
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='12' width='2' height='26' fill='black'/%3E%3Crect x='26' y='12' width='2' height='26' transform='rotate(90 26 12)' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 30px);
  width: 40px;
  height: 40px;
  background-size: 20px 20px;
  left: -20px;
}

.product-list .card-footer__inner {
  position: unset;
}

.categories-item {
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  height: 126px;
}

.categories-item:hover {
  background-color: #ebebeb;
}

.subcategories-grid .categories-item {
  border: 1px solid #fff;
}

.ocp-filter-pages {
  display: flex;
  overflow-x: auto;
}

.ocp-filter-page {
  background-color: #bdbdbd;
  border-radius: 8px;
  padding: 6px 12px;
  color: #ffffff;
  white-space: nowrap;
}
.ocp-filter-page:hover {
  background-color: var(--color-primary);
  color: var(--color-fill-with-background);
}

.row-options .dropdown-toggle {
  font-size: 14px;
}
.row-options .dropdown-toggle::after {
  border-top-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.row-options .icon {
  --icon-size: 16px;
}
.row-options button {
  border: none;
}

.products-row {
  border-top: 1px solid #f1f1f1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

[id^=column-] .products-row {
  grid-template-columns: 1fr;
}

.dropdown-sort .dropdown-menu {
  padding: 0;
}
.dropdown-sort .dropdown-menu .dropdown-item.active {
  background-color: var(--color-primary);
  color: var(--color-fill-with-background);
}
.dropdown-sort .dropdown-menu ul {
  margin: 0;
}

.row-view-buttons button.active .icon {
  fill: var(--color-primary);
}

#product-category .pagination {
  margin-bottom: 0;
}

.product-block #button-cart {
  background-color: var(--color-primary);
  color: var(--color-fill-with-background);
}
.product-block #button-cart:hover {
  background-color: var(--color-primary-shade);
}
.product-block #button-cart .icon {
  --icon-size: 28px;
  fill: var(--color-fill-with-background);
  position: absolute;
  left: 20px;
}
.product-block .button-quick-order {
  background-color: #000000;
  color: #ffffff;
}
.product-block .button-quick-order:hover {
  background-color: #2a2a2a;
}
.product-block #button-cart, .product-block .button-quick-order {
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
  font-size: 18px;
  height: 50px;
}
.product-block .ocp-one-click-input {
  padding: 0;
  border: none;
  height: 50px;
  text-indent: 20px;
  font-size: 24px;
}
.product-block .ocp-one-click-add-button {
  height: 50px;
  -webkit-appearance: none;
}
.product-block .ocp-one-click-add-button:hover {
  background-color: #000000;
  color: #ffffff;
}
.product-block .product-block__left {
  position: sticky;
  top: 75px;
}
.product-block .thumbnails .swiper-nav .swiper-slide {
  border: 1px solid #D9D9D9;
}
.product-block .thumbnails .swiper-nav .swiper-slide.swiper-slide-thumb-active {
  border: 1px solid var(--color-primary);
}
.product-block #ocp-product-cheaper {
  font-size: 14px;
  border-bottom: 1px dotted;
  position: absolute;
  white-space: nowrap;
}
.product-block .swiper-button {
  position: absolute;
}
.product-block .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-block .swiper-nav {
  height: 500px;
  width: 80px;
  flex-shrink: 0;
}
.product-block .swiper-nav .swiper-slide {
  cursor: pointer;
}
.product-block .buttons {
  top: 40px;
}
.product-block .product-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 8px;
}
.product-block .one-click-wrapper input {
  background: #F1F1F1;
  border-radius: 30px !important;
  margin-right: 15px;
}
.product-block .price, .product-block .price-new {
  font-size: 40px;
}
.product-block .price-old {
  font-size: 16px;
}
.product-block .img-option {
  width: 37px;
  height: 37px;
  border: 1px solid #c4c4c4;
  border-radius: 50%;
  position: relative;
  padding: 0;
  letter-spacing: 0;
  word-spacing: 0;
  transition: border 0.25s cubic-bezier(0.4, 0, 0.21, 1.1);
  cursor: pointer;
}
.product-block .img-option span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
}
.product-block .img-option .icon {
  top: 50%;
  left: 50%;
  margin: 0.5px;
  fill: #fff;
  --icon-size: 13px;
  visibility: hidden;
  transform: translate(-50%, -50%);
}
.product-block .img-option input:checked ~ span .icon {
  visibility: visible;
}
.product-block .product__values {
  padding-bottom: 19px;
  margin-bottom: 19px;
  border-bottom: 1px solid #E2E2E2;
  font-size: 14px;
  column-gap: 20px;
}
.product-block .product__values > div:first-child {
  padding-right: 16px;
}
.product-block .buy-block {
  background: #F1F1F1;
  padding: 22px;
  position: relative;
}
.product-block .product-quantity {
  background: #ffffff;
  height: 50px;
}
.product-block .product-quantity input {
  font-size: 20px;
  font-weight: 500;
}
.product-block .product-quantity .icon {
  flex-shrink: 0;
}
.product-block .product-quantity button:first-of-type {
  margin-left: 14px;
}
.product-block .product-quantity button:last-of-type {
  margin-right: 14px;
}
.product-block .button-information {
  position: absolute;
  top: 10px;
  right: 10px;
  --icon-size: 30px;
}
.product-block .button-information.show .button-information__inner {
  display: block;
}
.product-block .button-information__inner {
  position: absolute;
  right: 0;
  width: 150px;
  background-color: #ffffff;
  padding: 10px;
  z-index: 2;
  display: none;
}
.product-block .button-information__inner :before {
  width: 0;
  height: 0;
  border-right: 0 solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
  content: " ";
  position: absolute;
  right: 16px;
  bottom: 100%;
}
.product-block .button-information__block:not(:last-child) {
  margin-bottom: 16px;
}

#review .rating-summary-wrapper .btn-dark {
  border-radius: 0;
  border: 0;
  background-color: #000;
  padding: 20px;
  --icon-size: 18px;
}
#review .rating-summary-wrapper .icon {
  --icon-size: 38px;
}
#review .reviews-list {
  width: 100%;
}
#review .reviews-list .icon {
  --icon-size: 20px;
}
#review .review-item:not(:last-child) {
  margin-bottom: 16px;
}
#review .review-item {
  background-color: #f7f7f7;
}
#review .review-item-header {
  padding: 20px 20px 26px 38px;
}
#review .review-item-info {
  padding-top: 10px;
}
#review .review-item-info-date {
  font-size: 12px;
  line-height: 1.1;
  color: #8e8e8e;
}
#review .review-item-body {
  padding: 0 19px 50px 38px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.31;
  color: #525252;
}

.rating-area {
  --icon-size: 38px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rating-area > input:checked + label:hover .icon.user-rating, .rating-area > input:checked + label:hover ~ label .icon.user-rating, .rating-area > input:checked ~ label:hover .icon.user-rating, .rating-area > input:checked ~ label:hover ~ label .icon.user-rating, .rating-area > label:hover ~ input:checked ~ label .icon.user-rating {
  fill: #faad3d;
}

.rating-area:not(:checked) > label:hover .icon.user-rating, .rating-area:not(:checked) > label:hover ~ label .icon.user-rating {
  fill: #faad3d;
}

.rating-area:not(:checked) > label {
  cursor: pointer;
}

.rating-area:not(:checked) > label .icon.user-rating {
  fill: #d7d7d7;
}

.rating-area > input:checked ~ label .icon.user-rating {
  fill: #faad3d;
}

.product-tabs.nav-tabs a {
  border: 0;
  font-size: 16px;
  line-height: unset;
}
.product-tabs.nav-tabs a.active {
  color: var(--color-fill-with-background);
  background-color: var(--color-primary);
  border-radius: 10px;
}

.quantity-price-block {
  width: 100%;
}

#product-product .nav-tabs {
  border-bottom: 1px solid #f1f1f1;
}
#product-product .nav-tabs a {
  white-space: nowrap;
}
#product-product .swiper-button {
  flex-shrink: 0;
}
#product-product .product-icon {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 15%;
  flex-shrink: 0;
}
#product-product .product-icon__image {
  font-size: 30px;
  color: #000000;
}
#product-product .product-icon__header {
  font-weight: 500;
  font-size: 16px;
}
#product-product .product-icon__text {
  font-weight: 400;
  line-height: 19px;
  font-size: 14px;
  color: #989898;
}
#product-product .product-sets__items {
  display: flex;
  flex: 1 1 auto;
}
#product-product .product-sets__items .image {
  text-align: center;
}
#product-product .product-sets__items .price > * {
  display: block;
}
#product-product .product-sets__result-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-left: -1px;
}
#product-product .product-sets__result-wrapper .price, #product-product .product-sets__result-wrapper .price-new {
  font-size: 20px;
}
#product-product .product-sets__result-wrapper .price-old {
  font-size: 18px;
}
#product-product .product-set-result-total {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-set-layout {
  margin: 0 -1px -1px 0;
}
.product-set-layout img {
  max-width: 100%;
}

.attributes-preview {
  margin-bottom: 32px;
  border-bottom: 1px solid #E2E2E2;
}
.attributes-preview #btn-specs {
  padding: 5px 0 0 5px;
  position: relative;
  top: 9.6px;
  background-color: #ffffff;
}

.attribute-group-name {
  font-size: 20px;
  font-weight: 500;
}

.attributes-block__name {
  flex: 1 1 auto;
  border-bottom: 1px dotted #CCC;
  padding-right: 15px;
  font-size: 14px;
}
.attributes-block__name span {
  position: relative;
  top: 3px;
  background: white;
}

.attributes-block__text {
  color: #000000;
  position: relative;
  top: 3px;
  font-size: 14px;
}

.product-options .checkboxes {
  column-gap: 48px;
  row-gap: 16px;
}

.categories-list-children {
  display: none;
}
.categories-list-children.active {
  display: block;
}

.categories-list .list-group-item {
  border: none;
  padding: 12px 16px;
  color: #0e0e0e;
}
.categories-list .list-group-item .icon {
  --icon-size: 12px;
  fill: #000000;
  transition: 0.25s ease;
}
.categories-list .list-group-item:hover, .categories-list .list-group-item.active {
  background-color: var(--color-primary);
  color: var(--color-fill-with-background);
}
.categories-list .list-group-item:hover .icon, .categories-list .list-group-item.active .icon {
  fill: var(--color-fill-with-background);
}

.shevron-rotate {
  transform: rotate(180deg) !important;
}

.pagination li {
  position: relative;
  border-radius: 4px;
  display: block;
  text-align: center;
  width: 42px;
  height: 42px;
  line-height: 42px;
  margin-left: -1px;
  color: #2f3640;
  text-decoration: none;
  transition: 0.3s;
}
.pagination li a, .pagination li span {
  font-weight: bold;
}
.pagination li.active {
  background-color: var(--color-primary);
  color: var(--color-fill-with-background);
}
.pagination li:not(.active):hover {
  fill: var(--color-primary);
}
.pagination li:first-child .icon, .pagination li:last-child .icon {
  margin: -3px;
}
.pagination li:first-child .icon, .pagination li:nth-child(2) .icon {
  transform: rotate(180deg);
}
.pagination .icon {
  --icon-size: 10px;
}

.product-stickers-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  position: absolute;
  z-index: 10;
  left: 0;
}

.product-sticker-item {
  padding: 5px 11px;
  font-size: 12px;
}

/* advantages */
.advantages-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
}

.advantages-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.advantages-item-icon {
  max-width: 52px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 52px;
  flex: 0 0 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.advantages-item-icon img {
  position: relative;
  top: 2px;
}

.advantages-item-content {
  padding-left: 20px;
  padding-right: 15px;
}

.advantages-item-title {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.15;
}

.advantages-item-title a {
  text-decoration: none;
}

.advantages-item-desc {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  margin-top: 6px;
}

.advantages-item-desc a {
  text-decoration: none;
}

.advantages-item-icon i {
  font-size: 46px;
}

@media (max-width: 992px) {
  .advantages {
    margin-left: -12px;
    margin-right: -12px;
  }
  .advantages-inner {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 15px;
  }
  .advantages-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    max-width: 200px;
  }
}
#ocp-blog-category .blog-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
#ocp-blog-category .blog-row .blog-item {
  position: relative;
  box-shadow: 0px 45px 58px -18px rgba(0, 0, 0, 0.1);
}
#ocp-blog-category .blog-row .blog-item:hover .blog-item-button-wrapper {
  display: block;
}

.blog-module .blog-row {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

[id^=column-] .blog-row {
  grid-template-columns: 1fr;
}

.blog-item-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 270px;
  background-color: #f5f5f5;
}
.blog-item-image.full img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.blog-item-image img {
  max-width: 100%;
}

.blog-description {
  padding-bottom: 15px;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 30px;
}

.blog-item-col:nth-child(2) {
  padding: 16px;
}

.blog-item-link {
  display: block;
  color: #0e0e0e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 10px;
}
.blog-item-link:hover {
  color: var(--color-primary);
}

.blog-item-description {
  line-height: 1.2;
}

.blog-item-date {
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.article-date {
  position: relative;
  font-size: 12px;
  color: #7d8698;
}

.tags .tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  white-space: nowrap;
  gap: 5px;
  margin-bottom: 10px;
}
.tags span {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #8B8B8B;
}

.tags-item {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 6px 9px;
  line-height: 0;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.25s ease;
}
.tags-item:hover {
  border-color: var(--color-primary);
}
.tags-item:hover span {
  color: var(--color-primary);
}

.blog-item-button-wrapper {
  position: absolute;
  bottom: -50px;
  display: none;
  width: 100%;
  left: 0;
  padding: 0 16px 16px;
  z-index: 10;
  box-shadow: 0px 45px 58px -18px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.blog-item-button {
  background: #FFFFFF;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  padding: 13px;
  font-weight: 400;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.blog-item-button:hover {
  color: var(--color-primary-shade);
  border-color: var(--color-primary-shade);
}

/* Сопутствующие товары */
.product-small-card {
  padding: 20px;
  border: 1px solid #e5e5e5;
  height: 100%;
}
.product-small-card .card-left {
  padding-right: 16px;
  flex-shrink: 0;
}
.product-small-card .card-right {
  flex: 1 1 auto;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.product-small-card .card-right .product-small-card-title {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.15;
  color: #000;
  margin: 0 0 4px 0;
}
.product-small-card .card-right .product-small-card-title a {
  color: #000;
}
.product-small-card .product-small-card-bottom {
  display: flex;
  justify-content: space-between;
}
.product-small-card .prices {
  display: flex;
  flex-direction: column;
}
.product-small-card .btn-cart {
  font-weight: 500;
  font-size: 13px;
  flex-shrink: 0;
}
.product-small-card .price {
  color: #000;
  font-size: 16px;
  line-height: 1.14;
  white-space: nowrap;
}
.product-small-card .price-new {
  margin-right: 13px;
}

.swiper-article-related-products {
  position: relative;
}
.swiper-article-related-products .swiper-button {
  position: relative;
  top: -20px;
}
.swiper-article-related-products .swiper-buttons {
  position: absolute;
  z-index: 2;
  width: 100%;
  justify-content: space-between;
  top: 50%;
  margin: 0;
}
.swiper-article-related-products .swiper-buttons .swiper-button-prev {
  left: -20px;
}
.swiper-article-related-products .swiper-buttons .swiper-button-next {
  right: -20px;
}
.swiper-article-related-products .icon {
  --icon-size: 16px;
}

.blog-comment-customer {
  background-color: #f7f7f7;
  padding: 19px 19px 50px 38px;
}

.blog-comment-customer, .blog-comment-admin {
  margin-bottom: 15px;
}

.blog-comment-name {
  font-weight: 400;
  color: #000;
}

.blog-comment-date {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.1;
  color: #8e8e8e;
}

.blog-comment {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.31;
  color: #525252;
}

.reviews-slider .swiper-slide {
  height: auto;
}
.reviews-slider .swiper-slide > a {
  display: block;
  height: 100%;
}
.reviews-slider .reviews-slider-item {
  padding: 24px 22px;
  height: 100%;
  background-color: #f7f7f7;
}
.reviews-slider .review-item {
  display: flex;
  flex-wrap: wrap;
}
.reviews-slider .review-item-info-name {
  color: #000;
}
.reviews-slider .review-item-product {
  width: 100%;
  flex-shrink: 0;
}
.reviews-slider .review-item-body {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.31;
  color: #525252;
}
.reviews-slider .review-item-product-image {
  height: 154px;
}
.reviews-slider .review-item-product-title {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #525252;
  margin-top: 10px;
}
.reviews-slider .rating-li {
  --icon-size: 15px;
}
.reviews-slider .review-item-content {
  width: 100%;
}

[id^=column-] .reviews-slider .review-item-product {
  width: 100%;
}
[id^=column-] .reviews-slider .review-item-content {
  padding-left: 0;
}
[id^=column-] .reviews-slider .review-item {
  flex-wrap: wrap;
}
[id^=column-] .reviews-slider .review-item-product-image {
  height: 154px;
}

.category-wall-grid {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  overflow-y: hidden;
}
.category-wall-grid:not(.category-wall-grid-1) .category-wall-item {
  flex: 0 0 calc(100% - 80px);
}

[id^=column-] .category-wall-grid {
  display: flex;
  flex-wrap: wrap;
}
[id^=column-] .category-wall-grid:not(.category-wall-grid-1) .category-wall-item {
  flex: 0 0 100%;
}
[id^=column-] .category-wall-grid .category-wall-item-img {
  max-height: none;
}

@media (min-width: 576px) {
  .category-wall-grid {
    display: grid;
    overflow-x: hidden;
  }
  .category-wall-grid.category-wall-grid-2 {
    display: flex;
  }
  .category-wall-grid.category-wall-grid-2 .category-wall-item {
    flex: 0 0 50%;
  }
  .category-wall-grid-3, .category-wall-grid-5, .category-wall-grid-6, .category-wall-grid-7, .category-wall-grid-9 {
    grid-template-columns: 1fr 1fr;
  }
  .category-wall-grid-3 .category-wall-item:nth-child(1), .category-wall-grid-5 .category-wall-item:nth-child(1), .category-wall-grid-6 .category-wall-item:nth-child(1), .category-wall-grid-7 .category-wall-item:nth-child(1), .category-wall-grid-9 .category-wall-item:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    max-height: 100%;
  }
  .category-wall-grid-3 .category-wall-item:nth-child(1) .category-wall-item-img, .category-wall-grid-5 .category-wall-item:nth-child(1) .category-wall-item-img, .category-wall-grid-6 .category-wall-item:nth-child(1) .category-wall-item-img, .category-wall-grid-7 .category-wall-item:nth-child(1) .category-wall-item-img, .category-wall-grid-9 .category-wall-item:nth-child(1) .category-wall-item-img {
    max-height: 380px;
  }
  .category-wall-grid-4, .category-wall-grid-8 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .category-wall-grid-3, .category-wall-grid-5, .category-wall-grid-6, .category-wall-grid-7, .category-wall-grid-9 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .category-wall-grid-3 .category-wall-item:nth-child(2),
.category-wall-grid-3 .category-wall-item:nth-child(3), .category-wall-grid-5 .category-wall-item:nth-child(2),
.category-wall-grid-5 .category-wall-item:nth-child(3), .category-wall-grid-6 .category-wall-item:nth-child(2),
.category-wall-grid-6 .category-wall-item:nth-child(3), .category-wall-grid-7 .category-wall-item:nth-child(2),
.category-wall-grid-7 .category-wall-item:nth-child(3), .category-wall-grid-9 .category-wall-item:nth-child(2),
.category-wall-grid-9 .category-wall-item:nth-child(3) {
    grid-column-start: 3;
    grid-column-end: 5;
  }
  .category-wall-grid-3 .category-wall-item:nth-child(5), .category-wall-grid-5 .category-wall-item:nth-child(5), .category-wall-grid-6 .category-wall-item:nth-child(5), .category-wall-grid-7 .category-wall-item:nth-child(5), .category-wall-grid-9 .category-wall-item:nth-child(5) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
  .category-wall-grid-6 .category-wall-item:nth-child(2),
.category-wall-grid-6 .category-wall-item:nth-child(3), .category-wall-grid-7 .category-wall-item:nth-child(2),
.category-wall-grid-7 .category-wall-item:nth-child(3) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .category-wall-grid-6 .category-wall-item:nth-child(5), .category-wall-grid-7 .category-wall-item:nth-child(5) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .category-wall-grid-7 .category-wall-item:nth-child(1), .category-wall-grid-9 .category-wall-item:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: auto;
    grid-row-end: auto;
  }
  .category-wall-grid-7 .category-wall-item:nth-child(1) .category-wall-item-img, .category-wall-grid-9 .category-wall-item:nth-child(1) .category-wall-item-img {
    max-height: 210px;
  }
  .category-wall-grid-7 .category-wall-item:nth-child(7), .category-wall-grid-9 .category-wall-item:nth-child(7) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
  .category-wall-grid-9 .category-wall-item:nth-child(1),
.category-wall-grid-9 .category-wall-item:nth-child(2),
.category-wall-grid-9 .category-wall-item:nth-child(5),
.category-wall-grid-9 .category-wall-item:nth-child(7),
.category-wall-grid-9 .category-wall-item:nth-child(3) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}
@media (min-width: 992px) {
  .category-wall-grid-5, .category-wall-grid-7 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .category-wall-grid-5 .category-wall-item:nth-child(2),
.category-wall-grid-5 .category-wall-item:nth-child(3), .category-wall-grid-7 .category-wall-item:nth-child(2),
.category-wall-grid-7 .category-wall-item:nth-child(3) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .category-wall-grid-5 .category-wall-item:nth-child(5), .category-wall-grid-7 .category-wall-item:nth-child(5) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .category-wall-grid-7 .category-wall-item:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    max-height: 100%;
  }
  .category-wall-grid-7 .category-wall-item:nth-child(1) .category-wall-item-img {
    max-height: 380px;
  }
  .category-wall-grid-7 .category-wall-item:nth-child(4),
.category-wall-grid-7 .category-wall-item:nth-child(7) {
    grid-column-start: 3;
    grid-column-end: 5;
  }
  .category-wall-grid-7 .category-wall-item:nth-child(7) {
    grid-column-start: 3;
    grid-column-end: 5;
  }
}
@media (min-width: 1200px) {
  .category-wall-grid-4, .category-wall-grid-8, .category-wall-grid-9 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .category-wall-grid-9 .category-wall-item:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    max-height: 100%;
  }
  .category-wall-grid-9 .category-wall-item:nth-child(1) .category-wall-item-img {
    max-height: 380px;
  }
}
.category-wall-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #f5f5f5;
  transition: background-color 0.35s ease;
}
.category-wall-item:hover {
  background-color: #e2e2e2;
}

.category-wall-item-body {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  padding: 20px 26px 20px 26px;
}

.category-wall-item-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.16;
  color: #000;
  margin: 0;
  padding-right: 10px;
}

.category-wall-item-img {
  object-fit: contain;
  max-height: 210px;
}

.smart-banner-wrapper .swiper-slide:hover img {
  transform: scale(1.1);
}

.slider-smart-banner-wrapper, .slider-product-wrapper {
  height: 100%;
}

.smart-banner-top {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.smart-banner-product-top {
  height: 100px;
}

.smart-banner-bottom, .smart-banner-product-top {
  position: relative;
  z-index: 2;
}

.slider-smart-banner-wrapper .smart-banner-bottom {
  height: 80px;
}

.slider-smart-banner-wrapper .slider-product-wrapper {
  overflow: hidden;
}

.slider-product-wrapper .smart-banner-bottom {
  height: 105px;
}

.smart-banner-image {
  text-align: center;
}
.smart-banner-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 1.4s cubic-bezier(0.19, 0.98, 0.65, 0.82), -webkit-transform 1.4s cubic-bezier(0.19, 0.98, 0.65, 0.82);
}

.slider-smart-banner-title, .slider-product-title {
  font-weight: 500;
}

.smart-banner-product-sticker {
  display: inline-block;
  text-align: right;
  margin: 0 5px 5px 0;
}

.smart-banner-countdown-title {
  font-size: 14px;
  line-height: 18px;
  color: #000;
  margin-bottom: 5px;
  display: none;
}

.main-page-banner {
  width: 100%;
}

.smart-banner-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.smart-banner-center .slider-smart-banner-title {
  font-size: 30px;
}
.smart-banner-center .slider-smart-banner-text {
  font-size: 20px;
}

.smart-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  margin-top: 100px;
}

.module-ocp-smart-banner .swiper-button {
  position: absolute;
}
.module-ocp-smart-banner .swiper-button-next, .module-ocp-smart-banner .swiper-button-prev {
  top: calc(50% - 30px);
}
.module-ocp-smart-banner .swiper-pagination-bullet {
  opacity: 1;
}
.module-ocp-smart-banner .swiper-slide {
  height: auto;
}
.module-ocp-smart-banner .swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.faq-list .accordeon-item-top .accordeon-item-title {
  font-size: 18px;
  transition: color 0.35s ease;
}

.accordeon-item-top {
  border-bottom: 1px solid #e5e5e5;
}

.accordeon-item-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.14;
}

.accordeon-item-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #5d5d5d;
}

.accordeon-icon {
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  display: block;
}

.accordeon-icon::after {
  transform: rotate(90deg);
}

.accordeon-icon::after,
.accordeon-icon::before {
  content: "";
  width: 18px;
  height: 1px;
  background-color: #191919;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.25s ease, background-color 0.35s ease;
}

.accordeon-icon::before {
  transform: rotate(0);
}

.accordeon-item-top:hover .accordeon-icon::after, .accordeon-item-top:hover .accordeon-icon::before {
  background-color: var(--color-primary);
}

.accordeon-item .btn-link:not(.collapsed) {
  color: var(--color-primary);
}
.accordeon-item .btn-link:not(.collapsed) .accordeon-icon::after {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
  .faq-list .accordeon-item-top .accordeon-item-title {
    font-size: 24px;
  }
}
.notify {
  align-items: center;
  width: 300px;
  padding: 15px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 9px;
  transform: translateY(-40px);
  transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
}

.notify .notify-close {
  position: absolute;
  top: 0;
  right: 0;
}

.notify-icon {
  width: 45px;
  height: 45px;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.notify-icon img {
  max-height: 100%;
}

.notify-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}

.notify-text a {
  color: #000;
}

.notify-icon .icon {
  --icon-size: 30px !important;
}

.notify-close .icon {
  --icon-size: 12px !important;
}

.module-carousel .swiper-wrapper {
  height: 130px;
}
.module-carousel .swiper-slide {
  border-right: 1px solid #f1f1f1;
  padding: 15px 0;
}

#quickviewModal .nav-tabs {
  border: none;
}
#quickviewModal .nav-tabs a {
  white-space: nowrap;
}
#quickviewModal .product-block .product-block__left {
  top: 10px;
}

.countdown {
  display: flex;
  gap: 4px;
}

.countdown-time {
  padding: 10px 4px;
  width: 32px;
  text-align: center;
  color: #000;
  background-color: #eaeaea;
  font-size: 12px;
}

.countdown-text {
  display: block;
  text-align: center;
  font-size: 10px;
  line-height: 20px;
  color: #c4c4c4;
}

.countdown-time.seconds {
  background-color: #f9e5e5;
  color: #f33737;
}

#ocp-cookie-policy {
  position: fixed;
  width: 100%;
  z-index: 9999;
  background-color: white;
}

#ocp-cookie-policy-text {
  color: #5d5d5d;
  margin-bottom: 0;
}

#ocp-cookie-policy-text a {
  color: var(--color-primary);
}

#ocp-cookie-policy-text a:hover {
  color: var(--color-primary-shade);
}

#ocp-cookie-policy-accept-button:hover {
  background-color: var(--color-primary-shade);
}

#account-login .panel-block:first-child, #affiliate-login .panel-block:first-child {
  border-right: 1px solid #f1f1f1;
}

[id^=account-] #content .wrapper, #product-compare #content .wrapper, [id^=affiliate-] #content .wrapper, #common-success #content .wrapper {
  padding: 24px;
}
[id^=account-] #content .wrapper .icon:hover, #product-compare #content .wrapper .icon:hover, [id^=affiliate-] #content .wrapper .icon:hover, #common-success #content .wrapper .icon:hover {
  fill: var(--color-primary);
  transition: all 0.2s ease-in-out;
}

[id^=account-] {
  --icon-size: 20px;
}
[id^=account-] .addresses .btn-remove .icon {
  --icon-size: 24px;
}
[id^=account-] .addresses__text {
  font-size: 14px;
}
[id^=account-] .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #dee2e6 !important;
}
[id^=account-] .btn-view-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
[id^=account-] .btn-view-overlay:hover {
  background-color: rgba(243, 243, 243, 0.3);
}
[id^=account-] .thead {
  width: inherit;
  display: none;
}
[id^=account-] .td, [id^=account-] .th, [id^=account-] .order-comments {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #000;
}
[id^=account-] .td, [id^=account-] .th {
  padding-top: 18px;
  padding-bottom: 18px;
}
[id^=account-] .table-link {
  position: relative;
  z-index: 1;
  text-decoration: none;
}
[id^=account-] .table-link:hover {
  background-color: rgba(243, 243, 243, 0.5);
}
[id^=account-] .tr {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #e5e5e5;
  flex-wrap: wrap;
}
[id^=account-] .td-title {
  font-size: 11px;
  color: #8e8e8e;
  display: block;
  margin-bottom: 6px;
}
[id^=account-] .td {
  flex: 1 1 50%;
  max-width: 50%;
}
[id^=account-] .td:nth-child(2n+1) {
  padding-right: 12px;
}
[id^=account-] .td:nth-child(2n) {
  padding-left: 12px;
}
[id^=account-] .table-details, [id^=account-] .table-billing-address {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  margin-bottom: 40px;
}
[id^=account-] .table-details .tr, [id^=account-] .table-billing-address .tr {
  border-bottom: 0;
  align-items: flex-start;
}
[id^=account-] .table-details .td:nth-of-type(1), [id^=account-] .table-billing-address .td:nth-of-type(1) {
  padding-right: 6px;
}
[id^=account-] .table-details .td, [id^=account-] .table-billing-address .td {
  flex: 1 1 50%;
  max-width: 50%;
  padding-top: 6px;
  padding-bottom: 6px;
}
[id^=account-] .table-billing-products {
  margin-bottom: 30px;
}
[id^=account-] .table-billing-products .tfooter {
  padding-top: 10px;
}
[id^=account-] .table-billing-products .tfooter .tr {
  align-items: flex-start;
}
[id^=account-] .table-billing-products .tfooter .td {
  font-family: RobotoMedium, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: #000;
  padding-top: 3px;
  padding-bottom: 3px;
}
[id^=account-] .table-billing-products .tfooter .td:nth-of-type(1) {
  flex: 0 0 calc(100% - 112px);
  max-width: calc(100% - 112px);
  text-align: right;
  padding-right: 56px;
}
[id^=account-] .table-billing-products .tfooter .td:nth-of-type(2) {
  flex: 0 0 112px;
  max-width: 112px;
  min-width: 112px;
}
[id^=account-] .table-billing-products .tfooter .tr {
  border-bottom: 0;
}
[id^=account-] .lk-wrapper h3 {
  margin: 0 0 20px 0;
}
[id^=account-] .stock {
  font-size: inherit;
}

#account-address .btn-remove {
  padding: 0;
  --icon-size: 32px;
}
#account-address .btn-remove .icon {
  fill: #8e8e8e;
  transition: fill 0.25s cubic-bezier(0.4, 0, 0.21, 1.1);
}
#account-address .btn-remove:hover .icon {
  fill: var(--color-primary);
}

#product-compare .btn-cart, #product-compare .btn-remove, #account-wishlist .btn-cart, #account-wishlist .btn-remove {
  background-color: var(--color-primary);
  border-radius: 10px;
  padding: 8px;
}
#product-compare .btn-cart .icon, #product-compare .btn-remove .icon, #account-wishlist .btn-cart .icon, #account-wishlist .btn-remove .icon {
  fill: var(--color-fill-with-background);
}
#product-compare .btn-cart .icon:hover, #product-compare .btn-remove .icon:hover, #account-wishlist .btn-cart .icon:hover, #account-wishlist .btn-remove .icon:hover {
  fill: var(--color-fill-with-background) !important;
}
#product-compare .btn-cart .icon, #account-wishlist .btn-cart .icon {
  --icon-size: 26px;
}
#product-compare .btn-remove .icon, #account-wishlist .btn-remove .icon {
  --icon-size: 24px;
}

#product-compare .btn-close, #account-wishlist .btn-close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  border: 2px solid #e5e5e5;
  border-radius: 50%;
  background: none;
  opacity: 1;
  right: 0;
}
#product-compare .btn-close .icon, #account-wishlist .btn-close .icon {
  --icon-size: 20px;
  fill: #8e8e8e;
}
#product-compare .rating-li .icon, #account-wishlist .rating-li .icon {
  --icon-size: 20px;
}
#product-compare .table td, #account-wishlist .table td {
  padding-left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
}
#product-compare .table td:last-child, #account-wishlist .table td:last-child {
  padding-right: 10px;
}
#product-compare .compare-header, #account-wishlist .compare-header {
  width: 250px;
}
#product-compare .table td.compare-attributes-header, #account-wishlist .table td.compare-attributes-header {
  font-size: 18px;
  padding-top: 50px;
}

#product-compare .table td:first-child {
  width: 200px;
}
#product-compare .table td:not(:first-child) {
  width: 250px;
}
#product-compare .table-responsive table {
  min-width: 600px;
  width: auto;
}

#checkout-cart .btn-outline-primary {
  display: inline-flex;
  align-items: center;
}
#checkout-cart .btn-outline-primary span {
  margin-left: 15px;
}
#checkout-cart .product-quantity-control .icon {
  --icon-size: 14px;
}
#checkout-cart .collapsing {
  transition: height 0s ease;
}
#checkout-cart .input-group-btn .btn-link {
  border-bottom: 1px dashed #000;
}
#checkout-cart .checkout-order-list {
  background-color: #f5f5f5;
  padding: 20px;
}
#checkout-cart .checkout-order-list .input-group,
#checkout-cart .checkout-order-list .form-horizontal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
#checkout-cart .checkout-order-list .form-group,
#checkout-cart .checkout-order-list .form-control {
  width: 100%;
}
#checkout-cart .checkout-order-list .form-horizontal {
  margin-bottom: 0;
}
#checkout-cart .checkout-order-list .panel-body {
  border: none;
  margin-bottom: 16px;
}
#checkout-cart .checkout-order-list label {
  margin-bottom: 6px;
}
#checkout-cart .checkout-order-list .btn-light {
  background-color: #e9e9e9;
  color: #949494;
  border-radius: 0;
}
#checkout-cart .checkout-order-list input,
#checkout-cart .checkout-order-list select {
  background-color: #fff;
  border: 0;
  padding: 12px 13px;
  font-size: 14px;
  font-weight: 400;
  box-shadow: none;
}
#checkout-cart .checkout-order-list .btn-primary {
  padding: 14px;
  width: 100%;
}
#checkout-cart .checkout-order-list #checkout-order-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#checkout-cart .checkout-order-list .panel-heading .btn-link {
  font-size: 15px;
  color: #8e8e8e;
}
#checkout-cart .checkout-order-list .panel-heading .btn-link:hover {
  color: #000;
}
#checkout-cart .checkout-order-list .panel-heading .btn-link:not(.collapsed) {
  color: #000;
  pointer-events: none;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #000;
}
#checkout-cart .checkout-order-list .form-control {
  appearance: none;
  border-radius: 0;
}
#checkout-cart .checkout-order-list p {
  font-size: 14px;
  color: grey;
}
#checkout-cart .panel-collapse {
  transition: height 0.35s ease;
}
#checkout-cart .cart-table-col .buttons .btn-link:not(:hover) {
  color: #8e8e8e;
  fill: #8e8e8e;
}
#checkout-cart .cart-table-col .buttons .btn-link:hover {
  fill: var(--color-primary);
}
#checkout-cart .cart-table-col .buttons .icon {
  --icon-size: 20px;
}
#checkout-cart .cart-footer .btn {
  --icon-size: 14px;
  fill: var(--color-primary);
}

.cart-table-header {
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e5e5;
}

.cart-table-header,
.cart-table-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.cart-table-col:nth-of-type(1) {
  max-width: 13.1868131868%;
  flex: 0 0 13.1868131868%;
  min-width: 116px;
  padding-left: 0;
}

.cart-table-col:nth-of-type(2) {
  max-width: 84.1758241758%;
  flex: 1 1 84.1758241758%;
}

.cart-table-col:nth-of-type(3) {
  max-width: 2.6373626374%;
  flex: 0 0 2.6373626374%;
  min-width: 30px;
  padding-right: 0;
  text-align: right;
}

.cart-table-col {
  text-align: left;
  width: 100%;
  padding: 0 6px;
  display: flex;
  align-items: flex-start;
}

.cart-table-row {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}
.cart-table-row .price {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  display: block;
  white-space: nowrap;
}

.cart-table-header,
.cart-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.cart-table-subcol > .btn-link {
  font-weight: bold;
}

.cart-table-subcol:nth-of-type(1) {
  flex: 1 1 25%;
  max-width: 25%;
  padding-right: 20px;
  padding-left: 10px;
  flex-shrink: 0;
}
.cart-table-subcol:nth-of-type(1) .btn-link {
  font-size: 18px;
}

.cart-table-subcol:nth-of-type(2) {
  flex: 1 1 30%;
  max-width: 30%;
  min-width: 112px;
}

.cart-table-subcol:nth-of-type(3) {
  flex: 1 1 25%;
  max-width: 25%;
  min-width: 112px;
}

.cart-table-subcol:nth-of-type(4) {
  flex: 1 1 auto;
  min-width: 126px;
}

.popup-cart {
  margin-bottom: 20px;
}
.popup-cart .cart-table-col .icon {
  --icon-size: 20px;
}
.popup-cart .cart-table-col .icon:hover {
  fill: var(--color-primary);
}
.popup-cart .cart-table-body {
  max-height: 35vh;
}

.popup-cart-totals, .ocp-one-click-popup {
  padding: 20px;
  background: #F1F1F1;
}

.ocp-one-click-popup {
  margin-bottom: 15px;
}
.ocp-one-click-popup .input-group {
  flex-direction: column;
  gap: 20px;
}
.ocp-one-click-popup input.form-control {
  border: none;
  width: 100%;
}
.ocp-one-click-popup button {
  border: 1px solid #000000;
  border-radius: 0;
}
.ocp-one-click-popup button:hover {
  background-color: #000000;
  color: #ffffff;
}

.popup-cart-totals {
  margin-bottom: 15px;
}

.cart-popup-footer-buttons {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
.cart-popup-footer-buttons > * {
  padding: 15px 0;
  width: 100%;
}
.cart-popup-footer-buttons .icon {
  fill: var(--color-primary);
  --icon-size: 20px;
}

#ocpPopupCartModal .cart-table-subcol:nth-of-type(1) {
  flex: 1 1 100%;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
  flex-shrink: 0;
}

.cart-table-subcol:nth-of-type(1) {
  flex: 1 1 25%;
  max-width: 25%;
  padding-right: 20px;
  padding-left: 10px;
  flex-shrink: 0;
}

@media (max-width: 1400px) {
  .cart-table-col:nth-of-type(1) {
    min-width: 106px;
  }
}
@media (max-width: 768px) {
  .cart-table-row .cart-table-subcol {
    max-width: 100%;
    width: 100%;
    flex: 1 1;
  }
}
#checkout-login .panel-block:first-child {
  border-right: 1px solid #f1f1f1;
}

.panel-body .radio label.radio-label {
  border: 2px solid #e7e7e7;
  padding: 15px;
  cursor: pointer;
}
.panel-body .radio input[type=radio]:checked ~ .radio-label {
  border: 2px solid var(--color-primary);
}
.panel-body .radio input[type=radio]:checked ~ .radio-label .form-checkout-radiobox-radio {
  border: 1px solid var(--color-primary);
}
.panel-body .radio input[type=radio]:checked ~ .radio-label .form-checkout-radiobox-radio::after {
  display: block;
  background-color: var(--color-primary);
}
.panel-body .radio .form-checkout-radiobox-radio {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  margin-right: 8px;
  align-self: flex-start;
  display: block;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  position: relative;
}
.panel-body .radio .form-checkout-radiobox-radio::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #000;
  display: none;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.panel-collapse {
  overflow: hidden;
}

#collapse-checkout-confirm tfoot td {
  border: none;
}

#product-manufacturer h2 {
  color: var(--color-primary);
}
#product-manufacturer .alph-order .btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid #D9D9D9;
  border-radius: 30px;
}
#product-manufacturer .letter-wrapper {
  width: 200px;
  margin-bottom: 8px;
}
#product-manufacturer .manufacturers-letters {
  overflow-x: auto;
}

.live-search-container {
  position: relative;
}

#header-top .ocp-live-search {
  top: 33px;
}

#header-sticky .ocp-live-search {
  top: 9px;
}

.ocp-live-search {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  z-index: 999;
  width: 100%;
  display: none;
  max-height: 65vh;
  overflow-y: auto;
}
.ocp-live-search.show {
  display: block;
}
.ocp-live-search .search-title {
  color: var(--color-primary);
}
.ocp-live-search .live-search-result-products {
  overflow-y: auto;
}
.ocp-live-search .live-search-result-products img {
  width: 42px;
  height: 42px;
}
.ocp-live-search .stock::before {
  top: 3px;
}

.swiper {
  display: flex;
  justify-content: end;
  gap: 15px;
  margin: 0;
}

.swiper-button {
  display: flex;
  border: 1px solid #e5e5e5;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  margin: 0;
  position: unset;
  background-image: none;
  background-color: transparent;
}
.swiper-button .icon {
  width: 24px;
  height: 12px;
  fill: #C5C5C5;
}
.swiper-button:after, .swiper-button:before {
  content: "";
}
.swiper-button:hover {
  border-color: var(--color-primary);
}
.swiper-button:hover .icon {
  fill: var(--color-primary);
}

.swiper-button-prev .icon {
  transform: rotate(180deg);
}

.swiper-pagination {
  width: 50% !important;
  left: 50% !important;
  transform: translateX(-50%);
}

.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.modal .modal-content {
  border-radius: 10px;
  max-height: calc(100vh - 56px);
}
.modal .modal-content .modal-body {
  overflow: auto;
}

#modal-agree button.close {
  border: none;
  background: none;
  font-size: 24px;
}

.tabs-item:hover {
  color: var(--color-primary);
}

.tabs-item.active {
  color: var(--color-fill-with-background);
  background-color: var(--color-primary);
  padding: 5px 15px;
  border-radius: 10px;
}

.tabs-preloader {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: rgba(215, 215, 215, 0.5);
}

.ocp-product-tabs .wrapper-head {
  flex-direction: row;
  align-items: center;
}
.ocp-product-tabs .wrapper-head:not(.has-slider) {
  border-bottom: none;
}
.ocp-product-tabs .tabs {
  column-gap: 15px;
  row-gap: 10px;
}
.ocp-product-tabs .tabs-item {
  white-space: nowrap;
}

.feedback-panel {
  position: fixed;
  z-index: 10;
  bottom: 60px;
  width: 69px;
  height: 69px;
}

.feedback-panel-button {
  padding: 0;
  margin: 0;
  border: 0;
  appearance: none;
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  transition: background-color 0.25s ease;
}
.feedback-panel-button .icon {
  fill: var(--color-fill-with-background);
}
.feedback-panel-button:hover {
  background-color: var(--color-primary-shade);
}

.feedback-panel-icon {
  --icon-size: 20px;
  fill: var(--color-fill-with-background);
}

.feedback-panel-main-icon {
  --icon-size: 26px;
  fill: var(--color-font-primary);
}

.feedback-panel-item {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: var(--color-primary);
  z-index: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  transform: translate(0, 0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.21, 1.1), opacity 0.25s ease, background-color 0.25s ease, -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.21, 1.1);
}
.feedback-panel-item:hover {
  background-color: var(--color-primary-shade);
}

.feedback-panel-item-link {
  width: 100%;
  height: 100%;
  display: flex;
  font-size: 0;
  line-height: 0;
  align-items: center;
  justify-content: center;
}

.feedback-panel.is-active .feedback-panel-item {
  opacity: 1;
}

.feedback-panel-left {
  left: 40px;
}

.feedback-panel-right {
  right: 40px;
}

#goTop {
  padding: 0;
  margin: 0;
  border: 0;
  appearance: none;
  display: inline-block;
  position: fixed;
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #f8f8f8;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.21, 1.1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.21, 1.1), opacity 0.25s cubic-bezier(0.4, 0, 0.21, 1.1), transform 0.3s ease-in-out, -webkit-box-shadow 0.25s cubic-bezier(0.4, 0, 0.21, 1.1), -webkit-transform 0.3s ease-in-out;
}

#goTop .icon {
  --icon-size: 10px;
  transform: rotate(180deg);
}

#goTop.is-visible {
  opacity: 1;
}

#goTop.is-upper {
  transform: translate(0, -280px);
}

.goTop-upper {
  bottom: 145px;
}

.goTop-bottom {
  bottom: 60px;
}

.goTop-left {
  left: 20px;
}

.goTop-right {
  right: 20px;
}

.btn-primary {
  background-color: var(--color-primary);
  border: none;
  color: var(--color-fill-with-background);
  font-size: 14.4px;
  font-weight: 400;
}
.btn-primary:hover {
  background-color: var(--color-primary-shade);
}
.btn-primary:active, .btn-primary:focus {
  background-color: var(--color-primary);
  color: var(--color-fill-with-background);
  border: none;
}

.btn-outline-primary {
  border: 1px solid var(--color-primary);
  font-size: 14.4px;
  font-weight: 400;
  color: var(--color-primary);
}
.btn-outline-primary:hover {
  border-color: var(--color-primary-shade);
  color: var(--color-primary-shade);
  background-color: transparent;
}
.btn-outline-primary:hover .icon {
  fill: var(--color-primary-shade);
}

.btn-default {
  color: black;
  border: 1px solid #c9c9c9;
  font-size: 100%;
  font-weight: 400;
}

.btn {
  box-shadow: none !important;
  outline: none !important;
}

a.btn-link, button.btn-link {
  text-decoration: none !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  transition: color 0.25s ease;
}

.btn-light {
  font-size: 14.4px;
  font-weight: 400;
}
.btn-light:hover {
  background-color: #f6f6f6;
}

.product-layout:has(.ocp-promo-block-wrapper) {
  padding: 0;
}
.product-layout:has(.ocp-promo-block-wrapper):hover {
  box-shadow: none !important;
}
.product-layout:has(.ocp-promo-block-wrapper):hover:before {
  transform: none !important;
  border: none !important;
  height: auto !important;
}

.product-list .ocp-promo-block-wrapper {
  width: 100%;
  flex-direction: row;
  align-items: center;
}

.ocp-promo-block-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 16px;
}

.ocp-promo-block-image {
  margin-bottom: 20px;
}

.ocp-promo-block-title {
  font-size: 20px;
}

.ocp-promo-block-text {
  font-size: 14px;
}

.ocp-promo-block-button a {
  border-radius: 10px;
}

:root {
  --color-primary: #cc0000;
  --color-primary-shade: #990000;
  --color-fill-with-background: #ffffff;
}

* {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  overflow-x: hidden;
  height: 100%;
  background: #f1f1f1;
}

a {
  text-decoration: none;
  color: inherit;
}
a.btn-link:hover {
  color: var(--color-primary-shade);
}
a:hover {
  color: var(--color-primary-shade);
}

legend {
  float: none;
}

input {
  outline: none !important;
}

.color-primary {
  color: var(--color-primary);
}

.icon {
  width: var(--icon-size);
  height: var(--icon-size);
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #e0e0e0;
  z-index: 1001;
  transition: 0.3s opacity;
}

.preloader__image {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}
.transparent-button {
  border: none;
  background-color: transparent;
  text-align: left;
  padding: 0;
}

.text-danger {
  margin-top: 5px;
  font-size: 14px;
}

.ocp-scrollbar {
  overflow-y: auto;
  scrollbar-color: #e4e4e4 #f5f5f5;
  scrollbar-width: thin;
}

.ocp-scrollbar::-webkit-scrollbar {
  width: 7px;
}

.product_icons .ocp-scrollbar::-webkit-scrollbar {
  height: 2px;
}

.ocp-scrollbar::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.ocp-scrollbar::-webkit-scrollbar-thumb {
  background-color: #e4e4e4;
}

.text-black-bold {
  color: #000000;
  font-weight: 500;
}

.text-grey {
  color: #bdbdbd;
}

.text-orange {
  color: #ff5605;
}

.text-blue {
  color: #3483b8;
}

.text-small {
  font-size: 14px;
  font-weight: 400;
}

.buttons > input, .buttons a {
  width: 100%;
}

#column-left:not([id^=account-] #column-left), #column-right:not([id^=account-] #column-right) {
  display: none;
}

.messengers {
  padding: 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.messengers.whatsapp {
  background-color: #5dc661;
}
.messengers.viber {
  background-color: #9047ca;
}
.messengers.telegram {
  background-color: #60a4f4;
}
.messengers.skype {
  background-color: #3588e8;
}

.breadcrumb {
  font-size: 14px;
  color: #7c7a7a;
  margin-top: 30px;
}

.rating-li.rating-on {
  fill: #dd942a;
}

.rating-li.rating-off {
  fill: #b5bac5;
}

.wrapper {
  background-color: white;
  box-shadow: 0 12px 30px -15px rgba(61, 72, 81, 0.75);
}

.wrapper-head {
  display: flex;
  justify-content: end;
  flex-direction: column;
  row-gap: 20px;
  padding: 24px 16px;
  min-height: 82px;
  background-color: #fff;
  border-bottom: 1px solid #f1f1f1;
}

[id^=column-] .wrapper-head {
  display: none;
}

.wrapper-head__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
.wrapper-head__controls > .swiper-pagination-horizontal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: auto;
  row-gap: 10px;
}

.wrapper-head__controls .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
}

.product-block .countdown-time {
  padding: 16px 4px;
  width: 60px;
  font-size: 18px;
}

.form-group {
  position: relative;
}

.ocp-form-control {
  width: 100%;
  background-image: linear-gradient(to top, #dcdcdc 1px, rgba(255, 86, 5, 0) 1px), linear-gradient(to top, #bdbdbd 1px, rgba(189, 189, 189, 0) 1px);
  background-size: 100% 100%, 100% 100%;
  border: none !important;
  outline: none !important;
  padding: 5px 0;
  line-height: 1.5;
  color: #495057;
}

.is-focused .ocp-form-control {
  background-image: linear-gradient(to top, var(--color-primary) 1px, rgba(255, 86, 5, 0) 1px), linear-gradient(to top, #bdbdbd 1px, rgba(189, 189, 189, 0) 1px);
  background-size: 100% 100%, 100% 100%;
  transition-duration: 0.3s;
}

.ocp-control-label {
  position: absolute;
  color: #bdbdbd;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  top: 0;
}

.is-focused .ocp-control-label {
  color: var(--color-primary);
  top: -16px;
  left: 0;
  font-size: 12px;
}

.required .ocp-control-label:after, .required .control-label:after {
  content: "*";
}

.has-error .ocp-form-control {
  background-image: linear-gradient(to top, #cc0a00 2px, rgba(204, 10, 0, 0) 2px), linear-gradient(to top, #bdbdbd 1px, rgba(189, 189, 189, 0) 1px);
}

.has-error .ocp-subscribe-form-input, .has-error .form-control, .has-error input[type=checkbox], .has-error input[type=radio], .has-error .img-option {
  border: 1px solid red !important;
}

.radio:not(.product-options .radio), .checkbox:not(.product-options .checkbox) {
  margin-bottom: 10px;
}

input[type=radio] {
  width: 24px;
  height: 24px;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #c4c4c4;
  appearance: none;
  border-radius: 50%;
}
input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='white'/%3e%3c/svg%3e");
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

input[type=checkbox] {
  appearance: none;
  background-color: #fff;
  border: 1px solid #C5C5C5;
  border-radius: 4px;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 15'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1.5 9L7 13L14.5 1.5'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.checkbox label, .radio label, .control-label {
  font-size: 14px;
}

.date-time-input {
  position: relative;
}
.date-time-input button {
  position: absolute;
  right: 0;
  bottom: 3px;
}

.select {
  position: relative;
}
.select:after {
  content: "▼";
  color: var(--color-primary);
  padding: 0 8px;
  font-size: 14px;
  position: absolute;
  right: 5px;
  top: 9px;
  z-index: 1;
  text-align: center;
  pointer-events: none;
  box-sizing: border-box;
}

select {
  border: 1px solid #C5C5C5 !important;
  appearance: none;
}

.panel-body .radio label, .panel-body .checkbox label {
  display: flex;
  align-items: center;
  user-select: none;
  gap: 10px;
}

.text-terms a {
  color: var(--color-primary);
}

.ocp-list {
  list-style-type: disc;
}
.ocp-list li {
  position: relative;
  color: var(--color-primary);
}
.ocp-list a, .ocp-list div {
  color: #0e0e0e;
}
.ocp-list a:hover {
  color: var(--color-primary);
}

.panel-body .btn-primary {
  padding: 16px 38px;
}

.quantity-amount[type=number] {
  appearance: textfield;
}

.quantity-amount[type=number]::-webkit-outer-spin-button,
.quantity-amount[type=number]::-webkit-inner-spin-button {
  display: none;
}

.product-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  border: 1px solid #efefef;
}
.product-quantity button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transform: matrix(1, 0, 0, -1, 0, 0);
  border-radius: 50%;
  border: none;
  height: 21px;
  width: 21px;
}
.product-quantity button:first-of-type {
  margin-left: 5px;
}
.product-quantity button:last-of-type {
  margin-right: 5px;
}
.product-quantity input {
  background-color: transparent;
  border: none;
  text-align: center;
}
.product-quantity .icon {
  --icon-size: 16px;
  fill: #000000;
}

.stock {
  position: relative;
  padding-left: 12px;
  margin-top: 4px;
  font-size: 75%;
  font-weight: 400;
  color: #000000;
}

.stock::before {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}

.stock.in-stock::before {
  background-color: #26dd2d;
}

.stock.out-of-stock::before {
  background-color: #dd2626;
}

.no-borders td {
  border: none !important;
}

.table-50 td {
  width: 50%;
}

.page-result {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.12;
  color: #5d5d5d;
}

.row-type-buttons button.active {
  fill: var(--color-primary);
}

.card-header .buttons, .thumbnails .buttons {
  position: absolute;
  right: 0;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-header .buttons .product-in-wishlist .icon, .card-header .buttons .product-in-compare .icon, .thumbnails .buttons .product-in-wishlist .icon, .thumbnails .buttons .product-in-compare .icon {
  fill: var(--color-primary);
}
.card-header .buttons button, .thumbnails .buttons button {
  background-color: rgba(247, 247, 247, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}
.card-header .buttons button:not(:last-child), .thumbnails .buttons button:not(:last-child) {
  margin-bottom: 8px;
}
.card-header .buttons .icon, .thumbnails .buttons .icon {
  --icon-size: 16px;
  fill: #bdbdbd;
}

#error-not-found .digits {
  font-size: 140px;
  color: var(--color-primary);
}

.section {
  margin-bottom: 48px;
}

.slideshow .swiper-button {
  position: absolute;
}
.slideshow img {
  max-width: 100%;
}

.pagination {
  flex-wrap: wrap;
}
