@charset "UTF-8";
@import "hamburgers.css";
@import "slick.css";
@import "slick-theme.css";
@import "../fonts/tilda-sans/font.css";
.justify-start {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.justify-stretch {
  -webkit-box-pack: stretch;
  -moz-box-pack: stretch;
  -ms-flex-pack: stretch;
  -webkit-justify-content: stretch;
  justify-content: stretch;
}

.justify-between {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  justify-content: space-evenly;
}

.align-items-start {
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.align-items-center {
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.align-items-stretch {
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-45 {
  gap: 45px;
}

.gap-50 {
  gap: 50px;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box !important;
}
*::-webkit-scrollbar {
  width: 4px;
}
*::-webkit-scrollbar-track {
  background: rgb(238, 238, 238);
}
*::-webkit-scrollbar-thumb {
  background-color: rgb(51, 51, 51);
}

body {
  margin: 0;
}
body.no-scroll {
  overflow-y: hidden;
}

img[src$=no-cover] {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1500px) {
  .container {
    max-width: 95%;
  }
}

a {
  text-decoration: unset;
  color: rgb(0, 0, 0);
  position: relative;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
a:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  right: 50%;
  height: 1px;
  background: currentColor;
  -webkit-transition: left 0.2s ease, right 0.2s ease;
  -o-transition: left 0.2s ease, right 0.2s ease;
  transition: left 0.2s ease, right 0.2s ease;
}
a .active:before {
  left: 0;
  right: 0;
}
a:hover {
  color: rgb(216, 56, 49);
}
a:hover:before {
  left: 0;
  right: 0;
}
a.no-hover:before {
  display: none;
}

.btn {
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  color: rgb(255, 255, 255);
  display: inline-block;
  cursor: pointer;
  border: 2px solid transparent;
  backdrop-filter: blur(4px);
}
.btn:before {
  display: none;
}
.btn.btn-primary {
  background: rgb(51, 51, 51);
  border-color: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
}
.btn.btn-primary:hover {
  background: transparent;
  color: rgb(51, 51, 51);
}
.btn.btn-secondary {
  background: rgb(216, 56, 49);
  border-color: rgb(216, 56, 49);
  color: rgb(255, 255, 255);
}
.btn.btn-secondary:hover {
  background: transparent;
  color: rgb(216, 56, 49);
}
.btn.btn-black {
  background: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.btn.btn-black:hover {
  background: rgb(51, 51, 51);
  border-color: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
}
.btn[disabled] {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

[data-fancybox]:not([class*=video]) {
  position: relative;
  cursor: pointer;
  display: block;
  overflow: hidden;
}
[data-fancybox]:not([class*=video]) img {
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
[data-fancybox]:not([class*=video]):after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-image: url("data:image/svg+xml,%3Csvg fill='rgb(51, 51, 51)' width='800px' height='800px' viewBox='0 0 32 32' enable-background='new 0 0 32 32' id='Glyph' version='1.1' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M27.414,24.586l-5.077-5.077C23.386,17.928,24,16.035,24,14c0-5.514-4.486-10-10-10S4,8.486,4,14 s4.486,10,10,10c2.035,0,3.928-0.614,5.509-1.663l5.077,5.077c0.78,0.781,2.048,0.781,2.828,0 C28.195,26.633,28.195,25.367,27.414,24.586z M7,14c0-3.86,3.14-7,7-7s7,3.14,7,7s-3.14,7-7,7S7,17.86,7,14z' id='XMLID_227_'/%3E%3Cpath d='M19,14c0,0.552-0.448,1-1,1h-3v3c0,0.552-0.448,1-1,1s-1-0.448-1-1v-3h-3c-0.552,0-1-0.448-1-1s0.448-1,1-1 h3v-3c0-0.552,0.448-1,1-1s1,0.448,1,1v3h3C18.552,13,19,13.448,19,14z' id='XMLID_230_'/%3E%3C/svg%3E");
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  opacity: 0;
  visibility: hidden;
}
[data-fancybox]:not([class*=video]):hover img {
  transform: scale(1.1);
}
[data-fancybox]:not([class*=video]):hover:after {
  opacity: 0.7;
  visibility: visible;
}

.flex-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex-line:not([class*=gap-]) {
  gap: 10px;
}

.icon-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  color: rgb(51, 51, 51);
}
.phone svg {
  width: 20px;
  height: 20px;
}
.phone a, .phone a > div {
  font-weight: 700;
}
.phone-block label {
  color: #B2B2B2;
  margin: 0 0 5px 30px;
  display: block;
  font-size: 12px;
}

.email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: rgb(51, 51, 51);
}
.email svg {
  width: 20px;
  height: 20px;
}
.email a {
  font-size: 14px;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
.socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  color: rgb(255, 255, 255);
}
.socials a:before {
  display: none;
}
.socials a svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.socials a:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  border-color: rgb(51, 51, 51);
  color: rgb(51, 51, 51);
}

.form {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.form-control {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50px;
  outline: none;
  padding: 15px 20px;
  margin: 10px 0;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  width: 100%;
  font-size: 14px;
}
.form-control.error {
  outline: 3px solid rgb(51, 51, 51);
}
.form-control:hover, .form-control:focus, .form-control:active {
  border-color: rgb(51, 51, 51);
}
.form-checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid rgb(181, 181, 181);
  border-radius: 3px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 120%;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.form-checkbox input[type=checkbox] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.form-checkbox:has(input[type=checkbox]:checked) {
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.1111 0H1.88889C0.85 0 0 0.85 0 1.88889V15.1111C0 16.15 0.85 17 1.88889 17H15.1111C16.15 17 17 16.15 17 15.1111V1.88889C17 0.85 16.15 0 15.1111 0V0ZM6.61148 13.223L1.88926 8.68236L3.21148 7.41099L6.61148 10.6802L13.7893 3.77852L15.1115 5.04988L6.61148 13.223V13.223Z' fill='rgb(181, 181, 181)'/%3E%3C/svg%3E%0A");
}
.form-radio {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgb(140, 140, 140);
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.form-radio input[type=radio] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.form-radio:has(input[type=radio]:checked) {
  border-color: rgb(51, 51, 51);
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.1111 0H1.88889C0.85 0 0 0.85 0 1.88889V15.1111C0 16.15 0.85 17 1.88889 17H15.1111C16.15 17 17 16.15 17 15.1111V1.88889C17 0.85 16.15 0 15.1111 0V0ZM6.61148 13.223L1.88926 8.68236L3.21148 7.41099L6.61148 10.6802L13.7893 3.77852L15.1115 5.04988L6.61148 13.223V13.223Z' fill='rgb(51, 51, 51)'/%3E%3C/svg%3E%0A");
}
.form-title {
  margin-bottom: 15px;
}
.form-title, .form-title * {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}
.form-title b, .form-title strong {
  color: rgb(51, 51, 51);
}
.form-subtitle {
  margin-bottom: 15px;
}
.form-subtitle, .form-subtitle * {
  font-size: 18px;
  font-weight: 600;
}
.form-subtitle b, .form-subtitle strong {
  color: rgb(51, 51, 51);
}
.form-text b, .form-text strong {
  color: rgb(51, 51, 51);
}
.form-group-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.form-group-line > * {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}
.form-group-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.form-group-checkbox .form-radio, .form-group-checkbox .form-checkbox {
  position: relative;
  bottom: -3px;
}
.form-group-checkbox:not(:last-child) {
  margin-bottom: 15px;
}
.form-file {
  text-align: left;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.form-file label {
  color: rgb(51, 51, 51);
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.form-file label:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
}
.form-file label:hover {
  color: rgb(216, 56, 49);
}
.form-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.form-file:hover label {
  color: rgb(216, 56, 49);
}
.form textarea {
  border-radius: 12px;
  min-height: 100px;
}
.form button {
  margin: 10px auto 0;
  display: block;
}
.form > .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
  gap: 10px;
}
.form .agree {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 1fr;
  grid-template-columns: 20px 1fr;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  margin: 10px auto;
}
.form .agree .text, .form .agree .text * {
  color: rgb(51, 51, 51);
  font-size: 11px;
  font-weight: 300;
}
.form .agree .text a {
  display: inline;
  text-decoration: underline;
}
.form .agree .text a:hover {
  color: rgb(0, 0, 0);
}
.form .success-message {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.form .success-message .icon {
  width: 100px;
  height: 100px;
  position: relative;
}
.form .success-message .icon svg {
  width: 100%;
  height: auto;
  color: rgb(23, 162, 21);
}
.form .success-message .icon:before, .form .success-message .icon:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgb(23, 162, 21);
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  opacity: 0;
}
.form .success-message .info {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.5s ease 1.8s;
  -o-transition: all 0.5s ease 1.8s;
  transition: all 0.5s ease 1.8s;
}
.form .success-message .title {
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
  margin-bottom: 20px;
}
.form .success-message .text {
  font-size: 13px;
  font-weight: 300;
}
.form .success-message.show {
  opacity: 1;
  visibility: visible;
}
.form .success-message.show .icon {
  -webkit-animation: jump-animate 1.7s linear;
  animation: jump-animate 1.7s linear;
}
.form .success-message.show .icon:before, .form .success-message.show .icon:after {
  -webkit-animation: border-animate 1s linear;
  animation: border-animate 1s linear;
}
.form .success-message.show .icon:after {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.form .success-message.show .info {
  max-height: 200px;
}
@-webkit-keyframes jump-animate {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 1;
  }
  30% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
  80% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jump-animate {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 1;
  }
  30% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
  80% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes border-animate {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes border-animate {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@media (max-width: 900px) {
  .form .agree {
    width: auto;
  }
  .form .agree br {
    display: none;
  }
}

.modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  z-index: 10;
}
.modal .wrapper {
  background: rgb(255, 255, 255);
  min-width: 650px;
  max-width: 95%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  padding: 60px;
}
.modal .wrapper .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: rgb(0, 0, 0);
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  z-index: 10;
}
.modal .wrapper .btn-close svg {
  width: 16px;
  height: 16px;
}
.modal .form {
  width: 80%;
  margin: auto;
}
.modal .form-title {
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
}
.modal .form-control {
  border: 2px solid rgb(238, 238, 238);
}
.modal .form-control:hover, .modal .form-control:focus, .modal .form-control:active {
  border-color: rgb(51, 51, 51);
}
.modal .form > .info {
  font-size: 13px;
  font-weight: 300;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 10px 0;
}
.modal .form > .info br {
  display: none;
}
.modal .form button {
  margin: 20px auto;
}
.modal .form .agree {
  margin-top: 10px;
}
.modal .form .success-message .text br {
  display: none;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1000px) {
  .modal .wrapper {
    min-width: auto;
    padding: 30px;
  }
  .modal .form {
    width: 100%;
  }
  .modal .form .form-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
  }
  .modal .form > .info br {
    display: block;
  }
  .modal .form .success-message .title {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
  }
  .modal .form .success-message .text br {
    display: block;
  }
}
@media (max-width: 500px) {
  .modal .wrapper {
    width: 95%;
  }
}

.page-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 52px;
  margin: 40px 0;
}
@media (max-width: 1000px) {
  .page-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
  }
}
.page-content, .page-content * {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.block-title-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 30px;
}
.block-title-line a {
  margin-top: 15px;
  display: block;
  color: rgb(51, 51, 51);
  font-size: 15px;
}
@media (max-width: 1000px) {
  .block-title-line {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 40px;
  }
  .block-title-line a {
    margin: 0;
  }
}
.block-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 145%;
  margin: 50px 0;
}
@media (max-width: 1000px) {
  .block-title {
    margin: 50px 0 20px;
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
  }
}
.block-subtitle {
  font-size: 30px;
  font-weight: 500;
  line-height: 45px;
  margin: -45px 0 50px;
}
@media (max-width: 1000px) {
  .block-subtitle {
    margin: -15px 0 20px;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
  }
}
.block-subtext {
  color: rgb(163, 163, 163);
  margin: -30px 0 50px 25px;
  min-height: 1px;
}
.block-subtext, .block-subtext * {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 1000px) {
  .block-subtext {
    margin: -15px 0 20px;
  }
  .block-subtext, .block-subtext * {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
}

.slick-slider {
  margin: 0 -15px;
}
.slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slick-slider .slick-slide {
  height: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 15px;
}
.slick-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.slick-slider .slick-arrow.tpl-arrow.prev {
  right: calc(100% + 45px);
}
.slick-slider .slick-arrow.tpl-arrow.next {
  left: calc(100% + 45px);
}
.slick-slider .slick-arrow.tpl-arrow:hover {
  color: rgb(51, 51, 51);
}
.slick-slider .slick-arrow.tpl-arrow-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.slick-slider .slick-arrow.tpl-arrow-circle svg {
  height: 20px;
  width: auto;
  position: absolute;
}
.slick-slider .slick-arrow.tpl-arrow-circle.prev {
  left: -30px;
}
.slick-slider .slick-arrow.tpl-arrow-circle.prev svg {
  left: 30%;
}
.slick-slider .slick-arrow.tpl-arrow-circle.next {
  right: -30px;
}
.slick-slider .slick-arrow.tpl-arrow-circle.next svg {
  right: 30%;
}
.slick-slider .slick-arrow.tpl-arrow-circle:hover {
  background: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
}
.slick-slider .slick-dots {
  position: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 0;
}
.slick-slider .slick-dots li {
  background: rgb(163, 163, 163);
  margin: 0;
  padding: 0;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.slick-slider .slick-dots li button {
  display: none;
}
.slick-slider .slick-dots li:hover {
  background: rgb(51, 51, 51);
}
.slick-slider .slick-dots li.slick-active {
  width: 10px;
  height: 10px;
  background: rgb(51, 51, 51);
}
.slick-slider .slick-dots li:first-child:last-child {
  display: none;
}
@media (min-width: 900px) {
  .slick-slider.no-transform .slick-track {
    -webkit-transform: unset !important;
    -ms-transform: unset !important;
    transform: unset !important;
  }
}

.video-wrapper {
  width: 100%;
  position: relative;
  color: rgb(255, 255, 255);
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  cursor: pointer;
  background: rgb(0, 0, 0);
  border-radius: 20px;
  overflow: hidden;
  display: block;
  aspect-ratio: 1.8/1;
}
.video-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.7;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.video-wrapper svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0.7;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  pointer-events: none;
}
.video-wrapper:hover {
  color: rgb(51, 51, 51);
}
.video-wrapper:hover img, .video-wrapper:hover iframe {
  opacity: 1;
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: "column";
  -ms-flex-direction: "column";
  flex-direction: "column";
  position: absolute;
  top: 30px;
  left: 30px;
  gap: 7px;
}
.tags .tag {
  padding: 8px 14px;
  border-radius: 16px;
  font-size: 13px;
  background: rgb(140, 140, 140);
  color: rgb(255, 255, 255);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
.tags .tag.builtup {
  background: rgb(51, 51, 51);
}
.tags .tag.passed {
  background: rgb(255, 255, 255);
  color: rgb(51, 51, 51);
}
.tags .tag.unsold_houses {
  color: rgb(51, 51, 51);
}
.tags .tag.soldout {
  background: #FF4433;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 40px;
  gap: 20px;
}
.pagination li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 24px;
  background: transparent;
}
.pagination li a:before {
  display: none;
}
.pagination li.active a {
  background: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
}
@media (max-width: 1100px) {
  .pagination {
    gap: 10px;
  }
  .pagination li a {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .pagination li.control {
    display: none;
  }
}

.hamburger {
  display: none;
  position: relative;
  z-index: 1000;
  opacity: 1 !important;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 999;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  transform: translateX(-100%);
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 20px;
}
.mobile-menu a {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 400;
}
.mobile-menu.show {
  transform: translateX(0);
}

ul.menu-dropdown ul.children {
  display: none;
}
ul.menu-dropdown a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
ul.menu-dropdown a:before {
  display: none;
}
ul.menu-dropdown a.with-icon {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px auto;
  grid-template-columns: 30px auto;
}
ul.menu-dropdown a.with-children {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px;
  grid-template-columns: auto 30px;
}
ul.menu-dropdown a.with-icon.with-children {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px auto 30px;
  grid-template-columns: 30px auto 30px;
}
ul.menu-dropdown a .icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 30px;
  filter: grayscale(1) brightness(1.2);
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
ul.menu-dropdown a .menutitle {
  font-size: 20px;
}
ul.menu-dropdown a .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 7px;
  color: rgb(140, 140, 140);
}
ul.menu-dropdown a .arrow svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
ul.menu-dropdown li.parent {
  position: relative;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
ul.menu-dropdown li.active > div > a {
  color: rgb(51, 51, 51);
}
ul.menu-dropdown li.active > div > img, ul.menu-dropdown li.active > div > svg {
  filter: grayscale(0) brightness(1);
}
ul.menu-dropdown > li {
  margin: 10px 0;
}
ul.menu-dropdown > li.parent > a {
  border-bottom: 2px solid transparent;
}
ul.menu-dropdown > li.parent.show {
  background: rgb(243, 243, 243);
  border-radius: 10px;
  padding: 10px;
}
ul.menu-dropdown > li.parent.show > a {
  border-color: rgb(51, 51, 51);
  padding-bottom: 5px;
}
ul.menu-dropdown > li.parent.show > a .icon {
  filter: grayscale(0) brightness(1);
}
ul.menu-dropdown > li.parent.show > a .arrow {
  color: rgb(51, 51, 51);
}
ul.menu-dropdown > li.parent > ul.children {
  padding-left: 40px;
}
ul.menu-dropdown > li.parent > ul.children > li {
  margin: 10px 0;
}
ul.menu-dropdown > li.parent > ul.children > li:last-child {
  margin-bottom: 0;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  color: rgb(140, 140, 140);
}
.rating[data-rating="5"] svg:nth-child(-n+5), .rating[data-rating="4"] svg:nth-child(-n+4), .rating[data-rating="3"] svg:nth-child(-n+3), .rating[data-rating="2"] svg:nth-child(-n+2), .rating[data-rating="1"] svg:nth-child(-n+1) {
  color: rgb(249, 225, 103);
}
.rating[data-rating="5"] svg:nth-child(-n+5) path, .rating[data-rating="4"] svg:nth-child(-n+4) path, .rating[data-rating="3"] svg:nth-child(-n+3) path, .rating[data-rating="2"] svg:nth-child(-n+2) path, .rating[data-rating="1"] svg:nth-child(-n+1) path {
  fill: rgb(249, 225, 103);
  stroke: rgb(249, 225, 103);
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  list-style: none;
  position: relative;
}
.breadcrumb .separator {
  color: rgb(51, 51, 51);
}
.breadcrumb .item {
  color: rgb(51, 51, 51);
}
.breadcrumb .item.home a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: rgb(51, 51, 51);
}
.breadcrumb .item.home a svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.breadcrumb .item.home a:hover {
  color: rgb(216, 56, 49);
}
.breadcrumb .item.active {
  color: rgb(140, 140, 140);
}
@media (max-width: 1100px) {
  .breadcrumb:before {
    display: none;
  }
}

.nav-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}
.nav-filter .item {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 300;
  border: 2px solid rgb(238, 238, 238);
  border-radius: 16px;
  cursor: pointer;
  padding: 6px 15px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.nav-filter .item:hover {
  border-color: rgb(51, 51, 51);
  color: rgb(51, 51, 51);
}
.nav-filter .item.active {
  background: rgb(51, 51, 51);
  border-color: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
}
.nav-filter.sort .title {
  font-size: 14px;
  font-weight: 300;
  color: rgb(140, 140, 140);
}
.nav-filter.sort .item {
  color: rgb(51, 51, 51);
  border: none;
  border-radius: 0;
  padding: 0;
}
.nav-filter.sort .item.active {
  color: rgb(51, 51, 51);
  background: transparent;
}
.nav-filter ~ .nav-filter.sort {
  margin-top: -30px;
}

.loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(5px);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: -15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.loader .icon {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader .icon div {
  box-sizing: border-box;
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.loader .icon div:after {
  box-sizing: border-box;
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: rgb(51, 51, 51);
  margin: -3.6px 0 0 -3.6px;
}
.loader .icon div:nth-child(1) {
  animation-delay: -0.036s;
}
.loader .icon div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}
.loader .icon div:nth-child(2) {
  animation-delay: -0.072s;
}
.loader .icon div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}
.loader .icon div:nth-child(3) {
  animation-delay: -0.108s;
}
.loader .icon div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}
.loader .icon div:nth-child(4) {
  animation-delay: -0.144s;
}
.loader .icon div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.loader .icon div:nth-child(5) {
  animation-delay: -0.18s;
}
.loader .icon div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}
.loader .icon div:nth-child(6) {
  animation-delay: -0.216s;
}
.loader .icon div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}
.loader .icon div:nth-child(7) {
  animation-delay: -0.252s;
}
.loader .icon div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}
.loader .icon div:nth-child(8) {
  animation-delay: -0.288s;
}
.loader .icon div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader.show {
  opacity: 1;
  visibility: visible;
}

.tabs .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}
.tabs .nav .item {
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.tabs .nav .item:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  right: 50%;
  height: 3px;
  background: currentColor;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.tabs .nav .item.active {
  color: rgb(51, 51, 51);
  border-color: rgb(51, 51, 51);
}
.tabs .nav .item.active:before {
  left: 0;
  right: 0;
}
.tabs-content > .item {
  display: none;
}
.tabs-content > .item.active {
  display: block;
}
@media (max-width: 1000px) {
  .tabs .nav {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 30px;
  }
}

.vladweb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 5px;
  font-size: 10px;
  font-weight: 250;
  line-height: 15px;
  text-align: right;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.vladweb svg {
  fill: rgb(51, 51, 51);
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.vladweb:hover {
  color: rgb(51, 51, 51);
}
.vladweb:hover svg {
  fill: #b00923;
}

.item.product {
  display: block;
  border-radius: 12px;
  padding: 5px 5px 50px;
  background: transparent;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.item.product .image {
  background: rgb(255, 255, 255);
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}
.item.product .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.item.product .stickers {
  position: absolute;
  left: 0;
  top: 25px;
}
.item.product .stickers > * {
  color: rgb(255, 255, 255);
  padding: 2px 10px;
  text-align: center;
  width: fit-content;
  margin: 3px 0;
  font-size: 14px;
}
.item.product .stickers > *.sale {
  background: rgb(246, 84, 84);
}
.item.product .stickers > *.new {
  background: #3A5BA0;
}
.item.product .stickers > *.hit {
  background: #FF0000;
}
.item.product .stickers > *.favorite {
  background: #AE3DB0;
}
.item.product .info {
  padding: 0 10px;
}
.item.product .title {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
  min-height: 50px;
}
.item.product .description {
  font-size: 16px;
  font-weight: 400;
  color: rgb(85, 85, 85);
}
.item.product .description p {
  margin: 0;
}
.item.product .price-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  line-height: normal;
}
.item.product .price-block .price {
  font-size: 20px;
  font-weight: 700;
}
.item.product .price-block .old-price {
  font-size: 13px;
  font-weight: 500;
  text-decoration: line-through;
  color: rgb(140, 140, 140);
}
.item.product .more {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 25px;
  color: rgb(85, 85, 85);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.item.product:hover {
  background: rgb(238, 238, 238);
  color: rgb(0, 0, 0);
}
.item.product:hover .more {
  color: rgb(216, 56, 49);
}
@media (max-width: 600px) {
  .item.product .image {
    height: 250px;
  }
  .item.product .stickers > * {
    font-size: 12px;
  }
  .item.product .title {
    font-size: 16px;
    line-height: 18px;
    min-height: 36px;
  }
  .item.product .description {
    font-size: 13px;
    line-height: 16px;
  }
  .item.product .description p {
    margin: 3px 0;
  }
}
.item.cart .title {
  font-size: 20px;
  font-weight: 700;
  color: rgb(216, 56, 49);
  text-align: center;
}
.item.cart .price, .item.cart .sale, .item.cart .cost, .item.cart .count, .item.cart .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.item.cart .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 10px;
  margin: 7px 0;
  max-width: 250px;
}
.item.cart .option .images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
.item.cart .option .images div {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.item.cart .price {
  font-size: 20px;
  font-weight: 700;
}
.item.cart .cost {
  font-size: 25px;
  font-weight: 700;
}
.item.cart .counter {
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.item.cart .counter input {
  height: 100%;
  padding: 0 10px;
  border: 1px solid #E3E3E4;
  background: transparent;
  font-size: 16px;
  margin-bottom: 0;
  width: 38px;
  text-align: center;
  border-radius: 3px;
  outline: none;
}
.item.cart .counter .btns {
  height: 100%;
  width: 20px;
}
.item.cart .counter .btns div {
  height: 50%;
  cursor: pointer;
  background: transparent;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.item.cart .counter .btns div:before {
  content: "";
  display: block;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ctitle%3EArrow Sorted Up SVG Icon%3C/title%3E%3Cpath fill='%239da8a5' d='M18.2 13.3L12 7l-6.2 6.3c-.2.2-.3.5-.3.7s.1.5.3.7s.4.3.7.3h11c.3 0 .5-.1.7-.3s.3-.5.3-.7s-.1-.5-.3-.7'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.item.cart .counter .btns div[type=minus]:before {
  transform: rotate(180deg);
}
.item.cart .counter .btns div:hover {
  background: rgb(243, 243, 243);
}
.item.cart #cart-item-delete {
  color: rgb(216, 56, 49);
  width: 20px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.item.cart #cart-item-delete:hover {
  transform: scale(1.1);
}
@media (max-width: 1000px) {
  .item.cart {
    border-top: 1px solid rgb(238, 238, 238);
    padding: 10px 0;
    margin-bottom: 10px;
    position: relative;
  }
  .item.cart:last-child {
    border-bottom: 1px solid rgb(238, 238, 238);
  }
  .item.cart .image {
    height: 200px;
    grid-area: 1/1/2/4;
  }
  .item.cart .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .item.cart .info {
    grid-area: 2/1/3/4;
  }
  .item.cart .info .title {
    display: block;
    text-align: center;
  }
  .item.cart .option {
    max-width: 100%;
  }
  .item.cart .price {
    grid-area: 3/1/4/2;
    font-size: 16px;
  }
  .item.cart .price:before {
    content: "Цена";
  }
  .item.cart .sale {
    grid-area: 3/2/4/3;
  }
  .item.cart .sale:before {
    content: "Скидка";
  }
  .item.cart .count {
    grid-area: 3/3/4/4;
  }
  .item.cart .count:before {
    content: "Количество";
  }
  .item.cart .price, .item.cart .sale, .item.cart .count {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 1px solid rgb(216, 56, 49);
    border-bottom: 1px solid rgb(216, 56, 49);
    padding: 10px 0;
  }
  .item.cart .price:before, .item.cart .sale:before, .item.cart .count:before {
    display: block;
    font-size: 14px;
    font-weight: 400;
  }
  .item.cart .cost {
    grid-area: 4/1/5/4;
    padding: 5px 0;
    font-size: 18px;
  }
  .item.cart #cart-item-delete {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}
.item.review {
  background: rgb(255, 255, 255);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1490196078);
  border-radius: 5px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.item.review .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 10px;
}
.item.review .name {
  font-size: 16px;
  font-weight: 500;
}
.item.review .date {
  font-size: 14px;
  font-weight: 500;
  color: rgb(85, 85, 85);
}
.item.review .description {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: rgb(101, 101, 101);
}
.item.review .image {
  width: 150px;
  height: 100px;
}
.item.review .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  object-position: left;
}

#section {
  /* ~~~~~~ Главная страница ~~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
}

#page-main {
  width: 100%;
  overflow-x: hidden;
}
#page-main .top-slider .item {
  height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#page-main .advantages {
  margin: 40px 0;
}
#page-main .advantages .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [5];
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
#page-main .advantages .list .item .icon {
  height: 70px;
  width: 70px;
  margin: 0 auto 10px;
}
#page-main .advantages .list .item .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#page-main .advantages .list .item .info {
  background: rgb(244, 244, 244);
  border-radius: 5px;
  padding: 10px;
  text-align: center;
}
#page-main .advantages .list .item .info .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 10px;
}
#page-main .advantages .list .item .info .text {
  line-height: 18px;
}
#page-main .categories .block-title {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
}
#page-main .categories .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
#page-main .categories .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 330px;
  background-color: rgb(243, 243, 243);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
#page-main .categories .list .item:before {
  display: none;
}
#page-main .categories .list .item:after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.27) 0%, rgba(0, 0, 0, 0.5) 100%);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#page-main .categories .list .item .info {
  position: relative;
  z-index: 3;
}
#page-main .categories .list .item .title {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 20px;
}
#page-main .categories .list .item:hover {
  transform: scale(1.02);
}
#page-main .catalog-sale, #page-main .catalog-new {
  margin: 40px 0;
}
#page-main .catalog-sale .block-title, #page-main .catalog-new .block-title {
  background: rgb(216, 56, 49);
  color: rgb(255, 255, 255);
  width: fit-content;
  padding: 3px 30px 3px 20px;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#page-main .catalog-sale .block-title:before, #page-main .catalog-new .block-title:before {
  content: "";
  display: block;
  position: absolute;
  border: 25px solid transparent;
  border-left: 15px solid rgb(216, 56, 49);
  left: 100%;
  top: 0;
}
#page-main .catalog-sale .slick-slider, #page-main .catalog-new .slick-slider {
  margin: 0 0 0 -10vw;
  width: calc(100% + 20vw);
}
#page-main .reviews-section {
  background-image: url("../images/reviews-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0;
}
#page-main .reviews-section .block-title {
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
#page-main .reviews-section .slick-slider {
  margin: 0 0 0 -10vw;
  width: calc(100% + 20vw);
}
#page-main .reviews-section .slick-slider .slick-slide {
  margin: 0 50px;
}
#page-main .reviews-section .yandex {
  margin: 20px 0 0 auto;
  width: fit-content;
}
#page-main .content h2 {
  font-size: 1.5em;
}
#page-main .content p, #page-main .content span, #page-main .content div, #page-main .content li, #page-main .content a {
  font-size: 18px;
  line-height: 140%;
}
#page-main .content p {
  margin: 30px 0;
}
#page-main .content ul {
  list-style: none;
}
#page-main .content li {
  line-height: 40px;
}
#page-main .content li:before {
  content: "";
  display: block;
  position: absolute;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9997 0.00517399C12.9974 0.049154 12.9553 0.049154 12.9293 0.0617659C12.5702 0.238656 12.2156 0.423307 11.8663 0.61863C11.3033 0.933604 10.7588 1.27671 10.233 1.6486C9.86924 1.90601 9.51401 2.17442 9.17356 2.46029C8.71415 2.84641 8.27544 3.25452 7.86007 3.68688C7.85152 3.69594 7.84856 3.71016 7.84298 3.72181L7.84035 3.72439C7.73355 3.79327 7.66322 3.89773 7.57942 3.98827C7.24653 4.34884 6.9304 4.723 6.62873 5.10944C6.34053 5.47842 6.06515 5.85677 5.79962 6.2416C5.60639 6.52165 5.42138 6.80752 5.23834 7.09436C4.92122 7.59107 4.61725 8.0949 4.32149 8.60358C4.06747 9.04015 3.81969 9.47995 3.5683 9.91781C3.55022 9.94918 3.54135 10.0019 3.50093 9.99995C3.46905 9.99833 3.46248 9.94659 3.44704 9.91652C3.26137 9.55336 3.07898 9.18858 2.89298 8.82575C2.58868 8.23202 2.26204 7.65058 1.88511 7.09792C1.54729 6.60217 1.16609 6.14167 0.702408 5.75297C0.506222 5.58869 0.295577 5.44349 0.0675155 5.32513C0.0155937 5.29829 -0.00182326 5.26725 0.000148454 5.21163C0.0093498 4.95842 0.0487839 4.71265 0.186804 4.4934C0.367545 4.20591 0.641285 4.07138 0.976148 4.06168C1.43687 4.0481 1.83516 4.22887 2.20157 4.4824C2.82135 4.91153 3.25578 5.49071 3.57914 6.15752C3.60149 6.20376 3.62383 6.25001 3.64717 6.2956C3.65637 6.31371 3.65472 6.34346 3.68233 6.34476C3.70763 6.34605 3.71552 6.31986 3.72669 6.3024C3.85584 6.10578 3.98071 5.90658 4.11413 5.71287C4.48843 5.16829 4.89756 4.65024 5.34448 4.16128C5.83216 3.62802 6.35696 3.13325 6.92547 2.6844C7.55872 2.18477 8.23272 1.74529 8.95141 1.37308C9.67602 0.997634 10.4276 0.68557 11.209 0.44174C11.5689 0.329526 11.932 0.228955 12.2984 0.140671C12.5288 0.0850495 12.7601 0.0297512 12.9964 0L13 0.00485054L12.9997 0.00517399Z' fill='%23D83831'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 15px;
}
@media (max-width: 1000px) {
  #page-main .top-slider .item {
    height: 33vw;
  }
  #page-main .advantages .list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
@media (max-width: 600px) {
  #page-main .top-slider .item {
    height: 50vw;
  }
  #page-main .advantages .list {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
  #page-main .advantages .list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
  }
  #page-main .advantages .list .item .icon {
    width: 50px;
  }
  #page-main .advantages .list .item .info {
    width: calc(100% - 70px);
  }
  #page-main .advantages .list .item .info .title {
    font-size: 16px;
  }
  #page-main .advantages .list .item .info .text {
    font-size: 14px;
  }
  #page-main .advantages .list .item:nth-child(2n-1) .icon {
    order: 1;
  }
  #page-main .advantages .list .item:nth-child(2n-1) .info {
    order: 0;
  }
  #page-main .categories .block-title {
    font-size: 25px;
    margin: 0 0 20px 0;
  }
  #page-main .categories .list {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  #page-main .categories .list .item .title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  #page-main .catalog-sale, #page-main .catalog-new {
    margin: 40px 0;
  }
  #page-main .catalog-sale .block-title, #page-main .catalog-new .block-title {
    font-size: 22px;
    padding: 0 20px 0 10px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    height: 40px;
  }
  #page-main .catalog-sale .block-title:before, #page-main .catalog-new .block-title:before {
    border: 20px solid transparent;
    border-left: 10px solid rgb(216, 56, 49);
  }
  #page-main .catalog-sale .slick-slider, #page-main .catalog-new .slick-slider {
    margin: 0 0 0 -60vw;
    width: calc(100% + 120vw);
  }
  #page-main .reviews-section .block-title {
    font-size: 20px;
    line-height: 24px;
  }
  #page-main .reviews-section .slick-slider {
    margin: 0 0 0 -60vw;
    width: calc(100% + 120vw);
  }
  #page-main .reviews-section .slick-slider .slick-slide {
    margin: 0 15px;
  }
}
#page-catalog .view-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 340px 1fr;
  grid-template-columns: 340px 1fr;
  gap: 45px;
}
#page-catalog .aside .menu > .title {
  margin-bottom: 20px;
}
#page-catalog .aside .menu > .title svg {
  display: none;
}
#page-catalog .aside .menu .menu-catalog li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 15px;
}
#page-catalog .aside .menu .menu-catalog li div svg {
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
#page-catalog .aside .menu .menu-catalog li.active svg {
  transform: rotate(90deg);
}
#page-catalog .aside .menu .menu-catalog > li > div {
  border-bottom: 1px solid rgb(233, 233, 233);
  padding: 12px 10px 12px 2px;
}
#page-catalog .aside .menu .menu-catalog > li > div > a {
  font-size: 18px;
  font-weight: 500;
}
#page-catalog .aside .menu .menu-catalog > li.has-children > ul.submenu {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
#page-catalog .aside .menu .menu-catalog > li.has-children > ul.submenu > li {
  margin: 10px 0;
}
#page-catalog .aside .menu .menu-catalog > li.has-children > ul.submenu > li > div {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  gap: 7px;
}
#page-catalog .aside .menu .menu-catalog > li.has-children > ul.submenu > li > div:before {
  content: "";
  display: block;
  position: absolute;
  position: unset;
  width: 5px;
  height: 5px;
  background: rgb(217, 217, 217);
  border-radius: 50%;
}
#page-catalog .aside .menu .menu-catalog > li.has-children > ul.submenu > li > div > a {
  font-size: 16px;
  font-weight: 400;
}
#page-catalog .aside .menu .menu-catalog > li.has-children > ul.submenu > li.active > div:before {
  background: rgb(216, 56, 49);
}
#page-catalog .aside .menu .menu-catalog > li.has-children > ul.submenu > li.active > div > a {
  color: rgb(216, 56, 49);
}
#page-catalog .aside .menu .menu-catalog > li.has-children.active > ul.submenu {
  max-height: 500px;
}
#page-catalog .aside .menu .menu-catalog > li.has-children:not(.active) > div > a {
  pointer-events: none;
}
#page-catalog .aside .filters {
  margin-top: 20px;
}
#page-catalog .aside .filters > .title {
  display: none;
}
#page-catalog .aside .filters .list {
  position: relative;
}
#page-catalog .aside .filters .filter {
  background: rgb(249, 249, 249);
  border-radius: 7px;
  margin: 10px 0;
  display: none;
}
#page-catalog .aside .filters .filter > .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 15px;
  padding: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  border-radius: 7px;
}
#page-catalog .aside .filters .filter > .title svg {
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  transform: rotate(90deg);
}
#page-catalog .aside .filters .filter > .title:hover {
  background: rgb(225, 225, 225);
}
#page-catalog .aside .filters .filter .parameters {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
#page-catalog .aside .filters .filter .parameters .form-type-checkbox {
  margin: 10px 0;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
#page-catalog .aside .filters .filter .parameters .form-type-checkbox .form-checkbox {
  width: 12px;
  height: 12px;
}
#page-catalog .aside .filters .filter .parameters .form-type-checkbox label {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
#page-catalog .aside .filters .filter .parameters .form-type-checkbox:first-child {
  margin-top: 5px;
}
#page-catalog .aside .filters .filter.show > .title svg {
  transform: rotate(0);
}
#page-catalog .aside .filters .filter.show .parameters {
  max-height: 500px;
}
#page-catalog .aside .filters .form-item-field-cat-price-value-min input, #page-catalog .aside .filters .form-item-field-cat-price-value-max input {
  width: 47%;
  border-radius: 40px;
  border: 1px solid rgb(224, 224, 224);
  text-align: center;
  box-shadow: none;
  color: rgb(0, 0, 0);
}
#page-catalog .aside .filters .form-item-field-cat-price-value-min {
  background: rgb(249, 249, 249);
  border-radius: 7px;
  margin: 10px 0;
  padding: 10px;
}
#page-catalog .aside .filters .form-item-field-cat-price-value-min label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  border-radius: 7px;
}
#page-catalog .aside .filters .form-item-field-cat-price-value-min .ui-slider {
  margin: 20px 5px 10px;
  border: none;
  position: relative;
  height: 5px;
}
#page-catalog .aside .filters .form-item-field-cat-price-value-min .ui-slider:before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: rgb(224, 224, 224);
  top: 50%;
  left: 0;
}
#page-catalog .aside .filters .form-item-field-cat-price-value-min .ui-slider-range {
  height: 1px;
  background: transparent;
}
#page-catalog .aside .filters .form-item-field-cat-price-value-min .ui-slider-handle {
  width: 14px;
  height: 14px;
  background: rgb(216, 56, 49);
  border-radius: 50%;
  border: none;
}
#page-catalog .aside .filters .form-item-field-cat-price-value-max {
  position: absolute;
  margin: 0;
  top: 36px;
  right: 10px;
  width: 47%;
}
#page-catalog .aside .filters .form-item-field-cat-price-value-max label {
  display: none;
}
#page-catalog .aside .filters .form-item-field-cat-price-value-max input {
  width: auto;
}
#page-catalog .aside .filters .form-item-sort-by, #page-catalog .aside .filters .form-item-sort-order {
  display: none;
}
#page-catalog .aside .filters input[type=submit] {
  border: none;
  box-shadow: none;
  outline: none;
  display: block;
  padding: 0;
}
#page-catalog .aside .filters input[type=submit][id^=edit-submit] {
  border-radius: 7px;
  background: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
  padding: 12px 15px;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
#page-catalog .aside .filters input[type=submit][id^=edit-submit]:hover {
  background: rgb(246, 84, 84);
}
#page-catalog .aside .filters input[type=submit][id^=edit-reset] {
  color: rgb(246, 84, 84);
  background: transparent;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0 0 auto;
}
#page-catalog .catalog .top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 20px;
}
#page-catalog .catalog .sort-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 7px;
}
#page-catalog .catalog .sort-bar .sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 3px;
  height: 16px;
  white-space: nowrap;
}
#page-catalog .catalog .sort-bar .sort svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: none;
}
#page-catalog .catalog .sort-bar .sort:not([disabled]) svg {
  display: block;
}
#page-catalog .catalog .sort-bar .sort[data-dir=ASC] svg {
  transform: rotate(180deg);
}
#page-catalog .catalog .list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px;
}
#page-catalog .catalog nav.pager {
  margin-top: 40px;
}
#page-catalog .catalog nav.pager h4 {
  display: none;
}
#page-catalog .catalog nav.pager .pager__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3px;
}
#page-catalog .catalog nav.pager .pager__item {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#page-catalog .catalog nav.pager .pager__item--last, #page-catalog .catalog nav.pager .pager__item--first {
  width: auto;
  height: auto;
}
#page-catalog .catalog nav.pager .pager__item a {
  color: rgb(51, 51, 51);
  font-size: 18px;
  font-weight: 400;
  border: none;
  padding: 0;
}
#page-catalog .catalog nav.pager .pager__item a:before {
  display: none;
}
#page-catalog .catalog nav.pager .pager__item.is-active {
  background: rgb(216, 56, 49);
}
#page-catalog .catalog nav.pager .pager__item.is-active a {
  color: rgb(255, 255, 255);
}
@media (max-width: 1000px) {
  #page-catalog .view-wrapper {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  #page-catalog .aside .menu .menu-catalog {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -ms-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
  }
  #page-catalog .aside .menu.show .menu-catalog {
    max-height: 1000px;
  }
  #page-catalog .aside .filters .list {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -ms-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
  }
  #page-catalog .aside .filters.show .list {
    max-height: 1000px;
  }
  #page-catalog .aside .menu, #page-catalog .aside .filters {
    margin: 0;
  }
  #page-catalog .aside .menu > .title, #page-catalog .aside .filters > .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    border-radius: 7px;
    padding: 15px;
    margin: 7px 0;
    color: rgb(255, 255, 255);
  }
  #page-catalog .aside .menu > .title svg, #page-catalog .aside .filters > .title svg {
    display: block;
    transform: rotate(90deg);
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -ms-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
  }
  #page-catalog .aside .menu:is(.menu) > .title, #page-catalog .aside .filters:is(.menu) > .title {
    background: rgb(51, 51, 51);
  }
  #page-catalog .aside .menu:is(.filters) > .title, #page-catalog .aside .filters:is(.filters) > .title {
    background: rgb(246, 84, 84);
  }
  #page-catalog .aside .menu.show > .title svg, #page-catalog .aside .filters.show > .title svg {
    transform: rotate(0);
  }
  #page-catalog .catalog .top-bar {
    display: block;
    margin-bottom: 15px;
  }
  #page-catalog .catalog .list {
    gap: 20px;
  }
}
#page-product .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 600px 1fr;
  grid-template-columns: 600px 1fr;
  gap: 50px;
}
#page-product .gallery {
  position: relative;
}
#page-product .gallery .stickers {
  position: absolute;
  left: 0;
  top: 25px;
  z-index: 10;
}
#page-product .gallery .stickers > * {
  color: rgb(255, 255, 255);
  padding: 2px 10px;
  text-align: center;
  width: fit-content;
  margin: 3px 0;
  font-size: 14px;
}
#page-product .gallery .stickers > *.sale {
  background: rgb(246, 84, 84);
}
#page-product .gallery .stickers > *.new {
  background: #3A5BA0;
}
#page-product .gallery .stickers > *.hit {
  background: #FF0000;
}
#page-product .gallery .stickers > *.favorite {
  background: #AE3DB0;
}
#page-product .gallery .slick-list, #page-product .gallery .slick-track, #page-product .gallery .item {
  height: 100%;
}
#page-product .gallery .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#page-product .gallery .main {
  height: 500px;
  margin-bottom: 20px;
}
#page-product .gallery .mini {
  height: 120px;
}
#page-product .gallery .mini .slick-track {
  margin-left: 0;
}
#page-product .gallery .mini .item {
  position: relative;
  background: rgb(255, 255, 255);
}
#page-product .gallery .mini .item svg {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px;
}
#page-product .gallery .mini .item.slick-current img {
  opacity: 0.6;
}
#page-product .gallery .mini .item.slick-current svg {
  opacity: 1;
}
#page-product .detail {
  background: rgb(249, 249, 249);
  border-radius: 16px;
  padding: 30px;
  height: fit-content;
}
#page-product .detail .tabs {
  margin: 0;
}
#page-product .detail .tabs .nav {
  background: transparent;
  gap: 40px;
  margin-bottom: 20px;
}
#page-product .detail .tabs .nav .item {
  font-size: 20px;
  font-weight: 500;
  border-radius: 0;
  padding: 0;
  background: transparent;
  border-bottom: 1px dashed;
  cursor: pointer;
  flex: none;
}
#page-product .detail .tabs .nav .item.active {
  color: rgb(246, 84, 84);
}
#page-product .detail .product-options label {
  display: block;
  font-size: 18px;
  font-weight: 500;
}
#page-product .detail .price-block {
  border-top: 1px solid rgb(233, 233, 233);
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  font-weight: 500;
}
#page-product .detail .price-block .price {
  font-size: 25px;
  font-weight: 700;
  white-space: nowrap;
}
#page-product .detail .price-block .old-price {
  font-size: 18px;
  font-weight: 500;
  text-decoration: line-through;
  color: rgb(157, 157, 157);
  white-space: nowrap;
}
#page-product .detail .price-block button[type=submit] {
  padding: 5px 35px;
}
#page-product .product-params {
  margin-top: 40px;
}
#page-product .product-params .tabs-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: rgb(249, 249, 249);
  border-radius: 44px;
}
#page-product .product-params .tabs-header ul li {
  background: transparent;
  border-radius: 44px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  cursor: pointer;
  padding: 12px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
#page-product .product-params .tabs-header ul li:hover {
  background: rgb(243, 243, 243);
}
#page-product .product-params .tabs-header ul li.active {
  background: rgb(216, 56, 49);
  color: rgb(255, 255, 255);
}
#page-product .product-params .params-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25%;
  grid-template-columns: 1fr 25%;
  margin-top: 25px;
}
#page-product .product-params .params-info {
  padding: 0 20px;
}
#page-product .product-params .params-info_title {
  font-weight: bold;
  margin-bottom: 10px;
}
#page-product .product-params .params-info_price {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
#page-product .product-params .params-info .add_to_cart .btn {
  width: 100%;
  padding: 10px 30px;
  margin-top: 10px;
}
#page-product .product-params .tabs-body__tab {
  display: none;
  flex-wrap: wrap;
  width: 100%;
}
#page-product .product-params .option-item {
  width: 19%;
  margin-right: 1%;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  border: 2px solid white;
  transition: all 0.3s ease;
}
#page-product .product-params .option-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#page-product .product-params .option-item_name {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  height: 40px;
  display: table;
  width: 100%;
}
#page-product .product-params .option-item_name span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
}
#page-product .product-params .option-item:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(201, 60, 60, 0.7);
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  top: calc(50% - 40px);
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  transition: all 0.3s ease;
}
#page-product .product-params .option-item.checked:before {
  content: attr(data-idx);
  opacity: 1;
}
#page-product .product-params .option-item:hover {
  border: 2px solid #c93c3c;
}
#page-product .product-params .params-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  width: calc(100% - 20px);
}
#page-product .product-params .params-item i {
  display: none;
}
#page-product .product-params .params-item-section {
  padding: 10px 0;
  border-top: 1px solid rgb(233, 233, 233);
  position: relative;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
#page-product .product-params .params-item-section:last-child {
  border-bottom: 1px solid rgb(233, 233, 233);
}
#page-product .product-params .params-item_title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}
#page-product .product-params .params-item.disable {
  display: none;
}
#page-product .product-params .params-item:not(.not-selected) {
  cursor: pointer;
}
#page-product .product-params .params-item img {
  background: #cacaca;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
}
#page-product .product-params .params-item.param-size img {
  background-image: url(/themes/vladweb/images/size_arrows.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
#page-product .product-params .params-item_name {
  margin-left: 10px;
  position: relative;
  width: calc(100% - 50px);
  line-height: normal;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#page-product .product-params .params-item:not(.not-selected):hover #page-product .product-params .params-item_name:after, #page-product .product-params .params-item.selected #page-product .product-params .params-item_name:after {
  width: 100%;
}
#page-product .product-params .params-item:not(.not-selected) .fa-times:hover + #page-product .product-params .params-item_name:after {
  width: 0;
}
#page-product .product-params .params-item_value {
  margin-left: 10px;
  color: rgb(216, 56, 49);
  font-weight: bold;
  height: 30px;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#page-product .product-params .params-item_count {
  width: fit-content;
  margin-left: 50px;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transform-origin: 0 0;
  transform: rotateX(-90deg);
  background: #E8E8E8;
  margin-top: 10px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
#page-product .product-params .params-item_count button {
  width: 28px;
  height: 30px;
  float: left;
  margin: 0;
  background: transparent;
  border: none;
  font-size: 18px;
  font-family: arial;
  line-height: 29px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
#page-product .product-params .params-item_count button.btn-minus {
  line-height: 22px;
}
#page-product .product-params .params-item_count input {
  width: 40px;
  height: 30px;
  float: left;
  border-radius: 0;
  margin: 0;
  border: none;
  background: transparent;
  text-align: center;
}
#page-product .product-params .params-item-section.warning-window {
  background: rgba(201, 60, 60, 0.1803921569);
}
#page-product .product-params .params-item.checked i.fa-times {
  opacity: 1;
  visibility: visible;
}
#page-product .product-params .params-item.checked .params-item_count {
  transform: rotateX(0deg);
  visibility: visible;
  opacity: 1;
  max-height: 100%;
}
#page-product .product-params .params-warning-window {
  position: absolute;
  top: 0px;
  left: 105%;
  width: 100%;
  max-width: 260px;
  background: #c93c3c;
  color: white;
  border-radius: 5px;
  padding: 10px;
  display: none;
}
#page-product .product-comments-list {
  height: 190px;
}
#page-product .product-comments .slick-arrow {
  background: transparent;
  color: black;
  font-size: 24px;
}
#page-product .prod-com-item {
  padding: 10px;
  width: 300px;
}
#page-product .prod-com-item_content {
  border: 1px solid #ececec;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 10px;
}
#page-product .prod-com-item_name {
  font-weight: bold;
}
#page-product .prod-com-item_text {
  text-align: justify;
  font-size: 15px;
  line-height: 20px;
}
@media (max-width: 1000px) {
  #page-product .wrapper {
    -ms-grid-columns: 100% [1];
    grid-template-columns: repeat(1, 100%);
  }
  #page-product .detail .tabs .nav {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-direction: normal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  #page-product .detail .tabs .nav .item {
    width: auto;
  }
  #page-product .detail .price-block {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #page-product .product-params .params-body {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
  #page-product .product-params .tabs-header ul {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 20px;
  }
  #page-product .product-params .tabs-header ul li {
    font-size: 16px;
    padding: 7px;
    flex: none;
    width: 100%;
  }
  #page-product .product-params .option-item {
    width: 49%;
    height: 250px;
  }
  #page-product .product-params .params-warning-window {
    top: 103%;
    left: 0;
    z-index: 10;
    max-width: none;
    text-align: center;
  }
  #page-product .product-params .params-warning-window p {
    margin: 0;
  }
}
@media (max-width: 600px) {
  #page-product .detail .tabs .nav .item {
    font-size: 16px;
  }
}
#page-cart .table .head, #page-cart .table .body .item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 150px 1fr 150px 150px 100px 200px 20px;
  grid-template-columns: 150px 1fr 150px 150px 100px 200px 20px;
  gap: 10px;
}
#page-cart .table .head {
  text-align: center;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 5px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
}
#page-cart .total-block {
  background: rgb(216, 56, 49);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  gap: 20px;
  color: rgb(255, 255, 255);
}
#page-cart .total-block .info {
  font-size: 25px;
  font-weight: 700;
}
#page-cart .total-block .cost {
  font-size: 30px;
  font-weight: 700;
}
#page-cart .to-page-order {
  background: rgb(51, 51, 51);
  margin: 20px auto 0;
  display: block;
  width: fit-content;
  padding: 12px 40px;
  font-size: 18px;
}
@media (max-width: 1000px) {
  #page-cart .table .head {
    display: none;
  }
  #page-cart .table .body .item {
    -ms-grid-columns: 1fr [3];
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 0;
  }
  #page-cart .total-block {
    display: block;
    text-align: center;
  }
  #page-cart .total-block .info {
    font-size: 18px;
  }
  #page-cart .total-block .cost {
    font-size: 22px;
    margin-top: 10px;
  }
}
#page-order .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
#page-order .form-control {
  border-radius: 3px;
}
#page-order .customradio {
  position: relative;
  min-height: 24px;
  margin-bottom: 10px;
}
#page-order .customradio input[type=radio] {
  position: fixed;
  top: -100000px;
}
#page-order .customradio input[type=radio] label {
  font-size: 14px;
}
#page-order .customradio input[type=radio] label strong {
  font-weight: 600;
  color: #fff;
  font-size: 13px;
}
#page-order .customradio input[type=radio] label + p {
  padding-left: 25px;
  font-size: 13px;
}
#page-order .customradio input[type=radio] .small {
  color: #8A8A8A;
}
#page-order .customradio input[type=radio] + label {
  position: relative;
  padding-left: 25px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 4px;
  font-size: 18px;
  transition: all 0.3s ease;
}
#page-order .customradio input[type=radio] + label:before {
  background: url(../images/baseline-radio-button-unchecked-24px.svg) 0 0 no-repeat;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 4px;
  left: 0px;
}
#page-order .customradio input[type=radio]:disabled + label {
  opacity: 0.3;
}
#page-order .customradio input[type=radio]:checked + label:before {
  background: url(../images/baseline-radio-button-checked-24px.svg) 0 0 no-repeat;
  background-size: contain;
}
#page-order .customradio input[type=radio].disabled label, #page-order .customradio input[type=radio].disabled label strong, #page-order .customradio input[type=radio].disabled label::before {
  cursor: default !important;
  color: #848484;
}
#page-order .agree {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 1fr;
  grid-template-columns: 20px 1fr;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
#page-order .agree .text, #page-order .agree .text * {
  color: rgb(51, 51, 51);
}
#page-order .agree .text a {
  display: inline;
  text-decoration: underline;
}
#page-order .agree .text a:hover {
  color: rgb(0, 0, 0);
}
#page-order #orderbutton {
  margin-top: 10px;
  padding: 12px 40px;
  font-size: 18px;
}
@media (max-width: 1000px) {
  #page-order .wrapper {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
#page-contacts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
#page-contacts .offices > .name {
  display: none;
}
#page-contacts .offices .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}
#page-contacts .offices .line div:first-child {
  min-width: 150px;
  font-weight: 600;
}
#page-contacts .offices .btn {
  padding: 5px 20px;
}
#page-contacts .map {
  height: 400px;
}
#page-contacts .map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1000px) {
  #page-contacts {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 600px) {
  #page-contacts .offices .line {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #page-contacts .offices .line div:first-child {
    width: 100%;
  }
}
#page-portfolio .gallery {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
#page-portfolio .gallery a {
  display: block;
  height: 360px;
  padding: 0;
}
#page-portfolio .gallery a:before {
  display: none;
}
#page-portfolio .gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#page-reviews .yandex-rating {
  text-align: right;
  margin: 10px 0;
}
#page-reviews .list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 50px;
}
@media (max-width: 500px) {
  #page-reviews .list {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
}
#page-search {
  margin-top: 30px;
}
#page-search .search-form {
  display: none;
}
#page-search .search-results {
  margin: 20px 0;
}

html, body {
  font-size: 16px;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
html *, body * {
  font-family: "Tilda Sans", sans-serif;
}
html a:hover, body a:hover {
  color: rgb(216, 56, 49);
  text-decoration: none;
}

body {
  margin: 0 !important;
}
body .dialog-off-canvas-main-canvas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}
body .page-wrapper {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

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

select {
  -webkit-appearance: auto;
  background-image: none !important;
}

.page-title {
  font-size: 35px;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 20px;
}

.phone, .email {
  gap: 5px;
}
.phone svg, .email svg {
  width: auto;
  height: auto;
}

.email svg {
  position: relative;
  bottom: -2px;
}

.btn {
  border-radius: 35px;
  padding: 5px 10px;
  font-size: 14px;
}
.btn.btn-red-light {
  background: rgb(216, 56, 49);
  color: rgb(255, 255, 255);
  border-color: rgb(216, 56, 49);
}
.btn.btn-red-light:hover {
  background: rgb(246, 84, 84);
  border-color: rgb(246, 84, 84);
}

.form-control {
  background: rgb(238, 238, 238);
  border-color: rgb(238, 238, 238);
  border-radius: 36px;
  padding: 10px 20px;
}

.tabs .nav {
  background: rgb(250, 250, 250);
  border-radius: 44px;
}
.tabs .nav .item {
  border-radius: 44px;
  background: transparent;
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 600;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  padding: 12px 50px;
  text-align: center;
}
.tabs .nav .item:before {
  display: none;
}
.tabs .nav .item:hover {
  background: rgb(238, 238, 238);
}
.tabs .nav .item.active {
  background: rgb(216, 56, 49);
  color: rgb(255, 255, 255);
}
@media (max-width: 1000px) {
  .tabs .nav {
    gap: 0;
  }
  .tabs .nav .item {
    width: 100%;
  }
}

.hamburger {
  z-index: 1;
}

.breadcrumb {
  margin: 15px 0 20px;
  gap: 0;
}
.breadcrumb li {
  color: rgb(85, 85, 85);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.breadcrumb li:first-child {
  background: rgb(216, 56, 49);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.breadcrumb li:first-child a:before {
  display: none;
}
.breadcrumb li:first-child:hover {
  background: rgb(51, 51, 51);
}
.breadcrumb li:not(:first-child):before {
  content: "";
  display: block;
  width: 30px;
  height: 16px;
  background-position: center;
  background-size: 5px auto;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='5' height='9' viewBox='0 0 5 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 8.5L4.5 4.5L0.5 0.5' stroke='%23A0A0A0' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

div#block-vladweb-redesign-primary-local-tasks {
  display: none;
}

@media (max-width: 1000px) {
  #toolbar-administration {
    display: none;
    margin: 0;
  }
}
header .top {
  background: rgb(31, 31, 31);
}
header .top * {
  color: rgb(255, 255, 255);
}
header .top .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 20px;
  min-height: 45px;
}
header .top ul.menu-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 30px;
}
header .top ul.menu-main a {
  font-size: 14px;
  font-weight: 500;
}
header .top .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
}
header .bottom .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 30px;
  min-height: 100px;
}
header .bottom .logo:before {
  display: none;
}
header .bottom .bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 25px;
}
header .bottom .search-form {
  min-width: 500px;
}
header .bottom .search-form-block {
  position: relative;
}
header .bottom .search-form input {
  margin: 0;
  padding: 7px 40px 7px 20px;
}
header .bottom .search-form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgb(216, 56, 49);
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  border: none;
  outline: none;
  padding: 3px;
}
header .bottom .search-btn {
  display: none;
}
header .bottom .cart {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  width: 35px;
  height: 30px;
}
header .bottom .cart:before {
  display: none;
}
header .bottom .cart .count {
  background: rgb(216, 56, 49);
  color: rgb(255, 255, 255);
  width: 23px;
  height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
header .menu-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 120px;
  background: linear-gradient(180deg, #B90E06 0%, #D83831 100%);
}
header .menu-catalog .submenu {
  display: none;
}
header .menu-catalog a {
  font-size: 18px;
  font-weight: 500;
}
header .menu-catalog > li {
  position: relative;
  padding: 8px 0;
}
header .menu-catalog > li > a {
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
}
header .menu-catalog > li > a img {
  max-width: 30px;
  max-height: 30px;
  width: auto;
  height: auto;
}
header .menu-catalog > li > .submenu {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  background: rgb(238, 238, 238);
  border-radius: 10px;
  width: fit-content;
  max-height: 0;
  overflow: hidden;
  z-index: 3;
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
header .menu-catalog > li > .submenu > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 50px;
  padding: 20px 30px;
}
header .menu-catalog > li > .submenu > ul > li > a {
  white-space: nowrap;
}
header .menu-catalog > li:hover > .submenu {
  max-height: 1000px;
}
header .menu-catalog-btn {
  display: none;
}
@media (max-width: 1200px) {
  header .top .wrapper {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  header .top ul.menu-main {
    display: none;
  }
}
@media (max-width: 1000px) {
  header .bottom .search-form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(255, 255, 255);
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 20px;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -ms-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    transform: translateY(-100%);
  }
  header .bottom .search-form-block {
    width: 100%;
  }
  header .bottom .search-form .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  header .bottom .search-form .hamburger .hamburger-box {
    width: 24px;
  }
  header .bottom .search-form .hamburger .hamburger-inner, header .bottom .search-form .hamburger .hamburger-inner::before, header .bottom .search-form .hamburger .hamburger-inner::after {
    width: 24px;
    height: 2px;
  }
  header .bottom .search-form.show {
    transform: translateY(0);
  }
  header .bottom .search-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgb(216, 56, 49);
    border-radius: 50%;
    padding: 3px;
  }
  header .bottom .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  header .menu-catalog {
    display: none;
  }
}
@media (max-width: 600px) {
  header .top .contacts {
    gap: 10px;
  }
  header .top .contacts .phone {
    gap: 0;
  }
  header .top .contacts .phone, header .top .contacts .email {
    font-size: 13px;
  }
  header .top .contacts .btn {
    display: none;
  }
  header .bottom .wrapper {
    min-height: auto;
    padding: 20px 0;
  }
  header .bottom .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  header .bottom .logo svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  header .bottom .bar {
    gap: 15px;
  }
  header .bottom .search-btn {
    width: 28px;
    height: 28px;
    padding: 5px;
  }
  header .bottom .cart {
    width: 30px;
    height: 28px;
  }
  header .bottom .cart .count {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }
  header .bottom .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  header .bottom .hamburger .hamburger-box {
    width: 30px;
    height: 12px;
  }
  header .bottom .hamburger .hamburger-inner {
    margin-top: -1px;
  }
  header .bottom .hamburger .hamburger-inner, header .bottom .hamburger .hamburger-inner:after, header .bottom .hamburger .hamburger-inner:before {
    width: 30px;
    height: 3px;
    background-color: black;
  }
  header .bottom .hamburger:not(.is-active) .hamburger-inner:before {
    top: -8px;
  }
  header .bottom .hamburger:not(.is-active) .hamburger-inner:after {
    bottom: -8px;
  }
}

.mobile-menu {
  display: block;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  padding: 0 40px 0 0;
  transform: translateX(100%);
}
.mobile-menu .wrapper {
  background: rgb(255, 255, 255);
  height: 100%;
  overflow-y: scroll;
}
.mobile-menu .hamburger {
  position: absolute;
  top: 7px;
  right: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.mobile-menu .hamburger .hamburger-box {
  width: 24px;
  height: 24px;
}
.mobile-menu .hamburger .hamburger-inner {
  margin-top: -2px;
}
.mobile-menu .hamburger .hamburger-inner, .mobile-menu .hamburger .hamburger-inner:after, .mobile-menu .hamburger .hamburger-inner:before {
  width: 24px;
  height: 2px;
  background-color: rgb(255, 255, 255);
}
.mobile-menu .hamburger:not(.is-active) .hamburger-inner:before {
  top: -10px;
}
.mobile-menu .hamburger:not(.is-active) .hamburger-inner:after {
  bottom: -10px;
}
.mobile-menu ul li {
  border-bottom: 1px solid rgb(163, 163, 163);
}
.mobile-menu ul a {
  display: block;
  padding: 10px;
}
.mobile-menu .dropdown-menu {
  margin-bottom: 20px;
}
.mobile-menu .dropdown-menu .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-size: 20px;
  color: rgb(255, 255, 255);
  padding: 10px;
  background: linear-gradient(180deg, #B90E06 0%, #D83831 100%);
}
.mobile-menu .dropdown-menu ul {
  display: none;
}
.mobile-menu .dropdown-menu > ul > li > a img {
  display: none;
}
.mobile-menu .dropdown-menu > ul > li.down > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.mobile-menu .dropdown-menu > ul > li.down > a:after {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='6' viewBox='0 0 12 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.3687 0.357271L7.1593 4.93444C6.46501 5.68939 5.27334 5.68843 4.58027 4.93236L0.368652 0.33786' stroke='%23333333'/%3E%3C/svg%3E%0A");
  width: 12px;
  height: 6px;
}
.mobile-menu .dropdown-menu > ul > li.down.show > a {
  background: rgb(246, 84, 84);
  color: rgb(255, 255, 255);
}
.mobile-menu .dropdown-menu > ul > li .submenu ul {
  background: rgb(220, 220, 220);
}

footer {
  background: rgb(243, 243, 243);
  padding: 40px 0 20px;
  margin-top: 40px;
}
footer .phone-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
footer .phone, footer .email {
  width: fit-content;
  color: rgb(0, 0, 0);
}
footer .phone:hover, footer .email:hover {
  color: rgb(216, 56, 49);
}
footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 120px;
}
footer .wrapper .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
footer .info .company {
  font-size: 14px;
}
footer .info .text {
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  margin: 15px 0;
}
footer .info .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
}
footer .info .links a {
  width: fit-content;
  font-size: 12px;
  line-height: normal;
  text-decoration: underline;
}
footer .info .copyright {
  font-size: 14px;
  margin-top: 15px;
}
footer .menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
footer .menus ul {
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
footer .menus ul li {
  margin-bottom: 7px;
}
footer .contacts {
  min-width: 270px;
}
footer .contacts > * {
  margin-bottom: 7px;
}
footer .contacts .socials {
  gap: 5px;
}
footer .contacts .socials a {
  width: 22px;
  height: 22px;
}
footer .contacts .block {
  font-size: 14px;
}
footer .contacts .block .title {
  color: rgb(163, 163, 163);
}
footer .contacts .vladweb {
  margin-top: 20px;
  color: rgb(163, 163, 163);
}
footer .contacts .vladweb svg {
  fill: rgb(163, 163, 163);
}
footer .contacts .vladweb:hover {
  color: rgb(0, 0, 0);
}
footer .contacts .vladweb:hover svg {
  fill: rgb(216, 56, 49);
}
@media (max-width: 1200px) {
  footer .wrapper .right {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 800px) {
  footer {
    padding: 20px 0;
  }
  footer .wrapper {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    position: relative;
    padding-bottom: 50px;
  }
  footer .wrapper .info, footer .wrapper .right {
    display: contents;
  }
  footer .wrapper .logo {
    order: 1;
  }
  footer .wrapper .company {
    order: 2;
  }
  footer .wrapper .menus {
    order: 3;
  }
  footer .wrapper .contacts {
    order: 4;
  }
  footer .wrapper .info .text {
    order: 5;
  }
  footer .wrapper .links {
    order: 6;
  }
  footer .wrapper .copyright {
    order: 7;
  }
  footer .wrapper .vladweb {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 400px) {
  footer .menus a {
    font-size: 14px;
  }
}

.modal .wrapper {
  padding: 40px;
}
.modal form .agree {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 1fr;
  grid-template-columns: 20px 1fr;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
.modal form .agree .text, .modal form .agree .text * {
  color: rgb(51, 51, 51);
}
.modal form .agree .text a {
  display: inline;
  text-decoration: underline;
}
.modal form .agree .text a:hover {
  color: rgb(0, 0, 0);
}
.modal#add-to-cart-msg {
  text-align: center;
}
.modal#add-to-cart-msg .title {
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid rgb(216, 56, 49);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.modal#add-to-cart-msg .text {
  font-size: 18px;
  font-weight: 500;
}
.modal#add-to-cart-msg .btn {
  padding: 10px 30px;
  font-size: 16px;
  margin-top: 30px;
}

@media only screen and (min-width: 992px) {
  /************* custom chrome scroll ***************/
  body::-webkit-resizer {
    background-image: url("");
    background-repeat: no-repeat;
    width: 8px;
    height: 1px;
  }
  body::-webkit-scrollbar {
    width: 8px;
  }
  body::-webkit-scrollbar-button {
    background-image: url("");
    background-repat: no-repeat;
    width: 8px;
    height: 0px;
  }
  body::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background-color: #C93C3C;
  }
  body::-webkit-scrollbar-track {
    background-color: #22282E;
  }
  /*********** end custom chrome scroll **********/
}
#up {
  position: fixed;
  z-index: 300;
  bottom: 30px;
  right: 10px;
  display: none;
  color: #fff;
  width: 44px;
  text-align: center;
  height: 44px;
  cursor: pointer;
  -webkit-transition: background-color 200ms ease-out;
  -moz-transition: background-color 200ms ease-out;
  -o-transition: background-color 200ms ease-out;
  transition: background-color 200ms ease-out;
  background: #C93C3C;
  font-size: 32px;
  border-radius: 3px;
}

#up:hover {
  background-color: #fff;
  color: #fff;
}

#up .fa {
  display: block;
  line-height: 40px;
}

/* CART */
div#success-order-msg {
  text-align: center;
}

div#success-order-msg p {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: green;
  margin-bottom: 35px;
}

/* /. CART */
.check-order {
  width: 100%;
  display: flex;
}
.check-order > div {
  width: 50%;
}
.check-order_products {
  border-left: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
}
.check-order_info .field {
  display: flex;
  justify-content: space-between;
  padding: 7px 2px;
  border-bottom: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
}
.check-order_info .field > div {
  width: 50%;
}
.check-order_info .field__label {
  display: block;
}

.order-item {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #d0d0d0;
}
.order-item_image {
  width: 30%;
}
.order-item_body {
  padding-left: 15px;
  width: 70%;
}
.order-item_body p {
  margin: 0;
}
.order-item_price span.old_price {
  color: red;
  text-decoration: line-through;
}
.order-item_option {
  padding-left: 15px;
}
.order-item_option-img {
  width: 40px;
  height: 40px;
}
.order-item_option-img img {
  object-fit: contain;
  width: 40px;
  height: 40px;
}
.order-item_option > div {
  width: 100%;
  display: flex;
}

.order-item_options table td, .order-item_options table th {
  text-align: center;
}
.order-item_options table td:nth-child(1) {
  width: 25%;
  max-width: 93px;
}
.order-item_options table td:nth-child(2) {
  width: 100%;
}
.order-item_options table td:nth-child(3) {
  width: 12%;
  min-width: 50px;
}
.order-item_options table tr:not(:last-child) {
  border-bottom: 1px solid #bfbfba;
}
.order-item_options img {
  max-height: 67px;
  max-width: 93px;
}

/*# sourceMappingURL=styles.css.map */
