.modal-custom fieldset,
.modal-popup fieldset,
.modal-slide fieldset {
  border: none;
}
.modal-custom .action-close,
.modal-popup .action-close,
.modal-slide .action-close {
  background-image: none;
  background: none;
  -moz-box-sizing: content-box;
  border: 0;
  box-shadow: none;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-shadow: none;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 0;
  outline: none;
}
.modal-custom .action-close > span,
.modal-popup .action-close > span,
.modal-slide .action-close > span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.modal-custom .action-close:before,
.modal-popup .action-close:before,
.modal-slide .action-close:before {
  content: '\D7';
  font-size: 20px;
  line-height: 20px;
  color: #757575;
  margin: 0;
  vertical-align: top;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
  cursor: pointer;
}
.modal-custom .action-close:hover,
.modal-popup .action-close:hover,
.modal-slide .action-close:hover {
  background: none;
  border: none;
}
.modal-custom .action-close:hover:before,
.modal-popup .action-close:hover:before,
.modal-slide .action-close:hover:before {
  color: inherit;
}
.modal-custom .action-close:focus,
.modal-popup .action-close:focus,
.modal-slide .action-close:focus,
.modal-custom .action-close:active,
.modal-popup .action-close:active,
.modal-slide .action-close:active {
  background: none;
  border: none;
}
.modal-custom .action-close:active:before,
.modal-popup .action-close:active:before,
.modal-slide .action-close:active:before {
  color: inherit;
}
.modal-custom .action-close.disabled,
.modal-popup .action-close.disabled,
.modal-slide .action-close.disabled,
.modal-custom .action-close[disabled],
.modal-popup .action-close[disabled],
.modal-slide .action-close[disabled],
fieldset[disabled] .modal-custom .action-close,
fieldset[disabled] .modal-popup .action-close,
fieldset[disabled] .modal-slide .action-close {
  pointer-events: none;
  opacity: 0.5;
}
.modal-slide,
.modal-popup {
  bottom: 0;
  left: 0;
  min-width: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s ease;
}
.modal-slide .modal-inner-wrap,
.modal-popup .modal-inner-wrap {
  background-color: #ffffff;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.35);
  opacity: 1;
  pointer-events: auto;
}
.modal-slide._show,
.modal-popup._show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.modal-slide._show .modal-inner-wrap,
.modal-popup._show .modal-inner-wrap {
  transform: translate(0, 0);
}
.modal-slide {
  left: 44px;
  z-index: 900;
}
.modal-slide .modal-inner-wrap {
  height: 100%;
  overflow-y: auto;
  position: static;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  width: auto;
}
.modal-slide .modal-header,
.modal-slide .modal-content,
.modal-slide .modal-footer {
  padding: 0 2.6rem 2.6rem;
}
.modal-slide .modal-header {
  padding-bottom: 2.1rem;
  padding-top: 2.1rem;
}
.modal-slide .action-close {
  margin: 15px;
  padding: 0;
}
.modal-slide .page-main-actions {
  margin-bottom: -12.9rem;
  margin-top: 2.1rem;
}
.modal-slide._show .modal-inner-wrap {
  transform: translateX(0);
}
.modal-slide._inner-scroll .modal-inner-wrap {
  overflow-y: visible;
  display: flex;
  flex-direction: column;
}
.modal-slide._inner-scroll .modal-header,
.modal-slide._inner-scroll .modal-footer {
  flex-grow: 0;
  flex-shrink: 0;
}
.modal-slide._inner-scroll .modal-content {
  overflow-y: auto;
}
.modal-slide._inner-scroll .modal-footer {
  margin-top: auto;
}
.modal-popup {
  z-index: 900;
  left: 0;
  overflow-y: auto;
  pointer-events: none;
}
.modal-popup .modal-inner-wrap {
  margin: 5rem auto;
  width: 75%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}
.modal-popup .modal-header,
.modal-popup .modal-content,
.modal-popup .modal-footer {
  padding-left: 3rem;
  padding-right: 3rem;
}
.modal-popup .modal-header,
.modal-popup .modal-footer {
  flex-grow: 0;
  flex-shrink: 0;
}
.modal-popup .modal-header {
  padding-bottom: 1.2rem;
  padding-top: 3rem;
}
.modal-popup .modal-footer {
  margin-top: auto;
  padding-bottom: 3rem;
  padding-top: 3rem;
}
.modal-popup .modal-footer-actions {
  text-align: right;
}
.modal-popup .modal-title {
  border-bottom: 1px solid #c1c1c1;
  font-weight: 300;
  padding-bottom: 10px;
  font-size: 26px;
  margin-bottom: 0;
  min-height: 1em;
  word-wrap: break-word;
}
.modal-popup .action-close {
  padding: 20px;
}
.modal-popup._show .modal-inner-wrap {
  transform: translateY(0);
}
.modal-popup.confirm .modal-inner-wrap {
  max-width: 50rem;
}
.modal-popup.confirm .modal-inner-wrap .modal-content {
  padding-right: 7rem;
}
.modal-popup._inner-scroll {
  overflow-y: visible;
}
.modal-popup._inner-scroll .modal-inner-wrap {
  max-height: 90%;
}
.modal-popup._inner-scroll .modal-content {
  overflow-y: auto;
}
.ie11 .modal-popup._inner-scroll {
  overflow-y: auto;
}
.ie11 .modal-popup._inner-scroll .modal-inner-wrap {
  max-height: none;
}
.modal-custom .action-close {
  margin: 15px;
}
.modals-overlay {
  z-index: 899;
  background-color: rgba(51, 51, 51, 0.55);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
body._has-modal {
  height: 100%;
  overflow: hidden;
  width: 100%;
}
body._has-modal-custom .modal-custom-overlay {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 899;
}
[data-dropdown-container] {
  position: relative;
}
[data-dropdown-container] ul {
  list-style: none;
  padding: 0;
}
[data-dropdown-container] [data-dropdown-toggle] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}
[data-dropdown-container] [data-dropdown-toggle] .icon {
  position: relative;
  transform: rotate(0deg);
  transition: transform 0.3s;
}
[data-dropdown-container] [data-dropdown-toggle] .icon.icon-arrow_down {
  width: 12px;
  height: 12px;
}
[data-dropdown-container] [data-dropdown-toggle][data-reverse-y] .icon {
  transform: rotate(180deg);
}
[data-dropdown-container] [data-dropdown-content] {
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  min-width: 100%;
}
[data-dropdown-container] [data-dropdown-content][data-reverse-x] {
  left: unset;
  right: 0;
}
[data-dropdown-container] [data-dropdown-content][data-reverse-y] {
  top: unset;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
}
[data-dropdown-container][data-position="fixed"] [data-dropdown-content] {
  position: fixed;
}
[data-dropdown-container] .close-icon-block {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  position: absolute;
  top: 32px;
  right: 32px;
  background: #fff;
  cursor: pointer;
  z-index: 5;
}
[data-dropdown-container]:not(.open) #suhiya_cities,
[data-dropdown-container]:not(.open) > [data-dropdown-content] {
  display: none;
}
[data-dropdown-container]:not(.open)[data-show-type="slide"] [data-dropdown-content] {
  display: block;
  visibility: hidden;
}
[data-dropdown-container]:not(.open) [data-dropdown-toggle] a {
  pointer-events: none;
}
[data-dropdown-container].open {
  z-index: 2;
}
[data-dropdown-container].open > [data-dropdown-toggle] {
  background: #fff;
}
[data-dropdown-container].open > [data-dropdown-toggle] .icon.icon-arrow_down {
  transform: rotate(180deg);
}
[data-dropdown-container].open > [data-dropdown-toggle][data-reverse-y] .icon.icon-arrow_down {
  transform: rotate(0deg);
}
[data-show-hide-block] {
  overflow: hidden;
  max-height: 150px;
  transition: max-height 0.3s;
}
[data-show-hide-container] [data-trigger].disable {
  display: none;
}
.slide-label-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 20px;
}
.slide-label-wrap label {
  position: absolute;
  left: 0;
  top: 20px;
  transition: top 0.3s;
}
.slide-label-wrap input:focus ~ label,
.slide-label-wrap textarea:focus ~ label,
.slide-label-wrap input.fill ~ label,
.slide-label-wrap textarea.fill ~ label {
  top: 0;
}
.swiper-wrap .swiper-block {
  display: inline-flex;
}
.swiper-wrap.swiper-init {
  position: relative;
  overflow: hidden;
  justify-content: unset;
  cursor: grab;
}
.swiper-wrap.swiper-init .swiper-block {
  position: absolute;
  top: 0;
  flex-wrap: nowrap !important;
}
.swiper-wrap.swiper-init .swiper-block > * {
  white-space: nowrap;
  flex-wrap: nowrap !important;
}
.swiper-wrap.swiper-init .swiper-block.swipe:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.swipe-zoom-block {
  position: absolute;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.swipe-zoom-block.swipe:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.swipe-zoom-block img {
  height: auto;
  display: block;
}
.zoom-image-on-hover-wrap {
  position: relative;
}
.zoom-image-on-hover-wrap .zoom-elements .zoom-thumb {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
}
.zoom-image-on-hover-wrap .zoom-elements .hover-zoom-block {
  position: absolute;
  z-index: 99;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 50vw;
  overflow: hidden;
}
.zoom-image-on-hover-wrap .zoom-elements .hover-zoom-block img {
  -o-object-fit: none;
     object-fit: none;
  max-width: unset;
  max-height: unset;
  position: absolute;
  top: 0;
  left: 0;
}
.qty-input-wrapper {
  width: 120px;
  height: 40px;
  border: 1px solid #E3E3E3;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.qty-input-wrapper input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  text-align: center;
  font-size: 16px;
  color: #000;
  box-sizing: border-box;
  padding: 0 40px;
}
.qty-input-wrapper .nav-up,
.qty-input-wrapper .nav-down {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-input-wrapper .nav-up.disabled,
.qty-input-wrapper .nav-down.disabled {
  opacity: 0.2;
  pointer-events: none;
}
.qty-input-wrapper .nav-up {
  right: 0;
}
.qty-input-wrapper .nav-down {
  left: 0;
}
.qty-input-wrapper .plus,
.qty-input-wrapper .minus {
  width: 30%;
  height: 30%;
  position: relative;
}
.qty-input-wrapper .plus:before,
.qty-input-wrapper .minus:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: 100%;
  background: currentColor;
}
.qty-input-wrapper .plus:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  height: 100%;
  width: 2px;
  background: currentColor;
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  padding: 6px;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  display: flex;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none !important;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 500ms ease-in-out;
}
body.compensate-for-scrollbar {
  overflow: hidden;
}
.fancybox-active {
  height: auto;
}
.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}
.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}
.fancybox-container * {
  box-sizing: border-box;
}
.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}
.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fancybox-toolbar {
  right: 0;
  top: 0;
}
.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}
.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}
.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}
.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}
.fancybox-slide--image::before {
  display: none;
}
.fancybox-slide--html {
  padding: 6px;
}
.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}
.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}
.fancybox-container [data-selectable='true'] {
  cursor: text;
}
.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.fancybox-spaceball {
  z-index: 1;
}
.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}
.fancybox-slide--video .fancybox-content {
  background: #000;
}
.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}
.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}
.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}
.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}
.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}
.fancybox-button:hover {
  color: #fff;
}
.fancybox-button:focus {
  outline: none;
}
.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}
/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}
.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}
.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}
.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}
.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}
.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}
/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}
.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}
.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}
.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}
/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}
.fancybox-navigation .fancybox-button div {
  padding: 7px;
}
.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}
/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}
@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px 44px 25px 44px;
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}
.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}
.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}
/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}
@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}
/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}
.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}
.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}
/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}
/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}
/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: 12px;
      padding-right: 12px;
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}
.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.fancybox-share p {
  margin: 0;
  padding: 0;
}
.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}
.fancybox-share__button:hover {
  text-decoration: none;
}
.fancybox-share__button--fb {
  background: #3b5998;
}
.fancybox-share__button--fb:hover {
  background: #344e86;
}
.fancybox-share__button--pt {
  background: #bd081d;
}
.fancybox-share__button--pt:hover {
  background: #aa0719;
}
.fancybox-share__button--tw {
  background: #1da1f2;
}
.fancybox-share__button--tw:hover {
  background: #0d95e8;
}
.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}
.fancybox-share__button svg path {
  fill: #fff;
}
.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}
/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}
.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}
.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}
.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}
.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}
.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}
.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}
.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}
/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/* cyrillic */
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzjtGyNL4U.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzjsGyN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKew72j00.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKfw72.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3jtGyNL4U.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3jsGyN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjtGyNL4U.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-display: swap;
  font-family: 'Ubuntu';
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjsGyN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.cleaner:after {
  content: '';
  display: block;
  clear: both;
}
.inner {
  width: 100%;
  max-width: 1440px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.themeScroll {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.themeScroll::-webkit-scrollbar {
  width: 4px;
}
.themeScroll::-webkit-scrollbar:horizontal {
  height: 4px;
}
.themeScroll::-webkit-scrollbar-track {
  background-color: transparent;
}
.themeScroll::-webkit-scrollbar-thumb {
  background-color: #50C83A;
  border-radius: 4px;
}
.themeScroll::-webkit-scrollbar-thumb:hover {
  background-color: #50C83A;
}
@keyframes blink {
  0% {
    color: #231F20;
  }
  50% {
    color: #50C83A;
  }
  100% {
    color: #231F20;
  }
}
.page-header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (min-width: 769px) {
  .page-header {
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  }
}
html.overlay .page-header,
body._has-modal .page-header {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}
body._has-modal.touch .page-header .header .header-mobile-wrap {
  pointer-events: none;
}
.page-header ul {
  list-style: none;
}
.page-header a {
  text-decoration: none;
  color: #000;
}
.page-header .header.content {
  max-width: 1440px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  height: 48px;
  border-bottom: 1px solid #E6E6E6;
}
.page-header .header.content .aw-afptc__promo-offer-link {
  display: none;
}
.page-header .header .header-left-block,
.page-header .header .header-right-block,
.page-header .header .header-mobile-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-header .header .header-mobile-wrap {
  flex-grow: 1;
}
.page-header .header .action.nav-toggle {
  display: none;
}
.page-header .header .logo {
  display: block;
  margin-right: 10px;
}
.page-header .header .logo img {
  /*width: auto;
				height: auto;
				max-height: 28px;*/
}
.page-header .header .nav-sections {
  flex-grow: 1;
}
.page-header .header .checkout-phones-block {
  margin-left: 20px;
}
.page-header .header .checkout-phones-block .checkout-phones-general {
  padding: 14px 0;
  height: auto;
}
.page-header .header .checkout-phones-block .checkout-phones-general .icon {
  margin-left: 5px;
}
.page-header .header .checkout-phones-block .checkout-phones-content {
  padding: 0 14px 14px;
}
.page-header .header .checkout-phones-block .phone-item:not(:last-child):not(.checkout-phones-general) {
  margin-bottom: 14px;
}
.page-header .header .checkout-phones-block .phone-item a {
  display: block;
  white-space: nowrap;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
.page-header .header .checkout-phones-block.open {
  margin: 0 -14px;
  margin-left: 6px;
}
.page-header .header .checkout-phones-block.open .checkout-phones-general {
  padding: 14px;
}
.page-header .header .minicart-wrapper .action.showcart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  position: relative;
}
.page-header .header .minicart-wrapper .action.showcart .text {
  display: block;
  position: relative;
}
.page-header .header .minicart-wrapper .action.showcart .loading-mask {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
}
.page-header .header .minicart-wrapper .action.showcart .loading-mask .loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header .header .minicart-wrapper .action.showcart .loading-mask .loader img {
  position: static !important;
  max-width: 30px;
  display: block;
}
.page-header .header .minicart-wrapper .icon-cart {
  stroke: transparent;
  fill: currentColor;
  width: 32px;
  height: 32px;
  display: block;
}
.page-header .header .minicart-wrapper .mini-basket-product__ingredients .mini-basket-product__head {
  font-size: 14px;
  font-weight: bold;
}
.page-header .header .minicart-wrapper .js-mini-basket__ingredient .ingr_item {
  font-size: 12px;
}
.page-header .header .minicart-wrapper .counter.qty {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #50C83A;
  position: absolute;
  top: 0;
  right: 0;
}
.page-header .header .minicart-wrapper .counter.qty.empty {
  display: none;
}
.page-header .header .minicart-wrapper .minicart-message-wrapper {
  position: absolute;
  top: 100%;
  right: 25px;
  margin-top: 30px;
  box-shadow: -5px 10px 23px rgba(0, 0, 0, 0.15);
}
.page-header .header .minicart-wrapper .minicart-message-wrapper:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -12px;
  right: 0;
  width: 20px;
  height: 20px;
  transform: skewY(-45deg);
  box-shadow: -7px 0px 15px 5px rgba(0, 0, 0, 0.15);
}
.page-header .header .minicart-wrapper .minicart-message-wrapper:after {
  content: '';
  position: absolute;
  top: -22px;
  right: 0;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-right: 20px solid #fff;
}
.page-header .header .minicart-wrapper .minicart-message-wrapper .message {
  display: block;
  padding: 20px 40px;
  background: #fff;
  white-space: nowrap;
  font-weight: normal;
  color: #3FAE2A;
}
.page-header .header .minicart-wrapper:not([data-dropdown-container]) .block-minicart {
  display: none;
}
.page-header .header .minicart-wrapper .block-minicart {
  width: 500px;
  left: unset;
  right: 0;
  padding: 0;
}
.page-header .header .minicart-wrapper .block-minicart [id="minicart-content-wrapper"].loading {
  position: relative;
}
.page-header .header .minicart-wrapper .block-minicart [id="minicart-content-wrapper"].loading:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7) url(/media/sushiya/dst/images/loader-2.gif?e9409e128885acb4a1a1b7b4fd00cfe7) no-repeat 50% 50%;
}
.page-header .header .minicart-wrapper .block-minicart ul,
.page-header .header .minicart-wrapper .block-minicart ol {
  list-style: none;
}
.page-header .header .minicart-wrapper .block-minicart .close-icon-block {
  top: 30px;
  right: 30px;
  z-index: 3;
}
.page-header .header .minicart-wrapper .block-minicart .block-title {
  padding: 30px 60px;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
}
.page-header .header .minicart-wrapper .block-minicart .digital-description,
.page-header .header .minicart-wrapper .block-minicart .sauces-description {
  display: none;
}
.page-header .header .minicart-wrapper .block-minicart .block-content {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 136px);
}
.page-header .header .minicart-wrapper .block-minicart .block-content .empty {
  padding: 30px 60px 60px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .items-total-info {
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  color: #000;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .items-total-info .items-total {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: flex-end;
  line-height: 24px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .items-total-info .items-total .subtotal {
  width: unset;
  margin-left: 10px;
  font-weight: bold;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .items-total,
.page-header .header .minicart-wrapper .block-minicart .block-content .subtotal {
  width: 50%;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .items-total {
  font-size: 16px;
  line-height: 16px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .subtotal {
  text-align: right;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .subtotal .label {
  font-size: 16px;
  line-height: 16px;
  opacity: 0.4;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .subtotal .amount {
  font-size: 24px;
  line-height: 28px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .actions {
  padding: 25px 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.page-header .header .minicart-wrapper .block-minicart .block-content .actions .checkout {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  width: 100%;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .actions .checkout.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .page-header .header .minicart-wrapper .block-minicart .block-content .actions .checkout:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.page-header .header .minicart-wrapper .block-minicart .block-content .actions .checkout:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .actions .viewcart {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  color: #000;
  background: #fff;
  font-weight: normal;
  width: 100%;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .actions .viewcart.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .page-header .header .minicart-wrapper .block-minicart .block-content .actions .viewcart:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.page-header .header .minicart-wrapper .block-minicart .block-content .actions .viewcart:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .actions .viewcart,
.page-header .header .minicart-wrapper .block-minicart .block-content .actions .viewcart:active {
  border-color: #DADADA;
}
@media screen and (min-width: 769px) {
  .page-header .header .minicart-wrapper .block-minicart .block-content .actions .viewcart:hover {
    border-color: #DADADA;
    background: #F4F4F3;
  }
}
.page-header .header .minicart-wrapper .block-minicart .block-content .actions .viewcart:active {
  background: #E7E7E7;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .actions .viewcart .icon {
  opacity: 0.2;
  position: relative;
  top: 1px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .actions .validate-message {
  display: block;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  margin-top: 10px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items {
  padding: 0 24px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .edit_ingridients:after {
  width: 20px;
  height: 20px;
  display: inline-block;
  right: 0px;
  position: absolute;
  opacity: 0.5;
  top: 50px;
  cursor: pointer;
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 306.637 306.637'%3E%3Cpath d='M12.809 238.52L0 306.637l68.118-12.809 184.277-184.277-55.309-55.309L12.809 238.52zm47.981 41.423l-41.992 7.896 7.896-41.992L197.086 75.455l34.096 34.096L60.79 279.943zM251.329 0l-41.507 41.507 55.308 55.308 41.507-41.507L251.329 0zm-20.294 41.507l20.294-20.294 34.095 34.095-20.294 20.294-34.095-34.095z'/%3E%3C/svg%3E");
}
@media screen and (max-width: 479px) {
  .page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .edit_ingridients:after {
    top: 30px;
  }
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items::-webkit-scrollbar {
  width: 4px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items::-webkit-scrollbar:horizontal {
  height: 4px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items::-webkit-scrollbar-track {
  background-color: transparent;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items::-webkit-scrollbar-thumb {
  background-color: #50C83A;
  border-radius: 4px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items::-webkit-scrollbar-thumb:hover {
  background-color: #50C83A;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items ~ .actions {
  border-bottom: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item {
  padding: 24px 0;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item:not(:first-child) {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product {
  display: flex;
  flex-wrap: wrap;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-photo {
  width: 80px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-photo .product-image-container {
  display: block;
  max-width: 64px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-photo .product-image-container .product-image-wrapper {
  padding: 0 !important;
  display: block;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details {
  width: calc(100% - 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .product-item-name {
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  font-weight: normal;
  color: #000;
  margin-bottom: 10px;
  padding-right: 40px;
  box-sizing: border-box;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .product-item-name .name {
  display: block;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .product-item-name .free {
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  box-sizing: border-box;
  height: 24px;
  background: #50C83A;
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .product-item-pricing {
  flex-grow: 1;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #000;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .product-item-pricing .price-container {
  font-weight: bold;
  margin-right: 30px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .product-item-pricing .details-qty {
  width: 120px;
  height: 40px;
  border-color: transparent;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .product-item-pricing .details-qty input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  text-align: center;
  font-size: 16px;
  color: #000;
  box-sizing: border-box;
  padding: 0 40px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .actions {
  all: unset;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .actions .delete {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .actions .delete .name {
  display: none;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .actions .delete .icon {
  fill: currentColor;
  font-size: 20px;
  opacity: 0.4;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product.options.values {
  margin: 10px 0 0;
  font-size: 14px;
  opacity: 0.4;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .options-toggle {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #50C83A;
  margin: 12px 0 0 80px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .options-toggle .icon {
  margin-left: 5px;
  position: relative;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product > .product.options.values {
  width: 100%;
  opacity: 1;
  margin-top: 24px;
  display: none;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product > .product.options.values .bundle-options-wrapper {
  width: 100%;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product > .product.options.values .bundle-options .option {
  display: flex;
  align-items: center;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product > .product.options.values .bundle-options .option .image {
  width: 50px;
  margin: 0 50px 0 24px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product > .product.options.values .bundle-options .option .image img {
  display: block;
  max-width: 100%;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product > .product.options.values .bundle-options .option .name {
  width: calc(100% - 125px);
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item.show-options .product .options-toggle .icon {
  transform: rotate(180deg);
}
.page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item.show-options .product .product.options.values {
  display: block;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .description {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  opacity: 0.6;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .sauces-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  animation: blink 2s infinite;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .sauces-title span {
  margin-right: 10px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .sauces-title .icon {
  position: relative;
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces [id="sauces-form"] {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .items {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin: 0 -10px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .items .sauce-item {
  width: calc(33.33% - 20px);
  margin: 0 10px 10px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 14px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .items .sauce-item .price {
  font-weight: bold;
  margin-left: 3px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .items .sauce-item .details-qty {
  margin-top: 5px;
  border: none;
  width: 100px;
  height: 30px;
  border: 1px solid transparent;
  border-radius: 22px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .items .sauce-item .details-qty input {
  width: 100%;
  height: 100%;
  padding: 0 30px;
  border: none;
  outline: none;
  text-align: center;
  font-size: 18px;
  color: #000;
  box-sizing: border-box;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .items .sauce-item .details-qty .nav-up,
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .items .sauce-item .details-qty .nav-down {
  width: 30px;
  height: 30px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .items .sauce-item .details-qty .plus,
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .items .sauce-item .details-qty .minus {
  width: 40%;
  height: 40%;
}
@media screen and (max-width: 479px) {
  .page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .items .sauce-item {
    width: 100%;
    margin: 0 10px 10px;
    justify-content: space-between;
    align-items: center;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .items .sauce-item .price {
    flex-grow: 1;
  }
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .actions {
  padding: 24px 0 10px;
  border: none;
  display: flex;
  align-items: center;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .actions .add-sauces {
  background: none;
  border: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #50C83A;
  padding-left: 44px;
  position: relative;
  cursor: pointer;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .actions .add-sauces:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  margin-top: -6px;
  background: linear-gradient(0deg, transparent 0px, transparent 5px, #50C83A 5px, #50C83A 7px, transparent 7px), linear-gradient(90deg, transparent 0px, transparent 5px, #50C83A 5px, #50C83A 7px, transparent 7px);
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .actions .add-sauces:hover {
  color: #231F20;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .actions .add-sauces:hover:before {
  background: linear-gradient(0deg, transparent 0px, transparent 5px, #231F20 5px, #231F20 7px, transparent 7px), linear-gradient(90deg, transparent 0px, transparent 5px, #231F20 5px, #231F20 7px, transparent 7px);
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces .actions .sauce-final-price {
  font-size: 18px;
  font-weight: bold;
  margin-left: 30px;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces.open .sauces-title {
  margin-bottom: 20px;
  animation: none;
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces.open .sauces-title .icon {
  transform: rotate(0deg);
}
.page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .sauces.open [id="sauces-form"] {
  max-height: 200px;
}
@media screen and (max-width: 768px) {
  .page-header .header .minicart-wrapper [data-dropdown-content] {
    z-index: 101;
    transform: translateX(100%);
  }
  .page-header .header .minicart-wrapper.open [data-dropdown-toggle]:before {
    content: '';
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .page-header .header .minicart-wrapper.open [data-dropdown-content] {
    transform: translateX(0);
  }
  .page-header .header .minicart-wrapper.before-close [data-dropdown-toggle]:before {
    display: none;
  }
  .page-header .header .minicart-wrapper.before-close [data-dropdown-content] {
    transform: translateX(100%);
  }
  .page-header .header .minicart-wrapper #minicart-content-wrapper {
    height: 100%;
  }
  .page-header .header .minicart-wrapper .block-minicart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: unset;
    width: 100%;
    max-width: 500px;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-title {
    padding: 30px 24px 10px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .page-header .header .minicart-wrapper .block-minicart .digital-description,
  .page-header .header .minicart-wrapper .block-minicart .sauces-description {
    display: inline-flex;
    margin-left: 5px;
  }
  .page-header .header .minicart-wrapper .block-minicart .digital-description .trigger,
  .page-header .header .minicart-wrapper .block-minicart .sauces-description .trigger {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
  }
  .page-header .header .minicart-wrapper .block-minicart .digital-description .text,
  .page-header .header .minicart-wrapper .block-minicart .sauces-description .text {
    display: none;
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 24px;
    right: 24px;
    box-sizing: border-box;
    padding: 24px;
    background: #fff;
    border-radius: 10px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  }
  .page-header .header .minicart-wrapper .block-minicart .digital-description.show .text,
  .page-header .header .minicart-wrapper .block-minicart .sauces-description.show .text {
    display: block;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content {
    max-height: calc(100% - 88px);
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .empty {
    padding: 24px;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .after-cart-items .cart-sauces .description {
    display: none;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .items-total-info {
    display: block;
    padding: 0 24px;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .actions {
    padding: 15px 24px;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item {
    padding: 24px 0;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product {
    display: flex;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-photo {
    width: 80px;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-photo .product-image-container {
    display: block;
    max-width: 64px;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-photo .product-image-container .product-image-wrapper {
    padding: 0 !important;
    display: block;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .product-item-name {
    padding-right: 0;
  }
  .page-header .header .minicart-wrapper .block-minicart .block-content .minicart-items .item .product .product-item-details .actions .delete {
    position: static;
  }
  .page-header .header .minicart-wrapper .action.showcart {
    height: 47px;
  }
}
[data-dropdown-container] [data-dropdown-toggle] {
  height: 48px;
  padding: 0;
}
[data-dropdown-container] [data-dropdown-content] {
  padding: 40px;
}
[data-dropdown-container] .close-icon-block {
  color: #231F20;
}
.dropdown-toggle-icon-block {
  width: 50px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #231F20;
  font-size: 20px;
}
.header-customer {
  height: 48px;
}
.header-customer .header-customer-block {
  height: 100%;
}
.header-customer .authorization-link-icon {
  height: 100%;
}
.header-customer .icon-customer {
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #231F20;
}
.header-customer .icon-customer .name {
  display: none;
}
.header-customer .customer-links {
  width: 280px;
}
.header-customer .customer-links .icon {
  fill: currentColor;
  margin-right: 10px;
}
.header-customer .customer-links li:not(:last-child) {
  margin-bottom: 30px;
}
.header-customer .customer-links li a {
  font-size: 16px;
}
.nav-sections {
  pointer-events: none;
}
.nav-sections-items {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  pointer-events: auto;
}
.nav-sections-items ul {
  flex-wrap: nowrap;
}
.nav-sections-items a {
  display: none;
}
.nav-sections-items .menu-image-block {
  color: #231F20;
}
.nav-sections-items .menu-image-block .nav-description {
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  margin-top: 10px;
  color: #000;
  min-height: 30px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
}
.nav-sections-items .menu-image-block .nav-description:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: calc(50% - 7px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 7px;
  border-color: transparent transparent #fff;
}
@media screen and (max-width: 959px) {
  .nav-sections-items .menu-image-block .nav-description {
    position: static;
    transform: none;
    font-weight: 300;
    font-size: 10px;
    line-height: 11px;
    opacity: 1;
    visibility: visible;
    margin: 0 0 0 8px;
    min-height: unset;
    padding: unset;
    display: flex;
    align-items: center;
    background: unset;
    border-radius: unset;
  }
  .nav-sections-items .menu-image-block .nav-description:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: calc(50% - 7px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 7px;
    border-color: transparent transparent #fff;
  }
}
.nav-sections-items .section-item-content {
  height: 48px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
.nav-sections-items .swiper-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .nav-sections-items .swiper-wrap {
    justify-content: unset;
  }
}
.nav-sections-items .swiper-wrap.swiper-init {
  justify-content: unset;
}
.nav-sections-items .swiper-wrap.swiper-init .nav-description {
  position: static;
  transform: none;
  font-weight: 300;
  font-size: 10px;
  line-height: 11px;
  opacity: 1;
  visibility: visible;
  margin: 0 0 0 8px;
  min-height: unset;
  padding: unset;
  display: flex;
  align-items: center;
  background: unset;
  border-radius: unset;
}
.nav-sections-items .swiper-wrap.swiper-init .nav-description:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: calc(50% - 7px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 7px;
  border-color: transparent transparent #fff;
}
.nav-sections-items .swiper-wrap.swiper-init:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44px;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  transition: width 0.3s;
}
.nav-sections-items .swiper-wrap.swipe-end:after {
  width: 0;
}
.nav-sections-items .navigation {
  height: 48px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 959px) {
  .nav-sections-items .navigation {
    justify-content: unset;
    left: 0;
  }
}
html.overlay .nav-sections-items .navigation,
body._has-modal .nav-sections-items .navigation {
  pointer-events: none;
}
html.overlay .nav-sections-items .navigation ul {
  background: none;
}
body._has-modal .nav-sections-items .navigation ul {
  background: none;
}
.nav-sections-items .navigation ul.swipe:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nav-sections-items .navigation ul .level0 {
  margin: 0 25px;
  position: relative;
  /*@media screen and (max-width: 1480px) {
					margin: 0 15px;
				}

				@media screen and (max-width: 1366px) {
					margin: 0 10px;
				}*/
}
.nav-sections-items .navigation ul .level0 > .level-top {
  padding: 8px 4px;
}
.nav-sections-items .navigation ul .level0.active a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #50C83A;
}
@media screen and (max-width: 768px) {
  .nav-sections-items .navigation ul .level0 {
    margin: 0 16px;
  }
}
.switcher-language-block .header-language-current {
  font-weight: 300;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 5px 25px;
  box-sizing: border-box;
}
.switcher-language-block .header-language-current .icon {
  margin-left: 5px;
}
.switcher-language-block .switcher-language-content {
  padding: 24px;
}
.switcher-language-block .switcher-language-content .switcher-language-list li:not(:last-child) {
  margin-bottom: 30px;
}
.switcher-language-block .switcher-language-content .switcher-language-list li a {
  font-size: 16px;
}
.header-page-links ul.navigation {
  display: block;
  width: 280px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .header-page-links ul.navigation {
    max-height: calc(100vh - 180px);
    width: 310px;
    margin-right: -30px;
    padding-right: 30px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .header-page-links ul.navigation::-webkit-scrollbar {
    width: 4px;
  }
  .header-page-links ul.navigation::-webkit-scrollbar:horizontal {
    height: 4px;
  }
  .header-page-links ul.navigation::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .header-page-links ul.navigation::-webkit-scrollbar-thumb {
    background-color: #50C83A;
    border-radius: 4px;
  }
  .header-page-links ul.navigation::-webkit-scrollbar-thumb:hover {
    background-color: #50C83A;
  }
}
.header-page-links ul.navigation li {
  display: block;
  width: 100%;
}
.header-page-links ul.navigation li:not(.parent) .icon {
  display: none;
}
.header-page-links ul.navigation li.parent a {
  position: relative;
  padding-right: 30px;
}
.header-page-links ul.navigation li.parent .icon {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 0;
  margin-top: -10px;
  padding: 5px;
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.header-page-links ul.navigation li.parent:not(.open) > ul {
  display: none;
}
.header-page-links ul.navigation li.parent.open .icon {
  transform: rotate(-180deg);
}
.header-page-links ul.navigation li:not(:last-child) {
  margin-bottom: 30px;
}
.header-page-links ul.navigation li a {
  font-size: 16px;
}
.header-page-links ul.navigation li ul {
  padding: 20px 0 0 20px;
}
.header-region .header-region-current {
  font-weight: 300;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 5px 25px;
  box-sizing: border-box;
}
.header-region .header-region-current .icon-location {
  display: none;
}
.header-region .header-region-current .icon {
  margin-left: 5px;
}
.header-region .header-region-wrapper {
  width: 555px;
  box-sizing: border-box;
}
.header-region .header-region-wrapper .confirm-city {
  margin-bottom: 30px;
}
.header-region .header-region-wrapper .confirm-city .region-question {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  margin-bottom: 25px;
}
.header-region .header-region-wrapper .confirm-city .region-question span {
  color: #50C83A;
}
.header-region .header-region-wrapper .confirm-city .region-question-approve {
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px;
  background: #50C83A;
  border: none;
  cursor: pointer;
}
.header-region .header-region-wrapper .region-select-another-wrapper .select-region-title {
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  margin-bottom: 15px;
}
.header-region .header-region-wrapper .region-select-another-wrapper .select-another-city-items {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 40px);
  margin: 0 -20px;
}
.header-region .header-region-wrapper .region-select-another-wrapper .select-another-city-items .city-item {
  width: 33.33%;
  margin: 10px 0;
}
.header-region .header-region-wrapper .region-select-another-wrapper .select-another-city-items .city-item a {
  display: inline-flex;
  align-items: center;
  color: #31A91B;
  min-height: 34px;
  padding: 7px 20px;
  border: 1px solid transparent;
  border-radius: 20px;
  box-sizing: border-box;
  text-decoration: none;
}
.header-region .header-region-wrapper .region-select-another-wrapper .select-another-city-items .city-item.current a {
  border-color: #E3E3E3;
  color: #000;
}
.header-region .header-region-wrapper .delivery {
  padding: 40px;
  margin: 0 -40px -40px;
  background: #f6f6f4;
}
.header-region .header-region-wrapper .delivery .text {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
}
.header-region .header-region-wrapper .delivery a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  color: #31A91B;
  transition: color 0.3s;
}
.header-region .header-region-wrapper .delivery a .icon {
  fill: currentColor;
  width: 30px;
  height: 15px;
  margin-left: 10px;
}
.header-region .header-region-wrapper .delivery a:hover {
  color: #231F20;
}
.mobile-autoopen {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile-autoopen {
    display: block;
  }
  .mobile-autoopen .header-region-current {
    height: 0 !important;
    padding: 0 !important;
  }
  .mobile-autoopen .header-region-current .icon,
  .mobile-autoopen .header-region-current span {
    display: none !important;
  }
  [data-dropdown-container][data-position="fixed"]:not(.open) [data-dropdown-content] {
    display: block;
    visibility: hidden;
  }
  [data-dropdown-container][data-position="fixed"] [data-dropdown-content] {
    position: fixed;
    top: unset;
    width: 100%;
    bottom: 0;
    z-index: 101;
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  [data-dropdown-container][data-position="fixed"].open [data-dropdown-toggle]:before {
    content: '';
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  [data-dropdown-container][data-position="fixed"].open [data-dropdown-content] {
    transform: translateY(0);
  }
  [data-dropdown-container][data-position="fixed"].before-close [data-dropdown-content] {
    transform: translateY(100%);
  }
  .header-region {
    position: static;
  }
  .header-region:not(.open) .header-region-wrapper {
    display: block;
    visibility: hidden;
  }
  .header-region .header-region-wrapper {
    position: fixed;
    top: unset;
    width: 100%;
    bottom: 0;
    z-index: 101;
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  .header-region.open .header-region-current:before {
    content: '';
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .header-region.open .header-region-wrapper {
    transform: translateY(0);
  }
  .header-region.before-close .header-region-wrapper {
    transform: translateY(100%);
  }
  .header-region .header-region-wrapper {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header-region .header-region-wrapper .region-select-another-wrapper .select-another-city-items .city-item {
    width: 50%;
  }
  .page-header .header .logo {
    margin-right: 0;
  }
  .page-header .header .action.nav-toggle {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-header .header .action.nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    font-size: 0;
    background: #000;
  }
  .page-header .header .action.nav-toggle:before,
  .page-header .header .action.nav-toggle:after {
    content: '';
    width: 20px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 5px;
  }
  .page-header .header .action.nav-toggle:before {
    top: 9px;
  }
  .page-header .header .action.nav-toggle:after {
    bottom: 9px;
  }
  .page-header .header .action.nav-toggle.close-menu {
    position: absolute;
    top: 10px;
    left: 0px;
    transition: left 0.3s;
  }
  .page-header .header .action.nav-toggle.close-menu span {
    visibility: hidden;
  }
  .page-header .header .action.nav-toggle.close-menu:before,
  .page-header .header .action.nav-toggle.close-menu:after {
    background: #fff;
    box-shadow: 0 0 3px 0 #fff;
  }
  .page-header .header .action.nav-toggle.close-menu:before {
    transform: rotate(45deg);
    top: 14px;
  }
  .page-header .header .action.nav-toggle.close-menu:after {
    transform: rotate(-45deg);
    bottom: 14px;
  }
  html.nav-open .page-header .header .action.nav-toggle.close-menu {
    left: 335px;
  }
  .page-header .header .bg-trigger {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .page-header .header .header-mobile-wrap {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.3s, opacity 0.3s;
  }
  .page-header .header .header-mobile-wrap .header-mobile-block {
    position: absolute;
    top: 0;
    left: -325px;
    bottom: 0;
    width: 100%;
    max-width: 325px;
    background: #fff;
    display: block;
    padding: 10px 0;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    transition: left 0.3s;
  }
  .page-header .header .header-mobile-wrap .header-left-block,
  .page-header .header .header-mobile-wrap .header-right-block {
    flex-direction: column;
  }
  .page-header .header .header-mobile-wrap .page-links-block .close-icon-block {
    display: none;
  }
  html.nav-open .page-header .header .header-mobile-wrap {
    visibility: visible;
    opacity: 1;
  }
  html.nav-open .page-header .header .header-mobile-wrap .header-mobile-block {
    left: 0;
  }
  .page-header .header .checkout-phones-block {
    margin: 0;
  }
  body:not(.checkout_index_index) .page-header .header .checkout-phones-block {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 25px 20px 25px 50px;
    border-bottom: 1px solid #C4C4C4;
  }
  body:not(.checkout_index_index) .page-header .header .checkout-phones-block.open {
    margin: 0;
  }
  body:not(.checkout_index_index) .page-header .header .checkout-phones-block.open .checkout-phones-general {
    padding: 0;
  }
  body:not(.checkout_index_index) .page-header .header .checkout-phones-block .checkout-phones-general {
    padding: 0;
  }
  body:not(.checkout_index_index) .page-header .header .checkout-phones-block .checkout-phones-general .icon {
    display: none;
  }
  body:not(.checkout_index_index) .page-header .header .checkout-phones-block .checkout-phones-content {
    padding: 0;
    display: block;
    position: static;
  }
  body:not(.checkout_index_index) .page-header .header .checkout-phones-block .phone-item:not(:last-child):not(.checkout-phones-general) {
    margin-bottom: unset;
  }
  body:not(.checkout_index_index) .page-header .header .checkout-phones-block .phone-item a {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 16px;
    font-weight: normal;
    pointer-events: auto;
  }
  .page-header .header-navigation-wrap {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .page-header .header-navigation-wrap .sections.nav-sections {
    width: 100%;
  }
  .header-region {
    order: 0;
    width: 100%;
    border-bottom: 1px solid #C4C4C4;
  }
  .header-region .header-region-current {
    display: flex;
    height: auto;
    padding: 25px 20px 25px 60px;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: normal;
    position: relative;
  }
  .header-region .header-region-current .icon-location {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    position: absolute;
    top: 20px;
    left: 24px;
  }
  .header-region .header-region-current .icon-arrow_down {
    display: none;
  }
  .header-page-links {
    order: 1;
    width: 100%;
    border-bottom: 1px solid #C4C4C4;
  }
  .header-page-links .page-links-icon {
    display: none;
  }
  .header-page-links .page-links-block {
    display: block !important;
    padding: 25px 20px 25px 50px;
    position: static;
  }
  .header-page-links .page-links-block ul.navigation {
    width: 100%;
  }
  .header-customer {
    order: 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #C4C4C4;
  }
  .header-customer [data-dropdown-toggle],
  .header-customer .close-icon-block {
    display: none;
  }
  .header-customer .icon-customer {
    width: auto;
    height: auto;
    padding: 25px 20px 25px 60px;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: normal;
    position: relative;
  }
  .header-customer .icon-customer .name {
    display: inline-block;
  }
  .header-customer .icon-customer .icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    position: absolute;
    top: 24px;
    left: 24px;
  }
  .header-customer .customer-menu {
    display: block !important;
    position: static;
    padding: 25px 20px 25px 50px;
  }
  .header-customer .customer-menu li a {
    display: flex;
    align-items: center;
    padding: 10px;
  }
  .header-customer .customer-links {
    width: 100%;
  }
  .switcher-language-block {
    order: 1;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
  }
  .switcher-language-block .header-language-current {
    padding: 0;
    height: unset;
    color: #50C83A;
  }
  .switcher-language-block .header-language-current .icon {
    display: none;
  }
  .switcher-language-block .switcher-language-content {
    display: inline-block !important;
    position: static;
    min-width: unset;
    padding: unset;
  }
  .switcher-language-block .switcher-language-content .switcher-language-list {
    display: flex;
    align-items: center;
  }
  .switcher-language-block .switcher-language-content .switcher-language-list li:not(:last-child) {
    margin-bottom: unset;
  }
  .switcher-language-block [class*="view-"] {
    font-size: 16px;
    padding: 10px;
    font-weight: normal;
  }
  .switcher-language-block .header-language-current,
  .switcher-language-block .switcher-option {
    margin: 0 15px;
  }
}
body.touch .mobile-autoopen {
  display: block;
}
body.touch .mobile-autoopen .header-region-current {
  height: 0 !important;
  padding: 0 !important;
}
body.touch .mobile-autoopen .header-region-current .icon,
body.touch .mobile-autoopen .header-region-current span {
  display: none !important;
}
body.touch [data-dropdown-container][data-position="fixed"]:not(.open) [data-dropdown-content] {
  display: block;
  visibility: hidden;
}
body.touch [data-dropdown-container][data-position="fixed"] [data-dropdown-content] {
  position: fixed;
  top: unset;
  width: 100%;
  bottom: 0;
  z-index: 101;
  transform: translateY(100%);
  transition: transform 0.3s;
}
body.touch [data-dropdown-container][data-position="fixed"].open [data-dropdown-toggle]:before {
  content: '';
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body.touch [data-dropdown-container][data-position="fixed"].open [data-dropdown-content] {
  transform: translateY(0);
}
body.touch [data-dropdown-container][data-position="fixed"].before-close [data-dropdown-content] {
  transform: translateY(100%);
}
body.touch .header-region {
  position: static;
}
body.touch .header-region:not(.open) .header-region-wrapper {
  display: block;
  visibility: hidden;
}
body.touch .header-region .header-region-wrapper {
  position: fixed;
  top: unset;
  width: 100%;
  bottom: 0;
  z-index: 101;
  transform: translateY(100%);
  transition: transform 0.3s;
}
body.touch .header-region.open .header-region-current:before {
  content: '';
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body.touch .header-region.open .header-region-wrapper {
  transform: translateY(0);
}
body.touch .header-region.before-close .header-region-wrapper {
  transform: translateY(100%);
}
body.touch .header-region .header-region-wrapper {
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
body.touch .header-region .header-region-wrapper .region-select-another-wrapper .select-another-city-items .city-item {
  width: 50%;
}
body.touch .page-header .header .logo {
  margin-right: 0;
}
body.touch .page-header .header.content {
  height: 48px;
  border-bottom: 1px solid #E6E6E6;
}
body.touch .page-header .header .action.nav-toggle {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.touch .page-header .header .action.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  font-size: 0;
  background: #000;
}
body.touch .page-header .header .action.nav-toggle:before,
body.touch .page-header .header .action.nav-toggle:after {
  content: '';
  width: 20px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 5px;
}
body.touch .page-header .header .action.nav-toggle:before {
  top: 9px;
}
body.touch .page-header .header .action.nav-toggle:after {
  bottom: 9px;
}
body.touch .page-header .header .action.nav-toggle.close-menu {
  position: absolute;
  top: 10px;
  left: 0px;
  transition: left 0.3s;
}
body.touch .page-header .header .action.nav-toggle.close-menu span {
  visibility: hidden;
}
body.touch .page-header .header .action.nav-toggle.close-menu:before,
body.touch .page-header .header .action.nav-toggle.close-menu:after {
  background: #fff;
  box-shadow: 0 0 3px 0 #fff;
}
body.touch .page-header .header .action.nav-toggle.close-menu:before {
  transform: rotate(45deg);
  top: 14px;
}
body.touch .page-header .header .action.nav-toggle.close-menu:after {
  transform: rotate(-45deg);
  bottom: 14px;
}
html.nav-open body.touch .page-header .header .action.nav-toggle.close-menu {
  left: 335px;
}
body.touch .page-header .header .bg-trigger {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
body.touch .page-header .header .header-mobile-wrap {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s, opacity 0.3s;
}
body.touch .page-header .header .header-mobile-wrap .header-mobile-block {
  position: absolute;
  top: 0;
  left: -325px;
  bottom: 0;
  width: 100%;
  max-width: 325px;
  background: #fff;
  display: block;
  padding: 10px 0;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  transition: left 0.3s;
}
body.touch .page-header .header .header-mobile-wrap .header-left-block,
body.touch .page-header .header .header-mobile-wrap .header-right-block {
  flex-direction: column;
}
body.touch .page-header .header .header-mobile-wrap .page-links-block .close-icon-block {
  display: none;
}
html.nav-open body.touch .page-header .header .header-mobile-wrap {
  visibility: visible;
  opacity: 1;
}
html.nav-open body.touch .page-header .header .header-mobile-wrap .header-mobile-block {
  left: 0;
}
body.touch .page-header .header .header-right-block .checkout-phones-block {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 25px 20px 25px 50px;
  border-bottom: 1px solid #C4C4C4;
}
body.touch .page-header .header .header-right-block .checkout-phones-block.open {
  margin: 0;
}
body.touch .page-header .header .header-right-block .checkout-phones-block.open .checkout-phones-general {
  padding: 0;
}
body.touch .page-header .header .header-right-block .checkout-phones-block .checkout-phones-general {
  padding: 0;
}
body.touch .page-header .header .header-right-block .checkout-phones-block .checkout-phones-general .icon {
  display: none;
}
body.touch .page-header .header .header-right-block .checkout-phones-block .checkout-phones-content {
  padding: 0;
  display: block;
  position: static;
}
body.touch .page-header .header .header-right-block .checkout-phones-block .phone-item:not(:last-child):not(.checkout-phones-general) {
  margin-bottom: unset;
}
body.touch .page-header .header .header-right-block .checkout-phones-block .phone-item a {
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 16px;
  font-weight: normal;
  pointer-events: auto;
}
body.touch .page-header .header-navigation-wrap {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.touch .page-header .header-navigation-wrap .sections.nav-sections {
  width: 100%;
}
body.touch .header-region {
  order: 0;
  width: 100%;
  border-bottom: 1px solid #C4C4C4;
}
body.touch .header-region .header-region-current {
  display: flex;
  height: auto;
  padding: 25px 20px 25px 60px;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: normal;
  position: relative;
}
body.touch .header-region .header-region-current .icon-location {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  position: absolute;
  top: 20px;
  left: 24px;
}
body.touch .header-region .header-region-current .icon-arrow_down {
  display: none;
}
body.touch .header-page-links {
  order: 1;
  width: 100%;
  border-bottom: 1px solid #C4C4C4;
}
body.touch .header-page-links .page-links-icon {
  display: none;
}
body.touch .header-page-links .page-links-block {
  display: block !important;
  padding: 25px 20px 25px 50px;
  position: static;
}
body.touch .header-page-links .page-links-block ul.navigation {
  width: 100%;
}
body.touch .header-customer {
  order: 0;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #C4C4C4;
}
body.touch .header-customer [data-dropdown-toggle],
body.touch .header-customer .close-icon-block {
  display: none;
}
body.touch .header-customer .icon-customer {
  width: auto;
  height: auto;
  padding: 25px 20px 25px 60px;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: normal;
  position: relative;
}
body.touch .header-customer .icon-customer .name {
  display: inline-block;
}
body.touch .header-customer .icon-customer .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  position: absolute;
  top: 24px;
  left: 24px;
}
body.touch .header-customer .customer-menu {
  display: block !important;
  position: static;
  padding: 25px 20px 25px 50px;
}
body.touch .header-customer .customer-menu li a {
  display: flex;
  align-items: center;
  padding: 10px;
}
body.touch .header-customer .customer-links {
  width: 100%;
}
body.touch .switcher-language-block {
  order: 1;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
}
body.touch .switcher-language-block .header-language-current {
  padding: 0;
  height: unset;
  color: #50C83A;
}
body.touch .switcher-language-block .header-language-current .icon {
  display: none;
}
body.touch .switcher-language-block .switcher-language-content {
  display: inline-block !important;
  position: static;
  min-width: unset;
  padding: unset;
}
body.touch .switcher-language-block .switcher-language-content .switcher-language-list {
  display: flex;
  align-items: center;
}
body.touch .switcher-language-block .switcher-language-content .switcher-language-list li:not(:last-child) {
  margin-bottom: unset;
}
body.touch .switcher-language-block [class*="view-"] {
  font-size: 16px;
  padding: 10px;
  font-weight: normal;
}
body.touch .switcher-language-block .header-language-current,
body.touch .switcher-language-block .switcher-option {
  margin: 0 15px;
}
@media screen and (max-width: 375px) {
  html.nav-open .page-header .header .action.nav-toggle.close-menu {
    left: calc(100% - 40px);
  }
  .page-header .header .header-mobile-wrap .header-mobile-block {
    left: calc((100% - 50px) * -1);
    max-width: calc(100% - 50px);
  }
}
.popup-products .upsale-slider {
  list-style: none;
}
.popup-products .upsale-slider .product-item .product-item-info .product-item-info-top {
  position: relative;
}
.popup-products .upsale-slider .product-item .product-item-info .product-item-info-top .product-item-info-top-left,
.popup-products .upsale-slider .product-item .product-item-info .product-item-info-top .product-item-info-top-right {
  position: absolute;
  top: 0;
}
.popup-products .upsale-slider .product-item .product-item-info .product-item-info-top .product-item-info-top-left {
  left: 0;
}
.popup-products .upsale-slider .product-item .product-item-info .product-item-info-top .product-item-info-top-right {
  right: 0;
}
.popup-products .upsale-slider .product-item .product-item-info .product-item-info-top .multi-icons-attribute-options {
  display: flex;
}
.popup-products .upsale-slider .product-item .product-item-info .product-item-info-top .multi-labels-container .multi-labels-text {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 5px 12px;
  box-sizing: border-box;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 3px;
}
.popup-products .upsale-slider .product-item .product-item-info .product-item-info-top .multi-icons-option {
  width: 36px;
  height: 30px;
  display: inline-flex;
  cursor: default;
  overflow: hidden;
}
.popup-products .upsale-slider .product-item .product-item-info .product-item-info-top .multi-icons-option img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 36px;
  height: 44px;
}
.popup-products .upsale-slider .product-item .product-item-info .product-item-info-top .multi-icons-option:hover {
  height: 44px;
}
.popup-products .upsale-slider .product-item .product-item-info .product-image-container {
  width: unset !important;
}
.popup-products .upsale-slider .product-item .product-item-info .product-image-wrapper {
  padding: 0 !important;
}
.popup-products .upsale-slider .product-item .product-item-info .product-image-wrapper img {
  max-width: 100%;
}
@media screen and (max-width: 374px) {
  .popup-products .upsale-slider .product-item .product-item-info .product-image-wrapper img {
    max-height: 40vh;
    width: auto;
  }
}
.popup-products .upsale-slider .product-item .product-item-info .product-item-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.popup-products .upsale-slider .product-item .product-item-name {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.popup-products .upsale-slider .product-item .product-item-name .product-item-link {
  font-size: 18px;
  line-height: 25px;
  overflow: hidden;
  font-weight: normal;
  text-align: center;
  color: #000;
  text-decoration: none;
}
.popup-products .upsale-slider .product-item .product-item-price-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 30px;
  color: #000;
}
.popup-products .upsale-slider .product-item .price-box {
  font-weight: bold;
  font-size: 28px;
  line-height: 24px;
}
.popup-products .upsale-slider .product-item .product-item-volume {
  font-weight: 300;
  font-size: 16px;
  opacity: 0.4;
}
.popup-products .upsale-slider .product-item .product-item-volume .volume-delimiter {
  margin: 0 14px 0 18px;
}
@media screen and (max-width: 375px) {
  .popup-products .upsale-slider .product-item .product-item-volume .volume-delimiter {
    margin: 0 6px 0 10px;
  }
}
.popup-products .upsale-slider .product-item .product-item-inner form {
  text-align: center;
}
.popup-products .upsale-slider .product-item .product-item-inner .action.tocart {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  width: 100%;
  max-width: 336px;
}
.popup-products .upsale-slider .product-item .product-item-inner .action.tocart.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .popup-products .upsale-slider .product-item .product-item-inner .action.tocart:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.popup-products .upsale-slider .product-item .product-item-inner .action.tocart:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.popup-products .upsale-slider .product-item .product-item-inner .action.tocart .icon {
  stroke: transparent;
  fill: currentColor;
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 10px 0 -5px;
}
.popup-products .upsale-slider:not(.owl-carousel) .product-item:not(:first-child) {
  display: none;
}
.popup-products .upsale-slider .owl-nav .owl-prev,
.popup-products .upsale-slider .owl-nav .owl-next {
  position: absolute;
  z-index: 3;
  top: 50%;
  font-size: 24px;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-products .upsale-slider .owl-nav .owl-prev {
  left: -40px;
  transform: rotate(180deg);
}
.popup-products .upsale-slider .owl-nav .owl-next {
  right: -40px;
}
@media screen and (max-width: 479px) {
  .popup-products .upsale-slider .owl-nav .owl-prev {
    left: -10px;
  }
  .popup-products .upsale-slider .owl-nav .owl-next {
    right: -10px;
  }
}
.popup-products .close-popup {
  padding: 30px 0 45px;
  text-align: center;
}
.popup-products .close-popup .action-popup-close {
  background: none;
  border: none;
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  transition: color 0.3s;
}
.popup-products .close-popup .action-popup-close:hover {
  color: #50C83A;
}
.social-links-items {
  font-size: 20px;
  display: flex;
  align-items: center;
}
.soc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
.social-links-items .social-item {
  margin: 0 10px;
}
.social-links-items .social-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
}
/* ICONS */
/* facebook */
.social-links-items:not(.no_background) .social-item.facebook a {
  background: linear-gradient(-45deg, #1e62f2, #1ad9fe);
}
/* instagram */
.social-links-items:not(.no_background) .social-item.instagram a {
  background: linear-gradient(45deg, #f0da10, #d51a46, #9349c0, #742fa6);
}
/* youtube */
.social-links-items:not(.no_background) .social-item.youtube a {
  background: linear-gradient(0deg, #980703, #f41a24);
}
/* ITEMS */
/* rounded */
.social-links-items.rounded .social-item a {
  border-radius: 10px;
}
/* circular */
.social-links-items.circular .social-item a {
  border-radius: 50%;
}
/* square */
.social-links-items.square .social-item a {
  /*  */
}
/* no_background */
.social-links-items.no_background .social-item a {
  color: #000;
}
.complain-button {
  font-size: 14px;
  line-height: 18px;
  color: #3FAE2A;
  cursor: pointer;
  margin-left: 20px;
}
@media screen and (max-width: 479px) {
  .complain-button {
    order: 1;
    width: 100%;
    margin: 0 0 35px;
    text-align: center;
  }
  .complain-button a {
    font-size: 16px;
    line-height: 18px;
    font-weight: normal;
  }
}
@media screen and (max-width: 479px) {
  .modal-popup-complain .modal-header {
    padding: 30px 30px 0;
  }
  .modal-popup-complain .modal-content {
    padding: 20px 30px 30px;
  }
  .modal-popup-complain .action-close {
    top: 12px;
    right: 12px;
  }
}
.page-footer {
  position: relative;
}
@media screen and (min-width: 769px) {
  .page-footer {
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  }
}
.page-footer ul {
  list-style: none;
}
.page-footer a {
  text-decoration: none;
}
.page-footer .footer.content {
  width: 100%;
  max-width: 1440px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.page-footer .footer.content .footer-left-block,
.page-footer .footer.content .footer-right-block {
  display: flex;
  align-items: center;
}
.page-footer .footer.content .development-by,
.page-footer .footer.content .copyright {
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  color: #000;
  opacity: 0.7;
  margin-right: 20px;
}
.page-footer .footer.content .development-by {
  display: block;
}
.page-footer .footer.content .development-by a {
  color: #000;
  text-transform: uppercase;
  transition: color 0.3s;
}
.page-footer .footer.content .development-by a:hover {
  color: #50C83A;
}
.page-footer .footer.content .shop-social-links {
  margin-right: 20px;
}
.page-footer .footer.content .shop-social-links .social-links-items {
  display: flex;
  align-items: center;
}
.page-footer .footer.content .shop-social-links .social-links-items .social-item {
  margin: 0 15px;
}
.page-footer .footer.content .shop-social-links .social-links-items .social-item a {
  opacity: 0.4;
  transition: opacity 0.3s;
}
.page-footer .footer.content .shop-social-links .social-links-items .social-item a:hover {
  opacity: 1;
}
.page-footer .footer.content .footer-page-links {
  flex-grow: 1;
}
.page-footer .footer.content .footer-page-links ul.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-footer .footer.content .footer-page-links ul.navigation li {
  margin: 0 20px;
}
.page-footer .footer.content .footer-page-links ul.navigation li a {
  font-weight: 300;
  font-size: 14px;
  color: #000;
}
.page-footer .footer.content .footer-phones-block {
  margin: 0 20px;
}
.page-footer .footer.content .footer-phones-block .footer-phones-general {
  padding: 20px 0;
  height: auto;
}
.page-footer .footer.content .footer-phones-block .footer-phones-general .icon {
  margin-left: 5px;
}
.page-footer .footer.content .footer-phones-block .footer-phones-content {
  padding: 30px 40px 0;
}
.page-footer .footer.content .footer-phones-block .phone-item:not(:last-child):not(.footer-phones-general) {
  margin-bottom: 20px;
}
.page-footer .footer.content .footer-phones-block .phone-item a {
  display: block;
  white-space: nowrap;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
.page-footer .footer.content .footer-phones-block.open {
  margin: 0 -20px;
}
.page-footer .footer.content .footer-phones-block.open .footer-phones-general {
  padding: 20px 40px;
}
@media screen and (max-width: 1100px) {
  .page-footer .footer.content {
    flex-wrap: wrap;
  }
  .page-footer .footer.content .footer-page-links {
    order: 0;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(196, 196, 196, 0.3);
  }
  .page-footer .footer.content .footer-right-block {
    order: 2;
  }
  .page-footer .footer.content .footer-left-block {
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .page-footer .footer.content {
    border-top: 1px solid rgba(196, 196, 196, 0.3);
  }
  .page-footer .footer.content .footer-page-links,
  .page-footer .footer.content .footer-right-block,
  .page-footer .footer.content .footer-left-block {
    width: 100%;
    padding: 20px 0;
  }
  .page-footer .footer.content .footer-right-block,
  .page-footer .footer.content .footer-left-block {
    justify-content: space-between;
  }
  .page-footer .footer.content .footer-right-block {
    order: 1;
    border-bottom: 1px solid rgba(196, 196, 196, 0.3);
  }
  .page-footer .footer.content .footer-left-block {
    order: 2;
  }
  .page-footer .footer.content .footer-phones-block .footer-phones-general {
    padding: 0;
  }
  .page-footer .footer.content .footer-phones-block.open {
    margin: -20px;
  }
  .page-footer .footer.content .footer-phones-block.open .footer-phones-general {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 479px) {
  .page-footer .footer.content {
    padding: 30px 0 10px;
  }
  .page-footer .footer.content .footer-page-links,
  .page-footer .footer.content .footer-right-block,
  .page-footer .footer.content .footer-left-block {
    padding: 0;
  }
  .page-footer .footer.content .footer-right-block,
  .page-footer .footer.content .footer-left-block {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .page-footer .footer.content .footer-page-links {
    margin-bottom: 10px;
    border-bottom: none;
  }
  .page-footer .footer.content .footer-page-links ul.navigation {
    flex-direction: column;
    align-items: center;
  }
  .page-footer .footer.content .footer-page-links ul.navigation li {
    margin-bottom: 22px;
  }
  .page-footer .footer.content .footer-page-links ul.navigation li a {
    font-size: 16px;
    line-height: 18px;
    font-weight: normal;
  }
  .page-footer .footer.content .footer-phones-block {
    order: 0;
    width: 100%;
    margin-bottom: 25px;
  }
  .page-footer .footer.content .footer-phones-block .footer-phones-general {
    padding: 0;
  }
  .page-footer .footer.content .footer-phones-block .footer-phones-general .icon {
    display: none;
  }
  .page-footer .footer.content .footer-phones-block .footer-phones-content {
    display: block;
    position: static;
    padding: 0;
  }
  .page-footer .footer.content .footer-phones-block .phone-item,
  .page-footer .footer.content .footer-phones-block .phone-item:not(:last-child):not(.footer-phones-general) {
    display: block;
    text-align: center;
    margin: 0 0 10px;
  }
  .page-footer .footer.content .footer-phones-block .phone-item a,
  .page-footer .footer.content .footer-phones-block .phone-item:not(:last-child):not(.footer-phones-general) a {
    font-size: 16px;
    line-height: 18px;
    font-weight: normal;
    pointer-events: auto;
  }
  .page-footer .footer.content .footer-left-block {
    padding-top: 15px;
  }
  .page-footer .footer.content .shop-social-links {
    order: 0;
    width: 100%;
    margin: 0 0 10px;
  }
  .page-footer .footer.content .shop-social-links .social-links-items {
    justify-content: center;
    font-size: 20px !important;
  }
  .page-footer .footer.content .footer-left-block-copyright-development {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .page-footer .footer.content .copyright {
    margin: 0;
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
  outline: none;
}
html.overlay {
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 769px) {
  html.overlay body:not(.touch):after {
    content: '';
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
  }
}
html.overlay,
html.nav-open {
  overflow: hidden;
  height: 100%;
}
html.overlay body.touch,
html.nav-open body.touch {
  overflow: hidden;
  height: 100%;
  position: fixed;
}
body._has-modal {
  overflow: hidden;
  height: 100%;
}
body {
  font-family: 'Ubuntu';
  -webkit-tap-highlight-color: transparent;
}
input,
textarea,
select,
button {
  font-family: 'Ubuntu';
  -webkit-appearance: none;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
button:-webkit-autofill {
  box-shadow: inset 0 0 0 1000px #fff;
}
input:disabled,
textarea:disabled,
select:disabled,
button:disabled {
  background: none;
  opacity: 0.5;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.mage-error {
  font-size: 12px;
  color: red;
}
.button {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .button:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.button:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.button-light {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  color: #000;
  background: #fff;
  font-weight: normal;
}
.button-light.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .button-light:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.button-light:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.button-light,
.button-light:active {
  border-color: #DADADA;
}
@media screen and (min-width: 769px) {
  .button-light:hover {
    border-color: #DADADA;
    background: #F4F4F3;
  }
}
.button-light:active {
  background: #E7E7E7;
}
.button-light .icon {
  opacity: 0.2;
  position: relative;
  top: 1px;
}
.round-btn {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  font-size: 32px;
}
.round-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .round-btn:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.round-btn:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.round-btn-light {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  color: #000;
  background: #fff;
  font-weight: normal;
  font-size: 17px;
}
.round-btn-light.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .round-btn-light:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.round-btn-light:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.round-btn-light,
.round-btn-light:active {
  border-color: #DADADA;
}
@media screen and (min-width: 769px) {
  .round-btn-light:hover {
    border-color: #DADADA;
    background: #F4F4F3;
  }
}
.round-btn-light:active {
  background: #E7E7E7;
}
.round-btn-light .icon {
  opacity: 0.2;
  position: relative;
  top: 1px;
}
.round-btn,
.round-btn-light {
  padding: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.round-btn > span,
.round-btn-light > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.round-btn .icon,
.round-btn-light .icon {
  fill: currentColor;
}
[data-dropdown-container][data-show-type="slide"] [data-dropdown-content] {
  transition: transform 0.3s;
}
[data-dropdown-container].open {
  z-index: 6;
}
.form-extend .field {
  margin-bottom: 20px;
}
.form-extend .field label {
  font-size: 12px;
  line-height: 1;
  top: 0;
  color: #000;
  opacity: 0.4;
}
.form-extend .field input {
  height: 48px;
  font-size: 16px;
}
.form-extend .field input:not(.vs__search ),
.form-extend .field textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-width: 0 0 1px;
  height: 48px;
  color: #000;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.form-extend .field textarea {
  resize: vertical;
  min-height: 170px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.form-extend .field textarea::-webkit-scrollbar {
  width: 4px;
}
.form-extend .field textarea::-webkit-scrollbar:horizontal {
  height: 4px;
}
.form-extend .field textarea::-webkit-scrollbar-track {
  background-color: transparent;
}
.form-extend .field textarea::-webkit-scrollbar-thumb {
  background-color: #50C83A;
  border-radius: 4px;
}
.form-extend .field textarea::-webkit-scrollbar-thumb:hover {
  background-color: #50C83A;
}
.form-extend .field .slide-label-wrap {
  padding-top: 12px;
}
.form-extend .field .slide-label-wrap label {
  top: 12px;
  font-size: 16px;
  line-height: 48px;
  transition: top 0.3s, font-size 0.3s, line-height 0.3s;
}
.form-extend .field .slide-label-wrap .v-select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-width: 0 0 1px;
}
.form-extend .field .slide-label-wrap .v-select.vs--open label,
.form-extend .field .slide-label-wrap .v-select:focus label,
.form-extend .field .slide-label-wrap .v-select.fill label {
  left: 3px;
  font-size: 12px;
  line-height: 1;
  top: -5px !important;
}
.form-extend .field .slide-label-wrap input:focus ~ label,
.form-extend .field .slide-label-wrap textarea:focus ~ label,
.form-extend .field .slide-label-wrap input.fill ~ label,
.form-extend .field .slide-label-wrap textarea.fill ~ label {
  font-size: 12px;
  line-height: 1;
  top: 0;
}
.form-extend .field .slide-label-wrap input:-webkit-autofill ~ label,
.form-extend .field .slide-label-wrap textarea:-webkit-autofill ~ label {
  font-size: 12px;
  line-height: 1;
  top: 0;
}
.form-extend .field .slide-label-wrap input:-moz-autofill ~ label,
.form-extend .field .slide-label-wrap textarea:-moz-autofill ~ label {
  font-size: 12px;
  line-height: 1;
  top: 0;
}
.radio-extend input[type="radio"] {
  width: 0;
  height: 0;
  visibility: hidden;
}
.radio-extend input[type="radio"] + label {
  position: relative;
  min-height: 24px;
  display: flex;
  align-items: center;
  padding-left: 40px;
  cursor: pointer;
}
.radio-extend input[type="radio"] + label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  background: #F4F4F4;
  box-shadow: inset 0 0 0 0 #50C83A;
  transition: background 0.3s, box-shadow 0.3s;
}
.radio-extend input[type="radio"]:checked + label:before {
  background: #fff;
  box-shadow: inset 0 0 0 8px #50C83A;
}
.checkbox-extend input[type="checkbox"] {
  width: 0;
  height: 0;
  visibility: hidden;
}
.checkbox-extend input[type="checkbox"] + label {
  position: relative;
  min-height: 24px;
  display: flex;
  align-items: center;
  padding-left: 40px;
  cursor: pointer;
}
.checkbox-extend input[type="checkbox"] + label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  background: #F4F4F4;
  box-shadow: inset 0 0 0 0 #50C83A;
  transition: background 0.3s, box-shadow 0.3s;
}
.checkbox-extend input[type="checkbox"]:checked + label:before {
  background: #fff;
  box-shadow: inset 0 0 0 8px #50C83A;
}
.choise-extend {
  all: unset;
  display: flex;
  align-items: center;
}
.choise-extend input,
.choise-extend label {
  all: unset;
}
.choise-extend label {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 70px;
  cursor: pointer;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  min-height: 38px;
}
.choise-extend label:before,
.choise-extend label:after {
  content: '';
  position: absolute;
  background: #C4C4C4;
  margin-top: 6px;
}
.choise-extend label:before {
  top: 8px;
  left: 11px;
  width: 30px;
  height: 9px;
  opacity: 0.5;
  border-radius: 5px;
}
.choise-extend label:after {
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transition: left 0.3s, background 0.3s;
}
.choise-extend input:checked + label:after {
  left: 25px;
  background: #50C83A;
}
.select2.select2-container {
  width: 100% !important;
}
.select2.select2-container .select2-selection--single {
  height: 48px;
  display: flex;
  align-items: center;
  border-color: rgba(0, 0, 0, 0.1);
  border-width: 0 0 1px;
  border-radius: 0;
}
.select2.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  color: #000;
}
.select2.select2-container .select2-selection--single .select2-selection__arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.select2.select2-container .select2-selection--single .select2-selection__arrow b {
  display: inline-flex;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border-color: #000;
  border-width: 0 1px 1px 0;
  position: relative;
  top: -3px;
  left: unset;
  margin: unset;
  transform: rotate(45deg);
}
.select2.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: rotate(-180deg);
}
.select2-dropdown {
  border: 1px solid #D1D1D1;
}
.select2-dropdown.select2-dropdown--above {
  border-bottom: 1px solid #D1D1D1;
}
.select2-dropdown .select2-search {
  display: none;
}
.select2-dropdown .select2-results .select2-results__options {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar {
  width: 4px;
}
.select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar:horizontal {
  height: 4px;
}
.select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar-track {
  background-color: transparent;
}
.select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #50C83A;
  border-radius: 4px;
}
.select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar-thumb:hover {
  background-color: #50C83A;
}
.select2-dropdown .select2-results .select2-results__option {
  color: #000;
  font-size: 14px;
  line-height: 19px;
  padding: 10px 20px;
}
.select2-dropdown .select2-results .select2-results__option[aria-selected="true"] {
  background: rgba(196, 196, 196, 0.1);
}
.select2-dropdown .select2-results .select2-results__option.select2-results__option--highlighted {
  background: rgba(196, 196, 196, 0.3);
  color: #000;
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: transparent;
}
.icon.icon-burger {
  stroke: transparent;
  fill: currentColor;
}
.page-wrapper {
  min-height: 100vh;
  padding-top: 97px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.inner-container {
  max-width: 1160px;
  margin: 0 auto;
}
.page-main {
  width: 100%;
  max-width: 1440px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  flex-grow: 1;
}
.breadcrumbs {
  margin: 24px 0;
}
.breadcrumbs ul {
  list-style: none;
}
.breadcrumbs .items {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs .items .item {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs .items .item a {
  text-decoration: none;
}
.breadcrumbs .items .item a,
.breadcrumbs .items .item strong {
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  color: #000;
  opacity: 0.3;
}
.breadcrumbs .items .item:not(:last-child):after {
  content: '>';
  margin: 0 16px;
  font-size: 12px;
  opacity: 0.3;
}
.page.messages {
  position: fixed;
  z-index: 5;
  left: 0;
  right: 0;
  top: 97px;
  text-align: center;
}
.page.messages.test-mode-messages {
  z-index: 4;
}
.page.messages pre {
  white-space: normal;
}
.page.messages a {
  text-decoration: none;
}
.page.messages .messages .message-success {
  color: #000;
  padding: 20px;
  background: rgba(230, 242, 228, 0.8);
  box-shadow: 0 5px 5px 0 rgba(230, 242, 228, 0.3);
}
.page.messages .messages .message-success a {
  color: #3FAE2A;
  cursor: pointer;
  transition: color 0.3s;
}
.page.messages .messages .message-success a:hover {
  color: #000;
}
.page.messages .messages .message-notice,
.page.messages .messages .message-error {
  color: #000;
  padding: 20px;
  background: rgba(255, 102, 102, 0.8);
  box-shadow: 0 5px 5px 0 rgba(255, 102, 102, 0.3);
}
.page.messages .messages .message-notice a,
.page.messages .messages .message-error a {
  color: #3FAE2A;
  cursor: pointer;
  transition: color 0.3s;
}
.page.messages .messages .message-notice a:hover,
.page.messages .messages .message-error a:hover {
  color: #000;
}
.page.messages .messages .message-notice {
  background: #ff6666;
  box-shadow: 0 5px 5px 0 rgba(255, 102, 102, 0.3);
}
.page.messages .messages .test-mode {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #000;
  padding: 20px;
  padding-right: 70px;
  background: rgba(230, 242, 228, 0.8);
  box-shadow: 0 5px 5px 0 rgba(230, 242, 228, 0.3);
}
.page.messages .messages .test-mode .close {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -15px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #000, 0 0 0 0 #000;
  transition: box-shadow 0.3s;
}
.page.messages .messages .test-mode .close:hover {
  box-shadow: inset 0 0 0 1px #000, 0 0 5px 0 #000;
}
.theme-title {
  font-weight: bold;
  font-size: 40px;
  line-height: 41px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .theme-title {
    font-size: 24px;
    line-height: 28px;
    text-transform: none;
  }
}
.uppercase-title {
  font-weight: bold;
  font-size: 40px;
  line-height: 41px;
  color: #000;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .uppercase-title {
    font-size: 24px;
    line-height: 28px;
    text-transform: none;
  }
}
@media screen and (max-width: 768px) {
  .uppercase-title {
    text-transform: none;
  }
}
.section-title {
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}
.section-title .year {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.4;
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 32px;
    line-height: 33px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: unset;
    margin-bottom: 0;
  }
  .section-title .year {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 18px;
    margin: 24px 0 0;
  }
}
.scroll-top {
  --blockBottomIndent: 38px;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 11px 23px rgba(0, 0, 0, 0.15);
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: var(--blockBottomIndent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (min-width: calc(959px + 1px)) {
  .scroll-top {
    --blockBottomIndent: 88px;
  }
}
html:not(.overlay):not(.nav-open) .scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top .icon {
  position: relative;
  transform: rotate(180deg);
  width: 18px;
  height: 18px;
}
.scroll-top span {
  font-size: 10px;
  line-height: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #000;
}
.messengers-wrapper {
  --blockLeftIndent: 16px;
  --blockBottomIndent: 30px;
  --toggleSize: 80px;
  --toggleShadow: 8px;
  --iconSize: 32px;
  --itemsIndent: 15px;
  position: fixed;
  z-index: 10;
  left: var(--blockLeftIndent);
  bottom: var(--blockBottomIndent);
}
@media (min-width: calc(959px + 1px)) {
  .messengers-wrapper {
    --blockBottomIndent: 80px;
  }
}
.messengers-wrapper .messengers-toggle {
  --toggleBg: #50C83A;
  --toggleShadowBg: rgba(80, 200, 58, 0.4);
  width: calc(var(--toggleSize) - (var(--toggleShadow) * 2));
  height: calc(var(--toggleSize) - (var(--toggleShadow) * 2));
  border-radius: 50%;
  background: var(--toggleBg);
  margin: var(--toggleShadow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px;
  font-size: var(--iconSize);
  cursor: pointer;
  animation: pulse infinite 1s linear;
  transition: background 0.3s;
}
.messengers-wrapper .messengers-toggle img {
  width: var(--iconSize);
  height: var(--iconSize);
}
.messengers-wrapper .messengers-toggle:not(.opened) .icon {
  display: none;
}
.messengers-wrapper .messengers-toggle.opened {
  --toggleBg: #fff;
  --toggleShadowBg: rgba(255, 255, 255, 0.4);
}
.messengers-wrapper .messengers-toggle.opened img {
  display: none;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--toggleShadowBg);
  }
  50% {
    box-shadow: 0 0 0 var(--toggleShadow) var(--toggleShadowBg);
  }
  100% {
    box-shadow: 0 0 0 0 var(--toggleShadowBg);
  }
}
.messengers-wrapper .messengers-content {
  position: absolute;
  left: 0;
  bottom: calc(100% + var(--itemsIndent));
}
.messengers-wrapper .messengers-content .messengers-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--itemsIndent);
  justify-items: start;
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
}
.messengers-wrapper .messengers-content .messengers-list:not(.opened) {
  opacity: 0;
  visibility: hidden;
}
.messengers-wrapper .messengers-content .messengers-list .item {
  margin: 0 var(--toggleShadow);
}
.messengers-wrapper .messengers-content .messengers-list .item.telegram {
  --itemColor: #98E1FF;
}
.messengers-wrapper .messengers-content .messengers-list .item.facebook_messenger {
  --itemColor: #E1C9FF;
}
.messengers-wrapper .messengers-content .messengers-list .item a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.messengers-wrapper .messengers-content .messengers-list .item .icon-block {
  flex-shrink: 0;
  width: calc(var(--toggleSize) - (var(--toggleShadow) * 2));
  height: calc(var(--toggleSize) - (var(--toggleShadow) * 2));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 11px 23px rgba(0, 0, 0, 0.15);
  font-size: var(--iconSize);
  position: relative;
  z-index: 1;
  transition: background 0.3s;
}
.messengers-wrapper .messengers-content .messengers-list .item .text-block {
  margin-left: calc((var(--toggleSize) - (var(--toggleShadow) * 2)) / 2 * -1);
  display: flex;
  align-items: center;
  height: calc(var(--toggleSize) - (var(--toggleShadow) * 2));
  background: var(--itemColor);
  border-radius: 0 47px 47px 0;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.3s;
}
.messengers-wrapper .messengers-content .messengers-list .item .text-block .text {
  white-space: nowrap;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  padding: 0 30px 0 calc(((var(--toggleSize) - (var(--toggleShadow) * 2)) / 2) + 20px);
}
@media (min-width: calc(959px + 1px)) {
  .messengers-wrapper .messengers-content .messengers-list .item:hover .icon-block {
    background: var(--itemColor);
  }
  .messengers-wrapper .messengers-content .messengers-list .item:hover .text-block {
    max-width: 300px;
  }
}
@media (max-width: 959px) {
  .messengers-wrapper .messengers-content .messengers-list.opened .icon-block {
    background: var(--itemColor);
  }
  .messengers-wrapper .messengers-content .messengers-list.opened .text-block {
    max-width: 300px;
    transition-delay: 0.3s;
  }
}
.content-style-extend ul,
.content-style-extend ol {
  list-style: none;
}
.content-style-extend ul li,
.content-style-extend ol li {
  padding-left: 20px;
  box-sizing: border-box;
  position: relative;
  line-height: 22px;
  margin-bottom: 10px;
}
.content-style-extend ul li:before,
.content-style-extend ol li:before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  color: #50C83A;
}
.content-style-extend ol {
  counter-reset: item;
}
.content-style-extend ol li {
  counter-increment: item;
}
.content-style-extend ol li:before {
  content: counter(item) '.';
}
.content-style-extend ul li:before {
  content: '\2022';
  font-size: 20px;
}
.content-style-extend img {
  max-width: 100%;
  height: auto;
}
.content-style-extend a:not(.button):not(.button-light) {
  color: #31A91B;
  text-decoration: none;
  transition: color 0.3s;
}
.content-style-extend a:not(.button):not(.button-light):hover {
  color: #50C83A;
}
.page-main {
  max-width: 1160px;
  margin: 0 auto;
}
.page-title-wrapper {
  flex-grow: 1;
}
.page-title-wrapper .page-title {
  font-weight: bold;
  font-size: 40px;
  line-height: 41px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .page-title-wrapper .page-title {
    font-size: 24px;
    line-height: 28px;
    text-transform: none;
  }
}
.post-top {
  display: flex;
  margin-bottom: 30px;
}
.post-top .post_author {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 300;
  font-size: 18px;
  color: #000;
  margin-left: 30px;
  padding-left: 30px;
  white-space: nowrap;
  border-left: 1px solid rgba(196, 196, 196, 0.6);
}
.post-top .post_author span {
  display: block;
  margin-bottom: 10px;
}
.post-top .post_author .post_author-position {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .post-top {
    display: block;
  }
  .post-top .post_author {
    margin: 15px 0 0;
    padding-left: 0;
    border-left: none;
  }
}
.all-news {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
}
.all-news a {
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000;
  padding-left: 20px;
  box-sizing: border-box;
  position: relative;
}
.all-news a .icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(90deg) translateX(-50%);
}
.post_wrapper {
  padding-bottom: 80px;
  font-weight: 300;
  font-size: 18px;
  line-height: 35px;
  color: #000;
}
.post_wrapper .top-info {
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 14px;
  line-height: 27px;
  color: #000;
  margin-bottom: 25px;
}
.post_wrapper .top-info .created-at {
  margin-right: 15px;
}
.post_wrapper .top-info .post_author {
  position: relative;
  padding-left: 15px;
}
.post_wrapper .top-info .post_author:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 28px;
  margin-top: -14px;
  background: #C4C4C4;
  opacity: 0.6;
}
.post_wrapper .product.media {
  margin-bottom: 40px;
}
.post_wrapper .product.media img {
  display: block;
  max-width: 100%;
}
.post_wrapper ul,
.post_wrapper ol,
.post_wrapper p {
  margin-bottom: 35px;
}
.post_wrapper ul,
.post_wrapper ol {
  list-style: none;
}
.post_wrapper ul li,
.post_wrapper ol li {
  padding-left: 20px;
  box-sizing: border-box;
  position: relative;
  line-height: 22px;
  margin-bottom: 10px;
}
.post_wrapper ul li:before,
.post_wrapper ol li:before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  color: #50C83A;
}
.post_wrapper ol {
  counter-reset: item;
}
.post_wrapper ol li {
  counter-increment: item;
}
.post_wrapper ol li:before {
  content: counter(item) '.';
}
.post_wrapper ul li:before {
  content: '\2022';
  font-size: 20px;
}
.post_wrapper img {
  max-width: 100%;
  height: auto;
}
.post_wrapper a:not(.button):not(.button-light) {
  color: #31A91B;
  text-decoration: none;
  transition: color 0.3s;
}
.post_wrapper a:not(.button):not(.button-light):hover {
  color: #50C83A;
}
.post_wrapper ul,
.post_wrapper ol {
  list-style: none;
}
.post_wrapper ul li,
.post_wrapper ol li {
  margin-bottom: 20px;
}
.popular-posts-title {
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}
.popular-posts-title .year {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.4;
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .popular-posts-title {
    font-size: 32px;
    line-height: 33px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: unset;
    margin-bottom: 0;
  }
  .popular-posts-title .year {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 18px;
    margin: 24px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .popular-posts-title {
    margin-bottom: 30px;
  }
}
.blog-additional-items {
  list-style: none;
  display: flex;
  margin-bottom: 70px;
}
.blog-additional-items a {
  text-decoration: none;
}
.blog-additional-items .blog-item {
  background: #F7F7F7;
  border-radius: 5px;
}
.blog-additional-items .blog-item .blog-item-inner {
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
}
.blog-additional-items .blog-item .product-item-details {
  width: 100%;
  box-sizing: border-box;
  padding: 64px;
  padding-right: 10px;
  color: #000;
}
.blog-additional-items .blog-item .product-item-details .post-name {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 30px;
}
.blog-additional-items .blog-item .product-item-details .post-description {
  max-height: 105px;
  overflow: hidden;
  margin-bottom: 15px;
}
.blog-additional-items .blog-item .product-item-details .post-created-at,
.blog-additional-items .blog-item .product-item-details .post-description {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  opacity: 0.7;
}
.blog-additional-items .blog-item .product-item-photo {
  width: 50%;
  display: flex;
  align-items: center;
}
.blog-additional-items .blog-item .product-item-photo img {
  max-width: 100%;
}
.blog-additional-items .blog-item .product-item-photo ~ .product-item-details {
  width: 50%;
}
.blog-additional-items:not(.owl-carousel) .blog-item {
  width: calc(50% - 10px);
}
.blog-additional-items:not(.owl-carousel) .blog-item:first-child {
  margin-right: 20px;
}
.blog-additional-items:not(.owl-carousel) .blog-item:nth-child(1n+3) {
  display: none;
}
.blog-additional-items.owl-carousel .blog-item {
  height: 100%;
}
.blog-additional-items.owl-carousel .owl-stage {
  display: flex;
}
.blog-additional-items.owl-carousel .owl-dots {
  padding: 24px;
  text-align: center;
}
.blog-additional-items.owl-carousel .owl-dots .owl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 8px;
  background: #000;
  opacity: 0.15;
  transition: opacity 0.3s;
}
.blog-additional-items.owl-carousel .owl-dots .owl-dot.active,
.blog-additional-items.owl-carousel .owl-dots .owl-dot:hover {
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .blog-additional-items .blog-item {
    width: 700px;
  }
  .blog-additional-items:not(.owl-carousel) .blog-item {
    width: 700px;
  }
  .blog-additional-items:not(.owl-carousel) .blog-item:nth-child(1n+2) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .blog-additional-items .blog-item {
    width: 100%;
    background: none;
  }
  .blog-additional-items .blog-item .blog-item-inner {
    display: flex;
    flex-direction: column;
  }
  .blog-additional-items .blog-item .product-item-photo,
  .blog-additional-items .blog-item .product-item-details {
    box-sizing: border-box;
  }
  .blog-additional-items .blog-item .product-item-photo {
    width: 100%;
    justify-content: center;
    padding: 0 15px;
    margin-bottom: 10px;
  }
  .blog-additional-items .blog-item .product-item-photo ~ .product-item-details {
    width: 100%;
  }
  .blog-additional-items .blog-item .product-item-photo img {
    width: auto;
  }
  .blog-additional-items .blog-item .product-item-details {
    padding: 15px;
  }
}
.cursor-pointer {
  cursor: pointer;
}
#courier-shipping-form .street .sl_select_exist .vs__selected {
  max-width: 83%;
}
@media screen and (max-width: 959px) {
  .delivery-time-block .s_type {
    width: 50%;
  }
  .delivery-time-block .s_type label {
    width: 100% !important;
  }
}
.cert_inp_field .certificate_data {
  max-width: 70% !important;
}
.cert_inp_field .slide-label-wrap {
  display: block;
}
.cert_inp_field span.accept_it {
  display: inline-block;
  background: #F6F6F6;
  color: rgba(0, 0, 0, 0.4);
  height: 46px;
  vertical-align: bottom;
  line-height: 47px;
  padding-left: 10px;
  padding-right: 10px;
  color: #50C83A;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
  margin-left: -4px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}
.cert_inp_field #certificate_inp {
  border: 1px solid #eee;
  width: 250px;
  display: inline-block;
  padding-left: 10px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pb-4 {
  padding-bottom: 30px;
}
.d-inline-block {
  display: inline-block;
  vertical-align: middle;
}
.disable_choice input[type="radio"] + label {
  padding-left: 0px !important;
}
.disable_choice input[type="radio"] + label:before {
  display: none !important;
}
.gift_prods {
  list-style: none;
  width: 100%;
  margin-top: 15px;
}
.gift_prods li {
  border: 1px solid #eee;
  padding: 5px;
  font-size: 0.8em;
  margin-bottom: 8px;
  line-height: 14px;
}
.payment_select .disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.hidden_anim {
  animation-iteration-count: 1;
  animation: fadein 0.3s ease-in alternate;
}
.product-info-main-top .prodcut_actions .options {
  margin-top: 15px;
  margin-bottom: 15px;
}
.product.media .images {
  filter: blur(1px);
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.disabled_choice {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
}
.modal.show,
.modal-dialog {
  box-shadow: none !important;
}
#input-live-feedback {
  margin-bottom: 10px;
}
#map_restaurants.modal .modal-body {
  padding: 0;
}
#map_restaurants.modal .modal-content {
  border: 0;
}
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip,
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip {
  display: block;
}
.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: transparent;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
#courier-shipping-form .vs__actions {
  right: 1px;
  z-index: 5;
}
#courier-shipping-form .v-select label {
  top: 3px;
}
#courier-shipping-form .v-select.vs__search label,
#courier-shipping-form .v-select.fill label,
#courier-shipping-form .v-select.vs--open label {
  top: -30px;
  font-size: 12px;
}
#courier-shipping-form .vs__actions,
#courier-shipping-form .vs__selected {
  top: 33%;
  position: absolute !important;
}
#courier-shipping-form .vs__selected {
  white-space: nowrap;
  max-width: 229px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
#courier-shipping-form .sl_select_exist .vs__selected {
  max-width: 100%;
}
#courier-shipping-form .sl_select_exist .vs__dropdown-menu {
  max-width: 400px;
}
#courier-shipping-form input.vs__search {
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.4;
  font-size: 1em;
  border-left: none !important;
  outline: none !important;
  margin: 0 0 0 0;
  padding: 0 0px;
  background: none;
  box-shadow: none;
  width: 0 !important;
  max-width: 100%;
  flex-grow: 1;
  z-index: 1;
}
.map_modal .map {
  height: 500px;
  display: block;
}
.map_modal .map .mapboxgl-canvas {
  width: 100%;
  height: 100%;
}
.text-center {
  text-align: center;
}
#restaurants_map {
  height: 500px;
  margin-bottom: 65px;
}
#restaurants_map .map {
  height: 500px;
}
.product.media img {
  max-width: 100%;
}
.fotorama__zoom-out,
.fotorama__zoom-in {
  display: none !important;
}
#minicart .spinner-border-sm {
  width: 0.8rem !important;
  height: 0.8rem !important;
  border-width: 2px !important;
}
.input-live-feedback {
  font-size: 0.7rem;
  color: red;
}
.toast-header button.close {
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  position: absolute;
  right: 10px;
  cursor: pointer;
}
.small {
  font-size: 0.9rem;
}
.qty-input-wrapper input:disabled {
  opacity: 1 !important;
}
.product-item.blacklisted .black_list.small {
  color: red;
}
.product-item.blacklisted .product-image-block {
  opacity: 0.2;
}
.product-item.blacklisted .qty-wrapper {
  display: none;
}
.product-item.blacklisted .product-item-detail .product-item-name {
  color: red;
}
#checkout-agreements-modal {
  max-height: 600px;
  overflow: auto;
}
#cart .dt_interval {
  font-size: 14px;
  line-height: 14px;
  display: block;
  color: #50c83a;
}
#cart #opc-sidebar .items-in-cart {
  max-height: 50%;
  overflow: auto;
  padding-right: 15px;
}
#cart #opc-sidebar .checkout-agreements-block {
  max-width: 100%;
}
.modal-body {
  box-shadow: none !important;
}
#modal-components .modal-content {
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1) !important;
  border-radius: 7px !important;
  border: 0 !important;
}
@media (max-width: 1200px) {
  #modal-components .modal-xl {
    max-width: 99%;
  }
  #modal-components .flex_w_35 {
    width: 30%;
  }
  #modal-components .flex_w_65 {
    width: 70%;
  }
}
#molino_dialog .modal-wrap-close {
  background: url(/templates/sushiya/images/modal_close_form.png) no-repeat 50%;
  cursor: pointer;
  height: 17px;
  position: absolute;
  right: -42px;
  top: -8px;
  width: 17px;
}
#molino_dialog .flex_container {
  display: flex;
  flex-wrap: wrap;
}
#molino_dialog .flex_container .flex_w_35 {
  width: 35%;
}
#molino_dialog .flex_container .flex_w_65 {
  width: 65%;
}
#molino_dialog .flex_container .ingredients-modal-wrap {
  display: flex;
  flex-wrap: wrap;
}
#molino_dialog .flex_container .product_info .image img {
  width: 100%;
  border-radius: 15px;
}
#molino_dialog .flex_container .product_info .product_title {
  font-weight: bold;
  text-align: center;
  padding: 0;
  font-size: 1.8rem;
  text-transform: uppercase;
}
#molino_dialog .flex_container .product_info .product_price {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
#molino_dialog .flex_container .product_info .modifiers {
  text-align: center;
}
@media (max-width: 574px) {
  #molino_dialog #modal-components {
    background: #616165;
  }
  #molino_dialog #modal-components .modal-wrap-close {
    background: transparent;
    height: 44px;
    right: 0px;
    top: 16px;
    width: 36px;
    z-index: 150;
  }
}
#molino_dialog .modal-wrap .modal-components {
  max-height: calc(75vh - 65px);
  max-width: 1200px;
  padding: 20px 20px 20px 0;
}
@media (max-width: 574px) {
  #molino_dialog .modal-components {
    box-shadow: none;
    height: calc(var(--inner-height) - 135px);
    max-height: none;
  }
}
@media (max-width: 374px) {
  #molino_dialog .modal-components {
    padding-right: 8px;
  }
}
#molino_dialog .modal-components .components-block {
  display: flex;
  margin-bottom: 20px;
  padding-right: 8px;
  width: 30%;
}
@media (max-width: 1199px) {
  #molino_dialog .modal-components .components-block {
    width: 30%;
  }
}
@media (max-width: 991px) {
  #molino_dialog .modal-components .components-block {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #molino_dialog .modal-components .components-block {
    width: 50%;
  }
  #molino_dialog .flex_w_35 {
    width: 100% !important;
  }
  #molino_dialog .flex_w_65 {
    width: 100% !important;
  }
  #molino_dialog #molino_dialog .modal-wrap-close {
    right: -22px;
    top: -18px;
  }
}
@media (max-width: 574px) {
  #molino_dialog .modal-components .components-block {
    width: 100%;
  }
}
#molino_dialog .modal-components .components-block.active .img {
  border-color: #50C83A;
}
#molino_dialog .modal-components .components-block.active .img img,
#molino_dialog .modal-wrap .modal-components .components-block.active .img svg {
  opacity: 1;
}
#molino_dialog .modal-components .components-block.active .price {
  color: #50C83A;
}
#molino_dialog .modal-components .scroll-wrap {
  max-height: calc(70vh - 110px);
  overflow: auto;
}
@media (max-width: 574px) {
  #molino_dialog .modal-components .scroll-wrap {
    height: calc(var(--inner-height) - 180px);
    max-height: none;
  }
}
#molino_dialog .modal-components .scroll-wrap::-webkit-scrollbar {
  width: 8px;
}
#molino_dialog .modal-components .scroll-wrap::-webkit-scrollbar-track {
  background-color: transparent;
}
#molino_dialog .modal-components .scroll-wrap::-webkit-scrollbar-thumb {
  background: #dfdfdf;
  border-radius: 8px;
}
#molino_dialog .modal-components .img {
  border: 1px solid rgba(58, 57, 63, 0.1);
  border-radius: 6px;
  flex-shrink: 0;
  height: 80px;
  margin-right: 8px;
  padding: 5px;
  position: relative;
  width: 80px;
}
@media (max-width: 574px) {
  #molino_dialog .modal-components .img {
    height: 56px;
    width: 56px;
  }
}
#molino_dialog .modal-components .img img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0.5;
  width: 100%;
}
#molino_dialog .modal-components .img svg {
  opacity: 0;
  position: absolute;
  right: 4px;
  top: 4px;
  transition: opacity 0.3s ease;
}
@media (max-width: 574px) {
  #molino_dialog .modal-components .img svg {
    height: 16px;
    width: 16px;
  }
}
#molino_dialog .modal-components .side {
  display: flex;
  flex-direction: column;
}
@media (max-width: 574px) {
  #molino_dialog .modal-components .side {
    flex-direction: row;
    flex-grow: 1;
    justify-content: space-between;
  }
}
#molino_dialog .modal-components .side-top {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 574px) {
  #molino_dialog .modal-components .side-top {
    justify-content: center;
  }
}
#molino_dialog .modal-components .name {
  align-items: center;
  color: #3a393f;
  display: flex;
  flex: 1 1;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 574px) {
  #molino_dialog .modal-components .name {
    flex: 0 0;
  }
}
#molino_dialog .modal-components .quantity {
  background: #faf8f8;
  border: 1px solid #ebebec;
  border-radius: 6px;
  display: flex;
  flex-shrink: 0;
  height: 28px;
  justify-content: space-between;
  margin-top: 8px;
  width: 90px;
}
@media (max-width: 574px) {
  #molino_dialog .modal-components .quantity {
    height: 44px;
    width: 125px;
  }
}
#molino_dialog .modal-components .quantity input {
  background: transparent;
  border: 0;
  color: rgba(58, 57, 63, 0.4);
  height: 100%;
  outline: none;
  text-align: center;
  width: calc(100% - 56px);
  min-height: auto;
  display: block;
  margin-left: 0px;
  padding: 0;
  line-height: 14px;
}
@media (max-width: 574px) {
  #molino_dialog .modal-components .quantity input {
    width: calc(100% - 88px);
  }
}
#molino_dialog .modal-components .quantity button {
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #ebebec;
  border-radius: 6px;
  color: #3a393f;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 300;
  height: 28px;
  margin-top: -1px;
  padding: 0;
  width: 28px;
  line-height: 20px;
}
@media (max-width: 574px) {
  #molino_dialog .modal-components .quantity button {
    height: 44px;
    width: 44px;
  }
}
#molino_dialog .modal-components .quantity button:first-child {
  margin-left: -1px;
}
#molino_dialog .modal-components .quantity button:last-child {
  margin-right: -1px;
}
#molino_dialog .modal-components .ingredients-modal-panel {
  align-items: center;
  display: flex;
  margin-top: 16px;
  position: absolute;
  right: 24px;
  top: 100%;
}
#molino_dialog .modal-components .ingredients-modal-panel {
  align-items: center;
  display: flex;
  margin-top: 26px;
  position: absolute;
  right: -2px;
  top: 100%;
}
#molino_dialog .modal-components .ingredients-modal-panel .clean {
  background-color: transparent;
  border: 0;
  color: #fff;
  padding: 0;
}
@media (max-width: 574px) {
  #molino_dialog .modal-components .ingredients-modal-panel .clean {
    font-size: 14px;
  }
}
@media (max-width: 374px) {
  #molino_dialog .modal-components .ingredients-modal-panel .clean {
    font-size: 0;
  }
}
#molino_dialog .modal-components .ingredients-modal-panel .clean:hover {
  text-decoration: underline;
}
#molino_dialog .modal-components .ingredients-modal-panel .clean > * + * {
  margin-left: 6px;
}
#molino_dialog .modal-components .ingredients-modal-panel > * + * {
  margin-left: 26px;
}
.sushiya_popup .modal-inner-wrap {
  padding: 0;
  margin: 0;
  max-width: 500px;
  width: 100%;
  position: relative;
  left: unset;
  top: unset;
  max-height: 100%;
}
.sushiya_popup .modal-header {
  padding: 50px 0 30px;
  border-bottom: 0;
}
.sushiya_popup .modal-header .modal-title {
  margin: 0;
  padding: 0;
  border: none;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #231F20;
}
.sushiya_popup .action-close {
  border: 0;
  position: absolute;
  top: 32px;
  right: 32px;
  background: #fff;
  padding: 0;
}
.sushiya_popup .action-close:before {
  display: none;
}
.sushiya_popup .action-close > span {
  all: unset;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  cursor: pointer;
}
.modal-popup {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-popup .modal-inner-wrap {
  padding: 0;
  margin: 0;
  max-width: 500px;
  width: 100%;
  position: relative;
  left: unset;
  top: unset;
  max-height: 100%;
}
.modal-popup .action-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: #fff;
  padding: 0;
}
.modal-popup .action-close:before {
  display: none;
}
.modal-popup .action-close > span {
  all: unset;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  cursor: pointer;
}
.modal-popup .modal-header {
  padding: 50px 0 30px;
}
.modal-popup .modal-header .modal-title {
  margin: 0;
  padding: 0;
  border: none;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #231F20;
}
.modal-popup .modal-content {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  position: relative;
}
.modal-popup .modal-content::-webkit-scrollbar {
  width: 4px;
}
.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: #50C83A;
  border-radius: 4px;
}
.modal-popup .modal-content::-webkit-scrollbar-thumb:hover {
  background-color: #50C83A;
}
.modal-popup .modal-footer {
  padding: 20px 0 40px;
}
.modal-popup .modal-footer .action-primary {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  font-weight: 500;
}
.modal-popup .modal-footer .action-primary.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .modal-popup .modal-footer .action-primary:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.modal-popup .modal-footer .action-primary:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.modal-popup.modal-popup-complain .modal-inner-wrap {
  padding: 0;
  margin: 0;
  max-width: 500px;
  width: 100%;
}
.modal-popup .modal-header,
.modal-popup .modal-content,
.modal-popup .modal-footer {
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 479px) {
  .modal-popup .modal-header,
  .modal-popup .modal-content,
  .modal-popup .modal-footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 479px) {
  .modal-popup .modal-header {
    padding: 30px 30px 0;
  }
  .modal-popup .modal-content {
    padding: 20px 30px 30px;
  }
  .modal-popup .action-close {
    top: 12px;
    right: 12px;
  }
}
.modal-popup.confirm .modal-inner-wrap {
  max-width: 400px;
}
.modal-popup.confirm .modal-inner-wrap .action-dismiss {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  color: #000;
  background: #fff;
  font-weight: normal;
}
.modal-popup.confirm .modal-inner-wrap .action-dismiss.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .modal-popup.confirm .modal-inner-wrap .action-dismiss:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.modal-popup.confirm .modal-inner-wrap .action-dismiss:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.modal-popup.confirm .modal-inner-wrap .action-dismiss,
.modal-popup.confirm .modal-inner-wrap .action-dismiss:active {
  border-color: #DADADA;
}
@media screen and (min-width: 769px) {
  .modal-popup.confirm .modal-inner-wrap .action-dismiss:hover {
    border-color: #DADADA;
    background: #F4F4F3;
  }
}
.modal-popup.confirm .modal-inner-wrap .action-dismiss:active {
  background: #E7E7E7;
}
.modal-popup.confirm .modal-inner-wrap .action-dismiss .icon {
  opacity: 0.2;
  position: relative;
  top: 1px;
}
.modal-popup.confirm .modal-inner-wrap .modal-header {
  padding: 40px;
}
.modal-popup.confirm .modal-inner-wrap .modal-content {
  padding: 0 40px;
}
.modal-popup.confirm .modal-inner-wrap .modal-footer {
  padding: 40px 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.modal-popup.confirm .modal-inner-wrap .modal-footer button {
  width: calc(50% - 10px);
  margin: 0 0 20px;
}
.sushiya_popup .modal-footer,
.sushiya_popup .modal-content {
  border: 0;
}
.sushiya_popup .modal-popup-complain .modal-content {
  padding: 0 !important;
}
.sushiya_popup .modal-popup-complain .modal-content .complain-modal {
  padding-left: 60px;
  padding-right: 60px;
}
.sushiya_popup .form .field {
  margin-bottom: 20px;
}
.sushiya_popup .form .field label {
  font-size: 12px;
  line-height: 1;
  top: 0;
  color: #000;
  opacity: 0.4;
}
.sushiya_popup .form .field input {
  height: 48px;
  font-size: 16px;
}
.sushiya_popup .form .field input:not(.vs__search ),
.sushiya_popup .form .field textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-width: 0 0 1px;
  height: 48px;
  color: #000;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.sushiya_popup .form .field textarea {
  resize: vertical;
  min-height: 170px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.sushiya_popup .form .field textarea::-webkit-scrollbar {
  width: 4px;
}
.sushiya_popup .form .field textarea::-webkit-scrollbar:horizontal {
  height: 4px;
}
.sushiya_popup .form .field textarea::-webkit-scrollbar-track {
  background-color: transparent;
}
.sushiya_popup .form .field textarea::-webkit-scrollbar-thumb {
  background-color: #50C83A;
  border-radius: 4px;
}
.sushiya_popup .form .field textarea::-webkit-scrollbar-thumb:hover {
  background-color: #50C83A;
}
.sushiya_popup .form .field .slide-label-wrap {
  padding-top: 12px;
}
.sushiya_popup .form .field .slide-label-wrap label {
  top: 12px;
  font-size: 16px;
  line-height: 48px;
  transition: top 0.3s, font-size 0.3s, line-height 0.3s;
}
.sushiya_popup .form .field .slide-label-wrap .v-select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-width: 0 0 1px;
}
.sushiya_popup .form .field .slide-label-wrap .v-select.vs--open label,
.sushiya_popup .form .field .slide-label-wrap .v-select:focus label,
.sushiya_popup .form .field .slide-label-wrap .v-select.fill label {
  left: 3px;
  font-size: 12px;
  line-height: 1;
  top: -5px !important;
}
.sushiya_popup .form .field .slide-label-wrap input:focus ~ label,
.sushiya_popup .form .field .slide-label-wrap textarea:focus ~ label,
.sushiya_popup .form .field .slide-label-wrap input.fill ~ label,
.sushiya_popup .form .field .slide-label-wrap textarea.fill ~ label {
  font-size: 12px;
  line-height: 1;
  top: 0;
}
.sushiya_popup .form .field .slide-label-wrap input:-webkit-autofill ~ label,
.sushiya_popup .form .field .slide-label-wrap textarea:-webkit-autofill ~ label {
  font-size: 12px;
  line-height: 1;
  top: 0;
}
.sushiya_popup .form .field .slide-label-wrap input:-moz-autofill ~ label,
.sushiya_popup .form .field .slide-label-wrap textarea:-moz-autofill ~ label {
  font-size: 12px;
  line-height: 1;
  top: 0;
}
.sushiya_popup .form .field label {
  cursor: text;
}
.sushiya_popup .form .field input.invalid {
  border-color: red;
}
.sushiya_popup .form .field.gender {
  padding-top: 0;
}
.sushiya_popup .form .field.gender label {
  display: block;
  font-size: 12px;
  line-height: 1;
  color: #000;
  opacity: 0.4;
}
.sushiya_popup .form .field.date .ui-datepicker-trigger {
  display: none;
}
.sushiya_popup .form .field #password-strength-meter-container {
  margin-top: 5px;
  font-size: 14px;
}
.sushiya_popup .form .field #password-strength-meter-container span {
  color: #50C83A;
}
.sushiya_popup .form .field #password-strength-meter-container.password-none span,
.sushiya_popup .form .field #password-strength-meter-container.password-weak span {
  color: red;
}
.sushiya_popup .form .field.captcha .field {
  margin: 0;
}
.sushiya_popup .form .field.captcha .nested {
  margin: 20px 0 0;
}
.sushiya_popup .form .field.captcha .nested .captcha-image {
  display: flex;
}
.sushiya_popup .form .field.captcha .nested .captcha-image img {
  max-width: calc(100% - 130px);
}
.sushiya_popup .form .field.captcha .nested .captcha-reload {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  color: #000;
  background: #fff;
  font-weight: normal;
  height: 50px;
  border-radius: 5px;
  margin-left: 10px;
}
.sushiya_popup .form .field.captcha .nested .captcha-reload.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .sushiya_popup .form .field.captcha .nested .captcha-reload:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.sushiya_popup .form .field.captcha .nested .captcha-reload:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.sushiya_popup .form .field.captcha .nested .captcha-reload,
.sushiya_popup .form .field.captcha .nested .captcha-reload:active {
  border-color: #DADADA;
}
@media screen and (min-width: 769px) {
  .sushiya_popup .form .field.captcha .nested .captcha-reload:hover {
    border-color: #DADADA;
    background: #F4F4F3;
  }
}
.sushiya_popup .form .field.captcha .nested .captcha-reload:active {
  background: #E7E7E7;
}
.sushiya_popup .form .field.captcha .nested .captcha-reload .icon {
  opacity: 0.2;
  position: relative;
  top: 1px;
}
.sushiya_popup .modal-inner-wrap ._block-content-loading {
  position: relative;
  min-height: 100px;
}
.sushiya_popup .modal-inner-wrap .loading-mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sushiya_popup .modal-inner-wrap .loading-mask img {
  position: static !important;
}
.modal.show .modal-dialog {
  box-shadow: 0 0 12px 2px rgb(0 0 0%);
}
.auth-popup .form-error {
  margin-top: 15px;
  color: red;
  font-size: 1.2rem;
}
.auth-popup .fieldset {
  display: block;
  border: 0;
}
.auth-popup .small_txt {
  font-size: 11px !important;
}
.auth-popup .modal-header {
  padding: 60px 60px 0;
}
.auth-popup .modal-content {
  padding: 20px 60px 60px;
  border: 0;
  width: auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.auth-popup .modal-content::-webkit-scrollbar {
  width: 4px;
}
.auth-popup .modal-content::-webkit-scrollbar:horizontal {
  height: 4px;
}
.auth-popup .modal-content::-webkit-scrollbar-track {
  background-color: transparent;
}
.auth-popup .modal-content::-webkit-scrollbar-thumb {
  background-color: #50C83A;
  border-radius: 4px;
}
.auth-popup .modal-content::-webkit-scrollbar-thumb:hover {
  background-color: #50C83A;
}
.auth-popup button.action {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.auth-popup button.action.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .auth-popup button.action:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.auth-popup button.action:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.auth-popup a.action {
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #50C83A;
  background: #50C83A;
  border-radius: 24px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  color: #000;
  background: #fff;
  font-weight: normal;
}
.auth-popup a.action.disabled {
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .auth-popup a.action:hover {
    border-color: #4EDB34;
    background: #4EDB34;
  }
}
.auth-popup a.action:active {
  border-color: #2CBE11;
  background: #2CBE11;
}
.auth-popup a.action,
.auth-popup a.action:active {
  border-color: #DADADA;
}
@media screen and (min-width: 769px) {
  .auth-popup a.action:hover {
    border-color: #DADADA;
    background: #F4F4F3;
  }
}
.auth-popup a.action:active {
  background: #E7E7E7;
}
.auth-popup a.action .icon {
  opacity: 0.2;
  position: relative;
  top: 1px;
}
.auth-popup button.action,
.auth-popup a.action {
  border-radius: 5px;
  width: 100%;
}
.auth-popup .action.primary {
  margin-bottom: 20px;
}
.auth-popup .block-new-customer .action.primary {
  margin: 20px 0 0;
}
.auth-popup .form .field.gender {
  position: relative;
  display: flex;
  width: 100%;
}
.auth-popup .form .field.gender label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 48px;
  box-sizing: border-box;
  padding: 5px 20px;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  border: 1px solid #D7D7D7;
  margin-right: -1px;
  opacity: 1;
}
.auth-popup .form .field.gender label:first-of-type {
  border-radius: 5px 0 0 5px;
}
.auth-popup .form .field.gender label:last-of-type {
  border-radius: 0 5px 5px 0;
}
.auth-popup .form .field.gender input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.auth-popup .form .field.gender input[type="radio"]:checked + label {
  background: #F6F6F6;
  color: rgba(0, 0, 0, 0.4);
  font-weight: normal;
  cursor: default;
}
@media screen and (max-width: 479px) {
  .auth-popup .modal-header {
    padding: 30px 30px 0;
  }
  .auth-popup .modal-content {
    padding: 20px 30px 30px;
  }
  .auth-popup .action-close {
    top: 12px;
    right: 12px;
  }
}
@media all and (max-width: 1300px) {
  nav.sushiya_categs ul {
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
  }
}
.menu-image-block {
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-image-block svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.menu-image-block img {
  width: 1em;
}
.menu-image-block .nav-description {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 14px;
  line-height: 1;
  width: auto;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.menu-image-block:hover .nav-description {
  visibility: visible;
  opacity: 1;
}
.navigation ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.navigation ul .level0 > .level-top {
  display: flex;
  align-items: center;
  padding: 10px;
}

/*# sourceMappingURL=blog_item.css.map*/