@charset "UTF-8";
:root {
  --brand-color: #333;
  --main-bg: #fff;
  --main-text: #111;
  --main-text-dark: #fff;
  --main-dark-bg: #242735;
  --main-title: #111;
  --main-subtitle: hsl(263 7% 54% / 1);
  --border-color-light: hsl(216 27% 96% / 1);
  --border-color-dark: hsl(220deg 7.75% 86.11%);
  --brand-default: #ccc;
  --brand-light: hsl(216 27% 96% / 1);
  --brand-hover: hsl(216.92deg 30.23% 91.57%);
  --target-default: hsl(216.12deg 84.48% 54.51%);
}

@media (min-width: 768px) and (max-width: 979px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
}
:root {
  --pd-xs: 4px;
  --pd-ds: 8px;
  --pd-dm: 12px;
  --pd-dl: 18px;
  --mg-ds: 8px;
  --mg-dm: 12px;
  --mg-dl: 18px;
  --br-ds: 4px;
  --br-dm: 8px;
  --br-dl: 12px;
  --template-grid-default: ". container ." auto/1fr 1472px 1fr;
}
@media (max-width: 1472px) {
  :root {
    --template-grid-default: ". container ." auto/20px 1fr 20px;
  }
}

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

input,
button,
textarea,
select {
  font: inherit;
}

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

button {
  border: none;
  margin: 0;
  padding: 0;
}
button:hover {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: var(--main-text);
}
a.bright {
  font-weight: 500;
  color: var(--target-default);
}
a.bright:hover {
  text-decoration: underline;
}

hr {
  border: 0;
  border-bottom: 1px solid var(--border-color-light);
  margin: 8px 0;
  border-style: solid;
}
hr.margin-0 {
  margin: 0;
}

select {
  border-radius: 10px;
}
select.on-light-default {
  border: 0;
  appearance: none;
  background: #f9f9f9;
  padding: 12px;
  border: 1px solid #eae7ee;
}

textarea {
  font-size: 15px;
  line-height: 1.3;
  min-height: 76px;
  resize: vertical;
  border-radius: 10px;
}
textarea::placeholder {
  font-family: inherit;
  color: hsl(264, 14%, 72%);
}
textarea.on-light-default {
  border: 0;
  appearance: none;
  background: #f9f9f9;
  padding: 12px;
  border: 1px solid #eae7ee;
}

input {
  border: none;
  outline: none;
  border-radius: 10px;
}
input::placeholder {
  font-family: inherit;
  color: hsl(264, 14%, 72%);
}
input.on-light-default {
  appearance: none;
  background: #f9f9f9;
  padding: 12px;
  border: 1px solid #eae7ee;
}
input.with-icon {
  padding: 12px 12px 12px 39px;
}

.input-wrapper {
  width: 100%;
}
.input-wrapper .input-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  color: hsl(264, 14%, 72%);
}
.input-wrapper input {
  width: 100%;
}
.input-wrapper input:focus + .input-icon {
  color: var(--target-default);
}
.input-wrapper.with-icon {
  position: relative;
}

.hidden {
  display: none;
}

.dropdown {
  display: inline-flex;
  position: relative;
}
.dropdown .dropdown-menu {
  display: none;
  left: 0;
  min-width: 12rem;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  z-index: 20;
}
.dropdown .dropdown-menu.for-effect {
  top: 100%;
}
.dropdown.is-up .dropdown-menu {
  bottom: 100%;
  padding-bottom: 4px;
  padding-top: initial;
  top: auto;
}
.dropdown.is-active .dropdown-menu {
  display: block;
}
.dropdown .dropdown-content {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.dropdown .dropdown-item {
  color: #4a4a4a;
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.375rem 1rem;
  position: relative;
}
.dropdown a.dropdown-item {
  padding-right: 3rem;
  text-align: inherit;
  white-space: nowrap;
  width: 100%;
}
.dropdown a.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #0a0a0a;
}

.tabs .tab-item {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: #f0f0f0;
}
.tabs .tab-item.active {
  background: #007bff;
  color: white;
}

.tab-content .tab-pane {
  display: none;
  padding: 10px;
  margin-top: 10px;
}
.tab-content .tab-pane.active {
  display: block;
}

.user-avatar {
  display: flex;
}
.user-avatar .img-avatar {
  width: 30px;
  height: 30px;
}
.user-avatar .img-avatar.circle {
  border-radius: 50%;
}
.user-avatar .img-avatar.wh20 {
  width: 20px;
  height: 20px;
}
.user-avatar .img-avatar.wh24 {
  width: 24px;
  height: 24px;
}
.user-avatar .img-avatar.wh36 {
  width: 36px;
  height: 36px;
}
.user-avatar .img-avatar.wh120 {
  width: 120px;
  height: 120px;
}

.author-link {
  font-weight: 500;
}

.w100 {
  width: 100%;
}

body {
  margin: 0;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: var(--main-bg);
  color: var(--main-text);
  font-size: 14px;
}

.page-grid .container {
  margin: 0 auto;
  max-width: 1472px;
}

header {
  background: linear-gradient(180deg, #2977ed, rgba(249, 249, 249, 0.95) 3%);
}

.sub-header {
  display: grid;
  grid-template: var(--template-grid-default);
  height: 45px;
  padding: 10px 0;
  color: var(--main-text-dark);
  backdrop-filter: blur(15px);
  background: var(--target-default);
  display: none;
}
.sub-header .sub-header-content {
  grid-area: container;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .sub-header {
    grid-template: "container" auto/1fr;
    padding: 0 12px;
  }
}

.header {
  padding: 20px 0;
  display: grid;
  grid-template: var(--template-grid-default);
  backdrop-filter: blur(15px);
  z-index: 20;
  position: relative;
}
.header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  box-shadow: rgba(126, 131, 146, 0.13) 0px 3px 8px;
  background-color: rgba(249, 249, 249, 0.95);
}
.header.sticky .highlighted-box::before {
  width: 3%;
  opacity: 0;
}
.header.sticky .highlighted-box::after {
  opacity: 0;
}
@media (max-width: 767px) {
  .header.sticky {
    position: relative;
  }
}
.header.overflow-swipe {
  overflow: initial;
}
.header.overflow-swipe .highlighted-box::before {
  width: 3%;
  opacity: 0;
}
.header.overflow-swipe .highlighted-box::after {
  opacity: 0;
}
.header .header-content {
  grid-area: container;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .header .header-content {
    grid-template-columns: 1fr;
  }
}
.header .highlighted-box {
  position: absolute;
  bottom: 1px;
  width: 100%;
}
.header .highlighted-box::before {
  content: "";
  position: absolute;
  left: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, #2977ed, transparent);
  width: 34%;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease-out, opacity 0.6s ease-out;
}
@media (max-width: 767px) {
  .header .highlighted-box::before {
    height: 1px;
  }
}
.header .highlighted-box::after {
  content: "";
  position: absolute;
  left: 50%;
  height: 100px;
  background: radial-gradient(circle, rgba(79, 139, 250, 0.11), transparent 70%);
  width: 32%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  transition: opacity 0.6s ease-in-out;
  border-radius: 50%;
  filter: blur(20px);
  z-index: -1;
}
@media (max-width: 767px) {
  .header {
    grid-template: "container" auto/1fr;
    padding: 12px 0;
    backdrop-filter: unset;
  }
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-box .logo-link {
  font-family: "Belanosima", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 37px;
  color: #2b2534;
}
.logo-box .logo-link .bright {
  color: var(--target-default);
}
@media (max-width: 767px) {
  .logo-box .logo-link {
    font-size: 27px;
  }
}

.who-is-box {
  display: flex;
  background: hsl(264, 17%, 29%);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.631372549);
  color: #2b2534;
  box-shadow: 0px -1px 0 0 hsla(0, 0%, 6.3%, 0.12);
  background: #2b2534;
  color: #fff;
}
.who-is-box input[type=radio] {
  display: none;
}
.who-is-box label {
  border-radius: 10px;
  padding: 4px 16px;
  font-weight: 500;
  font-size: 13px;
}
.who-is-box label:hover {
  cursor: pointer;
}
.who-is-box input:checked + label {
  background: var(--main-bg);
  color: #2b2534;
  background: #2b2534;
  box-shadow: inset 0px -1px 0 0 hsla(0, 0%, 6.3%, 0.18);
  background: #f9f9f9;
}

.fast-user-nav {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  position: relative;
}
@media (max-width: 767px) {
  .fast-user-nav {
    position: fixed;
    bottom: 0;
    z-index: 20;
    backdrop-filter: blur(20px);
    width: 100%;
    background-color: rgba(249, 249, 249, 0.95);
    box-shadow: rgba(126, 131, 146, 0.13) 0px -3px 8px;
  }
  .fast-user-nav .icon-wrapper-d {
    border: 0;
    width: unset;
    height: unset;
    border-radius: unset;
    flex-basis: 20%;
    padding: unset;
  }
  .fast-user-nav .icon-wrapper-d.item-home {
    display: initial;
  }
  .fast-user-nav .mnav-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-basis: 25%;
    gap: 8px;
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.85);
    min-height: 40px;
    position: relative;
    padding: 10px 0 10px;
  }
  .fast-user-nav .mnav-item i {
    color: rgba(0, 0, 0, 0.75);
    font-size: 16px;
  }
  .fast-user-nav .mnav-item .nav-title {
    display: initial;
    font-size: 9px;
    font-weight: 500;
  }
  .fast-user-nav .mnav-item.active {
    color: var(--target-default, #111);
  }
  .fast-user-nav .mnav-item.active i {
    color: var(--target-default, #111);
  }
}

.icon-wrapper-d {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 12px 12px;
  border: 1px solid hsl(0, 0%, 100%);
  border-radius: 17px;
  align-items: center;
  justify-content: center;
  background-color: rgba(249, 249, 249, 0.85);
  box-shadow: inset 0 0 7px -3px #ccc;
}
.icon-wrapper-d.toggle-crutch {
  padding: 0;
}
.icon-wrapper-d.toggle-crutch .mnav-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.icon-wrapper-d.toggle-crutch .seller-content,
.icon-wrapper-d.toggle-crutch .customer-content {
  width: 100%;
  height: 100%;
}
.icon-wrapper-d.toggle-crutch .seller-content .mnav-item,
.icon-wrapper-d.toggle-crutch .customer-content .mnav-item {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .icon-wrapper-d {
    box-shadow: none;
    background: unset;
  }
}
.icon-wrapper-d .nav-title {
  display: none;
}
.icon-wrapper-d i {
  font-size: 18px;
  color: #2b2534;
}
.icon-wrapper-d:hover {
  cursor: pointer;
}
.icon-wrapper-d:hover i {
  color: var(--target-default);
}
.icon-wrapper-d.opening {
  padding: unset;
}
.icon-wrapper-d.opening .dropdown-menu {
  top: 100%;
}
.icon-wrapper-d.opening.is-active {
  border-color: transparent;
  border-radius: 17px;
  filter: url(#graphicBlur);
  background: var(--target-default);
  opacity: 1;
}
.icon-wrapper-d.opening.is-active i {
  color: #fff;
}
.icon-wrapper-d.opening.is-active .dropdown-menu {
  top: calc(100% + 25px);
}
@media (max-width: 767px) {
  .icon-wrapper-d.opening.is-active .dropdown-menu {
    left: -58px !important;
    top: -200px;
  }
}
.icon-wrapper-d.opening.dropdown .dropdown-trigger {
  display: flex;
  width: 100%;
  height: 100%;
}
.icon-wrapper-d.opening.dropdown .button-dropdown {
  width: 100%;
  background: none;
  z-index: 25;
}
@media (max-width: 767px) {
  .icon-wrapper-d.opening.dropdown .button-dropdown {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
}
.icon-wrapper-d.opening.dropdown .dropdown-content {
  background: var(--target-default);
  border-radius: 25px;
  box-shadow: none;
}
.icon-wrapper-d.opening.dropdown .dropdown-content::before {
  content: "";
  background-color: var(--target-default);
  position: absolute;
  bottom: 100%;
  right: 47%;
  height: 40px;
  width: 20px;
}
@media (max-width: 767px) {
  .icon-wrapper-d.opening.dropdown .dropdown-content::before {
    bottom: unset;
    top: 100%;
  }
}
.icon-wrapper-d.opening.dropdown .dropdown-content::after {
  content: "";
  position: absolute;
  filter: drop-shadow(2px 4px 6px black);
}
.icon-wrapper-d.opening.dropdown .dropdown-menu {
  left: -150%;
  opacity: 1;
}
.icon-wrapper-d.item-home {
  display: none;
}

.user-menu {
  display: flex;
  gap: 6px;
  padding: 14px;
  flex-direction: column;
}
.user-menu .menu-item {
  background: hsla(264, 17%, 17%, 0.8);
  border-radius: 12px;
  width: 100%;
  padding: 6px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  box-shadow: inset 0px 0px 4px 2px rgba(80, 16, 16, 0.0588235294);
}
.user-menu .menu-item .item-logout {
  background: hsla(264, 17%, 17%, 0.54);
}
.user-menu .menu-item:hover {
  background: hsla(264, 17%, 17%, 0.9);
}

.main-box {
  padding: 30px 0;
  display: grid;
  grid-template: var(--template-grid-default);
  min-height: 100vh;
}
.main-box .main-container {
  grid-area: container;
  display: grid;
}
.main-box .main-container.grid-auto-1fr {
  grid-template-columns: auto 1fr;
  gap: 40px;
}
@media (max-width: 767px) {
  .main-box .main-container.grid-auto-1fr {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .main-box .main-content {
    padding: 0 16px;
  }
}
.main-box.pd-top {
  padding-top: 118px;
}
@media (max-width: 767px) {
  .main-box.pd-top {
    padding-top: 16px;
  }
}
@media (max-width: 767px) {
  .main-box {
    grid-template: "container" auto/1fr;
    min-height: unset;
    padding: 16px 0;
  }
}

.nav-cat {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 240px;
}
@media (max-width: 767px) {
  .nav-cat {
    max-width: unset;
    overflow: hidden;
  }
}

.cat-navigation {
  width: 236px;
}
@media (max-width: 767px) {
  .cat-navigation {
    width: unset;
  }
}
.cat-navigation .cat-bar .cat-list .cat-item .cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 7px;
  border-radius: 8px;
  font-weight: 500;
}
.cat-navigation .cat-bar .cat-list .cat-item .cat-link .img-block img {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .cat-list .cat-item .cat-link .img-block {
    display: flex;
  }
}
.cat-navigation .cat-bar .cat-list .cat-item .cat-link .icon {
  width: 24px;
  height: 24px;
}
.cat-navigation .cat-bar .cat-list .cat-item .cat-link .name {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-text);
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .cat-list .cat-item .cat-link .name {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .cat-list .cat-item .cat-link {
    flex-direction: column;
    font-weight: 400;
    font-size: 11px;
    padding: 0;
    margin-bottom: 0;
  }
}
.cat-navigation .cat-bar .cat-list .cat-item.active .cat-link {
  background-color: var(--brand-light);
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .cat-list .cat-item.active .cat-link {
    background: unset;
  }
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .cat-list .cat-item.active .cat-link .name {
    color: var(--target-default);
  }
}
.cat-navigation .cat-bar .cat-list .cat-item .list-counter {
  width: fit-content;
  min-width: 22px;
  background: var(--target-default);
  border-radius: 6px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  text-align: center;
  justify-content: center;
  line-height: 19px;
  padding: 0 3px;
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .cat-list .cat-item .list-counter {
    display: none;
  }
}
.cat-navigation .cat-bar .cat-list .cat-item:hover .name {
  color: var(--target-default);
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .cat-list {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    padding: 0px 12px 4px 12px;
    gap: 12px;
  }
  .cat-navigation .cat-bar .cat-list::-webkit-scrollbar {
    display: none;
  }
}
.cat-navigation .cat-bar .subcat-list {
  margin-left: 18px;
}
.cat-navigation .cat-bar .subcat-list .subcat-item {
  position: relative;
}
.cat-navigation .cat-bar .subcat-list .subcat-item::before {
  content: "";
  border-left: 2px solid var(--border-color-light);
  border-bottom: 2px solid var(--border-color-light);
  position: absolute;
  height: 28px;
  width: 18px;
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .subcat-list .subcat-item::before {
    display: none;
  }
}
.cat-navigation .cat-bar .subcat-list .subcat-item .subcat-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 14px 22px 14px 27px;
  gap: 10px;
  font-weight: 500;
}
.cat-navigation .cat-bar .subcat-list .subcat-item .subcat-link .name {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-text);
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .subcat-list .subcat-item .subcat-link .name {
    white-space: nowrap;
  }
}
.cat-navigation .cat-bar .subcat-list .subcat-item .subcat-link:hover, .cat-navigation .cat-bar .subcat-list .subcat-item .subcat-link:hover:after {
  border-color: var(--border-color-light);
}
.cat-navigation .cat-bar .subcat-list .subcat-item .subcat-link::before {
  content: "";
  border-left: 2px solid var(--border-color-light);
  position: absolute;
  height: 30px;
  left: 0px;
  top: 28px;
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .subcat-list .subcat-item .subcat-link::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .subcat-list .subcat-item .subcat-link {
    flex-direction: column;
    padding: 0;
    font-weight: 400;
    font-size: 11px;
  }
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .subcat-list .subcat-item .subcat-link.active .name {
    color: var(--target-default);
  }
}
.cat-navigation .cat-bar .subcat-list:last-of-type .subcat-item::before {
  content: "";
  border-left: 2px solid var(--border-color-light);
  border-bottom: 2px solid var(--border-color-light);
  position: absolute;
  height: 28px;
  border-radius: 0 0 0px 12px;
  width: 18px;
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .subcat-list:last-of-type .subcat-item::before {
    display: none;
  }
}
.cat-navigation .cat-bar .subcat-list:last-of-type .subcat-item .subcat-link::before {
  border: none;
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .subcat-list {
    margin-left: unset;
  }
}
@media (max-width: 767px) {
  .cat-navigation .cat-bar .subcat-mobile-fix {
    display: flex;
    gap: 12px;
    margin-left: 12px;
  }
}
.cat-navigation .fill-box {
  height: 63px;
  background: var(--target-default);
}
.cat-navigation .cat-menu .cat-list .cat-item .cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  width: 250px;
  margin-bottom: 4px;
}
.cat-navigation .cat-menu .cat-list .cat-item .cat-link .img-block img {
  width: 24px;
  height: 24px;
}
.cat-navigation .cat-menu .cat-list .cat-item .cat-link .icon {
  width: 24px;
  height: 24px;
}
.cat-navigation .cat-menu .cat-list .cat-item .cat-link .name {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-text);
}
.cat-navigation .cat-menu .cat-list .cat-item.active .cat-link {
  background-color: var(--brand-light);
}
.cat-navigation .cat-menu .subcat-list {
  margin-left: 18px;
  display: none !important;
}
.cat-navigation .cat-menu .subcat-list .subcat-item {
  position: relative;
}
.cat-navigation .cat-menu .subcat-list .subcat-item .subcat-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  padding: 8px 14px;
}
.cat-navigation .cat-menu .subcat-list .subcat-item .subcat-link .name {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-text);
}
.cat-navigation .cat-menu .subcat-list .subcat-item .subcat-link:hover {
  background: var(--brand-light);
  border-radius: 6px;
}
.cat-navigation .cat-menu .img-block {
  display: flex;
}
.cat-navigation .cat-menu .subcat-mobile-fix {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-navigation.dropdown-cat {
  width: fit-content;
  padding: 12px 12px;
}
.cat-navigation.dropdown-cat .cat-item {
  display: flex;
}
.cat-navigation.dropdown-cat .cat-item:hover {
  width: 572px;
}
.cat-navigation.dropdown-cat .cat-item:hover .cat-link {
  background: var(--brand-light);
  border-radius: 6px;
  position: relative;
}
.cat-navigation.dropdown-cat .cat-item:hover .cat-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  right: 14px;
  transform: rotate(315deg);
  transform-origin: right;
  width: 8px;
  height: 8px;
  border-radius: 0px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
}
.cat-navigation.dropdown-cat .cat-item:hover .subcat-mobile-fix {
  position: absolute;
  top: 24px;
  left: 274px;
  width: 240px;
  height: 100%;
}
.cat-navigation.dropdown-cat .cat-item:hover .subcat-mobile-fix .subcat-list {
  display: initial !important;
}
.catnav-box .dropdown.is-active .dropdown-menu {
  top: calc(100% + 30px);
}
.catnav-box .dropdown .dropdown-content {
  border-radius: 8px;
}
@media (max-width: 767px) {
  .catnav-box {
    display: none;
  }
}

.catnav-button {
  display: flex;
  width: fit-content;
  gap: 8px;
  border-radius: 6px;
  padding: 5px 16px;
  font-weight: 600;
  align-items: center;
  font-size: 15px;
  line-height: 25px;
  background: hsl(2, 15%, 92%);
  background-color: var(--target-default);
  color: #fff;
}
.catnav-button .icon path {
  fill: #ffffff;
}
.catnav-button.wobble-hor-bottom {
  -webkit-animation: wobble-hor-bottom 0.9s both;
  animation: wobble-hor-bottom 0.9s both;
}
.catnav-button:hover {
  cursor: pointer;
}

@-webkit-keyframes wobble-hor-bottom {
  0%, 100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-5px) rotate(-6deg);
    transform: translateX(-5px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(9px) rotate(6deg);
    transform: translateX(9px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
@keyframes wobble-hor-bottom {
  0%, 100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-5px) rotate(-6deg);
    transform: translateX(-5px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(9px) rotate(6deg);
    transform: translateX(9px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
.language-selection {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.7;
  color: #fff;
}
.language-selection:hover {
  cursor: no-drop;
}
@media (max-width: 767px) {
  .language-selection .language-name {
    display: none;
  }
}

.cards-grid-leveler {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1340px) {
  .cards-grid-leveler {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1076px) {
  .cards-grid-leveler {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .cards-grid-leveler {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card .image {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  height: unset;
  min-height: 130px;
  aspect-ratio: 16/9;
  background-color: var(--brand-light);
  position: relative;
  border-radius: var(--br-dm);
  box-shadow: inset 0 0 1px 0px hsl(266, 17%, 80%);
}
.product-card .details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
  flex: 1 0 auto;
}
.product-card .title {
  margin-bottom: 4px;
  word-break: break-word;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
  color: var(--main-title);
}
.product-card .subinfo {
  display: flex;
  gap: 4px;
  align-items: flex-end;
}
.product-card .product-cat {
  color: var(--main-subtitle);
  flex-grow: 1;
  line-height: 1.3;
}
.product-card .product-cat .cat-name,
.product-card .product-cat .for-name {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 230px;
  white-space: nowrap;
}
.product-card .price {
  font-size: 19px;
  font-weight: 900;
  color: var(--target-default);
  white-space: nowrap;
}
.product-card .card-mark {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--target-default);
  border-radius: 12px;
  line-height: 15px;
  padding: 2px 7px;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card .card-mark i {
  font-size: 8px;
  margin-top: -1px;
}

.product-plug {
  display: flex;
  border: 3px dashed var(--border-color-light);
  color: var(--main-text);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  flex-direction: column;
  font-weight: 500;
  color: var(--main-subtitle);
  height: 100%;
  padding: 20px;
  width: 100%;
}
.product-plug i {
  font-size: 18px;
}
.product-plug:hover {
  border-color: var(--target-default);
  color: var(--target-default);
}

.button-clean {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

.button-model {
  width: 100%;
  padding: 12px 20px;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  background-color: var(--main-dark-bg);
  color: #fff;
  border-radius: var(--br-dm);
  font-size: 13px;
  font-weight: 500;
}
.button-model.button-target {
  background-color: var(--target-default);
}
.button-model.button-target:hover {
  opacity: 0.87;
}
.button-model.button-alternate {
  background-color: #fff;
  border: 2px dashed var(--border-color-light);
  color: var(--main-text);
}
.button-model.icon i {
  font-size: 12px;
}
.button-model:hover {
  background-color: var(--target-default);
}

.link-button {
  width: 100%;
  padding: 12px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: hsl(264, 16.85%, 17.45%);
  color: #fff;
  border-radius: var(--br-dm);
  font-size: 13px;
  font-weight: 500;
}
.link-button.button-target {
  background-color: var(--target-default);
}

.pagination {
  display: flex;
  margin-top: 20px;
}
.pagination.pagination-centered {
  justify-content: center;
}
.pagination ul {
  display: flex;
  padding: 10px 20px;
}
.pagination ul li {
  margin: 0 2px;
}
.pagination ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 8px;
  padding: 0 6px;
  font-weight: 500;
}
.pagination ul li:first-child a, .pagination ul li:last-child a {
  font-weight: 400;
  padding: 0 8px;
}
.pagination ul li:hover {
  border-radius: 8px;
  background: #fff;
}
.pagination ul li:hover a {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: var(--brand-light);
  border-radius: 8px;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.11);
}
.pagination ul li.active a {
  color: #fff;
  background: #272a3b;
  background-color: hsl(264, 16.85%, 17.45%);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 0.636953px 0.636953px -0.9375px, rgba(0, 0, 0, 0.1) 0px 1.9316px 1.9316px -1.875px, rgba(0, 0, 0, 0.09) 0px 5.10612px 5.10612px -2.8125px, rgba(0, 0, 0, 0.04) 0px 16px 16px -3.75px;
}
.pagination ul li.disabled {
  opacity: 0.4;
}
.pagination ul li.disabled a {
  pointer-events: none;
}
.pagination ul li.disabled:hover a {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: unset;
  box-shadow: unset;
}
@media (max-width: 767px) {
  .pagination ul li {
    display: none;
  }
  .pagination ul li:nth-child(1), .pagination ul li:nth-child(2), .pagination ul li:nth-last-child(1), .pagination ul li:nth-last-child(2), .pagination ul li.active {
    display: list-item;
  }
}

.head-part {
  display: grid;
  grid-template-columns: 1fr 276px auto;
}
.head-part .search-block {
  justify-self: center;
}
.head-part .search-block input {
  padding: 12px 20px;
  border-radius: 14px;
  width: 426px;
  border: 2px solid var(--border-color-light);
  margin-bottom: 20px;
}

footer .logo-box {
  align-items: flex-start;
  gap: 20px;
}
footer .logo-box .logo-link {
  z-index: 5;
}
footer .logo-box .logo-link .bright {
  color: #fff;
}
footer .logo-box .logo-link.in-box {
  border-radius: 26px;
  filter: url(#graphicBlur);
  background: #fff;
  padding: 11px 24px 14px 24px;
  color: var(--target-default);
  line-height: 0.9;
}
footer .logo-box .logo-link.in-box .bright {
  color: #2b2534;
}
@media (max-width: 767px) {
  footer .logo-box .logo-link.in-box {
    padding: 9px 20px 11px 20px;
  }
}
footer .copy {
  position: relative;
  grid-column: 1/4;
  grid-row: 2/3;
  color: #fff;
  text-align: center;
  font-style: italic;
  padding: 4px 0;
  letter-spacing: 0.3px;
}
footer .copy:before {
  content: "";
  position: absolute;
  top: -11px;
  height: 2px;
  width: 42px;
  border-radius: 12px;
  background: #fff;
  transform: translate(-50%, -50%);
  left: 50%;
}
footer .footer-content-grid {
  display: grid;
  grid-template: var(--template-grid-default);
  background: var(--target-default);
}
@media (max-width: 767px) {
  footer .footer-content-grid {
    grid-template: "container" auto/1fr;
  }
}
footer .footer {
  z-index: 1;
  --footer-background: var(--target-default);
  display: grid;
  position: relative;
  grid-area: footer;
  min-height: 192px;
  position: absolute;
  width: 100%;
  position: relative;
  margin-top: 95px;
  overflow-x: clip;
}
footer .footer .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
  background: var(--footer-background);
  filter: url("#blob");
}
footer .footer .bubbles .bubble {
  position: absolute;
  left: var(--position, 50%);
  background: var(--footer-background);
  border-radius: 100%;
  animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  transform: translate(-50%, 100%);
}
@media (max-width: 767px) {
  footer .footer .bubbles .bubble {
    animation: none;
  }
}
@media (max-width: 767px) {
  footer .footer .bubbles {
    display: none;
  }
}
footer .footer .content {
  grid-area: container;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr auto;
  grid-gap: 0.5rem 4rem;
  padding: 30px 30px 10px 30px;
  background: var(--footer-background);
}
footer .footer .content > .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .footer .content > .column.center {
  text-align: center;
}
footer .footer .content > .column .design-by {
  font-style: italic;
  font-weight: 400;
  font-family: "Belanosima";
  letter-spacing: 1px;
  font-family: cursive;
}
footer .footer .content > .column .design-by a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}
footer .footer .content > .column .engine {
  font-size: 19px;
  font-family: "Belanosima", sans-serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.6px;
  color: #fff;
  text-transform: uppercase;
}
footer .footer .content > .column .payment-links {
  display: flex;
  gap: 14px;
  justify-content: center;
}
footer .footer .content > .column .payment-links img {
  width: fit-content;
  height: 15px;
}
footer .footer .content > .column p {
  color: #fff;
}
footer .footer .content > .column .image {
  align-self: center;
  width: 4rem;
  height: 4rem;
  background-size: cover;
  background-position: center;
}
footer .footer .content .column-brand {
  grid-row: 1/2;
  grid-column: 1/2;
  padding-left: 50px;
  padding-top: 8px;
}
@media (max-width: 767px) {
  footer .footer .content .column-brand {
    align-items: center;
    padding: 0;
  }
}
footer .footer .content .column-info {
  align-items: center;
  grid-column: 2/3;
  padding-bottom: 8px;
}
footer .footer .content .column-engine {
  grid-row: 1/2;
  grid-column: 3/4;
  padding-bottom: 14px;
}
@media (max-width: 767px) {
  footer .footer .content .column-engine {
    margin: -25px 0 0 0;
  }
}
@media (max-width: 767px) {
  footer .footer .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-bottom: 70px;
  }
}
footer .footer .list-title {
  margin-bottom: 12px;
  font-weight: 900;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
footer .footer .link-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer .footer .link-list .link-item a {
  color: #fff;
  font-weight: 600;
}
footer .footer .link-list .link-item a:hover {
  text-decoration: underline;
}
@keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}
@keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}

.ns-comments {
  margin-top: 40px;
}
.ns-comments .middle-title {
  margin-bottom: 10px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  color: #2b2534;
}
.ns-comments .create-msg {
  position: relative;
  margin-bottom: 12px;
}
.ns-comments .create-msg textarea {
  border-radius: 10px;
  padding: 14px 42px 14px 16px;
  border: 2px solid var(--border-color-light);
  width: 100%;
}
.ns-comments .create-msg .actions {
  position: absolute;
  right: 8px;
  bottom: 12px;
}
.ns-comments .create-msg .actions .send {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: rgba(249, 249, 249, 0.95);
  color: hsl(264, 16.85%, 17.45%);
}
.ns-comments .create-msg .actions .send i {
  position: relative;
  top: 1px;
  left: 1px;
}
.ns-comments .create-msg .actions .send:hover {
  color: var(--target-default);
}
.ns-comments .create-msg .send-tip {
  color: var(--main-subtitle);
  font-size: 11px;
  margin-top: -1px;
  text-align: right;
}
.ns-comments .comments-v1 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ns-comments .comments-v1 .comment-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ns-comments .comments-v1 .comment-item .about {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr 1fr;
  gap: 2px 10px;
  line-height: 20px;
  align-items: center;
}
.ns-comments .comments-v1 .comment-item .about .user-avatar {
  grid-row: 1/3;
}
.ns-comments .comments-v1 .comment-item .about .author {
  grid-column: 2/3;
  font-weight: 600;
}
.ns-comments .comments-v1 .comment-item .about .date {
  grid-column: 2/3;
  color: var(--main-subtitle);
}
.ns-comments .comments-v1 .comment-item .about .actions {
  grid-row: 1/3;
  grid-column: 3/4;
  display: flex;
  gap: 5px;
}
.ns-comments .comments-v1 .comment-item .text {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  word-break: break-word;
}
.ns-comments .comments-v1 .comment-item .paid-comment-amount {
  background: var(--target-default);
  border-radius: 6px;
  padding: 2px 10px;
  line-height: 21px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
}
.ns-comments .comments-v1 .comment-item.pinned {
  background: var(--brand-light);
  padding: 12px 20px;
  border-radius: 6px;
}
.ns-comments .comments-v1 .comment-item .date-style {
  color: var(--main-subtitle);
}
.ns-comments .button-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: rgba(249, 249, 249, 0.95);
  color: hsl(264, 16.85%, 17.45%);
}
.ns-comments .button-circle.wh26 {
  width: 26px;
  height: 26px;
}
.ns-comments .button-circle:hover {
  color: var(--target-default);
}

.tippy-box[data-theme=tippy-default] {
  background-color: var(--target-default);
  border-radius: 6px;
  padding: 0px 8px;
  box-shadow: 0px 4px 12px rgba(23, 5, 38, 0.12);
  font-size: 13px;
}

.tippy-box[data-theme=tippy-default] .tippy-arrow {
  color: var(--target-default);
}

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

.flex-column {
  flex-direction: column;
}

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

.title-section {
  display: flex;
}
@media (max-width: 767px) {
  .title-section {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .page-index .title-section .actions {
    width: 100%;
  }
}

.h1-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}

.sub-title {
  color: var(--main-subtitle);
  line-height: 1.4;
}

.main-search-block {
  display: flex;
  border-radius: 20px;
  height: 42px;
  background: var(--brand-light);
  padding: 0 12px;
  border: 2px solid var(--border-color-light);
  box-shadow: 0px -1px 0 0 hsla(0, 0%, 6.3%, 0.12);
}
.main-search-block .search-form {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-search-block .search-form i {
  color: #2b2534;
}
@media (max-width: 767px) {
  .main-search-block .search-form {
    height: 42px;
    background: #f9f9f9;
    padding: 0 12px;
    border: 1px solid #eae7ee;
    border-radius: 12px;
  }
}
.main-search-block input[type=text] {
  height: 100%;
  background: transparent;
}
.main-search-block input[type=text]::placeholder {
  color: hsl(0, 4%, 47%);
}
.main-search-block .hr-line {
  position: relative;
}
.main-search-block .hr-line:before {
  content: "";
  position: absolute;
  top: 8px;
  height: 24px;
  background: #eae7ee;
  width: 1px;
}
@media (max-width: 767px) {
  .main-search-block .hr-line:before {
    display: none;
  }
}
.main-search-block select {
  border: none;
  margin: 6px;
  border-radius: 8px;
  padding: 5px 6px;
  width: 192px;
  background: transparent;
  color: #2b2534;
  font-weight: 500;
}
.main-search-block select:focus {
  border: 0;
  outline: 0;
}
@media (max-width: 767px) {
  .main-search-block select {
    margin: 10px 0 0 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .main-search-block {
    flex-direction: column;
    background: unset;
    border: 0;
    height: unset;
    padding: 0;
    box-shadow: none;
  }
}

.add-product {
  display: flex;
  gap: 40px;
}
.add-product .form-part {
  flex-grow: 1;
}
.add-product .preview-part {
  max-width: 276px;
  width: 100%;
}
.add-product .preview-part .title {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--main-subtitle);
  align-items: center;
  justify-content: center;
}
.add-product .preview-part .title i {
  font-size: 13px;
}
.add-product .preview-part .product-card {
  position: sticky;
  top: 118px;
}
@media (max-width: 767px) {
  .add-product .preview-part {
    display: none;
  }
}
.add-product details {
  margin: 10px 0;
}
.add-product details > summary {
  width: 100%;
  display: inline-block;
  position: relative;
  padding: 10px 0;
  list-style: none;
  color: #222;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid var(--border-color-light);
}
.add-product details > summary i {
  font-size: 12px;
  margin-left: 5px;
}
.add-product details > summary:hover {
  cursor: pointer;
}
.add-product details > summary::after {
  content: "";
  display: block;
  position: absolute;
  top: 21px;
  right: 12px;
  transform: rotate(45deg);
  transform-origin: right;
  width: 5px;
  height: 5px;
  border-radius: 0px;
  border-right: 2px solid #777;
  border-bottom: 2px solid #777;
}
.add-product details[open] > summary::after {
  transform: rotate(-135deg);
  top: 19px;
  right: 17px;
}
.add-product details[open].unable {
  display: block;
}
.add-product details[open].unable > summary {
  pointer-events: none;
  user-select: none;
  cursor: default;
}
.add-product details[open].unable > summary::after {
  display: none;
}
.add-product input[type=file].product-file {
  border: none;
  width: 100%;
  height: unset;
}
.add-product input[type=file].product-file::file-selector-button {
  margin-right: 20px;
  border: none;
  background: #2986c3;
  padding: 10px 20px;
  border-radius: 2.5px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
.add-product input[type=file].product-file::file-selector-button:hover {
  background: #2986c3;
}
.add-product .remote-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.add-product .remote-files input {
  width: 100%;
}
.add-product .agreements {
  margin: 12px 0;
}
.add-product .agreements .label-agreements {
  display: flex;
  align-items: center;
  gap: 4px;
  font-style: italic;
  font-weight: 500;
}

.step-content .step {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 18px 0px;
}
.step-content .step .heading {
  width: clamp(100px, 260px, 100%);
}
.step-content .step .heading .title {
  font-weight: 600;
  color: #2b2534;
  font-size: 14px;
  margin-bottom: 5px;
}
.step-content .step .heading .caption {
  color: var(--main-subtitle);
}
.step-content .step .heading .bright {
  color: var(--target-default);
}
.step-content .step .parameters {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-content .step .parameters.row {
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .step-content .step .parameters.row input {
    width: 100%;
  }
}
.step-content .step .checkbox-btn input[type=checkbox] {
  display: none;
}
.step-content .step .checkbox-btn span {
  display: flex;
  gap: 6px;
  font-size: 13px;
  line-height: 22px;
  padding: 5px 15px;
  color: #424242;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 0.636953px 0.636953px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  background: #f9f9f9;
  align-items: baseline;
}
.step-content .step .checkbox-btn:not(.is-switch) > input[type=checkbox]:checked + span {
  color: #ffffff;
  background: var(--target-default);
}
@media (max-width: 767px) {
  .step-content .step {
    gap: 15px;
  }
}

/* DROPZONE */
/* хорошо бы в отдельный файл */
.dropzone {
  background: white;
  border: 2px dashed var(--border-color-light);
  padding: 20px 20px;
  border-radius: 8px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  margin: 2em 0;
  text-align: center;
  color: var(--target-default);
  font-weight: 500;
}

.dropzone .dz-preview {
  display: inline-block;
  min-height: 100px;
  position: relative;
  vertical-align: top;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
  border-radius: 20px;
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  moz-transition: opacity 0.2s linear;
  ms-transition: opacity 0.2s linear;
  o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  webkit-transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  border: none;
  cursor: pointer;
  display: block;
  font-size: 14px;
  text-align: center;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  color: rgba(0, 0, 0, 0.9);
  font-size: 13px;
  left: 0;
  line-height: 150%;
  max-width: 100%;
  min-width: 100%;
  opacity: 0;
  padding: 2em 1em;
  position: absolute;
  text-align: center;
  top: 0;
  z-index: 20;
}

.dropzone .dz-preview .dz-details .dz-size {
  font-size: 16px;
  margin-bottom: 1em;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(200, 200, 200, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  padding: 0 0.4em;
}

.dropzone .dz-preview:hover .dz-image img {
  filter: blur(8px);
  moz-transform: scale(1.05, 1.05);
  ms-transform: scale(1.05, 1.05);
  o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  webkit-filter: blur(8px);
  webkit-transform: scale(1.05, 1.05);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  display: block;
  height: 120px;
  overflow: hidden;
  position: relative;
  width: 120px;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
  webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  display: block;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  z-index: 500;
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  height: 54px;
  width: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  moz-transition: all 0.2s linear;
  ms-transition: all 0.2s linear;
  opacity: 1;
  o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  webkit-transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  moz-transition: opacity 0.4s ease-in;
  ms-transition: opacity 0.4s ease-in;
  opacity: 0;
  o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
  webkit-transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
  moz-animation: pulse 6s ease infinite;
  ms-animation: pulse 6s ease infinite;
  o-animation: pulse 6s ease infinite;
  webkit-animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  height: 16px;
  left: 50%;
  margin-left: -40px;
  margin-top: -8px;
  opacity: 1;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 50%;
  webkit-transform: scale(1);
  width: 80px;
  z-index: 1000;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  bottom: 0;
  left: 0;
  moz-transition: width 300ms ease-in-out;
  ms-transition: width 300ms ease-in-out;
  o-transition: width 300ms ease-in-out;
  position: absolute;
  top: 0;
  transition: width 300ms ease-in-out;
  webkit-transition: width 300ms ease-in-out;
  width: 0;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  border-radius: 8px;
  color: white;
  display: block;
  display: none;
  font-size: 13px;
  left: -10px;
  moz-transition: opacity 0.3s ease;
  ms-transition: opacity 0.3s ease;
  opacity: 0;
  o-transition: opacity 0.3s ease;
  padding: 0.5em 1.2em;
  pointer-events: none;
  position: absolute;
  top: 130px;
  transition: opacity 0.3s ease;
  webkit-transition: opacity 0.3s ease;
  width: 140px;
  z-index: 1000;
}

.dropzone .dz-preview .dz-error-message:after {
  border-bottom: 6px solid #be2626;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  height: 0;
  left: 64px;
  position: absolute;
  top: -6px;
  width: 0;
}

.earlier-screens .picture-aligner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.earlier-screens .picture-aligner .picture-item .picture-actions button {
  background: var(--brand-light);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
}
.earlier-screens .picture-aligner .picture-item .picture-actions button:hover {
  background: var(--target-default);
  color: #fff;
}
.earlier-screens .picture-aligner .picture-item .picture-actions button:focus, .earlier-screens .picture-aligner .picture-item .picture-actions button:focus-visible {
  background: var(--target-default);
  color: #fff;
}

.earlier-screens .picture-aligner .picture-item .actions button {
  border-radius: 9px;
  border: none;
  background: var(--light-purple);
  color: #333;
  font-size: 11px;
  font-weight: 500;
  padding: 1px 8px;
}

.earlier-screens .picture-aligner .picture-item .actions button:focus {
  background: var(--main-purple);
  color: #fff;
}

.earlier-screens .img-polaroid {
  max-height: 100px;
  border: none;
  box-shadow: none;
  border-radius: 2.5px;
  margin: 4px;
  padding: 0;
}

/* DROPZONE */
.bar-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 6px;
  font-weight: 600;
  line-height: 25px;
  background: var(--brand-light);
  height: fit-content;
}
.bar-menu .nav {
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bar-menu .nav .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
}
.bar-menu .nav .nav-link.active {
  background-color: #fff;
  border-radius: 8px;
}
.bar-menu .nav .nav-link:hover {
  background: var(--brand-hover);
}
.bar-menu .options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0px 16px 12px 16px;
}
.bar-menu .search-block input.with-icon {
  padding: 8px 12px 8px 39px;
}
.bar-menu .search-block .input-wrapper .input-icon {
  top: 10px;
}
.bar-menu select {
  padding: 8px;
  border: 1px solid #eae7ee;
}
@media (max-width: 767px) {
  .bar-menu {
    order: 2;
  }
}

#notification-icon {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#notification-icon .notification-count {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: var(--target-default);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -7px;
  right: -10px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 767px) {
  #notification-icon .notification-count {
    top: -1px;
    right: -1px;
  }
}

@media (max-width: 767px) {
  .guider {
    top: unset;
    bottom: 62px;
    right: unset;
  }
}

.static-page-default {
  display: grid;
  grid-template-columns: 360px 1fr 360px;
  gap: 40px;
}
.static-page-default .content-default {
  padding: 20px 20px;
  font-size: 16px;
  line-height: 1.55;
}
.static-page-default .content-default h1 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 12px;
  border-bottom: 2px dashed var(--border-color-light);
}
.static-page-default .content-default h2 {
  font-size: 20px;
  line-height: 1.4;
  margin: 14px 0;
}
.static-page-default .content-default p {
  margin: 10px 0;
}
.static-page-default .content-navigation {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 16px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 0px 32px 16px 0px;
  position: -webkit-sticky;
  position: sticky;
  top: 128px;
}
.static-page-default .content-navigation .title-contents {
  color: var(--target-default);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 22px;
  margin: 0px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.static-page-default .content-navigation .content-nav-list {
  color: rgb(0, 12, 43);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.2;
  list-style: none;
  opacity: 1;
}
.static-page-default .content-navigation .nav-item {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.1;
  margin: 12px 0px 0px;
  overflow-wrap: break-word;
}
.static-page-default .content-navigation .nav-item a {
  color: #2b2534;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}
.static-page-default .bar-menu {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .static-page-default {
    grid-template-columns: 1fr;
  }
}

.blocker {
  z-index: 30;
  background-color: rgba(19, 15, 13, 0.75);
}
@media (max-width: 767px) {
  .blocker {
    padding: 16px;
  }
}

.modal {
  background: rgb(255, 255, 255);
  gap: 12px;
  border-radius: 25px;
  filter: url(#graphicBlur);
  padding: 25px 30px;
  box-shadow: none;
}
.modal .close-modal {
  border-radius: 50%;
  filter: invert(1);
}
@media (max-width: 767px) {
  .modal {
    width: 100%;
  }
}

.modal-email {
  max-width: 560px;
  padding: 25px 40px;
}
.modal-email .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.modal-email .modal-body .email-image {
  width: 100px;
  margin: 0 auto;
}
.modal-email .modal-body .email-image img {
  width: 100px;
}
.modal-email .modal-body .title {
  font-size: 17px;
  line-height: 36px;
  font-weight: 600;
}
.modal-email .modal-body .caption {
  color: #726d89;
}
.modal-email .modal-body .notice {
  border-radius: 14px;
  padding: 14px 0;
  font-size: 13px;
  color: #726d89;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.4;
}
.modal-email .modal-body .actions {
  display: flex;
  gap: 8px;
}

.page-payment {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  margin-top: 20px;
}
.page-payment .title-block .title {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 4px;
  color: rgb(41, 41, 42);
  text-align: center;
}
@media (max-width: 767px) {
  .page-payment .title-block .title {
    text-align: left;
  }
}
.page-payment .title-block .extra-title {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 4px;
  color: rgb(41, 41, 42);
  text-align: center;
}
@media (max-width: 767px) {
  .page-payment .title-block .extra-title {
    text-align: left;
  }
}
.page-payment .pay-info {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}
.page-payment .pay-info .price-box {
  display: flex;
  align-items: flex-end;
  padding: 8px 0;
  line-height: 28px;
}
.page-payment .pay-info .price-part .th {
  position: relative;
  min-width: 200px;
  color: var(--main-subtitle);
}
.page-payment .pay-info .price-amount .td {
  font-weight: 600;
}
.page-payment .pay-info .price-amount .td.out {
  color: var(--target-default);
}
.page-payment .pay-info .extra-part {
  max-width: 340px;
}
@media (max-width: 767px) {
  .page-payment .pay-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
}
.page-payment .pay-methods {
  margin-top: 20px;
}
.page-payment .grid-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
}
.page-payment .payment-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.page-payment .payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px 0;
  justify-content: center;
}
.page-payment .method {
  display: flex;
  border: 2px solid var(--border-color-light);
  border-radius: 18px;
  padding: 20px 18px;
  width: 80px;
  cursor: pointer;
  transition: background 0.3s;
  background-color: rgba(249, 249, 249, 0.95);
  min-width: 200px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.page-payment .method .title {
  font-size: 16px;
  font-weight: 500;
}
.page-payment .method .img-list {
  display: flex;
  gap: 3px;
  justify-content: center;
  align-items: center;
  height: 36px;
}
.page-payment .method .img-list svg {
  width: 46px;
  height: fit-content;
}
.page-payment .method:hover {
  border: none;
  background-color: #007bff;
  color: white;
  filter: url(#graphicBlur);
  background: var(--target-default);
}
.page-payment .method:hover i {
  color: white !important;
}
.page-payment .method:hover svg,
.page-payment .method:hover path {
  fill: #fff !important;
}
.page-payment .action-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-payment .checkbox-btn input[type=checkbox] {
  display: none;
}
.page-payment .checkbox-btn span {
  display: flex;
  gap: 6px;
  font-size: 13px;
  line-height: 22px;
  padding: 5px 15px;
  color: #424242;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 0.636953px 0.636953px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  background: #f9f9f9;
  align-items: baseline;
  max-width: 190px;
}
.page-payment .checkbox-btn:not(.is-switch) > input[type=checkbox]:checked + span {
  color: #ffffff;
  background: var(--target-default);
}
.page-payment .promocode {
  height: 32px;
  appearance: none;
  background: #f9f9f9;
  padding: 6px 15px;
  border: 1px solid #eae7ee;
  border-radius: 8px;
}
.page-payment .promo-accept {
  padding: 6px 10px;
  border: 1px solid #eae7ee;
  border-radius: 8px;
  color: #ffffff;
  background: var(--target-default);
}
.page-payment .sub-info {
  margin-top: 10px;
}
.page-payment .sub-info label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-style: italic;
}
.page-payment .sub-info label a {
  font-size: 15px;
  color: var(--target-default);
}
@media (max-width: 767px) {
  .page-payment {
    margin-top: -10px !important;
    margin-right: 0 !important;
  }
}

.page-p2p .p2p-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-p2p .bank-card {
  width: 280px;
  height: 164px;
  background: #F2F2F2;
  border-radius: 10px;
  padding: 15px 20px;
  box-sizing: border-box;
  background: #00c3ff;
  background: -webkit-linear-gradient(to right, #00c3ff, #ffff1c);
  background: linear-gradient(to right, #00c3ff, #ffff1c);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-p2p .bank-card .top {
  display: flex;
  height: 82px;
}
.page-p2p .bank-card .bank-logo {
  flex-grow: 1;
}
.page-p2p .bank-card .bank-logo img {
  width: 100px;
}
.page-p2p .bank-card .payment-logo img {
  width: 46px;
}
.page-p2p .bank-card .number {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.page-p2p .bank-card .name {
  font-size: 15px;
  color: #333;
}
.page-p2p .form-to-toggle {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  border-radius: 12px;
  padding: 15px;
  min-width: 250px;
  width: fit-content;
}
.alert.alert-info {
  background: var(--brand-light);
}
@media (max-width: 767px) {
  .alert {
    width: 100%;
    padding: 16px 16px;
  }
}

.donation-widget {
  display: flex;
  background: var(--brand-light);
  gap: 12px;
  border-radius: 15px;
  padding: 15px;
  flex-direction: column;
}
.donation-widget .goal-title {
  font-size: 15px;
  font-weight: 600;
}
.donation-widget .goal-need {
  font-weight: 500;
  color: #4f4c4c;
}
.donation-widget .progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: var(--border-color-dark);
}
.donation-widget .progress-bar .progress-now {
  background: var(--target-default);
  width: 100px;
  height: 100%;
  border-radius: 2px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 0.636953px 0.636953px -0.9375px, inset 0 0.0625rem 0.0625rem rgba(255, 255, 255, 0.3);
}
.donation-widget .progress-bar .progress-now .progress-checkpoint {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: -4px;
  right: 0;
  justify-content: space-between;
  gap: 18px;
  font-size: 9px;
  color: #333;
  width: 7px;
  height: 12px;
  background: #4f4c4c;
  border: 3px solid #f2eded;
}
.donation-widget button {
  padding: 10px 20px;
}

.box-last-comments .c-title {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 600;
}
.box-last-comments .c-title i {
  margin-left: 8px;
}
.box-last-comments .comment-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.box-last-comments .comment-list .comment-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 4px 10px;
}
.box-last-comments .comment-list .comment-item .user-avatar {
  grid-column: 1/2;
  grid-row: 1/3;
  height: fit-content;
}
.box-last-comments .comment-list .comment-item .user-avatar img {
  filter: url(#graphicBlur);
  border-radius: 14px;
}
.box-last-comments .comment-list .comment-item .product-title {
  grid-column: 2/3;
  grid-row: 1/2;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  font-weight: 500;
}
.box-last-comments .comment-list .comment-item .product-title:hover {
  color: var(--target-default);
}
.box-last-comments .comment-list .comment-item .comment-time {
  grid-column: 2/3;
  grid-row: 2/3;
  height: fit-content;
  font-size: 12px;
  font-weight: 500;
  width: fit-content;
  padding: 3px 6px;
  border-radius: 6px;
  background: var(--brand-light);
  color: #443e4d;
}
.box-last-comments .comment-list .comment-item .comment-time:hover {
  color: var(--target-default);
}

.seller-content,
.customer-content {
  display: none;
}

.slider-box {
  grid-row: 2/3;
  grid-column: 1/3;
}
.slider-box .slider-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
}
.slider-box .slick-track {
  margin-left: -65px;
}
@media (max-width: 767px) {
  .slider-box .slick-track {
    margin-left: 0px;
  }
}
.slider-box .slick-arrow {
  margin-left: 15px;
}
.slider-box .slick-arrow i {
  color: var(--main-subtitle);
  font-size: 24px;
}
.slider-box .slick-slide {
  padding: 0 15px; /* Добавляем отступы внутри каждого слайда */
}
.slider-box .product-card .price-mark {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--target-default);
  border-radius: 12px;
  line-height: 15px;
  padding: 4px 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.slider-box .product-card .price-mark i {
  font-size: 11px;
}
@media (max-width: 767px) {
  .slider-box {
    display: none;
    grid-row: 3/4;
    grid-column: unset;
  }
}

.checkbox-wrapper-45 {
  position: relative;
  color: #fff;
  background: hsla(264, 17%, 17%, 0.54);
  border-radius: 12px;
}

.checkbox-wrapper-45 input[type=checkbox] {
  display: none;
  visibility: hidden;
}

.checkbox-wrapper-45 .cbx {
  -webkit-perspective: 20;
  perspective: 20;
  display: inline-block;
  border-radius: 4px;
  transform: translate3d(0, 0, 0);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
  height: 26px;
  align-items: center;
}

.checkbox-wrapper-45 .cbx:hover {
  border-color: #0b76ef;
}

.checkbox-wrapper-45 .flip {
  display: block;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  position: relative;
  width: 16px;
  height: 16px;
}

.checkbox-wrapper-45 input[type=checkbox]:checked + .cbx {
  border-color: #0b76ef;
}

.checkbox-wrapper-45 input[type=checkbox]:checked + .cbx .flip {
  transform: rotateY(180deg);
}

.checkbox-wrapper-45 .front,
.checkbox-wrapper-45 .back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 2px;
}

.checkbox-wrapper-45 .front {
  /* background: #fff; */
  z-index: 1;
  border: 2px solid #ffffff;
}

.checkbox-wrapper-45 .back {
  transform: rotateY(180deg);
  /* background: #0b76ef; */
  text-align: center;
  color: #fff;
  line-height: 16px;
  /* box-shadow: 0 0 0 1px #0b76ef; */
}

.checkbox-wrapper-45 .back svg {
  /* margin-top: 3px; */
  fill: none;
}

.checkbox-wrapper-45 .back svg path {
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
