:root {
  --bs-white: #fff;
  --bs-white-hover: #dfdfdf;
  --bs-white-opacity: rgba(255, 255, 255, 0.5);
  --bs-secondary: #91181a;
  --bs-secondary-hover: #b02a2f;
  --bs-primary: #0f206c;
  --bs-primary-hover: #162f9a;
  --bs-dark: #000;
  --bs-dark-opacity: rgba(0, 0, 0, 0.5);
  --bs-link-color: var(--bs-secondary);
  --font-body: 'Montserrat';
  --font-secondary: 'Onest';
  --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-xl: 50px;
  --font-size-l: 40px;
  --font-size-m: 30px;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --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-l: 34px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --font-size-l: 30px;
    --font-size-xl: 30px;
    --font-size-m: 26px;
  }
}
button {
  background: transparent;
  border: none;
  padding: 0;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  max-height: auto;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/sites/all/themes/vesta_theme/font/Montserrat-Regular.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@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-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: '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-ExtraBold.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/Montserrat-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Onest';
  src: url('/sites/all/themes/vesta_theme/font/Onest-Regular.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/Onest-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Onest';
  src: url('/sites/all/themes/vesta_theme/font/Onest-SemiBold.woff2') format('woff2'), url('/sites/all/themes/vesta_theme/font/Onest-SemiBold.woff') format('woff');
  font-weight: 600;
  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-dark);
  font-size: var(--font-size-base);
  line-height: 1.2;
  overflow-x: hidden;
  font-weight: 500;
  position: relative;
  top: 0 !important;
}
#main {
  margin-bottom: 50px;
}
.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;
}
.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-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;
}
.btn,
.btn-wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  height: 52px;
  padding: 6px 38px;
  font-weight: 500;
  color: var(--bs-white);
  background-color: var(--bs-primary);
  border-radius: 5px;
  transition: color var(--transition-base), background-color var(--transition-base), border var(--transition-base);
}
@media screen and (max-width: 767px) {
  .btn,
  .btn-wrapper a {
    height: 40px;
    padding: 6px 26px;
  }
}
.btn:hover,
.btn-wrapper a:hover {
  background-color: var(--bs-primary-hover);
  color: var(--bs-white);
}
.btn--white,
.btn-wrapper a--white {
  background-color: var(--bs-white);
  color: var(--bs-dark);
}
.btn--white:hover,
.btn-wrapper a--white:hover {
  color: var(--bs-dark);
  background-color: var(--bs-white-hover);
}
.search-form__submit {
  height: 37px;
  font-size: 16px;
  top: 19px;
  border-radius: 0;
  width: 100px;
  padding: 3px 10px;
  border-radius: 6px;
  transition: background-color var(--transition-base);
}
.search-form__submit:hover {
  background-color: var(--bs-primary-hover);
}
.cart__title {
  margin: 0;
  font-weight: 600;
  color: var(--bs-white);
}
@media screen and (max-width: 576px) {
  .cart__title {
    display: none;
  }
}
.cart__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart .cart-block--link__expand {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 218px;
  height: 50px;
  gap: 18px;
  border-radius: 5px;
  background-color: var(--bs-primary);
  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: 84px;
  }
}
.cart .cart-block--link__expand:hover {
  background-color: var(--bs-primary-hover);
}
.cart .cart-block--summary__count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  border-radius: 15px;
  border: none;
  background-color: var(--bs-white);
  font-size: 15px;
  color: var(--bs-primary);
}
@media screen and (max-width: 576px) {
  .cart .cart-block--summary__count {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 991px) {
  .logo img {
    max-width: 150px;
  }
}
@media screen and (max-width: 576px) {
  .logo img {
    max-width: 130px;
  }
}
#search-api-page-block-form-search .form-control:hover {
  border-color: var(--bs-primary);
}
#search-api-page-block-form-search .form-control:focus {
  box-shadow: none;
  border-color: var(--bs-primary);
}
#block-vesta-theme-page-title {
  margin-bottom: 40px;
}
#block-vesta-theme-page-title h1 {
  font-weight: 700;
  font-size: var(--font-size-l);
  color: var(--bs-primary);
}
.wrapper_product_popular {
  margin-top: 90px;
}
@media screen and (max-width: 991px) {
  .wrapper_product_popular {
    margin-top: 70px;
  }
}
.front-h1 {
  margin-bottom: 90px;
  max-width: 1147px;
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .front-h1 {
    margin-bottom: 50px;
    margin-top: 50px;
  }
}
.front-h1 span {
  font-weight: 500;
  font-size: var(--font-size-xxl);
  text-align: center;
  color: var(--bs-secondary);
}
.title,
.block-title {
  font-weight: 700;
  font-size: var(--font-size-m);
  color: var(--bs-primary);
}
.wrapper {
  margin-bottom: 120px;
}
@media screen and (max-width: 991px) {
  .wrapper {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .wrapper {
    margin-bottom: 50px;
  }
}
.wrapper_callback::before {
  content: '';
  display: block;
  width: 75%;
  height: 2px;
  background-color: rgba(201, 169, 41, 0.44);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.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);
}
.scroll-top {
  position: fixed;
  right: 216px;
  bottom: 40px;
  transition: color var(--transition-base);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 47px;
  background-color: #000b3e;
  border-radius: 5px;
  transition: background-color var(--transition-base);
}
.scroll-top:hover {
  background-color: var(--bs-primary);
}
@media (max-width: 1738px) {
  .scroll-top {
    right: 111px;
  }
}
@media (max-width: 1440px) {
  .scroll-top {
    right: 20px;
  }
}
.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;
}
.breadcrumb {
  margin-top: 30px;
  margin-bottom: 30px;
}
.breadcrumb .breadcrumb-item {
  color: var(--bs-dark-opacity);
}
.breadcrumb .breadcrumb-item a {
  color: var(--bs-primary);
  transition: color var(--transition-base);
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--bs-primary-hover);
}
.ui-dialog .ui-dialog-content a {
  color: var(--bs-primary);
}
.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);
  }
}
.block-page-title-block {
  margin-bottom: 30px;
}
.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);
}
.skiptranslate {
  display: none !important;
}
.header__top {
  background-color: var(--bs-primary);
  padding: 14px 0;
}
.header__languages {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.header__languages button {
  margin: 0;
  color: var(--bs-white);
  font-weight: 800;
}
.header__languages button.languages-active {
  color: #ff373b;
}
.header__languages span {
  color: var(--bs-white);
}
.header__search {
  max-width: 254px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .header__search {
    max-width: 190px;
  }
}
.header__search input {
  padding-left: 63px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #c4c4c4;
}
@media screen and (max-width: 1199px) {
  .header__search input {
    padding-left: 40px;
  }
}
.header__search input::placeholder {
  color: #878787;
}
.header__search input:focus {
  box-shadow: none;
}
.header__search .search-button-icon {
  position: absolute;
  left: 10px;
  top: 8px;
}
.header__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__contacts a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  color: var(--bs-secondary);
  transition: color var(--transition-base);
}
.header__contacts a:hover {
  color: var(--bs-secondary-hover);
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: var(--bs-secondary);
  transition: background-color var(--transition-base);
}
.header__socials a:hover {
  background-color: var(--bs-secondary-hover);
}
.header__info {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header__navigation {
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #eee;
}
@media screen and (max-width: 991px) {
  .header__navigation {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.header__navigation .nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .header__navigation .nav {
    justify-content: flex-start;
  }
}
.header__navigation .nav-link {
  color: var(--bs-dark);
  transition: color var(--transition-base);
}
@media screen and (max-width: 991px) {
  .header__navigation .nav-link {
    padding: 10px;
    font-size: var(--font-size-sm);
  }
}
.header__navigation .nav-link:hover {
  color: var(--bs-primary);
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 991px) {
  .header__wrap {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .header__cart {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.header .search-form__submit {
  display: none;
}
.about {
  display: flex;
  gap: 72px;
}
@media screen and (max-width: 767px) {
  .about {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about__content {
    order: -1;
  }
}
@media screen and (max-width: 767px) {
  .about .block-content--type-o-kompanii {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.about .field--name-block-description {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about .field--name-block-description {
    text-align: center;
  }
}
.about .field--name-body {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about .field--name-body {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .about .btn-wrapper {
    display: flex;
    justify-content: center;
  }
}
.about__image {
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .about__image {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.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-primary);
  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 .search-api-page-block-form-search {
  margin-top: 10px;
  max-width: calc(100% - 5px);
  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-primary);
}
.mobile-nav {
  margin-top: 20px;
  margin-bottom: 40px;
}
.mobile-nav__info {
  margin-top: 14px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 14px;
}
.mobile-nav .nav {
  display: flex;
  flex-direction: column;
}
.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;
}
.modal-dialog .form-item {
  margin-bottom: 14px;
}
.modal-dialog .form-item--error-message {
  margin-top: 5px;
  font-size: var(--font-size-sm);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.modal-dialog .form-control {
  color: var(--bs-dark);
  border: 1px solid var(--bs-primary);
  transition: border var(--transition-base);
}
.modal-dialog .form-control::placeholder {
  color: var(--bs-dark-opacity);
}
.modal-dialog .form-control:hover,
.modal-dialog .form-control:focus {
  border: 1px solid var(--bs-primary-hover);
  box-shadow: none;
}
.modal-dialog .modal-content .form-wrapper {
  flex-direction: column;
}
.modal-dialog .modal-footer {
  justify-content: center;
}
.modal-dialog .opytnyh-speciali-form {
  margin-top: 15px;
}
.modal-dialog .input-disabled {
  pointer-events: none;
  background-color: #f3f3f3;
  color: #5a5a5a;
  opacity: 0.7;
  border: none;
}
.opytnyh-speciali-form {
  margin-top: 30px;
  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);
  color: var(--bs-dark);
  font-weight: 400;
}
.opytnyh-speciali-form .webform-element-description a {
  transition: color var(--transition-base);
}
.opytnyh-speciali-form .webform-element-description a:hover {
  color: var(--bs-primary-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;
}
.view-slayder {
  margin-bottom: 120px;
}
@media screen and (max-width: 991px) {
  .view-slayder {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .view-slayder {
    margin-bottom: 50px;
  }
}
.view-slayder .node--type-slide {
  min-height: 775px;
}
@media screen and (max-width: 767px) {
  .view-slayder .node--type-slide {
    min-height: 550px;
  }
}
.view-slayder .content {
  text-align: left;
  color: var(--bs-white);
}
.view-slayder .field--name-field-slide-title {
  max-width: 570px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: var(--font-size-l);
}
@media screen and (max-width: 576px) {
  .view-slayder .field--name-field-slide-title {
    font-size: 24px;
  }
}
.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: 570px;
  margin-bottom: 30px;
  color: var(--bs-white);
}
.view-slayder .field--name-field-image {
  position: relative;
  z-index: -1;
  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: rgba(38, 38, 38, 0.48);
}
.view-slayder .field--name-node-link {
  display: flex;
  justify-content: center;
  margin-top: 90px;
}
.view-slayder .slick-dots {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  bottom: 30px;
  right: 200px;
  top: 50%;
  transform: translateY(-50%);
}
@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: 10px;
  height: 10px;
  background-color: var(--bs-white);
  border-radius: 50%;
}
.view-slayder .slick-dots button::after {
  content: '';
}
.view-slayder .slick-dots .slick-active button {
  background-color: var(--bs-primary);
}
.view-slayder .decor-slide {
  position: absolute;
}
.view-slayder .decor-slide-1 {
  left: 160px;
  bottom: 127px;
  width: 80px;
}
@media screen and (max-width: 991px) {
  .view-slayder .decor-slide-1 {
    bottom: 40px;
    left: 20px;
  }
}
.view-slayder .decor-slide-2 {
  left: -40px;
  top: 120px;
  width: 80px;
}
.view-slayder .decor-slide-3 {
  right: 10px;
  top: 60px;
  width: 100px;
}
.view-slayder .decor-slide-4 {
  right: -60px;
  top: 300px;
  width: 120px;
}
.view-slayder .decor-slide-5 {
  right: 160px;
  bottom: 100px;
  width: 100px;
}
@media screen and (max-width: 991px) {
  .view-slayder .decor-slide-5 {
    bottom: 40px;
    right: 20px;
  }
}
.view-about .view-header {
  position: relative;
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .view-about .view-header {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .view-about .view-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}
.view-about .view-header p {
  margin-bottom: 0;
  max-width: 574px;
  padding-right: 50px;
  font-size: var(--font-size-base);
}
@media screen and (max-width: 991px) {
  .view-about .view-header p {
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .view-about .view-header p {
    padding-right: 0;
    text-align: center;
  }
}
.view-about .view-header::before {
  content: '';
  position: absolute;
  right: 19px;
  top: -50px;
  background-image: url('/sites/all/themes/vesta_theme/image/about-decor.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 81px;
}
@media screen and (max-width: 767px) {
  .view-about .view-header::before {
    background-size: 60px;
  }
}
.view-about .field--name-field-vstuplenie {
  margin-bottom: 25px;
  font-style: italic;
  font-weight: 500;
  font-size: var(--font-size-base);
}
.view-about .field--name-body {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: var(--font-size-sm);
  font-family: var(--bs-secondary-font-family);
}
.view-about .field--name-field-izobrazhenie {
  max-width: 570px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .view-about .field--name-field-izobrazhenie {
    max-width: 300px;
  }
}
.view-about .field--name-field-izobrazhenie img {
  max-width: 100%;
  object-fit: cover;
}
.view-about__left {
  max-width: 570px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .view-about__left {
    max-width: 480px;
  }
}
@media screen and (max-width: 767px) {
  .view-about__left {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .view-about__right {
    order: 1;
  }
}
.view-about .node--type-about {
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .view-about .node--type-about {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .view-about .view-footer {
    display: flex;
    justify-content: center;
  }
}
.view-preimushchestva .view-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .view-preimushchestva .view-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 576px) {
  .view-preimushchestva .view-content {
    grid-template-columns: 1fr;
  }
}
.view-preimushchestva .views-row {
  position: relative;
  max-width: 270px;
  width: 100%;
  padding: 33px 10px 34px 30px;
  color: var(--bs-primary);
  border: 1px solid #c7c7c7;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .view-preimushchestva .views-row {
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .view-preimushchestva .views-row {
    padding: 20px;
  }
}
.view-preimushchestva .views-row::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 112px;
  height: 112px;
  background-image: url('/sites/all/themes/vesta_theme/image/preimushchestva-decor.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.view-preimushchestva .field--name-node-title {
  margin-bottom: 10px;
}
.view-preimushchestva .field--name-node-title h2 {
  font-weight: 700;
  font-size: var(--font-size-xl);
}
.view-preimushchestva .field--name-body p {
  margin-bottom: 0;
  font-weight: 700;
}
.honest-position {
  max-width: 1074px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .honest-position {
    flex-direction: column;
  }
}
.honest-position__content {
  max-width: 570px;
}
@media screen and (max-width: 767px) {
  .honest-position__content {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .honest-position .btn-wrapper {
    display: flex;
    justify-content: center;
  }
}
.honest-position__image {
  padding-top: 20px;
  flex-shrink: 0;
}
.honest-position__image a img {
  transition: transform var(--transition-base);
}
.honest-position__image a:hover img {
  transform: scale(1.03);
}
.honest-position .field--name-block-description {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .honest-position .field--name-block-description {
    max-block-size: 30px;
  }
}
.honest-position .field--name-body {
  margin-bottom: 30px;
}
.honest-position .field--name-body p {
  font-weight: 500;
  margin-bottom: 0;
}
.feedback {
  position: relative;
}
.feedback .feedback-decor-1,
.feedback .feedback-decor-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.feedback .feedback-decor-1 {
  left: 0;
}
.feedback .feedback-decor-2 {
  right: 0;
}
.block-content--type-blok-s-obratnoy-svyazyu {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  min-height: 454px;
}
@media screen and (max-width: 991px) {
  .block-content--type-blok-s-obratnoy-svyazyu {
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: auto;
  }
}
.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::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(38, 38, 38, 0.48);
}
.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 .field--name-block-description {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  text-align: center;
}
.block-content--type-blok-s-obratnoy-svyazyu .field--name-block-description h2 {
  font-weight: 700;
  font-size: var(--font-size-m);
  color: var(--bs-white);
}
.block-content--type-blok-s-obratnoy-svyazyu .field--name-body {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 640px;
  margin: 0 auto 40px auto;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--bs-white);
}
.block-content--type-blok-s-obratnoy-svyazyu .field--name-field-forma-s-obratnoy-svyazyu {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 530px;
}
.block-content--type-blok-s-obratnoy-svyazyu .form-item--error-message {
  margin-top: 5px;
  text-align: center;
  font-size: var(--font-size-xs);
  color: var(--bs-white);
  margin-left: auto;
  margin-right: auto;
}
.block-content--type-blok-s-obratnoy-svyazyu .form-control {
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  height: 50px;
  color: var(--bs-secondary);
  border: 1px solid transparent;
  backdrop-filter: blur(21px);
  background: var(--bs-white);
  border-radius: 5px;
  color: var(--bs-dark);
  transition: border var(--transition-base);
}
@media screen and (max-width: 991px) {
  .block-content--type-blok-s-obratnoy-svyazyu .form-control {
    height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .block-content--type-blok-s-obratnoy-svyazyu .form-control {
    padding-left: 15px;
  }
}
.block-content--type-blok-s-obratnoy-svyazyu .form-control::placeholder {
  color: rgba(45, 32, 19, 0.5);
}
.block-content--type-blok-s-obratnoy-svyazyu .form-control:hover,
.block-content--type-blok-s-obratnoy-svyazyu .form-control:focus {
  border: 1px solid var(--bs-primary);
  box-shadow: none;
}
.block-content--type-blok-s-obratnoy-svyazyu .form-textarea {
  height: 73px;
  padding-top: 23px;
  padding-bottom: 24px;
  overflow-y: auto;
  max-height: 100px;
}
@media screen and (max-width: 991px) {
  .block-content--type-blok-s-obratnoy-svyazyu .form-textarea {
    height: 50px;
    padding-top: 13px;
  }
}
.block-content--type-blok-s-obratnoy-svyazyu .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-content--type-blok-s-obratnoy-svyazyu .form-wrapper-top {
    gap: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
  }
}
.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;
}
.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 {
  color: var(--bs-white);
  font-size: var(--font-size-base);
}
@media screen and (max-width: 767px) {
  .block-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form .webform-element-description {
    font-size: 14px;
  }
}
.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: 26px;
  height: 26px;
  border: 1px solid var(--bs-white);
  border-radius: 0;
  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: 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-content--type-blok-s-obratnoy-svyazyu .webform-submission-callback-form .opytnyh-speciali-form .opytnyh-speciali-form__customcheckbox::before {
    width: 15px;
    height: 15px;
    background-size: 15px;
  }
}
.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-text {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .block-content--type-blok-s-obratnoy-svyazyu .form-item {
    margin-bottom: 10px;
  }
}
.block-content--type-blok-s-obratnoy-svyazyu .form-submit {
  width: 100%;
  border: none;
  background-color: var(--bs-secondary);
  border-radius: 5px;
  transition: background-color var(--transition-base);
}
.block-content--type-blok-s-obratnoy-svyazyu .form-submit:hover {
  background-color: var(--bs-secondary-hover);
}
.block-content--type-blok-s-obratnoy-svyazyu .form-submit:active,
.block-content--type-blok-s-obratnoy-svyazyu .form-submit:focus-visible {
  background-color: var(--bs-secondary-hover);
}
.block-content--type-blok-s-obratnoy-svyazyu .form-submit[disabled] {
  background-color: var(--bs-white-opacity);
  border: none;
}
#block-vesta-theme-prisoedinyaytesknasheykomande .block-title {
  margin-bottom: 70px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 991px) {
  #block-vesta-theme-prisoedinyaytesknasheykomande .block-title {
    margin-bottom: 40px;
  }
}
#block-vesta-theme-prisoedinyaytesknasheykomande .block-title::before {
  content: '';
  position: absolute;
  right: 30px;
  top: -46px;
  width: 181px;
  height: 123px;
  background-image: url('/sites/all/themes/vesta_theme/image/job-openings-decor-2.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  #block-vesta-theme-prisoedinyaytesknasheykomande .block-title::before {
    background-size: 100px;
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  #block-vesta-theme-prisoedinyaytesknasheykomande .block-title::before {
    background-size: 70px;
    right: -40px;
    top: -20px;
  }
}
.view-otrasli-primeneniya-nashey-produkcii .view-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .view-otrasli-primeneniya-nashey-produkcii .view-header {
    flex-direction: column;
  }
}
.view-otrasli-primeneniya-nashey-produkcii .title {
  max-width: 420px;
}
@media screen and (max-width: 576px) {
  .view-otrasli-primeneniya-nashey-produkcii .title {
    text-align: center;
  }
}
.view-otrasli-primeneniya-nashey-produkcii .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .view-otrasli-primeneniya-nashey-produkcii .view-content {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .view-otrasli-primeneniya-nashey-produkcii .view-content {
    grid-template-columns: 1fr;
  }
}
.view-otrasli-primeneniya-nashey-produkcii .blazy--field-izobrazhenie {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.view-otrasli-primeneniya-nashey-produkcii .blazy--field-izobrazhenie img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-base);
}
.view-otrasli-primeneniya-nashey-produkcii .blazy--field-izobrazhenie:hover img {
  transform: scale(1.1);
}
.view-otrasli-primeneniya-nashey-produkcii .field--name-node-title {
  margin-bottom: 10px;
}
.view-otrasli-primeneniya-nashey-produkcii .field--name-node-title h3 {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bs-primary);
  font-size: var(--font-size-base);
  transition: color var(--transition-base);
}
.view-otrasli-primeneniya-nashey-produkcii .field--name-node-title h3:hover {
  color: var(--bs-primary-hover);
}
.view-otrasli-primeneniya-nashey-produkcii .field--name-body {
  font-weight: 400;
}
.view-nashi-distribyutory-i-partnery .view-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .view-nashi-distribyutory-i-partnery .view-header {
    flex-direction: column;
  }
}
.view-nashi-distribyutory-i-partnery .view-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  .view-nashi-distribyutory-i-partnery .view-content {
    max-width: 582px;
    grid-template-columns: repeat(2, 1fr);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  .view-nashi-distribyutory-i-partnery .view-content {
    gap: 10px;
  }
}
.view-nashi-distribyutory-i-partnery img {
  object-fit: contain;
  height: 120px;
}
.view-novosti .view-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .view-novosti .view-header {
    flex-direction: column;
  }
}
.view-novosti .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .view-novosti .view-content {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .view-novosti .view-content {
    grid-template-columns: 1fr;
  }
}
.view-novosti .blazy--field-izobrazhenie {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.view-novosti .blazy--field-izobrazhenie a img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-base);
}
.view-novosti .blazy--field-izobrazhenie a:hover img {
  transform: scale(1.1);
}
.view-novosti .field--name-field-korotkoe-opisanie {
  margin-bottom: 20px;
  font-weight: 400;
}
.view-novosti .news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.view-novosti .field--name-field-data {
  color: var(--bs-dark-opacity);
}
.view-novosti .field--name-node-link {
  color: var(--bs-dark-opacity);
  text-decoration: underline;
  transition: color var(--transition-base);
}
.view-novosti .field--name-node-link:hover {
  color: var(--bs-dark);
}
.front .contacts {
  margin-top: 110px;
}
.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;
  align-items: flex-start;
  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 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background-color: var(--bs-primary);
}
.contacts-item__socials a:hover {
  background-color: var(--bs-primary-hover);
}
.contacts-item__socials a img {
  width: 14px;
}
.contacts-item--address {
  max-width: 264px;
}
.contacts-item a {
  transition: color var(--transition-base), background-color var(--transition-base);
}
.contacts-item a:hover {
  color: var(--bs-primary);
}
.contacts-item p {
  margin: 0;
}
.footer {
  position: relative;
  background: radial-gradient(136.65% 100% at 50% 100%, #0c184f 0%, #12257a 57.21%, #1e3dc9 100%);
  padding-top: 50px;
  color: var(--bs-white);
}
.footer__logo {
  flex-shrink: 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  max-width: 931px;
  width: 100%;
  gap: 80px;
}
@media screen and (max-width: 991px) {
  .footer__inner {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__content {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 420px);
  row-gap: 45px;
  column-gap: 60px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 46px;
  padding-top: 23px;
  padding-bottom: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }
}
.footer__bottom a {
  transition: color var(--transition-base);
}
.footer__bottom a:hover {
  color: var(--bs-white);
}
.footer__item {
  font-size: 13px;
  color: var(--bs-white-opacity);
}
.footer p {
  margin: 0;
}
.footer .footer-decor-1,
.footer .footer-decor-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.footer .footer-decor-1 {
  left: 0;
}
.footer .footer-decor-2 {
  right: 0;
}
.nav-footer__title {
  color: var(--bs-white-opacity);
  font-size: var(--font-size-base);
  margin-bottom: 15px;
}
.nav-footer__contacts {
  margin-bottom: 30px;
}
.nav-footer__contacts a {
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .nav-footer__contacts a {
    font-size: 20px;
  }
}
.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);
}
.nav-footer a:hover {
  color: var(--bs-white-hover);
}
.nav-footer__socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-footer__socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: var(--bs-white);
  transition: background-color var(--transition-base);
}
.nav-footer__socials a:hover {
  background-color: var(--bs-white-hover);
}
.nav-footer__works {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav-footer__address {
  max-width: 310px;
}
.nav-footer__time {
  max-width: 180px;
}
.footer-contacts {
  width: 332px;
}
@media screen and (max-width: 991px) {
  .footer-contacts {
    max-width: 270px;
  }
}
.footer-contacts__phones {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-contacts__phones a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: var(--font-size-sm);
  transition: color var(--transition-base);
}
.footer-contacts__phones a:hover {
  color: var(--bs-white-hover);
}
.footer-contacts__address {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: var(--font-size-s);
}
.footer-contacts__mail {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: var(--font-size-s);
  transition: color var(--transition-base);
}
.footer-contacts__mail:hover {
  color: var(--bs-white-hover);
}
.footer-contacts__socials {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.footer-contacts__socials a {
  transition: transform var(--transition-base);
}
.footer-contacts__socials a:hover {
  transform: scale(1.1);
}
.product-item-teaser {
  display: flex;
  flex-direction: column;
  width: 270px;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .product-item-teaser {
    width: 100%;
  }
}
.product-item-teaser__image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  height: 200px;
  padding-left: 10px;
  padding-right: 10px;
  border: thin solid #c4c4c4;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.product-item-teaser__image img {
  transition: transform var(--transition-base);
}
.product-item-teaser__price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px;
}
.product-item-teaser__tags {
  top: 10px;
  right: 10px;
  position: absolute;
  z-index: 1;
}
.product-item-teaser__tags .field--name-field-metki-tovara {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-item-teaser__tags .field__item {
  font-size: var(--font-size-small);
  padding: 4px 13px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.product-item-teaser .field--name-quantity {
  display: none;
}
.product-item-teaser .field--name-title {
  margin-bottom: 14px;
  transition: color var(--transition-base);
}
.product-item-teaser .field--name-title:hover {
  color: var(--bs-primary-hover);
}
.product-item-teaser .field--name-price {
  color: var(--bs-primary);
}
.product-item-teaser__buttons {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.product-item-teaser__buttons .field--name-variations,
.product-item-teaser__buttons .field--name-dynamic-token-fieldcommerce-product-knopka-podrobnee-tovar {
  width: 100%;
}
.product-item-teaser__buttons .button--add-to-cart {
  background-color: var(--bs-primary);
  width: 100%;
  height: 42px;
  color: var(--bs-white);
  border: none;
  border-radius: 0;
  border: 1px solid transparent;
  transition: background-color var(--transition-base), color var(--transition-base), border var(--transition-base);
}
.product-item-teaser__buttons .button--add-to-cart:hover {
  background-color: var(--bs-primary-hover);
  border: 1px solid var(--bs-primary);
}
.product-item-teaser__footer {
  margin-top: auto;
}
.block-views-blockcatalog-block-front .view-header,
.view-catalog.view-display-id-page .view-header,
.view-catalog.view-display-id-block .view-header {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.block-views-blockcatalog-block-front .view-header .title,
.view-catalog.view-display-id-page .view-header .title,
.view-catalog.view-display-id-block .view-header .title {
  max-width: 570px;
  font-size: var(--font-size-l);
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .view-header .title,
  .view-catalog.view-display-id-page .view-header .title,
  .view-catalog.view-display-id-block .view-header .title {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .block-views-blockcatalog-block-front .view-header .title,
  .view-catalog.view-display-id-page .view-header .title,
  .view-catalog.view-display-id-block .view-header .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .view-header,
  .view-catalog.view-display-id-page .view-header,
  .view-catalog.view-display-id-block .view-header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
  }
}
.block-views-blockcatalog-block-front .view-content,
.view-catalog.view-display-id-page .view-content,
.view-catalog.view-display-id-block .view-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 130px;
  row-gap: 50px;
}
@media screen and (max-width: 991px) {
  .block-views-blockcatalog-block-front .view-content,
  .view-catalog.view-display-id-page .view-content,
  .view-catalog.view-display-id-block .view-content {
    column-gap: 60px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .block-views-blockcatalog-block-front .view-content,
  .view-catalog.view-display-id-page .view-content,
  .view-catalog.view-display-id-block .view-content {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  .block-views-blockcatalog-block-front .view-content,
  .view-catalog.view-display-id-page .view-content,
  .view-catalog.view-display-id-block .view-content {
    grid-template-columns: 1fr;
  }
}
.block-views-blockcatalog-block-front .field--name-field-catalog-image,
.view-catalog.view-display-id-page .field--name-field-catalog-image,
.view-catalog.view-display-id-block .field--name-field-catalog-image {
  margin-bottom: 20px;
  height: 115px;
}
@media screen and (max-width: 767px) {
  .block-views-blockcatalog-block-front .field--name-field-catalog-image,
  .view-catalog.view-display-id-page .field--name-field-catalog-image,
  .view-catalog.view-display-id-block .field--name-field-catalog-image {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .block-views-blockcatalog-block-front .field--name-field-catalog-image,
  .view-catalog.view-display-id-page .field--name-field-catalog-image,
  .view-catalog.view-display-id-block .field--name-field-catalog-image {
    display: flex;
    justify-content: center;
  }
}
.block-views-blockcatalog-block-front .field--name-field-catalog-image img,
.view-catalog.view-display-id-page .field--name-field-catalog-image img,
.view-catalog.view-display-id-block .field--name-field-catalog-image img {
  object-fit: contain;
  max-width: 270px;
  width: 100%;
}
.block-views-blockcatalog-block-front .field--name-taxonomy-term-title h3,
.view-catalog.view-display-id-page .field--name-taxonomy-term-title h3,
.view-catalog.view-display-id-block .field--name-taxonomy-term-title h3 {
  font-size: var(--font-size-base);
  font-weight: 800;
  text-transform: uppercase;
  transition: color var(--transition-base);
}
@media screen and (max-width: 767px) {
  .block-views-blockcatalog-block-front .field--name-taxonomy-term-title h3,
  .view-catalog.view-display-id-page .field--name-taxonomy-term-title h3,
  .view-catalog.view-display-id-block .field--name-taxonomy-term-title h3 {
    font-size: var(--font-size-sm);
  }
}
@media screen and (max-width: 576px) {
  .block-views-blockcatalog-block-front .field--name-taxonomy-term-title h3,
  .view-catalog.view-display-id-page .field--name-taxonomy-term-title h3,
  .view-catalog.view-display-id-block .field--name-taxonomy-term-title h3 {
    text-align: center;
  }
}
.block-views-blockcatalog-block-front .field--name-taxonomy-term-title h3:hover,
.view-catalog.view-display-id-page .field--name-taxonomy-term-title h3:hover,
.view-catalog.view-display-id-block .field--name-taxonomy-term-title h3:hover {
  color: var(--bs-primary);
}
.block-views-blockcatalog-block-front .view-footer,
.view-catalog.view-display-id-page .view-footer,
.view-catalog.view-display-id-block .view-footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.view-catalog.view-display-id-block .field--name-taxonomy-term-title h3 {
  text-transform: none;
}
.category-item {
  max-width: 374px;
  width: 100%;
}
.category-item__image {
  position: relative;
  background: url('/sites/all/themes/vesta_theme/image/product-teaser-image-bg.svg') center / contain no-repeat;
  width: 371px;
  height: 266px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .category-item__image {
    width: 320px;
  }
}
@media screen and (max-width: 576px) {
  .category-item__image {
    width: 290px;
  }
}
.category-item__image a {
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.category-item__image .field--name-field-image-product-view,
.category-item__image .field__item {
  height: 100%;
}
.category-item__image .field--name-field-image-product-view a,
.category-item__image .field__item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-item__image .field--name-field-image-product-view a:hover img,
.category-item__image .field__item a:hover img {
  transform: scale(1.1);
}
.category-item__image .field--name-field-image-product-view img,
.category-item__image .field__item img {
  width: auto;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-base);
}
.category-item__content {
  background: url(/sites/all/themes/vesta_theme/image/product-teaser-content-bg.svg) center / contain no-repeat;
  width: 100%;
  height: 113px;
  padding-left: 50px;
  padding-right: 50px;
  margin-top: -22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .category-item__content {
    width: 320px;
    margin-top: -40px;
  }
}
@media screen and (max-width: 576px) {
  .category-item__content {
    margin-top: -52px;
    width: 290px;
  }
}
.category-item .field--name-taxonomy-term-title {
  text-align: center;
}
.category-item .field--name-taxonomy-term-title h2 {
  line-height: 1;
}
.category-item .field--name-taxonomy-term-title a {
  font-weight: 500;
  font-size: var(--font-size-base);
  color: var(--bs-white);
  text-align: center;
  transition: color var(--transition-base);
  -webkit-line-clamp: 3;
  /* количество строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category-item .field--name-taxonomy-term-title a:hover {
  color: var(--bs-white-hover);
}
.block-views-blocktovary-block-2 .block-title {
  margin-bottom: 70px;
}
@media screen and (max-width: 1199px) {
  .block-views-blocktovary-block-2 .block-title {
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .block-views-blocktovary-block-2 .block-title {
    margin-bottom: 20px;
  }
}
.block-views-blocktovary-block-2 .view-content {
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .block-views-blocktovary-block-2 .view-content {
    max-width: 778px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  .block-views-blocktovary-block-2 .view-content {
    max-width: 654px;
  }
}
@media screen and (max-width: 767px) {
  .block-views-blocktovary-block-2 .view-content {
    max-width: 320px;
  }
}
@media screen and (max-width: 576px) {
  .block-views-blocktovary-block-2 .view-content {
    max-width: 290px;
  }
}
.block-views-blocktovary-block-2 .slick-next.slick-arrow,
.block-views-blocktovary-block-2 .slick-prev.slick-arrow {
  transform: rotate(90deg);
  transition: transform var(--transition-base);
  width: 30px;
  height: 30px;
}
.block-views-blocktovary-block-2 .slick-next.slick-arrow:hover,
.block-views-blocktovary-block-2 .slick-prev.slick-arrow:hover {
  transform: scale(1.1) rotate(90deg);
}
.block-views-blocktovary-block-2 .slick-next.slick-arrow::before,
.block-views-blocktovary-block-2 .slick-prev.slick-arrow::before {
  width: 100%;
  height: 100%;
  background-image: url('/sites/all/themes/vesta_theme/image/arrow-red-slide-prev.svg');
}
@media (max-width: 1330px) {
  .block-views-blocktovary-block-2 .slick-next.slick-arrow,
  .block-views-blocktovary-block-2 .slick-prev.slick-arrow {
    display: none;
  }
}
.block-views-blocktovary-block-2 .slick-prev.slick-arrow {
  left: -70px;
}
.block-views-blocktovary-block-2 .slick-next.slick-arrow {
  right: -70px;
}
.block-views-blocktovary-block-2 .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) {
  .block-views-blocktovary-block-2 .slick-dots {
    bottom: -24px;
  }
}
.block-views-blocktovary-block-2 .slick-dots button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13px;
  height: 13px;
  background-color: var(--bs-primary-light);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .block-views-blocktovary-block-2 .slick-dots button {
    width: 10px;
    height: 10px;
  }
}
.block-views-blocktovary-block-2 .slick-dots button::after {
  content: '';
}
.block-views-blocktovary-block-2 .slick-dots .slick-active button {
  background-color: var(--bs-primary);
}
@media screen and (max-width: 1199px) {
  .block-views-blocktovary-block-2 .view-footer {
    display: flex;
    justify-content: center;
  }
}
.view-tovary .view-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 30px;
  column-gap: 30px;
}
@media screen and (max-width: 1199px) {
  .view-tovary .view-content {
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .view-tovary .view-content {
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .view-tovary .view-content {
    column-gap: 10px;
  }
}
@media (max-width: 460px) {
  .view-tovary .view-content {
    grid-template-columns: 1fr;
  }
}
.product-full {
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .product-full {
    margin-top: 0;
  }
}
.product-full__price {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.product-full__price span {
  color: var(--bs-primary);
  font-size: 24px;
}
.product-full .field--name-body p {
  font-size: var(--font-size-base);
}
.product-full__content {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .product-full__content {
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
  }
}
.product-full__images {
  height: auto;
  border: thin solid #c4c4c4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  height: 300px;
}
@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: 400px;
  height: 100%;
  background-color: var(--bs-white-secondary);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--bs-primary-light);
}
.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: 250px;
  transition: transform var(--transition-base);
  object-fit: contain;
}
.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 .field--name-body {
  font-size: var(--font-size-sm);
  font-family: var(--bs-secondary-font-family);
}
.product-full .field--name-price {
  color: var(--bs-primary);
  font-size: 24px;
}
.product-full .field--name-sku {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-sm);
  color: var(--bs-gray-600);
}
.product-full .btn {
  margin-top: 20px;
}
.product-full .field--name-quantity label {
  display: none;
}
.product-full .group-footer {
  margin-top: 40px;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  border: thin solid #c4c4c4;
  border-radius: 12px;
}
.view-commerce-cart-form .form-actions {
  margin-top: 20px;
}
.view-commerce-cart-form .media--image {
  width: 100px;
  height: 100px;
}
.product-full-footer {
  max-width: 500px;
  margin-top: 70px;
  font-family: var(--bs-secondary-font-family);
}
@media screen and (max-width: 991px) {
  .product-full-footer {
    margin-top: 40px;
  }
}
.product-full-footer__content {
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-full-footer h3 {
  font-weight: 700;
  font-size: var(--font-size-s);
}
.cookies__btns {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookies__btns .btn {
  width: 170px;
  height: 38px;
  background-color: var(--bs-primary);
  font-size: var(--font-size-mini);
  color: var(--bs-white);
  border: 1px solid var(--bs-primary);
  transition: background-color var(--transition-base), color var(--transition-base);
}
.cookies__btns .btn:hover {
  background-color: var(--bs-primary-hover);
  border: transparent;
}
.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);
}
