* {
  outline: none;
  margin: 0;
  padding: 0;
}

html {
  font-family: sans-serif;
  touch-action: manipulation;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input,
button,
textarea,
select {
  font-family: var(--font-family);
  resize: none;
  font-size: var(--font-size);
  font-weight: 400;
}

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

.container {
  max-width: 1392px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-site);
  padding-right: var(--gutter-site);
}

.column {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.columns {
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
  display: flex;
  flex-wrap: wrap;
}
.columns--grid {
  gap: var(--gutter) 0;
}
@media (max-width: 1023px) {
  .columns--grid {
    gap: calc(var(--gutter) * 2) 0;
  }
}
.columns--element {
  gap: calc(var(--gutter) * 2) 0;
}

.col-1 {
  width: 8.33333333%;
}

.col-2 {
  width: 16.66666666%;
}

.col-3 {
  width: 24.99999999%;
}

.col-4 {
  width: 33.33333332%;
}

.col-5 {
  width: 41.66666665%;
}

.col-6 {
  width: 49.99999998%;
}

.col-7 {
  width: 58.33333331%;
}

.col-8 {
  width: 66.66666664%;
}

.col-9 {
  width: 74.99999997%;
}

.col-10 {
  width: 83.3333333%;
}

.col-11 {
  width: 91.66666663%;
}

.col-12 {
  width: 99.99999996%;
}

.col-2-5 {
  width: 20%;
}

svg:not(:root) {
  overflow: hidden;
  fill: none;
}

.symbols {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

.absolute-block {
  position: absolute;
  inset: 0;
}

.tab-pane:not(.active) {
  display: none;
}

.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(75, 75, 75, 0.3);
  display: flex;
  padding: var(--gutter-site);
  overflow-y: auto;
  z-index: 1000;
}
.modal-main {
  margin: auto;
  background-color: #fff;
  padding: 40px;
  width: 100%;
  max-width: 850px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .modal-main {
    padding: 20px;
  }
}
.modal-main--small {
  max-width: 500px;
}
.modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 15.0002L15 1.00024' stroke='black' stroke-width='1.3' stroke-linecap='round'/%3E%3Cpath d='M15.001 15.0002L1.00098 1.00024' stroke='black' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E") 50% no-repeat;
}
.modal-title {
  font-size: 28px;
  line-height: 120%;
  font-weight: 600;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .modal-title {
    font-size: 18px;
  }
}
.modal[aria-hidden=false] .modal-overlay {
  animation: modal-fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=false] .modal-main {
  animation: modal-slideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal-overlay {
  animation: modal-fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal-main {
  animation: modal-slideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@keyframes modal-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modal-slideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes modal-slideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.notify {
  display: none;
  right: 0;
  position: relative;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #ccc;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: var(--color-text);
  transition: right 0.3s;
  margin-bottom: 10px;
}
.notify.default {
  background-color: #1FCA23;
}
.notify.error {
  background-color: red;
  color: #fff;
}
.notify.is-show {
  right: 20px;
}
.notify-wrap {
  position: fixed;
  right: 0;
  top: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.splide {
  position: relative;
}
.splide__sr {
  display: none;
}
.splide__track {
  position: relative;
  overflow: hidden;
}
.splide__list {
  display: flex;
}
.splide--ttb .splide__list {
  display: block;
  height: 100%;
}
.splide__slide {
  flex-shrink: 0;
  max-width: 100%;
}
.splide__arrows {
  position: absolute;
  right: 0;
  bottom: calc(100% + 30px);
  display: flex;
  justify-content: space-between;
  width: 130px;
  height: 54px;
  background-color: #fff;
  border-radius: 5px;
  z-index: 2;
}
@media (max-width: 1023px) {
  .splide__arrows {
    background-color: #fff;
    left: 0;
    bottom: -24px;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .splide--header .splide__arrows {
    bottom: calc(100% + 40px);
  }
}
.splide__arrow {
  border: none;
  background: transparent;
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
}
@media (max-width: 1023px) {
  .splide__arrow {
    flex-basis: 60px;
    flex-grow: 0;
  }
}
.splide__arrow:not([disabled]):hover {
  cursor: pointer;
  color: var(--color-link);
}
.splide__arrow svg {
  margin: auto;
  width: 16px;
  height: 16px;
  fill: currentColor;
  pointer-events: none;
  transition: 0.15s;
}
.splide__arrow--prev {
  transform: scaleX(-1);
}
.splide__pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  position: relative;
}
@media (max-width: 1023px) {
  .splide__pagination {
    gap: 10px;
    pointer-events: none;
    z-index: 2;
  }
}
.splide__pagination__page {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: #B4B4B4;
  display: block;
}
@media (max-width: 1023px) {
  .splide__pagination__page {
    width: 7px;
    height: 7px;
  }
}
.splide__pagination__page.is-active {
  background-color: var(--color-link);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 28px;
  border-radius: 5px;
  background-color: var(--color-link);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  border: none;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: 0.15s;
}
.btn:hover {
  background-color: var(--color-link-hover);
}
.btn--grey {
  background-color: #AFAFAF;
}
.btn--shadow {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}
.btn--line {
  border: 1px solid var(--color-dark);
  color: var(--color-dark);
  background-color: transparent;
}
.btn--line-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn--line:hover {
  background-color: #fff;
  color: var(--color-dark);
}
.btn svg {
  flex-shrink: 0;
}
.btn--full {
  width: 100%;
}
.btn--small {
  height: 46px;
  font-size: 15px;
  padding: 0 18px;
  gap: 8px;
}
.btn--large {
  height: 60px;
  font-size: 19px;
}
@media (max-width: 767px) {
  .btn--mobile {
    width: 100%;
  }
}

.input {
  width: 100%;
  height: 50px;
  display: block;
  border-radius: 5px;
  background: #F5F5F5;
  border: 1px solid #F5F5F5;
  padding: 0 20px;
  font-size: 15px;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .input {
    height: 46px;
  }
}
.input--small {
  height: 46px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
}
.input:focus {
  border-color: var(--color-text);
  background-color: #fff;
}
.input.error {
  border-color: var(--color-link);
  color: var(--color-link);
}
.input.error ~ .input-icon {
  color: var(--color-link);
}
.input.textarea {
  height: 120px;
  padding-top: 14px;
}
.input.textarea--large {
  height: 150px;
}
.input-group {
  margin-bottom: var(--offset-group);
  position: relative;
}
@media (min-width: 768px) {
  .input-group--textarea {
    height: calc(100% - var(--offset-group));
  }
  .input-group--textarea .textarea {
    height: 100%;
  }
}
.input--icon {
  padding-left: 54px;
}
.input-icon {
  position: absolute;
  left: 20px;
  top: 15px;
  color: var(--color-grey);
  display: flex;
  pointer-events: none;
}
@media (max-width: 767px) {
  .input-icon {
    top: 12px;
  }
}
.input-label {
  display: block;
  color: var(--color-grey);
  margin-bottom: 4px;
}
.input-label.required::after {
  content: "*";
  color: var(--color-link-hover);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .form-footer:not(.form-footer--hor) {
    flex-direction: column;
    text-align: center;
    align-items: normal;
    margin-top: 10px;
    font-size: 13px;
  }
  .form-footer:not(.form-footer--hor) li:first-child {
    order: 1;
  }
}
.form-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 15px;
  line-height: 20px;
}

.checkbox {
  position: absolute;
  opacity: 0;
}
.checkbox:checked + .checkbox-text::before {
  background: var(--color-link) url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2.64211L3.96842 5.73684L8.70526 1' stroke='white' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 50% 50% no-repeat;
  border-color: var(--color-link);
}
.checkbox:checked + .box-checkbox__content::before {
  background-color: #fff;
  box-shadow: inset 0 0 0 4px var(--color-link);
}
.checkbox-label {
  display: block;
}
.checkbox-text {
  position: relative;
  padding-left: 35px;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
  display: block;
  text-align: left;
}
.checkbox-text::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background-color: #E9E9E9;
  left: 0;
  top: -2px;
}
.checkbox-text--small {
  font-size: 13px;
  line-height: 20px;
  padding-left: 35px;
}
.checkbox-text--small::before {
  width: 20px;
  height: 20px;
  top: 0;
}
.checkbox-text--border::before {
  border: 1px solid #A8A8A8;
  background-color: transparent;
}

.box-checkbox {
  position: relative;
  min-height: 100%;
  display: flex;
}
.box-checkbox__content {
  background-color: var(--color-light);
  border-radius: 3px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: 100%;
}
.box-checkbox__content::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #DCDCDC;
  flex-shrink: 0;
}
.box-checkbox__image {
  width: 120px;
  height: 60px;
  display: flex;
  background-color: #fff;
  border-radius: 2px;
  padding: 10px;
  flex-shrink: 0;
}
.box-checkbox__image img {
  margin: auto;
}
.box-checkbox__text {
  font-size: 16px;
  font-weight: 500;
}
.box-checkbox--image .box-checkbox__content {
  padding: 6px 20px;
  gap: 20px;
}
@media (max-width: 767px) {
  .box-checkbox--image .box-checkbox__content {
    flex-wrap: wrap;
    align-items: normal;
    padding: 12px;
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .box-checkbox--image .box-checkbox__content::before {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 767px) {
  .box-checkbox--image .box-checkbox__text {
    font-size: 13px;
    line-height: 17px;
    width: calc(100% - 28px);
  }
  .box-checkbox--image .box-checkbox__image {
    order: -1;
    width: 100%;
  }
}

.select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='5' viewBox='0 0 11 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 1L5.5 4L1 1' stroke='%234B4B4B' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: calc(100% - 12px) 50%;
  background-repeat: no-repeat;
}

:root {
  --gutter: 20px;
  --gutter-site: 16px;
  --color-text: black;
  --color-grey: #6B6B6B;
  --color-dark: #4B4B4B;
  --color-green: #75B047;
  --color-light: #F8F8F8;
  --color-light-dark: #E9E9E9;
  --color-link: #C02235;
  --color-link-hover: #E5354A;
  --font-size: 16px;
  --line-height: 24px;
  --offset-group: 24px;
  --offset: 70px;
  --font-family: Onest, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media (max-width: 1023px) {
  :root {
    --offset: 35px;
    --gutter: 8px;
    --font-size: 14px;
    --line-height: 20px;
    --offset-group: 14px;
  }
}

body {
  height: 100vh;
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-family: var(--font-family);
  color: var(--color-text);
  font-weight: 400;
  background-color: var(--color-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
body.overflow {
  overflow: hidden;
}

a {
  color: var(--color-link);
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: none;
}

h1 {
  font-size: 50px;
  line-height: 120%;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 120%;
}
@media (max-width: 767px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  h4 {
    font-size: 16px;
  }
}

.wrapper {
  min-width: 320px;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .wrapper {
    overflow: hidden;
  }
}

.wrap {
  flex: 1 0 auto;
  position: relative;
}

.content {
  padding: 30px 0 var(--offset);
}
@media (max-width: 767px) {
  .content {
    padding-top: 15px;
  }
}

.header {
  position: relative;
  background-color: #fff;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
  z-index: 10;
}
@media (min-width: 1200px) {
  .header {
    padding-bottom: 36px;
  }
}
@media (max-width: 1199px) {
  .header {
    z-index: 25;
  }
}
.header-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
}
.header-top-wrap {
  background-color: var(--color-light);
}
.header-main {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 80px;
}
@media (max-width: 1391px) {
  .header-main {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .header-main {
    height: 90px;
  }
}
.header-bottom {
  display: flex;
  gap: 40px;
}
@media (max-width: 1391px) {
  .header-bottom {
    gap: 20px;
  }
}

.header-location {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-location__title {
  font-size: 15px;
  white-space: nowrap;
}
.header-location__city {
  font-size: 15px;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-link);
}
@media (max-width: 767px) {
  .header-location__city span {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
  }
}

.header-menu__list {
  display: flex;
  gap: 10px 100px;
}
@media (max-width: 1391px) {
  .header-menu__list {
    gap: 10px 50px;
  }
}
@media (max-width: 1391px) {
  .header-menu__list {
    gap: 10px 20px;
  }
}
.header-menu__list a {
  display: block;
  font-size: 15px;
  color: var(--color-text);
  transition: color 0.15s;
}
.header-menu__list a:hover {
  color: var(--color-link);
}

.logotype {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 75px;
  color: var(--color-text);
  white-space: nowrap;
  margin-right: auto;
}
@media (max-width: 767px) {
  .logotype {
    padding-left: 55px;
  }
}
.logotype-image {
  position: absolute;
  left: 0;
  top: -15px;
}
@media (max-width: 767px) {
  .logotype-image {
    width: 42px;
    top: 0;
  }
}
.logotype-title {
  font-weight: 800;
  font-size: 30px;
  line-height: 38px;
}
@media (max-width: 767px) {
  .logotype-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.logotype-text {
  color: var(--color-grey);
  font-size: 13px;
  line-height: 16px;
}
.logotype--small {
  padding-left: 54px;
}
@media (max-width: 767px) {
  .logotype--small {
    white-space: normal;
  }
  .logotype--small br {
    display: none;
  }
}
.logotype--small .logotype-image {
  width: 42px;
}
.logotype--small .logotype-title {
  font-size: 20px;
  line-height: 26px;
}
.logotype--small .logotype-text {
  font-size: 15px;
  line-height: 20px;
}

.header-user {
  display: flex;
  gap: 20px;
}
.header-user__item {
  position: relative;
}
.header-user__link {
  width: 58px;
  height: 58px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text);
  background-color: var(--color-light);
  cursor: pointer;
  transition: 0.15s;
}
@media (max-width: 767px) {
  .header-user__link {
    width: 50px;
    height: 50px;
  }
}
.header-user__link:hover {
  color: var(--color-link);
  box-shadow: inset 0 0 0 1px var(--color-link);
  background-color: #fff;
}
.header-user__count {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-link);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 50%);
}

.header-popup {
  position: absolute;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  left: 0;
  top: calc(100% + 10px);
  min-width: 240px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 5;
  transform: translateY(10px);
  transition: 0.15s;
}
.header-popup.show-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header-popup--right {
  left: auto;
  right: 0;
}
.header-popup--bottom {
  top: auto;
  right: var(--gutter-site);
  bottom: calc(100% + 10px);
}
.header-popup__list li:not(:first-child) {
  border-top: 1px solid var(--color-light);
}
.header-popup__list a {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
  color: var(--color-text);
  font-size: 15px;
  line-height: 20px;
  padding: 10px 20px;
  transition: background-color 0.15s;
}
.header-popup__list a:hover {
  background-color: var(--color-light);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 29px;
  border: 1px solid transparent;
  padding: 7px 8px;
}
.header-phone__image {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-dark);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.15s;
}
.header-phone__image:hover {
  background-color: var(--color-link);
}
.header-phone__content {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  gap: 2px;
}
.header-phone__header {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.header-phone__value a {
  color: var(--color-text);
  font-size: 20px;
  line-height: 20px;
  display: block;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.header-phone__select {
  flex-shrink: 0;
  position: relative;
}
.header-phone__select svg {
  width: 21px;
  height: 16px;
  padding: 6px 5px;
  border-radius: 8px;
  background-color: var(--color-light);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.15s;
}
.header-phone__select svg:hover, .header-phone__select svg.active {
  color: #fff;
  background-color: var(--color-link);
}
.header-phone__email {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 16px;
}
.header-phone--mobile {
  gap: 5px;
  padding: 0;
}
.header-phone--mobile .header-phone__image {
  width: 20px;
  height: 20px;
}
.header-phone--mobile .header-phone__image svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}
.header-phone--mobile .header-phone__email {
  display: none;
}
.header-phone--mobile .header-phone__value a {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.header-phone--mobile .header-phone__select svg {
  background-color: #D9D9D9;
  transform: translateY(2px);
}

.header-price {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: var(--color-text);
  border-radius: 29px;
  border: 1px solid var(--color-light);
  padding: 7px 8px;
  line-height: 21px;
  min-width: 240px;
  gap: 12px;
  transition: border-color 0.15s;
}
.header-price:hover {
  border-color: var(--color-link);
}
.header-price:hover .header-price__image {
  background-color: var(--color-link);
}
.header-price__image {
  background-color: var(--color-dark);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
  transition: background-color 0.15s;
}
.header-price__title {
  font-weight: 500;
  font-size: 15px;
}
.header-price__info {
  font-size: 13px;
  color: var(--color-grey);
}

.header-burger__close {
  display: none;
}
.header-burger.active {
  background-color: var(--color-dark);
  border-radius: 5px 5px 0 0;
}
.header-burger.active .header-burger__open {
  display: none;
}
.header-burger.active .header-burger__close {
  display: block;
}

.search {
  position: relative;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .search {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #fff;
    padding: 0 var(--gutter-site) var(--gutter-site);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  }
  .search:not(.show-popup) {
    display: none;
  }
}
.search-input {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #F1F1F1;
  padding: 0 24px;
  font-size: 15px;
  transition: border-color 0.15s;
}
.search-input:focus {
  border-color: var(--color-link);
}
.search-button {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 0;
  position: absolute;
  border: none;
  cursor: pointer;
  background-color: transparent;
  color: var(--color-dark);
}
@media (max-width: 1199px) {
  .search-button {
    right: var(--gutter-site);
  }
}

.header-category {
  background-color: var(--color-light);
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .header-category {
    display: none;
  }
}
.header-category__list {
  display: flex;
}
.header-category__list li {
  flex-grow: 1;
}
.header-category__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  white-space: nowrap;
  padding: 0 20px;
  font-weight: 500;
  background-color: var(--color-light);
  color: var(--color-text);
  transition: 0.15s;
}
@media (max-width: 1391px) {
  .header-category__list a {
    font-size: 14px;
    padding: 0 14px;
  }
}
.header-category__list a:hover {
  background-color: var(--color-link);
  color: #fff;
}

.catalog-popup {
  height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  position: relative;
  transition: 0.15s;
}
@media (max-width: 1199px) {
  .catalog-popup {
    transform: none;
  }
  .catalog-popup.sub .catalog-popup__layout {
    overflow: hidden;
  }
}
.catalog-popup.show-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 1199px) {
  .catalog-popup.show-popup {
    transform: none;
  }
  .catalog-popup.show-popup .catalog-popup__layout {
    transform: translateX(0);
  }
}
@media (max-width: 1199px) {
  .catalog-popup__overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.catalog-popup__close {
  padding: 0 24px;
  height: 55px;
  color: var(--color-text);
  border-bottom: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
}
.catalog-popup__layout {
  display: flex;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-radius: 0 5px 5px 5px;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .catalog-popup__layout {
    position: fixed;
    left: 0;
    top: 0;
    width: 340px;
    height: 100dvh;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
    overscroll-behavior-y: contain;
    transition: 0.15s;
    transform: translateX(-100%);
  }
}
@media (min-width: 1200px) {
  .catalog-popup__aside {
    width: 310px;
    flex-shrink: 0;
  }
}
.catalog-popup__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 16px 24px;
  background-color: var(--color-link);
  transition: 0.15s;
}
@media (max-width: 1199px) {
  .catalog-popup__list a {
    background-color: #fff;
    color: var(--color-text);
    border-bottom: 1px solid #E6E6E6;
  }
}
.catalog-popup__list a img {
  flex-shrink: 0;
  transition: 0.15s;
}
@media (max-width: 1199px) {
  .catalog-popup__list a img {
    display: none;
  }
}
@media (min-width: 1200px) {
  .catalog-popup__list a.active {
    background-color: #fff;
    color: var(--color-grey);
  }
  .catalog-popup__list a.active img {
    filter: invert(1);
  }
}
@media (max-width: 1199px) {
  .catalog-popup__list--category a {
    color: var(--color-link);
    font-weight: 500;
  }
}
@media (max-width: 1199px) {
  .catalog-popup__item {
    background: url("data:image/svg+xml,%3Csvg width='7' height='13' viewBox='0 0 7 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.6' d='M1.5 12L6 6.5L1.5 1' stroke='%23323232' stroke-width='1.5'/%3E%3C/svg%3E") calc(100% - 20px) 50% no-repeat;
  }
}
@media (min-width: 1200px) {
  .catalog-popup__content {
    width: 100%;
    padding: 20px 40px;
  }
}
@media (min-width: 1200px) {
  .catalog-popup__sublist ul {
    columns: 3;
  }
  .catalog-popup__sublist:not(.active) {
    display: none;
  }
  .catalog-popup__sublist a {
    display: flex;
    align-items: center;
    line-height: 20px;
    color: var(--color-grey);
    padding: 12px 20px;
    gap: 10px;
    border: 5px;
    transition: background-color 0.15s;
  }
  .catalog-popup__sublist a:hover {
    background-color: var(--color-light);
  }
  .catalog-popup__sublist a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-link);
    flex-shrink: 0;
  }
}
@media (max-width: 1199px) {
  .catalog-popup__sublist {
    position: absolute;
    left: 0;
    top: 0;
    width: 340px;
    height: 100dvh;
    background-color: #fff;
    transform: translateX(100%);
    transition: 0.15s;
  }
  .catalog-popup__sublist.active {
    transform: translateX(0);
  }
  .catalog-popup__sublist ul {
    overflow-y: auto;
    height: calc(100% - 50px);
  }
  .catalog-popup__sublist ul a {
    color: var(--color-text);
    font-size: 16px;
    line-height: 20px;
    padding: 18px 20px;
    display: block;
    border-bottom: 1px solid #E6E6E6;
  }
}
.catalog-popup__footer {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.catalog-popup__footer .header-phone__select {
  display: none;
}

.footer {
  flex: 0 0 auto;
  background-color: #fff;
}
.footer--grey {
  background-color: var(--color-light);
}
.footer--grey .subscribe-input {
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.footer--grey .social-item {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.footer-social {
  padding-left: 54px;
}
@media (min-width: 1024px) {
  .footer-social {
    margin-top: 20px;
  }
}
.footer-subscribe {
  margin-top: auto;
}
@media (min-width: 1024px) {
  .footer-subscribe {
    max-width: 310px;
  }
}

.footer-top {
  padding: 70px 0;
}
@media (max-width: 1023px) {
  .footer-top {
    padding: 30px 0;
  }
}
.footer-top__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.footer-top__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}
.footer-top__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-top__menu a {
  color: var(--color-text);
  transition: color 0.15s;
}
@media (min-width: 768px) {
  .footer-top__menu a {
    font-size: 18px;
  }
}
.footer-top__menu a:hover {
  color: var(--color-link);
}
.footer-top__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 767px) {
  .footer-top__list {
    gap: 12px;
  }
}
.footer-top__list a {
  transition: color 0.15s;
}
@media (min-width: 768px) {
  .footer-top__list a {
    font-size: 15px;
  }
}
.footer-top__list a:hover {
  color: var(--color-text);
}

.social {
  display: flex;
  gap: 15px;
}
.social-item {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background-color: var(--color-light);
  display: flex;
  color: var(--color-text);
  justify-content: center;
  align-items: center;
  transition: 0.15s;
}
.social-item--tg {
  color: #1D93CF;
}
.social-item--wa {
  color: #43D64B;
}
.social-item--vk {
  color: #0077FF;
}
social-item--insta {
  color: #C13584;
}
.social-item--youtube {
  color: #c4302b;
}
.social-item:hover {
  background-color: var(--color-link);
  color: #fff;
}
.social--round .social-item {
  border-radius: 50%;
}

.subscribe {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.subscribe-title {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-grey);
}
.subscribe-form {
  position: relative;
}
.subscribe-button {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 0 5px 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--color-link);
  cursor: pointer;
  border: none;
  transition: background-color 0.15s;
}
.subscribe-button:hover {
  background-color: var(--color-link-hover);
}
.subscribe-group {
  position: relative;
}

.subscribe-showcase {
  background-color: var(--color-dark);
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.subscribe-showcase__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
}
.subscribe-showcase__text {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
}
.footer-contacts--main {
  gap: 25px;
}
.footer-contacts--main .footer-contact__value {
  color: currentColor;
  font-weight: bold;
  font-size: 20px;
}

.footer-contact {
  position: relative;
  padding-left: 56px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-contact {
    max-width: 360px;
  }
}
.footer-contact__image {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #DCDCDC;
  left: 0;
  top: 0;
  color: var(--color-dark);
}
.footer-contact__name {
  font-weight: 500;
  color: var(--color-dark);
}
.footer-contact__value {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-contact__value:hover {
  color: currentColor;
}
.footer-contact__info {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}

.footer-bottom {
  padding: 24px 0;
  background-color: var(--color-light-dark);
}
@media (max-width: 1199px) {
  .footer-bottom {
    padding-bottom: 90px;
  }
}

.footer-copyright {
  background: url("data:image/svg+xml,%3Csvg width='24' height='23' viewBox='0 0 24 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.5'%3E%3Cpath d='M12.0146 4.75V11.4412' stroke='%23020202' stroke-width='1.5' stroke-miterlimit='333.333'/%3E%3Cpath d='M18.7059 1H5.32353C3.19118 1 1.5 2.69118 1.5 4.82353V14.3824C1.5 16.5147 3.19118 18.2059 5.32353 18.2059H9.14706L12.0147 21L14.8824 18.1324H18.7059C20.8382 18.1324 22.5294 16.4412 22.5294 14.3088V4.75C22.5294 2.69118 20.8382 1 18.7059 1Z' stroke='%23020202' stroke-width='1.5' stroke-miterlimit='333.333'/%3E%3Cpath d='M11.0586 13.353H12.9704' stroke='%23020202' stroke-width='1.5' stroke-miterlimit='333.333'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  padding-left: 35px;
  font-size: 14px;
  color: var(--color-grey);
}
@media (max-width: 767px) {
  .footer-copyright {
    font-size: 10px;
    line-height: 18px;
  }
}

.footer-create {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .footer-create {
    padding-left: 35px;
  }
}
.footer-create a {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.offset {
  padding-top: var(--offset);
  padding-bottom: var(--offset);
}
.offset--min {
  --offset: 50px;
}
.offset-top {
  padding-top: var(--offset);
}
.offset-bottom {
  padding-bottom: var(--offset);
}

.head {
  margin-bottom: 35px;
}
@media (max-width: 1023px) {
  .head {
    margin-bottom: 15px;
  }
}
.head-title {
  font-size: 35px;
  line-height: 120%;
  font-weight: 600;
}
@media (max-width: 1023px) {
  .head-title {
    font-size: 25px;
  }
}

.element {
  position: relative;
  background-color: #fff;
  min-height: 100%;
  display: flex;
  gap: 8px;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
  transition: 0.15s;
}
@media (max-width: 767px) {
  .element {
    padding: 10px;
  }
  .element .available {
    font-size: 11px;
    line-height: 12px;
    padding-left: 16px;
    background-size: 12px !important;
  }
  .element .favorite {
    width: 20px;
    height: 20px;
    right: 10px;
    top: 10px;
  }
  .element .favorite svg {
    width: 12px;
    height: 12px;
  }
  .element .stickers {
    top: 10px;
    gap: 2px;
  }
  .element .sticker {
    font-size: 8px;
    padding: 2px 6px;
  }
}
@media (min-width: 1200px) {
  .element:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  }
  .element:hover .element-image__nav {
    opacity: 1;
  }
}
.element-image {
  position: relative;
  padding-bottom: 148%;
  display: block;
}
.element-image__main {
  position: absolute;
  inset: 0;
  display: flex;
}
.element-image__main img {
  margin: auto;
  max-height: 100%;
}
.element-image__nav {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.15s;
}
.element-image__nav li {
  flex-grow: 1;
  flex-basis: 0;
  position: relative;
}
.element-image__nav li.active::before {
  background-color: var(--color-link);
}
.element-image__nav li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  left: 0;
  bottom: 5px;
  background-color: #ABABAB;
}
.element-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.element-article {
  font-size: 13px;
  line-height: 16px;
  color: var(--color-grey);
}
@media (max-width: 767px) {
  .element-article {
    font-size: 0;
    line-height: 12px;
  }
}
.element-article span {
  font-weight: 500;
}
@media (max-width: 767px) {
  .element-article span {
    font-size: 11px;
  }
}
.element-title {
  font-size: 16px;
  line-height: 20px;
  flex-grow: 1;
  font-weight: 500;
}
@media (max-width: 767px) {
  .element-title {
    font-size: 12px;
    line-height: 15px;
  }
}
.element-title a {
  color: currentColor;
  transition: color 0.15s;
}
.element-title a:hover {
  color: var(--color-link);
}
.element-price {
  display: flex;
  gap: 5px 10px;
}
@media (max-width: 767px) {
  .element-price {
    flex-direction: column;
  }
}
.element-price__item {
  flex-grow: 1;
  flex-basis: 0;
  background-color: var(--color-light);
  border-radius: 5px;
  padding: 5px 8px;
}
@media (max-width: 767px) {
  .element-price__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.element-price__name {
  color: var(--color-grey);
  font-size: 13px;
  line-height: 16px;
}
@media (max-width: 767px) {
  .element-price__name {
    font-size: 12px;
  }
}
.element-price__value {
  color: var(--color-grey);
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .element-price__value {
    font-size: 14px;
  }
}
.element-price__value span {
  font-weight: bold;
  color: var(--color-text);
}

.available {
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  padding-left: 21px;
}
.available.on {
  color: var(--color-green);
  background: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7.5' cy='7.5' r='7.5' fill='%2375B047'/%3E%3Cpath d='M5 7.04L6.92623 9L10 6' fill='%2375B047'/%3E%3Cpath d='M5 7.04L6.92623 9L10 6' stroke='white' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat;
}
.available.off {
  background: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7.5' cy='7.5' r='7.5' fill='%23E6354A'/%3E%3Cpath d='M5 10L10 5' stroke='white' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 10L5 5' stroke='white' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat;
  color: #E5354A;
}

.stickers {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  top: 10px;
  left: 0;
  gap: 8px;
}

.sticker {
  border-radius: 0 5px 5px 0;
  font-size: 11px;
  line-height: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 10px;
  color: #fff;
  z-index: 1;
}
.sticker--sale {
  background-color: #C02235;
}
.sticker--new {
  background-color: #75B047;
}
.sticker--hit {
  background-color: #DF9B16;
}
.sticker--bd {
  background-color: #1e9f38;
}
.favorite {
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  color: #fff;
  background-color: rgba(36, 36, 36, 0.2);
  position: absolute;
  right: 20px;
  top: 3px;
}
.favorite.active {
  background-color: var(--color-link);
}
.favorite.active svg {
  fill: #fff;
}

.back-white {
  background-color: #fff;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1199px) {
  .advantages {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.advantages-cover {
  grid-area: 1/1/4/2;
}

.advantages-item {
  background-color: var(--color-light);
  border-radius: 5px;
  padding: 30px;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .advantages-item {
    padding: 20px;
  }
}
.advantages-item:nth-child(2) {
  grid-area: 1/2/2/3;
}
.advantages-item:nth-child(3) {
  grid-area: 1/3/2/4;
}
.advantages-item:nth-child(4) {
  grid-area: 2/2/3/3;
}
.advantages-item:nth-child(5) {
  grid-area: 2/3/3/4;
}
.advantages-item:nth-child(6) {
  grid-area: 3/2/4/4;
}
.advantages-item__image {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  flex-shrink: 0;
  background-color: var(--color-link);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .advantages-item__image {
    width: 44px;
    height: 44px;
  }
}
.advantages-item__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.advantages-item__title {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .advantages-item__title {
    font-size: 16px;
  }
}
.advantages-item__text {
  color: var(--color-grey);
}
@media (min-width: 768px) {
  .advantages-item__text {
    font-size: 15px;
    line-height: 22px;
  }
}

.advantages-cover {
  position: relative;
  background: url(../img/advantahes-back.jpg) no-repeat;
  background-size: cover;
  border-radius: 5px;
  display: flex;
  padding: 30px;
  width: 100%;
  max-width: 427px;
}
@media (max-width: 1199px) {
  .advantages-cover {
    height: 420px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px;
  }
}
.advantages-cover::before {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/advantahes-cover.svg) 0 100% no-repeat;
  background-size: contain;
  border-radius: 0 0 5px 5px;
  z-index: 1;
}
.advantages-cover__title {
  margin-top: auto;
  font-size: 40px;
  line-height: 120%;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .advantages-cover__title {
    font-size: 30px;
  }
}
.advantages-cover__image {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 100px;
}
@media (max-width: 1199px) {
  .advantages-cover__image {
    bottom: 20px;
    padding: 0 10px;
  }
}

.market {
  display: flex;
  height: 50px;
  border-radius: 10px;
}
.market img {
  margin: auto;
  max-width: 150px;
  max-height: 100%;
}
.market--small {
  height: 35px;
  padding: 5px 20px;
  min-width: 180px;
  border-radius: 5px;
}
.market-items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px 15px;
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .market-items--hor {
    flex-direction: row;
  }
}

.wb {
  background: linear-gradient(230.72deg, #5F009C 5.5%, #DD01BD 91.41%);
}

.ym {
  background-color: #FED42B;
}

.ozon {
  background-color: #005BFF;
}

.category-card {
  display: flex;
  align-items: center;
  height: 120px;
  background-color: var(--color-dark);
  border-radius: 5px;
  color: #fff;
  transition: background-color 0.15s;
}
@media (max-width: 767px) {
  .category-card {
    margin-bottom: 10px;
  }
}
.category-card:hover {
  background-color: var(--color-link);
}
.category-card__image {
  align-self: flex-end;
  width: 117px;
  flex-shrink: 0;
}
.category-card__image img {
  border-radius: 5px 0 0 5px;
}
.category-card__title {
  padding: 25px;
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
}

.choice {
  background: var(--color-dark) url("data:image/svg+xml,%3Csvg width='1200' height='1140' viewBox='0 0 1200 1140' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.05' d='M9.79023 883.617C3.50914 890.139 0 898.841 0 907.896V1122.64C0 1128.94 7.67169 1132.03 12.0419 1127.5L311.609 816.449C332.389 794.867 344 766.071 344 736.097V574.216C344 560.543 327.382 553.842 317.912 563.682L9.79023 883.617Z' fill='white'/%3E%3Cpath opacity='0.05' d='M59.6891 596.278C53.4702 602.79 50 611.448 50 620.452V727.536C50 733.85 57.7011 736.937 62.0621 732.371L223.921 562.898C235.519 550.751 242 534.544 242 517.674V426.564C242 418.868 232.725 415.097 227.439 420.635L59.6891 596.278Z' fill='white'/%3E%3Cpath opacity='0.05' d='M301.731 277.379C295.486 283.895 292 292.571 292 301.596V481.579C292 487.887 299.689 490.977 304.054 486.423L558.317 221.114C576.076 202.578 586 177.846 586 152.102V13.0687C586 1.32482 571.797 -4.43045 563.704 4.02098L301.731 277.379Z' fill='white'/%3E%3Cpath opacity='0.05' d='M1002.38 721.736C1005.98 718.006 1008 713.021 1008 707.833V539.418C1008 536.721 1004.72 535.394 1002.84 537.333L774.294 773.689C758.709 789.81 750 811.321 750 833.71V954.634C750 964.848 762.463 969.853 769.566 962.503L1002.38 721.736Z' fill='white'/%3E%3C/svg%3E") 300px 50% no-repeat;
  display: flex;
  border-radius: 10px;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .choice {
    flex-direction: column;
    min-height: 260px;
  }
}
.choice-content {
  padding: 60px;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  color: #fff;
  width: 50%;
}
@media (max-width: 767px) {
  .choice-content {
    padding: 26px;
    width: 100%;
  }
}
.choice-content__title {
  font-size: 40px;
  line-height: 120%;
  font-weight: 600;
}
@media (max-width: 767px) {
  .choice-content__title {
    font-size: 26px;
  }
}
.choice-content__text {
  opacity: 0.8;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .choice-content__text {
    font-size: 18px;
  }
}
.choice-block {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, var(--color-light) 50%, var(--color-light) 100%);
}
.choice-image {
  background: url(../img/choice-back.jpg) 50% no-repeat;
  background-size: cover;
  width: 50%;
}
@media (max-width: 767px) {
  .choice-image {
    height: 212px;
    width: 100%;
    order: -1;
  }
}
.choice--ver {
  flex-direction: column;
}
.choice--ver .choice-image {
  height: 212px;
  width: 100%;
  order: -1;
}
.choice--ver .choice-content {
  width: 100%;
}
.choice--small {
  min-height: 260px;
}
.choice--small .choice-content {
  padding: 26px;
}
.choice--small .choice-content__title {
  font-size: 26px;
}
.choice--small .choice-content__text {
  font-size: 15px;
  line-height: 20px;
}

.reviews-head {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 5px 25px;
}
@media (max-width: 1023px) {
  .reviews-head {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.reviews-head--small {
  margin-bottom: 25px;
  gap: 10px;
}
@media (max-width: 767px) {
  .reviews-head--small .reviews-head__aside {
    width: 100%;
  }
}
.reviews-head--small .head-title {
  font-size: 26px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .reviews-head--small .head-title {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.reviews-head--small .reviews-head__count {
  font-size: 26px;
  font-weight: 600;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .reviews-head--small .reviews-head__count {
    font-size: 20px;
  }
}
.reviews-head__count {
  font-size: 18px;
  color: var(--color-grey);
  font-weight: normal;
}
@media (max-width: 1023px) {
  .reviews-head__count {
    font-size: 15px;
  }
}
.reviews-head__aside {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px 40px;
}
@media (max-width: 1023px) {
  .reviews-head__aside {
    flex-direction: column;
    margin-left: 0;
  }
}
.reviews-head__link {
  font-weight: 500;
  font-size: 16px;
  transition: color 0.15s;
}
.reviews-head__link:hover {
  color: var(--color-link-hover);
}
.reviews-head__info {
  font-size: 13px;
  line-height: 16px;
  text-align: right;
}
.reviews-head__nav {
  width: 130px;
  flex-shrink: 0;
}

.reviews-market {
  background-color: #E8E8E8;
  border-radius: 5px;
  padding: 10px 12px;
  display: flex;
  gap: 12px;
}
@media (max-width: 1023px) {
  .reviews-market {
    order: -1;
    margin-top: 10px;
  }
}
.reviews-market__item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 35px;
  border-radius: 3px;
  border: 1px solid #fff;
  color: var(--color-grey);
  white-space: nowrap;
  padding: 0 16px;
  font-size: 15px;
}

.review-box {
  background-color: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px;
  gap: 14px;
}
.review-box__header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-box__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-link);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.review-box__text {
  font-size: 15px;
  line-height: 22px;
}
.review-box__from {
  margin-top: auto;
  text-align: right;
  font-size: 15px;
  color: var(--color-grey);
}
.review-box__name {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-box__content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.review-box__date {
  font-size: 14px;
  line-height: 22px;
  color: var(--color-grey);
}

.review-slider {
  margin-bottom: 45px;
}

.layout {
  display: flex;
  gap: 40px;
}

.layout-faq {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  overflow: hidden;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  background: #fff;
  transition: background 0.25s;
}

.faq-header span {
  font-size: 0.97rem;
  font-weight: 500;
  flex: 1;
  padding-right: 16px;
  color: #222;
  transition: color 0.25s;
}

/* Hover — плавная смена цвета текста (только у закрытых) */
.faq-item:not(.open) .faq-header:hover span {
  color: #c02235;
}

.faq-item:not(.open) .faq-header:hover .faq-icon::before,
.faq-item:not(.open) .faq-header:hover .faq-icon::after {
  background: #c02235;
}

/* Открытый пункт */
.faq-item.open .faq-header {
  background: #c02235;
}

.faq-item.open .faq-header span {
  color: #fff;
}

/* Иконка +/- */
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #999;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.25s;
}

.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after  { width: 2px; height: 14px; }

.faq-item.open .faq-icon::before { background: #fff; }
.faq-item.open .faq-icon::after  { background: #fff; opacity: 0; transform: rotate(90deg); }

/* Тело аккордеона */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fff;
}

.faq-item.open .faq-body {
  max-height: 600px;
}

.faq-body-inner {
  padding: 20px 24px 24px;
}

.faq-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #333;
}

.faq-body ul {
  list-style: none;
  padding: 0;
}

.faq-body ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: #333;
}

.faq-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c02235;
}

.faq-body ul li a {
  color: #c02235;
  text-decoration: none;
}

.faq-body ul li a:hover { text-decoration: underline; }

/* Sidebar */
.sidebar {
  background: linear-gradient(rgba(40,40,40,0.75), rgba(40,40,40,0.75)),
  url(../img/advantahes-back.jpg) center/cover no-repeat;
  border-radius: 4px;
  padding: 28px 24px;
  color: #fff;
}

.sidebar h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sidebar p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.phone-list {
  list-style: none;
  margin-bottom: 24px;
}

.phone-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.phone-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-icon svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.phone-list a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.phone-list a:hover { text-decoration: underline; }

.btn-callback {
  display: block;
  width: 100%;
  padding: 14px;
  background: #c02235;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}

.btn-callback:hover { background: #a01c2d; }

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    /* На планшете сайдбар идёт снизу, телефоны в ряд */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 24px;
  }

  .sidebar h2 { grid-column: 1 / -1; }
  .sidebar > p { grid-column: 1 / -1; margin-bottom: 12px; }
  .phone-list  { grid-column: 1; margin-bottom: 0; }
  .btn-callback { grid-column: 2; align-self: center; }
}

@media (max-width: 600px) {
  .layout-faq {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-header {
    padding: 16px 18px;
  }

  .faq-header span {
    font-size: 0.88rem;
    padding-right: 12px;
  }

  .faq-body-inner {
    padding: 14px 18px 18px;
  }

  .faq-body p {
    font-size: 0.87rem;
  }

  .faq-body ul li {
    font-size: 0.85rem;
  }

  /* Сайдбар на мобиле — обычный одноколоночный */
  .sidebar {
    display: block;
    padding: 22px 18px;
  }

  .sidebar h2 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .sidebar > p {
    font-size: 0.82rem;
    margin-bottom: 16px;
  }

  .phone-list {
    margin-bottom: 20px;
  }

  .phone-list li {
    margin-bottom: 12px;
  }

  .phone-list a {
    font-size: 0.95rem;
  }

  .btn-callback {
    padding: 13px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1199px) {
  .layout {
    flex-direction: column;
  }
}
.layout-aside {
  width: 310px;
  flex-shrink: 0;
}
.layout-aside--long {
  width: 430px;
}
@media (max-width: 1199px) {
  .layout-aside {
    order: 1;
    width: 100%;
  }
}
.layout-sticky {
  position: sticky;
  top: 20px;
}
.layout-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}
.layout-content {
  flex-grow: 1;
  min-width: 0;
}

.text {
  line-height: 22px;
}
.text p {
  margin-bottom: 16px;
}
.text ul {
  list-style-type: disc;
  margin: 0 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text ul li::marker {
  color: var(--color-link);
}
.text ol {
  counter-reset: ol;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text ol li {
  position: relative;
  padding-left: 44px;
}
.text ol li::before {
  counter-increment: ol;
  content: counter(ol);
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: var(--color-link);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: -6px;
}

.showcase {
  overflow: hidden;
}
.showcase .splide__slide {
  background: var(--color-dark) url("data:image/svg+xml,%3Csvg width='1200' height='1140' viewBox='0 0 1200 1140' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.05' d='M9.79023 883.617C3.50914 890.139 0 898.841 0 907.896V1122.64C0 1128.94 7.67169 1132.03 12.0419 1127.5L311.609 816.449C332.389 794.867 344 766.071 344 736.097V574.216C344 560.543 327.382 553.842 317.912 563.682L9.79023 883.617Z' fill='white'/%3E%3Cpath opacity='0.05' d='M59.6891 596.278C53.4702 602.79 50 611.448 50 620.452V727.536C50 733.85 57.7011 736.937 62.0621 732.371L223.921 562.898C235.519 550.751 242 534.544 242 517.674V426.564C242 418.868 232.725 415.097 227.439 420.635L59.6891 596.278Z' fill='white'/%3E%3Cpath opacity='0.05' d='M301.731 277.379C295.486 283.895 292 292.571 292 301.596V481.579C292 487.887 299.689 490.977 304.054 486.423L558.317 221.114C576.076 202.578 586 177.846 586 152.102V13.0687C586 1.32482 571.797 -4.43045 563.704 4.02098L301.731 277.379Z' fill='white'/%3E%3Cpath opacity='0.05' d='M1002.38 721.736C1005.98 718.006 1008 713.021 1008 707.833V539.418C1008 536.721 1004.72 535.394 1002.84 537.333L774.294 773.689C758.709 789.81 750 811.321 750 833.71V954.634C750 964.848 762.463 969.853 769.566 962.503L1002.38 721.736Z' fill='white'/%3E%3C/svg%3E") -150px 50% repeat-x;
}
.showcase-slide {
  display: flex;
  justify-content: space-between;
  height: 500px;
  gap: 80px;
}
.showcase-slide__content {
  width: 450px;
  flex-shrink: 0;
  align-self: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 55px;
}
.showcase-slide__image {
  width: 100%;
}
.showcase-slide__image img {
  max-width: none;
  height: 100%;
}
.showcase-title {
  font-size: 35px;
  line-height: 140%;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.showcase-text {
  font-size: 19px;
  line-height: 140%;
  opacity: 0.6;
}
.showcase-button {
  margin-top: 20px;
}
.showcase-panel {
  position: relative;
  width: 450px;
}
.showcase-panel .splide__arrows {
  right: auto;
  left: 0;
  bottom: 0;
  border-radius: 5px 5px 0 0;
  background-color: var(--color-light);
}
.showcase-panel .splide__pagination {
  width: auto;
  margin-top: 0;
  position: absolute;
  right: 0;
  bottom: 40px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-bottom: 20px;
  }
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 20px;
  color: var(--color-grey);
}
@media (max-width: 767px) {
  .breadcrumbs li {
    font-size: 11px;
    line-height: 14px;
  }
}
.breadcrumbs li a {
  color: var(--color-dark);
}
.breadcrumbs li::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-dark);
  opacity: 0.3;
  margin: 0 12px;
}

@media (max-width: 1199px) {
  .filter {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 26;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.15s;
  }
  .filter.show-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .filter.show-popup .filter-content {
    transform: translateX(0);
  }
  .filter-content {
    width: 340px;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    background-color: var(--color-light);
    padding: 10px 20px 20px;
    overscroll-behavior-y: contain;
    transform: translateX(-100%);
    transition: 0.15s;
  }
}
.filter-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.filter-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.filter-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  margin-bottom: 15px;
  border-radius: 10px;
  background-color: var(--color-light-dark);
  border: none;
  font-size: 16px;
  color: var(--color-text);
}
.filter-button svg {
  color: var(--color-dark);
}
.filter-close {
  padding: 10px 0;
}

.filter-category {
  background-color: var(--color-dark);
  border-radius: 10px;
  padding: 20px;
}
.filter-category__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-category__list a {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 13px 20px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  transition: 0.15s;
}
.filter-category__list a:hover {
  border-color: rgba(255, 255, 255, 0.6);
}
.filter-category__list a.active {
  background-color: var(--color-link);
  border-color: var(--color-link);
}

.filter-item {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}
.filter-item__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.filter-item__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog-header {
  background-color: var(--color-light-dark);
  border-radius: 10px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
}
@media (max-width: 767px) {
  .catalog-header {
    padding: 8px;
    display: block;
  }
}
.catalog-header__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-dark);
  position: relative;
}
@media (max-width: 767px) {
  .catalog-header__item {
    display: block;
  }
}
.catalog-header__sort {
  background-color: #fff;
  border-radius: 5px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 15px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-dark);
  min-width: 215px;
  user-select: none;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .pagination {
    flex-direction: column;
    align-items: normal;
  }
}
.pagination-items {
  background-color: var(--color-light-dark);
  padding: 6px;
  border-radius: 5px;
  gap: 6px;
  display: flex;
}
.pagination-item {
  width: 42px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-dark);
  font-weight: 500;
  border-radius: 5px;
  transition: 0.15s;
}
@media (max-width: 767px) {
  .pagination-item {
    width: 34px;
    flex-grow: 1;
  }
}
.pagination-item--prev {
  transform: scaleX(-1);
}
.pagination-item:hover {
  background-color: #fff;
  color: var(--color-link);
}
.pagination-item.active {
  background-color: var(--color-link);
  color: #fff;
}

.cart {
  display: flex;
  gap: 40px;
}
.cart-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-thresholds {
  display: flex;
  border-radius: 5px;
  border-top: 2px solid var(--color-link);
  background-color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-thresholds__item {
  flex-grow: 1;
  flex-basis: 0;
  padding: 17px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--color-dark);
}
@media (max-width: 767px) {
  .cart-thresholds__item {
    padding: 12px;
  }
}
.cart-thresholds__item.active {
  background-color: var(--color-link);
  color: #fff;
}
.cart-thresholds__title {
  font-size: 15px;
  line-height: 20px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .cart-thresholds__title {
    font-size: 11px;
    line-height: 14px;
  }
}
.cart-thresholds__price {
  white-space: nowrap;
  font-weight: bold;
  font-size: 24px;
  display: flex;
  gap: 4px;
}
@media (max-width: 767px) {
  .cart-thresholds__price {
    font-size: 20px;
  }
}

.cart-rubl {
  font-weight: 500;
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .cart-table {
    max-height: 465px;
    overflow-y: auto;
  }
}
.cart-table::-webkit-scrollbar {
  width: 4px;
  cursor: pointer;
}
.cart-table::-webkit-scrollbar-track {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: transparent;
}
.cart-table::-webkit-scrollbar-thumb {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: var(--color-light-dark);
}
.cart-table__price {
  font-weight: bold;
  white-space: nowrap;
  width: 80px;
}
.cart-table__header {
  position: sticky;
  z-index: 1;
  top: 0;
}
.cart-table__footer {
  position: sticky;
  z-index: 1;
  bottom: 0;
}
.cart-table__footer td {
  padding-bottom: 10px !important;
}
.cart-table table {
  width: 100%;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 767px) {
  .cart-table table .value {
    background-color: #fff;
  }
}
.cart-table table th {
  background-color: var(--color-light-dark);
  font-weight: normal;
  white-space: nowrap;
  color: var(--color-grey);
  padding: 8px 0 8px 15px;
  text-align: left;
}
@media (max-width: 767px) {
  .cart-table table th {
    background-color: transparent;
    padding: 0 15px 0 0;
    font-size: 13px;
  }
}
.cart-table table th:last-child {
  padding-right: 15px;
  text-align: right;
}
@media (max-width: 767px) {
  .cart-table table th:last-child {
    padding-right: 0;
  }
}
.cart-table table td {
  background-color: #fff;
  padding: 4px 0 4px 15px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .cart-table table td {
    background-color: transparent;
    padding-left: 0;
    padding-right: 15px;
    font-size: 13px;
  }
}
.cart-table table td.on {
  color: var(--color-green);
}
.cart-table table td.off {
  color: var(--color-link);
}
.cart-table table td:last-child {
  padding-right: 15px;
  text-align: right;
}
@media (max-width: 767px) {
  .cart-table table td:last-child {
    padding-right: 0;
  }
}

.value {
  background-color: var(--color-light);
  border-radius: 5px;
  display: flex;
  width: fit-content;
}
.value--all {
  width: 100%;
}
.value--all .value-count {
  max-width: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.value--round {
  background-color: transparent;
  min-width: 140px;
}
.value--round .value-count {
  max-width: 70px;
}
.value-button {
  width: 30px;
  height: 30px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}
.value-button--round {
  border-radius: 50%;
  border: 1px solid #E8E8E8;
}
.value-button--medium {
  width: 38px;
  height: 38px;
}
.value-button--large {
  width: 46px;
  height: 46px;
}
.value-button.minus {
  color: var(--color-link-hover);
}
.value-button.plus {
  color: var(--color-green);
}
.value-count {
  max-width: 40px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  border: none;
  text-align: center;
  background-color: transparent;
}

.cart-showcase {
  background-color: var(--color-dark);
  border-radius: 5px;
}
.cart-showcase__header {
  padding: 12px 20px;
  border-radius: 5px 5px 0 0;
  background-color: #383838;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-showcase__article {
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  font-weight: 500;
}
.cart-showcase__article span {
  opacity: 0.7;
  font-weight: 400;
}
.cart-showcase__content {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 20px;
}

.cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-price__title {
  font-size: 22px;
  font-weight: 500;
  opacity: 0.5;
}
.cart-price__value {
  white-space: nowrap;
  font-size: 40px;
  line-height: 40px;
  font-weight: bold;
  display: flex;
  gap: 4px;
}

.cart-favorite {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  color: #fff;
}
.cart-favorite.active .cart-favorite__icon {
  background-color: var(--color-link);
}
.cart-favorite__icon {
  width: 34px;
  height: 34px;
  border-radius: 5px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
}

.cart-image {
  display: flex;
  gap: 20px;
}
@media (max-width: 1391px) {
  .cart-image {
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .cart-image {
    margin-bottom: 20px;
  }
}
.cart-image__thumbnails {
  width: 104px;
  flex-shrink: 0;
}
@media (max-width: 1391px) {
  .cart-image__thumbnails {
    order: 1;
    width: auto;
  }
}
.cart-image__thumbnail {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  height: 100%;
  border: 2px solid #fff;
  cursor: pointer;
}
.cart-image__thumbnail.is-active {
  border-color: rgba(192, 34, 53, 0.3);
}
.cart-image__thumbnail img {
  margin: auto;
  max-height: 100%;
}
.cart-image__main {
  width: 100%;
}
.cart-image__slide {
  display: block;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.cart-image__slide img {
  max-height: 570px;
}

.cart-thumbnail-slider {
  padding: 55px 0;
}
@media (max-width: 1391px) {
  .cart-thumbnail-slider {
    padding: 0 55px;
  }
}
.cart-thumbnail-slider .splide__arrows {
  right: auto;
  left: 0;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  pointer-events: none;
  justify-content: space-between;
  background-color: transparent;
}
@media (min-width: 1392px) {
  .cart-thumbnail-slider .splide__arrows {
    flex-direction: column;
  }
}
.cart-thumbnail-slider .splide__arrow {
  pointer-events: auto;
  flex-grow: 0;
  flex-basis: 35px;
  background-color: #fff;
  border-radius: 5px;
}
@media (min-width: 1392px) {
  .cart-thumbnail-slider .splide__arrow--prev svg {
    transform: rotate(-90deg);
  }
  .cart-thumbnail-slider .splide__arrow--next svg {
    transform: rotate(90deg);
  }
}

.cart-information {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 767px) {
  .cart-information {
    padding: 15px 15px 30px;
    gap: 30px;
  }
}
.cart-information__tabs {
  display: flex;
  gap: 10px;
}
.cart-information__tabs a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: var(--color-light);
  white-space: nowrap;
  font-size: 15px;
  line-height: 20px;
  padding: 8px 15px;
  border-radius: 5px;
  color: var(--color-dark);
}
@media (max-width: 767px) {
  .cart-information__tabs a {
    font-size: 12px;
    padding: 4px 10px;
    flex-grow: 1;
  }
}
.cart-information__tabs a span {
  opacity: 0.5;
}
.cart-information__table {
  border-radius: 5px;
  overflow: hidden;
}
.cart-information__table table {
  width: 100%;
}
.cart-information__table table tr {
  background-color: var(--color-light);
}
.cart-information__table table tr:nth-child(odd) {
  background-color: var(--color-light-dark);
}
.cart-information__table table td {
  padding: 8px 20px;
}
.cart-information__table table td:last-child {
  font-weight: 500;
  text-align: right;
}

.comments {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment {
  display: flex;
  gap: 18px;
}
@media (max-width: 767px) {
  .comment {
    gap: 10px;
  }
}
.comment--page .comment-content {
  background-color: #fff;
}
.comment-avatar {
  width: 44px;
  height: 44px;
  background-color: var(--color-link);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  color: #fff;
}
@media (max-width: 767px) {
  .comment-avatar {
    width: 25px;
    height: 25px;
  }
  .comment-avatar svg {
    width: 12px;
    height: 12px;
  }
}
.comment-avatar svg {
  fill: #fff;
}
.comment-content {
  background-color: var(--color-light);
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .comment-content {
    padding: 15px;
  }
}
.comment-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
}
.comment-header__name {
  font-weight: 600;
}
.comment-header__date {
  font-size: 14px;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .comment-header__date {
    font-size: 12px;
  }
}
.comment-text {
  line-height: 20px;
}
@media (min-width: 768px) {
  .comment-text {
    font-size: 15px;
  }
}
.comment-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.comment-gallery__item {
  display: block;
}
.comment-gallery__item img {
  max-height: 75px;
  border-radius: 3px;
}
.comment-more {
  margin-left: 62px;
}

.one-click {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.one-click__image {
  width: 96px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .one-click__image {
    width: 54px;
  }
}
.one-click__image img {
  border: 1px solid #E1E1E1;
  border-radius: 5px;
}
.one-click__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .one-click__title {
    font-size: 15px;
  }
}
.one-click__sizes {
  display: flex;
  gap: 10px 20px;
}
@media (max-width: 767px) {
  .one-click__sizes {
    flex-direction: column;
  }
}
.one-click__sizes li {
  flex-grow: 1;
  flex-basis: 0;
}
.one-click__sizes-title {
  font-size: 14px;
  opacity: 0.8;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.stars {
  width: 78px;
  height: 12px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg width='29' height='58' viewBox='0 0 29 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3634 30.3658C13.2117 28.5544 15.6845 28.5421 16.5495 30.3449L19.2564 35.9867C19.5962 36.695 20.2456 37.1866 20.997 37.3045L27.0105 38.2479C28.921 38.5476 29.6752 40.998 28.2885 42.4L24.0019 46.7338C23.4487 47.2931 23.1961 48.1009 23.3267 48.8926L24.3596 55.1492C24.6875 57.1354 22.6887 58.652 20.9756 57.7168L15.5259 54.742C14.8439 54.3697 14.0295 54.3718 13.3492 54.7476L8.03963 57.6809C6.32625 58.6275 4.31657 57.1105 4.64537 55.1188L5.67326 48.8926C5.80394 48.1009 5.55128 47.2931 4.99807 46.7338L0.711473 42.4C-0.675215 40.998 0.0790507 38.5476 1.98955 38.2479L7.98898 37.3067C8.7482 37.1876 9.40269 36.6871 9.73946 35.9681L12.3634 30.3658Z' fill='%23FBB03B'/%3E%3Cpath d='M12.3634 1.36577C13.2117 -0.445575 15.6845 -0.457906 16.5495 1.3449L19.2564 6.98673C19.5962 7.69503 20.2456 8.18664 20.997 8.30453L27.0105 9.24792C28.921 9.54764 29.6752 11.998 28.2885 13.4L24.0019 17.7338C23.4487 18.2931 23.1961 19.1009 23.3267 19.8926L24.3596 26.1492C24.6875 28.1354 22.6887 29.652 20.9756 28.7168L15.5259 25.742C14.8439 25.3697 14.0295 25.3718 13.3492 25.7476L8.03963 28.6809C6.32625 29.6275 4.31657 28.1105 4.64537 26.1188L5.67326 19.8926C5.80394 19.1009 5.55128 18.2931 4.99807 17.7338L0.711473 13.4C-0.675215 11.998 0.0790507 9.54764 1.98955 9.24792L7.98898 8.30673C8.7482 8.18762 9.40269 7.68711 9.73946 6.96807L12.3634 1.36577Z' fill='%23C5C5C5'/%3E%3C/svg%3E") repeat-x;
  background-size: 16px 24px;
}
.stars span {
  display: block;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg width='29' height='58' viewBox='0 0 29 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3634 30.3658C13.2117 28.5544 15.6845 28.5421 16.5495 30.3449L19.2564 35.9867C19.5962 36.695 20.2456 37.1866 20.997 37.3045L27.0105 38.2479C28.921 38.5476 29.6752 40.998 28.2885 42.4L24.0019 46.7338C23.4487 47.2931 23.1961 48.1009 23.3267 48.8926L24.3596 55.1492C24.6875 57.1354 22.6887 58.652 20.9756 57.7168L15.5259 54.742C14.8439 54.3697 14.0295 54.3718 13.3492 54.7476L8.03963 57.6809C6.32625 58.6275 4.31657 57.1105 4.64537 55.1188L5.67326 48.8926C5.80394 48.1009 5.55128 47.2931 4.99807 46.7338L0.711473 42.4C-0.675215 40.998 0.0790507 38.5476 1.98955 38.2479L7.98898 37.3067C8.7482 37.1876 9.40269 36.6871 9.73946 35.9681L12.3634 30.3658Z' fill='%23FBB03B'/%3E%3Cpath d='M12.3634 1.36577C13.2117 -0.445575 15.6845 -0.457906 16.5495 1.3449L19.2564 6.98673C19.5962 7.69503 20.2456 8.18664 20.997 8.30453L27.0105 9.24792C28.921 9.54764 29.6752 11.998 28.2885 13.4L24.0019 17.7338C23.4487 18.2931 23.1961 19.1009 23.3267 19.8926L24.3596 26.1492C24.6875 28.1354 22.6887 29.652 20.9756 28.7168L15.5259 25.742C14.8439 25.3697 14.0295 25.3718 13.3492 25.7476L8.03963 28.6809C6.32625 29.6275 4.31657 28.1105 4.64537 26.1188L5.67326 19.8926C5.80394 19.1009 5.55128 18.2931 4.99807 17.7338L0.711473 13.4C-0.675215 11.998 0.0790507 9.54764 1.98955 9.24792L7.98898 8.30673C8.7482 8.18762 9.40269 7.68711 9.73946 6.96807L12.3634 1.36577Z' fill='%23C5C5C5'/%3E%3C/svg%3E") 0 -12px repeat-x;
  background-size: 16px 24px;
}

.star {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg width='29' height='58' viewBox='0 0 29 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3634 30.3658C13.2117 28.5544 15.6845 28.5421 16.5495 30.3449L19.2564 35.9867C19.5962 36.695 20.2456 37.1866 20.997 37.3045L27.0105 38.2479C28.921 38.5476 29.6752 40.998 28.2885 42.4L24.0019 46.7338C23.4487 47.2931 23.1961 48.1009 23.3267 48.8926L24.3596 55.1492C24.6875 57.1354 22.6887 58.652 20.9756 57.7168L15.5259 54.742C14.8439 54.3697 14.0295 54.3718 13.3492 54.7476L8.03963 57.6809C6.32625 58.6275 4.31657 57.1105 4.64537 55.1188L5.67326 48.8926C5.80394 48.1009 5.55128 47.2931 4.99807 46.7338L0.711473 42.4C-0.675215 40.998 0.0790507 38.5476 1.98955 38.2479L7.98898 37.3067C8.7482 37.1876 9.40269 36.6871 9.73946 35.9681L12.3634 30.3658Z' fill='%23FBB03B'/%3E%3Cpath d='M12.3634 1.36577C13.2117 -0.445575 15.6845 -0.457906 16.5495 1.3449L19.2564 6.98673C19.5962 7.69503 20.2456 8.18664 20.997 8.30453L27.0105 9.24792C28.921 9.54764 29.6752 11.998 28.2885 13.4L24.0019 17.7338C23.4487 18.2931 23.1961 19.1009 23.3267 19.8926L24.3596 26.1492C24.6875 28.1354 22.6887 29.652 20.9756 28.7168L15.5259 25.742C14.8439 25.3697 14.0295 25.3718 13.3492 25.7476L8.03963 28.6809C6.32625 29.6275 4.31657 28.1105 4.64537 26.1188L5.67326 19.8926C5.80394 19.1009 5.55128 18.2931 4.99807 17.7338L0.711473 13.4C-0.675215 11.998 0.0790507 9.54764 1.98955 9.24792L7.98898 8.30673C8.7482 8.18762 9.40269 7.68711 9.73946 6.96807L12.3634 1.36577Z' fill='%23C5C5C5'/%3E%3C/svg%3E");
  cursor: pointer;
  background-size: 20px;
}
.star.active, .star--active {
  background-position: 0 -20px;
}
.star-rating {
  display: flex;
  gap: 8px;
}
.star-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #F6F6F6;
  border-radius: 3px;
  padding: 14px 25px;
}
@media (max-width: 767px) {
  .star-block {
    padding: 10px 15px;
  }
}

.file-gallery {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}
.file-gallery li {
  position: relative;
  width: 65px;
  height: 65px;
  display: flex;
  text-align: center;
  border: 1px solid #F6F6F6;
}
.file-gallery li img {
  margin: auto;
  max-height: 100%;
  border-radius: 3px;
}
.file-gallery__close {
  position: absolute;
  right: -9px;
  top: -9px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  border-radius: 50%;
  background: var(--color-link) url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 15.0002L15 1.00024' stroke='white' stroke-width='1.3' stroke-linecap='round'/%3E%3Cpath d='M15.001 15.0002L1.00098 1.00024' stroke='white' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E") 50% no-repeat;
  background-size: 8px;
}
.file-gallery__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}
.file-gallery__add {
  width: 63px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 13px;
  line-height: 14px;
  gap: 8px;
  border-radius: 5px;
  box-shadow: 0 0 0 1px var(--color-dark);
}

.cart-empty {
  padding: 25px 30px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cart-empty {
    padding: 20px 16px;
  }
}
.cart-empty__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cart-empty__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.cart-empty__title span {
  color: var(--color-link-hover);
}
.cart-empty__text {
  opacity: 0.6;
  margin-bottom: 24px;
}
.cart-empty__form {
  display: flex;
  gap: 0 40px;
}
@media (max-width: 767px) {
  .cart-empty__form {
    flex-direction: column;
  }
}

.basket-item {
  border-radius: 10px;
  position: relative;
  padding: 25px;
  margin-bottom: 30px;
  display: flex;
  gap: 14px 28px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .basket-item {
    flex-direction: column;
    padding: 15px;
  }
}
.basket-item__del {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 20px;
  color: var(--color-grey);
  transition: color 0.15s;
}
@media (max-width: 767px) {
  .basket-item__del {
    font-size: 0;
    gap: 0;
    right: 10px;
    top: 10px;
  }
}
.basket-item__del:hover {
  color: var(--color-link);
}
.basket-item__del span {
  background-color: var(--color-light);
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--color-text);
}
.basket-item__main {
  display: flex;
  gap: 28px;
}
@media (max-width: 767px) {
  .basket-item__main {
    gap: 14px;
  }
}
.basket-item__image {
  width: 140px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .basket-item__image {
    width: 78px;
  }
}
.basket-item__image img {
  border-radius: 5px;
}
.basket-item__aside {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 92px;
}
@media (min-width: 768px) {
  .basket-item__aside {
    padding-top: 40px;
    padding-left: 0;
    align-items: flex-end;
    align-self: flex-end;
  }
}
.basket-item__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.basket-item__title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: currentColor;
  transition: color 0.15s;
}
@media (max-width: 767px) {
  .basket-item__title {
    font-size: 14px;
    line-height: 18px;
  }
}
.basket-item__title:hover {
  color: var(--color-link-hover);
}
.basket-item__price {
  margin-top: auto;
}
.basket-item__price-title {
  color: var(--color-grey);
  font-size: 15px;
}
@media (max-width: 767px) {
  .basket-item__price-title {
    font-size: 12px;
  }
}
.basket-item__price-count {
  display: flex;
  gap: 5px;
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .basket-item__price-count {
    font-size: 18px;
  }
}
.basket-item__article {
  font-size: 13px;
  line-height: 20px;
  color: var(--color-grey);
}
@media (max-width: 767px) {
  .basket-item__article {
    font-size: 12px;
  }
}
.basket-item__article span {
  opacity: 0.7;
}
.basket-item__info {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 24px;
  margin: 5px 0;
}
.basket-item__info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--color-grey);
}
@media (max-width: 767px) {
  .basket-item__info li {
    justify-content: space-between;
    width: 100%;
  }
}
.basket-item__info li span {
  font-size: 13px;
  font-weight: 500;
  background-color: var(--color-green);
  border-radius: 5px;
  padding: 0 7px;
  color: #fff;
}
.basket-item__total {
  display: flex;
  gap: 5px;
  font-weight: bold;
  font-size: 34px;
  line-height: 30px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .basket-item__total {
    font-size: 30px;
  }
}
.basket-item__sold {
  margin-top: auto;
  color: var(--color-link);
  font-size: 15px;
}
.basket-item--small {
  margin-bottom: 0;
  border-radius: 0;
  padding: 0;
}
.basket-item--small .basket-item__image {
  width: 85px;
  opacity: 0.5;
}
.basket-item--small .basket-item__main {
  gap: 20px;
}
.basket-item--small .basket-item__content {
  gap: 2px;
}
.basket-item--small .basket-item__title {
  font-size: 16px;
}
.basket-item--small .basket-item__info li {
  font-size: 15px;
  line-height: 22px;
}
.basket-item--small .basket-item__info li span {
  font-size: 11px;
}

.order-box {
  background-color: var(--color-grey);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .order-box {
    padding: 15px;
    gap: 20px;
  }
}
.order-box__title {
  font-size: 30px;
  line-height: 120%;
  font-weight: 800;
  color: #fff;
}
@media (max-width: 767px) {
  .order-box__title {
    font-size: 20px;
  }
}
.order-box__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-box__list li {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .order-box__list li {
    font-size: 15px;
  }
}
.order-box__total {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 28px;
  line-height: 30px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .order-box__total {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .order-box__total li:last-child {
    font-size: 35px;
  }
}

.promo-code__title {
  margin-bottom: 4px;
}
.promo-code__form {
  display: flex;
  position: relative;
}
.promo-code__input {
  width: 100%;
  display: block;
  border: none;
  padding: 0 20px;
  border-radius: 10px;
  background-color: #fff;
  height: 50px;
}
.promo-code__button {
  background-color: var(--color-green);
  color: #fff;
  position: absolute;
  border: none;
  right: 0;
  top: 0;
  height: 50px;
  padding: 0 20px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
}

.sold {
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  padding: 20px 25px;
}
@media (max-width: 767px) {
  .sold {
    padding: 15px;
  }
}
.sold-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  gap: 20px;
  align-items: center;
}
@media (max-width: 767px) {
  .sold-title {
    font-size: 16px;
  }
}
.sold-title.active svg {
  transform: rotate(180deg);
}
.sold-content {
  padding-top: 20px;
  display: none;
}
.sold-items .basket-item:not(:first-child) {
  position: relative;
  padding-top: 20px;
  margin-top: 20px;
}
.sold-items .basket-item:not(:first-child)::before {
  content: "";
  right: -25px;
  left: -25px;
  height: 1px;
  background-color: #F2F2F2;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .sold-items .basket-item:not(:first-child)::before {
    right: -15px;
    left: -15px;
  }
}

.order-confirm {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-user {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .order-user {
    order: -1;
    gap: 15px;
  }
}
.order-user li {
  font-size: 17px;
  color: var(--color-grey);
}
@media (max-width: 767px) {
  .order-user li {
    font-size: 14px;
  }
}
.order-user li a {
  display: flex;
  align-items: center;
  color: var(--color-text);
  gap: 8px;
  padding: 12px 0;
}

.order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .order-header {
    flex-direction: column;
    align-items: normal;
  }
}

.order-tabs {
  display: flex;
  gap: 15px;
}
.order-tabs__item {
  border-radius: 5px 5px 0 0;
  padding: 12px 30px;
  background-color: var(--color-light-dark);
  font-size: 17px;
  cursor: pointer;
  color: currentColor;
  white-space: nowrap;
  user-select: none;
}
@media (max-width: 767px) {
  .order-tabs__item {
    flex-grow: 1;
    flex-basis: 0;
    text-align: center;
    font-size: 15px;
  }
}
.order-tabs__item.active {
  background-color: #fff;
}

.order-items {
  padding: 50px 25px;
  background-color: #fff;
  border-radius: 0 5px 5px 5px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .order-items {
    padding: 15px;
  }
}

.order-item__title {
  font-size: 24px;
  line-height: 120%;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .order-item__title {
    font-size: 18px;
  }
}

.delivery-box {
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  gap: 15px 30px;
  padding: 30px;
}
@media (max-width: 1023px) {
  .delivery-box {
    flex-direction: column;
    padding: 15px;
  }
}
.delivery-box__content {
  width: 100%;
}
.delivery-box__content blockquote {
  display: block;
  background: var(--color-light) url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 15C0 17.0625 0.375 18.9375 1.21875 20.8125C2.0625 22.6875 3.09375 24.2812 4.40625 25.5938C5.71875 27 7.3125 28.0312 9.1875 28.7812C11.0625 29.5312 13.0312 30 15 30C16.9688 30 18.9375 29.625 20.8125 28.875C22.6875 28.125 24.2812 27 25.5938 25.6875C26.9062 24.2812 27.9375 22.6875 28.7812 20.9062C29.625 19.0312 30 17.1562 30 15.0938C30 13.0312 29.625 11.1562 28.7812 9.28125C27.9375 7.40625 26.9062 5.8125 25.5938 4.5C24.2812 3.09375 22.6875 2.0625 20.8125 1.3125C18.9375 0.5625 17.0625 0 15 0C12.9375 0 11.0625 0.375 9.1875 1.21875C7.3125 2.0625 5.71875 3.09375 4.40625 4.40625C3.09375 5.71875 1.96875 7.3125 1.21875 9.1875C0.46875 11.0625 0 13.0312 0 15ZM3.75 15C3.75 12.9375 4.21875 11.0625 5.25 9.375C6.28125 7.6875 7.59375 6.28125 9.375 5.25C11.1562 4.21875 12.9375 3.75 15 3.75C17.0625 3.75 18.9375 4.21875 20.625 5.25C22.3125 6.28125 23.7188 7.6875 24.75 9.375C25.7812 11.0625 26.25 12.9375 26.25 15C26.25 17.0625 25.7812 18.9375 24.75 20.625C23.7188 22.3125 22.4062 23.7188 20.625 24.75C18.8438 25.7812 17.0625 26.25 15 26.25C12.9375 26.25 11.0625 25.6875 9.375 24.75C7.6875 23.8125 6.28125 22.4062 5.25 20.625C4.21875 18.8438 3.75 17.0625 3.75 15ZM11.25 9.375C11.25 10.0312 11.4375 10.9688 11.7188 12.1875C12 13.4062 12.375 14.5312 12.6562 15.4688L13.125 16.875C13.125 17.4375 13.3125 17.8125 13.6875 18.1875C14.0625 18.5625 14.4375 18.75 15 18.75C15.5625 18.75 15.9375 18.5625 16.3125 18.1875C16.6875 17.8125 16.875 17.4375 16.875 16.875L18.75 9.375C18.75 8.34375 18.375 7.40625 17.625 6.75C16.875 6.09375 16.0312 5.625 15 5.625C13.9688 5.625 13.125 6 12.375 6.75C11.625 7.40625 11.25 8.34375 11.25 9.375ZM13.125 22.5C13.125 23.0625 13.3125 23.4375 13.6875 23.8125C14.0625 24.1875 14.4375 24.375 15 24.375C15.5625 24.375 15.9375 24.1875 16.3125 23.8125C16.6875 23.4375 16.875 23.0625 16.875 22.5C16.875 21.9375 16.6875 21.4688 16.3125 21.1875C15.9375 20.9062 15.4688 20.7188 15 20.625C14.5312 20.5312 14.0625 20.7188 13.6875 21.1875C13.3125 21.5625 13.125 22.0312 13.125 22.5Z' fill='%23C02235'/%3E%3C/svg%3E") 24px 20px no-repeat;
  padding: 20px 24px 20px 72px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .delivery-box__content blockquote {
    background-size: 20px;
    background-position: 15px 15px;
    padding: 15px 15px 15px 50px;
  }
}
.delivery-box__content ul {
  margin: 20px 0 20px 20px;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.delivery-box__content ul li::marker {
  color: var(--color-link);
}
.delivery-box__aside {
  max-width: 400px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .delivery-box__aside {
    order: -1;
    width: 100%;
  }
}
.delivery-box__aside img {
  border-radius: 5px;
}

.delivery-item {
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.delivery-item__image {
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.delivery-item__image img {
  margin: auto;
  max-height: 100%;
}
.delivery-item__title {
  display: block;
  border-radius: 5px;
  background-color: var(--color-light);
  padding: 10px 20px;
  color: var(--color-dark);
  transition: 0.15s;
}
.delivery-item__title:hover {
  background-color: var(--color-link);
  color: #fff;
}

.about {
  display: flex;
  gap: 20px 40px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .about {
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .about-content {
    font-size: 17px;
    line-height: 26px;
  }
}
.about-content h1 {
  margin-bottom: 15px;
}
.about-aside {
  width: 430px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .about-aside {
    width: 100%;
    max-width: 430px;
    order: -1;
    margin-left: auto;
    margin-right: auto;
  }
}
.about-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: url(../img/about-back.jpg) 50% 100% no-repeat;
  border-radius: 10px;
  height: calc(100% - 30px);
}
@media (max-width: 1023px) {
  .about-image {
    height: 460px;
    margin-top: 30px;
  }
  .about-image img {
    width: 300px;
  }
}

.about-number {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  min-height: 100%;
}
.about-number__value {
  color: var(--color-link);
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .about-number__value {
    font-size: 35px;
  }
}
.about-number__text {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .about-number__text {
    font-size: 15px;
  }
}

.gallery-item {
  border-radius: 10px;
  display: block;
  height: 220px;
  background: 50% no-repeat;
  background-size: cover;
}

.map {
  position: absolute;
  inset: 0;
}
@media (max-width: 767px) {
  .map {
    height: 570px;
    position: relative;
  }
}
.map-block {
  position: relative;
}
@media (min-width: 768px) {
  .map-block {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .map-container {
    pointer-events: none;
  }
}

.map-contact {
  pointer-events: auto;
  background-color: var(--color-dark);
  padding: 30px;
  position: relative;
  max-width: 430px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767px) {
  .map-contact {
    border-radius: 0;
    margin-left: calc(var(--gutter-site) * -1);
    margin-right: calc(var(--gutter-site) * -1);
    padding: 24px 16px;
  }
}
.map-contact__item {
  position: relative;
  padding-left: 30px;
  color: #fff;
}
.map-contact__icon {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
}
.map-contact__title {
  opacity: 0.5;
  margin-bottom: 2px;
}
.map-contact__text {
  font-size: 18px;
}
.map-contact__text a {
  color: var(--color-link-hover);
  font-weight: 500;
}
.map-contact__text span {
  font-size: 16px;
  opacity: 0.5;
}
.map-contact__phones {
  width: 100%;
}
.map-contact__phones td {
  padding: 2px 0;
  font-size: 18px;
}
.map-contact__phones td:last-child {
  text-align: right;
  opacity: 0.5;
}
.map-contact__phones td a {
  font-size: 20px;
  font-weight: bold;
  color: currentColor;
}

.review-chart {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.review-chart__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-chart__count {
  font-size: 45px;
  line-height: 40px;
  white-space: nowrap;
  margin-bottom: 20px;
}
.review-chart__line {
  width: 100%;
  border-radius: 2px;
  background-color: #EAEAEA;
}
.review-chart__line span {
  display: block;
  background-color: var(--color-link);
  border-radius: 2px;
  height: 3px;
}
.review-chart__value {
  font-size: 15px;
  white-space: nowrap;
  opacity: 0.4;
}

.auth-block {
  background-color: #fff;
  border-radius: 10px;
  padding: var(--offset) 16px;
}
.auth-block__container {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.auth-block__container.long {
  max-width: 660px;
}
.auth-block__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .auth-block__title {
    font-size: 18px;
  }
}

.lk-menu {
  background-color: var(--color-dark);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lk-menu__item {
  display: block;
  padding: 12px 16px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: border-color 0.15s;
}
.lk-menu__item.active {
  background-color: #fff;
  color: currentColor;
}
.lk-menu__item:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.lk-menu__item.link {
  color: var(--color-link-hover);
}

.lk-box {
  padding: 30px 40px;
  border-radius: 10px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .lk-box {
    padding: 15px;
  }
}
.lk-box__title {
  font-size: 40px;
  line-height: 120%;
  font-weight: bold;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .lk-box__title {
    font-size: 24px;
  }
}
.lk-box__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .lk-box__items {
    gap: 15px;
  }
}

.history-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .history-tag {
    gap: 7px;
  }
}
.history-tag__item {
  background-color: var(--color-light-dark);
  color: var(--color-text);
  font-size: 15px;
  line-height: 20px;
  padding: 8px 16px;
  border-radius: 5px;
  user-select: none;
}
@media (max-width: 767px) {
  .history-tag__item {
    font-size: 12px;
    line-height: 16px;
    padding: 4px 10px;
  }
}
.history-tag__item.active {
  background-color: var(--color-link);
  color: #fff;
}

.history {
  margin-bottom: 30px;
  border-radius: 10px;
  border: 1px solid #ECECEC;
  padding: 20px 30px;
}
@media (max-width: 767px) {
  .history {
    padding: 10px;
    margin-bottom: 20px;
  }
}
.history.active {
  border-color: var(--color-text);
}
.history.active .history-info,
.history.active .history-footer__preview {
  display: none;
}
.history-header {
  display: flex;
  justify-content: space-between;
}
.history-header__number {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 25px;
  font-weight: 500;
  gap: 15px;
}
@media (max-width: 767px) {
  .history-header__number {
    font-size: 18px;
    gap: 10px;
  }
}
.history-header__number::after {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--color-light) url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.0872 1.40039L6.14322 5.40839L1.19922 1.40039' stroke='%232F3132' stroke-width='1.3' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 50% no-repeat;
  border-radius: 50%;
}
.history-header__price {
  font-size: 26px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .history-header__price {
    font-size: 18px;
  }
}
.history-info {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.history-info li {
  color: #979797;
  line-height: 20px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .history-info li {
    font-size: 12px;
  }
}
.history-info li b {
  color: var(--color-text);
}
.history-footer {
  display: flex;
  margin-top: 16px;
  gap: 20px;
}
@media (max-width: 767px) {
  .history-footer {
    gap: 10px;
  }
}
.history-footer__preview {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 767px) {
  .history-footer__preview {
    gap: 7px;
  }
}
.history-footer__preview img {
  width: 52px;
  border: 1px solid var(--color-light-dark);
  border-radius: 5px;
}
@media (max-width: 767px) {
  .history-footer__preview img {
    width: 38px;
  }
}
.history-footer__button {
  align-self: flex-end;
  margin-left: auto;
  width: 100%;
  max-width: 212px;
}
@media (max-width: 767px) {
  .history-footer__button {
    width: auto;
  }
  .history-footer__button .btn {
    height: 35px;
    font-size: 14px;
    padding: 0 10px;
  }
}
.history-footer__button .btn {
  background-color: #EEEEEE;
  color: #979797;
}
.history-content {
  display: none;
  margin-top: 20px;
}
.history-params {
  background-color: var(--color-light);
  padding: 20px 25px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #646464;
}
@media (max-width: 767px) {
  .history-params {
    font-size: 12px;
    line-height: 14px;
    padding: 10px;
  }
}
.history-params span {
  color: var(--color-text);
}

.history-basket {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .history-basket {
    gap: 10px;
  }
}
.history-basket__image {
  width: 80px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .history-basket__image {
    width: 38px;
  }
}
.history-basket__image img {
  border: 1px solid var(--color-light-dark);
  border-radius: 5px;
  display: block;
}
.history-basket__title {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .history-basket__title {
    font-size: 14px;
  }
}
.history-basket__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.history-basket__params {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 40px;
  max-width: 420px;
}
@media (max-width: 767px) {
  .history-basket__params {
    flex-direction: column;
  }
}
.history-basket__params li {
  font-size: 15px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .history-basket__params li {
    font-size: 12px;
    line-height: 14px;
  }
}
.history-basket__params li span {
  color: var(--color-text);
  font-weight: bold;
}
.history-basket__price {
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .history-basket__price {
    font-size: 16px;
  }
}
.history-basket-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.not-found {
  background: url(../img/not-found.jpg) 50% no-repeat;
  background-size: cover;
  color: #fff;
}
@media (max-width: 767px) {
  .not-found .breadcrumbs {
    justify-content: center;
  }
}
.not-found .breadcrumbs li {
  color: rgba(255, 255, 255, 0.7);
}
.not-found .breadcrumbs li::after {
  background-color: #fff;
}
.not-found .breadcrumbs li a {
  color: #FFF;
}
.not-found__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 80px 0 20px;
}
@media (max-width: 767px) {
  .not-found__content {
    margin-top: 20px;
  }
}
.not-found__404 {
  font-size: 300px;
  line-height: 260px;
  font-weight: 900;
}
@media (max-width: 767px) {
  .not-found__404 {
    font-size: 150px;
    line-height: 150px;
  }
}
.not-found__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .not-found__title {
    font-size: 20px;
  }
}
.not-found__text {
  opacity: 0.7;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .not-found__text {
    font-size: 18px;
  }
}

.how-text {
  opacity: 0.7;
}
@media (min-width: 1024px) {
  .how-text {
    font-size: 20px;
    line-height: 140%;
  }
}

.how-item {
  margin-top: 30px;
  padding: 34px 40px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .how-item {
    padding: 15px;
    gap: 15px;
    margin-top: 15px;
  }
}
.how-item img {
  border-radius: 5px;
  display: block;
}
.how-item__header {
  display: flex;
  gap: 14px;
}
@media (min-width: 768px) {
  .how-item__header {
    font-size: 18px;
  }
}
.how-item__header span {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: var(--color-link);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  margin-top: -4px;
}

.mobile-panel {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  display: flex;
  box-shadow: 0 1px 34px rgba(0, 0, 0, 0.09);
  z-index: 20;
}
.mobile-panel__item {
  position: relative;
  flex-grow: 1;
  flex-basis: 0;
  display:flex;
  justify-content:center;
}
.mobile-panel__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-text);
  height: 58px;
  width: 58px;
  background: var(--color-light);
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
  gap: 5px;
  position: relative;
}
.mobile-panel__count {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-link);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 60%;
  top: 0px;
  box-shadow: 0 0 0 2px #fff;
  transform: translateX(5px);
}

@media (max-width: 1391px) {
  .container {
    max-width: 1200px;
  }
  .xl-col-1 {
    width: 8.33333333%;
  }
  .xl-col-2 {
    width: 16.66666666%;
  }
  .xl-col-3 {
    width: 24.99999999%;
  }
  .xl-col-4 {
    width: 33.33333332%;
  }
  .xl-col-5 {
    width: 41.66666665%;
  }
  .xl-col-6 {
    width: 49.99999998%;
  }
  .xl-col-7 {
    width: 58.33333331%;
  }
  .xl-col-8 {
    width: 66.66666664%;
  }
  .xl-col-9 {
    width: 74.99999997%;
  }
  .xl-col-10 {
    width: 83.3333333%;
  }
  .xl-col-11 {
    width: 91.66666663%;
  }
  .xl-col-12 {
    width: 99.99999996%;
  }
  .xl-hidden {
    display: none;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 1024px;
  }
  .lg-col-1 {
    width: 8.33333333%;
  }
  .lg-col-2 {
    width: 16.66666666%;
  }
  .lg-col-3 {
    width: 24.99999999%;
  }
  .lg-col-4 {
    width: 33.33333332%;
  }
  .lg-col-5 {
    width: 41.66666665%;
  }
  .lg-col-6 {
    width: 49.99999998%;
  }
  .lg-col-7 {
    width: 58.33333331%;
  }
  .lg-col-8 {
    width: 66.66666664%;
  }
  .lg-col-9 {
    width: 74.99999997%;
  }
  .lg-col-10 {
    width: 83.3333333%;
  }
  .lg-col-11 {
    width: 91.66666663%;
  }
  .lg-col-12 {
    width: 99.99999996%;
  }
  .lg-hidden {
    display: none;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 768px;
  }
  .md-col-1 {
    width: 8.33333333%;
  }
  .md-col-2 {
    width: 16.66666666%;
  }
  .md-col-3 {
    width: 24.99999999%;
  }
  .md-col-4 {
    width: 33.33333332%;
  }
  .md-col-5 {
    width: 41.66666665%;
  }
  .md-col-6 {
    width: 49.99999998%;
  }
  .md-col-7 {
    width: 58.33333331%;
  }
  .md-col-8 {
    width: 66.66666664%;
  }
  .md-col-9 {
    width: 74.99999997%;
  }
  .md-col-10 {
    width: 83.3333333%;
  }
  .md-col-11 {
    width: 91.66666663%;
  }
  .md-col-12 {
    width: 99.99999996%;
  }
  .md-hidden {
    display: none;
  }
}
@media (max-width: 767px) {
  .sm-col-1 {
    width: 8.33333333%;
  }
  .sm-col-2 {
    width: 16.66666666%;
  }
  .sm-col-3 {
    width: 24.99999999%;
  }
  .sm-col-4 {
    width: 33.33333332%;
  }
  .sm-col-5 {
    width: 41.66666665%;
  }
  .sm-col-6 {
    width: 49.99999998%;
  }
  .sm-col-7 {
    width: 58.33333331%;
  }
  .sm-col-8 {
    width: 66.66666664%;
  }
  .sm-col-9 {
    width: 74.99999997%;
  }
  .sm-col-10 {
    width: 83.3333333%;
  }
  .sm-col-11 {
    width: 91.66666663%;
  }
  .sm-col-12 {
    width: 99.99999996%;
  }
  .sm-hidden {
    display: none;
  }
}
@media (min-width: 1392px) {
  .xl-visible {
    display: none;
  }
  .xl-flex {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .lg-visible {
    display: none;
  }
  .lg-flex {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .md-visible {
    display: none;
  }
  .md-flex {
    display: flex;
  }
}
@media (min-width: 768px) {
  .sm-visible {
    display: none;
  }
  .sm-flex {
    display: flex;
  }
}

.has-error .input, 
.has-error input, 
.has-error textarea, 
.has-error email {
  border: solid 1px var(--color-link-hover) !important;
}

.layout-content #info-timer{
  color:var(--color-dark);
}

.noty_type__error, .noty_type__success {
  color: white;
  padding: 1rem;
  font-weight: bold;
  margin-bottom: .1rem;
}
.noty_type__error {
  background: var(--color-link-hover);
}
.noty_type__success {
  background: #75B047;
}
.logotype--small a .logotype-title {
  color: var(--color-dark);
}
.loader:before {
    animation: dots 2s linear infinite;
    content: '';
  }

@keyframes dots {
    0%, 20% {
      content: '.';
    }
    40% {
      content: '..';
    }
    60% {
      content: '...';
    }
    90%, 100% {
      content: '';
    }
}

.sw-review-item-stars .star { background: none; }


.fz1259 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    text-align: left;
}

.fz1259>input[type=checkbox] {
    cursor: pointer;
    background: 0 0;
    border: 0;
    outline: none;
    width: 0;
    height: 0;
    margin: 0;
    position: relative;
}

.fz1259>input[type=checkbox]::before {
    z-index: 1;
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #A8A8A8;
    background-color: transparent;
    border-radius: 5px;
}

.fz1259>input[type=checkbox]:checked::before {
    background-color: var(--color-link);
    border: 1px solid var(--color-link);
    background: var(--color-link) url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2.64211L3.96842 5.73684L8.70526 1' stroke='white' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 50% 50% no-repeat;
}

.fz1259>label {
    cursor: pointer;
    width: calc(100% - 70px);
}

.warning {
  position: fixed;
  z-index: 40;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  justify-content: center;
  max-width: 1360px;
  width: 100%;
  padding: 20px 30px;
  background-color: var(--color-dark);
  border: 1px solid var(--color-light);
  border-radius: 10px;
  color: var(--color-light);
}

.warning--active {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.warning__text {
  width: calc(100% - 250px);
}
 
.warning__text>a {
  color: var(--color-light);
}
 
.warning__apply {
  width: 200px;
}

@media screen and (max-width: 1391px) {
  .warning {
    max-width: 1168px;
  }
}
 
@media screen and (max-width: 1199px) {
  .warning {
    bottom: 80px;
    max-width: 992px;
  }
}

@media screen and (max-width: 1023px) {
  .warning {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    max-width: 736px;
  }
 
  .warning__text {
    margin-bottom: 20px;
    width: 100%;
  }
 
  .warning__apply {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .warning {
    padding: 20px;
    width: calc(100% - 30px);
  }
 
  .warning__text {
    font-size: 12px;
    line-height: 15px;
  }
}
