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

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul[class] {
  list-style: none;
}
ul {
  padding: 0;
}

ol {
  list-style: none;
  counter-reset: custom-counter;
  padding: 0;
}

ol > li {
  counter-increment: custom-counter;
  margin-bottom: 10px;
  position: relative;
  padding-left: 34px;
}

ol > li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--secondary-background-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
ol ul {
    list-style-type: disc;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  text-decoration: none;
}

a:focus,
a:hover,
a:active {
  outline: none !important;
}

button {
  margin: 0;
  padding: 0;
  vertical-align: top;
  border: 0;
  background: none;
  border-radius: 0;
}

button:focus,
button:hover,
button:active {
  outline: none !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

article>*+* {
  margin-top: 1em;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

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

*:focus,
*:hover,
*:active {
  outline: none !important;
}

input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

input[type="checkbox"]+label {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--primary-background-color);
  border-radius: 4px;
  border: 1px solid var(--secondary-background-color);
  position: relative;
  cursor: pointer;
}

input[type="checkbox"]:checked+label {
  background-color: var(--secondary-background-color);
  border-color: var(--secondary-background-color);
}

input[type="checkbox"]:checked+label:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]+label:hover {
  border-color: var(--secondary-background-color);
}
label {
  cursor: pointer;
}
iframe {
  vertical-align: top;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/* root */
:root {

  /* text color */
  --primary-text-color: #111827;
  --secondary-text-color: #6B7280;
  --tertiary-text-color: #009959;
  --quaternary-text-color: #fff;
  --fifth-text-color: #9CA3AF;
  --six-text-color: #818793;
  --seven-text-color: #00B368;
  --eight-text-color: #D1D5DB;

  /* font-family */
  --primary-font-family: 'Onest', sans-serif;

  /* font-weight */
  --primary-font-weight: 400;
  --secondary-font-weight: 500;
  --tertiary-font-weight: 700;

  /* border-color */
  --primary-border-color: #E5E7EB;
  --secondary-border-color: #111827;
  --tertiary-border-color: #00B368;
  --quaternary-border-color: #111827;
  --fifth-border-color: #1F2937;
  --six-border-color: #D1D5DB;
  --seven-border-color: #fff;

  /* bg-color */
  --primary-background-color: #F6F8FA;
  --secondary-background-color: #00B368;
  --tertiary-background-color: #00A45F;
  --quaternary-background-color: #fff;
  --fifth-background-color: #E5E7EB;
  --six-background-color: #111827;
  --seven-background-color: #1F2937;
  --eight-background-color: #F0FAF6;
  --nine-background-color: #F3F4F6;
  --primary-icon-color: #9CA3AF;
  --secondary-icon-color: #00B368;
}

/* body */
body {
  min-width: 320px;
  color: var(--primary-text-color);
  font-size: 16px;
  font-family: var(--primary-font-family);
  font-weight: var(--primary-font-weight);
  line-height: 1.25;
  letter-spacing: -0.3px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
}

/* p */
p {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.6;
}

/* a */
a {
  color: var(--primary-text-color);
  text-decoration: none;
  transition: color .3s linear;
}

a:hover {
  color: var(--tertiary-text-color);
}

input[type=radio] {
  margin: 0;
}

/* input */
input[type='tel'],
input[type='text'],
input[type='email'],
input[type='password'] {
  margin: 0;
  padding: 0 14px;
  padding-top: 20px;
  width: 100%;
  height: 58px;
  color: var(--primary-text-color);
  font-family: var(--primary-font-family);
  font-weight: var(--primary-font-weight);
  border: 1px solid var(--primary-border-color);
  background: var(--primary-background-color);
  border-radius: 12px;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  transition: .3s all;
}

input[type='tel']:focus,
input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus {
  background: var(--primary-background-color);
}

input[type='tel']::-moz-placeholder,
input[type='text']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='password']::-moz-placeholder {
  color: var(--primary-text-color);
  opacity: 1;
  outline: none;
}

input[type='tel']::-webkit-input-placeholder,
input[type='text']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder {
  color: var(--primary-text-color);
  opacity: 1;
  outline: none;
}

/* textarea */
textarea {
  margin: 0;
  padding: 20px 14px;
  width: 100%;
  height: 216px;
  color: var(--six-text-color);
  font-family: var(--primary-font-family);
  font-weight: var(--primary-font-weight);
  border: 0;
  background: var(--primary-background-color);
  resize: none;
  overflow: auto;
  border-radius: 12px;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  transition: .3s all;
}

textarea:focus {
  background: var(--primary-background-color);
}

textarea::-moz-placeholder {
  color: var(--six-text-color);
  opacity: 1;
  outline: none;
}

textarea::-webkit-input-placeholder {
  color: var(--six-text-color);
  opacity: 1;
  outline: none;
}
fieldset {
  margin: 30px 0;
}
fieldset legend {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
}
fieldset .grid > *:nth-child(2n + 1):last-child {
    grid-column: 1 / -1;
}
fieldset .form-group-select {
  position: relative;
  background: var(--primary-background-color);
  border-radius: 12px;
}

fieldset .form-group-select .select-field:focus {
  background: var(--primary-background-color);
}
fieldset input[type='tel'], fieldset input[type='text'], fieldset input[type='email'], fieldset input[type='password'] {
  border-color: transparent;
}
h1,
.h1 {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.1;
}

h2,
.h2 {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.1;
  margin-top: 40px;
}

h3,
.h3 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.1;
  margin-top: 40px;
}

h4,
.h4 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.1;
  margin-top: 40px;
}

h5,
.h5 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.1;
  margin-top: 40px;
}

h6,
.h6 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.1;
  margin-top: 40px;
}

ul.img-style {
  list-style: none;
}

ul.img-style li:before {
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  margin: 0 10px 0 0;
  width: 24px;
  height: 24px;
  background-image: url(/image/catalog/icons/foot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.img-style li {
  margin: 0 0 10px;
  padding-left: 34px;
  font-size: 18px;
  position: relative;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  background-color: transparent;
}
.h100 {
  height: 100%;
}
.w100 {
  width: 100%;
}
.tile-style {
  flex-wrap: wrap;
  display: flex;
  gap: 10px;
}

.tile-style a {
  padding: 10px 16px;
  border: 1px solid;
  border-radius: 32px;
  background-color: #fff;
  border-color: var(--secondary-border-color);
  color: var(--primary-text-color);
  text-decoration: none;
}

.tile-style a:hover {
  background-color: var(--secondary-background-color);
  border-color: var(--tertiary-border-color);
  color: #fff;
}

.bg-center {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.table {
  width: 100%;
  max-width: 100%;
}

.table-semi-bordered td {
  border-top: 1px solid var(--primary-border-color);
  border-bottom: 1px solid var(--primary-border-color);
  padding: 20px 0;
}
.overflow-x-scroll {
  overflow-x: scroll;
  scrollbar-width: none;
}
.divider {
    text-align: center;
    font-weight: bold;
    position: relative;
    margin: 15px 0;
}
.divider::before,
.divider::after {
  content: "";
  display: inline-block;
  width: 100px;
  border-top: 1px solid #2C2C2C;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.divider::before {
  right: 0;
}

.divider::after {
  left: 0;
}
.form-horizontal {
  display: flex;
  gap: 12px;
}

.form-vertical .form-group+.form-group {
  margin-top: 10px;
}
.form-vertical .btn_md-size + .btn_md-size {
  margin-top: 15px;
}
.form-vertical button {
  width: 100%;
  margin-top: 24px;
}

.form-group {
  position: relative;
}

.form-group.form-group-select .label {
  display: block;
  top: 9px;
  margin: 0;
  color: var(--fifth-text-color) !important;
  font-size: 12px !important;
  font-weight: 400;
  line-height: 16px;
  cursor: text;
  z-index: 1;
}

.modal .form-group-select .select-field+.select__arrow:after {
  position: absolute;
  display: block;
  margin: -4px 0 0;
  width: 15px;
  height: 8px;
  top: 50%;
  right: 20px;
  transition: 0.3s transform;
  z-index: 2;
  content: "";
}

.modal .form-group-select .select {
  position: static;
}
.slider {
  position: relative;
}
.slider-wrapper {
    overflow: hidden;
    width: 100%; 
    position: relative;
}
.slider-track {
    display: flex;
    transition: transform 0.3s ease;
}
.slider-item {
  padding: 0 15px;
}
.slider-left {
  background: url(/image/catalog/icons/slider-left.svg) center no-repeat;
  background-size: 24px;
  left: -60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  z-index: 10;
  display: none;
  width: 50px;
  height: 50px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.slider-right {
  background: url(/image/catalog/icons/slider-right.svg) center no-repeat;
  background-size: 24px;
  right: -60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  z-index: 10;
  display: none;
  width: 50px;
  height: 50px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}
.form-group label,
.form-group .label {
  position: absolute;
  top: 20px;
  left: 14px;
  font-size: 16px;
  color: var(--secondary-text-color);
  transform-origin: 0 0;
  transition: transform .2s cubic-bezier(.25, .8, .25, 1);
  will-change: transform;
  pointer-events: none;
}

.form-group input:focus+label,
.form-group input:hover+label,
.form-group input:not(:placeholder-shown)+label,
.form-group input:focus+.label,
.form-group input:hover+.label,
.form-group input:not(:placeholder-shown)+.label {
  color: var(--fifth-text-color);
  transform: translateY(-10px) scale(.75);
}

.form-group.input-error>span {
  position: absolute;
  display: none;
  right: 0;
  bottom: 71px;
  padding: 5px 15px;
  background: #ff0d65;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.form-group.input-error textarea+span {
  top: -38px;
  bottom: unset;
}

.form-group.input-error>span:after {
  content: '';
  position: absolute;
  right: 14px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #ff0d65 transparent transparent transparent;
  bottom: -7px;
}

.form-group.input-error:hover span {
  display: block;
}

.form-group.input-error:before {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 19px;
  top: 30px;
  right: 16px;
  transform: translateY(-50%);
  background: url(/image/catalog/icons/warning.png) center no-repeat;
  background-size: 100%;
  cursor: pointer;
}

.form-group.input-success:before {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 19px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: url(/image/catalog/icons/success.png) center no-repeat;
  background-size: 100%;
  cursor: pointer;
  z-index: 3;
}

.form-vertical .form-group-panel+.form-group-panel {
  margin: 0;
}

.form-group-panel .panel-button {
  cursor: pointer;
  padding: 7px 0;
}

.form-group-panel .panel-button:after {
  position: absolute;
  display: block;
  margin: -4px 0 0;
  width: 15px;
  height: 8px;
  top: 50%;
  right: 20px;
  background: url(/image/catalog/icons/select-arrow.svg) center no-repeat;
  z-index: 2;
  transform: rotate(270deg);
  content: "";
}

.panel-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: none;
  -webkit-box-shadow: none;
  transition: none;
  background: #fff;
  z-index: 4;
  padding-bottom: 30px;
}

.panel-inner.active {
  position: relative;
}

.panel-slide .panel-inner {
  transform: translateX(200%);
}

.panel-slide .panel-inner.active {
  transition: transform 0.3s ease;
  transform: translateX(0);
}

.panel-block .panel-inner {
  display: none;
}

.panel-block .panel-inner.active {
  display: block;
  padding-bottom: 0;
}

.panel {
  position: relative;
}

.form-group-panel.active {
  display: block !important;
  margin-bottom: 15px;
}

.form-group-panel.active.disabled {
  display: none !important;
  margin-bottom: 15px;
}

.form-group-panel.active .panel-button {
  font-size: 24px;
  padding-left: 30px;
  font-weight: 500;
}

.form-group-panel.active .panel-button:after {
  transform: rotate(90deg);
  left: 0;
  right: unset;
}
.form-group-panel .panel-button .panel-button-selected {
  display: none;
}

.form-group-panel.active .panel-button .panel-button-selected {
  display: flex;
}
.relative {
  position: relative;
}

.grid {
  display: grid;
}

.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 500;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

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

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

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

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.nowrap {
  white-space: nowrap;
}

img[loading="lazy"] {
  transition: opacity 0.5s;
}

.container {
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}

.row>* {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-top: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
  display: block;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
  display: none;
}

.fade.in {
  opacity: 1;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  opacity: .6;
  background-color: rgb(0 0 0 / 60%);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
}

.modal.opened {
  display: block;
}

.modal-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  width: 700px;
  max-width: 95%;
  max-height: 100%;
  overflow: hidden;
  padding: 45px;
  background: transparent;
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
}

.modal-close {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 10px;
  background: #fff;
  display: flex;
  border-radius: 100%;
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.modal-body {
  padding: 32px;
  border: 1px solid var(--Matt);
  background: #fff;
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  max-height: 90vh;
}

.modal-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1;
}

.modal-subtitle {
  color: var(--fifth-text-color);
  font-size: 16px;
}

.modal-subtitle+div {
  margin-top: 16px;
}

.modal-top {
  margin-bottom: 24px;
}

.modal-icon {
  background: var(--eight-background-color);
  border-radius: 100%;
  padding: 20px;
  width: 80px;
  height: 80px;
}

.modal-information {
  font-weight: 500;
}

.modal-information img {
  margin-right: 10px;
}

.modal-person-image {
  margin-right: 16px;
}

.modal-person-name {
  font-size: 18px;
  font-weight: 500;
}

.modal-person-description {
  color: var(--six-text-color);
  margin-top: 8px;
}
#ya-login iframe {
  max-height: 45px;
}
#ya-login {
  margin-top: 15px;
}
#callback-success .modal-center {
  width: 580px;
}

#callback-success .modal-title,
#oneclick-success .modal-title {
  margin-top: 16px;
}

#oneclick-form .modal-center,
#callback-form .modal-center,
#appointment-modal-form .modal-center,
.sm-modal .modal-center {
  width: 580px;
}
#callback-form .modal-body {
  overflow: auto;
}
#appointment-modal-form .avatar {
  margin-right: 15px;
}

#appointment-modal-form .panel-inner {
  max-height: 330px;
  overflow-y: auto;
  padding-right: 15px;
}

#appointment-modal-form .panel-inner-date {
  min-height: 330px;
  padding-right: 0;
}

#appointment-modal-form .panel-inner-date .form-group-select {
  margin-top: 15px;
}

#appointment-modal-form .panel-inner-staff .staff-item+.staff-item {
  margin-top: 15px;
}

#appointment-modal-form .panel-inner-staff .staff-item {
  cursor: pointer;
}

#appointment-modal-form .panel-inner-staff .staff-specialization {
  color: var(--secondary-text-color);
}
#appointment-modal-form .panel-button-selected .staff-info {
  font-size: 16px;
}
#appointment-modal-form .panel-button-selected .staff-specialization {
  font-weight: 400;
  font-size: 14px;
}
#appointment-modal-form .service_category-name {
  color: var(--secondary-text-color);
  margin-top: 15px;
}

#appointment-modal-form .service-info {
  cursor: pointer;
  width: 100%;
}

#appointment-modal-form .service-description {
  color: var(--secondary-text-color);
}

#appointment-modal-form .service-item {
  cursor: pointer;
}

#appointment-modal-form .panel-inner-service.active {
  padding-bottom: 130px;
}

#appointment-modal-form .buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding: 30px 15px;
  background: #fff;
  box-shadow: 0 12px 48px #0613333d;
  -webkit-box-shadow: 0 12px 48px #0613333d;
}

#appointment-modal-form .time-item {
  border: 1px solid #000;
  border-radius: 12px;
  padding: 10px;
}

#appointment-modal-form .staff-specialization {
  color: var(--fifth-text-color);
}

#appointment-modal-form .date-info {
  margin: 16px 0;
}

#appointment-modal-form .service-price {
  color: var(--seven-text-color);
}

#appointment-modal-form .avatar {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.form-vertical .form-group-panel-child+.form-group-panel-child {
  margin: 0;
}

.form-group-panel-child .panel-child-button {
  cursor: pointer;
  padding: 7px 0;
}

.form-group-panel-child .panel-child-button:after {
  position: absolute;
  display: block;
  margin: -4px 0 0;
  width: 15px;
  height: 8px;
  top: 50%;
  right: 20px;
  background: url(/image/catalog/icons/select-arrow.svg) center no-repeat;
  z-index: 2;
  transform: rotate(270deg);
  content: "";
}

.panel-child-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: none;
  -webkit-box-shadow: none;
  transition: none;
  background: #fff;
  z-index: 4;
}

.panel-child-inner.active {
  position: relative;
}

.panel-child-slide .panel-child-inner {
  transform: translateX(200%);
}

.panel-child-slide .panel-child-inner.active {
  transition: transform 0.3s ease;
  transform: translateX(0);
}

.panel-child-block .panel-child-inner {
  display: none;
}

.panel-child-block .panel-child-inner.active {
  display: block;
}

.panel-child {
  position: relative;
}

.form-group-panel-child.active {
  display: block !important;
  margin-bottom: 15px;
}

.form-group-panel-child.active .panel-child-button {
  padding-left: 30px;
  font-weight: 500;
}

.form-group-panel-child.active .panel-child-button:after {
  transform: rotate(90deg);
  left: 0;
  right: unset;
}

.masked {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.masked_loading {
  border: 3px solid #E5E7EB;
  border-top-color: var(--tertiary-border-color);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  animation: spin 1s linear infinite;
  z-index: 10001;
  position: fixed;
  top: calc(50% - 2em);
  left: calc(50% - 2em);
}
.loading-block {
  position: absolute;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
}
.overlay-block {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
  opacity: 0.3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} 
.loading-block:after {
  border: 3px solid #E5E7EB;
  border-top-color: var(--tertiary-border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  z-index: 10001;
  position: absolute;
  content: "";
  left: -20px;
}

.loading {
  position: relative;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading:after {
  border: 3px solid #E5E7EB;
  border-top-color: var(--tertiary-border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  z-index: 10001;
  position: absolute;
  content: "";
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.breadcrumb {
  margin-bottom: 30px;
  margin-top: 45px;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 10px 10px;
  list-style: none;
}

.breadcrumb li {
  color: var(--six-text-color);
  font-size: 14px;
}

.breadcrumb li:not(:last-child):after {
  content: '/';
}

.breadcrumb li a {
  margin: 0 10px 0 0;
  color: var(--six-text-color);
}

.stickers-left {
  position: absolute;
  z-index: 5;
  left: 24px;
  top: 24px;
}

.sticker {
  padding: 10px 16px;
  margin-bottom: 5px;
  text-align: center;
  border-radius: 24px;
  font-size: 16px;
}

.stickers-right {
  position: absolute;
  z-index: 5;
  right: 24px;
  top: 24px;
}

.stickers-right .sticker {
  margin-bottom: 5px;
}

.stickers-right .sticker img {
  display: block;
  margin-left: auto;
}

.stickers-left .sticker img {
  display: block;
}

.module-block {
  padding: 48px 0;
}

.module-block .module-heading {
  margin: 0 0 30px;
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.3px;
}

.module-block .module-heading.subtitle {
  margin: 0 0 25px;
}

.module-block .module-heading-subtitle {
  margin: 0 0 40px;
  font-size: 18px;
}
.account-menu {
  background: var(--primary-background-color);
  padding: 30px;
  border-radius: 24px;
}
.account-menu-item.active {
  color: var(--tertiary-text-color);
}
.account-menu a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  position: relative;
}
.account-menu > a:not(:first-child) {
  border-top: 1px solid var(--primary-border-color);
}
.account-menu a.active {
  color: var(--seven-text-color);
}
.account-menu > a:after {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(/image/catalog/icons/right-arrow.svg) center no-repeat;
  content: "";
}
.account-menu-customer {
  margin-bottom: 20px;
}
.account-menu-customer .customer-firstname {
  font-weight: 500;
}
.account-menu .bg-center {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-border-color);
}
.account-menu .customer-manager {
  margin-top: 10px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
}
.account-menu .customer-manager img {
  width: 20px;
  height: 20px;
}
.account-menu .customer-manager .customer-manager-name, .account-menu .customer-manager .customer-manager-phone {
  font-weight: 500;
}
.account-menu .customer-manager .customer-manager-description {
  font-size: 14px;
  color: var(--fifth-text-color);
}
#select-city ul {
  columns: 4;
  gap: 15px;
}

#select-city ul li {
  padding: 8px 0;
}

#select-city ul li a {
  display: block;
}

.scrollup {
  position: fixed;
  left: 20px;
  bottom: 50px;
  padding: 10px;
  cursor: pointer;
  display: none;
  text-align: center;
  z-index: 999;
  border-radius: 5px;
  background: var(--secondary-background-color);
}

.scrollup:hover img {
  fill: #fff;
}

.scrollup img {
  width: 20px;
}

/* btn */
.btn {
  display: inline-block;
  vertical-align: top;
  padding: 18px 22px;
  color: var(--quaternary-text-color);
  font-family: var(--primary-font-family);
  font-weight: var(--secondary-font-weight);
  text-align: center;
  border: 1px solid var(--tertiary-border-color);
  background: var(--secondary-background-color);
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 12px;
  cursor: pointer;
  transition: .3s all;
  white-space: nowrap;
}

.btn:hover {
  color: var(--quaternary-text-color);
  background: var(--tertiary-background-color);
}

.btn_md-size {
  padding: 14px 20px;
  border-radius: 12px;
}

.btn_sm-size {
  padding: 5px 16px 6px;
  border-radius: 8px;
}

.btn-block {
  width: 100%;
  display: block;
}

.btn_transparent-color {
  color: var(--tertiary-text-color);
  border-color: var(--primary-border-color);
  background: none;
}

.btn_transparent-color:hover {
  color: var(--quaternary-text-color);
  border-color: var(--tertiary-border-color);
  background: var(--tertiary-background-color);
}

.btn-grey {
  border-color: var(--primary-background-color);
  background: var(--primary-background-color);
  color: var(--six-text-color);
}

.btn-grey:hover {
  border-color: var(--primary-background-color);
  background: var(--primary-background-color);
}

.btn-black {
  border-color: var(--quaternary-border-color);
  background: var(--six-background-color);
}

.btn-black:hover {
  border-color: var(--fifth-border-color);
  background: var(--seven-background-color);
}

.btn_light-color {
  color: var(--seven-text-color);
  border: 0;
  background: var(--eight-background-color);
}

.btn_light-color:hover {
  color: var(--quaternary-text-color);
  background: var(--tertiary-background-color);
}

/* header */
.header {
  margin: 0 0 30px;
  z-index: 30;
  position: relative;
}

/* header__top-panel */
.header__top-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 18px;
  padding: 16px 0 0;
}

/* header__left-col */
.header__left-col {
  display: flex;
  align-items: center;
  gap: 0 60px;
}

/* cities-link */
.cities-link {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cities-link img {
  flex-shrink: 0;
  margin: 0 10px 0 0;
  width: 24px;
}

.cities-link span {
  display: block;
}

/* mail */
.header-mail a,
.footer-mail {
  display: flex;
  align-items: center;
}

.header-mail img,
.footer-mail img {
  flex-shrink: 0;
  margin: 0 10px 0 0;
  width: 24px;
}

.header-mail span,
.footer-mail span {
  display: block;
}

/* header__right-col */
.header__right-col {
  display: flex;
  align-items: center;
  gap: 0 30px;
}

/* working-hours */
.working-hours {
  display: block;
  color: var(--secondary-text-color);
}

/* phone-number */
.phone-number {
  display: block;
  font-weight: var(--tertiary-font-weight);
}

/* messengers */
.messengers {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.messengers a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: var(--primary-background-color);
  border-radius: 6px;
}

/* connection-panel */
.connection-panel {
  display: flex;
  align-items: center;
  gap: 0 12px;
}

/* header__middle-panel */
.header__middle-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 30px;
  margin: 0 0 20px;
}

/* logo */
.logo {
  flex-shrink: 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0 11px;
  letter-spacing: -0.4px;
}

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

.logo img {
  flex-shrink: 0;
  width: 54px;
}

.logo__description {
  display: flex;
  align-items: center;
  gap: 0 11px;
}

.logo__text {
  font-size: 32px;
  line-height: 28px;
  display: block;
  font-weight: var(--tertiary-font-weight);
}

.logo__sm-text {
  display: block;
  font-size: 14px;
  line-height: 18px;
}

.menu-btn {
  position: relative;
  display: none;
  cursor: pointer;
}



/* search-form */
.search-form {
  position: relative;
  width: 100%;
}

.search-form input[type='text'] {
  margin: 0;
  padding: 0 60px 0 16px;
  width: 100%;
  height: 58px;
  color: var(--primary-text-color);
  font-family: var(--primary-font-family);
  font-weight: var(--primary-font-weight);
  border: 0;
  background: var(--primary-background-color);
  border-radius: 12px !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  transition: .3s border-color;
}

.search-form input[type='text']::-moz-placeholder,
{
color: var(--fifth-text-color);
opacity: 1;
outline: none;
}

.search-form input[type='text']::-webkit-input-placeholder {
  color: var(--fifth-text-color);
  opacity: 1;
  outline: none;
}

.search-form__btn {
  position: absolute;
  display: block;
  width: 22px;
  height: 22px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 0;
  border: 0;
  background: url(/image/catalog/icons/search.svg) center no-repeat;
  background-size: 100%;
  cursor: pointer;
}

.search-result .search-result-title {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 30px;
}

.search-result-inner {
  padding: 24px 0;
}

.manufacturer-item {
  padding: 50px 10px;
  cursor: pointer;
  transition: 0.5s;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--primary-border-color);
  background: #fff;
}

.manufacturer-item:hover {
  box-shadow: 0px 5px 10px rgb(11 54 29 / 5%);
  -webkit-box-shadow: 0px 5px 10px rgb(11 54 29 / 5%);
  transform: scale(1.05);
}

.manufacturer-item {
  flex: 0 0 20%;
  max-width: 20%;
}

.comment-form {
  position: relative;
}

.comment-form textarea {
  padding: 30px;
}

.comment-form button {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: auto;
}

#comments .comment {
  margin: 40px 0;
}

.avatar {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}

.comment-text {
  margin-top: 24px;
}

.comment-author {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5px;
}
.comment-group {
  color: var(--six-text-color);
}
.comment-date {
  color: var(--six-text-color);
}
.comment-image {
  height: 200px;
  width: 150px;
  min-width: 150px;
  border-radius: 24px;
  cursor: pointer;
}
.popup-review .modal-body {
  padding: 0;
  background: var(--primary-background-color);
}

.popup-review .review-items {
  margin: 0;
}

.popup-review .review-items .review-item {
  width: 100%;
  padding: 0;
}

.popup-review .review-text {
  -webkit-line-clamp: unset;
  max-height: unset;
}

.form-rating input[type="radio"] {
  display: none;
}

.form-rating .stars {
  display: flex;
  gap: 11px;
}

.form-rating .stars .star {
  width: 25px;
  height: 25px;
  background-image: url('/image/catalog/icons/star-empty.svg');
  background-size: cover;
  cursor: pointer;
}

.form-rating .stars .star.checked {
  background-image: url('/image/catalog/icons/star-act.svg');
}

.form-rating+span {
  margin-left: 22px;
  display: block;
  color: var(--six-text-color);
}

.review-items {
  margin-left: -10px;
  margin-right: -10px;
}

.review-items .review-item {
  padding: 10px;
  width: 33.33%;
}

.review-items .review-item-inner {
  padding: 30px;
  border-radius: 20px;
  background: var(--primary-background-color);
  height: 100%;
}

.review-items .review-top img {
  height: 22px;
  width: auto;
}

.review-items .review-author {
  font-size: 18px;
  font-weight: 500;
}

.review-items .review-date {
  color: var(--six-text-color);
}

.review-items .review-text {
  color: var(--six-text-color);
  margin-top: 24px;
  line-height: 1.6;
  cursor: pointer;
}

.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* Количество строк для отображения */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 8em;
  /* Максимальная высота для 5 строк (line-height * количество строк) */
}

.review-items .review-source-button {
  padding: 7px 14px;
  background: #fff;
  border-radius: 12px;
}

.review-items .review-bottom {
  margin-top: 24px;
}

/* user-panel */
.user-panel {
  display: flex;
  align-items: center;
  gap: 0 24px;
  flex-shrink: 0;
}

.user-panel__item {
  cursor: pointer;
  display: block;
  text-align: center;
}

.user-panel__item img {
  margin: 0 auto 10px;
  width: 24px;
}

.user-panel__text {
  display: block;
  font-size: 14px;
  line-height: 18px;
}

/* main-nav */
.main-nav>ul {
  display: flex;
  align-items: center;
  gap: 0 30px;
  list-style: none;
}

.main-nav>ul>li {
  position: relative;
  cursor: pointer;
}

.main-nav a img+span {
  margin-left: 10px;
}

.main-nav__dropdown {
  position: absolute;
  padding: 25px 0 0;
  width: 240px;
  top: 18px;
  left: -25px;
  opacity: 0;
  visibility: hidden;
  transition: .3s all;
}

.main-nav .top-services .menu-icon-close,
.main-nav .top-categories .menu-icon-close {
  display: none;
}

.main-nav .top-services.close .menu-icon-close,
.main-nav .top-categories.close .menu-icon-close {
  display: block;
}

.main-nav .top-services.close .menu-icon,
.main-nav .top-categories.close .menu-icon {
  display: none;
}

.main-nav>ul>li:hover .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
}

.main-nav__dropdown ul {
  padding: 24px;
  list-style: none;
  background: #fff;
  box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.07);
  border-radius: 24px;
}

.main-nav__dropdown li {
  margin: 0 0 24px;
  letter-spacing: -0.3px;
}

.main-nav__dropdown li:last-child {
  margin: 0;
}

.menu-toggle {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  background: url('/image/catalog/icons/right-arrow.svg') center no-repeat;
  content: "";
}

/* menu-dropdown */
.menu-dropdown {
  position: absolute;
  padding: 20px 0 80px;
  width: 100%;
  top: 185px;
  left: 0;
  border-top: 1px solid var(--primary-border-color);
  background: #fff;
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: 29;
  transition: .3s all;
}

.menu-dropdown.show {
  opacity: 1;
  visibility: visible;
}

.menu-dropdown__in {
  display: flex;
  align-items: flex-start;
}

/* menu-dropdown__nav */
.menu-dropdown__nav {
  flex-shrink: 0;
  margin: 0 45px 0 0;
  width: 395px;
}

.menu-dropdown__nav ul {
  list-style: none;
}

.menu-dropdown__nav li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: .3s background;
}

.menu-dropdown__nav li.has-child a:after {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url('/image/catalog/icons/right-arrow.svg') center no-repeat;
  content: "";
}


.menu-dropdown__nav li a:hover {
  background: var(--primary-background-color);
}

.menu-dropdown__nav .active a {
  background: var(--primary-background-color);
}

.menu-dropdown__icon {
  flex-shrink: 0;
  margin: 0 10px 0 0;
  width: 24px;
}

.menu-dropdown__nav li span {
  display: block;
  font-size: 18px;
  font-weight: var(--secondary-font-weight);
  line-height: 22px;
  letter-spacing: -0.3px;
}

/* menu-dropdown__content */
.menu-dropdown__content {
  width: 100%;
}

.menu-dropdown__item {
  display: none;
  padding: 30px 0 0;
}

.menu-dropdown__item .menu-columns {
  display: flex;
  gap: 5px;
}

.menu-dropdown__item.active {
  display: block;
}

.menu-dropdown__title {
  margin: 0 0 30px;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.3px;
  font-weight: 500;
}

.menu-dropdown .menu-list li {
  padding: 18px 20px;
}

body.no-scroll {
  height: 100%;
  overflow: hidden;
}

#mobile-menu {
  top: 71px;
  position: absolute;
  width: 100%;
  left: 0;
  border-top: 1px solid var(--primary-border-color);
  background: #fff;
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.1);
  display: none;
  transition: .3s all;
  z-index: 31;
}

#menu-mobile-box {
  display: none;
}

#mobile-panel {
  display: none;
}

/* hero-slider */
.hero-slider__item {
  position: relative;
  background: var(--primary-background-color);
  border-radius: 24px;
}

/* hero-slider__content */
.hero-slider__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px 0;
  padding: 50px 40px 108px;
  height: 500px;
  z-index: 3;
}

.hero-slider__title {
  margin: 0 0 25px;
  font-size: 52px;
  line-height: 52px;
  letter-spacing: -0.3px;
}

.hero-slider__title span {
  color: var(--seven-text-color);
}

.hero-slider__item p {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
}

/* hero-section__img */
.hero-section__img {
  position: absolute;
  width: 717px;
  height: 100%;
  top: 0;
  right: 0;
}

.hero-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 24px 24px 0;
}

/* hero-slider-pagination */
.hero-slider .swiper-pagination {
  position: absolute;
  display: flex;
  gap: 0 14px;
  left: 40px !important;
  bottom: 40px !important;
  z-index: 10;
}

.hero-slider .swiper-pagination-bullet {
  margin: 0 !important;
  width: 12px;
  height: 12px;
  background: var(--fifth-background-color);
  border-radius: 100%;
  opacity: 1;
  transition: .3s background;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--seven-text-color);
}

/* select */
.select {
  position: relative;
  width: 100%;
}

.modal .select-field[type="text"],
.modal .select-field {
  border: 0;
  background: none;
  border-radius: 0;
  padding-top: 14px;
}

.modal .form-group-select {
  position: relative;
  background: var(--primary-background-color);
  border-radius: 12px;
}

.select-field[type="text"],
.select-field {
  padding: 0 52px 0 14px;
  width: 100%;
  height: 58px;
  color: var(--primary-text-color);
  font-family: var(--primary-font-family);
  font-weight: var(--primary-font-weight);
  border: 0;
  background: var(--quaternary-background-color);
  border-radius: 12px;
  box-shadow: none;
  -webkit-box-shadow: none;
  z-index: 1;
  cursor: pointer;
}

.modal .select-field[type="text"]:focus,
.modal .select-field:focus {
  background: var(--primary-background-color);
}

.select-field[type="text"]:focus,
.select-field:focus {
  background: var(--quaternary-background-color);
}

.select-field[type="text"]::placeholder {
  color: var(--primary-text-color);
  opacity: 1;
  outline: none;
}

.select_border-dec .select-field[type="text"],
.select_border-dec .select-field {
  border: 1px solid var(--primary-border-color);
}
fieldset .form-group-select input[type="text"] {
  background-color: transparent;
}
.select-list .result-description {
  font-size: 14px;
  color: var(--secondary-text-color);
}

.select-field+span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 32px;
}

.select-result-description {
  padding: 14px 0;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--secondary-text-color);
}

.select-field+.select__arrow::after {
  position: absolute;
  display: block;
  margin: -4px 0 0;
  width: 15px;
  height: 8px;
  top: 50%;
  right: 20px;
  background: url(/image/catalog/icons/select-arrow.svg) center no-repeat;
  transition: 0.3s transform;
  z-index: 2;
  content: "";
}

.select-field.turn+.select__arrow::after {
  transform: rotate(180deg);
}

.select-list {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  border: 1px solid var(--primary-border-color);
  background: var(--primary-background-color);
  border-radius: 12px;
  box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.07);
  animation: fadeIn 0.4s;
  z-index: 10;
  max-height: 225px;
  overflow: auto;
}

.select-list.open {
  display: block;
}

.select-list li {
  padding: 14px;
  color: var(--primary-text-color);
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.select-list li:not(:last-child) {
  border-bottom: 1px solid var(--primary-border-color);
}

.select-list li:hover {
  color: var(--tertiary-text-color);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.form-group-subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* address */
.address {
  display: flex;
  align-items: center;
}

.address img {
  flex-shrink: 0;
  margin: 0 15px 0 0;
  width: 19px;
}

.address__info strong {
  display: block;
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: var(--secondary-font-weight);
  line-height: 22px;
}

.address__info span {
  display: block;
}

/* connection */
.connection {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
  margin-right: 30px;
}

.connection .phone-number {
  font-size: 18px;
  line-height: 22px;
}

/* mail-panel */
.mail-panel {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
}

.mail-panel__link {
  font-size: 18px;
  font-weight: var(--tertiary-font-weight);
  line-height: 22px;
}

.mail-panel__text {
  display: block;
  color: var(--secondary-text-color);
}

/* support */
.support {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

/* messengers-panel */
.messengers-panel {
  display: flex;
  align-items: center;
  gap: 0 14px;
  padding: 11px 14px;
  background: var(--primary-background-color);
  border-radius: 12px;
}

.messengers-panel .messengers a {
  background: var(--quaternary-background-color);
}

.messengers-panel__text {
  display: block;
  font-size: 14px;
  line-height: 18px;
}

.contacts-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 24px;
}

/* menu-list */
.menu-list {
  background: var(--primary-background-color);
  border-radius: 24px;
  width: 100%;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  padding: 25px 30px 25px 24px;
  border-bottom: 1px solid var(--primary-border-color);
}

.menu-list li:last-child {
  border-bottom: 0;
}

.menu-list__title {
  font-weight: var(--secondary-font-weight);
  width: 100%;
}

.menu-list__right-col {
  display: flex;
  align-items: center;
  gap: 0 35px;
  white-space: nowrap;
}

.menu-list__price {
  font-size: 20px;
  font-weight: var(--secondary-font-weight);
  line-height: 26px;
  letter-spacing: -0.3px;
}

.more-arrow {
  display: inline-block;
  vertical-align: top;
  width: 14px;
  height: 14px;
  font-size: 0px;
  background: url('/image/catalog/icons/link-arrow.svg') center no-repeat;
  background-size: 100%;
}

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

.arrow-link:after {
  content: '';
  width: 14px;
  height: 14px;
  background: url('/image/catalog/icons/link-arrow.svg') center no-repeat;
  background-size: 100%;
  display: inline-block;
  margin-left: 10px;
  margin-bottom: -3px;
}

.accordion-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--secondary-border-color);
  cursor: pointer;
}

.accordion-title {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
  position: relative;
}

.accordion-title span {
  padding-right: 20px;
  display: inline-block;
}

.accordion-title:before {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 0;
  background: url(/image/catalog/icons/plus.svg) center no-repeat;
  background-size: 100%;
  content: "";
  transition: .3s opacity;
  transform: translateY(-50%);
}

.accordion-title:after {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 0;
  background: url(/image/catalog/icons/minus.svg) center no-repeat;
  background-size: 100%;
  opacity: 0;
  content: "";
  transition: .3s opacity;
  transform: translateY(-50%);
}

.accordion-item.show .accordion-title:before {
  opacity: 0;
}

.accordion-item.show .accordion-title:after {
  opacity: 1;
}

.accordion-content {
  display: none;
  padding: 20px 0 0;
  color: var(--secondary-text-color);
  font-size: 16px;
  line-height: 20px;
}

.person-info {
  padding: 50px;
  background: var(--primary-background-color);
  border-radius: 24px;
}

.person-info .person-description button {
  margin-top: 20px;
}

.person-info .person-group {
  display: block;
}

.person-info-inner {
  margin: 0 0 30px;
}

.person-info-inner .image img {
  width: 100%;
}

.person-info-inner .image {
  flex-shrink: 0;
  margin: 0 30px 0 0;
  width: 242px;
  height: 242px;
  border-radius: 100%;
  overflow: hidden;
}

.person-info .person-top {
  display: flex;
  align-items: center;
  gap: 0 16px;
  margin: 0 0 20px;
}

.person-info h1 {
  margin-bottom: 20px;
}

.person-info .location-address {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

.person-info .location+.location {
  margin-top: 20px;
}

.person-info .single-rate {
  display: flex;
  align-items: center;
  gap: 0 6px;
}

.person-info .single-rate img {
  position: relative;
  top: -1px;
}

.person-info .single-rate span {
  font-size: 18px;
  font-weight: 500;
}

.person-info .reviews-info {
  display: inline-block;
  padding: 4px 10px;
  vertical-align: top;
  font-size: 14px;
  line-height: 18px;
  border: 1px solid var(--six-border-color);
  border-radius: 8px;
}

.person-info .experience {
  display: inline-block;
  padding: 4px 10px;
  vertical-align: top;
  font-size: 14px;
  line-height: 18px;
  border: 1px solid var(--six-border-color);
  border-radius: 8px;
}
.listing .person-items {
  margin: 0;
}
#ocf-module-person .filter-checkbox + label {
  margin-top: 3px; 
}
#ocf-module-person input[type="checkbox"]+label {
  width: 24px;
  height: 24px;
}
#ocf-module-person input[type="checkbox"] {
  width: 24px;
  height: 24px;
}
#ocf-module-person input[type="checkbox"]:checked+label:after {
  left: 8px;
  top: 3px;
}
#ocf-module-person .ocf-footer .ocf-apply {
  display: none;
}
#content .blog-item .image a {
  display: block;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  height: 100%;
  width: auto;
}

#content .blog-items {
  gap: 20px 0;
}

#content .blog-item {
  width: 33.33%;
  flex-shrink: 0;
  padding: 10px;
}

#content .blog-item .date-added {
  margin-top: 20px;
  color: var(--fifth-text-color);
}

#content .blog-item .title {
  margin-top: 8px;
  font-weight: 500;
  font-size: 18px;
}

#content.right-menu>.row .menu-container>div:first-child {
  width: calc(100% - 420px);
  float: left;
  margin-top: 0;
}

#content.right-menu>.row .menu-container>div:last-child {
  width: 380px;
  margin-left: 40px;
  float: right;
}

#content.right-menu .sticky {
  top: 0;
  z-index: 1000;
}
#blog-article .blog-top-panel .video-preview {
  max-height: 350px;
}
.video-preview a {
    position: relative;
    display: block;
    height: 100%;
}
.video-preview a:before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--six-background-color);
    border-radius: 24px;
    opacity: 0.7;
    content: "";
    transition: .3s opacity;
}
.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    object-position: top;
}
.video-preview a:after {
    position: absolute;
    display: block;
    width: 44px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(/image/catalog/icons/play.svg) center no-repeat;
    background-size: 100%;
    content: "";
}
#blog-article .blog-top-panel.grid .subtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#blog-article .blog-top-panel.grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
#blog-article .article img,
#blog-article .blog-info-panel+img {
  border-radius: 24px;
}

#blog-article .article p {
  text-align: justify;
}

#blog-article .comment-form {
  margin-top: 16px;
}

.menu-content {
  border-radius: 24px;
  background-color: var(--primary-background-color);
  padding: 30px;
}

.menu-content,
.menu-content ul {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.menu-content ul li a {
  color: var(--six-text-color);
}

.menu-content ul {
  list-style: none;
}

.menu-content-title {
  font-weight: 500;
  font-size: 20px;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-info-panel {
  margin-bottom: 40px;
  margin-top: 20px;
}

.blog-info-panel .author img {
  margin-right: 16px;
  border-radius: 100%;
  background-color: var(--primary-background-color);
}

.blog-info-panel .author .author-description {
  color: var(--six-text-color);
  margin-top: 6px;
}

.blog-info-panel .author span {
  font-weight: 500;
  font-size: 18px;
}

.blog-info-panel>div:not(:first-child) {
  margin-left: 32px;
}

.blog-info-panel>div:not(:first-child) img {
  margin-right: 12px;
  width: 24px;
  height: 24px;
}

.blog-categories a {
  display: block;
  padding: 9px 16px;
  font-size: 16px;
  line-height: 20px;
  border: 1px solid var(--quaternary-border-color);
  border-radius: 20px;
  transition: .3s all;
}

.blog-categories a:hover {
  color: var(--quaternary-text-color);
  border-color: var(--tertiary-border-color);
  background: var(--secondary-background-color);
}

.pagination-block {
  margin-top: 30px;
}

.pagination-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}

.pagination-block ul {
  display: flex;
  align-items: center;
  list-style: none;
  color: var(--six-text-color);
}

.pagination-block ul .active span {
  color: var(--quaternary-text-color);
  background: var(--secondary-background-color);
}
.pagination-block ul a.btn {
  width: auto;
  line-height: 1.25;
}
.pagination-block ul a,
.pagination-block ul span {
  display: block;
  width: 58px;
  height: 58px;
  font-size: 16px;
  text-align: center;
  line-height: 58px;
  border-radius: 12px;
}

.pagination-block ul a:hover {
  color: var(--primary-text-color);
}

#person-group .short-description,
#person-group .short-description p {
  font-size: 18px;
}

#content {
  padding: 48px 0;
}

.description,
.article {
  margin-top: 40px;
  margin-bottom: 40px;
}

.description p {
  text-align: justify;
}
ul:not([class]) ul:not([class]), ol:not([class]) ul:not([class]) {
  padding-left: 15px;
}
ul:not([class]) {
  padding-left: 34px;
}
ul:not([class]) > li::marker {
  color: var(--secondary-background-color);
}
ul {
  margin: 0 0 15px;
}

.service-location-content {
  display: none;
}

.service-category-content {
  padding: 20px 0;
}

.service-category-content .service-category {
  gap: 20px;
  cursor: pointer;
}

.service-category-content .service-category i:before {
  position: absolute;
  display: block;
  width: 14px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(/image/catalog/icons/accordion-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
  transition: .3s opacity;
}

.service-category-content .service-category i:after {
  position: absolute;
  display: block;
  width: 14px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(/image/catalog/icons/accordion-arrow-w.svg) center no-repeat;
  background-size: 100%;
  content: "";
  opacity: 0;
  transition: .3s opacity;
}

.service-category-content .service-category.active i:after {
  opacity: 1;
}

.service-category-content .service-category.active i:before {
  opacity: 0;
}

.service-category-content .service-category i {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background: var(--primary-background-color);
  border-radius: 100%;
  cursor: pointer;
  transition: .3s background;
}

.service-category-content .service-category.active i {
  background: var(--secondary-background-color);
}

.service-category-content .service-category span {
  font-size: 28px;
  font-weight: 500;
}

.service-category-content .service-category span.length {
  font-size: 24px;
  color: var(--eight-text-color);
  display: block;
}

.service-category-content .service-items {
  padding-top: 20px;
  display: none;
}

.service-category-content ul {
  list-style: none;
  background: var(--primary-background-color);
  border-radius: 24px;
}
.service-category-content li {
  padding: 25px;
  gap: 25px;
}
.service-category-content li:not(:last-child) {
  border-bottom: 1px solid var(--primary-border-color);
}

.service-category-content a {
  font-weight: 500;
  font-size: 18px;
  position: relative;
}
.service-category-content .price {
  white-space: nowrap;
  flex-shrink: 0;
}
.service-category-content .price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-category-content .price.arrow-link:after {
  margin: 0;
}
.service-category-content .bullets {
  margin-top: 20px;
}
.service-category-content .bullets .item img {
    width: 24px;
    height: 24px;
}
.service-category-content .bullets .title {
  color: var(--fifth-text-color);
  text-align: left;
}
.service-category-content .bullets {
    display: flex;
    gap: 40px;
}
.service-category-content .bullets .item.flex-column.gap15 {
    gap: 5px;
}
.service-category-content .short-description {
  color: var(--six-text-color);
  margin-top: 10px;
}
.note-content .note-categories,
.service-locations {
  margin: 0 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 0 12px;
  padding: 6px;
  background: var(--nine-background-color);
  border-radius: 30px;
  align-items: center;
}

.note-content .note-category,
.service-locations .service-location {
  display: block;
  padding: 13px 20px;
  color: var(--fifth-text-color);
  font-size: 16px;
  font-weight: var(--secondary-font-weight);
  text-align: center;
  line-height: 20px;
  border-radius: 25px;
  cursor: pointer;
  width: 100%;
}

.note-content .note-category.active,
.service-locations .service-location.active {
  color: var(--primary-text-color);
  background: var(--quaternary-text-color);
}

.note-content .note-category-content {
  display: none;
}

.note-content .note-list {
  -webkit-columns: 4;
  -moz-columns: 4;
  columns: 4;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.note-content .alphabet-content {
  break-inside: avoid-column;
  gap: 14px 0;
  margin-bottom: 30px;
}

.note-content .alphabet-content .alphabet {
  font-size: 18px;
  font-weight: 500;
}

.first-screen {  
  padding-bottom: 48px;
}
.first-screen.grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
  min-height: 580px;
}
.first-screen .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px 0;
  padding: 40px;
  background: var(--primary-background-color);
  border-radius: 24px;
}

.first-screen .right {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
}

.first-screen .bottom button+.price {
  margin-left: 30px;
}

.first-screen .bottom .price-new {
  font-weight: 500;
  font-size: 24px;
}

.first-screen .short-description,
.first-screen .short-description p {
  font-size: 18px;
}

.first-screen .bullets {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.first-screen .bullets .item {
  text-align: center;
}
.first-screen .bullets .item.flex-column.gap15 {
  gap: 5px;
}
.first-screen.grid .short-description {
  color: var(--fifth-text-color);
}
.first-screen .bullets .item .title {
  text-align: left;
  color: var(--fifth-text-color);
}
.first-screen.grid .bullets .item .title {
  color: var(--primary-text-color);
}
.first-screen .bullets .item .title + span {
  text-align: left;
}
.first-screen .bullets .item img {
  width: 24px;
  height: 24px;
}
.first-screen .bullets .item img + span {
  margin-top: 10px;
  display: block;
  font-weight: 500;
}

#information-sitemap ul {
  columns: 3;
  padding-left: 15px;
}

#information-sitemap ul+h2 {
  margin-top: 32px;
}

h1+#content {
  padding: 24px 0;
}

#column-left {
  width: 25%;
  padding-right: 20px;
}

#column-left+#main {
  width: 75%;
  padding-left: 20px;
}

#column-left ul {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

#column-left li.anchor,
#column-left li a {
  color: var(--tertiary-text-color);
  font-weight: 500;
  font-size: 18px;
}

.copy-text:after {
  content: '';
  background-image: url('/image/catalog/icons/copy.svg');
  width: 18px;
  height: 18px;
  background-size: cover;
  display: inline-block;
  margin-left: 5px;
  opacity: 0;
}

.copy-text {
  display: inline-block;
}

.copy-text.copied:after {
  opacity: 0.5 !important;
}

.copy-block {
  cursor: pointer;
}

.copy-block:hover .copy-text:after {
  opacity: 1;
}

.gap5 {
  gap: 5px;
}

.gap10 {
  gap: 10px;
}

.gap15 {
  gap: 15px;
}
.gap30 {
  gap: 30px;
}
.anchor {
  cursor: pointer;
}

.instock {
  color: var(--seven-text-color);
  font-weight: 500;
}

.sticky {
  position: sticky;
}

#column-left .sticky {
  top: 0;
  left: 0;
}
#pricelist-pricelist #column-left ul {
  height: 100vh;
  overflow: auto;
  padding-top: 20px;
  scrollbar-width: none;
}
#pricelist-pricelist #column-left ul {
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

#pricelist-pricelist #column-left ul::-webkit-scrollbar {
  display: none;
}
nav ul {
  list-style: none;
}

#content .pricelist-content {
  background: var(--primary-background-color);
  padding: 40px;
  padding-bottom: 0;
  border-radius: 24px;
}

.pricelist-content+.pricelist-content {
  margin-top: 30px;
}

#content .pricelist-content .item {
  border-top: 1px solid var(--primary-border-color);
}

.module-pricelist .pricelist-content .item {
  border-bottom: 1px solid var(--primary-border-color);
}

.pricelist-content .item {
  padding: 24px 0;
  font-size: 18px;
}

.pricelist-content .item span {
  margin-left: 30px;
  font-weight: 500;
}

#information-download .download-block {
  background: var(--primary-background-color);
  border-radius: 24px;
  padding: 16px 40px;
}

#information-download .download-block+.download-block {
  margin-top: 30px;
}

#information-download .download-block button {
  padding: 24px 20px 24px 0px;
  border-top: 1px solid var(--primary-border-color);
  font-size: 18px;
  cursor: pointer;
}
#information-download .download-block button:hover {
  color: var(--tertiary-text-color);
}

#information-download .download-block-title {
  font-size: 32px;
  font-weight: 500;
  padding: 24px 0;
}

#information-download .download-file {
  font-size: 16px;
  white-space: nowrap;
  margin-left: 20px;
}

#information-download .download-file:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/image/catalog/icons/download.svg) center no-repeat;
  background-size: 100%;
  display: block;
  margin-right: 10px;
}

.rating .star {
  background-image: url(/image/catalog/icons/star-act.svg);
}

.rating .star-empty {
  background-image: url(/image/catalog/icons/star-empty.svg);
}

.rating>span {
  width: 18px;
  height: 18px;
  display: block;
  background-size: cover;
}

.rating>span+span,
.rating>span+div {
  margin-left: 9px;
}

.text-limit-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Количество строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-line-clamp: 3;
  /* Количество строк для Firefox */
  -moz-box-orient: vertical;
  display: -ms-box;
  -ms-line-clamp: 3;
  /* Количество строк для IE/Edge */
  -ms-box-orient: vertical;
  display: box;
  line-clamp: 3;
  box-orient: vertical;
}

.service-item .image {
  height: 180px;
  margin-bottom: 24px;
}

.service-thumb {
  width: 100%;
  border: 1px solid var(--primary-border-color);
  border-radius: 24px;
}

.service-thumb .name.no-image {
  padding: 24px;
  margin-bottom: 75px;
}

.service-thumb .name {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 0 24px;
}

.service-thumb .service-short_description {
  margin: 0 0 20px;
  color: var(--six-text-color);
  font-size: 16px;
  padding: 0 24px;
}

.service-thumb .bottom-caption {
  padding: 0 24px 24px 24px;
}

.service-thumb .price-new {
  font-size: 18px;
  font-weight: 500;
}

.service-thumb .price-new span {
  font-size: 14px;
}

.service-item .image a {
  display: block;
  height: 100%;
  width: auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px 24px 0 0;
}

.module-block .product-items,
.module-block .service-items {
  margin-left: -10px;
  margin-right: -10px;
}

.module-block .product-item,
.module-block .service-item {
  flex-shrink: 0;
  padding: 10px;
  display: flex;
}

.product-items .product-item a, .service-items .service-item a {
  width: 100%;
  display: block;
}

.product-items .product-item a img, .service-items .service-item a img {
  width: 100%;
  display: block;
}

.product-items .product-thumb {
  padding: 24px;
  border-radius: 24px;
  background: rgb(246, 248, 250);
  width: 100%;
  position: relative;
}

.product-items .product-thumb .price {
  margin-top: 20px;
}

.product-items .product-thumb .price .price-new {
  font-size: 24px;
  font-weight: 500;
}

.product-items .product-thumb .price .price-old {
  color: var(--six-text-color);
  margin-left: 10px;
}

.product-items .product-thumb .name {
  margin-top: 6px;
  font-size: 18px;
}

.price .price-old {
  text-decoration-line: line-through;
  color: var(--six-text-color);
  margin-left: 10px;
  font-size: 18px;
  white-space: nowrap;
}

.price .price-new {
  white-space: nowrap;
}

/* footer */
.footer {
  margin: 48px 0 0;
  border-top: 1px solid var(--primary-border-color);
}

.footer__center-col {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 0 30px;
  width: 100%;
}

.footer__top-panel {
  padding-bottom: 40px;
}

.footer__left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 24px 0;
}

/* footer__logo */


.footer__logo span {
  font-size: 32px;
  line-height: 28px;
  flex-direction: column;
}

.footer__logo small {
  font-size: 11px;
  line-height: 14px;
}

.footer__logo small br {
  display: none;
}

.footer .social img {
  padding: 5px;
  height: 100%;
}

/* write-panel */
.write-panel {
  display: flex;
  flex-direction: column;
  gap: 14px 0;
}

/* write-link */
.write-link {
  color: var(--tertiary-text-color);
  font-weight: var(--secondary-font-weight);
}

.write-link:hover {
  color: var(--seven-text-color);
}

.live-search-backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  background-color: rgba(0, 0, 0, .35);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}

.live-search-backdrop.active {
  z-index: 9;
  visibility: visible;
  opacity: 1;
  transition: opacity .25s ease-in-out;
}

.live-search {
  box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
  background-color: #fff;
  padding: 10px 15px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 55px;
  z-index: 9999;
  display: none;
  border-radius: 0;
  padding-bottom: 0;
}

.live-search .result-search-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  margin-right: 15px;
}

.live-search>.result-search {
  max-height: 50vh;
  overflow: auto;
  padding: 15px;
}

.live-search .result-search-title {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 18px;
}

.live-search .result-search-item {
  margin-bottom: 5px;
  font-size: 14px;
}

.live-search>ul>li {
  padding: 1px;
}

.live-search a {
  flex-wrap: nowrap;
  align-items: center;
}

.live-search img {
  display: block;
  width: auto;
  height: 50px;
  margin-right: 10px;
}

.live-search .product-price .old_price {
  color: #646464;
  font-size: 12px;
  text-decoration: line-through;
  margin-right: 10px;
}

.live-search .product-price .price {
  font-size: 14px;
}

.result-text a {
  text-align: center;
  padding: 15px;
  border-top: 1px solid var(--primary-border-color);
  font-size: 14px;
  display: block;
}

.search-result {
  position: relative;
}

/* social */
.social .social-title {
  margin: 0 0 10px;
  color: var(--six-text-color);
}

.social .social-links {
  display: flex;
  align-items: center;
  gap: 0 6px;
}

.social .social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--primary-border-color);
  border-radius: 6px;
  transition: .3s background;
}

.social dd a:hover {
  background: var(--fifth-background-color);
}

#input-sort {
  background: var(--primary-background-color);
}

.top-listing {
  margin-bottom: 20px;
}

.listing-total {
  color: var(--fifth-text-color);
}

.row.listing {
  margin-right: -5px;
  margin-left: -5px;
}

.listing .category-banner {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 10px;
}

.category-description {
  margin-bottom: 30px;
}

#product-product .product-container .product-image,
.product-container #product {
  width: 50%;
}

#product-product .product-container #product {
  padding-left: 50px;
  padding-bottom: 50px;
}

#product-product .product-container #product h1 {
  font-size: 46px;
}

#product-product .main-image img {
  border: 1px solid var(--primary-border-color);
  border-radius: 24px;
  cursor: zoom-in;
}

#product-product .main-image .swiper-pagination {
  display: none;
}

#product-product .additional-image {
  margin-top: 20px;
}

#product-product .additional-image .swiper-slide {
  flex-shrink: 1;
}

#product-product .additional-image .swiper-slide .slider-image {
  cursor: pointer;
}

#product-product .additional-image img {
  border: 1px solid var(--primary-border-color);
  border-radius: 24px;
  width: 120px;
  height: 120px;
}

.option-block .radio input {
  display: none;
}

.option-block .radio label {
  margin: 0;
  cursor: pointer;
}

.option-block .radio label.active span,
.option-block .radio label.active img {
  border-color: var(--tertiary-border-color);
}

.option-block .radio-group,
#product-product .option-block .checkbox-wrapper,
#product-product .price-block,
#product-product .short-attribute-block {
  margin-top: 36px;
}

.option-block .radio img {
  border: none;
}

.option-block .radio span {
  padding: 10px 12px;
  border: 1px solid var(--primary-border-color);
  border-radius: 10px;
  display: block;
}

.option-block .radio img {
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 10px;
  display: block;
}

.option-block .radio.disabled span {
  background: var(--primary-border-color);
  color: var(--fifth-text-color);
}

.option-block .radio.disabled label {
  cursor: not-allowed;
}

.option-block .option-name {
  margin-bottom: 16px;
  color: var(--fifth-text-color);
}

.option-block .option-name span {
  color: var(--primary-text-color);
  margin-left: 10px;
  font-weight: 500;
}

#product-product .price-block .price-new {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

#product-product .price-block .price-old {
  font-size: 20px;
}

#product-product .price-block {
  margin-bottom: 36px;
}

#product-product .price-block span+span {
  margin-left: 20px;
}

#product-product .product-container {
  padding-bottom: 48px;
}

.attribute-item {
  position: relative;
  align-items: flex-end;
  width: 100%;
}

.attribute-item>div+span {
  width: 50%;
}

.attribute-item>div:before {
  content: '';
  border-bottom: 1px dashed var(--primary-border-color);
  bottom: 10px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
}

.attribute-block {
  margin-top: 36px;
}

.attribute-block span {
  display: block;
  background-color: #FFF;
  z-index: 2;
  padding: 7px 0;
  position: relative;
}

.product-description {
  padding-bottom: 15px;
}

.product-description+.attribute-table {
  width: 50%;
}

.product-description>.h2 {
  margin-top: 0;
}

.product-info {
  padding-bottom: 48px;
  padding-top: 0;
}

.product-info .attribute-table tr:first-child td {
  border-top: none;
}

.product-info .attribute-table td:first-child {
  color: var(--six-text-color);
  width: 50%;
}

.product-info .note-tile {
  background-color: #FFFFFF;
  border-color: var(--secondary-border-color);
  color: var(--primary-text-color);
  padding: 10px 16px;
  border: 1px solid;
  border-radius: 32px;
  transition: none;
}

.product-info .note-tile:hover {
  background-color: var(--secondary-background-color);
  border-color: var(--tertiary-border-color);
  color: #ffffff;
}

.price-block .discount-label {
  border-radius: 24px;
  background: rgb(243, 8, 107);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 16px;
  color: #fff;
}

/* footer contacts-panel */
.footer .contacts-panel {
  margin: 0 0 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--primary-border-color);
}

.footer .messengers-panel__text {
  color: var(--secondary-text-color);
}

#footer-mobile {
  display: none;
}

.info-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: var(--secondary-font-weight);
}
.footer__title + .footer__nav {
  margin-bottom: 40px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}


.footer__rate {
  margin: 0 auto 43px;
  max-width: 244px;
}

.footer__rate img {
  width: 100%;
}

/* payment */
.payment {
  display: grid;
  grid-template-columns: repeat(4, 63px);
  gap: 6px 6px;
}

.payment img {
  width: 100%;
  border: 1px solid var(--primary-border-color);
  border-radius: 10px;
}

/* footer__bottom-panel */
.footer__bottom-panel {
  padding: 16px 0;
  background: var(--primary-background-color);
}

.footer__bottom-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* copy */
.copy {
  color: var(--secondary-text-color);
}

/* footer__link */
.footer__link {
  color: var(--secondary-text-color);
  margin-left: 20px;
}

.registration-widget {
  margin: 0 0 30px;
  padding: 25px;
  border-radius: 20px;
  background: var(--quaternary-background-color);
}

.registration-widget__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* days-slider */
.days-slider {
  margin: 0 0 25px;
}

.days-slider .swiper-wrapper {
  align-items: center;
}

.days-slider .swiper-slide {
  width: auto;
}

.days-slider .swiper-button-prev {
  margin: 0;
  left: 0;
}

.days-slider .swiper-button-next {
  margin: 0;
  right: 0;
}

.days-slider .swiper-button-prev,
.days-slider .swiper-button-next {
  width: 44px;
  height: 56px;
  top: 0;
  background: var(--quaternary-background-color);
  position: absolute;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.days-slider .swiper-button-disabled {
  display: none;
}

.days-slider .swiper-button-prev:before {
  position: absolute;
  display: block;
  margin: -7px 0 0 -4px;
  width: 8px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: rotate(180deg);
  background: url(/image/catalog/icons/slider-arrow.svg) center no-repeat;
  content: "";
}

.days-slider .swiper-button-next:before {
  position: absolute;
  display: block;
  margin: -7px 0 0 -4px;
  width: 8px;
  height: 14px;
  top: 50%;
  left: 50%;
  background: url(/image/catalog/icons/slider-arrow.svg) center no-repeat;
  background-size: 100%;
  content: "";
}

.days-slider .swiper-button-prev:after,
.days-slider .swiper-button-next:after {
  width: 44px;
  height: 56px;
  font-size: 0;
  border: 2px solid var(--primary-border-color);
  background: var(--quaternary-text-color);
  border-radius: 16px;
  content: "";
}

/* day */
.day {
  position: relative;
}

.day input {
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  border: 0;
  cursor: pointer;
  opacity: 0;
}

.day label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 56px;
  text-align: center;
  background: var(--primary-background-color);
  border-radius: 16px;
  cursor: pointer;
  transition: .3s all;
}

.day label:hover {
  color: var(--quaternary-text-color);
  background: var(--secondary-background-color);
}

.day input:checked+label {
  color: var(--quaternary-text-color);
  background: var(--secondary-background-color);
}

.day input:disabled+label {
  color: var(--primary-text-color);
  background: var(--primary-background-color);
  cursor: default;
}

.day__number {
  display: block;
  font-size: 20px;
  font-weight: var(--secondary-font-weight);
  line-height: 20px;
}

.day_weekend .day__number {
  color: #FF0000;
}

.day input:disabled+label .day__number {
  opacity: 0.3;
}

.day__text {
  display: block;
  font-size: 14px;
  line-height: 18px;
}

.day input:disabled+label .day__text {
  opacity: 0.3;
}

/* month */
.month {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 100%;
  top: 7px;
  vertical-align: top;
  transform: rotate(-90deg);
  color: var(--fifth-text-color);
  font-size: 16px;
  line-height: 20px;
}

/* time-panel */
.time-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 12px;
  margin: 0 0 25px;
}

.time-radio {
  position: relative;
}

.time-radio input {
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  border: 0;
  cursor: pointer;
  opacity: 0;
}

.time-radio input:disabled+label {
  cursor: default;
}

.time-radio label {
  display: block;
  padding: 8px 16px 9px;
  font-size: 16px;
  line-height: 20px;
  border: 1px solid var(--seven-text-color);
  border-radius: 20px;
  cursor: pointer;
  transition: .3s all;
}

.time-radio label:hover {
  color: var(--quaternary-text-color);
  background: var(--secondary-background-color);
}

.time-radio input:checked+label {
  color: var(--quaternary-text-color);
  background: var(--secondary-background-color);
}

.time-radio input:disabled+label {
  color: var(--quaternary-text-color);
  border-color: var(--primary-border-color);
  background: var(--primary-border-color);
}
.question-content {
  gap: 20px;
}
.question-content .question-item {
  padding: 30px;
  border: 1px solid var(--primary-border-color);
  border-radius: 20px;
}
.question-content .question-item .answers-count {
  cursor: pointer;
  color: var(--seven-text-color);
  margin-top: 20px;
  font-weight: 500;
}
.question-content .question-item .answers-content {
  margin-top: 20px;
  margin-left: 30px;
  display: none;
}
.question-content .question-item .answers-content div + div {
  margin-top: 30px;
}
.question-content .question-item .answers-count .collapse {
  display: none;
  position: relative;
}
.question-content .question-item .answers-count.show .collapse {
  display: flex;
  align-items: center;
}
.question-content .question-item .answers-count.show .counter {
  display: none;
}
.question-content .question-item .answers-count.show .collapse:after {
  display: block;
  width: 15px;
  height: 8px;
  background: url(/image/catalog/icons/green-arrow.svg) center no-repeat;
  transform: rotate(180deg);
  margin-left: 10px;
  content: "";
}
#information-question .form-question textarea {
  padding: 30px;
}
#information-question .form-question {
  margin-top: 50px;
  position: relative;
}
#information-question .form-question:after {
  display: block;
  width: 255px;
  height: 153px;
  background: url(/image/catalog/icons/question_text.svg) center no-repeat;
  position: absolute;
  top: -180px;
  right: 50px;
  content: "";
}
#information-question h1, #information-question h1 + .subtitle {
  padding-right: 300px;
}
#information-question .form-question-buttons {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.upload-image-container {
  width: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.upload-image {
  cursor: pointer;
  width: auto;
  display: flex;
  align-items: center;
}
.upload-thumb {
  width: 75px;
  height: auto;
}
.upload-image:before {
  display: block;
  width: 24px;
  height: 24px;
  background: url(/image/catalog/icons/file.svg) center no-repeat;
  margin-right: 10px;
  content: "";
}
.person-items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.person-item .person-item-inner {
  padding: 6px 20px 14px 20px;
  background: var(--primary-background-color);
  border-radius: 20px;
  height: 100%;
  width: 100%;
}
.person-item .image {
  margin: 0 -14px;
  height: 280px;
}
.person-item .image a {
  height: 100%;
  width: auto;
  border-radius: 16px;
  display: block;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.person-items .btn {
  padding: 13px 20px;
}
.person-items .title {
  margin-top: 16px;
  font-weight: 500;
  font-size: 18px;
  display: block;
}
.person-items .locations {
  margin-top: 16px;
}
.person-items .locations img {
  margin-right: 4px;
}
.person-items .experience {
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--six-border-color);
}
.person-items .pretitle {
  margin-top: 16px;
  display: inline-block;
}
.person-items .group {
  margin-top: 6px;
  color: var(--six-text-color);
}
.person-items .person-bottom {
  margin-top: 16px;
}
#account-order .order-table .order-item {
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  border: 1px solid var(--primary-border-color);
  padding: 30px;
  cursor: pointer;
}
#account-order .order-table .order-item-block {
  display: flex;
  gap: 20px;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}
#account-order .order-table .order-item-block.mobile {
  display: none;
}
#account-order .order-table .order-item-number, #account-order .order-table .order-item-total {
  font-size: 18px;
  font-weight: 500;
}
#account-order .order-table .order-item-products, #account-order .order-table .order-item-date {
  color: var(--fifth-text-color);
}
#account-order .order-table .order-item-status {
  border: 1px solid var(--six-border-color);
  border-radius: 8px;
  padding: 4px 10px;
}
#account-order .order-table .order-item-detail .h1 {
  margin-bottom: 16px;
}
#account-order .order-table .order-item-detail {
  display: none;
}
#account-order .order-table .order-item-detail.active {
  display: block;
}
#account-order .order-table .order-item.hidden {
  display: none;
}
#account-order .order-table .order-item-detail .product-table {
  margin-top: 40px;
  padding: 10px 30px;
  border: 1px solid var(--primary-border-color);
  border-radius: 24px;
}
#account-order .order-table .product-item-block {
  display: flex;
  align-items: center;
  gap: 20px;
}
#account-order .order-table .product-table-item {
  padding: 24px 0; 
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#account-order .order-table .product-table-item + .product-table-item {
  border-top: 1px solid var(--primary-border-color);
}
#account-order .order-table .product-table-item .bg-center {
  width: 93px;
  height: 93px;
  border-radius: 24px;
}
#account-order .order-table .product-table-item .product-item-name {
  font-size: 18px;
  font-weight: 500;
}
#account-order .order-table .product-table-item .product-item-option {
  display: flex;
  margin-top: 12px;
  gap: 24px;
}
#account-order .order-table .product-item-option .name {
  color: var(--fifth-text-color);
}
#account-order .order-table .product-item-option .value {
  font-weight: 500;
}
#account-order .order-table .product-table-item .product-item-total {
  font-size: 20px;
  font-weight: 500;
}
#account-order .order-table .order-item-detail .back {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
}
#account-order .order-table .order-item-detail .back:before {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(/image/catalog/icons/back-arrow.svg) center no-repeat;
  content: "";
}
#common-success .message {
  display: flex;
  gap: 50px;
  align-items: center;
}
#common-success .message img {
  max-width: 330px;
}
#common-success .message .btn {
  margin-top: 25px;
}
