:root {
  --bs-white: #fff;
  --bs-white-hover: #f7f7f7;
  --bs-white-opacity: rgba(255, 255, 255, 0.5);
  --bs-secondary: #0f3e8b;
  --bs-secondary-hover: #144eab;
  --bs-secondary-dark: #0f2f61;
  --bs-primary: #e0563f;
  --bs-primary-hover: #c74832;
  --bs-primary-loader: #ff9785;
  --bs-dark: #000;
  --bs-dark-opacity: rgba(0, 0, 0, 0.5);
  --bs-link-color: var(--bs-secondary);
  --font-body: 'InterTight';
  --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);
  --font-size-xl: 40px;
  --font-size-l: 30px;
  --font-size-m: 20px;
  --font-size-base: 14px;
  --font-size-sm: 15px;
  --font-size-xs: 12px;
  --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: 991px) {
  :root {
    --font-size-xl: 34px;
    --font-size-m: 18px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --font-size-xl: 28px;
  }
}
button {
  background: transparent;
  border: none;
  padding: 0;
}
img {
  max-width: 100%;
  max-height: auto;
}
@font-face {
  font-family: 'InterTight';
  src: url('/sites/all/themes/vesta_theme/font/InterTight-Regular.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/InterTight-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'InterTight';
  src: url('/sites/all/themes/vesta_theme/font/InterTight-Bold.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/InterTight-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'InterTight';
  src: url('/sites/all/themes/vesta_theme/font/InterTight-Black.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/InterTight-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'InterTight';
  src: url('/sites/all/themes/vesta_theme/font/InterTight-ExtraBold.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/InterTight-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
}
body {
  margin: 0;
  background: var(--bs-white);
  font-family: var(--bs-body-font-family);
  color: var(--bs-secondary-dark);
  font-size: var(--font-size-base);
  line-height: 1.2;
  overflow-x: hidden;
  font-weight: 400;
  position: relative;
  top: 0 !important;
  background-color: #efeeeb;
}
.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;
}
.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 {
  border-radius: var(--bs-border-radius);
}
.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-white);
  color: var(--bs-primary);
}
.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;
}
.wrapper {
  margin-bottom: 110px;
}
@media screen and (max-width: 991px) {
  .wrapper {
    margin-bottom: 60px;
  }
}
.breadcrumb {
  margin-bottom: 30px;
}
.breadcrumb .breadcrumb-item {
  color: var(--bs-gray-600);
}
.breadcrumb .breadcrumb-item a {
  color: var(--bs-secondary);
  transition: color var(--transition-base);
  text-decoration: none;
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--bs-primary);
}
.search-api-page-block-form-search button {
  height: 37px;
}
.logo__title,
.logo__subtitle {
  margin-bottom: 2px;
  font-weight: 900;
  text-transform: uppercase;
}
.logo__title {
  font-size: 23px;
}
@media screen and (max-width: 576px) {
  .logo__title {
    font-size: var(--font-size-m);
  }
}
.logo__subtitle {
  font-size: 10px;
}
.cart__title {
  margin: 0;
  color: var(--bs-white);
}
@media screen and (max-width: 576px) {
  .cart__title {
    display: none;
  }
}
.cart__info {
  position: relative;
}
.cart .cart-block--link__expand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 45px;
  gap: 18px;
  border-radius: 10px;
  background-color: var(--bs-secondary-dark);
  transition: background-color var(--transition-base);
}
@media screen and (max-width: 991px) {
  .cart .cart-block--link__expand {
    width: 190px;
  }
}
@media screen and (max-width: 576px) {
  .cart .cart-block--link__expand {
    width: 60px;
  }
}
.cart .cart-block--link__expand:hover {
  background-color: var(--bs-secondary-hover);
}
.cart .cart-block--summary__count {
  position: absolute;
  right: -12px;
  top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  background-color: var(--bs-white);
  font-size: 10px;
  color: var(--bs-white);
  background-color: var(--bs-primary);
}
.cart a {
  text-decoration: none;
}
.btn,
.btn-wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: max-content;
  height: 43px;
  padding: 6px 36px;
  font-weight: 700;
  color: var(--bs-white);
  border-radius: 10px;
  border: none;
  transition: color var(--transition-base), background-color var(--transition-base), border var(--transition-base);
  background-color: var(--bs-primary);
  font-size: var(--font-size-base);
}
.btn:hover,
.btn-wrapper a:hover {
  background-color: var(--bs-primary-hover);
  color: var(--bs-white);
}
.title,
.block-title {
  margin-bottom: 0;
  font-weight: 900;
  font-size: var(--font-size-xl);
  letter-spacing: -0.03em;
  color: var(--bs-secondary-dark);
}
.input-counter {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  border: 1px solid var(--bs-primary);
  border-radius: 12px;
  padding: 5px;
  gap: 5px;
}
.input-counter a {
  cursor: pointer;
  font-size: 24px;
  color: var(--bs-primary);
}
.input-counter a svg {
  width: 20px;
  height: 20px;
  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-body-l);
  border: none;
  color: var(--bs-primary);
  width: 30px;
  text-align: center;
  background: transparent;
  pointer-events: none;
}
.input-counter input::-webkit-outer-spin-button,
.input-counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#block-vesta-theme-page-title {
  margin-bottom: 30px;
}
#block-vesta-theme-page-title h1 {
  font-weight: 900;
  font-size: var(--font-size-xl);
  letter-spacing: -0.03em;
  color: var(--bs-secondary-dark);
}
.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary-hover);
  border: none;
}
.nav-link {
  transition: color var(--transition-base);
}
.nav-link:hover {
  color: var(--bs-primary);
}
.nav-link:focus {
  color: var(--bs-primary);
}
.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 form {
  display: flex;
}
.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 {
  border-radius: var(--bs-border-radius);
}
.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);
}
#scrollToTop {
  position: fixed;
  right: 50px;
  bottom: 50px;
  transition: color var(--transition-base);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: var(--bs-white);
  border-radius: 10px;
  transition: background-color var(--transition-base);
  z-index: 10;
}
@media (max-width: 1738px) {
  #scrollToTop {
    right: 111px;
  }
}
@media (max-width: 1440px) {
  #scrollToTop {
    right: 20px;
  }
}
@media screen and (max-width: 991px) {
  #scrollToTop {
    width: 35px;
    height: 35px;
  }
}
#scrollToTop img {
  width: 20px;
}
@media screen and (max-width: 991px) {
  #scrollToTop img {
    width: 18px;
  }
}
.social-field:hover,
#scrollToTop:hover {
  transform: scale(1.05);
}
.social-field:active,
#scrollToTop:active {
  transform: scale(0.9);
  transition-duration: 0s;
}
/* ### 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 .table-wrapper {
  overflow-x: auto;
}
/* toolbar */
.toolbar .toolbar-tab .toolbar-icon {
  padding: 0.75em 1.5em 0.75em 2.5em;
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: var(--bs-primary-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);
}
.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);
}
.layout-region-checkout-main .checkout-pane > div {
  margin-bottom: 20px;
}
.layout-region-checkout-main .fieldgroup.form-composite {
  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 a {
  color: var(--bs-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}
.layout-region-checkout-main a:hover {
  color: var(--bs-secondary-hover);
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--bs-primary);
}
.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-secondary-hover);
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--bs-secondary);
}
.skiptranslate {
  display: none !important;
}
.view-commerce-cart-form .form-actions {
  margin-top: 20px;
}
.view-commerce-cart-form .media--image {
  width: 100px;
  height: 100px;
}
.view-commerce-cart-form .views-field-title a {
  color: var(--bs-primary);
  transition: color var(--transition-base);
}
.view-commerce-cart-form .views-field-title a:hover {
  color: var(--bs-primary-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-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);
}
.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);
}
fieldset[data-drupal-selector='edit-payment-information-payment-method'] input[type='radio'] {
  accent-color: #e0563f;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
fieldset[data-drupal-selector='edit-payment-information-payment-method'] .form-type-radio {
  display: flex;
  align-items: center;
  gap: 8px;
}
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;
}
.header {
  padding-top: 20px;
  margin-bottom: 20px;
}
.header .logo {
  text-decoration: none;
}
.header .logo p {
  color: var(--bs-secondary-dark);
}
.header__top {
  margin-bottom: 20px;
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__cart {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.header .nav {
  margin-left: 30px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1199px) {
  .header .nav {
    margin-bottom: 20px;
  }
}
.header .nav .dropdown-menu {
  display: none !important;
}
.header .nav .dropdown-toggle::after {
  content: '';
  display: none;
}
.header .nav .nav-item:first-child .nav-link {
  position: relative;
}
.header .nav .nav-item:first-child .nav-link::before {
  content: '';
  position: absolute;
  left: -15px;
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('/sites/all/themes/vesta_theme/image/catalog.svg');
  background-size: cover;
}
.header .nav .nav-link {
  padding: 10px;
  color: var(--bs-secondary-dark);
  transition: color var(--transition-base);
}
.header .nav .nav-link:hover {
  color: var(--bs-secondary-hover);
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__socials a {
  transition: transform var(--transition-base);
  background-color: var(--bs-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  width: 40px;
  height: 40px;
}
.header__socials a:hover {
  transform: translateY(-1px);
}
.header__socials a img {
  width: 24px;
}
.header__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  width: 170px;
  height: 45px;
  padding: 12px 10px;
  background: var(--bs-white);
  border-radius: 10px;
  text-decoration: none;
  font-size: var(--font-size-xs);
  color: var(--bs-dark);
  transition: background-color var(--transition-base);
}
.header__phone:hover {
  background-color: var(--bs-white-hover);
}
.header__categories {
  margin-bottom: 20px;
}
.header__categories .view-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1199px) {
  .header__categories .view-content {
    flex-wrap: wrap;
  }
}
.header__categories a {
  display: block;
  color: var(--bs-white);
  text-decoration: none;
  padding: 10px 20px;
  background-color: var(--bs-secondary);
  border-radius: 8px;
  transition: background-color var(--transition-base);
  text-wrap: nowrap;
}
.header__categories a:hover {
  background-color: var(--bs-secondary-hover);
}
.header__search {
  max-width: 100%;
  position: relative;
}
.header__search input {
  height: 45px;
  border-radius: 10px;
  padding-left: 70px;
  padding-right: 20px;
  border: none;
  font-size: 16px;
  color: var(--bs-dark);
  border: 1px solid transparent;
}
@media screen and (max-width: 767px) {
  .header__search input {
    padding-left: 50px;
  }
}
.header__search input:hover {
  border: 1px solid var(--bs-secondary);
}
.header__search input::placeholder {
  color: #828282;
}
.header__search input::placeholder {
  color: #878787;
}
.header__search input:focus {
  box-shadow: none;
  border: 1px solid var(--bs-secondary);
}
.header__search .search-button-icon {
  position: absolute;
  left: 30px;
  top: 13px;
}
@media screen and (max-width: 767px) {
  .header__search .search-button-icon {
    left: 15px;
  }
}
.header__search .form-item {
  width: 100%;
  position: relative;
}
.header__search .search-form__submit {
  position: absolute;
  left: 20px;
  width: 20px;
  height: 20px;
  font-size: 0;
  background-color: transparent;
  border: none;
  padding: 0;
  height: 100%;
}
.header__search .search-form__submit:focus,
.header__search .search-form__submit:active {
  background-color: transparent;
  box-shadow: none;
}
.header__search .search-form__submit::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url('/sites/all/themes/vesta_theme/image/search.svg');
  background-size: 20px;
}
.mobile-menu-wrapper {
  background-color: var(--bs-white);
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-menu-wrapper__top {
  position: relative;
  border-bottom: 1px solid var(--bs-secondary);
  text-align: center;
  width: 100%;
  padding: 10px;
  font-size: var(--font-size-body);
}
.mobile-menu-wrapper button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.mobile-menu-wrapper button:focus {
  box-shadow: unset;
}
.mobile-menu-wrapper .search-api-page-block-form-search {
  margin-top: 10px;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.mobile-menu-wrapper .search-api-page-block-form-search .form-actions .btn {
  height: 100%;
  font-size: 16px;
  top: 19px;
  border-radius: 0;
  width: 100px;
  padding: 3px 10px;
  border-radius: 6px;
  transition: background-color var(--transition-base);
}
.mobile-menu-wrapper .search-api-page-block-form-search .form-actions .btn:hover {
  background-color: var(--bs-primary-hover);
}
.mobile-menu-wrapper .search-api-page-block-form-search .form-search {
  padding-right: 120px;
}
.mobile-menu-wrapper .search-api-page-block-form-search .form-search:focus {
  box-shadow: none;
  border: 1px solid var(--bs-secondary);
}
.mobile-nav {
  margin-top: 20px;
  margin-bottom: 40px;
  border-top: 1px solid var(--bs-secondary);
}
.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 .nav-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bs-secondary);
  font-size: var(--font-size-sm);
}
.mobile-nav .nav-link::after {
  display: none;
}
.mobile-nav#js-mobile-nav .dropdown-menu {
  display: none;
  padding-left: 15px;
  position: relative;
  top: auto;
  left: auto;
  border-radius: 0;
}
.mobile-nav#js-mobile-nav .dropdown-menu a {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: var(--font-size-sm);
}
.mobile-nav#js-mobile-nav .nav {
  flex-direction: column;
}
.mobile-nav#js-mobile-nav .nav li.dropdown {
  position: relative;
}
.view-slayder {
  border-radius: 15px;
  overflow: hidden;
}
.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: 429px;
  position: relative;
}
.view-slayder .node--type-slide::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background-image: url('/sites/all/themes/vesta_theme/image/intro-slider-decor.svg');
  width: 563px;
  height: 438px;
  background-position: center;
  z-index: 2;
}
@media screen and (max-width: 576px) {
  .view-slayder .node--type-slide::before {
    display: none;
  }
}
.view-slayder .content {
  text-align: left;
  color: var(--bs-white);
}
@media screen and (max-width: 767px) {
  .view-slayder .content {
    position: relative;
    bottom: 100px !important;
    left: 0 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.view-slayder .field--name-field-slide-title {
  margin-bottom: 30px;
  max-width: 500px;
  font-weight: 900;
  font-size: var(--font-size-xl);
  text-transform: uppercase;
  color: var(--bs-white);
}
.view-slayder .field--name-field-slide-title p {
  margin: 0;
}
@media screen and (max-width: 991px) {
  .view-slayder .field--name-field-slide-title {
    margin-bottom: 20px;
  }
}
.view-slayder .field--name-body {
  max-width: 511px;
  color: var(--bs-white);
}
.view-slayder .field--name-field-image {
  position: relative;
  height: 100%;
}
.view-slayder .field--name-field-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.view-slayder .field--name-field-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url('/sites/all/themes/vesta_theme/less/image.jpg');
  background-size: cover;
  background-position: center;
}
.view-slayder .field--name-node-link {
  display: flex;
  justify-content: center;
  margin-top: 90px;
}
.view-slayder .slick-next.slick-arrow,
.view-slayder .slick-prev.slick-arrow {
  transform: rotate(90deg);
  transition: transform var(--transition-base);
  width: 45px;
  height: 45px;
  background-color: var(--bs-white);
  border-radius: 10px;
  transition: background-color var(--transition-base);
  bottom: 50px;
}
.view-slayder .slick-next.slick-arrow:hover,
.view-slayder .slick-prev.slick-arrow:hover {
  background-color: var(--bs-white-hover);
}
.view-slayder .slick-next.slick-arrow::before,
.view-slayder .slick-prev.slick-arrow::before {
  content: '';
  width: 20px;
  height: 20px;
}
.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 {
  right: 130px;
}
.view-slayder .slick-next.slick-arrow {
  right: 60px;
}
.view-slayder .decor-slide {
  position: absolute;
}
.about {
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  right: 0;
  top: 38px;
  background-image: url('/sites/all/themes/vesta_theme/image/about-decor.svg');
  width: 579px;
  height: 803px;
  background-position: center;
}
@media screen and (max-width: 576px) {
  .about::before {
    display: none;
  }
}
.about__inner {
  display: flex;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__inner {
    flex-direction: column;
  }
}
.view-preimushchestva .field--name-field-nazvanie-preimushchestva {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 570px;
  height: 75px;
  font-weight: 800;
  font-size: var(--font-size-m);
  text-transform: uppercase;
  border: 2px dashed var(--bs-gray-600);
  border-radius: 15px;
  padding-left: 6px;
  padding-right: 6px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .view-preimushchestva .field--name-field-nazvanie-preimushchestva {
    width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .view-preimushchestva .field--name-field-nazvanie-preimushchestva {
    width: 320px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .view-preimushchestva .field--name-field-nazvanie-preimushchestva {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .view-preimushchestva .field--name-field-nazvanie-preimushchestva {
    font-size: 16px;
  }
}
.view-preimushchestva .view-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.block-content--type-o-nas {
  max-width: 570px;
}
@media screen and (max-width: 767px) {
  .block-content--type-o-nas {
    margin-left: auto;
    margin-right: auto;
  }
}
.block-content--type-o-nas .title {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .block-content--type-o-nas .title {
    text-align: center;
    margin-bottom: 20px;
  }
}
.block-content--type-o-nas .about-footer {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 576px) {
  .block-content--type-o-nas .about-footer {
    flex-direction: column;
    gap: 10px;
  }
}
.block-content--type-o-nas .about-footer div {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .block-content--type-o-nas .about-footer div {
    width: 100%;
  }
}
.block-content--type-o-nas .about-footer a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: max-content;
  height: 43px;
  padding: 6px 36px;
  font-weight: 700;
  color: var(--bs-white);
  border-radius: 10px;
  border: none;
  transition: color var(--transition-base), background-color var(--transition-base), border var(--transition-base);
  background-color: var(--bs-primary);
  font-size: var(--font-size-base);
  width: 100%;
  padding-left: 6px;
  padding-right: 6px;
}
.block-content--type-o-nas .about-footer a:hover {
  background-color: var(--bs-primary-hover);
  color: var(--bs-white);
}
.block-content--type-o-nas .about-footer .field--name-field-ssylka-na-dostavku-i-oplat a {
  background-color: transparent;
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
  transition: background-color var(--transition-base), color var(--transition-base);
}
.block-content--type-o-nas .about-footer .field--name-field-ssylka-na-dostavku-i-oplat a:hover {
  background-color: var(--bs-primary-hover);
  color: var(--bs-white);
}
.block-views-blockcatalog-block-front,
.view-display-id-page {
  margin-bottom: 40px;
}
.block-views-blockcatalog-block-front .view-header,
.view-display-id-page .view-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .block-views-blockcatalog-block-front .view-header,
  .view-display-id-page .view-header {
    margin-bottom: 30px;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .block-views-blockcatalog-block-front .view-header,
  .view-display-id-page .view-header {
    flex-direction: column;
    align-items: center;
  }
}
.block-views-blockcatalog-block-front .view-header .title,
.view-display-id-page .view-header .title {
  max-width: 530px;
}
@media screen and (max-width: 767px) {
  .block-views-blockcatalog-block-front .view-header .title,
  .view-display-id-page .view-header .title {
    text-align: center;
  }
}
.block-views-blockcatalog-block-front .view-header p,
.view-display-id-page .view-header p {
  max-width: 370px;
  margin-bottom: 0;
  font-size: var(--font-size-sm);
}
@media screen and (max-width: 767px) {
  .block-views-blockcatalog-block-front .view-header p,
  .view-display-id-page .view-header p {
    max-width: 500px;
    text-align: center;
  }
}
.block-views-blockcatalog-block-front .view-content,
.view-display-id-page .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .block-views-blockcatalog-block-front .view-content,
  .view-display-id-page .view-content {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .block-views-blockcatalog-block-front .view-content,
  .view-display-id-page .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .view-content,
  .view-display-id-page .view-content {
    gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .block-views-blockcatalog-block-front .view-content,
  .view-display-id-page .view-content {
    gap: 8px;
  }
}
.block-views-blockcatalog-block-front .view-content .catalog-banner,
.view-display-id-page .view-content .catalog-banner {
  grid-column: 2 / 4;
  grid-row: 3 / 5;
}
@media screen and (max-width: 1199px) {
  .block-views-blockcatalog-block-front .view-content .catalog-banner,
  .view-display-id-page .view-content .catalog-banner {
    display: none;
  }
}
.block-views-blockcatalog-block-front .views-row,
.view-display-id-page .views-row {
  overflow: hidden;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  background-color: var(--bs-white);
  height: 190px;
}
@media screen and (max-width: 767px) {
  .block-views-blockcatalog-block-front .views-row,
  .view-display-id-page .views-row {
    height: 150px;
    padding: 15px;
  }
}
.block-views-blockcatalog-block-front .views-row:nth-child(1) .field--name-field-catalog-image,
.view-display-id-page .views-row:nth-child(1) .field--name-field-catalog-image {
  right: -100px;
  top: -30px;
}
@media screen and (max-width: 1199px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(1) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(1) .field--name-field-catalog-image {
    right: -120px;
  }
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(1) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(1) .field--name-field-catalog-image {
    max-width: 200px;
    right: 0;
    top: 50px;
  }
}
.block-views-blockcatalog-block-front .views-row:nth-child(2) .field--name-field-catalog-image,
.view-display-id-page .views-row:nth-child(2) .field--name-field-catalog-image {
  right: -110px;
  top: -60px;
}
@media screen and (max-width: 1199px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(2) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(2) .field--name-field-catalog-image {
    right: -140px;
  }
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(2) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(2) .field--name-field-catalog-image {
    max-width: 200px;
    top: 60px;
    right: 0;
  }
}
.block-views-blockcatalog-block-front .views-row:nth-child(3) .field--name-field-catalog-image,
.view-display-id-page .views-row:nth-child(3) .field--name-field-catalog-image {
  right: -110px;
  top: -20px;
}
@media screen and (max-width: 1199px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(3) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(3) .field--name-field-catalog-image {
    right: -165px;
  }
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(3) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(3) .field--name-field-catalog-image {
    max-width: 200px;
    top: 77px;
    right: 0;
  }
}
.block-views-blockcatalog-block-front .views-row:nth-child(4) .field--name-field-catalog-image,
.view-display-id-page .views-row:nth-child(4) .field--name-field-catalog-image {
  right: -80px;
  top: -20px;
}
@media screen and (max-width: 1199px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(4) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(4) .field--name-field-catalog-image {
    right: -100px;
  }
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(4) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(4) .field--name-field-catalog-image {
    max-width: 200px;
    top: 77px;
    right: 0;
  }
}
.block-views-blockcatalog-block-front .views-row:nth-child(5) .field--name-field-catalog-image,
.view-display-id-page .views-row:nth-child(5) .field--name-field-catalog-image {
  right: -140px;
  top: -50px;
}
@media screen and (max-width: 1199px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(5) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(5) .field--name-field-catalog-image {
    right: -166px;
  }
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(5) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(5) .field--name-field-catalog-image {
    max-width: 200px;
    top: 77px;
    right: 0;
  }
}
.block-views-blockcatalog-block-front .views-row:nth-child(6) .field--name-field-catalog-image,
.view-display-id-page .views-row:nth-child(6) .field--name-field-catalog-image {
  right: -90px;
  top: -30px;
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(6) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(6) .field--name-field-catalog-image {
    max-width: 200px;
    top: 60px;
    right: 0;
  }
}
.block-views-blockcatalog-block-front .views-row:nth-child(7) .field--name-field-catalog-image,
.view-display-id-page .views-row:nth-child(7) .field--name-field-catalog-image {
  right: -90px;
  top: -30px;
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .views-row:nth-child(7) .field--name-field-catalog-image,
  .view-display-id-page .views-row:nth-child(7) .field--name-field-catalog-image {
    max-width: 200px;
    top: 40px;
    right: 0;
  }
}
.block-views-blockcatalog-block-front .view-footer,
.view-display-id-page .view-footer {
  margin-bottom: 20px;
}
.block-views-blockcatalog-block-front .catalog-banner,
.view-display-id-page .catalog-banner {
  position: relative;
  overflow: hidden;
  height: 190px;
  background-color: var(--bs-secondary-dark);
  border-radius: 10px;
  padding: 40px;
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .catalog-banner,
  .view-display-id-page .catalog-banner {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .block-views-blockcatalog-block-front .catalog-banner,
  .view-display-id-page .catalog-banner {
    padding: 20px;
  }
}
.block-views-blockcatalog-block-front .catalog-banner::before,
.view-display-id-page .catalog-banner::before {
  content: '';
  position: absolute;
  right: 1px;
  top: 0px;
  background-image: url('/sites/all/themes/vesta_theme/image/categories/decor.svg');
  width: 389px;
  height: 192px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .catalog-banner::before,
  .view-display-id-page .catalog-banner::before {
    top: 30px;
  }
}
.block-views-blockcatalog-block-front .catalog-banner__title,
.view-display-id-page .catalog-banner__title {
  margin-bottom: 20px;
  font-weight: 900;
  font-size: var(--font-size-l);
  text-transform: uppercase;
  color: var(--bs-white);
}
.block-views-blockcatalog-block-front .catalog-banner__content,
.view-display-id-page .catalog-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .catalog-banner__content,
  .view-display-id-page .catalog-banner__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}
.block-views-blockcatalog-block-front .catalog-banner__description,
.view-display-id-page .catalog-banner__description {
  margin-bottom: 0;
  max-width: 511px;
  width: 100%;
  color: var(--bs-white);
}
.block-views-blockcatalog-block-front .field--name-field-catalog-image,
.view-display-id-page .field--name-field-catalog-image {
  position: absolute;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .field--name-field-catalog-image img,
  .view-display-id-page .field--name-field-catalog-image img {
    max-width: 100%;
    height: auto;
  }
}
.block-views-blockcatalog-block-front .field--name-taxonomy-term-title,
.view-display-id-page .field--name-taxonomy-term-title {
  max-width: 170px;
  position: relative;
}
.block-views-blockcatalog-block-front .field--name-taxonomy-term-title h2,
.view-display-id-page .field--name-taxonomy-term-title h2 {
  font-size: var(--font-size-m);
}
@media screen and (max-width: 576px) {
  .block-views-blockcatalog-block-front .field--name-taxonomy-term-title h2,
  .view-display-id-page .field--name-taxonomy-term-title h2 {
    font-size: 14px;
  }
}
.block-views-blockcatalog-block-front .field--name-taxonomy-term-title a,
.view-display-id-page .field--name-taxonomy-term-title a {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--bs-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}
.block-views-blockcatalog-block-front .field--name-taxonomy-term-title a:hover,
.view-display-id-page .field--name-taxonomy-term-title a:hover {
  color: var(--bs-primary-hover);
}
.view-display-id-block .field--name-taxonomy-term-title h2 {
  margin-bottom: 0;
}
.view-display-id-block .field--name-taxonomy-term-title a {
  display: block;
  color: var(--bs-secondary);
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bs-gray-500);
  transition: color var(--transition-base);
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .view-display-id-block .field--name-taxonomy-term-title a {
    font-size: 20px;
  }
}
.view-display-id-block .field--name-taxonomy-term-title a:hover {
  color: var(--bs-secondary-hover);
}
.view-display-id-page_2 .view-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .view-display-id-page_2 .view-content {
    gap: 15px;
  }
}
@media screen and (max-width: 991px) {
  .view-display-id-page_2 .view-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .view-display-id-page_2 .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-item-teaser {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: thin solid var(--bs-gray-400);
  border-radius: 12px;
  padding: 12px;
}
@media screen and (max-width: 1199px) {
  .product-item-teaser {
    width: 100%;
  }
}
.product-item-teaser__image {
  max-width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  height: 200px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.product-item-teaser__image img {
  max-width: 210px;
  width: 100%;
  transition: transform var(--transition-base);
  object-fit: contain;
}
.product-item-teaser__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-item-teaser .field--name-quantity {
  display: none;
}
.product-item-teaser .field--name-title {
  margin-bottom: 14px;
  transition: color var(--transition-base);
  display: inline-block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--bs-secondary-dark);
  font-size: var(--font-size-m);
  text-decoration: none;
}
.product-item-teaser .field--name-price {
  color: var(--bs-primary);
  font-size: var(--font-size-sm);
  font-weight: 700;
}
.product-item-teaser .field--name-list-price {
  color: #9f9f9f;
  font-size: var(--font-size-base);
  text-decoration: line-through;
}
.product-item-teaser__buttons {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.product-item-teaser .button--add-to-cart {
  font-size: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  padding: 0;
  background-color: var(--bs-primary);
  border: none;
  border: 1px solid transparent;
  transition: background-color var(--transition-base), color var(--transition-base), border var(--transition-base);
}
.product-item-teaser .button--add-to-cart:hover {
  background-color: var(--bs-primary-hover);
  border: 1px solid var(--bs-primary);
}
.product-item-teaser .button--add-to-cart::before {
  content: '';
  width: 27px;
  height: 27px;
  background-image: url('/sites/all/themes/vesta_theme/image/cart.svg');
  background-repeat: no-repeat;
  background-position: center-;
  background-size: 25px;
}
.product-item-teaser__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
@media (max-width: 375px) {
  .product-item-teaser__footer {
    flex-direction: column;
    gap: 10px;
  }
}
.product-full {
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .product-full {
    margin-top: 0;
  }
}
.product-full__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product-full__price .field--name-price {
  font-size: var(--font-size-m);
  color: var(--bs-primary);
}
.product-full__price .field--name-list-price {
  color: #9f9f9f;
  font-size: var(--font-size-base);
  text-decoration: line-through;
}
.product-full__content {
  display: flex;
  gap: 100px;
}
@media (max-width: 1290px) {
  .product-full__content {
    padding-left: 40px;
    gap: 80px;
  }
}
@media screen and (max-width: 991px) {
  .product-full__content {
    flex-direction: column;
    gap: 45px;
    padding-left: 0;
  }
}
.product-full__images {
  max-width: 500px;
}
@media screen and (max-width: 991px) {
  .product-full__images {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 576px) {
  .product-full__images {
    max-width: 100%;
  }
}
.product-full__images .field__item {
  width: 500px;
  height: 312px;
  background-color: var(--bs-white-secondary);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--bs-primary);
}
@media screen and (max-width: 576px) {
  .product-full__images .field__item {
    max-width: 100%;
  }
}
.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 {
  max-width: 100%;
  transition: transform var(--transition-base);
  object-fit: contain;
}
.product-full__images .slick-dots {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .product-full__images .slick-dots {
    bottom: -24px;
  }
}
.product-full__images .slick-dots button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13px;
  height: 13px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--bs-primary);
}
@media screen and (max-width: 767px) {
  .product-full__images .slick-dots button {
    width: 10px;
    height: 10px;
  }
}
.product-full__images .slick-dots button::after {
  content: '';
}
.product-full__images .slick-dots .slick-active button {
  background-color: var(--bs-primary);
}
.product-full__images .slick-next.slick-arrow,
.product-full__images .slick-prev.slick-arrow {
  transition: transform var(--transition-base);
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.product-full__images .slick-next.slick-arrow::before,
.product-full__images .slick-prev.slick-arrow::before {
  width: 100%;
  height: 100%;
}
.product-full__images .slick-prev.slick-arrow {
  left: -50px;
  transform: rotate(90deg);
}
.product-full__images .slick-prev.slick-arrow::before {
  background-image: url('/sites/all/themes/vesta_theme/image/arrow-red-slide-prev.svg');
}
.product-full__images .slick-next.slick-arrow {
  right: -50px;
  transform: rotate(-90deg);
}
.product-full__images .slick-next.slick-arrow::before {
  background-image: url('/sites/all/themes/vesta_theme/image/arrow-red-slide-next.svg');
}
.product-full .btn-minus,
.product-full label,
.product-full .btn-plus {
  display: none;
}
.product-full .title {
  margin-bottom: 15px;
  font-weight: 900;
  font-size: var(--font-size-xl);
  letter-spacing: -0.03em;
  color: var(--bs-secondary-dark);
}
.product-full .field--name-body {
  font-size: var(--font-size-sm);
  font-family: var(--bs-secondary-font-family);
}
.product-full .field--name-sku {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-small);
  color: var(--bs-gray-600);
}
.product-full .button--add-to-cart {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-full .button--add-to-cart::after {
  content: '';
  width: 27px;
  height: 27px;
  background-image: url('/sites/all/themes/vesta_theme/image/cart.svg');
  background-repeat: no-repeat;
  background-position: center-;
  background-size: 25px;
}
.product-full .btn {
  margin-top: 20px;
}
.product-full-footer {
  margin-top: 70px;
  background-color: var(--bs-white);
  padding: 20px 20px 4px 20px;
  border-radius: 12px;
}
@media screen and (max-width: 991px) {
  .product-full-footer {
    margin-top: 40px;
  }
}
.product-full-footer__content {
  max-width: 500px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-full-footer h3 {
  font-weight: 700;
  font-size: var(--font-size-s);
}
.feedback__inner {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .feedback__inner {
    flex-direction: column;
  }
}
.feedback #block-vesta-theme-yandekskarta-2 {
  border-radius: 20px;
  overflow: hidden;
  width: 370px;
}
@media screen and (max-width: 767px) {
  .feedback #block-vesta-theme-yandekskarta-2 {
    width: 100%;
  }
}
#block-vesta-theme-ostalisvoprosymyotvetim .field--name-block-description {
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  #block-vesta-theme-ostalisvoprosymyotvetim .field--name-block-description {
    margin-bottom: 15px;
  }
}
#block-vesta-theme-ostalisvoprosymyotvetim .field--name-block-description h2 {
  margin-bottom: 0;
  font-weight: 900;
  font-size: var(--font-size-xl);
  letter-spacing: -0.03em;
  color: var(--bs-secondary-dark);
}
#block-vesta-theme-ostalisvoprosymyotvetim .field--name-body {
  margin-bottom: 20px;
  font-weight: 400;
}
#block-vesta-theme-ostalisvoprosymyotvetim .field--name-field-forma-s-obratnoy-svyazyu {
  max-width: 530px;
}
#block-vesta-theme-ostalisvoprosymyotvetim .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;
}
#block-vesta-theme-ostalisvoprosymyotvetim .form-control {
  padding-left: 38px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  height: 60px;
  color: var(--bs-secondary);
  border: 1px solid transparent;
  backdrop-filter: blur(21px);
  background: var(--bs-white);
  border-radius: 10px;
  color: var(--bs-dark);
  transition: border var(--transition-base);
  font-size: var(--font-size-base);
}
@media screen and (max-width: 991px) {
  #block-vesta-theme-ostalisvoprosymyotvetim .form-control {
    height: 40px;
  }
}
@media screen and (max-width: 991px) {
  #block-vesta-theme-ostalisvoprosymyotvetim .form-control {
    padding-left: 15px;
  }
}
#block-vesta-theme-ostalisvoprosymyotvetim .form-control::placeholder {
  color: rgba(45, 32, 19, 0.5);
}
#block-vesta-theme-ostalisvoprosymyotvetim .form-control:hover,
#block-vesta-theme-ostalisvoprosymyotvetim .form-control:focus {
  border: 1px solid var(--bs-secondary);
  box-shadow: none;
}
#block-vesta-theme-ostalisvoprosymyotvetim .form-textarea {
  height: 73px;
  padding-top: 23px;
  padding-bottom: 24px;
  overflow-y: auto;
  max-height: 100px;
}
@media screen and (max-width: 991px) {
  #block-vesta-theme-ostalisvoprosymyotvetim .form-textarea {
    height: 50px;
    padding-top: 13px;
  }
}
#block-vesta-theme-ostalisvoprosymyotvetim .form-wrapper-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  #block-vesta-theme-ostalisvoprosymyotvetim .form-wrapper-top {
    gap: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
  }
}
#block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form {
  display: flex;
  flex-direction: column;
  color: var(--bs-white);
}
#block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form .form-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
#block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form .webform-element-description {
  font-size: var(--font-size-sm);
  color: var(--bs-secondary-dark);
}
#block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form .webform-element-description a {
  transition: color var(--transition-base);
}
#block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form .webform-element-description a:hover {
  color: var(--bs-secondary-hover);
}
#block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form .opytnyh-speciali-form__label {
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  #block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form .opytnyh-speciali-form__label {
    gap: 14px;
  }
}
#block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form .opytnyh-speciali-form__customcheckbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--bs-secondary-dark);
  border-radius: 0;
  background-color: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form .opytnyh-speciali-form__customcheckbox {
    width: 20px;
    height: 20px;
  }
}
#block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form .opytnyh-speciali-form__customcheckbox::before {
  content: '';
  position: relative;
  right: 1px;
  top: -1px;
  width: 20px;
  height: 20px;
  opacity: 0;
  background-image: url('/sites/all/themes/vesta_theme/image/check-form.svg');
  background-repeat: no-repeat;
  background-size: 20px;
  transition: opacity var(--transition-base);
}
@media screen and (max-width: 767px) {
  #block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form .opytnyh-speciali-form__customcheckbox::before {
    width: 15px;
    height: 15px;
    background-size: 15px;
  }
}
#block-vesta-theme-ostalisvoprosymyotvetim .webform-submission-callback-form .opytnyh-speciali-form .form-checkbox:checked + .opytnyh-speciali-form__customcheckbox::before {
  opacity: 1;
}
#block-vesta-theme-ostalisvoprosymyotvetim .form-text {
  margin-top: 0;
}
#block-vesta-theme-ostalisvoprosymyotvetim .form-item {
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  #block-vesta-theme-ostalisvoprosymyotvetim .form-item {
    margin-bottom: 10px;
  }
}
#block-vesta-theme-ostalisvoprosymyotvetim .form-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: max-content;
  height: 43px;
  padding: 6px 36px;
  font-weight: 700;
  color: var(--bs-white);
  border: none;
  transition: color var(--transition-base), background-color var(--transition-base), border var(--transition-base);
  background-color: var(--bs-primary);
  font-size: var(--font-size-base);
  position: relative;
  width: 100%;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  height: 60px;
  border-radius: 10px;
}
#block-vesta-theme-ostalisvoprosymyotvetim .form-submit:hover {
  background-color: var(--bs-primary-hover);
  color: var(--bs-white);
}
@media screen and (max-width: 991px) {
  #block-vesta-theme-ostalisvoprosymyotvetim .form-submit {
    height: 50px;
  }
}
#block-vesta-theme-ostalisvoprosymyotvetim .form-submit:active,
#block-vesta-theme-ostalisvoprosymyotvetim .form-submit:focus-visible {
  background-color: var(--bs-primary-hover);
}
#block-vesta-theme-ostalisvoprosymyotvetim .form-submit[disabled] {
  background-color: var(--bs-primary-loader);
}
.footer {
  margin-top: 110px;
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  background-color: var(--bs-secondary-dark);
}
@media screen and (max-width: 991px) {
  .footer {
    margin-top: 50px;
  }
}
.footer .dropdown-menu {
  display: none !important;
}
.footer .dropdown-toggle::after {
  content: '';
  display: none;
}
.footer__decor {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: 1;
}
.footer__inner {
  position: relative;
  z-index: 2;
  margin-bottom: 100px;
  display: flex;
  gap: 130px;
}
@media screen and (max-width: 991px) {
  .footer__inner {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .footer__inner {
    gap: 60px;
  }
}
@media screen and (max-width: 991px) {
  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.footer .logo {
  text-decoration: none;
}
.footer .logo p {
  color: var(--bs-white);
}
.footer__navigation {
  display: flex;
  gap: 83px;
}
@media screen and (max-width: 991px) {
  .footer__navigation {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__navigation {
    flex-wrap: wrap;
  }
}
.footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }
}
.footer__bottom p {
  text-align: center;
}
.footer__bottom a {
  color: var(--bs-white);
  transition: color var(--transition-base);
  text-decoration: none;
  text-align: center;
}
.footer__bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footer__item {
  font-size: 13px;
  color: var(--bs-white);
}
.footer p {
  margin: 0;
}
.nav-footer {
  flex-shrink: 0;
}
.nav-footer__title {
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-base);
}
.nav-footer .nav {
  display: flex;
  flex-direction: column;
}
.nav-footer a {
  color: var(--bs-white);
  display: block;
  padding: 3px 0;
  transition: color var(--transition-base);
  text-decoration: none;
}
.nav-footer a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .footer-contacts {
    flex-shrink: 1;
  }
}
.footer-contacts__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contacts__socials a {
  transition: transform var(--transition-base);
  background-color: var(--bs-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  width: 40px;
  height: 40px;
}
.footer-contacts__socials a img {
  width: 24px;
}
.footer-contacts__socials a:hover {
  transform: translateY(-1px);
}
.footer-contacts__row {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-contacts__row a {
  text-decoration: none;
  transition: color var(--transition-base);
}
.footer-contacts__row a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footer-contacts__address,
.footer-contacts__time {
  color: var(--bs-white);
  margin-bottom: 0;
  text-decoration: none;
}
.footer-contacts__phone,
.footer-contacts__mail {
  font-weight: 700;
  font-size: 28px;
  color: var(--bs-white);
}
@media screen and (max-width: 767px) {
  .footer-contacts__phone,
  .footer-contacts__mail {
    font-size: 20px;
  }
}
.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-primary);
  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;
}
.contacts__content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 991px) {
  .contacts__content {
    gap: 20px;
  }
}
.contacts-item__title {
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--bs-dark-opacity);
  font-size: var(--font-size-base);
}
.contacts-item__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contacts-item__socials a {
  transition: transform var(--transition-base);
  background-color: var(--bs-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  width: 40px;
  height: 40px;
}
.contacts-item__socials a img {
  width: 24px;
}
.contacts-item__socials a:hover {
  transform: translateY(-1px);
}
.contacts-item--address {
  max-width: 300px;
}
.contacts-item a {
  text-decoration: none;
  color: var(--bs-secondary);
  font-size: var(--font-size-m);
  transition: color var(--transition-base), background-color var(--transition-base);
}
.contacts-item a:hover {
  color: var(--bs-secondary-hover);
}
.contacts-item p {
  margin: 0;
  font-size: var(--font-size-m);
}
.view-otzyvy .view-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.view-otzyvy .view-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .view-otzyvy .view-header {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .view-otzyvy .view-header {
    flex-direction: column;
    gap: 20px;
  }
}
.view-otzyvy ul {
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 14px;
}
@media screen and (max-width: 1199px) {
  .view-otzyvy ul {
    gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .view-otzyvy ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .view-otzyvy ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
.view-otzyvy li {
  overflow: hidden;
  border-radius: 30px;
  height: 334px;
}
@media screen and (max-width: 767px) {
  .view-otzyvy li {
    height: 250px;
  }
}
.view-otzyvy img {
  transition: transform var(--transition-base);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.view-otzyvy img:hover {
  transform: scale(1.1);
}
.reviews-wrapper {
  display: flex;
  justify-content: center;
  background: var();
  background-color: var(--bs-secondary-dark);
  padding: 10px;
  border-radius: 12px;
}
