@charset "UTF-8";
@import "./normalize.css";
@import url("//fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
/*.header-main {
    background:url(/assets/images/new-year-balls-1.png) left top repeat-x;
}*/

.swiper-slide {
  height: auto !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0 !important;
}

.articles-slider-swiper-wrapper.swiper.also-slider {
  position: relative;
}

.articles-slider-swiper-wrapper.swiper.also-slider .articles-slider-item.swiper-slide {
  height: auto;
  padding: 0;
}

.articles-slider-swiper-wrapper.swiper.also-slider .swiper-button-next,
.articles-slider-swiper-wrapper.swiper.also-slider .swiper-button-prev {
  height: 30px;
  width: 30px;
  margin-top: -45px;
  border: 1px solid;
  padding: 5px;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.05);
}

.button {
  height: 100%;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid #eaecef;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: 0.25s ease;
}

.button:focus {
  outline: none;
}

.button:hover {
  cursor: pointer;
  filter: brightness(85%);
  transition: 0.25s ease;
}

.button.is-primary {
  background: #4a76cb;
  box-shadow: 0px 8px 8px rgba(60, 60, 59, 0.05);
  border: none;
  color: #ffffff;
}

.button.is-primary.is-outlined {
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #4a76cb;
  color: #000;
}

.button.is-disabled {
  background-color: #eaecef;
  color: white;
  transition: 0.25s ease;
}

.button.is-fullwidth {
  display: block;
  width: 100% !important;
  max-width: none !important;
}

.buttons {
  display: flex;
}

.buttons .button {
  margin-right: 16px;
}

.buttons .button:last-child {
  margin-right: 0;
}

.input {
  background: #ffffff;
  border: 1px solid #eaecef;
  box-sizing: border-box;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 4px;
}

.heading_1 {
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  color: #1f1f1f;
}

.subheading_1 {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #1f1f1f;
}

.rating-result {
  width: 100%;
}

.rating-result>span {
  padding: 0;
  font-size: 18px;
  margin: 0 1px;
  line-height: 1;
  color: lightgrey;
  text-shadow: 1px 1px #bbb;
}

.rating-result>span:before {
  content: "★";
}

.rating-result[data-rating="5"] span:nth-child(-n + 5) {
  color: gold;
}

.rating-result[data-rating="4"] span:nth-child(-n + 4) {
  color: gold;
}

.rating-result[data-rating="3"] span:nth-child(-n + 3) {
  color: gold;
}

.rating-result[data-rating="2"] span:nth-child(-n + 2) {
  color: gold;
}

.rating-result[data-rating="1"] span:nth-child(-n + 1) {
  color: gold;
}

.burger {
  width: 30px;
  height: 30px;
  position: relative;
}

.burger-line {
  width: 100%;
  height: 4px;
  position: absolute;
  background-color: #4a76cb;
  left: 0;
  transition: 0.25s ease;
}

.burger-line.is-line-1 {
  top: 2px;
}

.burger-line.is-line-2 {
  top: 12px;
}

.burger-line.is-line-3 {
  top: 22px;
}

.burger.opened .burger-line.is-line-1 {
  top: 12px;
  transform: rotate(135deg);
  transition: 0.25s ease;
}

.burger.opened .burger-line.is-line-2 {
  top: 12px;
  transform: rotate(45deg);
  transition: 0.25s ease;
}

.burger.opened .burger-line.is-line-3 {
  top: 12px;
  transform: rotate(45deg);
  transition: 0.25s ease;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  font-family: arial;
}

.modal .close {
  background: none;
  border: 0;
  font-size: 45px;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  right: 2px;
  top: -4px;
  color: #000;
}

.modal-open .modal {
  overflow-x: hidden;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  display: inline-block;
}

#addtocart-modal {
  text-align: center;
}

.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  transform: translate(0, 0);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}

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

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

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  padding: 44px;
  background: #fff;
}

.callback-modal-form-form {
  display: flex;
  flex-direction: row;
  margin: 32px auto;
}

.callback-modal-form-annotation {
  font-size: 0.75em;
  margin: 14px 0 12px;
}

.callback-modal-form-checkbox-label {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.25;
  align-items: center;
}

.callback-modal-form-checkbox {
  margin-top: 1px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  outline: none;
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  transition: all 0.3s ease;
}

.callback-modal-form-checkbox.light {
  border: 1px solid #99999A;
}

.callback-modal-form-checkbox.light:hover {
  border-color: #FF8A00;
  cursor: pointer;
}

.callback-modal-form-checkbox.dark {
  border: 1px solid #EAECEF;
}

.callback-modal-form-checkbox.dark:hover {
  border-color: #EAECEF;
  cursor: pointer;
}

.callback-modal-form-checkbox-label+.error_AGREEMENT {
  display: block;
}

.callback-modal-form-checkbox-label span a {
  color: #FF8A00;
}

.callback-modal-form-checkbox:checked {
  border-color: #FF8A00;
  background-color: #FF8A00;
  outline: 2px solid #fff;
  outline-offset: -3px;
}

.callback-modal-form-checkbox:checked:before {
  content: "";
  position: absolute;
  margin: 0 auto;
  top: 0;
  bottom: 0;
  background: url('/assets/images/checkbox.svg');
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
}

.input-fields {
  display: flex;
  position: relative;
}

.input-fields .callback-modal-form-item:last-child {
  position: absolute;
  top: 100%;
}

.main-callback-form .input-fields .callback-modal-form-item {
  position: relative;
}

.main-callback-form .input-fields .callback-modal-form-item:last-child {
  position: absolute;
  top: 100%;
}

.ajax_form .error {
  font-size: 16px !important;
}

.ajax_form span.error {
  display: block;
  width: 100%;
}

.cart-order-submit-modal-form {
  max-width: 800px;
}

.cart-order-submit-modal-form-form {
  display: grid;
  grid-template: repeat(2, 1fr) / repeat(5, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.cart-order-submit-modal-form-input {
  width: 100%;
}

.cart-order-submit-modal-form-annotation {
  font-size: 0.75em;
}

.btn-top {
  position: fixed;
  color: #fff;
  background-color: #42566e;
  right: 20px;
  bottom: 20px;
  padding: 9px 12px;
  font-size: 20px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  border: 2px solid #fff;
  display: none;
}

.btn-top.show {
  display: block;
}

.pagination {
  display: flex;
  gap: 12px;
}

.pagination .page-item {
  list-style-type: none;
}

.pagination .page-item.active {
  color: #4a76cb;
  font-weight: bold;
  text-decoration: underline;
}

.pagination .page-item.disabled {
  color: #eaecef;
}

.header-top {
  height: 40px;
  background-color: #42566e;
  color: #ffffff;
  font-size: 12px;
}

.header-top .wrapper {
  height: 100%;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-top-inner-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-top-inner-right-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-right: 12px;
}

.header-top-inner-right-item-icon {
  margin-right: 8px;
  max-width: 15px;
  max-height: 20px;
}

.header-main {
  height: 64px;
  background-color: #fafbfc;
  position: relative;
}

.header-main .wrapper {
  height: 100%;
}

.header-main-inner {
  height: 100%;
  display: grid;
  grid-template: 1fr/200px 1fr 1fr auto auto auto;
  gap: 16px;
}

.header-main-logo {
  height: 100%;
  max-width: 130px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-main-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.header-main-search {
  display: flex;
  align-items: center;
  font-size: 12px;
  width: 100%;
}

.header-main-search-input-wrapper {
  background-color: #eaecef;
  box-sizing: border-box;
  padding: 8px 22px;
  display: flex;
  align-items: center;
  width: 100%;
}

.header-main-search-input-icon {
  max-width: 16px;
  margin-right: 8px;
}

.header-main-search-input-icon svg {
  width: 16px;
  height: 16px;
}

.header-main-search input {
  display: block;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  width: 100%;
}

.header-main-search input:focus {
  outline: none;
}

.header-main-socials {
  display: flex;
  align-items: center;
}

.header-main-socials-item {
  margin: 0 4px;
}

.header-main-socials-item:hover {
  filter: invert(100%);
}

.header-main-phone {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}

.header-main-callback {
  display: flex;
  align-items: center;
}

.header-main-callback .button {
  font-size: 14px;
  font-weight: bold;
}

.header-main-burger-wrapper {
  display: none;
}

.header-menu {
  font-size: 12px;
  box-sizing: border-box;
  border: 1px solid #eaecef;
  box-shadow: 0px 8px 8px rgba(60, 60, 59, 0.05);
}

.header-menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header-menu-list-item {
  box-sizing: border-box;
  margin: 0 12px;
  text-transform: uppercase;
}

.header-menu-list-item a {
  display: block;
  box-sizing: border-box;
  padding: 16px 16px;
}

.header-menu-list-item:hover {
  background-color: #ffffff;
}

.header-menu-list-item.active {
  background-color: #eaecef;
}

.header-menu-cart-badge {
  margin-left: 8px;
  box-sizing: border-box;
  padding: 2px;
  height: 16px;
  min-width: 16px;
  background-color: #4a76cb;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-size: 0.8em;
}

.mobile-menu {
  box-sizing: border-box;
  padding: 16px;
  background-color: #eaecef;
  min-height: 100%;
}

.mobile-menu-wrapper {
  position: fixed;
  top: -2000px;
  opacity: 0;
  left: 0;
  width: 100vw;
  height: calc(100vh - 102px);
  z-index: 420;
  overflow-y: auto;
  transition: 0.35s ease;
}

.mobile-menu-wrapper.active {
  top: 102px;
  opacity: 1;
  transition: 0.35s ease;
}

.mobile-menu-page {
  opacity: 0;
  transition: 0.2s ease;
  transform: translateX(-110%);
}

.mobile-menu-page.active {
  opacity: 1;
  transform: translateX(0%);
}

.mobile-menu-page.hidden {
  display: none;
}

.mobile-menu-page.hiding {
  transition: 0.2s ease;
  opacity: 0;
  transform: translateX(-110%);
}

.mobile-menu-page.showing {
  transition: 0.2s ease;
  opacity: 1;
  transform: translateX(0%);
}

.mobile-menu-list {
  display: block;
  list-style-type: none;
  box-sizing: border-box;
  padding: 0 0 36px 0;
  font-size: 14px;
}

.mobile-menu-list-item {
  display: flex;
  margin-bottom: 1px;
  box-shadow: 0 1px 1px 0 #eaecef;
  box-sizing: border-box;
}

.mobile-menu-list-item.is-btn {
  margin: 24px 0;
}

.mobile-menu-list-item.is-btn .button {
  width: 100%;
}

.mobile-menu-list-item.is-back-button {
  margin-bottom: 16px;
}

.mobile-menu-list-item.is-back-button .mobile-menu-list-item-link,
.mobile-menu-list-item.is-back-button .mobile-menu-list-item-icon {
  background-color: #dcdfe4;
}

.mobile-menu-list-item-link {
  display: block;
  box-sizing: border-box;
  padding: 16px 8px;
  background-color: white;
  flex: 1;
  flex-basis: 100%;
}

.mobile-menu-list-item-link:hover {
  background-color: #f8f9fa;
}

.mobile-menu-list-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  flex: 1;
  flex-basis: 40px;
  width: 40px;
  height: 48px;
}

.mobile-menu-cart {
  background-color: white;
}

.footer {
  padding: 36px 0;
  background-color: #42566e;
  color: #ffffff;
}

.footer-inner {
  display: grid;
  gap: 32px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 24px;
}

.footer-logo img {
  display: block;
  max-height: 100%;
  max-width: 100%;
}

.footer-contacts {
  margin: 24px 0;
  font-size: 12px;
}

.footer-contacts-item {
  margin: 12px 0;
}

.footer-title {
  margin-bottom: 24px;
  font-weight: bold;
  white-space: nowrap;
}

.footer-item {
  margin-bottom: 12px;
  font-size: 12px;
}

.sidebar-top {
  height: 50px;
  background-color: #4a76cb;
  color: white;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  box-sizing: border-box;
  padding: 18px;
  font-size: 12px;
}

.sidebar-body {
  box-shadow: 0px 8px 24px rgba(60, 60, 59, 0.15);
}

.sidebar-body ul,
.sidebar-body li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-item-link {
  height: auto;
  line-height: 1.15;
  display: block;
  position: relative;
  padding: 12px 11px;
  box-sizing: border-box;
  font-size: 12px;
  min-height: 40px;
  transition: 0.15s ease;
  cursor: pointer;
}

.sidebar-item-link:hover {
  background-color: #bac8d6;
  transition: 0.15s ease;
}

.sidebar-item.active>.sidebar-item-link {
  background-color: #8ca4d5;
  color: white;
}

.sidebar-item .sidebar-list {
  background-color: #eaecef;
}

.sidebar-item .sidebar-list .sidebar-item-link {
  padding-left: 24px;
}

.sidebar-item .sidebar-list .sidebar-item.active .sidebar-item-link {
  background-color: #bac8d6;
}

.page-container.has-sidebar {
  padding: 24px 0 64px 0;
}

.main-banner {
  margin: 48px 0;
  overflow: hidden;
}

.main-banner-list {
  position: relative;
  transition: 0.4s ease;
  height: 300px;
}

.main-banner-list-wrapper {
  overflow: hidden;
  height: 300px;
  position: relative;
}

.main-banner-list-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130%;
  height: 100%;
  background-image: url("/assets/template/img/banner/bg1.jpg");
  background-size: cover;
  background-position: center;
}

.main-banner-list-item {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: right;
  overflow: hidden;
  border-radius: 4px;
}

.main-banner-list-item.info-item .main-banner-list-item-angle {
  position: absolute;
  transform: rotate(-60deg);
  background-color: rgba(66, 86, 110, 0.85);
  left: -45%;
  top: -100%;
  width: 130%;
  height: 300%;
}

.main-banner-list-item.info-item .main-banner-list-item-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 70%;
  box-sizing: border-box;
  padding: 0 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-banner-list-item.info-item .main-banner-list-item-content-header {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
}

.main-banner-list-item.info-item .main-banner-list-item-content-text {
  color: #ffffff;
  font-size: 14px;
  line-height: 17.5px;
  margin: 16px 0;
  max-width: 90%;
}

.main-catalog {
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 32px 0;
  box-shadow: 0px 8px 8px rgba(60, 60, 59, 0.05);
}

.main-catalog-title {
  margin-bottom: 32px;
}

.main-catalog-list-item {
  box-sizing: border-box;
  padding: 24px;
  display: grid;
  grid-template: auto auto 1fr auto/1fr;
  gap: 24px;
  border-radius: 4px;
  transition: box-shadow 0.25s ease;
}

.main-catalog-list-item:hover {
  background: #ffffff;
  box-shadow: 0px 8px 24px rgba(60, 60, 59, 0.15);
  transition: box-shadow 0.25s ease;
}

.main-catalog-list-item-img img {
  display: block;
  width: 100%;
}

.main-catalog-list-item-items {
  color: #4a76cb;
}

.main-catalog-list-item-items-item {
  margin: 16px 0;
  display: block;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.main-catalog-list-item-items-item:hover {
  color: #8ca4d5;
}

.main-catalog-list-slider-pagination {
  bottom: 0 !important;
}

.main-callback-form {
  padding: 48px 0;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
}

.main-callback-form-inner {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 32px;
  background-image: url("/assets/template/img/callback-form-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
}

.main-callback-form-heading {
  font-size: 26px;
  font-weight: bold;
  margin: 16px auto;
}

.main-callback-form-desc {
  font-size: 14px;
  margin: 24px auto;
}

.category-thumb {
  height: 144px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.category-text {
  font-size: 14px;
}

.category-text .buttons {
  margin: 24px 0;
}

.see-also {
  margin: 48px 0;
}

.see-also-list {
  display: grid;
  grid-template: 1fr / repeat(4, 1fr);
  gap: 32px;
}

.see-also-list-wrapper {
  margin: 32px 0;
}

.see-also-list-item {
  background: white;
  border: 1px solid #eaecef;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 16px 36px;
}

.see-also-list-item-title {
  font-size: 12px;
  height: fit-content;
  margin-top: 6px;
}

.see-also-list-item-price {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #1f1f1f;
}

.see-also-list-item-image {
  display: flex;
  align-items: center;
  height: 100%;
  max-height: 215px;
}

.see-also-list-item-image img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.category-top {
  display: grid;
  grid-template: 1fr/65% 30%;
  gap: 5%;
  margin: 36px 0;
  padding: 12px 24px;
  box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.category-top-right img {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 6px;
  box-sizing: border-box;
}

.category-tags {
  margin: 24px 0;
}

.category-tags-list {
  display: grid;
  grid-template: 1fr / repeat(3, 1fr);
  gap: 12px;
}

.category-tags-list-item {
  display: grid;
  grid-template: 1fr/1fr 20px;
  align-items: center;
  font-size: 0.75em;
  padding: 6px 12px;
  line-height: 1.2em;
  height: 2.4em;
  background-color: white;
  border: 1px solid #4a76cb;
  color: black;
}

.category-tags-list-item:hover {
  transition: 0.15s ease;
  background-color: #7294d6;
}

.category-filter {
  border-radius: 4px;
  background-color: white;
  border: 1px solid #fafbfc;
  box-sizing: border-box;
  box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  cursor: pointer;
}

.category-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
  font-size: 0.85em;
}

.category-filter-title {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 4px;
}

.category-filter-title.active {
  background-color: #4a76cb;
  color: white;
}

.category-filter-title:hover {
  color: #ff8a00;
  transition: 0.15s ease;
}

.category-filter-title svg {
  fill: #ff8a00;
  transition: 0.15s ease;
}

.category-filter-filter-icon {
  display: inline-flex;
}

.category-filter-filter-icon svg {
  width: 20px;
  height: 20px;
}

.category-filter-options {
  display: none;
  width: 250px;
  height: 300px;
  background-color: white;
  box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  border-radius: 4px;
  border: 1px solid #fafbfc;
  box-sizing: border-box;
  padding: 24px 16px;
  z-index: 100;
  overflow-y: scroll;
  flex-direction: column;
  gap: 12px;
}

.category-filter-options label {
  display: block;
  cursor: pointer;
}

.category-filter-options label:hover {
  color: #ff8a00;
  transition: 0.15s ease;
}

.category-filter-options label div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-filter-reset-btn {
  -webkit-appearance: none;
  cursor: pointer;
  color: #ff8a00;
  background-color: unset;
  border: none;
  text-decoration: underline;
}

.product-title {
  margin-bottom: 24px;
}

.product-title-inner {
  box-sizing: border-box;
  border-bottom: 1px solid #eaecef;
  display: grid;
  grid-template: 1fr/1fr auto;
}

.product-title-rating {
  display: flex;
  align-items: center;
}

.product-card-areas {
  display: grid;
  grid-template: 1fr/40% auto;
  gap: 32px;
  margin-bottom: 48px;
}

.product-card-gallery {
  display: grid;
  grid-template: 1fr/1fr;
  gap: 16px;
}

.product-card-gallery.has-thumbs {
  grid-template: 1fr/56px 1fr;
}

.product-card-gallery img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.product-card-gallery-thumbs {
  width: 56px;
  box-sizing: border-box;
  overflow-y: hidden;
}

.product-card-gallery-thumbs-item {
  margin-bottom: 8px;
  box-sizing: border-box;
  border: 1px solid #eaecef;
  cursor: pointer;
}

.product-card-gallery-image-wrapper {
  box-sizing: border-box;
  border: 1px solid #eaecef;
}

.product-card-info-top {
  display: grid;
  grid-template: auto 1fr / auto 1fr;
  gap: 16px;
  box-sizing: border-box;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #eaecef;
}

.product-card-price {
  font-weight: bold;
  color: #000;
}

.product-card-price span {
  font-size: 36px;
}

.product-card-availability {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.product-card-tag {
  display: inline-block;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 10px;
  background-color: #ff8a00;
  color: white;
}

.product-card-tag.is-availability.is-available {
  background-color: #55d329;
}

.product-card-advantages-item {
  display: grid;
  grid-template: 1fr/27px 1fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
  font-size: 14px;
}

.product-card-tabs-wrapper {
  padding-bottom: 5px;
  box-sizing: border-box;
  border-bottom: 1px solid #eaecef;
}

.product-card-tabs-tab {
  display: inline-block;
  font-weight: 600;
  padding: 4px 8px;
  transition: 0.25s ease;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.product-card-tabs-tab:not(.active) {
  cursor: pointer;
}

.product-card-tabs-tab:not(:last-child) {
  margin-right: 16px;
}

.product-card-tabs-tab:hover,
.product-card-tabs-tab.active {
  color: #4a76cb;
  transition: 0.25s ease;
}

.product-card-tabs-tab:after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -6px;
  background-color: transparent;
}

.product-card-tabs-tab.active:after {
  background-color: #4a76cb;
}

.product-card-tabs-tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-card-tabs-tab-content.active {
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.product-card-description {
  margin: 36px 0;
  font-size: 14px;
}

.product-card-props {
  margin: 36px 0;
}

.product-card-props-item {
  display: grid;
  grid-template: 1fr / auto minmax(100px, 1fr) auto;
  margin-bottom: 8px;
  white-space: nowrap;
}

.product-card-props-item-delimiter {
  border-bottom: 1px dashed #b0b8c3;
}

.product-card-similar {
  padding: 24px 0;
  display: grid;
  grid-template: 1fr / repeat(4, 1fr);
  gap: 24px;
}

.product-card-similar-item {
  list-style-type: none;
  font-size: 13px;
  background: #ffffff;
  box-shadow: 0px 8px 24px #eaecef;
  box-sizing: border-box;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.product-card-similar-item-image img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.product-card-similar-item-title {
  margin: 12px 0;
  text-align: center;
}

.contacts-content a {
  color: #8ca4d5;
  text-decoration: underline;
  display: inline-block;
}

.contacts-content-columns {
  display: grid;
  grid-template: 1fr/40% auto;
  margin: 36px 0;
}

.contacts-content-item {
  margin-bottom: 16px;
}

.contacts-content-item-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 12px;
}

.contacts-content-item-text {
  padding-left: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}

.documents-file-link {
  color: #8ca4d5;
  text-decoration: underline;
  display: inline-block;
}

.documents-list {
  display: grid;
  grid-template: 1fr / repeat(6, 1fr);
  gap: 32px;
  margin: 24px 0;
}

.documents-item-image img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.advantages {
  margin: 48px 0;
}

.advantages-list {
  margin: 48px 0;
  display: grid;
  grid-template: 1fr / repeat(4, 1fr);
  gap: 24px;
}

.advantages-list-item {
  font-size: 14px;
  box-sizing: border-box;
  border: 1px solid #eaecef;
  padding: 48px 24px;
  border-radius: 4px;
}

.advantages-list-item:hover {
  box-shadow: 0px 8px 24px rgba(60, 60, 59, 0.15);
  transition: 0.25s ease;
  background-color: #ffffff;
}

.advantages-list-item-title {
  font-weight: bold;
  margin: 16px 0;
}

.advantages-list-item-desc {
  margin: 12px 0;
}

.breadcrumbs {
  font-size: 12px;
  margin-bottom: 36px;
  color: #6a7b8d;
}

.breadcrumbs .breadcrumb {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
}

.breadcrumbs .breadcrumb-item {
  margin: 0 16px;
}

.breadcrumbs .breadcrumb-item:first-child {
  margin-left: 0;
}

.breadcrumbs .breadcrumb-separator {
  font-size: 0.7em;
  line-height: 1.3em;
}

.work-scheme {
  margin: 36px 0;
}

.work-scheme-list {
  margin: 48px 0;
  display: grid;
  grid-template: 1fr / repeat(5, 1fr);
  gap: 24px;
}

.work-scheme-list-item {
  font-size: 14px;
  box-sizing: border-box;
  border: 1px solid #eaecef;
  padding: 48px 24px;
  border-radius: 4px;
}

.work-scheme-list-item:hover {
  box-shadow: 0px 8px 24px rgba(60, 60, 59, 0.15);
  transition: 0.25s ease;
  background-color: #ffffff;
}

.work-scheme-list-item-title {
  font-weight: bold;
  margin: 16px 0;
}

.text-section {
  background-color: #eaecef;
  color: #000;
  box-sizing: border-box;
  padding: 32px 0;
  font-size: 14px;
}

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

.partners {
  box-sizing: border-box;
  padding: 32px 0 0 0;
  margin: 48px auto;
  max-width: 998px;
}

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

.partners-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 48px 0;
}

.partners-list-wrapper {
  margin: 32px 0;
  position: relative;
}

.partners-list-item {
  display: flex;
  justify-content: center;
}

.partners-list-item img {
  max-height: 135px;
}

.reviews {
  box-sizing: border-box;
  padding: 32px 0;
  margin: 48px 0;
}

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

.reviews-list {
  margin: 48px 0;
}

.reviews-list-item {
  box-sizing: border-box;
  padding: 24px;
  border: 1px solid #eaecef;
  font-size: 14px;
  background-color: #ffffff;
}

.reviews-list-item-header {
  display: grid;
  grid-template: 1fr/2fr 1fr 1fr;
}

.reviews-list-item-header-name {
  font-weight: bold;
}

.reviews-list-item-header-date {
  color: #6a7b8d;
  font-size: 12px;
  text-align: center;
}

.reviews-list-item-header-rating {
  display: flex;
  justify-content: flex-end;
}

.reviews-list-item-divider {
  height: 1px;
  background-color: #eaecef;
  width: 35%;
  margin: 24px 0;
}

.reviews-list-item-content {
  margin: 16px 0;
}

.reviews-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}

.useful-links {
  box-sizing: border-box;
  padding: 0 0 32px 0;
  margin: 48px 0;
}

.useful-links-heading {
  text-align: center;
}

.useful-links-list {
  margin: 32px 0;
}

.useful-links-list-item {
  box-sizing: border-box;
  padding: 36px;
  background-color: #42566e;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  transition: 0.25s ease;
  background-size: 200%;
}

.useful-links-list-item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 16px rgba(60, 60, 59, 0.3);
  filter: brightness(120%);
  transition: 0.25s ease;
}

.useful-links-list-item.item1 {
  grid-row: 1/3;
  grid-column: 1/2;
  background-image: url("/assets/template/img/useful-links/bg-certificates.jpg");
}

.useful-links-list-item.item2 {
  grid-row: 1/3;
  grid-column: 2/3;
  background-image: url("/assets/template/img/useful-links/bg-doc1.jpg");
}

.useful-links-list-item.item3 {
  grid-row: 3/5;
  grid-column: 1/3;
  background-image: url("/assets/template/img/useful-links/bg-agreement.jpg");
}

.useful-links-list-item.item4 {
  grid-row: 1/5;
  grid-column: 3/5;
  background-image: url("/assets/template/img/useful-links/bg-warranty.jpg");
}

.useful-links-list-item-heading {
  color: inherit;
}

.useful-links-list-item-text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5em;
}

.delivery-map {
  box-sizing: border-box;
  padding: 36px 0;
}

.delivery-map-heading {
  text-align: center;
  margin-bottom: 24px;
}

.delivery-map-container {
  height: 450px;
}

.consult-form {
  padding: 48px 0;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
}

.consult-form-inner {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 32px;
  background-image: url("/assets/template/img/consult-form-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
}

.consult-form-heading {
  font-size: 26px;
  font-weight: bold;
  margin: 16px auto;
}

.consult-form-desc {
  font-size: 14px;
  margin: 24px auto;
}

.consult-form-form {
  margin: 16px auto;
}

.pricelist-pagination {
  display: grid;
  grid-template: 1fr/1fr 2fr;
  gap: 36px;
  padding: 6px 24px;
  margin: 12px 0;
}

.pricelist-pagination .pagination {
  justify-content: flex-end;
}

.pricelists-tags {
  margin: 24px 0;
}

.pricelists-tags a {
  margin: 4px 8px 4px 0;
  font-size: 12px;
}

.pricetable {
  width: 100%;
  font-size: 14px;
  background-color: white;
  filter: drop-shadow(0px 8px 24px rgba(60, 60, 59, 0.15));
  border-radius: 4px;
  border-collapse: collapse;
}

.pricetable-add-to-cart-btn {
  font-size: 0.75em;
}

.pricetable thead {
  color: white;
  background-color: #42566e;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.pricetable td,
.pricetable th {
  padding: 12px 14px;
}

.pricetable td:first-child,
.pricetable th:first-child {
  text-align: left;
}

.pricetable td {
  text-align: center;
}

.pricetable td a {
  text-decoration: underline;
}

.pricetable .nav {
  display: flex;
  justify-content: center;
}

.pricetable .nav a {
  display: block;
  align-items: center;
  box-sizing: border-box;
  padding: 2px 3px;
  width: 23px;
  text-align: center;
  margin: 0 2px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 0 1px #eaecef;
}

.pricetable .nav a.active {
  background-color: #4a76cb;
  color: white;
}

.how-to-order {
  margin: 48px 0;
}

.how-to-order-heading {
  text-align: center;
}

.how-to-order-list {
  display: grid;
  grid-template: 1fr / repeat(3, 1fr);
  gap: 48px;
}

.how-to-order-list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #eaecef;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 16px;
}

.how-to-order-list-item-title {
  font-size: 16px;
  font-weight: bold;
  margin: 16px 0;
}

.how-to-order-list-item-text {
  color: #ff8a00;
  text-align: center;
}

.payment {
  margin: 48px 0;
}

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

.payment-list {
  display: flex;
  justify-content: space-around;
}

.payment-list-item {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #eaecef;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 16px;
}

.payment-list-item-title {
  font-size: 16px;
  font-weight: bold;
  margin: 16px 0;
}

.payment-list-item-text {
  color: #ff8a00;
}

.page-cart {
  box-sizing: border-box;
  padding: 32px 0;
}

.page-cart-heading {
  margin-bottom: 32px;
}

.cart-products-list {
  margin: 36px 0;
}

.cart-products-list-item {
  display: grid;
  grid-template: 1fr / minmax(auto, 450px) 150px 150px auto 1fr;
  align-items: center;
  gap: 36px;
  margin-bottom: 8px;
}

.cart-products-list-item-title a {
  color: #4a76cb;
  text-decoration: underline;
}

.cart-products-list-item-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-products-list-item-quantity-wrapper {
  display: flex;
}

.cart-products-list-item-quantity .input {
  width: 100%;
  margin-right: 16px;
  margin-right: 0;
  text-align: center;
}

.cart-products-list-item-delete {
  height: 26px;
  width: 26px;
}

.cart-products-list-item-delete-wrapper {
  display: flex;
}

.cart-products-list-item .ms2_cost {
  color: #4a76cb;
  font-weight: bold;
}

.cart-products-actions {
  display: grid;
  grid-template: 1fr / auto auto 1fr;
  gap: 24px;
}

.cart-total {
  margin: 36px 0;
}

html,
body {
  min-width: 100%;
  min-height: 100%;
}

body {
  background-color: #fafbfc;
}

body.locked {
  overflow: hidden;
}

* {
  font-family: "Inter";
}

a {
  text-decoration: none;
  color: inherit;
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 16px;
}

.is-bold {
  font-weight: bold !important;
}

.jGrowl {
  z-index: 99993 !important;
}

body {
  background-color: #fff;
}

.bold {
  font-weight: bold;
}

ul.d-flex {
  display: flex;
  flex-wrap: wrap;
}

ul.d-flex>li {
  width: 48%;
}

h2 {
  font-size: 26px;
  line-height: normal;
}

.page-container.has-sidebar {
  grid-template: 1fr/18% 80%;
  gap: 20px;
  padding: 50px 0px;
}

.button:hover {
  filter: none;
}

.button.is-orange {
  background: #ff8a00;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.button.is-orange:hover {
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.button.is-primary.is-outlined {
  border: 1px solid #ff8a00;
  border-radius: 0px;
  background-color: #fff;
  box-shadow: none;
  font-size: 16px;
  font-weight: 400;
}

.button.is-primary.is-outlined.footer-contacts-btn {
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.button.is-primary.is-outlined.is-blue {
  border-color: #4a76cb;
  padding: 14px 42px;
  height: 51px;
}

.button.is-transparent.is-download {
  border-radius: 0px;
  display: inline-flex;
}

.button.is-transparent.is-download img {
  margin-right: 10px;
}

.button.main-callback-form-btn {
  background: #ff8a00;
  max-width: 352px;
  width: 100%;
  border-radius: 0px;
  height: 44px;
  font-weight: 500;
}

button.button.is-primary.main-callback-form-btn:hover {
  filter: none;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet {
  background: #eaecef;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #4a76cb;
  opacity: 1;
}

.swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0px;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 6px;
  height: 17px;
  top: 53%;
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  color: #443e3e;
  font-size: 17px;
  font-weight: bold;
}

.sidebar-buttons .button.is-primary {
  background: #ff8a00;
  box-shadow: none;
  border-radius: 0px;
  padding: 16px 32px;
}

.sidebar-buttons .button.is-primary:hover {
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.text-section {
  background-color: #fff;
  font-size: 16px;
  line-height: 20px;
  padding: 50px 0px;
}

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

.heading_1,
.subheading_1 {
  font-weight: 700;
  line-height: 34px;
  color: #000;
}

.content-block ul {
  list-style-type: none;
  -webkit-padding-start: 0px;
  padding-inline-start: 0px;
}

.content-block ul li {
  padding-left: 13px;
  position: relative;
  margin-bottom: 10px;
  line-height: 27px;
}

.content-block ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #ff8a00;
  border-radius: 50%;
}

.product-card-tags {
  padding: 20px 0px 20px 20px;
  background: #eaecef;
}

.product-card-tag {
  border-radius: 0px;
  font-size: 12px;
  padding: 5px 10px;
  margin-right: 5px;
  background-color: #ff8a00;
}

.product-card-tag:hover {
  background-color: #ffb154;
}

.over-product-card-tags {
  margin-top: 50px;
  max-width: 100%;
  scrollbar-color: #4a76cb #dce8ff;
  padding-bottom: 0px;
  margin-bottom: 50px;
}

.over-product-card-tags::-webkit-scrollbar {
  height: 14px;
  width: 14px;
}

.over-product-card-tags::-webkit-scrollbar-track {
  background: #dce8ff;
}

.over-product-card-tags::-webkit-scrollbar-thumb {
  border-radius: 0px;
  cursor: pointer;
  border: 0px;
}

.category-buttons {
  display: none;
}

.rating-result>span {
  text-shadow: none;
}

.cart-form-btns {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 0px;
}

.flex-sm {
  display: none;
}

.borderbottom {
  border-bottom: 1px solid #d9d9d9;
}

.wrap-norm td {
  white-space: normal !important;
}

.header-top {
  display: none;
}

.header-main {
  height: 143px;
}

.header-main-inner {
  align-items: center;
  grid-template: 1fr / auto auto 190px 205px auto;
}

.header-main-logo {
  max-width: 193px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.header-main-logo-img {
  width: 138px;
}

.header-main-descr {
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  margin-top: 10px;
  font-style: italic;
}

.header-main-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-main-info>div {
  display: flex;
  align-items: flex-start;
}

.header-main-info img {
  margin-right: 5px;
}

.header-main-info-addr {
  margin-bottom: 5px;
}

.header-main-socials {
  flex-wrap: wrap;
  line-height: 21px;
  align-content: center;
  padding-left: 15px;
  border-left: 1px solid #eaecef;
  height: 68px;
}

.header-main-mail {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.header-main-callback {
  flex-direction: column;
}

.header-main-phone {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.header-main-search-input-wrapper {
  width: 315px;
  padding: 16px 20px 14px;
  font-size: 16px;
  position: relative;
}

.header-main-search-input-icon {
  position: absolute;
  right: 20px;
  margin-right: 0px;
  max-width: 18px;
}

.header-main-search-input-icon svg {
  width: 18px;
  height: 18px;
}

.header-menu {
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.05);
  border: none;
}

.header-menu-list-item:first-child a {
  color: #4a76cb;
  font-weight: 700;
}

.main-banner-list-wrapper {
  min-height: 328px;
}

.main-banner-list-item {
  border-radius: 0px;
}

.main-banner-list-item.info-item .main-banner-list-item-angle {
  background: rgba(36, 71, 138, 0.7);
}

.main-banner-list-item.info-item .main-banner-list-item-content-header {
  font-weight: 700;
  font-size: 30px;
  line-height: 39px;
}

.main-banner-list-item.info-item .main-banner-list-item-content-text {
  font-size: 16px;
  line-height: 21px;
  margin: 10px 0px 30px;
}

.main-banner-list-item.info-item .main-banner-list-item-content-btn .button.is-primary {
  background: #ff8a00;
  box-shadow: none;
  border-radius: 0px;
  padding: 16px 32px;
}

.main-banner-list-item.info-item .main-banner-list-item-content-btn .button.is-primary:hover {
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.advantages-list-item {
  border: none;
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  padding: 0;
}

.advantages-list-item-desc {
  margin-top: 21px;
}

.main-catalog {
  box-shadow: none;
  padding: 50px 0;
}

.main-catalog-list-item {
  box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.06);
  border-radius: 0px;
  padding: 20px;
  gap: 20px;
}

.main-catalog-list-item-img {
  position: relative;
}

.main-catalog-list-item-img:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(36, 71, 138, 0.2);
  top: 0;
  left: 0;
}

.main-catalog-list-item-img img {
  height: 178px;
  -o-object-fit: fill;
  object-fit: fill;
}

.main-catalog-list-item-title {
  font-weight: 600;
  line-height: 19px;
}

.main-catalog-list-item-items-item {
  font-weight: 400;
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 10px;
}

a.main-catalog-list-item:hover .main-catalog-list-item-title {
  color: #4a76cb;
}

.main-cat-list {
  display: grid;
  gap: 30px 20px;
  grid-template: 1fr / repeat(3, 1fr);
}

.main-callback-form-inner,
.consult-form-inner {
  background-image: url(/assets/template/img/callback-form-bg2.png);
  border-radius: 0px;
}

.main-callback-form-heading,
.consult-form-heading {
  margin-bottom: 10px;
}

.main-callback-form-desc,
.consult-form-desc {
  font-weight: 300;
  font-size: 16px;
  max-width: 402px;
  line-height: 19px;
  margin: 0px auto 14px;
}

.main-callback-form-accept,
.consult-form-accept {
  position: absolute;
  top: -24px;
  bottom: 100%;
  font-size: 12px;
  color: #eaecef;
}

.main-callback-form-form {
  display: flex;
  margin: 40px auto 42px;
  justify-content: center;
}

.main-callback-form-form .input-fields {
  gap: 20px;
  margin-right: 20px;
}

.main-callback-form-input {
  border-radius: 0px;
  max-width: 352px;
  width: 100%;
}

.delivery {
  margin: 50px 0px;
}

.delivery-inner {
  background-image: url(/assets/template/img/delivery-bg.png);
  background-size: cover;
  background-position: right;
  color: #fff;
  padding: 30px 50px 50px;
  position: relative;
  overflow: hidden;
}

.delivery-inner>*:not(.delivery-angle) {
  position: relative;
  z-index: 2;
}

.delivery-angle {
  position: absolute;
  left: -200px;
  top: 0;
  width: 44%;
  height: 100%;
  border: 321px solid rgba(36, 71, 138, 0.8);
  border-right: 285px solid transparent;
  z-index: 1;
}

.delivery-heading {
  line-height: 34px;
  margin-bottom: 10px;
  margin-top: 0px;
}

.delivery-text {
  font-size: 16px;
  max-width: 660px;
  line-height: 21px;
  margin-bottom: 50px;
}

.delivery-btn {
  border: none;
  border-radius: 0px;
  width: 173px;
  text-decoration: none;
}

.useful-links-new {
  padding: 50px 0px;
}

.useful-links-new-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.useful-links-new-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.useful-links-new-item {
  padding: 30px 50px;
  color: #fff;
  background-size: cover;
  max-height: 187px;
  width: 50%;
  position: relative;
  overflow: hidden;
}

.useful-links-new-item:hover {
  filter: drop-shadow(0px 4px 22px rgba(0, 0, 0, 0.12));
}

.useful-links-new-item:before {
  position: absolute;
  content: "";
  border-top: 256px solid rgba(36, 71, 138, 0.8);
  border-right: 200px solid transparent;
  top: 0;
  left: 0;
  border-left: 300px solid rgba(36, 71, 138, 0.8);
}

.useful-links-new-item>* {
  position: relative;
  z-index: 2;
}

.useful-links-new-item-text {
  max-width: 300px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.useful-links-new-item_1 {
  background-image: url("/assets/template/img/useful-links/block1-bg.png");
  background-image: image-set(url(/assets/template/img/useful-links/block1-bg.webp) type("image/webp"),
      url(/assets/template/img/useful-links/block1-bg.png));
  background-image: -webkit-image-set(url(/assets/template/img/useful-links/block1-bg.webp) type("image/webp"),
      url(/assets/template/img/useful-links/block1-bg.png));
}

.useful-links-new-item_2 {
  background-image: url("/assets/template/img/useful-links/block2-bg.png");
  background-image: image-set(url(/assets/template/img/useful-links/block2-bg.webp) type("image/webp"),
      url(/assets/template/img/useful-links/block2-bg.png));
  background-image: -webkit-image-set(url(/assets/template/img/useful-links/block2-bg.webp) type("image/webp"),
      url(/assets/template/img/useful-links/block2-bg.png));
}

.useful-links-new-link {
  text-decoration: underline;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  padding-left: 30px;
  display: block;
  margin-bottom: 27px;
}

.useful-links-new-link:first-of-type {
  margin-top: 10px;
}

.useful-links-new-heading {
  text-align: left;
}

.useful-links-new:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 22px;
  left: 0;
  top: -4px;
  background-image: url("/assets/template/svg/icons/doc.svg");
}

.articles-slider {
  background: #eaecef;
  padding: 50px 0px;
  margin: 50px 0px;
}

.articles-slider-inner {
  padding: 0px 40px;
  margin: 0px -40px;
  position: relative;
}

.articles-slider-swiper-wrapper.swiper {
  padding-bottom: 62px;
  margin: 0px -9px;
  position: static;
}

.articles-slider-swiper-wrapper .swiper-horizontal>.swiper-pagination-bullets,
.articles-slider-swiper-wrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0px;
}

.articles-slider-item {
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 20px 10px;
  color: #000;
}

.articles-slider-item.swiper-slide {
  height: 179px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0px 10px;
  max-width: 297px;
}

.articles-slider-item-date {
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 20px;
}

.articles-slider-item-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 20px;
}

.articles-slider-item-link {
  text-decoration-line: underline;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  margin-top: auto;
}

.articles-slider .swiper-pagination-bullet {
  background-color: #fff;
}

.articles-slider .swiper-pagination-bullet-active {
  background-color: #4a76cb;
}

.articles-slider .swiper-button-next,
.articles-slider .swiper-button-prev {
  width: 6px;
  height: 17px;
  top: 53%;
}

.sertificates {
  padding: 50px 0px;
}

.sertificates-list-wrapper .swiper-horizontal>.swiper-pagination-bullets,
.sertificates-list-wrapper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}

.sertificates-list-wrapper .swiper-pagination-bullet-active {
  background-color: #4a76cb;
}

.sertificates-list.swiper-wrapper {
  margin-top: 20px;
  justify-content: space-between;
  padding-bottom: 32px;
}

.sertificates-list-item.swiper-slide {
  height: 414px;
  filter: drop-shadow(0px 4px 17px rgba(0, 0, 0, 0.06));
}

.sertificates-list-item img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.partners {
  padding: 0px;
  max-width: 100%;
}

.partners-inner {
  padding: 0px 40px;
  margin: 0px -40px;
  position: relative;
}

.partners-list {
  margin: 0px;
}

.partners-list-wrapper.swiper {
  margin: 0px -9px;
  position: static;
  padding: 5px 0px;
}

.partners-list-wrapper.swiper .swiper-button-prev,
.partners-list-wrapper.swiper .swiper-button-next {
  top: 70%;
}

.partners-list-item.swiper-slide {
  display: flex;
  height: 180px;
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.05);
  margin: 0px 10px;
  max-width: 297px;
}

.partners-list-item.swiper-slide img {
  margin: auto;
  display: block;
}

.partners-title {
  margin-bottom: 20px;
  text-align: left;
}

.delivery-map-heading {
  text-align: left;
}

.delivery-map-inner {
  margin-bottom: 50px;
}

.delivery-map-container {
  position: relative;
  height: auto;
}

.delivery-map-region-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 40%;
  min-height: 100px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}

.footer {
  padding: 50px 0px 80px;
  background: #001f45;
}

.footer-inner>div:not(.footer-section-info_1) {
  padding-top: 80px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section-menu1,
.footer-section-menu2 {
  margin-bottom: 20px;
}

.footer-section-menu1 .footer-item,
.footer-section-menu2 .footer-item {
  margin-bottom: 10px;
}

.footer-section-info-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.footer-item {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
}

.footer-contacts {
  font-size: 16px;
  font-weight: 400;
}

.footer-contacts-item {
  display: flex;
  align-items: center;
}

.footer-contacts-item-phone {
  font-weight: 600;
  font-size: 18px;
  margin: 10px 0px;
  flex-wrap: wrap;
}

.footer-contacts-item-phone a {
  display: block;
}

.footer-contacts-item-phone p {
  margin: 0px;
}

.footer-contacts-item-phone img {
  margin-right: 10px;
}

.footer-contacts-item-soc {
  margin-top: 30px;
  gap: 10px;
}

.sidebar-top {
  padding: 12px 30px;
}

.sidebar-body {
  box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.05);
}

.sidebar-buttons {
  margin-top: 40px;
}

.sidebar-buttons .button.is-primary {
  width: 100%;
  max-width: 232px;
  height: 51px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.sidebar-buttons .button.is-download {
  width: 100%;
  max-width: 232px;
  height: 51px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-color: #ff8a00;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter_title {
  margin-bottom: 20px;
}

.pricetable {
  font-size: 14px;
  filter: none;
  background-color: #fafbfc;
  border-radius: 0px;
}

.pricetable thead {
  color: #000;
  background-color: transparent;
  border-radius: 0px;
}

.pricetable th {
  padding: 8px 18px;
}

.pricetable td {
  padding-left: 5px;
  padding-right: 5px;
}

.pricetable .button.is-primary.is-outlined {
  background: #4a76cb;
  border: none;
  color: #fff;
  font-weight: 500;
}

.how-to-order-heading {
  text-align: left;
}

.how-to-order-list-item {
  border: none;
  border-radius: 0px;
  padding: 0px;
  text-align: center;
}

.how-to-order-list-item-title {
  font-weight: 600;
  margin: 20px 0px 10px;
}

.how-to-order-list-item-text {
  color: #000;
}

.stages {
  padding: 48px 0px;
}

.stages-list {
  display: flex;
  justify-content: space-between;
}

.stages-list-item {
  max-width: 232px;
  text-align: center;
}

.stages-list-item-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.rating-result>span {
  text-shadow: none;
}

.product-title {
  margin-bottom: 0px;
}

.product-title-inner {
  border-bottom: none;
}

.product-card-areas {
  grid-template: 1fr/403px auto;
  gap: 20px;
  margin-bottom: 100px;
}

.product-card-gallery {
  grid-template-rows: 355px;
}

.product-card-gallery-image-wrapper {
  height: 100%;
}

.product-card-gallery img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-card-info {
  box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.06);
  padding: 30px;
}

.product-card-info-top {
  margin-bottom: 10px;
  padding-bottom: 10px;
  gap: 0px;
  border-bottom: none;
}

.product-card-price {
  font-weight: 600;
  font-size: 24px;
}

.product-card-price span {
  font-weight: 600;
  font-size: 24px;
}

.product-card-tag.is-availability.is-available {
  background-color: transparent;
  color: #0a9d10;
  font-weight: 600;
  font-size: 16px;
  text-transform: initial;
  padding: 0;
  margin-left: 30px;
}

.product-card-add-to-cart-button {
  border-radius: 0px;
  padding: 16px 32px;
  height: 51px;
}

.product-card-advantages {
  display: flex;
  flex-wrap: wrap;
}

.product-card-advantages-item {
  width: 50%;
  gap: 5px;
  grid-template: auto/30px 1fr;
  margin-bottom: 10px;
  font-size: 16px;
  flex: 1 1 auto;
}

.product-card-advantages-item:last-child {
  margin-bottom: 0;
}

.product-card-advantages-item-icon {
  height: 30px;
}

.product-card-tabs {
  margin-bottom: 48px;
}

.product-card-tabs-wrapper {
  border-bottom: 0px;
}

.product-card-tabs-tab {
  font-size: 20px;
}

.product-card-tabs-tab-content>div {
  margin-top: 20px;
}

.product-card-docs {
  padding: 0px 40px;
  margin: 0px -40px;
  position: relative;
}

.product-card-docs-list-wrapper.swiper {
  padding: 10px 0px 62px;
  margin: 0px -9px;
  position: static;
}

.product-card-docs-list-wrapper.swiper .swiper-button-next,
.product-card-docs-list-wrapper.swiper .swiper-button-prev {
  top: 47%;
}

.product-card-docs-slider-swiper-item {
  max-width: 234px !important;
  box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.06);
  margin: 0px 10px;
}

.product-card-docs-slider-swiper-item img {
  width: 100%;
  height: 329px;
  -o-object-fit: contain;
  object-fit: contain;
}

.header-menu .sub-menu {
  display: none;
  position: absolute;
  list-style: none;
  top: 100%;
  padding: 20px 0px;
  width: 300px;
  left: 0;
  background-color: white;
  z-index: 1111;
}

.header-menu .sub-menu li.header-menu-list-item {
  margin: 0;
}

.header-menu .sub-menu li.header-menu-list-item a {
  font-weight: 400;
  font-size: 14px;
  text-transform: initial;
  padding: 10px 20px;
  color: #000;
}

.header-menu .sub-menu li.header-menu-list-item a:hover {
  color: #4a76cb;
  background-color: #dce8ff;
}

.header-menu .sub-menu li.header-menu-list-item.active a {
  color: #4a76cb;
  background-color: #dce8ff;
}

.header-menu-list-item-has-child {
  position: relative;
  cursor: pointer;
}

.header-menu-list-item-has-child span {
  display: block;
  box-sizing: border-box;
  padding: 16px;
}

.header-menu-list-item-has-child span>span:after,
.header-menu-list-item-has-child span a:after {
  content: "";
  position: absolute;
  right: 0;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
}

.header-menu-list-item-has-child:hover .sub-menu {
  display: block;
}

.header-menu-list-item-has-child:hover span:after,
.header-menu-list-item-has-child:hover a:after {
  border-top: 2px solid #000;
  border-bottom: 0px;
  transform: rotate(315deg);
  top: 41%;
}

.services {
  margin: 50px 0;
}

.services__item {
  display: flex;
  margin-bottom: 30px;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.0666666667);
}

.services__image {
  flex-shrink: 0;
  width: 40%;
  min-height: 400px;
  overflow: hidden;
}

.services__image>div {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0) no-repeat center/cover;
  transition: 0.6s;
  background-size: cover;
  transform: scale(1);
}

.services__image:hover div {
  transform: scale(1.1);
}

.services__row {
  padding: 50px 20px 20px 50px;
}

.services__title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 30px;
}

.services__description {
  line-height: 30px;
}

.services__button {
  position: relative;
  background: #4a76cb;
  border: none;
  color: #fff;
  font-weight: 500;
  border-radius: 0;
  overflow: hidden;
  height:auto;
}

.services__button:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4666666667);
  left: -100%;
  transform: rotate(35deg);
  transition: 0.5s;
}

.services__button:hover:before {
  transform: rotate(35deg);
  left: 100%;
}

.garanties {
  margin: 60px 0;
}

.garanties__item {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.garanties__image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin-top: 30px;
  background: rgba(0, 0, 0, 0) no-repeat center/contain;
  transition: 0.6s;
  background-size: 105%;
}

.garanties__row {
  padding: 20px;
}

.garanties__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.garanties__description {
  line-height: 30px;
}

.garanties__description p {
  font-size: 14px;
  line-height: 17px;
  color: #414f62;
  margin-bottom: 5px;
  margin-top: 0;
}

.garanties__button {
  position: relative;
  background: #4a76cb;
  border: none;
  color: #fff;
  font-weight: 500;
  border-radius: 0;
  overflow: hidden;
}

.garanties__button:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4666666667);
  left: -100%;
  transform: rotate(35deg);
  transition: 0.5s;
}

.garanties__button:hover:before {
  transform: rotate(35deg);
  left: 100%;
}

.reviews .col {
  margin-bottom: 20px;
}

.reviews .item {
  /* height:360px; */
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  background: #ffffff;
  box-shadow: 2px 2px 15px rgba(174, 174, 174, 0.12);
  border-radius: 10px;
  box-sizing: border-box;
}

.reviews .item .author {
  display: flex;
  margin-bottom: 20px;
}

.reviews .item .star:not(:last-child) {
  margin-right: 5px;
}

.reviews .item .photo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  margin-right: 20px;
  border-radius: 50%;
  background: #4a76cb no-repeat center/cover;
  /* background-image: url('../img/profile.'); */
  font-size: 30px;
  color: #fff;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.reviews .item .name {
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #212529;
}

.reviews .item .rating-box {
  margin-bottom: 10px;
  display: flex;
}

.reviews .item .text {
  font-family: "Inter", sans-serif !important;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.reviews .links {
  width: 100%;
}

.reviews .links a {
  display: flex;
  margin: 10px 0;
}

.star {
  width: 16px;
  height: 16px;
  background: rgba(0, 0, 0, 0) no-repeat center/contain;
}

.star-fill {
  background-image: url("../img/star-fill.png");
}

.star-stroke {
  background-image: url("../img/star-stroke.png");
}

.form-group {
  display: inline-block;
}

.form-group label {
  font-size: 14px;
  margin-right: 10px;
}

.form-group select {
  font-size: 14px;
  border-color: #868686;
  color: #868686;
}

.bck {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: url(/assets/images/gauss-min.jpg) top left no-repeat;
  z-index: 1;
  display: none;
  background-size: contain;
}

.filter_title {
  font-weight: 600;
  margin-bottom: 7px;
}

.filter-spoiler {
  height: 70px;
  overflow: hidden;
  padding-bottom: 5px;
  position: relative;
}

.filter-spoiler-btn {
  height: 1px;
  background: #c5c5c5;
  position: relative;
  display: none;
}

.filter-spoiler-btn-after {
  position: absolute;
  left: 50%;
  margin-left: -21px;
  background: #c5c5c5;
  padding: 1px 15px;
  border-radius: 0 0 5px 5px;
  cursor: pointer;
}

.filter-spoiler.auto-height {
  height: auto;
}

.filter-spoiler-btn.open .filter-spoiler-btn-after img {
  transform: rotate(180deg);
}

.over-checkbox {
  display: inline-block;
}

.search-link {
  font-size: 17px;
  font-weight: 600;
  text-decoration: underline;
}

.search-link:hover {
  text-decoration: none;
}

.mse2-row {
  margin-bottom: 40px;
}

.ui-menu {
  width: auto !important;
  padding: 12px !important;
}

.ui-menu li {
  margin-bottom: 15px !important;
}

.over-product-card-tags {
  overflow-x: scroll;
  width: 100%;
  margin-top: 40px;
  padding-bottom: 15px;
}

.product-card-tags {
  white-space: nowrap;
}

.over-product-card-tags {
  scrollbar-width: thin;
  scrollbar-color: #4a76cb #fff;
}

.over-product-card-tags::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}

.over-product-card-tags::-webkit-scrollbar-track {
  background: #fff;
}

.over-product-card-tags::-webkit-scrollbar-thumb {
  background-color: #4a76cb;
  border-radius: 5px;
  border: 3px solid #fff;
  cursor: pointer;
}

.sitemap ul li a {
  font-size: 18px;
  line-height: 35px;
}

.cart-form-btns {
  display: flex;
  gap: 16px;
  box-sizing: border-box;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #eaecef;
}

.basket-item-count .ms2_total_count {
  font-size: 14px;
  color: #000;
  background: #fff;
  height: 17px;
  width: 17px;
  display: flex;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5px;
  right: 3px;
}

.fixed-cart {
  position: fixed;
  top: 30%;
  right: 0;
  color: #fff;
  background-color: #42566e;
  padding: 12px 12px 12px 15px;
  border-radius: 23px 0 0 23px;
  z-index: 1000;
}

.fixed-cart .ms2_total_count {
  font-size: 14px;
  color: #000;
  background: #fff;
  height: 17px;
  width: 17px;
  display: flex;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -8px;
  right: -10px;
  top: -13px;
}

.fixed-cart ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.fixed-cart ul li {
  margin-bottom: 15px;
}

.fixed-cart h4 {
  margin-top: 0;
  margin-bottom: 5px;
}

.fixed-cart button {
  border-radius: 10px;
  border: 0;
  margin-top: 4px;
  cursor: pointer;
}

.fixed-cart button:hover {
  opacity: 0.8;
}

.form-group {
  display: none;
}

.main-catalog-list-item-items .more a,
.main-catalog-list-item-items .more-close a {
  color: #001f45;
  display: flex;
}

.main-catalog-list-item-items .more-close img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ymap-container {
  height: 450px;
  padding: 0;
  background: url(https://zhbi-standart.ru/assets/images/map_o.png) center center no-repeat;
  background-image: image-set(url(https://zhbi-standart.ru/assets/images/map_o.webp) type('image/webp'),
      url(https://zhbi-standart.ru/assets/images/map_o.png));
  background-image: -webkit-image-set(url(https://zhbi-standart.ru/assets/images/map_o.webp) type('image/webp'),
      url(https://zhbi-standart.ru/assets/images/map_o.png));
  position: relative;
}

.contacts-content-right .ymap-container {
  height: 100%;
  background: url(https://zhbi-standart.ru/assets/images/cont_map_o.png) center center no-repeat;
  background-image: image-set(url(https://zhbi-standart.ru/assets/images/map_o.webp) type('image/webp'),
      url(https://zhbi-standart.ru/assets/images/map_o.png));
  background-image: -webkit-image-set(url(https://zhbi-standart.ru/assets/images/map_o.webp) type('image/webp'),
      url(https://zhbi-standart.ru/assets/images/map_o.png));
}

/*Индикатор загрузки, который показывается до загрузки карты */
.loader {
  color: #000;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 8;
  transition: opacity 0.7s ease;
  background-color: rgba(0, 0, 0, 0.55);
  display: none;
}

.loader:after,
.loader:before {
  box-sizing: border-box;
}

.loader.is-active {
  top: 0;
  display: block;
}

.loader-default:after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border: solid 8px #fff;
  border-left-color: transparent;
  border-radius: 50%;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  animation: rotation 1s linear infinite;
}

.swiper-container {
  overflow: hidden;
  position: relative;
}

.clean-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

.clean-table th,
.clean-table td {
  border: 1px solid #ddd;
  padding: 8px 12px;
}

.clean-table th {
  background: #f5f5f5;
  font-weight: 600;
}

@keyframes rotation {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(359deg);
  }
}

@keyframes blink {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .modal-dialog {
    margin: 13% auto;
  }
}

@media (min-width: 576px) {
  .modal-dialog-centered {
    min-height: calc(100% - 21.5rem);
  }
}

@media (max-width: 575px) {
  .modal-dialog {
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .callback-modal-form-title {
    text-align: center;
  }

  .callback-modal-form-form {
    flex-direction: column;
    align-items: center;
  }

  .callback-modal-form-item {
    width: 100%;
  }

  .callback-modal-form-input {
    width: 100%;
    margin-bottom: 16px;
  }

  .callback-modal-form-btn {
    width: 100%;
  }

  .callback-modal-form-annotation {
    text-align: center;
  }

  .cart-order-submit-modal-form-title {
    text-align: center;
  }

  .cart-order-submit-modal-form-form {
    margin: 24px 0 !important;
    grid-template: 1fr/1fr;
    gap: 6px;
  }

  .cart-order-submit-modal-form-item {
    width: 100%;
    font-size: 0.8em;
  }

  .cart-order-submit-modal-form-btn {
    width: 100%;
  }

  .cart-order-submit-modal-form-annotation {
    text-align: center;
  }

  .header-top {
    position: sticky;
    top: 0;
    z-index: 500;
  }

  .header-top-inner-left {
    display: none;
  }

  .header-top-inner-right {
    width: 100%;
    justify-content: space-between;
  }

  .header-top-inner-right .is-address,
  .header-top-inner-right .is-email {
    display: none;
  }

  .header-main {
    box-sizing: border-box;
    border: 1px solid #eaecef;
    box-shadow: 0 8px 8px rgba(60, 60, 59, 0.05);
    z-index: 450;
  }

  .header-main-inner {
    grid-template: 1fr/130px 1fr auto auto;
  }

  .header-main-search {
    display: none;
  }

  .header-main-phone {
    display: none;
  }

  .header-main-callback {
    display: none;
  }

  .header-main-burger-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  .header-menu {
    display: none;
  }

  .footer-inner {
    grid-template: 1fr 1fr/1fr 1fr;
  }

  .footer-contacts-item {
    text-align: center;
  }

  .footer-section-info {
    grid-row: 3/5;
    grid-column: 1/5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
  }

  .footer-section-menu1 {
    grid-row: 1/3;
    grid-column: 1/3;
  }

  .footer-section-menu2 {
    grid-row: 1/3;
    grid-column: 3/5;
  }

  .sidebar-container {
    display: none;
  }

  .main-banner-list-item {
    background-image: none !important;
  }

  .main-banner-list-item.info-item .main-banner-list-item-angle {
    width: 100%;
    height: 100%;
    transform: none;
    left: 0;
    top: 0;
  }

  .main-banner-list-item.info-item .main-banner-list-item-content {
    width: 100%;
    padding: 16px 46px;
  }

  .main-banner-list-item.info-item .main-banner-list-item-content-header {
    font-size: 14px;
  }

  .main-banner-list-item.info-item .main-banner-list-item-content-text {
    font-size: 12px;
  }

  .main-catalog-title {
    text-align: center;
  }

  .main-catalog-list-item {
    padding: 24px 64px;
    background: #ffffff;
  }

  .main-catalog-list-item-link {
    padding-bottom: 32px;
  }

  .main-callback-form-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-callback-form-input {
    margin-bottom: 16px;
  }

  .main-callback-form-btn {
    width: 100%;
  }

  .category-text {
    margin: 0;
  }

  .see-also-list {
    grid-template: 1fr 1fr/1fr 1fr;
  }

  .see-also-list-item-title {
    height: 39px;
  }

  .category-top {
    display: block;
  }

  .category-top-right {
    display: none;
  }

  .category-tags-list {
    display: flex;
    flex-direction: column;
  }

  .category-filter-list {
    font-size: 0.75em;
    gap: 8px 16px;
  }

  .product-title-inner {
    grid-template: auto auto/1fr;
  }

  .product-title-rating {
    display: block;
    margin-bottom: 16px;
  }

  .product-card-areas {
    grid-template: 1fr 1fr/1fr;
  }

  .product-card-tabs-wrapper {
    overflow-x: auto;
    white-space: nowrap;
  }

  .product-card-similar {
    grid-template: 1fr / repeat(2, 1fr);
  }

  .contacts-content-inner {
    margin: 48px 0;
  }

  .contacts-content-columns {
    display: block;
  }

  .contacts-content-right {
    height: 350px;
  }

  .documents-list {
    grid-template: 1fr / repeat(4, 1fr);
  }

  .advantages-list {
    grid-template: 1fr/1fr;
  }

  .advantages-list-item {
    padding: 16px 24px;
    display: grid;
    grid-template: 1fr/1fr 2fr;
    gap: 16px;
  }

  .advantages-list-item-desc {
    grid-column: 1/4;
  }

  .breadcrumbs {
    display: none;
  }

  .work-scheme-list {
    grid-template: 1fr/1fr;
  }

  .work-scheme-list-item {
    padding: 16px 24px;
    display: grid;
    grid-template: 1fr/1fr 2fr;
    gap: 16px;
  }

  .work-scheme-list-item-desc {
    grid-column: 1/4;
  }

  .reviews-list-item {
    margin-bottom: 28px;
  }

  .reviews-list-item-header {
    grid-template: 1fr/2fr 1fr;
  }

  .reviews-list-item-header-rating {
    grid-row: 2/3;
    grid-column: 1/3;
    justify-content: center;
    box-sizing: border-box;
    padding-top: 16px;
  }

  .reviews-list-item-divider {
    width: 100%;
    margin: 16px 0;
  }

  .useful-links-list {
    display: block;
  }

  .useful-links-list-item {
    margin-bottom: 8px;
  }

  .useful-links-list-item-heading {
    font-size: 14px;
  }

  .consult-form-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .consult-form-input {
    margin-bottom: 16px;
  }

  .consult-form-btn {
    width: 100%;
  }

  .pricelist-pagination {
    font-size: 0.75em;
  }

  .pricetable {
    font-size: 11px;
  }

  .pricetable-wrapper {
    overflow-x: scroll;
  }

  .pricetable td:first-child,
  .pricetable th:first-child {
    white-space: nowrap;
  }

  .pricetable td:nth-child(n-2),
  .pricetable th:nth-child(n-2) {
    white-space: nowrap;
  }

  .how-to-order-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .payment-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .payment-list-item {
    width: 100%;
    margin-bottom: 24px;
  }

  .cart-products-list-item {
    grid-template: auto auto/auto auto;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.8em;
  }

  .cart-products-list-item-title {
    grid-column: 1/4;
  }

  .cart-products-list-item-quantity .input {
    width: 90px;
  }

  .cart-products-actions {
    font-size: 0.8em;
  }

  .button.is-primary.is-outlined.footer-contacts-btn {
    margin-bottom: 0px;
  }

  .swiper .swiper-button-next {
    right: 4px;
  }

  .swiper .swiper-button-prev {
    left: 4px;
  }

  .cart-form-btns {
    flex-wrap: wrap;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .breadcrumbs {
    margin-top: 10px;
    display: flex !important;
    flex-wrap: wrap;
  }

  .breadcrumbs .breadcrumb {
    flex-wrap: wrap;
  }

  .breadcrumbs .breadcrumb-separator {
    margin-right: 10px;
  }

  .breadcrumbs .breadcrumb-item {
    margin: 0 10px 10px 0;
  }

  .header-top {
    display: block;
  }

  .header-main {
    height: auto;
    padding: 20px 0;
  }

  .header-main-inner {
    grid-template: 1fr/130px 1fr auto auto;
  }

  .header-main-logo-img {
    max-width: 107px;
  }

  .header-main-descr {
    display: none;
  }

  .header-main-info {
    display: none;
  }

  .header-main-socials {
    border-left: 0px;
    padding-left: 0px;
    height: auto;
  }

  .header-main-mail {
    display: none;
  }

  .main-catalog-list-wrapper.swiper {
    position: static;
  }

  .main-catalog-list-wrapper.swiper .swiper-button-prev,
  .main-catalog-list-wrapper.swiper .swiper-button-next {
    top: 60%;
  }

  .main-cat-list {
    grid-template: 1fr/1fr;
  }

  .articles-slider-inner {
    padding: 0px 16px;
    margin: 0px -16px;
  }

  .articles-slider-swiper-wrapper.swiper {
    margin: 0px;
  }

  .articles-slider-item.swiper-slide {
    max-width: none;
    margin: 0px;
  }

  .articles-slider .swiper-button-next {
    right: 4px;
  }

  .articles-slider .swiper-button-prev {
    left: 4px;
  }

  .sertificates-inner {
    position: relative;
  }

  .sertificates-list-wrapper.swiper {
    position: static;
  }

  .partners-inner {
    padding: 0px 16px;
    margin: 0px -16px;
  }

  .partners-list-wrapper.swiper {
    padding-bottom: 25px;
  }

  .partners-list-wrapper.swiper .swiper-button-prev,
  .partners-list-wrapper.swiper .swiper-button-next {
    top: 60%;
  }

  .partners-list-item.swiper-slide {
    max-width: none;
    margin: 0px;
  }

  .footer {
    padding-bottom: 50px;
  }

  .footer-inner {
    grid-template: repeat(4, auto) / 1fr;
    grid-gap: 0px;
  }

  .footer-inner>div:not(.footer-section-info_1) {
    padding-top: 50px;
  }

  .footer-section-menu-flex {
    display: flex;
    justify-content: space-between;
  }

  .footer-section-menu1,
  .footer-section-menu2 {
    margin-bottom: 0px;
  }

  .footer-section-info {
    grid-row: auto;
    grid-column: auto;
    padding-bottom: 0px;
    align-items: start;
  }

  .footer-section-info.footer-section-info_1 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 0px;
  }

  .footer-contacts {
    width: 100%;
    margin: 0;
  }

  .footer-contacts-item {
    text-align: left;
  }

  .footer-contacts-item-phone {
    flex-direction: column;
    margin: 0px;
  }

  .pricetable th:not(.mobile-visible) {
    display: none;
  }

  .pricetable td:not(.mobile-visible) {
    display: none;
  }

  .pricetable.page_299 th,
  .pricetable.page_299 td:not(.mobile-visible) {
    display: table-cell;
  }

  .how-to-order-list-item-text {
    text-align: left;
  }

  .stages-list {
    flex-wrap: wrap;
  }

  .stages-list-item {
    max-width: 100%;
    width: 33%;
    margin-bottom: 27px;
  }

  .product-card-areas {
    display: block;
    margin-bottom: 50px;
  }

  .product-card-gallery {
    margin-bottom: 20px;
    grid-template-rows: 296px;
  }

  .product-card-info {
    padding: 20px 20px 50px;
  }

  .product-card-advantages-item {
    width: 100%;
    margin-bottom: 26px;
    font-size: 14px;
  }

  .product-card-tabs-tab {
    font-size: 14px;
    padding: 0;
  }

  .product-card-docs {
    padding: 0px 16px;
    margin: 0px -16px;
  }

  .product-card-order {
    width: 100%;
  }

  .product-card-order .button {
    width: 295px;
    max-width: 100%;
  }

  .work-scheme-inner {
    padding: 0px 16px;
    margin: 0px -16px;
    position: relative;
  }

  .work-scheme-list {
    margin: 20px 0px;
  }

  .product-card-tags {
    display: flex;
    gap: 12px;
    overflow-x: scroll;
  }

  .input-fields {
    flex-wrap: wrap;
  }

  .input-fields .callback-modal-form-item:last-child {
    position: unset;
  }

  .callback-modal-form-checkbox-label {
    margin: 10px 0 16px;
  }

  .callback-modal-form-checkbox-label {
    text-align: left;
  }

  .main-callback-form-accept,
  .consult-form-accept {
    top: -30px;
    text-align: left;
  }

  .main-callback-form .input-fields .callback-modal-form-item:last-child {
    position: unset;
  }

  .main-callback-form-form .input-fields {
    gap: 0;
  }
}

@media screen and (min-width: 1024px) {
  .callback-modal-form-input {
    margin-right: 16px;
  }

  .cart-order-submit-modal-form-item.is-field-name {
    grid-column: 1/3;
  }

  .cart-order-submit-modal-form-item.is-field-phone {
    grid-column: 3/6;
  }

  .cart-order-submit-modal-form-item.is-field-address {
    grid-column: 1/6;
  }

  .cart-order-submit-modal-form-item.is-field-agreement {
    grid-column: 1/6;
  }

  .header-top-inner-right .is-phone {
    display: none;
  }

  .mobile-menu-wrapper {
    display: none;
  }

  .footer-inner {
    grid-template: 1fr/1.5fr repeat(5, 1fr);
  }

  .page-container {
    min-height: 70vh;
  }

  .page-container.has-sidebar {
    display: grid;
    grid-template: 1fr/250px 1fr;
    gap: 32px;
    box-sizing: border-box;
    padding: 64px 0;
  }

  .main-catalog-list {
    display: grid;
    grid-template: repeat(2, 1fr) / repeat(3, 1fr);
    gap: 32px;
  }

  .main-callback-form-input {
    margin-right: 16px;
  }

  .product-card-props-item {
    grid-template: 1fr / auto minmax(225px, 1fr) auto;
    max-width: 45%;
  }

  .reviews-list {
    display: grid;
    grid-template: 1fr/1fr 1fr;
    gap: 32px;
  }

  .useful-links-list {
    display: grid;
    grid-template: repeat(4, 1fr) / repeat(4, 1fr);
    gap: 16px;
  }

  .consult-form-input {
    margin-right: 16px;
  }

  .page-container {
    margin-top: 20px;
  }

  .header-menu.fixed {
    position: fixed;
    top: 0;
    background: #fff;
    left: 0;
    right: 0;
    z-index: 111;
  }

  .sertificates-list-item.swiper-slide {
    width: 297px !important;
  }

  .partners-list-item.swiper-slide {
    width: 297px !important;
  }

  .footer-inner {
    grid-template: 1fr / repeat(4, 1fr);
    grid-gap: 15px;
  }
}

@media screen and (max-width: 424px) {
  .cart-order-submit-modal {
    padding: 24px !important;
  }

  .product-card-order .button {
    font-size: 0.9em;
  }

  .documents-list {
    grid-template: 1fr / repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  ul.d-flex>li {
    width: 100%;
  }

  .xs-overflow-x {
    overflow-x: scroll;
  }

  .button.is-orange {
    padding: 14px 42px;
  }

  .swiper .swiper-button-next {
    right: 0;
  }

  .swiper .swiper-button-prev {
    left: 0;
  }

  .delivery-inner {
    padding: 20px 20px 50px;
    background-image: url(/assets/template/img/delivery-bg-mob.png);
    background-image: image-set(url(/assets/template/img/delivery-bg-mob.webp) type("image/webp"),
        url(/assets/template/img/delivery-bg-mob.png));
    background-image: -webkit-image-set(url(/assets/template/img/delivery-bg-mob.webp) type("image/webp"),
        url(/assets/template/img/delivery-bg-mob.png));
  }

  .delivery-angle {
    left: -235px;
    height: auto;
    border-width: 336px;
    border-color: rgba(36, 71, 138, 0.8);
    border-right: 100px solid transparent;
  }

  .delivery-text {
    max-width: 70%;
    min-width: 230px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
  }

  .useful-links-new-item {
    min-height: 187px;
    max-height: -moz-max-content;
    max-height: max-content;
    box-sizing: border-box;
  }

  .useful-links-new-item:before {
    border-right: 20vw solid transparent;
    border-left: 20vw solid rgba(36, 71, 138, 0.8);
    right: 13px;
  }

  .useful-links-new-item-text {
    max-width: 87%;
  }

  .useful-links-new-item-link {
    max-width: 87%;
  }

  .articles-slider-inner {
    max-width: 90%;
    margin: 0px auto;
  }

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

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

  .sertificates-list-item.swiper-slide {
    text-align: center;
    padding: 0px 20px;
    box-sizing: border-box;
  }

  .partners-inner {
    max-width: 90%;
    margin: 0px auto;
  }

  .partners-list-wrapper.swiper {
    margin: 0;
    padding-left: 5px;
    padding-right: 5px;
  }

  .footer-logo {
    max-width: 107px;
  }

  .how-to-order-list-item-icon {
    margin-right: 20px;
  }

  .product-card-docs {
    max-width: 90%;
    margin: 0px auto;
  }

  .product-card-docs-list-wrapper.swiper {
    padding-bottom: 32px;
  }

  .product-card-docs-slider-swiper-item {
    text-align: center;
    box-shadow: none;
  }

  .product-card-docs-slider-swiper-item img {
    max-width: 233px;
  }

  .garanties__item {
    flex-direction: column;
    align-items: center;
  }

  .garanties__image {
    margin-bottom: 20px;
  }

  .garanties__title {
    text-align: center;
  }

  .work-scheme-inner {
    max-width: 90%;
    margin: 0px auto;
  }
}

.mobile-only {
  display: none;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .hidden-sm {
    display: none;
  }

  .flex-sm {
    display: flex;
  }

  .page-container.has-sidebar {
    padding: 25px 0px;
  }

  .text-section {
    font-size: 14px;
    line-height: 18px;
    padding: 25px 0px;
  }

  .heading_1,
  .subheading_1 {
    font-size: 20px;
    line-height: 26px;
  }

  .mobile-visible button.button.is-primary.is-outlined {
    background-color: transparent;
  }

  .mobile-visible button:before {
    content: url(/assets/template/img/cart-new.svg);
    width: 30px;
    height: 30px;
  }

  .mobile-visible .not_change button.button.is-primary.is-outlined {
    background: #4a76cb;
  }

  .mobile-visible .not_change button::before {
    content: unset !important;
  }

  .product-card-tags {
    white-space: nowrap;
  }

  .over-product-card-tags {
    background: #eaecef;
  }

  .category-buttons {
    display: block;
  }

  .category-buttons .button {
    display: block;
  }

  .main-banner {
    margin: 20px 0px 25px;
  }

  .main-banner-list-item.info-item .main-banner-list-item-content {
    padding: 30px 20px 42px;
  }

  .main-banner-list-item.info-item .main-banner-list-item-content-header {
    font-size: 22px;
    line-height: 29px;
  }

  .main-banner-list-item.info-item .main-banner-list-item-content-text {
    font-size: 14px;
    line-height: 18px;
    margin: 7px 0px 40px;
  }

  .advantages {
    margin: 25px 0px;
  }

  .advantages h2 {
    margin-bottom: 0px;
  }

  .advantages-list {
    grid-template: 4fr/1fr;
    gap: 20px;
    margin: 25px 0px;
  }

  .advantages-list-item {
    display: flex;
    align-items: center;
  }

  .advantages-list-item-img {
    max-width: 69px;
    margin-right: 20px;
  }

  .advantages-list-item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .advantages-list-item-desc {
    margin-top: 0px;
    text-align: left;
    font-size: 14px;
  }

  .main-catalog {
    padding: 25px 0px;
  }

  .main-callback-form-inner,
  .consult-form-inner {
    padding: 15px 20px 50px;
  }

  .main-callback-form-heading,
  .consult-form-heading {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .main-callback-form {
    padding: 25px 0px;
  }

  .main-callback-form-inner {
    padding: 15px 20px 50px;
  }

  .useful-links-new {
    padding: 0px;
  }

  .useful-links-new-list {
    flex-wrap: wrap;
  }

  .useful-links-new-item {
    width: 100%;
    padding: 20px 20px 26px;
  }

  .useful-links-new-item-text {
    font-weight: 500;
  }

  .useful-links-new-link {
    font-size: 16px;
  }

  .sertificates {
    padding: 25px 0px;
  }

  .delivery-map-region-info {
    position: static;
    width: 100%;
    background-color: #4a76cb;
    color: #fff;
  }

  .filter_title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .pricelists {
    margin: 24px 0;
  }

  .pricelists-tags {
    margin: 24px 0;
  }

  .how-to-order {
    margin: 25px 0px;
  }

  .how-to-order-list-item {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    max-width: 370px;
  }

  .how-to-order-list-item-content {
    text-align: left;
  }

  .how-to-order-list-item-icon {
    margin-right: 58px;
  }

  .stages {
    padding: 25px 0px;
  }

  .stages-list-item {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
  }

  .stages-list-item-icon {
    margin-right: 20px;
    margin-bottom: 0px;
  }

  .product-card-docs-list-wrapper.swiper {
    margin: 0;
  }

  .services__image {
    width: 100%;
    height: 100px;
  }

  .services__row {
    padding: 15px;
  }

  .services__button {
    width: 100%;
  }

  .work-scheme .articles-slider {
    margin: 25px 0px;
  }

  .mobile-only {
    display: block;
  }

  .pricetable td.mobile-only,
  .pricetable th.mobile-only {
    display: table-cell !important;
  }
}

@media screen and (max-width: 1200px) {
  .main-callback-form-input {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1439px) {
  .product-card-docs-slider-swiper-item {
    margin: 0;
    max-width: initial !important;
  }
}

@media screen and (max-width: 1223px) {
  .header-menu-list-item-has-child>a:after {
    right: -10px;
  }

  .header-menu-list-item a {
    padding: 16px 4px;
  }
}

@media (max-width: 1023.98px) {
  .padding-15 {
    padding: 0 15px;
  }
}

@media (max-width: 767.98px) {
  .fixed-cart {
    display: none;
  }

  .product-card-tags {
    white-space: unset;
  }
}

/*# sourceMappingURL=/assets/template/css_diff/main.css.map */



.buttons-container {
  display: flex;
  gap: 16px;
}

.not_change button {
  white-space: nowrap;
  padding: 12px 20px !important;
  height: auto !important;
}

.not_change .button-white {
  background: white !important;
  color: #4a76cb !important;
  border: 1px solid #4a76cb !important;
}

.pricetable.page_299 td {
  padding: 12px 14px;
}

@media (max-width: 768px) {
  .pricetable.page_299 thead {
    display: none;
  }

  .pricetable.page_299 tr {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pricetable.page_299 tr button {
    width: auto;
    padding: 12px 14px !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 20.8px;
    letter-spacing: 0%;
    text-align: center;
  }

  .pricetable.page_299 td a span {
    font-size: 16px;
  }

  .pricetable.page_299 .product-price span,
  .pricetable.page_299 .characteristics div {
    font-size: 16px;
  }
}


.cookie-notice {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 15px;
  z-index: 9999;
  text-align: center;
  font-size: 14px;
}

.cookie-notice__btn {
  margin-left: 20px;
  padding: 8px 16px;
  background: #ff6600;
  color: #fff;
  border: none;
  cursor: pointer;
}

.cookie-notice__btn:hover {
  background: #e65500;
}

.color-choices {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.color-choice {
  background: #fafafa;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid #0005;
}

.color-choice.-active {
  border: 4px dotted #0007;
}

.-bg--black {
  background: #606060;
}

.-bg--brown {
  background: #8b7b7a;
}

.-bg--red {
  background: #e38d81;
}

.-bg--orange {
  background: #e5ac83;
}

.-bg--gray {
  background: #ccc6c1;
}

.-bg--yellow {
  background: #e4c681;
}

.-bg--white {
  background: #fafafa;
}

.-bg--beige {
  background: #aea48e;
}

.-bg--olive {
  background: #c0b69f;
}

.product-tile {
  height: 100%;
  box-sizing: border-box;

  display: flex;
  gap: 15px;
  flex-direction: column;
  padding: 16px;
  border-radius: 7px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 1px 10px 0 #0001;
}

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

.product-tile__self {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-tile__title {
  /* margin-bottom: 10px; */
  font-weight: 600;
  color: #4a76cb;
}

.product-tile .product-price {
  display: flex;
  padding: 0;
  /* align-items: center; */
  flex-direction: column;
  gap: 10px;
  /* background: #bac8d6; */
  justify-content: space-between;
}

.product-tile .product-price__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-tile .product-price__price {
  font-weight: 600;
  /* color: #fff; */
}

.product-tile .button {
  width: 100%;
}

.product-tile .button.is-primary.is-outlined {
  background: #4a76cb;
  border-color: #4a76cb;
  color: #fff;
}

.product-tile .button.is-primary.is-outlined.button-white {
  background: #fff;
  border-color: #4a76cb;
  color: #4a76cb;
}

.product-tile__attributes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-tile__attribute {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
}

.product-tile__attribute .a-caption {
  color: #0008;
}

.product-tile__attribute .a-separator {
  flex-grow: 1;
  border-bottom: 1px dotted #0003;
}

.tile-group {
  margin: 30px 0;
}

.tile-group__title {
  font-weight: 60;
  font-size: 20px;
  margin-bottom: 15ppx;
}



.product-card .color-choices {
  margin: 20px 0;
}