:root {
  --bs-white: #fff;
  --bs-white-hover: #f4f4f4;
  --bs-white-opacity: rgba(255, 255, 255, 0.5);
  --bs-secondary: #6f8c9e;
  --bs-primary: #516775;
  --bs-primary-hover: #6f8c9e;
  --bs-accent: #61be6e;
  --bs-accent-hover: #4fa85c;
  --bs-text: #3f4f59;
  --bs-text-hover: #495b67;
  --bs-link-color-rgb: var(--bs-text);
  --bs-link-hover-color-rgb: var(--bs-text-hover);
  --font-body: 'Montserrat';
  --font-secondary: 'CormorantSC';
  --font-fallback: sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --bs-body-font-family: var(--font-body), var(--font-fallback);
  --bs-secondary-font-family: var(--font-secondary), var(--font-fallback);
  --font-size-xxl: 50px;
  --font-size-xl: 44px;
  --font-size-l: 42px;
  --font-size-m: 23px;
  --font-size-base: 18px;
  --font-size-sm: 14px;
  --font-size-s: 12px;
  --font-size-xs: 10px;
  --grid-col: 225px;
  --gap: clamp(15px, 2vw, 30px);
  --transition-duration-fast: 0.2s;
  --ease-linear: linear;
  --ease-in: ease-in;
  --ease-out: ease-out;
  --ease-in-out: ease-in-out;
  --transition-base: var(--transition-duration-fast) var(--ease-linear);
}
@media screen and (max-width: 767px) {
  :root {
    --font-size-xxl: 40px;
    --font-size-xl: 36px;
    --font-size-l: 32px;
  }
}
button {
  background: transparent;
  border: none;
  padding: 0;
}
img {
  max-width: 100%;
  max-height: auto;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/sites/all/themes/vesta_theme/font/Montserrat-Bold.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/sites/all/themes/vesta_theme/font/Montserrat-SemiBold.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/sites/all/themes/vesta_theme/font/Montserrat-Medium.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CormorantSC';
  src: url('/sites/all/themes/vesta_theme/font/CormorantSC-Bold.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/CormorantSC-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  color: var(--bs-text);
  font-size: var(--font-size-base);
  line-height: 1.2;
  font-weight: 500;
  background-color: var(--bs-white);
  background-image: url('/sites/all/themes/vesta_theme/image/body-bg.jpg');
  background-size: cover;
  background-repeat: repeat-y;
  background-position: center;
  overflow-x: hidden;
  min-height: 100vh;
}
#main {
  margin-bottom: 0;
}
.ui-dialog .ui-dialog-content a {
  color: var(--bs-primary);
}
/* переопределение active и focus */
.page .form-control:focus,
.page .form-checkbox:focus {
  /* background-color: inherit; */
  border-color: inherit;
}
.page :focus,
.ui-dialog :focus {
  outline: 1px dotted var(--color-focus);
  outline-offset: 1px;
}
.page .form-control:focus,
.page .form-checkbox:focus {
  outline: 1px dotted var(--color-focus);
  outline-offset: 0px;
}
.view-content > div {
  position: relative;
}
.ajax-progress-throbber {
  position: fixed !important;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ajax-progress-throbber .throbber {
  content: '';
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-image: url('/sites/all/themes/vesta_theme/image/i_loading.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  background-color: var(--color-white);
  animation: spin 1.25s linear infinite;
}
.ajax-progress-throbber .message {
  font-size: 0;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background-color: var(--bs-white);
  z-index: 100;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}
#mobile-header .page-header {
  flex-grow: 1;
  font-weight: 300;
  align-self: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 5px;
}
#mobile-header > a {
  color: inherit;
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  min-width: 45px;
}
.region-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-mobile-block {
  display: none;
}
.search-api-page-block-form {
  position: relative;
}
.search-api-page-block-form form {
  display: flex;
}
.search-api-page-block-form .form-type-search {
  width: 100%;
}
.search-api-page-block-form .form-search:focus {
  outline-offset: -1px;
}
.search-api-page-block-form .form-actions .btn {
  position: absolute;
  right: 0;
  top: 0;
}
.search-api-page-block-form .form-actions .btn:active {
  background-color: var(--bs-primary-hover);
}
.cart--cart-block .cart-block--link__expand {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.node--type-slide {
  display: grid;
  align-items: center;
  color: var(--bs-white);
}
.node--type-slide div[data-once='contextual-render'] {
  top: 36px;
}
.node--type-slide .field--name-field-image {
  grid-area: 1/1;
}
.node--type-slide .field--name-field-image img {
  min-height: 290px;
}
.node--type-slide .content {
  grid-area: 1/1;
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
}
.node--type-slide::after {
  content: none;
}
#map-block {
  margin: 0;
}
#map-block .field--name-body {
  display: flex;
}
.footer .vesta {
  padding: 1.125em;
  font-size: 14px;
  color: var(--bs-white);
  display: flex;
  justify-content: center;
}
.form-item {
  margin: 0;
}
.form-control::placeholder {
  color: var(--color-placeholder);
}
.form-type-checkbox {
  display: flex;
  align-items: flex-start;
}
.form-type-checkbox .form-checkbox {
  margin: 0.25rem 0 0 0;
}
/* .form-type-checkbox .description {} */
/* ### WEBFORM DIALOG ### */
body .ui-dialog :is(.ui-widget-header, .ui-dialog-buttonpane) {
  background-color: transparent;
}
.ui-dialog .webform-submission-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ui-dialog .webform-submission-form .form-type-processed-text {
  margin-top: 1rem;
  font-size: 13px;
}
.view-grid .view-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--grid-col), 1fr));
  gap: var(--gap);
}
.view-news.view-display-id-page_1 .content {
  background-color: var(--color-bg-gray);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* .mm-navbar{} */
.region-navigation-mobile .menu {
  display: grid;
}
.region-navigation-mobile .menu a {
  background-color: transparent;
  color: var(--bs-black);
}
.region-navigation-mobile .menu .is-active {
  color: var(--bs-white);
  background-color: var(--bs-primary);
  pointer-events: none;
}
.region-navigation-mobile .menu .menuparent + ul {
  display: none;
}
.nav-tabs {
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 2px;
  border-bottom: 0;
}
.nav-tabs .nav-item a,
.nav-tabs .nav-item.active a:hover {
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 0;
}
.nav-tabs .nav-item.active a,
.nav-tabs .nav-item a:hover {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
/* ### ADAPTIVE ### */
@media screen and (max-width: 991px) {
  /* ### MOBILE MENU ### */
  .mm-page {
    padding-top: 0 !important;
    /* 64px */
  }
  #block-vesta-theme-osnovnayanavigaciya-2 :is(.sf-accordion-toggle, #superfish-main-accordion) {
    display: none;
  }
  #block-vesta-theme-osnovnayanavigaciya-2 #superfish-main {
    display: flex !important;
  }
  .header-mobile-block {
    display: block;
    padding: 8px 0;
    width: 100%;
    z-index: 400;
    background-color: var(--bs-white);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  }
  .header-mobile-block .region-header-mobile {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  #mobile-nav .navigation {
    display: block;
  }
  /* ### webform ### */
  .webform-submission-form {
    grid-template-columns: 1fr;
  }
}
/* ### contextual-region ### */
.contextual-region .contextual {
  display: none;
  top: -8px;
  right: 8px;
}
.contextual-region .contextual-region .contextual {
  top: 8px;
}
.contextual-region:hover .contextual {
  display: block;
}
.contextual-region .contextual .trigger {
  width: 22px !important;
  height: 22px !important;
  background-size: 14px 14px;
}
/* ### commerce ### */
.view-commerce-cart-form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.view-commerce-cart-form .btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.view-commerce-cart-form .btn-primary:hover {
  background-color: var(--bs-primary-hover);
  color: var(--bs-white);
}
.view-commerce-cart-form .btn-primary:focus {
  background-color: var(--bs-primary-hover);
  color: var(--bs-white);
}
.view-commerce-cart-form .table-wrapper {
  overflow-x: auto;
}
/* toolbar */
.toolbar .toolbar-tab .toolbar-icon {
  padding: 0.75em 1.5em 0.75em 2.5em;
}
.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.region-search form label {
  display: none;
}
div#block-vesta-theme-raskrytayaformatovarypage-4 {
  margin-bottom: 35px;
}
div#block-vesta-theme-raskrytayaformatovarypage-4 .form--inline {
  display: flex;
  flex-wrap: nowrap;
}
div#block-vesta-theme-raskrytayaformatovarypage-4 .form-item-search-api-fulltext label {
  display: none;
}
div#block-vesta-theme-raskrytayaformatovarypage-4 .form-item-search-api-fulltext input {
  min-height: 42px;
  margin: 0;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--bs-primary);
}
.alert-danger {
  background-color: #dddddd;
  border: 1px solid var(--bs-primary);
  color: var(--bs-text);
  font-size: var(--font-size-base);
}
.modal-dialog .form-item {
  margin-bottom: 14px;
}
.modal-dialog .form-item--error-message {
  margin-top: 5px;
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--bs-primary);
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.modal-dialog .form-control {
  color: var(--bs-dark);
  border: 1px solid var(--bs-dark);
  transition: border var(--transition-base);
}
.modal-dialog .form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal-dialog .form-control:hover,
.modal-dialog .form-control:focus {
  border: 1px solid var(--bs-dark-hover);
}
.modal-dialog .modal-footer {
  display: flex;
  justify-content: center;
}
.modal-dialog .btn-close {
  margin-right: 2px;
}
.modal-dialog .btn-close:focus {
  box-shadow: unset;
}
.modal-dialog .btn:active {
  background-color: var(--bs-primary-hover) !important;
}
.modal-dialog .input-disabled {
  pointer-events: none;
  /* отключает клики и ввод */
  background-color: #f3f3f3;
  /* серый фон как у disabled */
  color: #5a5a5a;
  /* тусклый текст */
  opacity: 0.7;
  /* визуально "неактивное" */
  border: none;
}
.not-front .header__navigation {
  background-color: rgba(81, 103, 117, 0.5);
}
.not-front .socials {
  display: none;
}
.cookies #vpa-short-wrapper {
  max-width: 973px;
  padding: 30px 20px 30px 30px;
  border-radius: 4;
  background-color: #f4f4f4;
}
.cookies__content {
  max-width: 670px;
  font-family: var(--bs-body-font-family);
}
.cookies__content p {
  font-size: var(--font-size-base);
}
.cookies__content a {
  text-decoration: underline;
  color: var(--bs-dark);
  transition: color var(--transition-base);
}
.cookies__content a:hover {
  color: var(--bs-gray);
}
.cookies__btns {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookies__btns button {
  border-radius: 4px;
  padding: 12px 20px;
  width: 170px;
  height: 60px;
  font-weight: 700;
  font-size: var(--font-size-sm);
  line-height: 200%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--bs-white);
  background: #a17bd4;
  transition: background-color var(--transition-base);
}
.cookies__btns button:hover {
  background-color: #8d6abb;
}
.search-result-text a {
  color: var(--bs-dark);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  transition: color var(--transition-base);
}
.search-result-text a:hover {
  color: var(--bs-dark-hover);
}
.pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pagination .page-link {
  border: none;
  background-color: var(--bs-primary);
  color: var(--bs-white) !important;
  text-decoration: none !important;
  transition: background-color var(--transition-base);
}
.pagination .page-link:focus {
  box-shadow: none;
}
.pagination .page-link:hover {
  background-color: var(--bs-primary-hover);
}
.pagination .is-active .page-link {
  background-color: var(--bs-primary-hover);
}
#block-vesta-theme-page-title {
  margin-bottom: 40px;
}
.title,
#block-vesta-theme-page-title h1 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: var(--font-size-l);
  line-height: 105%;
  color: var(--bs-text);
  font-family: var(--bs-secondary-font-family);
}
@media screen and (max-width: 767px) {
  .title,
  #block-vesta-theme-page-title h1 {
    text-align: center;
  }
}
.breadcrumb {
  margin-top: 30px;
  margin-bottom: 30px;
}
.breadcrumb .breadcrumb-item {
  color: var(--bs-accent);
  font-size: var(--font-size-s);
  font-weight: 600;
}
.breadcrumb .breadcrumb-item a {
  color: var(--bs-primary);
  transition: color var(--transition-base);
  text-decoration: none;
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--bs-primary-hover);
}
.opytnyh-speciali-form {
  display: flex;
  flex-direction: column;
}
.opytnyh-speciali-form .form-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.opytnyh-speciali-form .webform-element-description {
  font-size: var(--font-size-xs);
  font-weight: 400;
}
.opytnyh-speciali-form .webform-element-description a {
  text-decoration: none;
  transition: color var(--transition-base);
  color: var(--bs-secondary-dark);
}
.opytnyh-speciali-form .webform-element-description a:hover {
  color: var(--bs-secondary-hover);
}
.opytnyh-speciali-form__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}
.opytnyh-speciali-form__customcheckbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  border: 1px solid var(--bs-dark);
  border-radius: 0;
  background-color: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.opytnyh-speciali-form__customcheckbox::before {
  content: '';
  position: relative;
  right: 1px;
  top: -1px;
  width: 11px;
  height: 11px;
  opacity: 0;
  background-image: url('/sites/all/themes/vesta_theme/image/check-form.svg');
  background-repeat: no-repeat;
  transition: opacity var(--transition-base);
}
.form-checkbox:checked + .opytnyh-speciali-form__customcheckbox::before {
  opacity: 1;
}
.wr_front_content {
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .wr_front_content {
    margin-bottom: 40px;
  }
}
.front-h1 {
  margin-bottom: 0;
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .front-h1 {
    margin-top: 40px;
  }
}
.front-h1 span {
  font-weight: 700;
  font-size: var(--font-size-xxl);
  text-align: center;
  color: var(--bs-text);
  font-family: var(--bs-secondary-font-family);
}
.title {
  font-weight: 700;
  font-size: var(--font-size-l);
  color: var(--bs-text);
  text-transform: lowercase;
}
.title::first-letter {
  text-transform: uppercase;
}
.title--center {
  text-align: center;
}
.title--white {
  color: var(--bs-white);
}
.wrapper_advantage {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .wrapper_advantage {
    margin-bottom: 40px;
  }
}
.wrapper_categories {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .wrapper_categories {
    margin-bottom: 40px;
  }
}
.wrapper_special_offers {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .wrapper_special_offers {
    margin-bottom: 40px;
  }
}
.wrapper_products_of_the_week {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .wrapper_products_of_the_week {
    margin-bottom: 40px;
  }
}
.wrapper_feedback {
  margin-top: 60px;
}
.tabs-wrapper a {
  color: var(--bs-primary);
}
.tabs-wrapper a:focus {
  color: var(--bs-primary);
}
.link-more {
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: -0.03em;
  text-align: center;
  text-decoration: none;
  color: var(--bs-text);
  transition: color var(--transition-base);
}
.link-more:hover {
  color: var(--bs-text-hover);
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  max-width: 100%;
  height: 40px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: #516775;
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: -0.03em;
  color: var(--bs-white);
  transition: background-color var(--transition-base);
  border: none;
}
@media screen and (max-width: 576px) {
  .btn {
    font-size: var(--font-size-s);
  }
}
.btn:hover,
.btn:focus,
.btn:active {
  background-color: var(--bs-primary-hover);
  color: var(--bs-white);
}
.input-counter {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 40px;
  padding: 5px;
  gap: 5px;
  border-radius: 4px;
  box-shadow: inset 0 1px 4px 0 rgba(12, 12, 13, 0.05);
  background: var(--bs-white);
}
.input-counter a {
  cursor: pointer;
  color: var(--bs-primary);
}
.input-counter a svg {
  width: 14px;
  height: 14px;
  transition: stroke var(--transition-base);
  stroke: var(--bs-primary);
}
.input-counter a:hover svg {
  stroke: var(--bs-primary-hover);
}
.input-counter input {
  font-size: var(--font-size-sm);
  border: none;
  color: var(--bs-primary);
  width: 30px;
  text-align: center;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: -0.03em;
  background: transparent;
  pointer-events: none;
}
.input-counter input::-webkit-outer-spin-button,
.input-counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.scroll-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 10;
  transition: color var(--transition-base);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--bs-accent);
  border-radius: 5px;
  transition: background-color var(--transition-base);
}
@media screen and (max-width: 767px) {
  .scroll-top {
    bottom: 80px;
  }
}
.scroll-top:hover {
  background-color: var(--bs-accent-hover);
}
@media (max-width: 1738px) {
  .scroll-top {
    right: 111px;
  }
}
@media (max-width: 1440px) {
  .scroll-top {
    right: 20px;
  }
}
.search-result-text a {
  color: var(--bs-text);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  transition: color var(--transition-base);
}
.search-result-text a:hover {
  color: var(--bs-text-hover);
}
.ui-dialog .ui-dialog-titlebar-close {
  width: 30px;
  right: 10px;
  top: 38%;
}
.ui-dialog .ui-dialog-titlebar-close::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background-image: url('/sites/all/themes/vesta_theme/image/close.svg');
  background-size: cover;
  background-size: 25px;
  background-position: center;
  transition: transform var(--transition-base);
}
.ui-dialog .ui-dialog-titlebar-close:hover::before {
  transform: rotate(90deg);
}
.ui-dialog .ui-dialog-title {
  font-size: 16px;
}
.ui-dialog .ui-dialog-content a {
  color: var(--bs-primary);
  transition: color var(--transition-base);
}
.ui-dialog .ui-dialog-content a:hover {
  color: var(--bs-primary-hover);
}
.ui-dialog .ui-dialog-buttonset button {
  color: var(--bs-primary);
  transition: color var(--transition-base);
}
.ui-dialog .ui-dialog-buttonset button:hover {
  color: var(--bs-primary-hover);
}
.layout-region-checkout-main .checkout-pane > div {
  margin-bottom: 20px;
}
.layout-region-checkout-main .form-item-order-fieldscheckout-field-address-0-address-address-line1 {
  margin-bottom: 20px;
}
.layout-region-checkout-main .field--name-field-address legend {
  display: none;
}
.layout-region-checkout-main .fieldset-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.layout-region-checkout-main .form-item--error-message {
  margin-top: 2px;
  font-size: var(--font-size-sm);
}
.layout-region-checkout-main #edit-review-contact-information {
  margin-bottom: 20px;
}
.layout-region-checkout-main #edit-review-payment-information {
  margin-bottom: 20px;
}
.checkout-complete {
  font-size: 20px;
}
.layout-region-checkout-footer .form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.layout-region-checkout-footer .form-actions .link--previous {
  transition: color var(--transition-base);
  color: var(--bs-primary);
}
.layout-region-checkout-footer .form-actions .link--previous:hover {
  color: var(--bs-primary-hover);
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--bs-primary);
}
.btn-close:focus {
  box-shadow: unset;
}
input[type='number'] {
  -moz-appearance: textfield;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Обёртка таблицы для горизонтального скролла */
.view-commerce-cart-form .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* плавный скролл на мобильных */
}
.view-commerce-cart-form .input-counter {
  border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .view-commerce-cart-form .views-field-unit-price__number,
  .view-commerce-cart-form .views-field-total-price__number,
  .view-commerce-cart-form .views-field-remove-button {
    display: none;
  }
  .view-commerce-cart-form .views-table tbody {
    border: 1px solid #ccc;
  }
  .view-commerce-cart-form .views-table tbody tr {
    display: block;
    padding: 2px;
    margin-bottom: 10px;
  }
  .view-commerce-cart-form .views-table tbody tr:last-child {
    margin-bottom: 0;
  }
  .view-commerce-cart-form .views-table tbody tr:last-child td:last-child {
    border-bottom: 0;
  }
  .view-commerce-cart-form .views-table tbody tr td:last-child {
    justify-content: flex-end;
  }
  .view-commerce-cart-form .views-table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    gap: 10px;
    text-align: right;
  }
  .view-commerce-cart-form .views-table tbody td .input-counter {
    margin: 0;
  }
  .view-commerce-cart-form .views-table thead {
    display: none;
  }
  .view-commerce-cart-form .views-field-field-image-product-view::before {
    content: 'Изображение';
    font-weight: 600;
  }
  .view-commerce-cart-form .views-field-title::before {
    content: 'Заголовок';
    font-weight: 600;
  }
  .view-commerce-cart-form .views-field-edit-quantity::before {
    content: 'Количество';
    font-weight: 600;
  }
  .view-commerce-cart-form .views-field-unit-price__number::before {
    content: 'Цена';
    font-weight: 600;
  }
  .view-commerce-cart-form .views-field-total-price__number::before {
    content: 'Итого';
    font-weight: 600;
  }
}
.table > :not(caption) > * > * {
  background-color: var(--bs-white);
  box-shadow: none;
}
/* Только для блока оплаты */
fieldset[data-drupal-selector='edit-payment-information-payment-method'] input[type='radio'] {
  accent-color: #516775;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
fieldset[data-drupal-selector='edit-payment-information-payment-method'] .form-type-radio {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: var(--bs-primary-hover);
}
.pswp__img {
  transition: height var(--transition-base);
}
.header__top {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bs-primary);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__cart .cart__title {
  margin: 0;
  font-weight: 700;
  text-decoration: none;
  font-size: var(--font-size-sm);
}
.header__cart .cart__info::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('/sites/all/themes/vesta_theme/image/cart.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.header__cart .cart__info .cart-block--summary__icon img {
  width: 20px;
  height: 20px;
}
.header__cart .cart .cart-block--link__expand {
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 40px;
  gap: 10px;
  border-radius: 4px;
  background-color: var(--bs-white);
  transition: background-color var(--transition-base);
}
.header__cart .cart .cart-block--link__expand:hover {
  background-color: var(--bs-white-hover);
}
.header__cart .cart .cart-block--summary__count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 25px;
  top: 5px;
  z-index: 2;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 15px;
  border: none;
  background-color: var(--bs-white);
  border: 1px solid var(--bs-primary);
  font-size: var(--font-size-s);
  color: var(--bs-primary);
}
@media screen and (max-width: 576px) {
  .header__cart .cart .cart-block--summary__count {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header__cart {
    display: none;
  }
}
.header__search {
  max-width: 210px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .header__search {
    max-width: 190px;
  }
}
.header__search .form-control {
  border: none;
  border-radius: 0;
  box-shadow: inset 0 1px 4px 0 rgba(12, 12, 13, 0.05);
  background: rgba(244, 244, 244, 0.2);
  padding-left: 10px;
  padding-right: 34px;
  color: var(--bs-white);
  transition: background-color var(--transition-base);
  border-radius: 4px;
}
.header__search .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.header__search .form-control:focus {
  box-shadow: none;
  background-color: var(--bs-primary-hover);
}
.header__search .form-item-search-api-fulltext label {
  display: none;
}
.header__search .form-item {
  margin-right: 0;
}
.header__search .form-item input {
  margin: 0;
  min-height: 40px;
}
.header__search .form-actions button,
.header__search .search-form__submit {
  font-size: 0;
  background-color: transparent;
  border: none;
  padding: 0;
  height: 100%;
}
.header__search .form-actions button::before,
.header__search .search-form__submit::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  right: 13px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url('/sites/all/themes/vesta_theme/image/search.svg');
  background-size: 20px;
}
.header .drop-down-search {
  display: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header .drop-down-search {
    display: block;
  }
}
.header .drop-down-search .region-search {
  position: absolute;
  top: 30px;
  right: 0;
  pointer-events: none;
  width: 0;
  opacity: 0;
  transition: width var(--transition-base), opacity var(--transition-base);
  z-index: 10;
}
.header .drop-down-search .form-item {
  width: 100%;
}
.header .drop-down-search .region-search.active {
  width: 250px;
  pointer-events: visible;
  opacity: 1;
}
.header .drop-down-search .form-actions {
  display: none;
}
.header .drop-down-search .close-search-button,
.header .drop-down-search .search-open-button {
  transition: transform var(--transition-base);
}
.header .drop-down-search .close-search-button:hover,
.header .drop-down-search .search-open-button:hover {
  transform: scale(1.1);
}
.header .drop-down-search .close-search-button {
  display: none;
  color: var(--bs-primary);
}
.header .drop-down-search .close-search-button svg {
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
}
.header .drop-down-search .close-search-button.active {
  display: block;
}
.header .drop-down-search .search-open-button.active {
  display: none;
}
.header__box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__box .nav-item.dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 4px;
  width: 118px;
  height: 40px;
  background-color: var(--bs-white);
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: -0.03em;
  color: var(--bs-text);
}
.header__box .nav-item.dropdown > a::before {
  content: '';
  width: 20px;
  height: 16px;
  background-image: url('/sites/all/themes/vesta_theme/image/catalog-menu.svg');
  background-size: 20px;
}
.header__box .nav-item.dropdown > a::after {
  content: '';
  display: none;
}
@media screen and (max-width: 767px) {
  .header .menu--katalog {
    display: none;
  }
}
.header__navigation {
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
  position: relative;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  fill: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 4px 0 rgba(12, 12, 13, 0.05);
}
@media screen and (max-width: 767px) {
  .header__navigation {
    display: none;
  }
}
.header__navigation .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  .header__navigation .nav {
    gap: 0;
  }
}
.header__navigation .nav-item.dropdown {
  display: none;
}
.header__navigation .nav-link {
  display: flex;
  align-items: center;
  height: 40px;
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: -0.03em;
  color: var(--bs-white);
  transition: color var(--transition-base);
}
.header__navigation .nav-link:hover {
  color: var(--bs-white-hover);
}
@media screen and (max-width: 991px) {
  .header__navigation .nav-link {
    padding: 10px 5px;
  }
}
.header .logo img {
  width: 211px;
}
@media screen and (max-width: 767px) {
  .header .logo img img {
    width: 158px;
  }
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .header .nav {
    gap: 0;
  }
}
.header .nav-link {
  color: var(--bs-white);
  transition: color var(--transition-base);
}
.header .nav-link:hover {
  color: var(--bs-white-hover);
}
.cart-mobile .cart__info::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('/sites/all/themes/vesta_theme/image/cart-white.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.cart-mobile .cart__info .cart-block--summary__icon img {
  width: 20px;
  height: 20px;
}
.cart-mobile .cart .cart-block--link__expand {
  gap: 10px;
}
.cart-mobile .cart .cart-block--summary__count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 25px;
  top: 0px;
  z-index: 2;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 15px;
  border: none;
  background-color: var(--bs-white);
  border: 1px solid var(--bs-primary);
  font-size: var(--font-size-s);
  color: var(--bs-primary);
}
.cart-mobile .cart .cart__title {
  margin-bottom: 0;
}
.mobile-menu-wrapper {
  width: 100% !important;
  background-color: var(--bs-white);
  background-image: url('/sites/all/themes/vesta_theme/image/body-bg.jpg');
  background-size: cover;
  background-repeat: repeat-y;
  background-position: center;
  padding-bottom: 50px;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-menu-wrapper .nav > .nav-item:hover .dropdown-menu {
  top: 27px;
  left: -15px;
}
.mobile-menu-wrapper__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--bs-primary);
  text-align: center;
  width: 100%;
  padding: 10px;
  font-size: var(--font-size-base);
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.mobile-menu-wrapper .search-api-page-block-form-search {
  box-shadow: inset 0 1px 4px 0 rgba(12, 12, 13, 0.05);
  background: rgba(244, 244, 244, 0.2);
}
.mobile-menu-wrapper .search-api-page-block-form-search .btn {
  top: 50%;
  transform: translateY(-50%);
}
.mobile-nav {
  margin-top: 20px;
  margin-bottom: 40px;
}
.mobile-nav__info {
  margin-top: 14px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 14px;
  padding-right: 14px;
}
.mobile-nav__address {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav__address p {
  margin-bottom: 0;
}
.mobile-nav__phone {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}
.mobile-nav__socials {
  display: flex;
  gap: 4px;
}
.mobile-nav__socials a {
  text-decoration: none;
}
.mobile-nav__socials a img {
  transition: transform var(--transition-base);
}
.mobile-nav__socials a:hover img {
  transform: scale(1.05);
}
.mobile-nav .nav {
  display: flex;
  flex-direction: column;
}
.mobile-nav .nav > .nav-item:first-child {
  border-top: 1px solid var(--bs-primary);
}
.mobile-nav .nav-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bs-primary);
  color: var(--bs-dark);
  transition: color var(--transition-base);
}
.mobile-nav .nav-link:hover {
  color: var(--bs-primary);
}
.mobile-nav .nav-link::after {
  display: none;
}
.mobile-nav .submenu-arrow {
  cursor: pointer;
  user-select: none;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  border-left: 1px solid var(--bs-secondary);
}
.mobile-nav .submenu-arrow::after {
  content: '';
  display: block;
  background-image: url('/sites/all/themes/vesta_theme/image/mobile-arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
  transition: transform var(--transition-base);
  width: 40px;
  height: 100%;
}
.mobile-nav .nav-item.open .submenu-arrow::after {
  transform: rotate(90deg);
}
.mobile-nav#js-mobile-nav .dropdown-menu {
  display: none;
  padding-left: 15px;
  position: relative;
  top: auto;
  left: auto;
  border-radius: 0;
  background-color: transparent;
}
.mobile-nav#js-mobile-nav .dropdown-item {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0;
}
.mobile-nav#js-mobile-nav .nav {
  flex-direction: column;
}
.mobile-nav#js-mobile-nav .nav li.dropdown {
  position: relative;
}
.contacts__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .contacts__header {
    flex-direction: column;
  }
}
.contacts__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 991px) {
  .contacts__content {
    gap: 20px;
  }
}
.contacts__maps {
  display: flex;
  gap: 30px;
}
.contacts__map {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contacts__map {
    width: 100%;
  }
}
.contacts-item__title {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--font-size-base);
}
.contacts-item--address {
  max-width: 264px;
}
.contacts-item a {
  color: var(--bs-dark);
  text-decoration: none;
  transition: color var(--transition-base), background-color var(--transition-base);
}
.contacts-item a:hover {
  color: var(--bs-dark-hover);
}
.contacts-item__wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.view-slayder {
  overflow: hidden;
  margin-top: -40px;
}
@media screen and (max-width: 767px) {
  .view-slayder {
    margin-top: 0;
  }
}
.view-slayder .view-content {
  opacity: 0;
  visibility: hidden;
}
.view-slayder .view-content.slick-initialized {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}
.view-slayder .node--type-slide {
  height: 500px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .view-slayder .node--type-slide {
    height: 660px;
  }
}
.view-slayder .content {
  text-align: center;
  color: var(--bs-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 70px;
  padding-right: 70px;
  padding-bottom: 50px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .view-slayder .content {
    padding-bottom: 100px;
    padding-left: 42px;
    padding-right: 42px;
  }
}
.view-slayder .field--name-field-slide-title {
  max-width: 980px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
.view-slayder .field--name-field-slide-title p {
  margin: 0;
  font-weight: 700;
  line-height: 1;
  font-size: var(--font-size-xl);
  color: var(--bs-white);
  font-family: var(--bs-secondary-font-family);
}
@media screen and (max-width: 991px) {
  .view-slayder .field--name-field-slide-title {
    margin-bottom: 20px;
  }
}
.view-slayder .field--name-body {
  max-width: 916px;
  margin-left: auto;
  margin-right: auto;
}
.view-slayder .field--name-body p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--bs-white);
}
@media screen and (max-width: 767px) {
  .view-slayder .field--name-body p {
    font-size: 16px;
  }
}
.view-slayder .field--name-field-image {
  position: relative;
  height: 100%;
  height: 500px;
}
.view-slayder .field--name-field-image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .view-slayder .field--name-field-image {
    height: 660px;
  }
}
.view-slayder .field--name-field-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: height var(--transition-base);
}
.view-slayder .field--name-field-slide-link {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .view-slayder .field--name-field-slide-link {
    margin-top: auto;
  }
}
.view-slayder .field--name-field-slide-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 270px;
  background-color: var(--bs-accent);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: -0.03em;
  color: var(--bs-white);
  transition: background-color var(--transition-base);
}
@media screen and (max-width: 767px) {
  .view-slayder .field--name-field-slide-link a {
    max-width: 195px;
  }
}
.view-slayder .field--name-field-slide-link a:hover {
  background-color: var(--bs-accent-hover);
}
.view-slayder .slick-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0;
  margin-top: 0;
}
@media screen and (max-width: 991px) {
  .view-slayder .slick-dots {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .view-slayder .slick-dots {
    top: unset;
    bottom: 10px;
    width: 100%;
    flex-direction: row;
  }
}
.view-slayder .slick-dots button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
}
.view-slayder .slick-dots button::after {
  content: '';
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.view-slayder .slick-dots .slick-active button {
  border: 1px solid var(--bs-white);
}
.view-slayder .slick-dots .slick-active button::after {
  background-color: var(--bs-white);
}
.view-slayder .slick-next.slick-arrow,
.view-slayder .slick-prev.slick-arrow {
  transform: rotate(90deg);
  transition: transform var(--transition-base);
  transition: background-color var(--transition-base);
}
.view-slayder .slick-next.slick-arrow::before,
.view-slayder .slick-prev.slick-arrow::before {
  content: '';
  width: 9px;
  height: 15px;
}
.view-slayder .slick-next.slick-arrow {
  transform: rotate(-90deg);
}
@media screen and (max-width: 991px) {
  .view-slayder .slick-next.slick-arrow {
    transform: rotate(-90deg);
  }
}
.view-slayder .slick-next.slick-arrow::before {
  background-image: url('/sites/all/themes/vesta_theme/image/arrow-next.svg');
}
@media screen and (max-width: 991px) {
  .view-slayder .slick-prev.slick-arrow {
    transform: rotate(90deg);
  }
}
.view-slayder .slick-prev.slick-arrow::before {
  background-image: url('/sites/all/themes/vesta_theme/image/arrow-prev.svg');
}
.view-slayder .slick-prev.slick-arrow {
  left: 24px;
}
@media screen and (max-width: 767px) {
  .view-slayder .slick-prev.slick-arrow {
    left: 15px;
  }
}
.view-slayder .slick-next.slick-arrow {
  right: 24px;
}
@media screen and (max-width: 767px) {
  .view-slayder .slick-next.slick-arrow {
    right: 15px;
  }
}
.view-slayder .decor-slide {
  position: absolute;
}
.socials-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}
.socials-contacts__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.socials-contacts__item img {
  transition: transform var(--transition-base);
}
.socials-contacts__item:hover img {
  transform: scale(1.05);
}
.socials {
  position: absolute;
  z-index: 1;
  top: 6px;
}
.socials__item img {
  transition: transform var(--transition-base);
}
@media screen and (max-width: 767px) {
  .socials__item img {
    width: 36px;
  }
}
.socials__item:hover img {
  transform: scale(1.05);
}
.socials__inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .socials__inner {
    gap: 10px;
  }
}
.view-preimushchestva .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
@media screen and (max-width: 991px) {
  .view-preimushchestva .view-content {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .view-preimushchestva .view-content {
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}
.view-preimushchestva .node--type-preimushchestvo {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .view-preimushchestva .node--type-preimushchestvo {
    gap: 15px;
  }
}
.view-preimushchestva .field--name-field-ikonka img {
  max-width: 70px;
}
.view-preimushchestva .field--name-body {
  max-width: 241px;
}
.view-preimushchestva .field--name-body p {
  margin-bottom: 0;
}
.view-catalog.view-display-id-block_front .view-header,
.view-catalog.view-display-id-page .view-header {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .view-catalog.view-display-id-block_front .view-header,
  .view-catalog.view-display-id-page .view-header {
    margin-bottom: 30px;
  }
}
.view-catalog.view-display-id-block_front .view-footer,
.view-catalog.view-display-id-page .view-footer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.view-catalog.view-display-id-block_front .view-content,
.view-catalog.view-display-id-page .view-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .view-catalog.view-display-id-block_front .view-content,
  .view-catalog.view-display-id-page .view-content {
    gap: 10px;
  }
}
.view-catalog.view-display-id-block_front .field--name-field-catalog-image,
.view-catalog.view-display-id-page .field--name-field-catalog-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.view-catalog.view-display-id-block_front .field--name-field-catalog-image img,
.view-catalog.view-display-id-page .field--name-field-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.view-catalog.view-display-id-block_front .taxonomy-term--type-catalog,
.view-catalog.view-display-id-page .taxonomy-term--type-catalog {
  padding: 20px;
  position: relative;
  min-height: 170px;
  border-radius: 4px;
  overflow: hidden;
}
.view-catalog.view-display-id-block_front .field--name-taxonomy-term-title,
.view-catalog.view-display-id-page .field--name-taxonomy-term-title {
  position: relative;
  z-index: 2;
}
.view-catalog.view-display-id-block_front .field--name-taxonomy-term-title h3,
.view-catalog.view-display-id-page .field--name-taxonomy-term-title h3 {
  text-align: center;
  margin-bottom: 5px;
}
.view-catalog.view-display-id-block_front .field--name-taxonomy-term-title a,
.view-catalog.view-display-id-page .field--name-taxonomy-term-title a {
  font-weight: 700;
  font-size: var(--font-size-m);
  color: var(--bs-white);
  text-decoration: none;
}
.view-catalog.view-display-id-block_front .field--name-description,
.view-catalog.view-display-id-page .field--name-description {
  position: relative;
  z-index: 2;
}
.view-catalog.view-display-id-block_front .field--name-description p,
.view-catalog.view-display-id-page .field--name-description p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: var(--font-size-s);
  text-align: center;
  color: var(--bs-white);
}
.view-catalog.view-display-id-block_front .field--name-taxonomy-term-link,
.view-catalog.view-display-id-page .field--name-taxonomy-term-link {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}
.view-catalog.view-display-id-block_front .field--name-taxonomy-term-link a,
.view-catalog.view-display-id-page .field--name-taxonomy-term-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  border-radius: 4px;
  padding: 12px 18px;
  width: 330px;
  height: 40px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: var(--bs-white);
  font-weight: 700;
  text-decoration: none;
  font-size: var(--font-size-sm);
  letter-spacing: -0.03em;
  color: var(--bs-text);
  transition: background-color var(--transition-base);
}
.view-catalog.view-display-id-block_front .field--name-taxonomy-term-link a:hover,
.view-catalog.view-display-id-page .field--name-taxonomy-term-link a:hover {
  background-color: var(--bs-white-hover);
}
.view-akcii-i-specialnye-predlozheniya .view-header {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .view-akcii-i-specialnye-predlozheniya .view-header {
    margin-bottom: 30px;
  }
}
.view-akcii-i-specialnye-predlozheniya .view-footer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.view-akcii-i-specialnye-predlozheniya .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .view-akcii-i-specialnye-predlozheniya .view-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 374px) {
  .view-akcii-i-specialnye-predlozheniya .view-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.view-akcii-i-specialnye-predlozheniya .node--type-specialnoe-predlozhenie {
  position: relative;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 4px;
  border: 1.5px solid var(--bs-primary);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.view-akcii-i-specialnye-predlozheniya .blazy--field-izobrazhenie {
  height: 270px;
  margin-left: -1px;
  margin-right: -1px;
  margin-top: -1px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .view-akcii-i-specialnye-predlozheniya .blazy--field-izobrazhenie {
    height: 165px;
  }
}
.view-akcii-i-specialnye-predlozheniya .blazy--field-izobrazhenie .media--image {
  height: 100%;
}
.view-akcii-i-specialnye-predlozheniya .blazy--field-izobrazhenie a {
  height: 100%;
}
.view-akcii-i-specialnye-predlozheniya .blazy--field-izobrazhenie img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  transition: transform var(--transition-base);
}
.view-akcii-i-specialnye-predlozheniya .blazy--field-izobrazhenie:hover img {
  transform: scale(1.1);
}
.view-akcii-i-specialnye-predlozheniya .special-offers-wrapper {
  padding: 20px;
}
@media screen and (max-width: 991px) {
  .view-akcii-i-specialnye-predlozheniya .special-offers-wrapper {
    padding: 10px;
  }
}
.view-akcii-i-specialnye-predlozheniya .field--name-node-title {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .view-akcii-i-specialnye-predlozheniya .field--name-node-title {
    margin-bottom: 20px;
  }
}
.view-akcii-i-specialnye-predlozheniya .field--name-node-title h3 {
  margin-bottom: 0;
  font-weight: 500;
  font-size: var(--font-size-base);
  line-height: 133%;
}
@media screen and (max-width: 576px) {
  .view-akcii-i-specialnye-predlozheniya .field--name-node-title h3 {
    font-size: var(--font-size-s);
  }
}
.view-akcii-i-specialnye-predlozheniya .field--name-body {
  margin-bottom: 20px;
  max-width: 228px;
}
@media screen and (max-width: 576px) {
  .view-akcii-i-specialnye-predlozheniya .field--name-body {
    display: none;
  }
}
.view-akcii-i-specialnye-predlozheniya .field--name-body p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: var(--font-size-s);
  line-height: 125%;
  color: var(--bs-secondary);
}
.view-akcii-i-specialnye-predlozheniya .field--name-field-akciya {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 20px;
  top: -10px;
  z-index: 2;
  border-radius: 4px;
  padding: 0px 10px;
  width: 68px;
  height: 28px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: #cf6666;
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: -0.03em;
  color: var(--bs-white);
}
@media screen and (max-width: 576px) {
  .view-akcii-i-specialnye-predlozheniya .field--name-field-akciya {
    font-size: var(--font-size-s);
  }
}
.node--type-specialnoe-predlozhenie .photoswipe-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .node--type-specialnoe-predlozhenie .photoswipe-gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .node--type-specialnoe-predlozhenie .photoswipe-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .node--type-specialnoe-predlozhenie .photoswipe-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.node--type-specialnoe-predlozhenie .photoswipe-gallery .field__item {
  border-radius: 4px;
  overflow: hidden;
}
.node--type-specialnoe-predlozhenie .photoswipe-gallery .field__item a {
  height: 170px;
  display: block;
  position: relative;
}
.node--type-specialnoe-predlozhenie .photoswipe-gallery .field__item a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: background-color var(--transition-base);
}
.node--type-specialnoe-predlozhenie .photoswipe-gallery .field__item a::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-image: url('/sites/all/themes/vesta_theme/image/cursor.svg');
  background-size: 32px;
  transition: background-color var(--transition-base);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.node--type-specialnoe-predlozhenie .photoswipe-gallery .field__item:hover a::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.node--type-specialnoe-predlozhenie .photoswipe-gallery .field__item:hover a::after {
  opacity: 1;
}
.node--type-specialnoe-predlozhenie .photoswipe-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
@media screen and (max-width: 991px) {
  .block-views-blockakcii-i-specialnye-predlozheniya-block-1 .view-content .views-row:nth-child(n+3) {
    display: none;
  }
}
.view-tovary .view-header {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .view-tovary .view-header {
    margin-bottom: 30px;
  }
}
.view-tovary .view-footer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.view-tovary .view-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .view-tovary .view-content {
    gap: 15px;
  }
}
@media screen and (max-width: 991px) {
  .view-tovary .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 374px) {
  .view-tovary .view-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .block-views-blocktovary-block-2 .view-content .views-row:nth-child(n+3) {
    display: none;
  }
}
.product-item-teaser {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: var(--bs-white);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border var(--transition-base);
}
.product-item-teaser:has(.field__item a:hover) {
  border: 1px solid var(--bs-text);
}
.product-item-teaser__image {
  position: relative;
  overflow: hidden;
  margin-left: -1px;
  margin-right: -1px;
  margin-top: -1px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: 270px;
}
.product-item-teaser__image .blazy--field-image-product-view,
.product-item-teaser__image a,
.product-item-teaser__image .media--image {
  height: 100%;
}
@media screen and (max-width: 374px) {
  .product-item-teaser__image {
    height: 270px;
  }
}
.product-item-teaser__image img {
  height: 100%;
  transition: transform var(--transition-base);
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .product-item-teaser__image img {
    width: 100%;
  }
}
.product-item-teaser__image:hover img {
  transform: scale(1.1);
}
.product-item-teaser__info {
  display: flex;
  flex-direction: column;
}
.product-item-teaser .attribute-widgets {
  display: none;
}
.product-item-teaser .form-item-purchased-entity-0-attributes-attribute-size {
  display: none;
}
.product-item-teaser .field--name-attribute-size {
  display: none;
}
.product-item-teaser__price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .product-item-teaser__price {
    margin-bottom: 5px;
  }
}
.product-item-teaser__price .field--name-price {
  font-weight: 700;
  font-size: var(--font-size-m);
  color: var(--bs-text);
}
@media screen and (max-width: 576px) {
  .product-item-teaser__price .field--name-price {
    font-size: var(--font-size-s);
  }
}
.product-item-teaser__price .field--name-price::after {
  content: ' ₽';
}
.product-item-teaser__price .field-name-list-price {
  text-decoration: line-through;
  color: var(--bs-gray-600);
}
.product-item-teaser__price .field-name-list-price::after {
  content: ' ₽';
}
.product-item-teaser__availability {
  font-weight: 600;
  font-size: var(--font-size-xs);
  color: var(--bs-secondary);
}
@media screen and (max-width: 576px) {
  .product-item-teaser__availability {
    font-size: 9px;
  }
}
.product-item-teaser__tags {
  top: -10px;
  left: 20px;
  position: absolute;
  z-index: 1;
}
.product-item-teaser__tags .field--name-field-metki-tovara {
  display: flex;
  gap: 5px;
}
.product-item-teaser__tags .field__item {
  font-size: var(--font-size-small);
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: var(--bs-accent);
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: -0.03em;
  color: var(--bs-white);
  text-decoration: none;
}
.product-item-teaser__tags .field__item.tag--promo {
  background: #cf6666;
}
.product-item-teaser__tags .field__item.tag--hit {
  background: var(--bs-accent);
}
.product-item-teaser .field--name-quantity {
  display: none;
}
.product-item-teaser .field--name-title {
  margin-bottom: 42px;
}
@media screen and (max-width: 576px) {
  .product-item-teaser .field--name-title {
    margin-bottom: 20px;
  }
}
.product-item-teaser .field--name-title a {
  font-weight: 500;
  line-height: 133%;
  color: var(--bs-text);
  transition: color var(--transition-base);
  text-decoration: none;
}
@media screen and (max-width: 576px) {
  .product-item-teaser .field--name-title a {
    font-size: var(--font-size-s);
  }
}
.product-item-teaser .field--name-title a:hover {
  text-decoration: underline;
}
.product-item-teaser__buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.product-item-teaser__buttons .button--add-to-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  max-width: 100%;
  height: 40px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: #516775;
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: -0.03em;
  color: var(--bs-white);
  transition: background-color var(--transition-base);
  border: none;
  width: 105px;
}
@media screen and (max-width: 576px) {
  .product-item-teaser__buttons .button--add-to-cart {
    font-size: var(--font-size-s);
  }
}
.product-item-teaser__buttons .button--add-to-cart:hover,
.product-item-teaser__buttons .button--add-to-cart:focus,
.product-item-teaser__buttons .button--add-to-cart:active {
  background-color: var(--bs-primary-hover);
  color: var(--bs-white);
}
@media screen and (max-width: 576px) {
  .product-item-teaser__buttons .button--add-to-cart {
    width: 85px;
    padding: 0 10px;
  }
}
.product-item-teaser__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 10px 20px;
}
@media screen and (max-width: 576px) {
  .product-item-teaser__content {
    padding: 10px;
  }
}
.product-item-teaser__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-full .field--widget-commerce-product-variation-attributes,
.product-full .add-to-cart-message {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.product-full .btn-minus,
.product-full .btn-plus {
  display: none;
}
@media screen and (max-width: 991px) {
  .product-full {
    margin-top: 0;
  }
}
.product-full__variations {
  display: flex;
  gap: 10px;
}
.product-full__content {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .product-full__content {
    align-items: flex-start;
  }
}
@media screen and (max-width: 991px) {
  .product-full__content {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .product-full__content {
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
  }
}
.product-full__images {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 670px;
}
@media screen and (max-width: 1199px) {
  .product-full__images {
    height: auto;
  }
}
@media screen and (max-width: 991px) {
  .product-full__images {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .product-full__images {
    width: 100%;
    height: 250px;
  }
}
.product-full__images .field__item {
  width: 670px;
  height: 100%;
  background-color: var(--bs-white-secondary);
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .product-full__images .field__item {
    width: 450px;
  }
}
.product-full__images .field__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.product-full__images .field__item a:hover img {
  transform: scale(1.1);
}
.product-full__images .field__item img {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-base);
  object-fit: cover;
}
.product-full__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .product-full__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-full__cards p {
  margin-bottom: 0;
}
.product-full__info {
  width: 100%;
}
.product-full .title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: var(--font-size-l);
  line-height: 115%;
  color: var(--bs-primary);
  text-transform: unset;
}
.product-full__subtitle {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  color: #3f4f59;
  font-family: var(--bs-secondary-font-family);
}
.product-full .group-footer {
  margin-top: 40px;
}
.product-full__price {
  margin-top: 27px;
  display: flex;
  gap: 10px;
  font-weight: 700;
  font-size: 40px;
  color: var(--bs-accent);
}
.product-full__list {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 30px;
  width: 470px;
}
@media screen and (max-width: 991px) {
  .product-full__list {
    padding: 15px;
    max-width: 100%;
    width: 100%;
  }
}
.product-full .field--name-field-kratkoe-opisanie {
  margin-bottom: 20px;
}
.product-full .field--name-field-kratkoe-opisanie p {
  margin-bottom: 0;
}
.product-full .btn {
  margin-top: 20px;
}
.product-full .field--name-quantity label {
  display: none;
}
.product-full .input-counter {
  margin-bottom: 0;
}
.product-full .commerce-order-item-add-to-cart-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 1199px) {
  .product-full .commerce-order-item-add-to-cart-form {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 374px) {
  .product-full .commerce-order-item-add-to-cart-form {
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.product-full .form-submit {
  display: flex;
  gap: 10px;
  max-width: 100%;
  width: 350px;
  margin-top: 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: var(--bs-accent);
  border-radius: 4px;
  padding: 12px 18px;
  height: 60px;
  font-weight: 700;
  font-size: var(--font-size-sm);
  line-height: 200%;
  letter-spacing: -0.03em;
  color: var(--bs-white);
}
@media screen and (max-width: 767px) {
  .product-full .form-submit {
    max-width: 200px;
  }
}
.product-full .form-submit::after {
  content: '';
  background-image: url('/sites/all/themes/vesta_theme/image/cart-white.svg');
  background-size: 20px;
  width: 20px;
  height: 20px;
}
.product-full .form-submit:hover {
  background-color: var(--bs-accent-hover);
}
.product-full .form-submit:active {
  background-color: var(--bs-accent-hover);
}
.variation-card {
  width: 100%;
  position: relative;
  display: block;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border var(--transition-base);
}
.variation-card:hover {
  border-color: var(--bs-primary);
}
.variation-card.selected {
  border: 1.5px solid var(--bs-accent);
  pointer-events: none;
}
.variation-card.selected .variation-card__circle {
  border-color: var(--bs-accent);
}
.variation-card.selected .variation-card__title {
  color: var(--bs-accent);
}
.variation-card.variation-card-disabled {
  opacity: 0.8;
}
.variation-card__radio {
  display: none;
}
.variation-card__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--bs-text);
}
.variation-card__circle {
  display: block;
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-radius: 100%;
  border: 3.5px solid rgba(63, 79, 89, 0.5);
}
.variation-card__volume {
  margin-top: 6px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: var(--font-size-xs);
}
.variation-card__price {
  font-weight: 700;
  font-size: var(--font-size-m);
}
.product-characteristics-cart {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 16px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: var(--font-size-xs);
  text-align: center;
}
.product-characteristics-cart img {
  width: 28px;
}
.product-characteristics-cart__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.product-characteristics-cart__header span {
  color: var(--bs-accent);
}
.product-detail {
  display: flex;
  align-items: stretch;
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .product-detail {
    flex-direction: column;
  }
}
.product-detail__specifications {
  max-width: 470px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .product-detail__specifications {
    max-width: 100%;
  }
}
.product-detail__description {
  display: flex;
  flex-direction: column;
}
.product-list-characteristics {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 10px;
}
.product-list-characteristics:not(:last-child) {
  border-bottom: 1px solid rgba(81, 103, 117, 0.5);
}
.product-list-characteristics__title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: var(--font-size-s);
  color: var(--bs-accent);
}
.product-list-characteristics__text {
  text-align: left;
  color: var(--bs-text);
}
.product-list-characteristics__text p {
  margin-bottom: 0;
}
.product-advice {
  margin-top: auto;
  padding: 30px 30px 35px 30px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(81, 103, 117, 0.5);
  border-left: 10px solid #72da80;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
@media screen and (max-width: 767px) {
  .product-advice {
    padding: 20px;
  }
}
.product-advice__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: var(--font-size-m);
  color: var(--bs-white);
}
.product-advice__title span {
  color: #72da80;
}
.product-advice .field--name-field-sovet-ot-vatarton {
  font-style: italic;
  line-height: 133%;
  color: var(--bs-white);
}
.product-advice .field--name-field-sovet-ot-vatarton p {
  margin-bottom: 0;
}
.product-gallery {
  margin-bottom: 60px;
  margin-top: 60px;
}
.product-gallery .photoswipe-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .product-gallery .photoswipe-gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .product-gallery .photoswipe-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .product-gallery .photoswipe-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-gallery .photoswipe-gallery .field__item {
  border-radius: 4px;
  overflow: hidden;
}
.product-gallery .photoswipe-gallery .field__item a {
  height: 170px;
  display: block;
  position: relative;
}
.product-gallery .photoswipe-gallery .field__item a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: background-color var(--transition-base);
}
.product-gallery .photoswipe-gallery .field__item a::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-image: url('/sites/all/themes/vesta_theme/image/cursor.svg');
  background-size: 32px;
  transition: background-color var(--transition-base);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.product-gallery .photoswipe-gallery .field__item:hover a::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.product-gallery .photoswipe-gallery .field__item:hover a::after {
  opacity: 1;
}
.product-gallery .photoswipe-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.view-fotogalereya .view-header {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .view-fotogalereya .view-header {
    margin-bottom: 30px;
  }
}
.view-fotogalereya .view-footer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.view-fotogalereya .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-left: 0;
  list-style: none;
}
@media screen and (max-width: 991px) {
  .view-fotogalereya .view-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.view-fotogalereya .blazy--field-prevyu--teaser {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.view-fotogalereya .blazy--field-prevyu--teaser .media--image,
.view-fotogalereya .blazy--field-prevyu--teaser a {
  height: 100%;
}
.view-fotogalereya .blazy--field-prevyu--teaser img {
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.view-fotogalereya .node--type-fotogalereya {
  padding: 20px;
  height: 370px;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .view-fotogalereya .node--type-fotogalereya {
    padding: 10px;
  }
}
@media screen and (max-width: 576px) {
  .view-fotogalereya .node--type-fotogalereya {
    height: 175px;
  }
}
@media screen and (max-width: 991px) {
  .view-fotogalereya .node--type-fotogalereya img {
    width: 100%;
  }
}
.view-fotogalereya .node--type-fotogalereya:hover img {
  transform: scale(1.1);
}
.view-fotogalereya .field--name-node-title {
  position: relative;
  z-index: 2;
}
.view-fotogalereya .field--name-node-title h3 {
  margin-bottom: 0;
}
.view-fotogalereya .field--name-node-title a {
  font-weight: 700;
  font-size: var(--font-size-m);
  color: var(--bs-white);
  text-decoration: none;
  transition: color var(--transition-base);
}
@media screen and (max-width: 767px) {
  .view-fotogalereya .field--name-node-title a {
    font-size: var(--font-size-base);
  }
}
.view-fotogalereya .field--name-node-title a:hover {
  color: var(--bs-white-hover);
}
.view-fotogalereya .field--name-node-link a {
  font-weight: 600;
  color: var(--bs-dark);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  transition: color var(--transition-base);
}
.view-fotogalereya .field--name-node-link a:hover {
  color: var(--bs-dark-hover);
}
@media screen and (max-width: 991px) {
  .view-id-fotogalereya.view-display-id-block_1 .view-content .views-row:nth-child(n+3) {
    display: none;
  }
}
.node--type-fotogalereya.node--view-mode-full .photoswipe-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .node--type-fotogalereya.node--view-mode-full .photoswipe-gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .node--type-fotogalereya.node--view-mode-full .photoswipe-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .node--type-fotogalereya.node--view-mode-full .photoswipe-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.node--type-fotogalereya.node--view-mode-full .photoswipe-gallery .field__item {
  border-radius: 4px;
  overflow: hidden;
}
.node--type-fotogalereya.node--view-mode-full .photoswipe-gallery .field__item a {
  display: block;
  position: relative;
  height: 170px;
}
.node--type-fotogalereya.node--view-mode-full .photoswipe-gallery .field__item a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: background-color var(--transition-base);
}
.node--type-fotogalereya.node--view-mode-full .photoswipe-gallery .field__item a::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-image: url('/sites/all/themes/vesta_theme/image/cursor.svg');
  background-size: 32px;
  transition: background-color var(--transition-base);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.node--type-fotogalereya.node--view-mode-full .photoswipe-gallery .field__item:hover a::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.node--type-fotogalereya.node--view-mode-full .photoswipe-gallery .field__item:hover a::after {
  opacity: 1;
}
.node--type-fotogalereya.node--view-mode-full .photoswipe-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}
.location-section {
  margin-top: 40px;
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 516px;
  background-image: url('/sites/all/themes/vesta_theme/image/location-section-bg.jpg');
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .location-section {
    margin-top: 30px;
    margin-bottom: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.location-section .title {
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .location-section .title {
    margin-bottom: 30px;
  }
}
.location-section__content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .location-section__content {
    flex-direction: column;
    gap: 15px;
  }
}
.location-section__row {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .location-section__row {
    width: 100%;
  }
}
.location-section .field--name-body {
  border-radius: 4px;
  overflow: hidden;
}
.location-section__address {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 18px;
  color: var(--bs-white);
}
@media screen and (max-width: 767px) {
  .location-section__address {
    margin-top: 15px;
  }
}
.view-voprosy-i-otvety .view-header {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .view-voprosy-i-otvety .view-header {
    margin-bottom: 30px;
  }
}
.view-voprosy-i-otvety .view-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.view-voprosy-i-otvety .faq-item {
  cursor: pointer;
  border-radius: 4px;
  padding: 25px 20px;
  background-color: var(--bs-white);
}
@media screen and (max-width: 767px) {
  .view-voprosy-i-otvety .faq-item {
    padding: 25px 15px;
  }
}
.view-voprosy-i-otvety .faq-item .faq-question-icon-close {
  display: none;
}
.view-voprosy-i-otvety .faq-item.is-open .faq-question-icon-open {
  display: none;
}
.view-voprosy-i-otvety .faq-item.is-open .faq-question-icon-close {
  display: block;
}
.view-voprosy-i-otvety .faq-item.is-open .faq-question-icon-close {
  display: inline-block;
}
.view-voprosy-i-otvety .field--name-title {
  font-weight: 600;
}
.view-voprosy-i-otvety .faq-question {
  padding-right: 30px;
}
.view-voprosy-i-otvety .faq-question__icon {
  position: absolute;
  right: 20px;
  top: 30px;
}
.view-voprosy-i-otvety .faq-answer {
  margin-top: 10px;
  max-width: 1040px;
}
@media screen and (max-width: 576px) {
  .view-voprosy-i-otvety .faq-answer p {
    font-size: 16px;
  }
}
.view-voprosy-i-otvety .field--name-body p {
  margin-bottom: 0;
}
.block-content--type-blok-s-obratnoy-svyazyu {
  position: relative;
  padding-top: 60px;
  padding-bottom: 70px;
  min-height: 592px;
}
@media screen and (max-width: 767px) {
  .block-content--type-blok-s-obratnoy-svyazyu {
    padding-top: 40px;
    page-break-inside: 40px;
  }
}
.block-content--type-blok-s-obratnoy-svyazyu .field--name-block-description {
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .block-content--type-blok-s-obratnoy-svyazyu .field--name-block-description {
    margin-bottom: 30px;
  }
}
.block-content--type-blok-s-obratnoy-svyazyu .field--name-block-description h2 {
  text-align: center;
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-flexbox {
  display: flex;
  gap: 20px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .block-content--type-blok-s-obratnoy-svyazyu .webform-flexbox {
    gap: 10px;
  }
}
@media screen and (max-width: 576px) {
  .block-content--type-blok-s-obratnoy-svyazyu .webform-flexbox {
    gap: 0;
    flex-direction: column;
  }
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-flex--container {
  margin: 0;
}
.block-content--type-blok-s-obratnoy-svyazyu .field--name-body {
  margin-bottom: 32px;
  max-width: 916px;
  margin-left: auto;
  margin-right: auto;
}
.block-content--type-blok-s-obratnoy-svyazyu .field--name-body p {
  margin-bottom: 0;
  font-weight: 500;
  text-align: center;
  color: var(--bs-white);
}
.block-content--type-blok-s-obratnoy-svyazyu .field--name-field-fonovoe-izobrazhenie {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.block-content--type-blok-s-obratnoy-svyazyu .field--name-field-fonovoe-izobrazhenie .media--image {
  height: 100%;
}
.block-content--type-blok-s-obratnoy-svyazyu .field--name-field-fonovoe-izobrazhenie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-content--type-blok-s-obratnoy-svyazyu .form-item {
  margin-top: 20px;
  width: 100%;
}
.block-content--type-blok-s-obratnoy-svyazyu .form-item .form-item--error-message {
  margin-left: auto;
  margin-right: auto;
  color: var(--bs-white);
  font-size: var(--font-size-s);
  text-align: center;
}
.block-content--type-blok-s-obratnoy-svyazyu .form-control {
  width: 100%;
  padding: 12px 20px;
  height: 40px;
  border-radius: 4px;
  margin: 0;
  font-weight: 400;
  font-size: var(--font-size-body-xl);
  color: var(--bs-secondary);
  resize: none;
  overflow: hidden;
  font-weight: 600;
  font-size: var(--font-size-s);
  color: var(--bs-text);
}
@media screen and (max-width: 576px) {
  .block-content--type-blok-s-obratnoy-svyazyu .form-control {
    height: 50px;
    padding: 12px 15px;
  }
}
.block-content--type-blok-s-obratnoy-svyazyu .form-textarea-wrapper .form-control {
  padding-top: 10px;
  resize: vertical;
  min-height: 80px;
  max-height: 200px;
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form {
  max-width: 570px;
  margin: 0 auto;
}
.block-content--type-blok-s-obratnoy-svyazyu .form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 600px;
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form {
  display: flex;
  flex-direction: column;
  color: var(--bs-white);
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form .form-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form .webform-element-description {
  font-weight: 600;
  font-size: var(--font-size-s);
  color: var(--bs-white);
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form .webform-element-description a {
  transition: color var(--transition-base);
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form .webform-element-description a:hover {
  color: var(--bs-white-hover);
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form .opytnyh-speciali-form__label {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form .opytnyh-speciali-form__customcheckbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border: 2px solid var(--bs-white);
  border-radius: 4px;
  background-color: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form .opytnyh-speciali-form__customcheckbox {
    width: 20px;
    height: 20px;
  }
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form .opytnyh-speciali-form__customcheckbox::before {
  content: '';
  position: relative;
  right: 1px;
  top: -1px;
  width: 12px;
  height: 12px;
  opacity: 0;
  background-image: url('/sites/all/themes/vesta_theme/image/check-form.svg');
  background-repeat: no-repeat;
  background-size: 12px;
  transition: opacity var(--transition-base);
}
.block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form .form-checkbox:checked + .opytnyh-speciali-form__customcheckbox::before {
  opacity: 1;
}
.block-content--type-blok-s-obratnoy-svyazyu .form-submit {
  padding: 12px 18px;
  max-width: 570px;
  width: 100%;
  height: 60px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: var(--bs-accent);
  font-weight: 700;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: -0.03em;
  color: var(--bs-white);
  transition: background-color var(--transition-base);
}
.block-content--type-blok-s-obratnoy-svyazyu .form-submit:hover {
  background-color: var(--bs-accent-hover);
}
.block-content--type-blok-s-obratnoy-svyazyu .form-submit:active {
  background-color: var(--bs-accent-hover);
}
.footer {
  padding-top: 30px;
  padding-bottom: 20px;
  background-color: #dddddd;
}
.footer .logo a {
  display: block;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 90px;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__navigation {
  display: flex;
  justify-content: space-between;
  max-width: 407px;
  width: 407px;
}
@media screen and (max-width: 767px) {
  .footer__navigation {
    display: none;
  }
}
.footer__bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 576px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__bottom a,
.footer__bottom p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: var(--font-size-s);
  color: var(--bs-text);
  text-decoration: none;
  opacity: 0.8;
}
.footer__bottom a {
  transition: opacity var(--transition-base);
}
.footer__bottom a:hover {
  opacity: 1;
}
.nav-footer .dropdown-menu {
  display: none !important;
}
.nav-footer .dropdown-toggle::after {
  content: '';
  display: none;
}
.nav-footer .nav {
  display: flex;
  flex-direction: column;
}
.nav-footer a {
  display: block;
  font-weight: 700;
  font-size: var(--font-size-sm);
  letter-spacing: -0.03em;
  color: var(--bs-text);
  padding: 5px 0;
  text-decoration: none;
  transition: color var(--transition-base);
}
.nav-footer a:hover {
  color: var(--bs-text-hover);
}
.nav-footer a:focus {
  color: var(--bs-text-hover);
}
.footer-contacts {
  max-width: 224px;
}
.footer-contacts__socials {
  display: flex;
  gap: 4px;
}
.footer-contacts__socials a {
  text-decoration: none;
}
.footer-contacts__socials a img {
  transition: transform var(--transition-base);
}
.footer-contacts__socials a:hover img {
  transform: scale(1.05);
}
.footer-contacts__row {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.footer-contacts__row a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  line-height: 154%;
  letter-spacing: -0.03em;
  color: var(--bs-text);
  transition: color var(--transition-base);
}
.footer-contacts__row a:hover {
  color: var(--bs-text-hover);
}
.footer-contacts__row--phone {
  margin-bottom: 35px;
  margin-top: 35px;
}
@media screen and (max-width: 576px) {
  .footer-contacts__row--phone {
    margin-top: 15px;
    margin-bottom: 20px;
  }
}
.footer-contacts p {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 13px;
  line-height: 154%;
  letter-spacing: -0.03em;
}
.mobile-fixed-menu {
  display: none;
  justify-content: center;
  padding-bottom: 14px;
  padding-top: 14px;
  align-items: flex-end;
  gap: 23px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68px;
  z-index: 10;
  background: linear-gradient(to bottom, #61be6e 0%, #4a9655 100%);
  z-index: 1050;
}
@media screen and (max-width: 767px) {
  .mobile-fixed-menu {
    display: flex;
  }
}
.mobile-fixed-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: var(--font-size-s);
  letter-spacing: -0.03em;
  color: var(--bs-white);
  transition: color var(--transition-base);
  text-decoration: none;
}
@media screen and (max-width: 374px) {
  .mobile-fixed-menu a {
    font-size: var(--font-size-xs);
  }
}
.mobile-fixed-menu a img {
  max-width: 24px;
}
.mobile-fixed-menu a:hover {
  color: var(--bs-white-hover);
}
.contacts__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  .contacts__header {
    flex-direction: column;
  }
}
.contacts__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 991px) {
  .contacts__content {
    gap: 20px;
  }
}
.contacts__maps {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .contacts__maps {
    flex-direction: column;
    gap: 15px;
  }
}
.contacts-item__title {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: var(--font-size-base);
}
.contacts-item--address {
  max-width: 264px;
}
.contacts-item a {
  text-decoration: none;
  transition: color var(--transition-base), background-color var(--transition-base);
}
.contacts-item a:hover {
  color: var(--bs-text-hover);
}
.contacts-item p {
  margin: 0;
}
.field--name-field-logotip {
  max-width: 200px;
}
