@font-face {
  font-family: 'OpenSans';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/media/fonts/OpenSans-Regular.woff2") format("woff2"), url('/media/fonts/OpenSans-Regular.woff') format("woff");
}
@font-face {
  font-family: 'OpenSans';
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("/media/fonts/OpenSans-Italic.woff2") format("woff2"), url('/media/fonts/OpenSans-Italic.woff') format("woff");
}
@font-face {
  font-family: 'OpenSans';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("/media/fonts/OpenSans-SemiBold.woff2") format("woff2"), url('/media/fonts/OpenSans-SemiBold.woff') format("woff");
}
@font-face {
  font-family: 'OpenSans';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("/media/fonts/OpenSans-Bold.woff2") format("woff2"), url('/media/fonts/OpenSans-Bold.woff') format("woff");
}
:root {
  --msw: 1500px;
  --mainPadding: 13px;
  --containerPadding: var(--mainPadding);
  --fullWidthMargin: calc(((var(--screenWidth) - var(--content)) / 2) * -1);
  --fullWidth: var(--screenWidth);
  --containerWidthMargin: calc(var(--containerPadding) * -1);
  --containerWidth: calc(100% + (var(--containerPadding) * 2));
  --sectionMargin: 50px;
}
@media screen and (min-width: 768px) {
  :root {
    --containerPadding: 17px;
    --sectionMargin: 60px;
  }
}
@media screen and (min-width: 1366px) {
  :root {
    --containerPadding: 130px;
    --sectionMargin: 80px;
  }
}
.d_desktop.no-touch {
  --mainPadding: 0px;
}
.boundBlock {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--containerPadding);
  padding-right: var(--containerPadding);
  max-width: var(--msw);
  box-sizing: border-box;
}
.themeScroll {
  overflow-y: auto;
  overflow-x: hidden;
}
.themeScroll::-webkit-scrollbar {
  width: 2px;
}
.themeScroll::-webkit-scrollbar:horizontal {
  height: 4px;
}
.themeScroll::-webkit-scrollbar-track {
  background-color: transparent;
}
.themeScroll::-webkit-scrollbar-thumb {
  background-color: #1c66a3;
}
.themeScroll::-webkit-scrollbar-thumb:hover {
  background-color: #1c66a3;
}
.switch-extend {
  --width: 36px;
  --height: 24px;
  --radius: 15px;
  position: relative;
  padding-right: var(--width);
  display: block;
}
.switch-extend input {
  opacity: 0;
  width: var(--width);
  z-index: 1;
  height: var(--height);
  right: 0;
  cursor: pointer;
  margin: 0;
  border-radius: var(--radius);
}
.switch-extend input:checked ~ [class*="label"]::before {
  background: #1c66a3;
}
.switch-extend input:checked ~ [class*="label"]::after {
  right: 4px;
}
.switch-extend [class*="label"]::before {
  width: var(--width);
  height: var(--height);
  right: 0;
  border-radius: 15px;
  background: #ebebee;
  transition: background .3s;
}
.switch-extend [class*="label"]:after {
  background: #ffffff;
  right: 16px;
  width: 16px;
  height: 16px;
  transition: right .3s;
  border-radius: 50%;
}
.switch-extend [class*="label"]::before,
.switch-extend [class*="label"]:after,
.switch-extend input {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.switch-extend .fake-input {
  display: none;
}
.flex-c {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.flex-s {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.flex-s-b {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-c-c {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.flex-c-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-c-np {
  display: flex;
  align-items: center;
}
.themeLoader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.themeLoader p {
  display: none;
}
.themeLoader img {
  display: none;
}
.themeLoader:after {
  content: '';
  display: inline-flex;
  width: 70%;
  height: 70%;
  max-width: 100px;
  max-height: 100px;
  background: url(/media/images/loader.svg) no-repeat 50% 50%;
  background-size: contain;
  animation: roundLoader 1s infinite linear;
}
@keyframes roundLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
svg.icon-heart {
  fill: none;
}
svg.icon-arrow {
  width: 26px;
  height: 13px;
}
svg.angle-d {
  width: 20px;
  height: 20px;
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}
html.overlay,
html.nav-open {
  height: auto;
  position: relative;
  overflow: hidden !important;
  -webkit-overflow-scrolling: touch;
}
html.overlay body,
html.nav-open body {
  height: auto;
  position: relative;
  overflow: hidden !important;
}
#html-body {
  all: unset;
}
body#html-body {
  all: unset;
}
body,
body#html-body {
  margin: 0;
  font-family: 'OpenSans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}
a {
  outline: none;
  transition: color 0.3s;
  color: currentColor;
}
.touch a {
  transition: none;
}
.touch a:hover {
  color: currentColor;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input,
textarea {
  font-family: 'OpenSans';
}
.page-wrapper {
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.page-wrapper > * {
  width: 100%;
}
.page-wrapper > .block.product-alert {
  display: none;
}
.page-main {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--containerPadding);
  padding-right: var(--containerPadding);
  max-width: var(--msw);
  box-sizing: border-box;
  flex-grow: 1;
}
img {
  max-width: 100%;
}
[data-dropdown-container].open {
  z-index: 5;
}
[data-dropdown-container] [data-dropdown-toggle],
[data-dropdown-container] [data-dropdown-content] {
  box-sizing: border-box;
}
[data-dropdown-container] [data-dropdown-toggle] {
  padding: unset;
  color: currentColor;
}
[data-dropdown-container] [data-dropdown-toggle] .icon-arrow_down {
  margin-left: 7px;
}
[data-dropdown-container] [data-dropdown-content] {
  padding: unset;
  box-shadow: none;
}
.button-extend {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
}
.button-extend.disabled {
  pointer-events: none;
}
button.button,
button.button-border {
  display: block;
}
.button {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
}
.button.disabled {
  pointer-events: none;
}
.button.disabled {
  background: #535353;
}
.d_desktop .button:hover {
  background-color: #ffcd07;
}
.button:active {
  background-color: #ffb907 !important;
}
.button-border {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #1c66a3;
}
.button-border.disabled {
  pointer-events: none;
}
.d_desktop .button-border:hover {
  border-color: #035793;
  background-color: #ffffff;
}
.button-border.disabled {
  border-color: #535353;
}
.button-border:active {
  border-color: #1c66a3 !important;
  background-color: #ffffff !important;
}
.button-no-border {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #1c66a3;
}
.button-no-border.disabled {
  pointer-events: none;
}
.d_desktop .button-no-border:hover {
  border-color: #035793;
  background-color: #ffffff;
}
.button-no-border.disabled {
  border-color: #535353;
}
.button-no-border:active {
  border-color: #1c66a3 !important;
  background-color: #ffffff !important;
}
.button-no-border:not(:hover) {
  border-color: #ffffff;
}
.button-small {
  font-size: 12px;
  height: 36px;
}
a.button,
a.button-border {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page.messages {
  --messagePadding: 0px;
  --borderRadius: 0;
  --translateTop: 0px;
  --minHeight: 80px;
  background: transparent;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 50%;
  width: calc(var(--content) + (var(--messagePadding) * 2));
  margin-left: calc((var(--content) / 2 + var(--messagePadding)) * -1);
  transform: translateY(calc((100% + 20px) * -1));
  transition: transform 0.2s linear;
  border-radius: var(--borderRadius);
}
.d_desktop .page.messages {
  --borderRadius: 16px;
  --translateTop: 10px;
  --minHeight: 52px;
}
.page.messages .hide-message {
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -16px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hideColor);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, color 0.3s;
}
.d_desktop .page.messages .hide-message {
  transition: color 0.3s;
}
.d_desktop .page.messages .hide-message:hover {
  color: #1c66a3;
}
.page.messages .hide-message .icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.page.messages.show {
  transform: translateY(var(--translateTop));
}
.page.messages.show .hide-message {
  opacity: 1;
  visibility: visible;
}
.page.messages [role="alert"]:not(:last-child) {
  display: none;
}
.page.messages .boundBlock {
  padding: 0 !important;
}
.page.messages .messages .message-success,
.page.messages .messages .message-error {
  min-height: var(--minHeight);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 16px 45px 16px 24px;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  position: relative;
  border-radius: var(--borderRadius);
  --hideColor: #1c66a3;
}
.d_mobile .page.messages .messages .message-success,
.d_mobile .page.messages .messages .message-error {
  font-size: 14px;
  line-height: 16px;
}
.d_desktop .page.messages .messages .message-success,
.d_desktop .page.messages .messages .message-error {
  padding: 16px 50px;
}
.page.messages .messages .message-success > div:not(.hide-message),
.page.messages .messages .message-error > div:not(.hide-message) {
  position: relative;
  display: block;
  padding-left: 30px;
  box-sizing: border-box;
}
.d_desktop .page.messages .messages .message-success > div:not(.hide-message),
.d_desktop .page.messages .messages .message-error > div:not(.hide-message) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.page.messages .messages .message-success > div:not(.hide-message) a,
.page.messages .messages .message-error > div:not(.hide-message) a {
  margin: 0 5px;
}
.page.messages .messages .message-success > div:not(.hide-message):before,
.page.messages .messages .message-error > div:not(.hide-message):before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -16px;
  left: -15px;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 20px;
  filter: #1c66a3;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
}
.d_desktop .page.messages .messages .message-success > div:not(.hide-message):before,
.d_desktop .page.messages .messages .message-error > div:not(.hide-message):before {
  top: -7px;
  margin-top: 0;
}
.page.messages .messages .message-success a,
.page.messages .messages .message-error a {
  text-decoration: underline;
  color: currentColor;
}
.page.messages .messages .message-success a:hover,
.page.messages .messages .message-error a:hover {
  text-decoration: none;
}
.page.messages .messages .message-success {
  color: #333333;
  background: #ffffff;
}
.page.messages .messages .message-success > div:before {
  background-image: url(/media/images/success.svg);
  border-color: #33cc67 !important;
}
.page.messages .messages .message-error {
  color: #ff0000;
  background: #ffffff;
  --hideColor: #ff0000;
}
.page.messages .messages .message-error > div:before {
  background-image: url(/media/images/error.svg);
}
.page.messages .messages .message + .message {
  margin-top: 10px;
}
.breadcrumbs {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--containerPadding);
  padding-right: var(--containerPadding);
  max-width: var(--msw);
  box-sizing: border-box;
}
.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs .items {
  display: flex;
  background: #fff;
  padding: 15px 0 20px 0;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumbs .items::-webkit-scrollbar {
  display: none;
}
.d_desktop .breadcrumbs .items {
  padding-bottom: 28px;
}
.breadcrumbs .items .item {
  flex-shrink: 0;
  align-items: center;
  display: flex;
}
.breadcrumbs .items .item a {
  color: #7f8596;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.d_desktop .breadcrumbs .items .item a {
  transition: color 0.3s;
}
.d_desktop .breadcrumbs .items .item a:hover {
  color: #1c66a3;
}
.breadcrumbs .items .item a:after {
  content: '';
  display: flex;
  width: 4px;
  height: 4px;
  margin: 0 14px 0 10px;
  border-width: 1.5px 1.5px 0 0;
  border-style: solid;
  border-color: currentColor;
  transform: rotate(45deg);
}
.breadcrumbs .items .item a,
.breadcrumbs .items .item strong {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}
.breadcrumbs .items .item strong {
  cursor: default;
  color: #333333;
}
.section-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #333333;
  margin-bottom: 24px;
}
.section-title__link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #1c66a3;
  display: flex;
  align-items: center;
}
.d_desktop .section-title__link {
  transition: color 0.3s;
}
.d_desktop .section-title__link:hover {
  color: #333333;
}
.section-title__link svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
.d_desktop .section-title {
  font-size: 32px;
  margin-bottom: 40px;
}
.d_desktop .section-title + .owl-carousel,
.d_desktop .section-title ~ * .owl-carousel,
.d_desktop .section-title + .owl-loaded,
.d_desktop .section-title ~ * .owl-loaded {
  padding-top: 12px;
}
.theme-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #333333;
  margin-bottom: 24px;
}
.theme-title__link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #1c66a3;
  display: flex;
  align-items: center;
}
.d_desktop .theme-title__link {
  transition: color 0.3s;
}
.d_desktop .theme-title__link:hover {
  color: #333333;
}
.theme-title__link svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
.d_desktop .theme-title {
  font-size: 32px;
  margin-bottom: 40px;
}
.d_desktop .theme-title + .owl-carousel,
.d_desktop .theme-title ~ * .owl-carousel,
.d_desktop .theme-title + .owl-loaded,
.d_desktop .theme-title ~ * .owl-loaded {
  padding-top: 12px;
}
.show-more {
  height: 20px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  color: #1c66a3;
}
.d_desktop .show-more {
  transition: color 0.3s;
}
.d_desktop .show-more:hover {
  color: #333333;
}
.show-more .text {
  display: block;
  line-height: 1;
}
.show-more .icon-block {
  width: 20px;
  height: 20px;
}
.show-more .icon-block .icon {
  width: 100%;
  height: 100%;
  position: relative;
  transform: rotate(-90deg);
}
.form-extend fieldset {
  border: none;
  display: block;
}
.form-extend .field {
  --inputHeight: 56px;
  --padding: 20px;
  --borderRadius: 0;
  --fieldsBg: #ffffff;
  position: relative;
  margin-bottom: var(--padding);
  display: flex;
  flex-direction: column;
}
.form-extend .field:not(.choice) .label {
  display: none;
}
.form-extend .field.captcha {
  display: flex;
  flex-direction: column;
}
.form-extend .field.captcha .compose-wrap {
  order: -1;
  margin-bottom: 15px;
}
.form-extend .field.default-shown-caption input:not([type="radio"]):not([type="checkbox"]),
.form-extend .field.default-shown-caption textarea {
  padding-top: 20px !important;
}
.form-extend .field.default-shown-caption input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill,
.form-extend .field.default-shown-caption textarea:-webkit-autofill {
  -webkit-text-fill-color: #333333 !important;
}
.form-extend .field.default-shown-caption i.caption-text {
  transform: translateY(-9px);
  font-style: italic;
  font-size: 13px;
  line-height: 1.4;
}
.form-extend .field.password {
  margin-bottom: calc(var(--padding) + 5px);
}
.form-extend .field input:not([type="radio"]):not([type="checkbox"]),
.form-extend .field textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ebebee;
  padding: 0 var(--padding);
  font-size: 14px;
  line-height: 1.6;
  border-radius: 0;
  color: #333333;
}
.form-extend .field input:not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder,
.form-extend .field textarea::-webkit-input-placeholder {
  color: #535353;
  opacity: 1;
}
.form-extend .field input:not([type="radio"]):not([type="checkbox"])::-moz-placeholder,
.form-extend .field textarea::-moz-placeholder {
  color: #535353;
  opacity: 1;
}
.form-extend .field input:not([type="radio"]):not([type="checkbox"]):-ms-input-placeholder,
.form-extend .field textarea:-ms-input-placeholder {
  color: #535353;
  opacity: 1;
}
.form-extend .field input:not([type="radio"]):not([type="checkbox"]):-moz-placeholder,
.form-extend .field textarea:-moz-placeholder {
  color: #535353;
  opacity: 1;
}
.form-extend .field input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill,
.form-extend .field textarea:-webkit-autofill {
  -webkit-text-fill-color: #333333;
  box-shadow: inset 0 0 0 500px var(--fieldsBg);
}
.form-extend .field input:not([type="radio"]):not([type="checkbox"]) {
  height: var(--inputHeight);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.form-extend .field .phonemask-validation {
  -webkit-appearance: none;
}
.form-extend .field textarea {
  -webkit-appearance: none;
  border-radius: var(--borderRadius);
  resize: vertical;
  min-height: 170px;
  padding: var(--padding);
  background: var(--fieldsBg);
}
.form-extend .field textarea.mage-error {
  box-shadow: 0px 2px 0px rgba(255, 95, 95, 0.36);
}
.form-extend .field [id="password-strength-meter-container"] {
  font-size: 11px;
  position: absolute;
  left: 0;
  top: 100%;
  /* &.password-none,
			&.password-weak {
				span {
					color: red;
				}
			} */
}
.form-extend .field [id="password-strength-meter-container"] span {
  color: red;
}
.form-extend .field [id="password-strength-meter-container"].password-very-strong span {
  color: #50C83A;
}
.form-extend .field > div.mage-error {
  order: 1;
}
.form-extend .password-wrap {
  position: relative;
}
.form-extend .password-wrap .icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0.3s;
}
.form-extend .password-wrap input[type="password"][style*="display: none"] ~ .icon,
.form-extend .password-wrap input[type="password"][style*="display:none"] ~ .icon {
  display: none;
}
.form-extend .password-wrap input[type="password"] ~ .icon-eye-disabled {
  visibility: hidden;
  opacity: 0;
}
.form-extend .password-wrap input[type="text"] ~ .icon-eye {
  visibility: hidden;
  opacity: 0;
}
.form-extend button {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
}
.form-extend button.disabled {
  pointer-events: none;
}
.form-extend button.disabled {
  background: #535353;
}
.d_desktop .form-extend button:hover {
  background-color: #ffcd07;
}
.form-extend button:active {
  background-color: #ffb907 !important;
}
input[type="radio"] {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 0 #ffffff;
  border: 1px solid #ebebee;
  transition: background 0.3s, box-shadow 0.3s, border 0.3s;
}
input[type="radio"]:checked {
  background: #1c66a3;
  box-shadow: inset 0 0 0 6px #ffffff;
  border-color: #1c66a3;
}
.checkbox-extend {
  display: inline-flex;
  line-height: 20px;
  cursor: pointer;
}
.checkbox-extend input[type="checkbox"] {
  flex-shrink: 0;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -1px 10px 0 0;
  cursor: pointer;
  background-color: #f3f9ff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 14px;
  border: none;
  transition: background-color 0.3s, background-size 0.2s, border-color 0.3s;
}
.checkbox-extend input[type="checkbox"]:checked {
  background-image: url(/media/images/check.svg);
  background-color: #1c66a3;
}
.ln_overlay,
.loading-mask-block,
.loading-mask {
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
}
.ln_overlay .loader,
.loading-mask-block .loader,
.loading-mask .loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.ln_overlay .loader p,
.loading-mask-block .loader p,
.loading-mask .loader p {
  display: none;
}
.ln_overlay .loader img,
.loading-mask-block .loader img,
.loading-mask .loader img {
  display: none;
}
.ln_overlay .loader:after,
.loading-mask-block .loader:after,
.loading-mask .loader:after {
  content: '';
  display: inline-flex;
  width: 100px;
  height: 100px;
  background: url(/media/images/loader.svg) no-repeat 50% 50%;
  background-size: contain;
}
.custom-loader:after {
  content: '';
  display: inline-flex;
  width: 100px;
  height: 100px;
  background: url(/media/images/loader.svg) no-repeat 50% 50%;
  background-size: contain;
}
.loading-mask-block {
  position: absolute;
  z-index: 10;
}
.ln_overlay,
.loading-mask {
  position: fixed;
  z-index: 999;
}
body.ajax-loading .loading-mask {
  display: block;
}
.messengers-items {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.messengers-items a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.messengers-items a svg {
  max-width: 17px;
  max-height: 17px;
  fill: #ffffff;
}
.messengers-items li {
  transition: opacity .3s;
}
.d_desktop .messengers-items li:hover {
  opacity: .8;
}
.messengers-items li.telegram a {
  background: #1DB2E1;
}
.messengers-items li.viber a {
  background: #8A58AC;
}
.messengers-items li.whatsapp a {
  background: #07C425;
}
.messengers-items li + li {
  margin-left: 10px;
}
.advancedproductlabel {
  font-weight: 600;
  font-size: 11px;
  line-height: 1.6;
  padding: 0 4px;
  position: relative;
  letter-spacing: 0.07em;
  color: var(--background-color);
  border: 1px solid var(--background-color);
  background: #ffffff;
  display: inline-flex;
  margin-bottom: 5px;
}
.advancedproductlabel + .advancedproductlabel {
  margin-left: 5px;
}
.advancedproductlabel .advancedproductlabel__inner::before {
  content: '';
  display: block;
  position: absolute;
  background: #ffffff;
  width: 3px;
  height: 1px;
  bottom: -1px;
  left: 0;
}
.advancedproductlabel::before,
.advancedproductlabel::after {
  content: '';
  display: block;
  position: absolute;
  background: var(--background-color);
  width: 1px;
  top: calc(100% + 1px);
}
.advancedproductlabel::after {
  height: 5px;
  top: 100%;
  left: 1px;
  transform: rotate(45deg);
}
.advancedproductlabel::before {
  width: 1px;
  height: 4px;
  left: -1px;
}
.d_mobile .pagebuilder-mobile-hidden {
  display: none;
}
.d_desktop .pagebuilder-mobile-only {
  display: none;
}
[data-element="main"] [data-content-type="button-item"] {
  margin: 10px;
}
[data-element="main"] [data-content-type="button-item"] .pagebuilder-button-primary {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
  color: #fff !important;
}
[data-element="main"] [data-content-type="button-item"] .pagebuilder-button-primary.disabled {
  pointer-events: none;
}
[data-element="main"] [data-content-type="button-item"] .pagebuilder-button-primary.disabled {
  background: #535353;
}
.d_desktop [data-element="main"] [data-content-type="button-item"] .pagebuilder-button-primary:hover {
  background-color: #ffcd07;
}
[data-element="main"] [data-content-type="button-item"] .pagebuilder-button-primary:active {
  background-color: #ffb907 !important;
}
[data-element="main"] [data-content-type="button-item"] .pagebuilder-button-primary + .pagebuilder-button-primary {
  margin-left: 5px;
}
[data-element="main"],
[data-element="main"] * {
  margin-top: revert;
  margin-bottom: revert;
}
[data-element="main"] iframe {
  max-width: 100%;
}
.pagebuilder-column-line {
  column-gap: 10px;
  row-gap: 10px;
  word-break: break-word;
}
.pagebuilder-column-line .pagebuilder-column[class*="background-image"]:empty {
  padding-top: 30%;
  margin-bottom: 20px;
  background-size: cover !important;
  background-position: 50% 50%!important;
}
.d_mobile:not(.v_tablet) .pagebuilder-column-line {
  flex-direction: column;
}
.d_mobile:not(.v_tablet) .pagebuilder-column-line > * {
  min-width: 100%;
}
.pagebuilder-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 50%;
  margin-bottom: 20px !important;
}
.pagebuilder-video-wrapper video,
.pagebuilder-video-wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
[data-pb-style][class*="background-image"] {
  overflow: hidden;
}
.pagebuilder-banner-wrapper {
  background-attachment: initial !important;
}
.pagebuilder-slider,
.widget-product-carousel,
.block-products-list {
  margin-bottom: 32px;
}
.pagebuilder-slider button,
.widget-product-carousel button,
.block-products-list button {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
}
.pagebuilder-slider button.disabled,
.widget-product-carousel button.disabled,
.block-products-list button.disabled {
  pointer-events: none;
}
.pagebuilder-slider button.disabled,
.widget-product-carousel button.disabled,
.block-products-list button.disabled {
  background: #535353;
}
.d_desktop .pagebuilder-slider button:hover,
.d_desktop .widget-product-carousel button:hover,
.d_desktop .block-products-list button:hover {
  background-color: #ffcd07;
}
.pagebuilder-slider button:active,
.widget-product-carousel button:active,
.block-products-list button:active {
  background-color: #ffb907 !important;
}
.pagebuilder-slider .pagebuilder-slide-wrapper,
.widget-product-carousel .pagebuilder-slide-wrapper,
.block-products-list .pagebuilder-slide-wrapper {
  position: relative;
  color: #fff;
  min-height: 400px !important;
  background-size: cover !important;
}
.pagebuilder-slider .pagebuilder-slide-wrapper .pagebuilder-overlay,
.widget-product-carousel .pagebuilder-slide-wrapper .pagebuilder-overlay,
.block-products-list .pagebuilder-slide-wrapper .pagebuilder-overlay {
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
}
.pagebuilder-slider .pagebuilder-slide-wrapper button,
.widget-product-carousel .pagebuilder-slide-wrapper button,
.block-products-list .pagebuilder-slide-wrapper button {
  margin-top: 10px;
  height: 36px;
  padding: 0 16px;
  font-size: 12px;
}
.pagebuilder-slider .slick-list,
.widget-product-carousel .slick-list,
.block-products-list .slick-list {
  width: 100%;
  overflow: hidden;
}
.pagebuilder-slider .slick-list .slick-track,
.widget-product-carousel .slick-list .slick-track,
.block-products-list .slick-list .slick-track {
  display: flex;
}
.pagebuilder-slider .slick-list .slick-slide,
.widget-product-carousel .slick-list .slick-slide,
.block-products-list .slick-list .slick-slide {
  display: flex;
  flex-direction: column;
}
.pagebuilder-slider .slick-list .slick-slide > div,
.widget-product-carousel .slick-list .slick-slide > div,
.block-products-list .slick-list .slick-slide > div {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.pagebuilder-slider .product-item::before,
.widget-product-carousel .product-item::before,
.block-products-list .product-item::before {
  display: none !important;
}
.pagebuilder-slider .product-item-photo,
.widget-product-carousel .product-item-photo,
.block-products-list .product-item-photo {
  padding-bottom: 10px;
}
.pagebuilder-slider .product-item-photo .product-image-wrapper,
.widget-product-carousel .product-item-photo .product-image-wrapper,
.block-products-list .product-item-photo .product-image-wrapper {
  display: block;
  position: relative;
  padding-bottom: 100% !important;
}
.pagebuilder-slider .product-item-photo .product-image-wrapper img,
.widget-product-carousel .product-item-photo .product-image-wrapper img,
.block-products-list .product-item-photo .product-image-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.pagebuilder-slider .product-item .product-item-details,
.widget-product-carousel .product-item .product-item-details,
.block-products-list .product-item .product-item-details {
  padding: 0 10px;
}
.pagebuilder-slider .product-item .product-item-name,
.widget-product-carousel .product-item .product-item-name,
.block-products-list .product-item .product-item-name {
  text-align: left;
  order: -1;
  width: 100%;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 13px;
  font-weight: 400;
  max-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pagebuilder-slider .product-item .product-item-name a,
.widget-product-carousel .product-item .product-item-name a,
.block-products-list .product-item .product-item-name a {
  color: inherit;
  text-decoration: none;
}
.pagebuilder-slider .product-item .product-reviews,
.widget-product-carousel .product-item .product-reviews,
.block-products-list .product-item .product-reviews {
  display: none;
}
.pagebuilder-slider .product-item [data-role*="swatch-option"],
.widget-product-carousel .product-item [data-role*="swatch-option"],
.block-products-list .product-item [data-role*="swatch-option"] {
  order: -1;
  width: 100%;
  margin-top: 12px;
}
.pagebuilder-slider .product-item .swatch-attribute,
.widget-product-carousel .product-item .swatch-attribute,
.block-products-list .product-item .swatch-attribute {
  margin-bottom: 13px;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.pagebuilder-slider .product-item .swatch-attribute .swatch-input,
.widget-product-carousel .product-item .swatch-attribute .swatch-input,
.block-products-list .product-item .swatch-attribute .swatch-input {
  display: none;
}
.pagebuilder-slider .product-item .swatch-attribute-selected-option,
.widget-product-carousel .product-item .swatch-attribute-selected-option,
.block-products-list .product-item .swatch-attribute-selected-option {
  display: none;
}
.pagebuilder-slider .product-item .swatch-attribute-label,
.widget-product-carousel .product-item .swatch-attribute-label,
.block-products-list .product-item .swatch-attribute-label {
  margin-right: 15px;
  display: none;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}
.pagebuilder-slider .product-item .swatch-attribute-label::first-letter,
.widget-product-carousel .product-item .swatch-attribute-label::first-letter,
.block-products-list .product-item .swatch-attribute-label::first-letter {
  text-transform: uppercase;
}
.pagebuilder-slider .product-item .swatch-attribute-options,
.widget-product-carousel .product-item .swatch-attribute-options,
.block-products-list .product-item .swatch-attribute-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.pagebuilder-slider .product-item .swatch-attribute .swatch-option.color,
.widget-product-carousel .product-item .swatch-attribute .swatch-option.color,
.block-products-list .product-item .swatch-attribute .swatch-option.color {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: opacity .3s;
}
.pagebuilder-slider .product-item .swatch-attribute .swatch-option.color::before,
.widget-product-carousel .product-item .swatch-attribute .swatch-option.color::before,
.block-products-list .product-item .swatch-attribute .swatch-option.color::before {
  content: '';
  display: block;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: inherit;
  border: 1px solid #1c66a3;
  opacity: 0;
  transition: opacity .3s;
}
.pagebuilder-slider .product-item .swatch-attribute .swatch-option.color + .swatch-option,
.widget-product-carousel .product-item .swatch-attribute .swatch-option.color + .swatch-option,
.block-products-list .product-item .swatch-attribute .swatch-option.color + .swatch-option {
  margin-left: 10px;
}
.d_desktop .pagebuilder-slider .product-item .swatch-attribute .swatch-option.color:hover,
.d_desktop .widget-product-carousel .product-item .swatch-attribute .swatch-option.color:hover,
.d_desktop .block-products-list .product-item .swatch-attribute .swatch-option.color:hover {
  opacity: .8;
}
.pagebuilder-slider .product-item .swatch-attribute .swatch-option.color.selected::before,
.widget-product-carousel .product-item .swatch-attribute .swatch-option.color.selected::before,
.block-products-list .product-item .swatch-attribute .swatch-option.color.selected::before {
  opacity: 1;
}
.pagebuilder-slider .product-item .swatch-attribute .swatch-option.text,
.widget-product-carousel .product-item .swatch-attribute .swatch-option.text,
.block-products-list .product-item .swatch-attribute .swatch-option.text {
  padding: 3px 14px;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  min-width: 60px;
  border: 1px solid #ebebee;
  transition: border .3s, opacity .3s;
}
.pagebuilder-slider .product-item .swatch-attribute .swatch-option.text + .swatch-option,
.widget-product-carousel .product-item .swatch-attribute .swatch-option.text + .swatch-option,
.block-products-list .product-item .swatch-attribute .swatch-option.text + .swatch-option {
  margin-left: -1px;
}
.d_desktop .pagebuilder-slider .product-item .swatch-attribute .swatch-option.text:hover,
.d_desktop .widget-product-carousel .product-item .swatch-attribute .swatch-option.text:hover,
.d_desktop .block-products-list .product-item .swatch-attribute .swatch-option.text:hover {
  opacity: .8;
}
.pagebuilder-slider .product-item .swatch-attribute .swatch-option.text.selected,
.widget-product-carousel .product-item .swatch-attribute .swatch-option.text.selected,
.block-products-list .product-item .swatch-attribute .swatch-option.text.selected {
  border-color: #1c66a3;
  z-index: 1;
}
.pagebuilder-slider .product-item .swatch-attribute + .swatch-attribute,
.widget-product-carousel .product-item .swatch-attribute + .swatch-attribute,
.block-products-list .product-item .swatch-attribute + .swatch-attribute {
  margin-top: 30px;
}
.pagebuilder-slider .product-item .price-box,
.widget-product-carousel .product-item .price-box,
.block-products-list .product-item .price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
}
.d_mobile .pagebuilder-slider .product-item .price-box,
.d_mobile .widget-product-carousel .product-item .price-box,
.d_mobile .block-products-list .product-item .price-box {
  margin: 0 0 12px;
  width: 100%;
}
.pagebuilder-slider .product-item .price-box .price-label,
.widget-product-carousel .product-item .price-box .price-label,
.block-products-list .product-item .price-box .price-label {
  display: none !important;
}
.pagebuilder-slider .product-item .price-box .price,
.widget-product-carousel .product-item .price-box .price,
.block-products-list .product-item .price-box .price {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  display: inline-flex;
}
.pagebuilder-slider .product-item .price-box .old-price,
.widget-product-carousel .product-item .price-box .old-price,
.block-products-list .product-item .price-box .old-price {
  display: flex;
  align-items: center;
}
.pagebuilder-slider .product-item .price-box .old-price .percent,
.widget-product-carousel .product-item .price-box .old-price .percent,
.block-products-list .product-item .price-box .old-price .percent {
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-right: 10px;
  padding: 3px 8px;
  background: #feebe9;
  color: #f6381e;
}
.pagebuilder-slider .product-item .price-box .old-price .percent span,
.widget-product-carousel .product-item .price-box .old-price .percent span,
.block-products-list .product-item .price-box .old-price .percent span {
  background: transparent !important;
}
.pagebuilder-slider .product-item .price-box .old-price .price,
.widget-product-carousel .product-item .price-box .old-price .price,
.block-products-list .product-item .price-box .old-price .price {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: #535353;
  position: relative;
}
.pagebuilder-slider .product-item .price-box .old-price .price::before,
.widget-product-carousel .product-item .price-box .old-price .price::before,
.block-products-list .product-item .price-box .old-price .price::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
  background: #1c66a3;
}
.pagebuilder-slider .product-item .product-item-details,
.widget-product-carousel .product-item .product-item-details,
.block-products-list .product-item .product-item-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.d_mobile .pagebuilder-slider .product-item .product-item-inner,
.d_mobile .widget-product-carousel .product-item .product-item-inner,
.d_mobile .block-products-list .product-item .product-item-inner {
  margin-right: auto;
}
.pagebuilder-slider .product-item .product-item-actions .action.tocart,
.widget-product-carousel .product-item .product-item-actions .action.tocart,
.block-products-list .product-item .product-item-actions .action.tocart {
  height: 36px;
  padding: 0 16px;
  font-size: 12px;
}
.pagebuilder-slider .product-item .product-item-actions .actions-secondary,
.widget-product-carousel .product-item .product-item-actions .actions-secondary,
.block-products-list .product-item .product-item-actions .actions-secondary {
  display: none;
}
.pagebuilder-slider .slick-dots,
.widget-product-carousel .slick-dots,
.block-products-list .slick-dots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.pagebuilder-slider .slick-dots li,
.widget-product-carousel .slick-dots li,
.block-products-list .slick-dots li {
  padding: 0 !important;
  cursor: pointer;
  width: 10px;
  height: 10px;
  list-style: none;
}
.pagebuilder-slider .slick-dots li::before,
.widget-product-carousel .slick-dots li::before,
.block-products-list .slick-dots li::before {
  content: '' !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  transform: translate(-50%, -50%);
  border-radius: 50% !important;
  background: #ebebee !important;
}
.pagebuilder-slider .slick-dots li button,
.widget-product-carousel .slick-dots li button,
.block-products-list .slick-dots li button {
  display: none;
}
.pagebuilder-slider .slick-dots li.slick-active::before,
.widget-product-carousel .slick-dots li.slick-active::before,
.block-products-list .slick-dots li.slick-active::before {
  background: #1c66a3 !important;
}
.pagebuilder-slider .slick-dots li + li,
.widget-product-carousel .slick-dots li + li,
.block-products-list .slick-dots li + li {
  margin-left: 5px;
}
.block-products-list .widget-product-grid {
  display: flex;
  flex-wrap: wrap;
}
.block-products-list .widget-product-grid > * {
  width: 50%;
  max-width: 50%;
}
.v_big_desktop .block-products-list .widget-product-grid > * {
  width: 33.33%;
  max-width: 33.33%;
}
.pagebuilder-slider {
  max-width: var(--content);
}
.pagebuilder-slider:not(.slick-initialized) [data-content-type*="slide"] + [data-content-type*="slide"] {
  display: none;
}
.widget-product-carousel:not(.slick-initialized) {
  list-style: none;
  display: flex;
  align-items: stretch;
}
.widget-product-carousel:not(.slick-initialized) .product-item {
  padding: 0;
}
.widget-product-carousel:not(.slick-initialized) .product-item::before {
  display: none;
}
.v_tablet .widget-product-carousel:not(.slick-initialized) .product-item,
.d_desktop .widget-product-carousel:not(.slick-initialized) .product-item {
  width: 33.33%;
}
.v_tablet .widget-product-carousel:not(.slick-initialized) .product-item:nth-child(3) ~ *,
.d_desktop .widget-product-carousel:not(.slick-initialized) .product-item:nth-child(3) ~ * {
  display: none !important;
}
.d_mobile:not(.v_tablet) .widget-product-carousel:not(.slick-initialized) .product-item {
  width: 50%;
}
.d_mobile:not(.v_tablet) .widget-product-carousel:not(.slick-initialized) .product-item:nth-child(2) ~ * {
  display: none !important;
}
.tabs-navigation {
  display: flex;
  list-style: none;
  border-bottom: 1px solid #EBEBEE;
  margin: 0 0 24px;
}
.tabs-navigation a {
  text-decoration: none;
  display: block;
  padding: 12px 20px;
  color: inherit !important;
}
.tabs-navigation:not(.ui-tabs-nav) + .tabs-content [data-content-type*="tab-item"] + [data-content-type*="tab-item"] {
  display: none;
}
.tabs-navigation .tab-header {
  background: #fff;
  border: 1px solid #EBEBEE;
  margin: 0 -1px -1px 0;
  position: relative;
  color: #333333;
  padding: 0;
}
.tabs-navigation .tab-header::before {
  display: none;
}
.tabs-navigation .tab-header + .tab-header {
  margin: 0;
}
.tabs-navigation .tab-header.ui-state-active {
  border-color: #1c66a3;
  z-index: 1;
}
.tab-align-center .ui-tabs-nav {
  writing-mode: horizontal-tb;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.grid-extend {
  --colCount: 1;
  --columns: 100%;
  --rows: auto;
  --h_gap: 0px;
  --v_gap: 0px;
  --gap: var(--v_gap) var(--h_gap);
  --h_align: unset;
  --v_align: unset;
  display: grid;
  grid-template-columns: var(--columns);
  grid-template-rows: var(--rows);
  grid-gap: var(--gap);
  justify-content: var(--h_align);
  align-items: var(--v_align);
}
.grid-extend.equal {
  --columns: repeat(var(--colCount), calc( ( 100% - ( ( var(--colCount) - 1 ) * var(--h_gap) ) ) / var(--colCount) ));
}
.v_small_desktop.nav-open .page-wrapper,
.d_mobile.nav-open .page-wrapper,
.v_small_desktop.overlay .page-wrapper,
.page-wrapper .d_mobile.overlay {
  padding-top: 60px;
}
.page-header {
  --headerMargin: 30px;
  background: #1c66a3;
  position: sticky;
  top: 0;
  z-index: 6;
}
.page-header ul {
  list-style: none;
}
.page-header a {
  text-decoration: none;
}
.page-header .header-icon-block .icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.d_desktop:not(.v_small_desktop) .page-header {
  top: -131px;
}
.v_small_desktop.nav-open .page-header,
.d_mobile.nav-open .page-header,
.v_small_desktop.overlay .page-header,
.d_mobile.overlay .page-header {
  position: fixed;
}
.header.content {
  max-width: var(--msw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--containerPadding);
  padding-right: var(--containerPadding);
}
.header-top {
  color: #ffffff;
  padding-top: 17px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-wrap: nowrap;
}
.d_desktop .header-top a {
  transition: color 0.3s;
}
.d_desktop .header-top a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.header-top .navigation {
  line-height: 1.4;
  font-size: 13px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header-top .navigation li + li {
  margin-left: var(--headerMargin);
}
.header-top__content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-top__content > * + * {
  margin-left: var(--headerMargin);
}
.header-top__content-mobile {
  display: flex;
  align-items: center;
}
.header-top__content-mobile > * + * {
  margin-left: var(--headerMargin);
}
.header-bottom .nav-toggle {
  display: none;
}
.header-bottom-wrap-top {
  color: #ffffff;
  display: flex;
  align-items: center;
}
.header-bottom-wrap-top .logo-wrap {
  width: 225px;
  flex-shrink: 0;
  height: 40px;
}
.header-bottom-wrap-top .logo-wrap .logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header-bottom-wrap-top .logo-wrap .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 0 50%;
}
.header-bottom-wrap-bottom {
  --height: 55px;
  height: var(--height);
  position: relative;
  color: #ffffff;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: height .3s;
}
.header-bottom-wrap-bottom::before {
  content: '';
  z-index: -1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: var(--screenWidth);
  height: 100%;
  background: #035793;
  transition: background .3s;
}
.header-bottom-wrap-bottom .logo-wrap {
  --logoWidth: 0;
}
.header-bottom-wrap-bottom .logo-wrap .logo {
  height: 32px;
  width: var(--logoWidth);
  position: relative;
  display: block;
}
.header-bottom-wrap-bottom .logo-wrap .logo img {
  height: 100%;
  width: var(--logoWidth);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  clip: rect(0, var(--logoWidth), auto, 0px);
  transition: clip .3s;
}
.header-bottom-wrap-bottom__nav {
  width: 100%;
}
.header-bottom-wrap-bottom__nav[data-dropdown-container] {
  position: static;
}
.header-bottom-wrap-bottom__nav[data-dropdown-container] > [data-dropdown-content] {
  display: block;
  position: static;
  background: transparent;
}
.header-bottom-wrap-bottom__nav[data-dropdown-container] > [data-dropdown-content] > [data-dropdown-close] {
  display: none;
}
.header-bottom-wrap-bottom .header-bottom-wrap-inner-icons .header-icon-block {
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header-bottom-wrap-bottom .header-bottom-wrap-inner-icons .header-icon-block .icon {
  fill: transparent;
  margin-right: 5px;
  transition: fill .3s;
}
.header-bottom-wrap-bottom .header-bottom-wrap-inner-icons .header-icon-block .count {
  min-width: 17px;
  font-size: 14px;
  line-height: 1.6;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom .header-bottom-wrap-inner-icons {
  position: absolute;
  height: 32px;
  left: calc(100% - (107px + var(--headerMargin)));
  bottom: calc(100% + 27px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom .header-bottom-wrap-inner-icons .header-icon-block:hover .icon {
  fill: #ffffff;
}
.d_desktop.sticky:not(.v_small_desktop) .header-bottom-wrap-bottom .header-bottom-wrap-inner-icons {
  position: static;
  margin-left: calc(var(--headerMargin) + 15px);
  order: 1;
  flex-shrink: 0;
}
.header-bottom-wrap-bottom .level0 .advancedmenu-content {
  color: #333333;
}
.d_desktop.sticky:not(.v_small_desktop) .header-bottom-wrap-bottom {
  --height: 70px;
}
.d_desktop.sticky:not(.v_small_desktop) .header-bottom-wrap-bottom .logo-wrap {
  --logoWidth: 27px;
  margin-right: 30px;
}
.header-warehouse {
  margin: 0 40px 0 auto;
}
.header-warehouse-current {
  font-size: 14px;
  line-height: 20px;
  background: transparent !important;
  display: flex;
  align-items: center;
}
.header-warehouse-current[data-dropdown-toggle] {
  color: rgba(255, 255, 255, 0.5);
}
.header-warehouse-current span {
  color: #ffffff;
  margin-left: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-warehouse-current::after {
  content: '';
  width: 0px;
  height: 0px;
  flex-shrink: 0;
  color: #ffffff;
  margin: 0 4px -3px 8px;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: currentColor transparent transparent transparent;
  transition: transform .3s;
}
.header-warehouse-wrapper {
  position: absolute !important;
  box-shadow: 0px 31px 48px 1px rgba(169, 161, 160, 0.26) !important;
}
.d_desktop.sticky:not(.v_small_desktop) .header-warehouse-wrapper {
  display: none !important;
}
.header-warehouse-wrapper[data-dropdown-content] {
  padding: 16px;
}
.d_desktop:not(.v_small_desktop) .header-warehouse-wrapper[data-dropdown-content] {
  top: calc(100% + 16px);
}
.header-warehouse-wrapper .close-icon-block {
  display: none;
}
.header-warehouse-wrapper .confirm-warehouse {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.header-warehouse-wrapper .confirm-warehouse .warehouse-question {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  box-sizing: border-box;
  margin-bottom: 16px;
  text-align: center;
  display: block;
  white-space: nowrap;
  position: relative;
  color: #333333;
}
.header-warehouse-wrapper .confirm-warehouse .action.primary {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
  font-size: 12px;
  height: 36px;
}
.header-warehouse-wrapper .confirm-warehouse .action.primary.disabled {
  pointer-events: none;
}
.header-warehouse-wrapper .confirm-warehouse .action.primary.disabled {
  background: #535353;
}
.d_desktop .header-warehouse-wrapper .confirm-warehouse .action.primary:hover {
  background-color: #ffcd07;
}
.header-warehouse-wrapper .confirm-warehouse .action.primary:active {
  background-color: #ffb907 !important;
}
.header-warehouse-wrapper .confirm-warehouse .action.cancel {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #1c66a3;
  font-size: 12px;
  height: 36px;
}
.header-warehouse-wrapper .confirm-warehouse .action.cancel.disabled {
  pointer-events: none;
}
.d_desktop .header-warehouse-wrapper .confirm-warehouse .action.cancel:hover {
  border-color: #035793;
  background-color: #ffffff;
}
.header-warehouse-wrapper .confirm-warehouse .action.cancel.disabled {
  border-color: #535353;
}
.header-warehouse-wrapper .confirm-warehouse .action.cancel:active {
  border-color: #1c66a3 !important;
  background-color: #ffffff !important;
}
.header-warehouse-wrapper .confirm-warehouse .action + .action {
  margin-left: 16px;
}
.header-warehouse-wrapper .confirm-warehouse:not([style*="none"]) ~ .warehouse-select-another-wrapper {
  display: none;
}
.header-warehouse-wrapper .warehouse-select-another-wrapper .select-warehouse-title {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  box-sizing: border-box;
  margin-bottom: 16px;
  text-align: center;
  display: block;
  white-space: nowrap;
  position: relative;
  color: #333333;
}
.header-warehouse-wrapper .warehouse-select-another-wrapper .select-another-warehouse-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 8px;
  row-gap: 8px;
  font-size: 14px;
  line-height: 20px;
}
.header-warehouse-wrapper .warehouse-select-another-wrapper .select-another-warehouse-items .warehouse-item a {
  color: #1c66a3;
}
.d_desktop .header-warehouse-wrapper .warehouse-select-another-wrapper .select-another-warehouse-items .warehouse-item a {
  transition: color 0.3s;
}
.d_desktop .header-warehouse-wrapper .warehouse-select-another-wrapper .select-another-warehouse-items .warehouse-item a:hover {
  color: #333333;
}
.header-warehouse-wrapper .warehouse-select-another-wrapper .select-another-warehouse-items .warehouse-item a:not([href]) {
  pointer-events: none;
  color: #ffb907;
}
.header-warehouse.open .header-warehouse-current::after {
  transform: rotate(-180deg);
}
.v_small_desktop .header-warehouse,
.d_mobile .header-warehouse {
  margin: 0 0 16px;
  width: 100%;
}
.v_small_desktop .header-warehouse-current,
.d_mobile .header-warehouse-current {
  width: 100%;
  padding: 0 0 16px;
  border-bottom: 1px solid #ebebee;
  justify-content: flex-start !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v_small_desktop .header-warehouse-current[data-dropdown-toggle],
.d_mobile .header-warehouse-current[data-dropdown-toggle] {
  color: #333333;
}
.v_small_desktop .header-warehouse-current span,
.d_mobile .header-warehouse-current span,
.v_small_desktop .header-warehouse-current::after,
.d_mobile .header-warehouse-current::after {
  color: #1c66a3;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-top {
  padding: 22px 104px 22px 0;
}
.v_small_desktop .header.content > .header-top,
.d_mobile .header.content > .header-top {
  display: none;
}
.v_small_desktop .header-top,
.d_mobile .header-top {
  color: currentColor;
  flex-direction: column;
  padding-top: 30px;
  width: 100%;
}
.v_small_desktop .header-top .header-pages-nav,
.d_mobile .header-top .header-pages-nav {
  width: 100%;
  margin-bottom: calc(var(--headerMargin) - 10px);
}
.v_small_desktop .header-top .navigation,
.d_mobile .header-top .navigation {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.v_small_desktop .header-top .navigation li + li,
.d_mobile .header-top .navigation li + li {
  margin: calc(var(--headerMargin) / 2) 0 0 0;
}
.v_small_desktop .header-top__content,
.d_mobile .header-top__content {
  width: 100%;
  font-size: 13px;
  color: #1c66a3;
}
.v_small_desktop .header-top__content .header-action-trigger,
.d_mobile .header-top__content .header-action-trigger {
  display: flex;
}
.v_small_desktop .header-top__content .header-action-trigger .icon-customer,
.d_mobile .header-top__content .header-action-trigger .icon-customer {
  margin-right: 10px;
}
.v_small_desktop .header-top__content .header-bottom-wrap-inner-icons,
.d_mobile .header-top__content .header-bottom-wrap-inner-icons {
  margin-left: calc(var(--headerMargin) + 10px);
}
.v_small_desktop .header-top__content-mobile,
.d_mobile .header-top__content-mobile {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 51px;
  padding: 11px var(--headerMargin);
  max-width: 320px;
  background: #ffffff;
  color: #333333;
  z-index: 2;
}
.v_small_desktop .header-top__content-mobile::before,
.d_mobile .header-top__content-mobile::before {
  content: '';
  display: block;
  width: calc(100% - (var(--headerMargin) * 2));
  height: 1px;
  position: absolute;
  left: var(--headerMargin);
  top: 0;
  background: #ebebee;
}
.v_small_desktop .header-top__content-mobile .region-languages-container,
.d_mobile .header-top__content-mobile .region-languages-container {
  max-width: 60%;
}
.v_small_desktop .header-bottom,
.d_mobile .header-bottom {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.v_small_desktop .header-bottom .nav-toggle,
.d_mobile .header-bottom .nav-toggle {
  width: 34px;
  height: 34px;
  margin-right: 20px;
  overflow: hidden;
  flex-shrink: 0;
  padding-bottom: 3px;
  display: flex;
  align-items: flex-end;
  position: relative;
  cursor: pointer;
}
.v_small_desktop .header-bottom .nav-toggle::before,
.d_mobile .header-bottom .nav-toggle::before,
.v_small_desktop .header-bottom .nav-toggle:after,
.d_mobile .header-bottom .nav-toggle:after {
  content: '';
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  background: currentColor;
  transition: .3s;
}
.v_small_desktop .header-bottom .nav-toggle::before,
.d_mobile .header-bottom .nav-toggle::before {
  width: 100%;
  top: 3px;
}
.v_small_desktop .header-bottom .nav-toggle::after,
.d_mobile .header-bottom .nav-toggle::after {
  top: 13px;
  width: 21px;
}
.v_small_desktop .header-bottom .nav-toggle .title,
.d_mobile .header-bottom .nav-toggle .title {
  font-weight: 600;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: 1;
  text-transform: uppercase;
  transition: transform .3s, opacity .3s;
}
.v_small_desktop .header-bottom .nav-toggle.ancillary-open::before,
.d_mobile .header-bottom .nav-toggle.ancillary-open::before,
.v_small_desktop .header-bottom .nav-toggle.ancillary-open:after,
.d_mobile .header-bottom .nav-toggle.ancillary-open:after {
  width: 100%;
  left: 50%;
  top: 50%;
}
.v_small_desktop .header-bottom .nav-toggle.ancillary-open::before,
.d_mobile .header-bottom .nav-toggle.ancillary-open::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.v_small_desktop .header-bottom .nav-toggle.ancillary-open::after,
.d_mobile .header-bottom .nav-toggle.ancillary-open::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.v_small_desktop .header-bottom .nav-toggle.ancillary-open .title,
.d_mobile .header-bottom .nav-toggle.ancillary-open .title {
  transform: translateX(-100%);
  opacity: 0;
}
.v_small_desktop .header-bottom-wrap-top,
.d_mobile .header-bottom-wrap-top {
  justify-content: space-between;
  width: 100%;
  padding-right: var(--headerMargin);
}
.v_small_desktop .header-bottom-wrap-top .header-store-phone,
.d_mobile .header-bottom-wrap-top .header-store-phone {
  display: none;
}
.v_small_desktop .header-bottom-wrap-top .logo-wrap,
.d_mobile .header-bottom-wrap-top .logo-wrap {
  width: 135px;
  height: 24px;
}
.v_small_desktop .header-bottom-wrap-bottom,
.d_mobile .header-bottom-wrap-bottom {
  --height: 60px;
}
.v_small_desktop .header-bottom-wrap-bottom::before,
.d_mobile .header-bottom-wrap-bottom::before {
  display: none;
}
.v_small_desktop .header-bottom-wrap-bottom-content,
.d_mobile .header-bottom-wrap-bottom-content {
  width: 100%;
  height: 100%;
}
.v_small_desktop .header-bottom-wrap-bottom-inner,
.d_mobile .header-bottom-wrap-bottom-inner {
  transform: translateX(-100%);
  transition: transform .3s;
}
.v_small_desktop .header-bottom-wrap-bottom__nav,
.d_mobile .header-bottom-wrap-bottom__nav {
  color: #333333;
  position: fixed;
  left: 0;
  top: 60px;
  width: 100%;
  height: calc(100% - 60px);
  transform: translateX(-100%);
  transition: transform .0s;
  transition-delay: .3s;
  opacity: 0;
}
.v_small_desktop .header-bottom-wrap-bottom__nav[data-dropdown-container] > [data-dropdown-content] > [data-dropdown-close],
.d_mobile .header-bottom-wrap-bottom__nav[data-dropdown-container] > [data-dropdown-content] > [data-dropdown-close] {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.5);
}
.v_small_desktop .header-bottom-wrap-bottom.open,
.d_mobile .header-bottom-wrap-bottom.open {
  opacity: 1;
}
.v_small_desktop .header-bottom-wrap-bottom.open .header-bottom-wrap-bottom__nav,
.d_mobile .header-bottom-wrap-bottom.open .header-bottom-wrap-bottom__nav {
  transition-delay: .0s;
  opacity: 1;
}
.v_small_desktop .header-bottom-wrap-bottom.open .header-bottom-wrap-bottom__nav,
.d_mobile .header-bottom-wrap-bottom.open .header-bottom-wrap-bottom__nav,
.v_small_desktop .header-bottom-wrap-bottom.open .header-bottom-wrap-bottom-inner,
.d_mobile .header-bottom-wrap-bottom.open .header-bottom-wrap-bottom-inner {
  transform: translateX(0%);
}
.v_small_desktop .header-bottom-wrap-bottom:not(.open) .header-region-wrapper,
.d_mobile .header-bottom-wrap-bottom:not(.open) .header-region-wrapper {
  position: fixed;
  bottom: 0;
  z-index: 5;
  max-width: 100%;
  width: 100%;
  padding-top: 0;
  transform: translateX(100%);
  box-shadow: 0px -31px 48px 1px rgba(169, 161, 160, 0.26);
}
.v_small_desktop .header-bottom-wrap-bottom:not(.open) .header-region-wrapper .default-cities,
.d_mobile .header-bottom-wrap-bottom:not(.open) .header-region-wrapper .default-cities {
  border-top: none !important;
}
.v_small_desktop .header-bottom-wrap-top,
.v_tablet .header-bottom-wrap-top {
  padding-right: calc(var(--headerMargin) + 10px);
}
.v_small_desktop .header-bottom-wrap-top .logo-wrap,
.v_tablet .header-bottom-wrap-top .logo-wrap {
  width: 178px;
  height: 31px;
}
.v_small_desktop .header-bottom-wrap-bottom:not(.open) .header-region-wrapper .region-switcher .confirm-city .region-question,
.v_tablet .header-bottom-wrap-bottom:not(.open) .header-region-wrapper .region-switcher .confirm-city .region-question {
  width: auto;
  margin: 0 var(--headerMargin) 0px 0;
}
.v_small_mobile .header-bottom-wrap-top {
  padding-right: calc(var(--headerMargin) / 2);
}
.v_small_mobile .header-bottom-wrap-top .logo-wrap {
  width: 120px;
  height: 21px;
}
.d_desktop:not(.v_small_desktop) .customer-block-wrapper .icon-customer {
  display: none;
}
.d_desktop .customer-block-wrapper {
  transition: color 0.3s;
}
.d_desktop .customer-block-wrapper:hover {
  color: rgba(255, 255, 255, 0.7);
}
.switcher-language .language-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.switcher-language .lang-item {
  text-transform: uppercase;
}
.switcher-language .lang-item + .lang-item {
  margin-left: 4px;
}
.switcher-language .lang-item > * {
  width: 31px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.switcher-language span {
  background: rgb(255 255 255 / 12%);
}
.v_small_desktop .switcher-language,
.d_mobile .switcher-language {
  max-width: 40%;
  color: #1c66a3;
  font-style: 14px;
  order: -1;
  margin: 0 auto 0 0;
}
.v_small_desktop .switcher-language .lang-item a,
.d_mobile .switcher-language .lang-item a {
  width: auto;
}
.v_small_desktop .switcher-language .lang-item span,
.d_mobile .switcher-language .lang-item span {
  border: 1px solid currentColor;
}
.v_small_desktop .switcher-language .lang-item + .lang-item,
.d_mobile .switcher-language .lang-item + .lang-item {
  margin-left: 10px;
}
.header-region {
  padding-right: 14px;
  display: flex;
}
.header-region[data-dropdown-container] {
  position: static;
}
.header-region-current {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header-region-current .header-icon-block,
.header-region-current .arrow-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.header-region-current .region-name {
  margin: 0 5px;
}
.header-region-current .arrow-block {
  width: 16px;
  height: 16px;
}
.header-region-current .arrow-block .icon {
  width: 8px;
  height: 5px;
  transition: transform .3s;
  fill: currentColor;
}
.d_desktop.sticky:not(.v_small_desktop) .header-region.open .header-region-wrapper[data-dropdown-content] {
  display: none;
}
.header-region.open .header-region-current[data-dropdown-toggle] {
  background: transparent;
}
.header-region.open .header-region-current .arrow-block .icon {
  transform: rotate(-180deg);
}
.header-region-wrapper .close-icon-block {
  display: none;
}
.header-region .header-region-wrapper {
  padding-top: 10px;
  max-width: 500px;
  right: 0;
  left: auto;
  min-width: unset;
  z-index: 2;
}
.header-region .header-region-wrapper[data-dropdown-content] {
  background: transparent;
}
.header-region .region-switcher {
  background: #ffffff;
}
.header-region .region-switcher .confirm-city {
  padding: 14px 20px;
  color: #333333;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header-region .region-switcher .confirm-city .city {
  font-weight: 600;
  margin-left: 10px;
}
.header-region .region-switcher .confirm-city .region-question {
  margin-right: var(--headerMargin);
}
.header-region .region-switcher .confirm-city .actions-block,
.header-region .region-switcher .confirm-city .region-question {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header-region .region-switcher .confirm-city .actions-block button + button {
  margin-left: 10px;
}
.header-region .region-switcher .region-select-another-wrapper {
  padding: var(--headerMargin);
  box-shadow: 0px 31px 48px 1px rgba(169, 161, 160, 0.26);
  width: 100%;
  max-width: 100%;
}
.d_desktop:not(.v_small_desktop) .header-region .region-switcher .region-select-another-wrapper {
  width: 420px;
}
.header-region .region-switcher .region-select-another-wrapper .select-region-title {
  display: none;
}
.header-region .region-switcher .region-select-another-wrapper .default-cities {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 0 calc((var(--headerMargin) / 2) * -1) calc(var(--headerMargin) * -1);
  width: calc(100% + var(--headerMargin));
  position: relative;
  z-index: 1;
}
.header-region .region-switcher .region-select-another-wrapper .default-cities .item {
  margin: 0 0 calc(var(--headerMargin) / 2) var(--headerMargin);
  position: relative;
  z-index: -1;
}
.header-region .region-switcher .region-select-another-wrapper .default-cities .item .name {
  color: #1c66a3;
}
.d_desktop .header-region .region-switcher .region-select-another-wrapper .default-cities .item .name {
  transition: color 0.3s;
}
.d_desktop .header-region .region-switcher .region-select-another-wrapper .default-cities .item .name:hover {
  color: #333333;
}
.header-region .region-switcher .region-select-another-wrapper .default-cities .item input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.header-region .region-switcher .region-select-another-wrapper .default-cities .item input:checked ~ .name {
  color: #333333;
}
.header-region .region-switcher .region-select-another-wrapper .search-city-wrap {
  width: 100%;
}
.header-region .region-switcher .region-select-another-wrapper .search-city-wrap input {
  height: 56px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ebebee;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 0;
  color: #333333;
}
.header-region .region-switcher .region-select-another-wrapper .search-city-wrap input::-webkit-input-placeholder {
  color: #535353;
  opacity: 1;
}
.header-region .region-switcher .region-select-another-wrapper .search-city-wrap input::-moz-placeholder {
  color: #535353;
  opacity: 1;
}
.header-region .region-switcher .region-select-another-wrapper .search-city-wrap input:-ms-input-placeholder {
  color: #535353;
  opacity: 1;
}
.header-region .region-switcher .region-select-another-wrapper .search-city-wrap input:-moz-placeholder {
  color: #535353;
  opacity: 1;
}
.header-region .region-switcher .region-select-another-wrapper .search-city-wrap input:-webkit-autofill {
  -webkit-text-fill-color: #333333;
  box-shadow: inset 0 0 0 500px #ffffff;
}
.header-region .region-switcher .region-select-another-wrapper .region-block__search {
  position: relative;
  margin-top: 15px;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 10px 20px 20px;
  max-height: 180px;
  box-shadow: 0px 31px 48px 1px rgba(169, 161, 160, 0.26);
  background: #ffffff;
  z-index: 1;
  border-width: 0px 1px 1px;
  border-style: solid;
  border-color: #ebebee;
  overflow-y: auto;
  overflow-x: hidden;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list::-webkit-scrollbar {
  width: 2px;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list::-webkit-scrollbar:horizontal {
  height: 4px;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list::-webkit-scrollbar-track {
  background-color: transparent;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list::-webkit-scrollbar-thumb {
  background-color: #1c66a3;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list::-webkit-scrollbar-thumb:hover {
  background-color: #1c66a3;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list .not-found,
.header-region .region-switcher .region-select-another-wrapper .cities-list .start-input {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.6;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list .not-found {
  color: #333333;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list .start-input {
  color: #535353;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list .item {
  position: relative;
  width: 100%;
  display: block;
  margin-top: 10px;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list .item .name {
  color: #1c66a3;
}
.d_desktop .header-region .region-switcher .region-select-another-wrapper .cities-list .item .name {
  transition: color 0.3s;
}
.d_desktop .header-region .region-switcher .region-select-another-wrapper .cities-list .item .name:hover {
  color: #333333;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list .item input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list .item input:checked {
  cursor: default;
}
.header-region .region-switcher .region-select-another-wrapper .cities-list .item input:checked ~ .name {
  color: #333333;
}
.header-region .region-switcher .region-select-another-wrapper .actions-block {
  margin-top: calc(var(--headerMargin) / 2);
}
.header-region .region-switcher .region-select-another-wrapper .actions-block .button {
  width: 100%;
}
.v_small_desktop .header-region,
.d_mobile .header-region {
  padding-right: 0;
}
.v_small_desktop .header-region-current,
.d_mobile .header-region-current {
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  justify-content: flex-start;
}
.v_small_desktop .header-region-current .header-icon-block,
.d_mobile .header-region-current .header-icon-block {
  flex-shrink: 0;
}
.v_small_desktop .header-region-current .region-name,
.d_mobile .header-region-current .region-name {
  font-size: 13px;
  margin: 0 0 0 10px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.v_small_desktop .header-region-current .arrow-block,
.d_mobile .header-region-current .arrow-block {
  display: none;
}
.v_small_desktop .header-region .header-region-wrapper,
.d_mobile .header-region .header-region-wrapper {
  top: auto;
  bottom: 100%;
  left: 0;
  position: absolute;
}
.v_small_desktop .header-region .region-switcher .region-select-another-wrapper,
.d_mobile .header-region .region-switcher .region-select-another-wrapper {
  padding: 0 var(--headerMargin) calc(var(--headerMargin) / 2);
  box-shadow: none;
}
.v_small_desktop .header-region .region-switcher .region-select-another-wrapper .default-cities,
.d_mobile .header-region .region-switcher .region-select-another-wrapper .default-cities {
  margin: 0 0 -10px -10px;
  padding-top: calc(var(--headerMargin) / 2);
  width: calc(100% + 10px);
  border-top: 1px solid #ebebee;
}
.v_small_desktop .header-region .region-switcher .region-select-another-wrapper .default-cities .item,
.d_mobile .header-region .region-switcher .region-select-another-wrapper .default-cities .item {
  margin: 0 0 10px 10px;
}
.v_small_desktop .header-region .region-switcher .region-select-another-wrapper .default-cities .item .name,
.d_mobile .header-region .region-switcher .region-select-another-wrapper .default-cities .item .name {
  font-size: 13px;
}
.v_small_desktop .header-region .region-switcher .region-select-another-wrapper .cities-list,
.d_mobile .header-region .region-switcher .region-select-another-wrapper .cities-list {
  box-shadow: 0px -31px 48px 1px rgba(169, 161, 160, 0.26);
  top: auto;
  bottom: 100%;
  border-width: 1px 1px 0;
}
.v_small_desktop .header-region .region-switcher .region-select-another-wrapper .actions-block .button,
.d_mobile .header-region .region-switcher .region-select-another-wrapper .actions-block .button {
  font-size: 12px;
  height: 36px;
}
.v_small_desktop .header-region .region-switcher .confirm-city .region-question,
.d_mobile .header-region .region-switcher .confirm-city .region-question {
  width: 100%;
  margin: 0 0 10px 0;
}
.header-store-phone {
  width: calc(168px + var(--headerMargin));
  flex-shrink: 0;
  margin-bottom: -7px;
}
.header-store-phone .store-phone-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 7px;
  justify-content: flex-start;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
}
.header-store-phone .store-phone-head .arrow-block {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.header-store-phone .store-phone-head .arrow-block .icon {
  width: 8px;
  height: 5px;
  transition: transform .3s;
  fill: currentColor;
}
.header-store-phone.open .store-phone-head[data-dropdown-toggle] {
  background: transparent;
}
.header-store-phone.open .store-phone-head .arrow-block .icon {
  transform: rotate(-180deg);
}
.header-store-phone .store-phone-list {
  box-shadow: 0px 31px 48px 1px rgba(169, 161, 160, 0.26);
  left: -40px;
  width: 340px;
  padding: 40px;
  color: #333333;
}
.header-store-phone .store-phone-list .call-center-wrapper {
  margin-bottom: 20px;
}
.header-store-phone .store-phone-list .call-center-wrapper .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 9px;
  display: block;
}
.header-store-phone .store-phone-list .call-center-wrapper .work-hours {
  font-size: 14px;
  line-height: 160%;
  display: block;
}
.header-store-phone .store-phone-list .phone {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  display: block;
}
.header-store-phone .store-phone-list .phone + .phone {
  margin-top: 15px;
}
.header-store-phone .store-phone-list .email {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  display: block;
  margin-top: 15px;
}
.header-store-phone .store-phone-list .email + .phone {
  margin-top: 15px;
}
.header-store-phone .store-phone-list .footer-call-button {
  margin-top: 15px;
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #1c66a3;
  font-size: 12px;
  height: 36px;
}
.header-store-phone .store-phone-list .footer-call-button.disabled {
  pointer-events: none;
}
.d_desktop .header-store-phone .store-phone-list .footer-call-button:hover {
  border-color: #035793;
  background-color: #ffffff;
}
.header-store-phone .store-phone-list .footer-call-button.disabled {
  border-color: #535353;
}
.header-store-phone .store-phone-list .footer-call-button:active {
  border-color: #1c66a3 !important;
  background-color: #ffffff !important;
}
.header-store-phone .messengers {
  margin-top: 30px;
}
.v_small_desktop .header-store-phone,
.d_mobile .header-store-phone {
  margin-top: calc(var(--headerMargin) / 2);
  margin-bottom: 0px;
  width: 100%;
}
.v_small_desktop .header-store-phone .store-phone-head,
.d_mobile .header-store-phone .store-phone-head {
  display: none;
}
.v_small_desktop .header-store-phone .store-phone-list,
.d_mobile .header-store-phone .store-phone-list {
  width: 100%;
  box-shadow: none;
  padding: 0;
}
.v_small_desktop .header-store-phone .store-phone-list .call-center-wrapper,
.d_mobile .header-store-phone .store-phone-list .call-center-wrapper {
  margin-bottom: 10px;
}
.v_small_desktop .header-store-phone .store-phone-list .call-center-wrapper .title,
.d_mobile .header-store-phone .store-phone-list .call-center-wrapper .title {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 5px;
}
.v_small_desktop .header-store-phone .store-phone-list .call-center-wrapper .work-hours,
.d_mobile .header-store-phone .store-phone-list .call-center-wrapper .work-hours {
  text-transform: uppercase;
}
.v_small_desktop .header-store-phone .store-phone-list .phone,
.d_mobile .header-store-phone .store-phone-list .phone {
  font-size: 16px;
}
.v_small_desktop .header-store-phone .store-phone-list .phone + .phone,
.d_mobile .header-store-phone .store-phone-list .phone + .phone {
  margin-top: 10px;
}
.v_small_desktop .header-store-phone .store-phone-list .footer-call-button,
.d_mobile .header-store-phone .store-phone-list .footer-call-button {
  margin-top: 20px;
}
.v_small_desktop .header-store-phone .store-phone-list .messengers,
.d_mobile .header-store-phone .store-phone-list .messengers {
  margin-top: 20px;
}
.v_small_desktop .header-store-phone .store-phone-list[data-dropdown-content],
.d_mobile .header-store-phone .store-phone-list[data-dropdown-content] {
  display: block;
  position: static;
}
.block-search {
  position: relative;
  --pr: 0;
  padding-right: var(--pr);
}
.d_desktop:not(.v_small_desktop) .block-search[data-dropdown-container] [data-dropdown-toggle] {
  display: none;
}
.block-search[data-dropdown-container] [data-dropdown-content] {
  display: block;
  position: static;
  background: transparent;
}
.block-search .block-title {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  margin: -12px;
}
.block-search .block-title .icon {
  width: 24px;
  height: 24px;
}
.block-search .block-title span {
  display: none;
}
.d_desktop:not(.v_small_desktop) .block-search .block-title {
  display: none;
}
.block-search .block-content .search-close {
  position: absolute;
  top: 0;
  height: 42px;
  right: calc(var(--pr) + 15px);
  display: none;
  align-items: center;
  background: #1c66a3;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}
.block-search .block-content .search-close .icon {
  width: 24px;
  height: 24px;
}
.block-search .minisearch .field .label {
  display: none;
}
.block-search .minisearch .field.search {
  position: relative;
}
.block-search .minisearch .field.search .input-text {
  width: 100%;
  height: 42px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  line-height: 140%;
  color: currentColor;
  border-radius: 0;
  padding: 0 40px 0 15px;
  caret-color: currentColor;
}
.block-search .minisearch .field.search .input-text::placeholder {
  color: inherit;
  opacity: 0.5;
}
.block-search .minisearch.active + .search-close {
  display: flex;
}
.block-search .actions {
  position: absolute;
  top: 0;
  height: 42px;
  right: calc(var(--pr) + 15px);
}
.block-search .actions button.search {
  background: none;
  border: none;
  width: 24px;
  height: 100%;
  outline: none;
  cursor: pointer;
  color: currentColor;
}
.block-search .actions button.search .icon {
  position: relative;
  width: 24px;
  height: 24px;
}
.block-search .actions button.search span {
  display: none;
}
.block-search .search-autocomplete {
  display: none;
  padding: 15px;
  z-index: 4;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100% !important;
  background: #ffffff;
  box-shadow: 0px 31px 48px 1px rgba(169, 161, 160, 0.26);
}
.block-search .search-autocomplete .title-product,
.block-search .search-autocomplete .autocomplete-list-title {
  display: none;
}
.block-search .search-autocomplete .brander-autocomplete-result {
  display: flex;
  flex-direction: column;
}
.block-search .search-autocomplete .autocomplete-list.category {
  padding-bottom: 10px;
  order: -1;
  border-bottom: 1px solid #ebebee;
}
.block-search .search-autocomplete .autocomplete-list.category .category-item {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}
.d_desktop .block-search .search-autocomplete .autocomplete-list.category .category-item:hover {
  color: #1c66a3;
}
.block-search .search-autocomplete .autocomplete-list.category .category-item + .category-item {
  margin-top: 10px;
}
.block-search .search-autocomplete .product-item {
  padding: 15px 4px;
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-wrap: nowrap;
}
.block-search .search-autocomplete .product-item .product-image-box {
  width: 78px;
  height: 78px;
  position: relative;
  margin-right: 21px;
  flex-shrink: 0;
}
.block-search .search-autocomplete .product-item .product-image-box img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.block-search .search-autocomplete .product-item .product-data-box {
  width: 100%;
}
.block-search .search-autocomplete .product-item .product-data-box .product-primary a {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}
.d_desktop .block-search .search-autocomplete .product-item .product-data-box .product-primary a {
  transition: color 0.3s;
}
.d_desktop .block-search .search-autocomplete .product-item .product-data-box .product-primary a:hover {
  color: #1c66a3;
}
.block-search .search-autocomplete .product-item .product-data-box .product-primary a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.block-search .search-autocomplete .product-item .stock-block {
  display: none;
}
.block-search .search-autocomplete .product-item .product-price .price-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.block-search .search-autocomplete .product-item .product-price .price-box .price-label {
  display: none;
}
.block-search .search-autocomplete .product-item .product-price .price-box .price {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  display: inline-flex;
}
.block-search .search-autocomplete .product-item .product-price .price-box .old-price {
  order: -1;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.block-search .search-autocomplete .product-item .product-price .price-box .old-price .percent {
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-right: 10px;
  padding: 3px 8px;
  background: #feebe9;
  color: #f6381e;
}
.block-search .search-autocomplete .product-item .product-price .price-box .old-price .percent span {
  background: transparent !important;
}
.block-search .search-autocomplete .product-item .product-price .price-box .old-price .price {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: #535353;
  position: relative;
}
.block-search .search-autocomplete .product-item .product-price .price-box .old-price .price::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
  background: #1c66a3;
}
.block-search .search-autocomplete .product-item.unavailable {
  opacity: .5;
}
.block-search .search-autocomplete .product-item + .product-item {
  border-top: 1px solid #ebebee;
}
.block-search .search-autocomplete .all-results {
  display: block;
  border-top: 1px solid #ebebee;
}
.block-search .search-autocomplete .all-results button {
  border: none;
  outline: none;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.6;
  padding-top: 10px;
  color: #1c66a3;
  background: transparent;
}
.d_desktop .block-search .search-autocomplete .all-results button {
  transition: color 0.3s;
}
.d_desktop .block-search .search-autocomplete .all-results button:hover {
  color: #333333;
}
.d_desktop:not(.v_small_desktop) .block-search {
  --pr: 75px;
  width: 100%;
  padding-left: 115px;
}
.v_small_desktop .block-search,
.d_mobile .block-search {
  display: flex;
}
.v_small_desktop .block-search .block-content,
.d_mobile .block-search .block-content {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  transform: translateX(-100%);
  transition: transform .3s;
  opacity: 0;
}
.v_small_desktop .block-search.open > [data-dropdown-toggle],
.d_mobile .block-search.open > [data-dropdown-toggle] {
  background: transparent;
}
.v_small_desktop .block-search.open .block-content,
.d_mobile .block-search.open .block-content {
  transform: translateX(0%);
  opacity: 1;
}
.v_small_desktop .block-search .minisearch,
.d_mobile .block-search .minisearch {
  color: #333333;
}
.v_small_desktop .block-search .minisearch .field.search,
.d_mobile .block-search .minisearch .field.search {
  position: relative;
  border-bottom: 1px solid #ebebee;
}
.v_small_desktop .block-search .minisearch .field.search .input-text,
.d_mobile .block-search .minisearch .field.search .input-text {
  height: 60px;
  background: #ffffff;
  font-style: italic;
  padding: 0 40px 0 var(--containerPadding);
  caret-color: currentColor;
}
.v_small_desktop .block-search .minisearch .field.search .input-text::placeholder,
.d_mobile .block-search .minisearch .field.search .input-text::placeholder {
  opacity: 1;
}
.v_small_desktop .block-search .minisearch > .actions,
.d_mobile .block-search .minisearch > .actions {
  display: none;
}
.v_small_desktop .block-search .search-close,
.d_mobile .block-search .search-close {
  display: flex;
  height: 60px;
  right: var(--containerPadding);
  background: #ffffff;
  color: #333333;
}
.v_small_desktop .block-search .search-autocomplete,
.d_mobile .block-search .search-autocomplete {
  padding-top: 0;
  top: calc(100% - 1px);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  overflow-x: hidden;
}
.v_small_desktop .block-search .search-autocomplete::-webkit-scrollbar,
.d_mobile .block-search .search-autocomplete::-webkit-scrollbar {
  width: 2px;
}
.v_small_desktop .block-search .search-autocomplete::-webkit-scrollbar:horizontal,
.d_mobile .block-search .search-autocomplete::-webkit-scrollbar:horizontal {
  height: 4px;
}
.v_small_desktop .block-search .search-autocomplete::-webkit-scrollbar-track,
.d_mobile .block-search .search-autocomplete::-webkit-scrollbar-track {
  background-color: transparent;
}
.v_small_desktop .block-search .search-autocomplete::-webkit-scrollbar-thumb,
.d_mobile .block-search .search-autocomplete::-webkit-scrollbar-thumb {
  background-color: #1c66a3;
}
.v_small_desktop .block-search .search-autocomplete::-webkit-scrollbar-thumb:hover,
.d_mobile .block-search .search-autocomplete::-webkit-scrollbar-thumb:hover {
  background-color: #1c66a3;
}
.v_small_desktop .block-search .search-autocomplete .autocomplete-list.category,
.d_mobile .block-search .search-autocomplete .autocomplete-list.category {
  padding-top: 10px;
  border-top: 1px solid #ebebee;
  border-bottom: none;
}
.v_small_desktop .block-search .search-autocomplete .product-item,
.d_mobile .block-search .search-autocomplete .product-item {
  border-top: 1px solid #ebebee;
}
.header-bottom-wrap-bottom-inner {
  display: flex;
  align-items: center;
}
.header-bottom-wrap-bottom-inner .categories-wrap {
  width: 100%;
}
.header-bottom-wrap-bottom-inner .catalog-trigger-block {
  display: none;
}
.header-bottom-wrap-bottom-inner .categories-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header-bottom-wrap-bottom-inner .imgs-wrap {
  display: none;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .categories-list {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .opener {
  display: none;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 {
  width: 100%;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap[data-dropdown-container] {
  position: static;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .opener-inside .opener {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  display: block;
  cursor: pointer;
  left: 0;
  top: 0;
  z-index: 2;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .opener-inside .opener svg {
  display: none;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .opener-inside .opener a {
  width: 100%;
  display: block;
  pointer-events: all;
  height: 100%;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .opener-inside,
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .opener-inside-none {
  position: relative;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .opener-inside .advancedmenu-link,
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link {
  height: var(--height);
  padding: 0 32px;
  position: relative;
  transition: background .3s, height .3s;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .opener-inside:hover .advancedmenu-link,
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .opener-inside-none:hover .advancedmenu-link {
  background: #1C66A3;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content {
  box-shadow: 0px 31px 48px 1px rgba(169, 161, 160, 0.26);
  padding: 35px 55px 35px 60px;
  border-width: 5px 5px 5px 0;
  border-style: solid;
  border-color: #fff;
  display: block;
  transform: translateX(-400%);
  transition: transform .0s;
  transition-delay: .3s;
  overflow-y: auto;
  overflow-x: hidden;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content::-webkit-scrollbar {
  width: 2px;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content::-webkit-scrollbar:horizontal {
  height: 4px;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content::-webkit-scrollbar-track {
  background-color: transparent;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content::-webkit-scrollbar-thumb {
  background-color: #1c66a3;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content::-webkit-scrollbar-thumb:hover {
  background-color: #1c66a3;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content .back-block {
  display: none;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content .advancedmenu-content[data-dropdown-content] {
  position: static;
  display: flex;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list {
  columns: 4;
  column-gap: 50px;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list a.advancedmenu-link {
  transition: color .3s;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list a.advancedmenu-link:hover {
  color: #1c66a3;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap.open > .advancedmenu-content,
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap:hover > .advancedmenu-content {
  transform: translateX(0%);
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0.hot > .advancedmenu-wrap > .opener-inside .advancedmenu-link,
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0.hot > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link {
  position: relative;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0.hot > .advancedmenu-wrap > .opener-inside .advancedmenu-link:after,
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0.hot > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link:after {
  content: '';
  display: block;
  right: 0;
  top: 0;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 27.5px solid transparent;
  border-right: 9px solid #035793;
  border-bottom: 27.5px solid transparent;
  opacity: 0;
  transition: opacity .3s;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level1 {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  margin-bottom: 30px;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level1 > .advancedmenu-wrap > .opener-inside .advancedmenu-link,
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level1 > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  padding-bottom: 5px;
  display: block;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level1 > .advancedmenu-wrap > .advancedmenu-content .advancedmenu-link {
  font-size: 14px;
  line-height: 1.6;
  padding-top: 5px;
  display: block;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level1 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list {
  display: flex;
  flex-direction: column;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .imgs-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: flex-end;
  position: relative;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .imgs-wrap::before {
  content: '';
  display: block;
  background: #ebebee;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .imgs-wrap .block-image {
  padding-left: 20px;
  background: #ffffff;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .imgs-wrap .block-image > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 114px;
  height: 60px;
  box-sizing: border-box;
  padding: 0 10px;
}
.d_desktop:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .imgs-wrap .block-image img {
  max-width: 100%;
  object-fit: contain;
  width: auto;
  height: 60px;
}
.d_desktop:not(.sticky):not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content {
  max-height: calc(100vh - (186px + var(--headerMargin)));
}
.d_desktop:not(.sticky):not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0.hot > .advancedmenu-wrap > .opener-inside .advancedmenu-link,
.d_desktop:not(.sticky):not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0.hot > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link {
  z-index: 1;
  background: #1C66A3;
}
.d_desktop:not(.sticky):not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0.hot > .advancedmenu-wrap > .opener-inside .advancedmenu-link:after,
.d_desktop:not(.sticky):not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0.hot > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link:after {
  opacity: 1;
}
.d_desktop.sticky:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .advancedmenu-content {
  max-height: calc(100vh - (var(--height) + var(--headerMargin)));
}
.d_desktop.sticky:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .opener-inside .advancedmenu-link,
.d_desktop.sticky:not(.v_small_desktop) .header-bottom-wrap-bottom-inner .level0 > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link {
  padding: 0 10px;
}
.v_small_desktop .header-bottom-wrap-bottom-inner,
.d_mobile .header-bottom-wrap-bottom-inner {
  width: 100%;
  height: calc(100% - 50px);
  max-width: 320px;
  position: relative;
  z-index: 1;
  background: #ffffff;
  flex-direction: column;
  padding: calc(var(--headerMargin) / 2) var(--headerMargin) var(--headerMargin);
  overflow-y: auto;
  overflow-x: hidden;
}
.v_small_desktop .header-bottom-wrap-bottom-inner::-webkit-scrollbar,
.d_mobile .header-bottom-wrap-bottom-inner::-webkit-scrollbar {
  width: 2px;
}
.v_small_desktop .header-bottom-wrap-bottom-inner::-webkit-scrollbar:horizontal,
.d_mobile .header-bottom-wrap-bottom-inner::-webkit-scrollbar:horizontal {
  height: 4px;
}
.v_small_desktop .header-bottom-wrap-bottom-inner::-webkit-scrollbar-track,
.d_mobile .header-bottom-wrap-bottom-inner::-webkit-scrollbar-track {
  background-color: transparent;
}
.v_small_desktop .header-bottom-wrap-bottom-inner::-webkit-scrollbar-thumb,
.d_mobile .header-bottom-wrap-bottom-inner::-webkit-scrollbar-thumb {
  background-color: #1c66a3;
}
.v_small_desktop .header-bottom-wrap-bottom-inner::-webkit-scrollbar-thumb:hover,
.d_mobile .header-bottom-wrap-bottom-inner::-webkit-scrollbar-thumb:hover {
  background-color: #1c66a3;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list {
  flex-direction: column;
  align-items: flex-start;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 {
  width: 100%;
  border-bottom: 1px solid #ebebee;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap[data-dropdown-container],
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap[data-dropdown-container] {
  position: static;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .opener-inside .opener,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .opener-inside .opener {
  display: none;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .opener-inside,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .opener-inside,
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .opener-inside-none,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .opener-inside-none {
  position: relative;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .opener-inside .advancedmenu-link,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .opener-inside .advancedmenu-link,
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link {
  position: relative;
  padding: 15px 20px 15px 0;
  font-size: 16px;
  line-height: 1.5;
  display: block;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content {
  display: block;
  position: fixed;
  left: 0;
  top: 0px;
  width: 100%;
  max-width: 320px;
  min-width: auto;
  height: calc(100% - 50px);
  background: #ffffff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .back-block,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .back-block {
  padding: 9px 70px 9px calc(var(--headerMargin) + 26px);
  cursor: pointer;
  background: #f3f9ff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .back-block a,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .back-block a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .back-block::before,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .back-block::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  left: var(--headerMargin);
  transform: translateY(-50%) scaleX(-1);
  background: url(/media/images/arrow_right_black.svg) 50% 50% / contain no-repeat;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content .advancedmenu-content[data-dropdown-content],
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content .advancedmenu-content[data-dropdown-content] {
  position: static;
  display: block;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content .advancedmenu-content .back-block,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content .advancedmenu-content .back-block {
  display: none;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list {
  flex-grow: 1;
  padding: 0 var(--headerMargin) var(--headerMargin);
  overflow-y: auto;
  overflow-x: hidden;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list::-webkit-scrollbar,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list::-webkit-scrollbar {
  width: 2px;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list::-webkit-scrollbar:horizontal,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list::-webkit-scrollbar:horizontal {
  height: 4px;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list::-webkit-scrollbar-track,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list::-webkit-scrollbar-track {
  background-color: transparent;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list::-webkit-scrollbar-thumb,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list::-webkit-scrollbar-thumb {
  background-color: #1c66a3;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list::-webkit-scrollbar-thumb:hover,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list::-webkit-scrollbar-thumb:hover {
  background-color: #1c66a3;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap.open > .advancedmenu-content,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0 > .advancedmenu-wrap.open > .advancedmenu-content {
  z-index: 3;
  transform: translateX(0%);
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0.parent > .advancedmenu-wrap > .opener-inside .opener,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0.parent > .advancedmenu-wrap > .opener-inside .opener {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  display: block;
  cursor: pointer;
  left: 0;
  top: 0;
  z-index: 2;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0.parent > .advancedmenu-wrap > .opener-inside .opener svg,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0.parent > .advancedmenu-wrap > .opener-inside .opener svg,
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0.parent > .advancedmenu-wrap > .opener-inside .opener a,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0.parent > .advancedmenu-wrap > .opener-inside .opener a {
  display: none;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0.parent > .advancedmenu-wrap > .opener-inside .advancedmenu-link::before,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0.parent > .advancedmenu-wrap > .opener-inside .advancedmenu-link::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  right: 0;
  transform: translateY(-50%);
  background: url(/media/images/arrow_right_black.svg) 50% 50% / contain no-repeat;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0.hot > .advancedmenu-wrap > .opener-inside .advancedmenu-link,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0.hot > .advancedmenu-wrap > .opener-inside .advancedmenu-link,
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0.hot > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0.hot > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link {
  padding-left: 29px;
  color: #1c66a3;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0.hot > .advancedmenu-wrap > .opener-inside .advancedmenu-link:after,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0.hot > .advancedmenu-wrap > .opener-inside .advancedmenu-link:after,
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level0.hot > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link:after,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level0.hot > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link:after {
  content: '';
  display: block;
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  width: 24px;
  height: 25px;
  background: url(/media/images/hot-image.svg) 50% 50% / contain no-repeat;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level1,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level1 {
  padding: 15px 0;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level1 > .advancedmenu-wrap > .opener-inside .advancedmenu-link,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level1 > .advancedmenu-wrap > .opener-inside .advancedmenu-link,
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level1 > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level1 > .advancedmenu-wrap > .opener-inside-none .advancedmenu-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  display: block;
  padding-right: 50px;
  position: relative;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level1 > .advancedmenu-wrap > .opener-inside .opener,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level1 > .advancedmenu-wrap > .opener-inside .opener,
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level1 > .advancedmenu-wrap > .opener-inside-none .opener,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level1 > .advancedmenu-wrap > .opener-inside-none .opener {
  display: none;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level1 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list .advancedmenu-link,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level1 > .advancedmenu-wrap > .advancedmenu-content > .advancedmenu-list .advancedmenu-link {
  font-size: 13px;
  display: block;
  padding-top: 15px;
  line-height: 1.4;
}
.v_small_desktop .header-bottom-wrap-bottom-inner .categories-list .level1 + .level1,
.d_mobile .header-bottom-wrap-bottom-inner .categories-list .level1 + .level1 {
  border-top: 1px solid #ebebee;
}
.newsletter {
  background: #1c66a3;
  padding: 26px var(--containerPadding);
  box-sizing: border-box;
  color: #ffffff;
  overflow: hidden;
  --sendButtonWidth: var(--inputHeight);
}
@media screen and (min-width: 640px) {
  .newsletter {
    --sendButtonWidth: 0px;
  }
}
.newsletter > * {
  width: 100%;
  margin: 0 auto 0;
}
.v_tablet .newsletter > *,
.d_desktop .newsletter > * {
  max-width: 517px;
}
.newsletter .newsletter-title {
  margin-bottom: 20px;
}
.newsletter .newsletter-title strong {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
  display: block;
  text-align: center;
}
.v_tablet .newsletter .newsletter-title,
.d_desktop .newsletter .newsletter-title {
  margin-bottom: 15px;
}
.v_tablet .newsletter .newsletter-title strong,
.d_desktop .newsletter .newsletter-title strong {
  text-align: left;
  font-size: 20px;
}
.v_tablet .newsletter .newsletter-title strong.success,
.d_desktop .newsletter .newsletter-title strong.success {
  text-align: center;
}
.newsletter .content {
  width: 100%;
  position: relative;
}
.newsletter .content.success {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}
.newsletter .content::before,
.newsletter .content::after {
  content: '';
  display: none;
  position: absolute;
  background: url(/media/images/rabbit.svg) 50% 50% / contain no-repeat;
}
.newsletter .content::before {
  top: 50%;
  transform: translateY(-50%);
}
.newsletter .content div.mage-error {
  color: #ffffff;
  position: absolute;
  left: 0;
  text-align: left;
  top: calc(100% + 3px);
  font-style: italic;
  width: 100%;
  margin-top: 0;
}
.newsletter .content .form {
  display: flex;
  width: 100%;
  position: relative;
  align-items: flex-end;
}
.d_mobile:not(.v_tablet) .newsletter .content .form {
  flex-wrap: wrap;
}
.newsletter .content .form fieldset {
  border: none;
  display: block;
}
.newsletter .content .form .field {
  --inputHeight: 56px;
  --padding: 20px;
  --borderRadius: 0;
  --fieldsBg: #ffffff;
  position: relative;
  margin-bottom: var(--padding);
  display: flex;
  flex-direction: column;
}
.newsletter .content .form .field:not(.choice) .label {
  display: none;
}
.newsletter .content .form .field.captcha {
  display: flex;
  flex-direction: column;
}
.newsletter .content .form .field.captcha .compose-wrap {
  order: -1;
  margin-bottom: 15px;
}
.newsletter .content .form .field.default-shown-caption input:not([type="radio"]):not([type="checkbox"]),
.newsletter .content .form .field.default-shown-caption textarea {
  padding-top: 20px !important;
}
.newsletter .content .form .field.default-shown-caption input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill,
.newsletter .content .form .field.default-shown-caption textarea:-webkit-autofill {
  -webkit-text-fill-color: #333333 !important;
}
.newsletter .content .form .field.default-shown-caption i.caption-text {
  transform: translateY(-9px);
  font-style: italic;
  font-size: 13px;
  line-height: 1.4;
}
.newsletter .content .form .field.password {
  margin-bottom: calc(var(--padding) + 5px);
}
.newsletter .content .form .field input:not([type="radio"]):not([type="checkbox"]),
.newsletter .content .form .field textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ebebee;
  padding: 0 var(--padding);
  font-size: 14px;
  line-height: 1.6;
  border-radius: 0;
  color: #333333;
}
.newsletter .content .form .field input:not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder,
.newsletter .content .form .field textarea::-webkit-input-placeholder {
  color: #535353;
  opacity: 1;
}
.newsletter .content .form .field input:not([type="radio"]):not([type="checkbox"])::-moz-placeholder,
.newsletter .content .form .field textarea::-moz-placeholder {
  color: #535353;
  opacity: 1;
}
.newsletter .content .form .field input:not([type="radio"]):not([type="checkbox"]):-ms-input-placeholder,
.newsletter .content .form .field textarea:-ms-input-placeholder {
  color: #535353;
  opacity: 1;
}
.newsletter .content .form .field input:not([type="radio"]):not([type="checkbox"]):-moz-placeholder,
.newsletter .content .form .field textarea:-moz-placeholder {
  color: #535353;
  opacity: 1;
}
.newsletter .content .form .field input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill,
.newsletter .content .form .field textarea:-webkit-autofill {
  -webkit-text-fill-color: #333333;
  box-shadow: inset 0 0 0 500px var(--fieldsBg);
}
.newsletter .content .form .field input:not([type="radio"]):not([type="checkbox"]) {
  height: var(--inputHeight);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter .content .form .field .phonemask-validation {
  -webkit-appearance: none;
}
.newsletter .content .form .field textarea {
  -webkit-appearance: none;
  border-radius: var(--borderRadius);
  resize: vertical;
  min-height: 170px;
  padding: var(--padding);
  background: var(--fieldsBg);
}
.newsletter .content .form .field textarea.mage-error {
  box-shadow: 0px 2px 0px rgba(255, 95, 95, 0.36);
}
.newsletter .content .form .field [id="password-strength-meter-container"] {
  font-size: 11px;
  position: absolute;
  left: 0;
  top: 100%;
  /* &.password-none,
			&.password-weak {
				span {
					color: red;
				}
			} */
}
.newsletter .content .form .field [id="password-strength-meter-container"] span {
  color: red;
}
.newsletter .content .form .field [id="password-strength-meter-container"].password-very-strong span {
  color: #50C83A;
}
.newsletter .content .form .field > div.mage-error {
  order: 1;
}
.newsletter .content .form .password-wrap {
  position: relative;
}
.newsletter .content .form .password-wrap .icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0.3s;
}
.newsletter .content .form .password-wrap input[type="password"][style*="display: none"] ~ .icon,
.newsletter .content .form .password-wrap input[type="password"][style*="display:none"] ~ .icon {
  display: none;
}
.newsletter .content .form .password-wrap input[type="password"] ~ .icon-eye-disabled {
  visibility: hidden;
  opacity: 0;
}
.newsletter .content .form .password-wrap input[type="text"] ~ .icon-eye {
  visibility: hidden;
  opacity: 0;
}
.newsletter .content .form button {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
}
.newsletter .content .form button.disabled {
  pointer-events: none;
}
.newsletter .content .form button.disabled {
  background: #535353;
}
.d_desktop .newsletter .content .form button:hover {
  background-color: #ffcd07;
}
.newsletter .content .form button:active {
  background-color: #ffb907 !important;
}
.newsletter .content .form .compose-wrap {
  --placeholderColor: #ffffff;
  --fieldsBg: #ec8c8c;
}
.newsletter .content .form .field {
  width: 100%;
  position: relative;
}
.newsletter .content .form .field.customer-newsletter {
  margin-bottom: 0;
}
.newsletter .content .form .field .label {
  display: none;
}
.newsletter .content .form .field input {
  border: none !important;
}
.newsletter .content .form .field input:not([type="radio"]):not([type="checkbox"]) {
  color: #ffffff !important;
}
.newsletter .content .form .field input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
}
.newsletter .content .form .actions {
  margin-left: 10px;
}
.newsletter .content .form .actions .subscribe {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #1c66a3;
  width: 200px;
  line-height: 19px;
}
.newsletter .content .form .actions .subscribe.disabled {
  pointer-events: none;
}
.d_desktop .newsletter .content .form .actions .subscribe:hover {
  border-color: #035793;
  background-color: #ffffff;
}
.newsletter .content .form .actions .subscribe.disabled {
  border-color: #535353;
}
.newsletter .content .form .actions .subscribe:active {
  border-color: #1c66a3 !important;
  background-color: #ffffff !important;
}
.newsletter .content .form .actions .subscribe:not(:hover) {
  border-color: #ffffff;
}
.d_mobile:not(.v_tablet) .newsletter .content .form .actions {
  margin: 17px 0 0 0;
  width: 100%;
}
.d_mobile:not(.v_tablet) .newsletter .content .form .actions .subscribe {
  width: 100%;
}
.v_tablet .newsletter .content::before {
  display: block;
  width: 121px;
  height: 166px;
  right: calc(100% + 23px);
}
.v_tablet .newsletter .content::after {
  display: block;
  bottom: 28px;
  left: calc(100% + 18px);
  width: 87px;
  height: 119px;
}
.d_desktop .newsletter .content::before {
  display: block;
  width: 133px;
  height: 181px;
  right: calc(100% + 160px);
}
.d_desktop .newsletter .content::after {
  display: block;
  bottom: 0;
  left: calc(100% + 124px);
  width: 121px;
  height: 165px;
}
.page-footer .footer {
  color: #ffffff;
}
.page-footer .footer ul {
  list-style: none;
}
.page-footer .footer a {
  text-decoration: none;
}
.d_desktop .page-footer .footer a {
  transition: color 0.3s;
}
.d_desktop .page-footer .footer a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.page-footer .footer-container {
  background: #1c66a3;
  padding: 40px 0 63px;
  position: relative;
}
.page-footer .footer-container .footer-grid {
  align-items: flex-start;
  flex-wrap: nowrap;
}
.page-footer .footer-wrap-logo img {
  max-width: 225px;
  max-height: 40px;
  width: 100%;
}
.page-footer .footer-wrap-column-1 {
  width: 260px;
  flex-shrink: 0;
}
.page-footer .footer-wrap-column-1 .store-information {
  margin-top: 25px;
  font-size: 13px;
  line-height: 1.4;
}
.page-footer .footer-wrap-column-2 {
  width: 100%;
  padding: 0 20px 0 40px;
}
.page-footer .footer-wrap-column-2 .title {
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 20px;
  font-weight: 600;
}
.d_desktop .page-footer .footer-wrap-column-2 .title,
.v_tablet .page-footer .footer-wrap-column-2 .title {
  display: none;
}
.page-footer .footer-wrap-column-2 .navigation {
  margin-left: -50px;
  width: calc(100% + 50px);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.page-footer .footer-wrap-column-2 .navigation__list {
  width: calc(50% - 50px);
  margin-left: 50px;
}
.page-footer .footer-wrap-column-2 .navigation .ui-menu-item {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}
.page-footer .footer-wrap-column-2 .navigation .ui-menu-item a {
  opacity: .5;
  transition: opacity .3s;
}
.d_desktop.no-touch .page-footer .footer-wrap-column-2 .navigation .ui-menu-item a {
  position: relative;
}
.d_desktop.no-touch .page-footer .footer-wrap-column-2 .navigation .ui-menu-item a::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  opacity: 0;
  vertical-align: middle;
  margin-left: 8px;
  background: url(/media/images/link-white.svg) 50% 50% / contain no-repeat;
  transition: opacity .3s;
}
.d_desktop.no-touch .page-footer .footer-wrap-column-2 .navigation .ui-menu-item a:hover {
  opacity: 1;
  text-decoration-line: underline;
  text-underline-offset: 3px;
  color: #ffffff;
}
.d_desktop.no-touch .page-footer .footer-wrap-column-2 .navigation .ui-menu-item a:hover::after {
  opacity: 1;
}
.page-footer .footer-wrap-column-2 .navigation .ui-menu-item + .ui-menu-item {
  margin-top: 12px;
}
.page-footer .footer-wrap-column-3 {
  flex-shrink: 0;
  width: 23.73%;
  min-width: 172px;
}
.page-footer .footer-wrap-column-3 > * {
  max-width: 173px;
}
.page-footer .footer-wrap-column-3 .store-address-hours {
  line-height: 1.6;
  margin-bottom: 15px;
}
.page-footer .footer-wrap-column-3 .store-address-hours .info-title {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 8px;
  display: block;
}
.page-footer .footer-wrap-column-3 .store-address-hours .work-hours {
  font-weight: normal;
  font-size: 14px;
  opacity: 0.5;
}
.page-footer .footer-wrap-column-3 .store-phone-list span {
  display: block;
}
.page-footer .footer-wrap-column-3 .store-phone-list span + span {
  margin-top: 10px;
}
.page-footer .footer-wrap-column-3 .store-phone-list a {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
}
.page-footer .footer-wrap-column-3 .footer-call-button {
  margin-top: 10px;
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #1c66a3;
  font-size: 12px;
  height: 36px;
}
.page-footer .footer-wrap-column-3 .footer-call-button.disabled {
  pointer-events: none;
}
.d_desktop .page-footer .footer-wrap-column-3 .footer-call-button:hover {
  border-color: #035793;
  background-color: #ffffff;
}
.page-footer .footer-wrap-column-3 .footer-call-button.disabled {
  border-color: #535353;
}
.page-footer .footer-wrap-column-3 .footer-call-button:active {
  border-color: #1c66a3 !important;
  background-color: #ffffff !important;
}
.page-footer .footer-wrap-column-3 .footer-call-button:not(:hover) {
  border-color: #ffffff;
}
.page-footer .footer-wrap-column-3 .messengers {
  margin-top: 20px;
}
.page-footer .footer-wrap-column-3 .up-button {
  position: absolute;
  bottom: 30px;
  right: calc(var(--containerPadding) - 10px);
  color: #333333;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  background: #ffc007;
  transition: background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-footer .footer-wrap-column-3 .up-button .icon {
  width: 24px;
  height: 24px;
}
.v_small_desktop .page-footer .footer-wrap-column-3 .up-button,
.v_tablet .page-footer .footer-wrap-column-3 .up-button {
  bottom: 20px;
}
.page-footer .footer-wrap-column-3 .up-button .d_desktop:not(.v_small_desktop) {
  bottom: 64px;
}
.d_desktop .page-footer .footer-wrap-column-3 .up-button:hover {
  background: #ffcd07;
}
.page-footer .footer-wrap-column-4 {
  background: #035793;
  padding: 20px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-footer .footer-wrap-column-4 .copyright,
.page-footer .footer-wrap-column-4 .info,
.page-footer .footer-wrap-column-4 .development-by span,
.page-footer .footer-wrap-column-4 .design-by span {
  opacity: .5;
  font-size: 13px;
}
.page-footer .footer-wrap-column-4 .info {
  margin-left: 30px;
}
.page-footer .footer-wrap-column-4 .development-by {
  margin-left: 90px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-footer .footer-wrap-column-4 .development-by a {
  display: flex;
  margin-left: 10px;
}
.page-footer .footer-wrap-column-4 .development-by a svg {
  width: 97px;
  fill: #ffffff;
  height: 14px;
}
.page-footer .footer-wrap-column-4 .design-by {
  margin-left: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-footer .footer-wrap-column-4 .design-by a {
  display: flex;
  margin-left: 10px;
}
.page-footer .footer-wrap-column-4 .design-by a svg {
  width: 128px;
  fill: #ffffff;
  height: 23px;
}
.page-footer .footer-grid {
  width: 100%;
  max-width: var(--msw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--containerPadding);
  padding-right: var(--containerPadding);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.d_mobile:not(.v_tablet) .page-footer .footer-container {
  padding: 40px 0 30px;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-1 {
  margin-bottom: 20px;
  border-bottom: 1px solid #8c8782;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-2 {
  padding-bottom: 20px;
  border-bottom: 1px solid #8c8782;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-2 .navigation {
  margin: 0 0 -12px -27px;
  width: calc(100% + 27px);
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-2 .navigation__list {
  width: calc(50% - 27px);
  margin: 0 0 12px 27px;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-3 {
  padding: 30px 30px 0;
  width: 100%;
  text-align: center;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-3 > * {
  max-width: 100%;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-3 .store-address-hours {
  margin-bottom: 5px;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-3 .store-address-hours .info-title {
  margin-bottom: 5px;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-3 .store-address-hours .work-hours {
  font-size: 13px;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-3 .store-phone-list a {
  font-size: 14px;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-3 .store-phone-list span + span {
  margin-top: 5px;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-3 .footer-call-button {
  margin: 10px auto 0;
  padding: 0 11px;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-3 .messengers-items {
  justify-content: center;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-4 {
  padding: 30px 0;
  text-align: center;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-4 .copyright {
  width: 100%;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-4 .info {
  margin: 8px auto 0;
}
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-4 .development-by,
.d_mobile:not(.v_tablet) .page-footer .footer-wrap-column-4 .design-by {
  margin: 20px 0 0;
}
.d_mobile .page-footer .footer-grid,
.v_small_desktop .page-footer .footer-grid {
  flex-wrap: wrap;
}
.d_mobile .page-footer .footer-wrap-column-1,
.v_small_desktop .page-footer .footer-wrap-column-1 {
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
}
.d_mobile .page-footer .footer-wrap-column-2,
.v_small_desktop .page-footer .footer-wrap-column-2 {
  padding: 0;
}
.d_mobile .page-footer .footer-wrap-column-4 .development-by,
.v_small_desktop .page-footer .footer-wrap-column-4 .development-by,
.d_mobile .page-footer .footer-wrap-column-4 .design-by,
.v_small_desktop .page-footer .footer-wrap-column-4 .design-by {
  width: 100%;
  justify-content: center;
}
.v_tablet .page-footer .footer-container,
.v_small_desktop .page-footer .footer-container {
  padding: 40px 0 20px;
}
.v_tablet .page-footer .footer-wrap-column-2,
.v_small_desktop .page-footer .footer-wrap-column-2 {
  width: calc(100% - 182px);
}
.v_tablet .page-footer .footer-wrap-column-2 .navigation,
.v_small_desktop .page-footer .footer-wrap-column-2 .navigation {
  padding-right: 35px;
  margin-left: -34px;
  width: calc(100% + 34px);
}
.v_tablet .page-footer .footer-wrap-column-2 .navigation__list,
.v_small_desktop .page-footer .footer-wrap-column-2 .navigation__list {
  width: calc(33.33% - 34px);
  margin-left: 34px;
}
.v_tablet .page-footer .footer-wrap-column-3,
.v_small_desktop .page-footer .footer-wrap-column-3 {
  width: 182px;
  min-width: unset;
  padding-right: 30px;
  box-sizing: border-box;
}
.v_tablet .page-footer .footer-wrap-column-3 .store-address-hours .info-title,
.v_small_desktop .page-footer .footer-wrap-column-3 .store-address-hours .info-title {
  margin-bottom: 0px;
}
.v_tablet .page-footer .footer-wrap-column-3 .store-address-hours .work-hours,
.v_small_desktop .page-footer .footer-wrap-column-3 .store-address-hours .work-hours {
  font-size: 13px;
}
.v_tablet .page-footer .footer-wrap-column-3 .store-phone-list a,
.v_small_desktop .page-footer .footer-wrap-column-3 .store-phone-list a {
  font-size: 14px;
  line-height: 1.6;
}
.v_tablet .page-footer .footer-wrap-column-3 .footer-call-button,
.v_small_desktop .page-footer .footer-wrap-column-3 .footer-call-button {
  margin-top: 20px;
  padding: 0;
  width: 100%;
}
.v_tablet .page-footer .footer-wrap-column-4,
.v_small_desktop .page-footer .footer-wrap-column-4 {
  padding: 20px 0;
}
.v_tablet .page-footer .footer-wrap-column-4 .info,
.v_small_desktop .page-footer .footer-wrap-column-4 .info {
  margin-left: auto;
}
.v_tablet .page-footer .footer-wrap-column-4 .development-by,
.v_small_desktop .page-footer .footer-wrap-column-4 .development-by,
.v_tablet .page-footer .footer-wrap-column-4 .design-by,
.v_small_desktop .page-footer .footer-wrap-column-4 .design-by {
  margin: 15px 0 0;
}
.page-footer .shop-social-links {
  margin-top: 35px;
}
.page-footer .social-links-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-footer .social-links-items li a {
  width: 24px;
  height: 24px;
  color: #ffffff;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-footer .social-links-items li a svg {
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
}
.d_desktop .page-footer .social-links-items li a:hover {
  opacity: .8;
}
.page-footer .social-links-items li + li {
  margin-left: 15px;
}
.d_mobile .page-footer .social-links-items,
.v_small_desktop .page-footer .social-links-items {
  justify-content: center;
}
.message.global.cookie {
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 0;
  width: 440px;
  max-width: 100%;
  font-size: 14px;
}
.d_mobile:not(.v_tablet) .message.global.cookie {
  width: 100%;
}
.message.global.cookie .content {
  padding: 20px;
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  border-radius: 4px 4px 0px 0px;
}
.message.global.cookie .cookie-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.message.global.cookie .cookie-content__close {
  width: 24px;
  height: 24px;
  margin-left: auto;
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
  color: #1c66a3;
  transition: color .3s;
}
.message.global.cookie .cookie-content__close:hover {
  color: #333333;
}
.message.global.cookie .cookie-content__close::before,
.message.global.cookie .cookie-content__close::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.message.global.cookie .cookie-content__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.message.global.cookie .cookie-content__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.message.global.cookie .cookie-content strong {
  order: -1;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  margin-bottom: 20px;
  position: relative;
  width: calc(100% - 34px);
}
.message.global.cookie .actions {
  margin-top: 20px;
  display: flex;
  font-size: 0;
  flex-direction: column;
}
.message.global.cookie .actions .action {
  width: 100%;
  font-size: 0;
}
.message.global.cookie .actions .action.allow {
  width: 100%;
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
}
.message.global.cookie .actions .action.allow.disabled {
  pointer-events: none;
}
.message.global.cookie .actions .action.allow.disabled {
  background: #535353;
}
.d_desktop .message.global.cookie .actions .action.allow:hover {
  background-color: #ffcd07;
}
.message.global.cookie .actions .action.allow:active {
  background-color: #ffb907 !important;
}
.message.global.cookie .actions > a {
  margin-top: 20px;
  font-size: 14px;
  color: #333333;
  text-align: center;
  display: block;
  text-decoration: none;
}
.d_desktop .message.global.cookie .actions > a {
  transition: color 0.3s;
}
.d_desktop .message.global.cookie .actions > a:hover {
  color: #1c66a3;
}
.message.global.cookie:not([style*="none"]) ~ .page-header .header-region-wrapper {
  display: none !important;
}
.modal-popup {
  z-index: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.modal-popup .modals-overlay {
  background: rgba(51, 51, 51, 0.3);
}
.modal-popup._show {
  z-index: 502;
}
.modal-popup .modal-inner-wrap {
  width: 90%;
  max-height: 90%;
  max-width: 500px;
  padding: 50px;
  margin: 0 auto;
  overflow: visible;
  box-shadow: none;
  padding: 60px 60px 50px 60px;
}
.d_mobile:not(.v_tablet) .modal-popup .modal-inner-wrap {
  padding: 30px 20px;
}
.modal-popup .action-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 24px;
  z-index: 2;
  height: 24px;
  cursor: pointer;
}
.modal-popup .action-close:before,
.modal-popup .action-close:after {
  content: '';
  display: block;
  width: 17px;
  height: 1px;
  background: #333333;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: background .3s;
}
.modal-popup .action-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-popup .action-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.d_desktop .modal-popup .action-close:hover:before,
.d_desktop .modal-popup .action-close:hover:after {
  background: #1c66a3;
}
.d_mobile:not(.v_tablet) .modal-popup .action-close {
  right: 0px;
  top: 0px;
}
.modal-popup .action-primary {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
}
.modal-popup .action-primary.disabled {
  pointer-events: none;
}
.modal-popup .action-primary.disabled {
  background: #535353;
}
.d_desktop .modal-popup .action-primary:hover {
  background-color: #ffcd07;
}
.modal-popup .action-primary:active {
  background-color: #ffb907 !important;
}
.modal-popup .action-secondary {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
}
.modal-popup .action-secondary.disabled {
  pointer-events: none;
}
.modal-popup .action-secondary.disabled {
  background: #535353;
}
.d_desktop .modal-popup .action-secondary:hover {
  background-color: #ffcd07;
}
.modal-popup .action-secondary:active {
  background-color: #ffb907 !important;
}
.modal-popup .modal-header,
.modal-popup .modal-content,
.modal-popup .modal-footer {
  padding: 0;
}
.modal-popup .modal-header .modal-title {
  margin: 0;
  border: none;
  color: #333333;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  padding-bottom: 10px;
  text-align: center;
}
.modal-popup .modal-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}
.modal-popup .modal-description a {
  text-decoration: none;
  color: #1c66a3;
}
.d_desktop .modal-popup .modal-description a {
  transition: color 0.3s;
}
.d_desktop .modal-popup .modal-description a:hover {
  color: #333333;
}
.modal-popup .modal-content {
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 100px;
  width: calc(100% + 15px);
  padding-right: 15px;
  box-sizing: border-box;
}
.modal-popup .modal-content::-webkit-scrollbar {
  width: 2px;
}
.modal-popup .modal-content::-webkit-scrollbar:horizontal {
  height: 4px;
}
.modal-popup .modal-content::-webkit-scrollbar-track {
  background-color: transparent;
}
.modal-popup .modal-content::-webkit-scrollbar-thumb {
  background-color: #1c66a3;
}
.modal-popup .modal-content::-webkit-scrollbar-thumb:hover {
  background-color: #1c66a3;
}
.modal-popup:not(.product-page-popup) .modal-content fieldset {
  border: none;
  display: block;
}
.modal-popup:not(.product-page-popup) .modal-content .field {
  --inputHeight: 56px;
  --padding: 20px;
  --borderRadius: 0;
  --fieldsBg: #ffffff;
  position: relative;
  margin-bottom: var(--padding);
  display: flex;
  flex-direction: column;
}
.modal-popup:not(.product-page-popup) .modal-content .field:not(.choice) .label {
  display: none;
}
.modal-popup:not(.product-page-popup) .modal-content .field.captcha {
  display: flex;
  flex-direction: column;
}
.modal-popup:not(.product-page-popup) .modal-content .field.captcha .compose-wrap {
  order: -1;
  margin-bottom: 15px;
}
.modal-popup:not(.product-page-popup) .modal-content .field.default-shown-caption input:not([type="radio"]):not([type="checkbox"]),
.modal-popup:not(.product-page-popup) .modal-content .field.default-shown-caption textarea {
  padding-top: 20px !important;
}
.modal-popup:not(.product-page-popup) .modal-content .field.default-shown-caption input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill,
.modal-popup:not(.product-page-popup) .modal-content .field.default-shown-caption textarea:-webkit-autofill {
  -webkit-text-fill-color: #333333 !important;
}
.modal-popup:not(.product-page-popup) .modal-content .field.default-shown-caption i.caption-text {
  transform: translateY(-9px);
  font-style: italic;
  font-size: 13px;
  line-height: 1.4;
}
.modal-popup:not(.product-page-popup) .modal-content .field.password {
  margin-bottom: calc(var(--padding) + 5px);
}
.modal-popup:not(.product-page-popup) .modal-content .field input:not([type="radio"]):not([type="checkbox"]),
.modal-popup:not(.product-page-popup) .modal-content .field textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ebebee;
  padding: 0 var(--padding);
  font-size: 14px;
  line-height: 1.6;
  border-radius: 0;
  color: #333333;
}
.modal-popup:not(.product-page-popup) .modal-content .field input:not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder,
.modal-popup:not(.product-page-popup) .modal-content .field textarea::-webkit-input-placeholder {
  color: #535353;
  opacity: 1;
}
.modal-popup:not(.product-page-popup) .modal-content .field input:not([type="radio"]):not([type="checkbox"])::-moz-placeholder,
.modal-popup:not(.product-page-popup) .modal-content .field textarea::-moz-placeholder {
  color: #535353;
  opacity: 1;
}
.modal-popup:not(.product-page-popup) .modal-content .field input:not([type="radio"]):not([type="checkbox"]):-ms-input-placeholder,
.modal-popup:not(.product-page-popup) .modal-content .field textarea:-ms-input-placeholder {
  color: #535353;
  opacity: 1;
}
.modal-popup:not(.product-page-popup) .modal-content .field input:not([type="radio"]):not([type="checkbox"]):-moz-placeholder,
.modal-popup:not(.product-page-popup) .modal-content .field textarea:-moz-placeholder {
  color: #535353;
  opacity: 1;
}
.modal-popup:not(.product-page-popup) .modal-content .field input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill,
.modal-popup:not(.product-page-popup) .modal-content .field textarea:-webkit-autofill {
  -webkit-text-fill-color: #333333;
  box-shadow: inset 0 0 0 500px var(--fieldsBg);
}
.modal-popup:not(.product-page-popup) .modal-content .field input:not([type="radio"]):not([type="checkbox"]) {
  height: var(--inputHeight);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.modal-popup:not(.product-page-popup) .modal-content .field .phonemask-validation {
  -webkit-appearance: none;
}
.modal-popup:not(.product-page-popup) .modal-content .field textarea {
  -webkit-appearance: none;
  border-radius: var(--borderRadius);
  resize: vertical;
  min-height: 170px;
  padding: var(--padding);
  background: var(--fieldsBg);
}
.modal-popup:not(.product-page-popup) .modal-content .field textarea.mage-error {
  box-shadow: 0px 2px 0px rgba(255, 95, 95, 0.36);
}
.modal-popup:not(.product-page-popup) .modal-content .field [id="password-strength-meter-container"] {
  font-size: 11px;
  position: absolute;
  left: 0;
  top: 100%;
  /* &.password-none,
			&.password-weak {
				span {
					color: red;
				}
			} */
}
.modal-popup:not(.product-page-popup) .modal-content .field [id="password-strength-meter-container"] span {
  color: red;
}
.modal-popup:not(.product-page-popup) .modal-content .field [id="password-strength-meter-container"].password-very-strong span {
  color: #50C83A;
}
.modal-popup:not(.product-page-popup) .modal-content .field > div.mage-error {
  order: 1;
}
.modal-popup:not(.product-page-popup) .modal-content .password-wrap {
  position: relative;
}
.modal-popup:not(.product-page-popup) .modal-content .password-wrap .icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-popup:not(.product-page-popup) .modal-content .password-wrap input[type="password"][style*="display: none"] ~ .icon,
.modal-popup:not(.product-page-popup) .modal-content .password-wrap input[type="password"][style*="display:none"] ~ .icon {
  display: none;
}
.modal-popup:not(.product-page-popup) .modal-content .password-wrap input[type="password"] ~ .icon-eye-disabled {
  visibility: hidden;
  opacity: 0;
}
.modal-popup:not(.product-page-popup) .modal-content .password-wrap input[type="text"] ~ .icon-eye {
  visibility: hidden;
  opacity: 0;
}
.modal-popup:not(.product-page-popup) .modal-content button {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
}
.modal-popup:not(.product-page-popup) .modal-content button.disabled {
  pointer-events: none;
}
.modal-popup:not(.product-page-popup) .modal-content button.disabled {
  background: #535353;
}
.d_desktop .modal-popup:not(.product-page-popup) .modal-content button:hover {
  background-color: #ffcd07;
}
.modal-popup:not(.product-page-popup) .modal-content button:active {
  background-color: #ffb907 !important;
}
.modal-popup:not(.product-page-popup) .modal-content .field {
  margin-bottom: 30px;
}
.v_small_mobile .modal-popup:not(.product-page-popup) .modal-content .field {
  margin-bottom: 15px;
}
.v_small_mobile .modal-popup:not(.product-page-popup) .modal-content .field:last-of-type {
  margin-bottom: 0;
}
.modal-popup:not(.product-page-popup) .modal-content .field:not(.choice) .label {
  display: none;
}
.modal-popup:not(.product-page-popup) .modal-content .field.choice {
  display: inline-flex;
  line-height: 20px;
  cursor: pointer;
  flex-direction: row;
}
.modal-popup:not(.product-page-popup) .modal-content .field.choice input[type="checkbox"] {
  flex-shrink: 0;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -1px 10px 0 0;
  cursor: pointer;
  background-color: #f3f9ff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 14px;
  border: none;
  transition: background-color 0.3s, background-size 0.2s, border-color 0.3s;
}
.modal-popup:not(.product-page-popup) .modal-content .field.choice input[type="checkbox"]:checked {
  background-image: url(/media/images/check.svg);
  background-color: #1c66a3;
}
.modal-popup:not(.product-page-popup) .modal-content .field.choice label {
  cursor: pointer;
}
.modal-popup:not(.product-page-popup) .modal-content form button {
  width: 100%;
}
.modal-popup:not(.product-page-popup) .modal-content [id="contact-call-back-form"] textarea {
  resize: none;
}
.modal-popup .modal-footer {
  padding-top: 20px;
}
.modal-popup .modal-footer .action-primary {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
  width: 100%;
}
.modal-popup .modal-footer .action-primary.disabled {
  pointer-events: none;
}
.modal-popup .modal-footer .action-primary.disabled {
  background: #535353;
}
.d_desktop .modal-popup .modal-footer .action-primary:hover {
  background-color: #ffcd07;
}
.modal-popup .modal-footer .action-primary:active {
  background-color: #ffb907 !important;
}
.modal-popup .modal-footer .action-secondary {
  margin-top: 20px;
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #1c66a3;
  width: 100%;
}
.modal-popup .modal-footer .action-secondary.disabled {
  pointer-events: none;
}
.d_desktop .modal-popup .modal-footer .action-secondary:hover {
  border-color: #035793;
  background-color: #ffffff;
}
.modal-popup .modal-footer .action-secondary.disabled {
  border-color: #535353;
}
.modal-popup .modal-footer .action-secondary:active {
  border-color: #1c66a3 !important;
  background-color: #ffffff !important;
}
.modal-popup.product-alert-popup .product-alert_title {
  font-weight: bold;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #333333;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .modal-popup.product-alert-popup .product-alert_title {
    font-size: 24px;
    line-height: 29px;
  }
}
.modal-popup.product-alert-popup .content.alert {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.modal-popup.product-alert-popup .content.alert .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 8px;
}
.modal-popup.product-alert-popup .content.alert .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.modal-popup.confirm .modal-inner-wrap {
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  .modal-popup.confirm .modal-inner-wrap {
    max-width: 380px;
  }
}
.modal-popup.confirm .modal-inner-wrap .modal-content {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.modal-popup.confirm .modal-inner-wrap .modal-footer {
  width: 100%;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0;
  flex-direction: column-reverse;
}
.modal-popup.confirm .modal-inner-wrap .modal-footer button {
  margin: 20px 0 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal-popup.confirm .modal-inner-wrap .modal-footer {
    flex-direction: row-reverse;
  }
  .modal-popup.confirm .modal-inner-wrap .modal-footer button {
    margin: 0;
  }
  .modal-popup.confirm .modal-inner-wrap .modal-footer .action-accept {
    width: 100%;
  }
  .modal-popup.confirm .modal-inner-wrap .modal-footer .action-secondary {
    width: calc(50% - 10px);
  }
  .modal-popup.confirm .modal-inner-wrap .modal-footer .action-secondary ~ .action-accept {
    width: calc(50% - 10px);
  }
}
.modal-popup.size-table .modal-inner-wrap {
  max-width: 960px;
}
.modal-popup.size-table .size-table-popup-content {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 30px;
}
.modal-popup.size-table .size-table-popup-content::-webkit-scrollbar {
  width: 2px;
}
.modal-popup.size-table .size-table-popup-content::-webkit-scrollbar:horizontal {
  height: 4px;
}
.modal-popup.size-table .size-table-popup-content::-webkit-scrollbar-track {
  background-color: transparent;
}
.modal-popup.size-table .size-table-popup-content::-webkit-scrollbar-thumb {
  background-color: #1c66a3;
}
.modal-popup.size-table .size-table-popup-content::-webkit-scrollbar-thumb:hover {
  background-color: #1c66a3;
}
.modal-popup.size-table .size-table-popup-content table {
  min-width: 480px;
  border: none;
}
.modal-popup.size-table .size-table-popup-content table th,
.modal-popup.size-table .size-table-popup-content table td {
  font-weight: 400;
  padding: 10px;
  border: 1px solid #EBEBEE;
  border-width: 1px 0 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.modal-popup.size-table .size-table-popup-content table th {
  font-style: italic;
}
.modal-popup.auth-popup .form-login .secondary {
  margin-top: -20px;
  margin-bottom: 30px;
}
.v_small_mobile .modal-popup.auth-popup .form-login .secondary {
  margin-top: -10px;
}
.modal-popup.auth-popup .form-login .secondary a {
  color: #1c66a3;
  text-decoration: none;
}
.d_desktop .modal-popup.auth-popup .form-login .secondary a {
  transition: color 0.3s;
}
.d_desktop .modal-popup.auth-popup .form-login .secondary a:hover {
  color: #333333;
}
.modal-popup.auth-popup .block-new-customer .block-content {
  margin-top: 30px;
}
.modal-popup.auth-popup .block-new-customer .block-content > p {
  display: none;
}
.modal-popup.auth-popup .block-new-customer .block-content a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #1c66a3;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.d_desktop .modal-popup.auth-popup .block-new-customer .block-content a {
  transition: color 0.3s;
}
.d_desktop .modal-popup.auth-popup .block-new-customer .block-content a:hover {
  color: #333333;
}
.modal-popup.auth-popup .block-isset-customer {
  text-align: center;
  margin-top: 15px;
}
.modal-popup.auth-popup .block-isset-customer a {
  margin-top: 10px;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #1c66a3;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
}
.d_desktop .modal-popup.auth-popup .block-isset-customer a {
  transition: color 0.3s;
}
.d_desktop .modal-popup.auth-popup .block-isset-customer a:hover {
  color: #333333;
}
.modal-popup.auth-popup .field.telephone [id="telephone"] {
  padding-top: 20px !important;
}
.modal-popup.auth-popup .field.telephone i.caption-text {
  transform: translateY(-9px);
  font-style: italic;
  font-size: 13px;
  line-height: 1.4;
}
.modal-popup.auth-popup .field.password {
  position: relative;
}
.modal-popup.auth-popup .field.password input {
  padding-right: 40px;
}
.modal-popup.auth-popup .field.password .password-icon-change {
  position: absolute;
  right: 0;
  top: 0;
  height: var(--inputHeight);
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .3s;
  color: #333333;
}
.modal-popup.auth-popup .field.password .password-icon-change svg {
  width: 18px;
  height: 18px;
}
.d_desktop .modal-popup.auth-popup .field.password .password-icon-change {
  transition: color 0.3s;
}
.d_desktop .modal-popup.auth-popup .field.password .password-icon-change:hover {
  color: #1c66a3;
}
.form-create-account .field.password {
  position: relative;
}
.form-create-account .field.password input {
  padding-right: 40px;
}
.form-create-account .field.password .password-icon-change {
  position: absolute;
  right: 0;
  top: 0;
  height: var(--inputHeight);
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .3s;
  color: #333333;
}
.form-create-account .field.password .password-icon-change svg {
  width: 18px;
  height: 18px;
}
.d_desktop .form-create-account .field.password .password-icon-change {
  transition: color 0.3s;
}
.d_desktop .form-create-account .field.password .password-icon-change:hover {
  color: #1c66a3;
}
.load.indicator {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.7);
}
.load.indicator:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  width: 160px;
  background: transparent url(/media/images/loader-2.gif) no-repeat 50% 50%;
  border-radius: 5px;
  box-sizing: border-box;
  margin: auto;
}
.video-modal-container {
  position: fixed;
  min-width: 320px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.5);
  z-index: 100;
  padding: 30px 0 30px 0;
  overflow-x: hidden;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0s, opacity .3s;
  transition-delay: .3s, 0s;
}
.video-modal-container.open {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s, 0s;
}
.video-modal-container.open[data-dropdown-container] {
  z-index: 20;
}
.video-modal-container [data-dropdown-toggle] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: none !important;
}
.video-modal-container .zoom {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.video-modal-container__content {
  position: relative;
  margin: auto;
  max-width: 90%;
}
.video-modal-container__content .close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 24px;
  z-index: 2;
  height: 24px;
  cursor: pointer;
}
.video-modal-container__content .close-modal:before,
.video-modal-container__content .close-modal:after {
  content: '';
  display: block;
  width: 17px;
  height: 1px;
  background: #333333;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: background .3s;
}
.video-modal-container__content .close-modal:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.video-modal-container__content .close-modal:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.d_desktop .video-modal-container__content .close-modal:hover:before,
.d_desktop .video-modal-container__content .close-modal:hover:after {
  background: #1c66a3;
}
.video-modal-container .video-modal-content {
  background: #fff;
  width: 800px;
  margin: auto;
  position: relative;
  padding: 60px;
  max-width: calc(100% - 20px);
}
.video-modal-container .video-modal-content .video-item {
  padding-top: 62%;
  position: relative;
}
.video-modal-container .video-modal-content .video-item iframe,
.video-modal-container .video-modal-content .video-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-modal-container .video-modal-content .video-item iframe {
  z-index: 1;
  background: #000000;
}
.video-modal-container .video-modal-content .video-item img {
  cursor: pointer;
}
.d_desktop .video-modal-container .video-modal-content .video-item img:hover ~ .play-icon {
  color: #1c66a3;
}
.video-modal-container .video-modal-content .video-item .play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #1c66a3;
  pointer-events: none;
  transition: color .3s;
}
.video-modal-container .video-modal-content .video-item .play-icon .icon {
  width: 50px;
  height: 50px;
}
.d_mobile:not(.v_tablet) .video-modal-container__content .close-modal {
  right: 5px;
  top: 5px;
}
.d_mobile:not(.v_tablet) .video-modal-container .video-modal-content {
  padding: 35px 10px;
}
.manager-form .iti {
  width: 100%;
}
.manager-form .iti .iti__flag-container {
  right: 0;
  display: flex;
  justify-content: flex-end;
}
.manager-form .iti .iti__country-list {
  top: 100%;
  width: 100%;
  right: -1px;
}
.minicart-modal._show .modal-inner-wrap {
  transform: translateX(0);
}
.minicart-modal .action-close {
  margin: 0;
  right: 0;
  top: 0;
}
.minicart-modal .modal-header .modal-title {
  font-size: 24px;
  padding-bottom: 10px;
  text-align: left;
}
.minicart-modal .modal-inner-wrap {
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  max-width: calc(100% - 60px);
  max-height: 100% !important;
  padding: 30px;
  transform: translateX(100%);
}
.minicart-modal .modal-content {
  flex-grow: 1;
}
.minicart-modal .modal-content .qty-group {
  display: none;
}
.minicart-modal .modal-content .subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding: 20px 0;
}
.minicart-modal .modal-content .subtotal .info-subtotal {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}
.minicart-modal .modal-content .subtotal .title-subtotal {
  font-weight: 400;
}
.minicart-modal .modal-content .info-cart {
  margin-top: 10px;
}
.minicart-modal .modal-content .current-item {
  border-top: 1px solid #ebebee;
  border-bottom: 1px solid #ebebee;
  position: relative;
  padding: 10px 0 10px 34px;
  display: grid;
  grid-template-columns: 105px 1fr;
}
.minicart-modal .modal-content .current-item a {
  text-decoration: none;
}
.minicart-modal .modal-content .current-item .item-name {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.6;
}
.minicart-modal .modal-content .current-item .item-name .sku {
  display: none;
}
.minicart-modal .modal-content .current-item .item-old-price {
  display: none;
}
.minicart-modal .modal-content .current-item .item-price {
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.minicart-modal .modal-content .current-item .image {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  margin-right: 15px;
  grid-row: span 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.minicart-modal .modal-content .current-item .image .product-image-wrapper {
  padding: 0 !important;
}
.minicart-modal .modal-content .current-item > .sku {
  font-size: 13px;
  line-height: 1.4;
  color: #535353;
  margin-top: 5px;
  display: block;
}
.minicart-modal .modal-content .current-item > button {
  width: 16px;
  height: 16px;
  background-color: transparent;
  padding: 0;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 10px;
  order: -1;
  color: #333333;
  transition: color .3s;
}
.minicart-modal .modal-content .current-item > button:before,
.minicart-modal .modal-content .current-item > button:after {
  content: '';
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: background .3s;
}
.minicart-modal .modal-content .current-item > button:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.minicart-modal .modal-content .current-item > button:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.d_desktop .minicart-modal .modal-content .current-item > button:hover,
.d_desktop .minicart-modal .modal-content .current-item > button:focus,
.d_desktop .minicart-modal .modal-content .current-item > button:active {
  background-color: transparent !important;
  color: #1c66a3;
}
.minicart-modal .modal-content .current-item > button .icon {
  display: none;
}
.minicart-modal .modal-content .current-item .item-qty {
  display: none;
}
.minicart-modal .modal-footer {
  padding-top: 0;
}
.minicart-modal .modal-footer .checkout-button {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
  font-size: 12px;
  height: 36px;
  width: 100%;
}
.minicart-modal .modal-footer .checkout-button.disabled {
  pointer-events: none;
}
.minicart-modal .modal-footer .checkout-button.disabled {
  background: #535353;
}
.d_desktop .minicart-modal .modal-footer .checkout-button:hover {
  background-color: #ffcd07;
}
.minicart-modal .modal-footer .checkout-button:active {
  background-color: #ffb907 !important;
}
.minicart-modal .modal-footer .continue-shopping-button {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #1c66a3;
  font-size: 12px;
  height: 36px;
  margin-top: 15px;
  width: 100%;
}
.minicart-modal .modal-footer .continue-shopping-button.disabled {
  pointer-events: none;
}
.d_desktop .minicart-modal .modal-footer .continue-shopping-button:hover {
  border-color: #035793;
  background-color: #ffffff;
}
.minicart-modal .modal-footer .continue-shopping-button.disabled {
  border-color: #535353;
}
.minicart-modal .modal-footer .continue-shopping-button:active {
  border-color: #1c66a3 !important;
  background-color: #ffffff !important;
}
.minicart-modal #product-ajax-cart,
.minicart-modal .ajax-cart-popup {
  height: 100%;
}
.minicart-modal .ajax-cart-popup {
  display: flex;
  flex-direction: column;
}
.minicart-wrapper[data-dropdown-container] {
  position: static;
}
.minicart-wrapper .loading-mask {
  display: none;
}
.minicart-wrapper:not([data-dropdown-container]) .block-minicart {
  display: none;
}
.minicart-wrapper.open .block-minicart {
  opacity: 1;
}
.minicart-wrapper .showcart {
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.minicart-wrapper .showcart .icon-cart {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  fill: transparent;
}
.minicart-wrapper .showcart .counter {
  border: 1px solid #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  transition: color .3s, background .3s;
}
.minicart-wrapper .showcart[data-dropdown-toggle] {
  background: transparent;
}
.d_desktop:not(.v_small_desktop) .minicart-wrapper .showcart {
  position: absolute;
  height: 32px;
  right: 0;
  bottom: calc(100% + 27px);
}
.d_desktop:not(.v_small_desktop) .minicart-wrapper .showcart:hover .counter {
  background: #ffffff;
  color: #1c66a3;
}
.d_desktop.sticky:not(.v_small_desktop) .minicart-wrapper .showcart {
  position: static;
  margin-left: var(--headerMargin);
}
div.field-error,
div.mage-error {
  text-align: right;
  font-size: 12px;
  line-height: 1;
  color: #ff0000;
  margin-top: 5px;
  order: 1;
}
div.field-error ~ .compose-wrap input:not([type=radio]):not([type=checkbox]),
div.mage-error ~ .compose-wrap input:not([type=radio]):not([type=checkbox]),
div.field-error ~ .compose-wrap textarea,
div.mage-error ~ .compose-wrap textarea {
  border-color: #ff0000 !important;
}
div.field-error ~ .control .field-error,
div.mage-error ~ .control .field-error {
  display: none;
}
i.caption-text {
  position: absolute;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--placeholderColor);
  transition: .3s;
}
.compose-wrap {
  --placeholderColor: #535353;
  width: 100%;
  display: flex;
  border-radius: var(--borderRadius);
  background: var(--fieldsBg);
  position: relative;
}
.compose-wrap .input-wrap {
  width: 100%;
}
.compose-wrap .input-wrap input {
  width: 100%;
  padding: 0 var(--padding);
  box-sizing: border-box;
  background: none;
  border: none;
}
.compose-wrap .input-wrap input:not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder {
  color: transparent !important;
}
.compose-wrap .input-wrap input:not([type="radio"]):not([type="checkbox"])::-moz-placeholder {
  color: transparent !important;
}
.compose-wrap .input-wrap input:not([type="radio"]):not([type="checkbox"]):-ms-input-placeholder {
  color: transparent !important;
}
.compose-wrap .input-wrap input:not([type="radio"]):not([type="checkbox"]):-moz-placeholder {
  color: transparent !important;
}
.compose-wrap .compose-caption {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 var(--padding);
}
.compose-wrap .input-wrap.focus input:not([type="radio"]):not([type="checkbox"]),
.compose-wrap .input-wrap.not-empty input:not([type="radio"]):not([type="checkbox"]),
.compose-wrap .input-wrap.focus textarea,
.compose-wrap .input-wrap.not-empty textarea {
  padding-top: 20px !important;
}
.compose-wrap .input-wrap.focus input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill,
.compose-wrap .input-wrap.not-empty input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill,
.compose-wrap .input-wrap.focus textarea:-webkit-autofill,
.compose-wrap .input-wrap.not-empty textarea:-webkit-autofill {
  -webkit-text-fill-color: #333333 !important;
}
.compose-wrap .input-wrap.focus + .compose-caption i.caption-text,
.compose-wrap .input-wrap.not-empty + .compose-caption i.caption-text {
  transform: translateY(-9px);
  font-style: italic;
  font-size: 13px;
  line-height: 1.4;
}
.top-header-banner {
  --bgc: #1c66a3;
  --tc: #ffffff;
  color: var(--tc);
  background: var(--bgc);
  text-align: center;
  font-size: 14px;
  line-height: 1;
  word-break: break-word;
  padding: 10px var(--containerPadding);
}
.top-header-banner a {
  margin-left: 5px;
  color: #1c66a3;
  text-decoration: none;
}
.top-header-banner > * {
  display: none;
}
.d_desktop .top-header-banner__desktop {
  display: block;
}
.d_mobile .top-header-banner__mobile {
  display: block;
}
.dot-style {
  position: relative;
  --color: #1c66a3;
}
.d_mobile .dot-style {
  padding-bottom: 28px;
}
.dot-style .owl-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
}
.dot-style .owl-dots button.owl-dot {
  width: 18px;
  height: 18px;
  outline: none;
  text-align: center;
  font-size: 0;
}
.dot-style .owl-dots button.owl-dot.active span {
  background-color: var(--color);
}
.dot-style .owl-dots button.owl-dot span {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #ebebee;
  border-radius: 50%;
  transition: background .3s;
}
.d_desktop .dot-style .owl-dots button.owl-dot:hover span {
  background: #1c66a3;
}
.dot-style.white {
  --color: #fff;
}
.arrow-style .owl-nav {
  display: flex;
  --color: #1c66a3;
  position: absolute;
}
.arrow-style .owl-nav > * {
  width: 56px;
  height: 56px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid rgba(235, 235, 238, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  transition: border .3s;
}
.arrow-style .owl-nav > *:not(.disabled):hover {
  border-color: #1c66a3;
}
.arrow-style .owl-nav > *:first-child {
  margin-right: 10px;
}
.arrow-style .owl-nav > * > span {
  width: 9px;
  height: 9px;
  border: 1px solid var(--color);
  transform: translateX(-2px) rotateZ(45deg);
  border-width: 2px 2px 0 0;
}
.arrow-style .owl-nav .disabled {
  pointer-events: none;
  opacity: .5;
}
.arrow-style .owl-nav .owl-prev > span {
  transform: translateX(2px) rotateZ(-135deg);
}
.arrow-pos .owl-nav {
  right: 0;
  bottom: calc(100% + 8px);
}
.columns {
  padding-bottom: var(--sectionMargin);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.d_desktop .columns {
  flex-wrap: nowrap;
}
.columns .column.main {
  width: 100%;
}
.sidebar-main {
  flex-shrink: 0;
  padding-right: 40px;
  order: -1;
}
.sidebar-main .leftMenu-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  padding: 15px calc(var(--containerPadding) + 35px) 15px var(--containerPadding);
  position: relative;
  width: 100%;
  min-height: 66px;
  box-sizing: border-box;
  justify-content: flex-start;
}
.sidebar-main .leftMenu-title::before,
.sidebar-main .leftMenu-title:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: calc(var(--containerPadding) + 7px);
  transform: translateY(-50%);
  width: 25px;
  height: 2px;
  background: #1c66a3;
  transition: transform .3s;
}
.sidebar-main .leftMenu-title .icon {
  display: none;
}
.sidebar-main .leftMenu-list {
  list-style: none;
  padding: 20px var(--containerPadding);
}
.sidebar-main .leftMenu-list a,
.sidebar-main .leftMenu-list span {
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
}
.d_desktop .sidebar-main .leftMenu-list a,
.d_desktop .sidebar-main .leftMenu-list span {
  transition: color 0.3s;
}
.d_desktop .sidebar-main .leftMenu-list a:hover,
.d_desktop .sidebar-main .leftMenu-list span:hover {
  color: #1c66a3;
}
.sidebar-main .leftMenu-list li + li {
  margin-top: 15px;
}
.sidebar-main .leftMenu-list li.active a,
.sidebar-main .leftMenu-list li.active span {
  color: #1c66a3;
}
.sidebar-main .leftMenu-list li.active a::before,
.sidebar-main .leftMenu-list li.active span::before {
  opacity: 1;
}
.d_desktop .sidebar-main .leftMenu-title {
  display: none;
}
.d_desktop .sidebar-main .leftMenu-list {
  border: 1px solid #f3f9ff;
  width: 260px;
  padding: 30px;
}
.d_desktop .sidebar-main .leftMenu-list a,
.d_desktop .sidebar-main .leftMenu-list span {
  position: relative;
}
.d_desktop .sidebar-main .leftMenu-list a::before,
.d_desktop .sidebar-main .leftMenu-list span::before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: -31px;
  background: #1c66a3;
  transition: opacity .3s;
  opacity: 0;
}
.d_desktop .sidebar-main .leftMenu-list[data-dropdown-content] {
  display: block;
  position: static;
}
.v_tablet .sidebar-main .leftMenu-title {
  font-size: 28px;
}
.d_mobile .sidebar-main {
  width: 100%;
  margin-bottom: 20px;
  padding-right: 0;
  position: sticky;
  top: 59px;
  background: #ffffff;
  z-index: 2;
}
.d_mobile .sidebar-main .leftMenu-list {
  left: var(--containerWidthMargin);
  width: var(--containerWidth);
  margin-top: -1px;
}
.d_mobile .sidebar-main .leftMenu-list::before {
  content: '';
  display: block;
  width: calc(100% - (var(--containerPadding) * 2));
  height: 1px;
  position: absolute;
  left: var(--containerPadding);
  top: 0;
  background: #ebebee;
}
.d_mobile .sidebar-main .leftMenu-list a,
.d_mobile .sidebar-main .leftMenu-list span {
  font-size: 14px;
  line-height: 1.6;
}
.d_mobile .sidebar-main .leftMenu-title {
  width: var(--containerWidth);
  margin-left: var(--containerWidthMargin);
}
.d_mobile .sidebar-main .leftMenu-list-wrap {
  border-width: 1px 0;
  border-style: solid;
  border-color: #ebebee;
  display: flex;
  flex-direction: column;
}
.d_mobile .sidebar-main .leftMenu-list-wrap.open::before {
  content: '';
  display: block;
  width: var(--containerWidth);
  height: 100vh;
  position: absolute;
  left: var(--containerWidthMargin);
  top: 0;
  background: rgba(51, 51, 51, 0.5);
}
.d_mobile .sidebar-main .leftMenu-list-wrap:not(.open) .leftMenu-list {
  display: none;
}
.d_mobile .sidebar-main .leftMenu-list-wrap:not(.open) .leftMenu-title::before {
  transform: translateY(-50%) rotate(90deg);
}
.d_mobile .sidebar-main + .column.main .page-title-wrapper {
  display: none;
}
.page-title-wrapper .page-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #333333;
  margin-bottom: 24px;
}
.page-title-wrapper .page-title__link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #1c66a3;
  display: flex;
  align-items: center;
}
.d_desktop .page-title-wrapper .page-title__link {
  transition: color 0.3s;
}
.d_desktop .page-title-wrapper .page-title__link:hover {
  color: #333333;
}
.page-title-wrapper .page-title__link svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
.d_desktop .page-title-wrapper .page-title {
  font-size: 32px;
  margin-bottom: 40px;
}
.d_desktop .page-title-wrapper .page-title + .owl-carousel,
.d_desktop .page-title-wrapper .page-title ~ * .owl-carousel,
.d_desktop .page-title-wrapper .page-title + .owl-loaded,
.d_desktop .page-title-wrapper .page-title ~ * .owl-loaded {
  padding-top: 12px;
}
.contacts-info-title {
  display: block;
  color: #535353;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.contacts-left {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 0 -30px -20px;
  width: calc(100% + 20px);
}
.contacts-left > * {
  width: calc(33.33% - 20px);
  margin: 0 0 30px 20px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-wrap: nowrap;
}
.d_mobile:not(.v_tablet) .contacts-left > * {
  width: calc(100% - 20px);
}
.contacts-left .icon-block {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}
.contacts-left .icon-block svg {
  width: 24px;
  height: 24px;
}
.contacts-left .contacts-content {
  flex-shrink: 0;
}
.contacts-left .contacts-info-sub-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  display: block;
}
.contacts-left .contacts-info-data,
.contacts-left .contacts-info-sub-addr {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  display: block;
}
.contacts-left .contacts-shops-content {
  display: block;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}
.contacts-left .footer-call-button {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #1c66a3;
  font-size: 12px;
  height: 36px;
  margin-top: 10px;
}
.contacts-left .footer-call-button.disabled {
  pointer-events: none;
}
.d_desktop .contacts-left .footer-call-button:hover {
  border-color: #035793;
  background-color: #ffffff;
}
.contacts-left .footer-call-button.disabled {
  border-color: #535353;
}
.contacts-left .footer-call-button:active {
  border-color: #1c66a3 !important;
  background-color: #ffffff !important;
}
.contacts-left .messengers {
  margin-top: 20px;
}
.contacts-left a.contacts-info-data,
.contacts-left a.contacts-shops-content {
  text-decoration: none;
}
.d_desktop .contacts-left a.contacts-info-data,
.d_desktop .contacts-left a.contacts-shops-content {
  transition: color 0.3s;
}
.d_desktop .contacts-left a.contacts-info-data:hover,
.d_desktop .contacts-left a.contacts-shops-content:hover {
  color: #1c66a3;
}
.form.contact {
  background: #f3f9ff;
  margin-top: 60px;
  padding: 30px;
}
.form.contact fieldset {
  border: none;
  display: block;
}
.form.contact .field {
  --inputHeight: 56px;
  --padding: 20px;
  --borderRadius: 0;
  --fieldsBg: #ffffff;
  position: relative;
  margin-bottom: var(--padding);
  display: flex;
  flex-direction: column;
}
.form.contact .field:not(.choice) .label {
  display: none;
}
.form.contact .field.captcha {
  display: flex;
  flex-direction: column;
}
.form.contact .field.captcha .compose-wrap {
  order: -1;
  margin-bottom: 15px;
}
.form.contact .field.default-shown-caption input:not([type="radio"]):not([type="checkbox"]),
.form.contact .field.default-shown-caption textarea {
  padding-top: 20px !important;
}
.form.contact .field.default-shown-caption input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill,
.form.contact .field.default-shown-caption textarea:-webkit-autofill {
  -webkit-text-fill-color: #333333 !important;
}
.form.contact .field.default-shown-caption i.caption-text {
  transform: translateY(-9px);
  font-style: italic;
  font-size: 13px;
  line-height: 1.4;
}
.form.contact .field.password {
  margin-bottom: calc(var(--padding) + 5px);
}
.form.contact .field input:not([type="radio"]):not([type="checkbox"]),
.form.contact .field textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ebebee;
  padding: 0 var(--padding);
  font-size: 14px;
  line-height: 1.6;
  border-radius: 0;
  color: #333333;
}
.form.contact .field input:not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder,
.form.contact .field textarea::-webkit-input-placeholder {
  color: #535353;
  opacity: 1;
}
.form.contact .field input:not([type="radio"]):not([type="checkbox"])::-moz-placeholder,
.form.contact .field textarea::-moz-placeholder {
  color: #535353;
  opacity: 1;
}
.form.contact .field input:not([type="radio"]):not([type="checkbox"]):-ms-input-placeholder,
.form.contact .field textarea:-ms-input-placeholder {
  color: #535353;
  opacity: 1;
}
.form.contact .field input:not([type="radio"]):not([type="checkbox"]):-moz-placeholder,
.form.contact .field textarea:-moz-placeholder {
  color: #535353;
  opacity: 1;
}
.form.contact .field input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill,
.form.contact .field textarea:-webkit-autofill {
  -webkit-text-fill-color: #333333;
  box-shadow: inset 0 0 0 500px var(--fieldsBg);
}
.form.contact .field input:not([type="radio"]):not([type="checkbox"]) {
  height: var(--inputHeight);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.form.contact .field .phonemask-validation {
  -webkit-appearance: none;
}
.form.contact .field textarea {
  -webkit-appearance: none;
  border-radius: var(--borderRadius);
  resize: vertical;
  min-height: 170px;
  padding: var(--padding);
  background: var(--fieldsBg);
}
.form.contact .field textarea.mage-error {
  box-shadow: 0px 2px 0px rgba(255, 95, 95, 0.36);
}
.form.contact .field [id="password-strength-meter-container"] {
  font-size: 11px;
  position: absolute;
  left: 0;
  top: 100%;
  /* &.password-none,
			&.password-weak {
				span {
					color: red;
				}
			} */
}
.form.contact .field [id="password-strength-meter-container"] span {
  color: red;
}
.form.contact .field [id="password-strength-meter-container"].password-very-strong span {
  color: #50C83A;
}
.form.contact .field > div.mage-error {
  order: 1;
}
.form.contact .password-wrap {
  position: relative;
}
.form.contact .password-wrap .icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0.3s;
}
.form.contact .password-wrap input[type="password"][style*="display: none"] ~ .icon,
.form.contact .password-wrap input[type="password"][style*="display:none"] ~ .icon {
  display: none;
}
.form.contact .password-wrap input[type="password"] ~ .icon-eye-disabled {
  visibility: hidden;
  opacity: 0;
}
.form.contact .password-wrap input[type="text"] ~ .icon-eye {
  visibility: hidden;
  opacity: 0;
}
.form.contact button {
  font-family: 'OpenSans';
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  height: 56px;
  padding: 0 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #333333;
  background: #ffc007;
}
.form.contact button.disabled {
  pointer-events: none;
}
.form.contact button.disabled {
  background: #535353;
}
.d_desktop .form.contact button:hover {
  background-color: #ffcd07;
}
.form.contact button:active {
  background-color: #ffb907 !important;
}
.form.contact .legend {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #333333;
  margin-bottom: 24px;
  padding-left: 15px;
}
.form.contact .legend__link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #1c66a3;
  display: flex;
  align-items: center;
}
.d_desktop .form.contact .legend__link {
  transition: color 0.3s;
}
.d_desktop .form.contact .legend__link:hover {
  color: #333333;
}
.form.contact .legend__link svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
.d_desktop .form.contact .legend {
  font-size: 32px;
  margin-bottom: 40px;
}
.d_desktop .form.contact .legend + .owl-carousel,
.d_desktop .form.contact .legend ~ * .owl-carousel,
.d_desktop .form.contact .legend + .owl-loaded,
.d_desktop .form.contact .legend ~ * .owl-loaded {
  padding-top: 12px;
}
.form.contact .note {
  display: none;
}
.form.contact .action.submit {
  width: 100%;
}
.form.contact .fieldset {
  margin-left: -15px;
  width: calc(100% + 15px);
}
.form.contact .field {
  margin-left: 15px;
  display: flex;
  flex-direction: column;
}
.form.contact .field:not(.comment) {
  width: calc(33.33% - 15px);
}
.form.contact .field.note {
  display: none;
}
.form.contact .field.comment {
  width: 100%;
}
.form.contact .field > div.mage-error {
  order: 1;
}
.d_mobile:not(.v_tablet) .form.contact .field:not(.comment) {
  width: calc(100% - 15px);
}
.form.contact .iti {
  width: 100%;
}
.form.contact .iti .iti__flag-container {
  right: 0;
  display: flex;
  justify-content: flex-end;
}
.form.contact .iti .iti__country-list {
  top: 100%;
  width: 100%;
  right: -1px;
}
.form.contact .fieldset {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.d_desktop .form.contact .action.submit {
  width: 260px;
}
.v_tablet .form.contact .action.submit {
  width: 214px;
}
.d_mobile:not(.v_tablet) .form.contact {
  margin-top: 50px;
  padding: 20px;
}
.leaflet-container {
  width: 100% !important;
  height: 570px !important;
}
.leaflet-container .leaflet-pane,
.leaflet-container .leaflet-bottom,
.leaflet-container .leaflet-top {
  z-index: 5;
}
.map-info-popup-outer {
  display: none;
}
