@charset "UTF-8";
.trin {
  animation-name: trin;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes trin {
  from {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes stretch {
  0% {
    color: #006b25;
  }
  100% {
    color: #2b8cd6;
  }
}
@-webkit-keyframes logoRes {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes logoRes {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes showDialog {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.2);
  }
}
.scale {
  animation-name: scale;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running;
}

@-webkit-keyframes jump {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes jump {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

video {
  width: 100%;
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover, a:focus {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub.red, sup.red {
  color: #e31e26;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

p {
  font: 400 1.5rem/1.6 "Noto Sans", sans-serif;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

input[type=email], input[type=number], input[type=search], input[type=text], input[type=tel], input[type=url], input[type=password], textarea {
  -webkit-appearance: none;
  appearance: none;
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

[class^=icon_], [class*=" icon_"], .icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

ul li, ol li {
  list-style: none;
}

.dialog_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 1500;
  padding: 0 1rem;
  overflow-y: auto;
}

.dialog {
  display: none;
  align-items: center;
  max-width: 40rem;
  margin: 4rem auto;
  min-height: calc(100% - 8rem);
}
.dialog.modal_small {
  max-width: 31rem;
}
.dialog.modal_medium {
  max-width: 40rem;
}
.dialog.modal_large {
  max-width: 85rem;
}
.dialog.modal_xlarge {
  max-width: 65vw;
}

.modal_wrap {
  width: 100%;
  padding: 2rem 3rem 2.5rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
  border-top: 0.6rem solid #2b8cd6;
  z-index: 1503;
  position: relative;
}
.modal_wrap .icon_close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #2b8cd6;
  cursor: pointer;
  font-size: 3rem;
  transition: color 0.3s linear;
}
.modal_wrap .icon_close:focus {
  color: #dc3545;
}
.modal_wrap .icon_close .icon {
  display: block;
}
.modal_wrap .image_wrap {
  position: relative;
  width: 7rem;
  height: 7rem;
  line-height: 7rem;
  margin: -5.5rem auto 0;
  border-radius: 50%;
  text-align: center;
  background-color: #2b8cd6;
}
.modal_wrap .image_wrap .icon {
  height: 4rem;
  width: 4rem;
  color: #ffffff;
  animation: zoomIn 0.5s both;
  animation-delay: 0.2s;
}
.modal_wrap .modal_text {
  text-align: center;
  margin: 2rem 0 0.5rem;
}
.modal_wrap .modal_text .modal_title {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #000000;
  text-transform: capitalize;
  margin: 0 auto;
}
.modal_wrap .modal_text p {
  margin: 0.5rem auto;
  max-width: 88%;
}
.modal_wrap .modal_buttons {
  font-size: 0;
  text-align: center;
  margin: 2rem auto 0;
  max-width: 35rem;
}
.modal_wrap .modal_buttons .button {
  width: calc(50% - 1.4rem);
  min-width: unset;
  margin: 0.5rem 0.7rem;
}

.dialog_bg {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.55);
}

.dialog_wrapper.visible, .dialog_bg.visible {
  display: block;
}

.dialog.visible {
  display: flex;
}

.dialog_opened {
  overflow: hidden;
  padding-right: 0.8rem;
}
.dialog_opened.dialog_scrollable_mobile {
  padding-right: 0;
}
.dialog_opened .dialog_bg, .dialog_opened .modal_wrap {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}
.dialog_opened .dialog_bg {
  animation-name: fadeIn;
}
.dialog_opened .modal_wrap {
  animation-name: showDialog;
}

/* common styles */
.modal_status.dialog .modal_wrap {
  color: #000000;
  background-color: #ffffff;
  text-align: center;
}
.modal_status.dialog .dialog_close.icon_close {
  display: none;
}
.modal_status.dialog .modal_text {
  margin: 2rem 0;
}
.modal_status.dialog .modal_text .modal_title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: initial;
  margin: 0 auto 1rem;
  max-width: 100%;
}
.modal_status.dialog .modal_text p {
  margin: 0.5rem auto;
  max-width: 88%;
}

/* modal_success */
.modal_success.dialog .modal_wrap {
  border-top: 0.6rem solid #28a745;
}
.modal_success.dialog .check_wrap {
  border: 0.2rem solid #28a745;
  overflow: hidden;
  animation: wrap 0.3s ease-in-out forwards;
  animation-delay: 0.3s;
  transform: scale(0);
}
.modal_success.dialog .check_wrap::before, .modal_success.dialog .check_wrap::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 0;
  height: 0.5rem;
  transform-origin: left;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.modal_success.dialog .check_wrap::before {
  top: 3.2rem;
  left: 2.1rem;
  transform: rotate(45deg);
  animation-name: left;
  animation-delay: 0.8s;
}
.modal_success.dialog .check_wrap::after {
  top: 4.2rem;
  left: 2.9rem;
  transform: rotate(-45deg);
  animation-name: right;
  animation-delay: 1.1s;
}

@keyframes wrap {
  0% {
    background-color: transparent;
    transform: scale(0);
  }
  100% {
    background-color: #28a745;
    transform: scale(1);
  }
}
@keyframes left {
  0% {
    width: 0;
  }
  100% {
    width: 1.5rem;
  }
}
@keyframes right {
  0% {
    width: 0;
  }
  100% {
    width: 3rem;
  }
}
/* modal_danger */
.modal_danger.dialog .modal_wrap {
  border-top: 0.6rem solid #dc3545;
}
.modal_danger.dialog .checkmark {
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  background-color: transparent;
  box-shadow: inset 0 0 0 #dc3545;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale2 0.3s ease-in-out 0.9s both;
}
.modal_danger.dialog .checkmark_circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #dc3545;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.modal_danger.dialog .checkmark_check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale2 {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0 0 0 5rem #dc3545;
  }
}
/* modal_warning */
.modal_warning.dialog {
  border-top: 0.6rem solid #ffb92e;
}
.modal_warning.dialog .image_wrap {
  background-color: #ffb92e;
}

/* modal_info */
.modal_info.dialog {
  border-top: 0.6rem solid #119eb5;
}
.modal_info.dialog .image_wrap {
  background-color: #119eb5;
}

.dialog .contact_form .modal_text {
  margin: 2rem 0;
}
.dialog .contact_form textarea.input {
  min-height: 7.3rem;
}
.dialog .contact_form .button {
  display: block;
  width: 100%;
  margin: 2rem 0 0;
}
.dialog .contact_form .row_f [class*=col_] {
  width: calc(100% - 3.01rem);
}

.modal_video.dialog {
  padding: 1.5rem;
  border: none;
  width: 65vw;
  max-width: 100%;
  flex-shrink: 0;
}

.modal_video.dialog .video_frame {
  width: 100%;
  height: 40rem;
  border-radius: 1.5rem;
}

.modal_video.dialog .icon_close {
  display: none;
}

.toast_notifications {position: fixed;bottom: 3rem;right: 2rem;z-index: 99999999;}
.toast_notifications .toast, .toast_notifications .column {display: flex;align-items: center;}
.toast_notifications .toast {width: 40rem;position: relative;overflow: hidden;list-style: none;padding: 1.6rem 1.7rem;margin-bottom: 1rem;background: #ffffff;justify-content: space-between;animation: show_toast 0.3s ease forwards;box-shadow: 0 0.2rem 0.8rem 0 rgba(99, 99, 99, 0.2);}
@keyframes show_toast { 0% {transform: translateX(100%);} 40% {transform: translateX(-5%);} 80% {transform: translateX(0%);} 100% {transform: translateX(-10px);} }
.toast_notifications .toast.hide {animation: hide_toast 0.3s ease forwards;}
@keyframes hide_toast { 0% {transform: translateX(-10px);} 40% {transform: translateX(0%);} 80% {transform: translateX(-5%);} 100% {transform: translateX(calc(100% + 20px));} }
.toast::before {position: absolute;content: "";height: 0.3rem;width: 100%;bottom: 0;left: 0;animation: progress 4s linear forwards;}
@keyframes progress { 100% {width: 0%;} }
.toast.success::before {background-color: #43B14B;}
.toast.error::before {background-color: #FF3F0A;}
.toast.warning::before {background-color: #D8CD31;}
.toast.info::before {background-color: #4fc8f4;}
.toast .column svg {width: 2.6rem;height: 2.6rem;flex-shrink: 0;}
.toast.success .column svg, .toast.success .column span {color: #43B14B;}
.toast.error .column svg, .toast.error .column span {color: #E24D4C;}
.toast.warning .column svg, .toast.warning .column span {color: #D8CD31;}
.toast.info .column svg, .toast.info .column span {color: #4fc8f4;}
.toast .column span {font-size: 1.6rem;font-weight: 600;margin-left: 1.2rem;color: #272727;flex-grow: 1;}
.toast_notifications .removeTOAST {display: flex;cursor: pointer;flex-shrink: 0;}
.toast_notifications .removeTOAST .icon {width: 1.6rem;height: 1.6rem;color: #000000;transition: 0.3s linear;}

html {
  font-size: 62.5%;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.4rem;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding-top: 12.8rem;
}

[disabled], .disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.clearfix::before, .row::before, .clearfix::after, .row::after {
  content: " ";
  display: table;
}

.clearfix::after, .row::after {
  clear: both;
}

.clearfix, .row {
  *zoom: 1;
}

a {
  text-decoration: none;
  color: #2b8cd6;
}

.table {
  display: table;
}

.tableb {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
}

.trow {
  display: table-row;
}

.tcell {
  display: table-cell;
  vertical-align: middle;
}

.tc {
  text-align: center;
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

hr {
  border-top: 1px solid #dbdbdb;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  clear: both;
  margin: 2.4rem 0;
}

hr.hr {
  border-top: 1px solid #dbdbdb;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  clear: initial;
  margin: 2rem 0;
}

hr.dotted {
  border-style: dotted;
}

hr.dashed {
  border-style: dashed;
}

::-webkit-scrollbar {
  width: 0.8rem;
  height: 0.8rem;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-border-radius: 0;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background: #2b8cd6;
  -webkit-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.slick-prev, .slick-next {font-size: 0;display: block;width: 2.8rem;height: 2.8rem;background-color: #ffffff;border-radius: 50%;border: 0.1rem solid #ffffff;position: absolute;top: 50%;transform: translate(0, -50%);z-index: 5;transition: 0.3s linear;cursor: pointer;}
.slick-prev::after, .slick-next::after {content: "";display: block;width: 1.2rem;height: 1.2rem;border-style: solid;border-width: 0 0.2rem 0.2rem 0;border-color: #000000;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);transition: 0.3s linear;}
.slick-prev {left: 1.5rem;}
.slick-prev::after {transform: translate(-25%, -50%) rotate(135deg);}
.slick-next {right: 1.5rem;}
.slick-next::after {transform: translate(-75%, -50%) rotate(-45deg);}

.slick-dots {position: absolute;left: 50%;bottom: 2rem;display: flex;transform: translate(-50%, 0);z-index: 30;}
.slick-dots li {display: block;width: 1.5rem;height: 1.5rem;margin: 0 0.5rem;background: transparent;border: 0.1rem solid #2b8cd6;border-radius: 50%;cursor: pointer;}
.slick-dots li.slick-active {background: #2b8cd6;}
.slick-dots li:only-child {display: none;}
.slick-dots li button {background: transparent;border: none;font-size: 0;}

.row {
  margin: 0 -1.5rem;
}
.row:after {
  content: "";
  display: block;
  clear: both;
}
.row .col_1, .row .col_10, .row .col_11, .row .col_12, .row .col_2, .row .col_3, .row .col_4, .row .col_5, .row .col_6, .row .col_7, .row .col_8, .row .col_9 {
  float: left;
  margin: 0 1.5rem;
}
.row .col_1 {width: calc(8.3333333333% - 3.01rem);}
.row .col_2 {width: calc(16.6666666667% - 3.01rem);}
.row .col_3 {width: calc(25% - 3.01rem);}
.row .col_4 {width: calc(33.3333333333% - 3.01rem);}
.row .col_5 {width: calc(41.6666666667% - 3.01rem);}
.row .col_6 {width: calc(50% - 3.01rem);}
.row .col_7 {width: calc(58.3333333333% - 3.01rem);}
.row .col_8 {width: calc(66.6666666667% - 3.01rem);}
.row .col_9 {width: calc(75.0000000019% - 3.01rem);}
.row .col_10 {width: calc(83.3333333333% - 3rem);}
.row .col_11 {width: calc(91.6666666667% - 3.01rem);}
.row .col_12 {width: calc(100% - 3.01rem);}

.row_f {margin: 0 -1.5rem;display: flex;flex-wrap: wrap;}
.row_f_a_c{align-items: center;}
.row_f .col_1, .row_f .col_2, .row_f .col_3, .row_f .col_4, .row_f .col_5, .row_f .col_6, .row_f .col_7, .row_f .col_8, .row_f .col_9, .row_f .col_10, .row_f .col_11, .row_f .col_12 {
  margin: 0 1.5rem;
}
.row_f .col_1 {width: calc(8.3333333333% - 3.01rem);}
.row_f .col_2 {width: calc(16.6666666667% - 3.01rem);}
.row_f .col_3 {width: calc(25% - 3.01rem);}
.row_f .col_4 {width: calc(33.3333333333% - 3.01rem);}
.row_f .col_5 {width: calc(41.6666666667% - 3.01rem);}
.row_f .col_6 {width: calc(50% - 3.01rem);}
.row_f .col_7 {width: calc(58.3333333333% - 3.01rem);}
.row_f .col_8 {width: calc(66.6666666667% - 3.01rem);}
.row_f .col_9 {width: calc(75.0000000019% - 3.01rem);}
.row_f .col_10 {width: calc(83.3333333333% - 3.01rem);}
.row_f .col_11 {width: calc(91.6666666667% - 3.01rem);}
.row_f .col_12 {width: calc(100% - 3.01rem);}

.map_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrapper {
  width: 100%;
  max-width: 150rem;
  padding: 0 1.5rem;
  margin: 0 auto;
  position: relative;
}
.wrapper::after {
  content: "";
  display: table;
  clear: both;
}
.wrapper.wrapper_full {
  max-width: 100%;
}
.wrapper.wrapper_small {
  max-width: 97rem;
}

.icon {
  line-height: 0;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

table.table {
  width: 100%;
}

::placeholder {
  color: #4A6572;
  transition: all 0.3s;
}

.form_item {margin: 1rem 0;}
.form_item.form_item_m2 {margin: 2rem 0;}
.form_item .pre_input {display: block;margin: 0 0 0.3rem;}
.form_item.form_item_flex {display: flex;flex-wrap: wrap;align-items: center;justify-content: space-between;gap: 1rem;}
.form_item.form_item_captcha {margin: 2rem 0 1rem;}
.form_item.form_item_b100 .button {max-width: 100%;width: 100%;}
.form_item_icon_left {position: relative;}
.form_item_icon_left .input{padding-left: 3rem}
.form_item_icon_left > .icon {position: absolute;bottom: 1.2rem;left: 1rem;width: 1.4rem;height: 1.4rem;fill: #2b8cd6;}
.input {display: block;width: 100%;max-width: 100%;height: 4rem;font-size: 1.4rem;padding: 0 1rem;border: 0.1rem solid #cfcfcf;background-color: #ffffff;color: #000000;border-radius: 0.3rem;transition: box-shadow 0.2s ease-in;}
.input:focus, .input:active {outline-style: none;box-shadow: 0 0 0 0.3rem rgba(223,239,255, 0.5);}
.input::placeholder {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #4A6572;
  opacity: 1;
  text-overflow: ellipsis;
}
.input:focus::placeholder {
  opacity: 0;
}
.input:-webkit-autofill, .input:-webkit-autofill:focus, .input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 4rem #ffffff inset !important;
  -webkit-text-fill-color: #000000 !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield !important;
}

textarea.input {
  min-height: 10rem;
  padding-top: 0.5rem;
  resize: none;
}
textarea.input.short_input_textarea {
  min-height: 5rem;
}

select.input {
  line-height: normal;
  text-overflow: "";
}

select::-ms-expand {
  display: none;
}

.select_after {
  position: relative;
  display: block;
}
.select_after::after {
  content: "";
  position: absolute;
  top: 1.7rem;
  right: 1rem;
  width: 1.2rem;
  height: 0.7rem;
  background-image: url('data:image/svg+xml;utf8,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(0deg);
  transition: 0.3s;
}
.select_after select {
  padding: 0 3rem 0 1rem;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.select_after:has(select:focus):after {
  transform: rotate(180deg);
}

.custom_checkbox {position: absolute;left: -999.9rem;}
.custom_checkbox + label {display: inline-flex;align-items: center;user-select: none;cursor: pointer;margin: 0 1rem 0 0;}
.custom_checkbox + label .checkbox_design {flex: 0 0 auto;width: 2rem;height: 2rem;border: 0.1rem solid #cfcfcf;background-color: #ffffff;border-radius: 0.3rem;position: relative;transform: scale(1);transition: all 0.2s ease;}
.custom_checkbox + label .checkbox_design svg {position: absolute;top: 0.4rem;left: 0.3rem;width: 1.2rem;height: 1rem;fill: none;stroke: transparent;stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;stroke-dasharray: 1.6rem;stroke-dashoffset: 1.6rem;transition: all 0.3s ease;transition-delay: 0.1s;transform: translate3d(0, 0, 0);}
.custom_checkbox + label .checkbox_design::before {content: "";position: absolute;top: 0;left: 0;display: block;width: 100%;height: 100%;opacity: 1;border-radius: 50%;background-color: #2b8cd6;transform: scale(0);}
.custom_checkbox + label .checkbox_text {display: inline-block;font-size: 1.4rem;padding: 0 0 0 1rem;}
.custom_checkbox:checked + label .checkbox_design {background-color: #2b8cd6;border-color: #2b8cd6;}
.custom_checkbox:checked + label .checkbox_design svg {stroke: #ffffff;stroke-dashoffset: 0;}
.custom_checkbox:checked + label .checkbox_design::before {opacity: 0;transform: scale(3.5);transition: all 0.6s ease;}

.custom_radio_button {
  position: absolute;
  left: -999.9rem;
}
.custom_radio_button + label {
  display: inline-flex;
  align-items: flex-start;
  user-select: none;
  cursor: pointer;
  font-size: 0;
  margin: 0 2rem 0 0;
}
.custom_radio_button + label .radio_button_design {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #cfcfcf;
  background-color: #ffffff;
  border-radius: 0;
  position: relative;
  transition: all 0.2s ease;
}
.custom_radio_button + label .radio_button_design::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #2b8cd6;
  transform: scale(0);
}
.custom_radio_button + label .radio_button_design svg {
  position: absolute;
  top: 0.3rem;
  left: 0.2rem;
  width: 1.2rem;
  height: 1rem;
  fill: none;
  stroke: transparent;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1.6rem;
  stroke-dashoffset: 1.6rem;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.custom_radio_button + label .radio_button_design::before {
  opacity: 1;
}
.custom_radio_button + label .radio_button_text {
  display: inline-block;
  font-size: 1.6rem;
  padding: 0 0 0 1rem;
}
.custom_radio_button:checked + label .radio_button_design {
  border-color: #2b8cd6;
  background-color: #2b8cd6;
  border-width: 0.2rem;
}
.custom_radio_button:checked + label .radio_button_design::before {
  transition: all 0.6s ease;
}
.custom_radio_button:checked + label .radio_button_design svg {
  stroke: #ffffff;
  stroke-dashoffset: 0;
}
.custom_radio_button:checked + label .radio_button_design::before {
  opacity: 0;
  transform: scale(3.5);
}
.custom_radio_button:checked + label .radio_button_design::after {
  transform: scale(0.55);
}
.display_flex_a_center{display: flex;align-items: center;}
.validate_error {
  border: 0.1rem solid #e57373 !important;
}
.validate_error::placeholder {
  color: #e31e26 !important;
}
.validate_error + .icon {
  color: #e57373 !important;
}

textarea.validate_error {
  border: 0.1rem solid #e57373 !important;
}

.input_file.validate_error + .input {
  border: 0.1rem solid #e57373 !important;
}
.input_file.validate_error + .input span {
  color: #e31e26 !important;
}

.validate_checkbox.validate_error {
  border: none !important;
}
.validate_checkbox.validate_error .checkbox + label::before {
  border: 0.1rem solid #e57373 !important;
}
.validate_checkbox.validate_error .custom_checkbox + label .checkbox_design {
  border: 0.1rem solid #e57373 !important;
}

.validate_radio.validate_error {
  border: none !important;
}
.validate_radio.validate_error .radio_button + label::before {
  border: 0.1rem solid #e57373 !important;
}
.validate_radio.validate_error .custom_radio_button + label .radio_button_design {
  border: 0.1rem solid #e57373 !important;
}

.button {display: inline-block;font: 500 1.5rem/3.8rem "Noto Sans", sans-serif;height: 4rem;min-width: 7.55em;padding: 0 2.5rem;color: #2b8cd6;background-color: transparent;border: 0.1rem solid #2b8cd6;border-radius: 0.4rem;text-align: center;white-space: nowrap;text-decoration: none;transition: 0.3s ease-out;cursor: pointer;user-select: none;appearance: none;text-transform: initial;}
.button.button_blue {color: #ffffff;background-color: #2b8cd6;border: 0.1rem solid #2b8cd6;}
.button.button_blue svg {fill: #ffffff;}
.button svg {display: inline-block;vertical-align: middle;fill: #2b8cd6;position: relative;top: -0.1rem;width: 1.5rem;height: 1.5rem;margin-right: 1rem;}
.button.button_only_svg {min-width: 1rem;}
.button.button_only_svg svg {margin: 0;}
.button.button_2 {padding: 0.55em 1em 0.45em;line-height: normal;height: auto;}
.button.catalog_button {padding: 0 1.6rem;max-width: 100%;width: 100%;}
.button.catalog_button svg {top: -0.1rem;margin-right: 1.4rem;}
.button.small {font-size: 1.3rem;height: 3.5rem;line-height: 3.3rem;}
.button.button_extra_small {font-size: 1.1rem;height: 2.5rem;line-height: 2.3rem;}
.button.large {font-size: 2rem;height: 5.5rem;line-height: 5.5rem;}
.button.light {color: #dbdad6;background-color: transparent;border-color: #dbdad6;}
.button.light svg {fill: #dbdad6;}
.button.light_2 {color: #2b8cd6;background-color: #ffffff;border-color: #ffffff;}
.button.dark {color: #ffffff;background-color: #dbdad6;border-color: #dbdad6;}
.button.button_success {color: #ffffff;background-color: #28a745;border-color: #28a745;}
.button.button_danger {color: #ffffff;background-color: #dc3545;border-color: #dc3545;}
.button.button_warning {color: #000000;background-color: #ffb92e;border-color: #ffb92e;}
.button.button_info {color: #ffffff;background-color: #119eb5;border-color: #119eb5;}
.button.button_disable {color: #000000;background-color: #cccccc;border-color: #cccccc;}
.button.button_default {color: #ffffff;background-color: #607487;border-color: #607487;}
.button span {display: inline-block;vertical-align: middle;position: relative;z-index: 3;}
.button.btn_icon {position: relative;overflow: hidden;}
.button.btn_icon svg {width: 1.8rem;height: 1.8rem;fill: #ffffff;position: absolute;left: 50%;transform: translate(-50%, -3rem);transition: 0.2s linear;margin-right: 0;}
.button.btn_icon span {color: #ffffff;display: block;transition: 0.2s linear;}
.button.button_wide {padding: 0.9rem 3rem 0.7rem;line-height: normal;white-space: normal;height: auto;}
.button.button_block {display: block;width: 100%;}
.btn_mobile {display: none;}
.aside_form_wrapper {margin: 0 0 2rem;}
.overlay {display: block;width: 100%;height: 100%;position: absolute;top: 0;left: 0;z-index: 1;background: rgba(0, 0, 0, 0.3);}

.overlay_dark {display: block;width: 100%;height: 100%;position: absolute;top: 0;left: 0;z-index: 1;background: rgba(0, 0, 0, 0.7);}

section, .section {padding: 4.5rem 0;}
.pagination {padding: 1rem 0;user-select: none;font-size: 0;margin: 2rem auto 0;}
.pagination li {display: inline-block;vertical-align: top;padding: 0;margin: 0.4rem;list-style: none;}
.pagination li.active a {background-color: #FF9800;color: #ffffff;pointer-events: none;}
.pagination li.pagination_arrow .icon {position: relative;top: -0.2rem;transform: rotate(-90deg);width: 2.4rem;height: 2.4rem}
.pagination li.pagination_arrow_prev .icon {transform: rotate(90deg);}
.pagination li a {font-size: 1.6rem;font-weight: 700;display: block;min-width: 3rem;height: 3rem;line-height: 3.2rem;padding: 0 0.5rem;background-color: #2b8cd6;color: #ffffff;text-align: center;transition: 0.3s linear;}

.social {display: flex;flex-wrap: wrap;gap: 1rem;font-size: 0;line-height: 0;}
.social .social_block {display: flex;flex-direction: column;align-items: center;justify-content: center;line-height: 0;gap: 0.5rem;}
.social .social_block .social_block_svg {border-radius: 50%;width: 3rem;aspect-ratio: 1/1;display: flex;align-items: center;justify-content: center;transition: .3s}
.social .social_block .social_block_name {font: 400 1rem/1 "Noto Sans", sans-serif;color: #dbdad6;transition: .3s}
.social .social_block .icon, .social .social_block img {width: 2rem;height: 2rem;transition: all 0.3s ease-in-out;color: #dbdad6;}

h1, .h1 {font: 500 4rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 1rem 0 2rem;text-transform: initial;}
h2, .h2 {font: 500 3rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 1rem 0 2rem;text-transform: initial;}
.title {font: 500 3rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 1rem 0 2rem;text-transform: initial;}
.sub_title {font: 500 2.4rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 1rem 0 2rem;text-transform: initial;}
h3, .h3 {font: 500 2.2rem/1.2 "Noto Sans", sans-serif;color: #000000;text-transform: initial; margin: 0 0 2rem}
h4, .h4 {font: 500 2rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 0;text-transform: initial;}
h5, .h5 {font: 500 1.8rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 0;text-transform: initial;}
h6, .h6 {font: 500 1.6rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 0;text-transform: initial;}

.content h1, .content .h1 {font: 500 4rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 1rem 0 2rem;text-transform: initial;}
.content h2, .content .h2, .content .title {font: 500 3rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 1rem 0 2rem;text-transform: initial;}
.content h3, .content .h3 {font: 500 2.2rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 1rem 0;text-transform: initial;}
.content h4, .content .h4 {font: 500 2rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 1rem 0;text-transform: initial;}
.content h5, .content .h5 {font: 500 1.8rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 1rem 0;text-transform: initial;}
.content h6, .content .h6 {font: 500 1.6rem/1.2 "Noto Sans", sans-serif;color: #000000;margin: 1rem 0;text-transform: initial;}
.content p {margin: 0 0 1rem;}
.content_m_l p {margin: 0 0 .5rem;}
.content ul {margin-bottom: 2rem;}
.content ul li {display: table;font: 400 1.4rem/1.5 "Noto Sans", sans-serif;color: #000000;padding: 0 0 0 1.6rem;margin: .4rem 0;position: relative;}
.content ul li p, .content ul li span {margin: 0;}
.content ul li::before {content: "";display: block;position: absolute;color: #2b8cd6;top: 0.5rem;left: 0.5rem;width: 0.5rem;height: 1rem;border-style: solid;border-width: 0 0.2rem 0.2rem 0;transform: rotate(40deg);}
.content ol {margin-bottom: 2rem;counter-reset: li;}
.content ol li {display: table;font: 400 1.4rem/1.5 "Noto Sans", sans-serif;color: #000000;padding: 0 0 0 2rem;margin: .4rem 0;overflow: hidden;}
.content ol li::before {margin-left: -2rem;counter-increment: li;content: counters(li, ".") ". ";color: #000000;font-weight: 700;}
.content blockquote {font: 400 1.4rem/1.5 "Noto Sans", sans-serif;padding: 0 0 0 1.5rem;margin: 0 0 3rem;clear: both;position: relative;}
.content blockquote::after {content: "";display: block;width: .5rem;top: 0;left: 0;height: 100%;position: absolute;background: #2b8cd6;}
.content a:not(.button) {display: inline-block;color: #2b8cd6;font-weight: 600;transition: 0.3s linear;}
.content a:not(.button):focus {color: #2b8cd6;}
.content img {height: auto !important;}
.content ul:last-child,
.content ol:last-child,
.content table:last-child,
.content img:last-child,
.content iframe:last-child,
.content p:last-child {margin-bottom: 0;}
.content iframe {width: 100%;height: 35rem;}
.content table ul li, .content table ol li {display: block;}
.content .content_table {width: 100%;}
.content .content_table th {text-align: left;font-weight: 700;color: #ffffff;}
.content .content_table th p {font-weight: 700;color: #ffffff;}
.content .content_table tr:nth-child(odd) {background-color: #f7f7f7;}
.content .content_table tr:first-child {background-color: #2b8cd6;}
.content .content_table th, .content .content_table td {padding: 1rem;}

p {font: 400 1.4rem/1.5 "Noto Sans", sans-serif;color: #000000;margin: 1rem 0;}

[data-modals] {cursor: pointer;}
.no_scroll {overflow: hidden;}
.hide_desktop {display: none !important;}
.hide_desktop_992_f{display: none !important;}
.hide_desktop_992_b{display: none !important;}
.map {padding: 0;background-color: #f3f7fb;overflow: hidden;}
.map #map, .map iframe {height: 40rem;width: 100%;max-width: 100%;}
.marker_info {text-align: center;}

.marker_info p {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0.2rem 0;
}

.marker_info .map_address {
  max-width: 23rem;
  margin: 0 auto;
}

.marker_info p a {
  color: #2b8cd6;
}

.img {
  display: block;
  width: 100%;
  max-width: 100%;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.page main {
  float: right;
  width: 70%;
}
.page aside {
  width: 25%;
  float: left;
}
.page.right_sidebar main {
  float: left;
  width: 70%;
}
.page.right_sidebar aside {
  width: 25%;
  float: right;
}

.header {position: absolute;top: 0;left: 0;width: 100%;z-index: 999;transition: 0.2s;background-color: #dfefff; padding:.5rem 0 0;}
.header .header_row {display: flex;flex-wrap: nowrap;align-items: center;gap: 2rem;}
.header .header_row_top {justify-content: space-between;margin-bottom: .5rem}
.header .header_right_top {display: flex;align-items: center;justify-content: flex-end;gap: 2rem; color: #000;}
.header .hidden_phone_item {position: absolute;width: 20.6rem;top: 100%;right: 0;z-index: 4;height: 0;opacity: 0;visibility: hidden;transition: opacity 0.1s;background-color: #ffffff;border-radius: 0.4rem; display: flex;flex-direction: column;gap: 1rem;padding: 1.5rem 2rem;}
.header .hidden_phone_item svg {color: #2b8cd6;}
.header .hidden_phone_item .svg_link {color: #5f5f5f; font-weight: 600;padding: .3rem 0}
.header .phones_wrap_button {position: relative;width: 1.8rem;height: 1.8rem;transform: rotate(0deg);fill: #9d9d9d;transition: .3s}
.header .phones_wrap {position: relative;display: flex;align-items: center;gap: .5rem;}
.header .phones_wrap.active .hidden_phone_item {height: auto;opacity: 1;visibility: visible;}
.header .phones_wrap.active .phones_wrap_button {transform: rotate(180deg);}
.header .header_logo {display: inline-block;position: relative;}
.header .header_logo img {width: 16.5rem;}
.header .top_menu {display: flex;justify-content: flex-end;align-items: center;}
.header_row_wrap_bottom{background: #2b8cd6; padding: 1.5rem 0;}
.header .social .social_block .social_block_svg{fill: #5f5f5f; }
.header .social .social_block .icon, .social .social_block img{ color: #5f5f5f}
.header .social .social_block .social_block_name{color: #5f5f5f; font-weight: 600;}

.header .phone_block {display: flex;}
.header .phone_block .phone {font-size: 3.2rem;line-height: 1;font-weight: 600;color: #000000;transition: 0.3s linear;}
.header .phone_block .phone .icon {width: 3.2rem;height: 3.2rem;color: #2b8cd6;transition: 0.3s linear;}
.header.fixed {position: fixed;animation: slide-down 0.7s;box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.2);padding: 1rem 0 0;}
.header.fixed .header_row_wrap_bottom {padding: 1.5rem 0 1rem;}
.header.fixed .header_logo img {width: 13rem;}
.header.fixed .top_menu {display: none;}
.header .header_row .search_wrap {position: relative;flex-grow: 1;}
.header .header_row .search_wrap .search_result {display: none;position: absolute;top: calc(100% - 4rem);left: 0;width: 100%;max-height: 32rem;overflow: auto;text-align: left;padding: 4.5rem 1.5rem 1rem;background-color: #ffffff;-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);z-index: 1;border-radius: 0.3rem 0.3rem 1.5rem 1.5rem;}
.header .header_row .search_wrap .search_result.active {display: block;}
.header .search_result .product_list a img {height: 3rem;width: 3rem;object-fit: cover;}
.header .search_result .product_list a picture {flex: 0 0 3rem;margin: 0 1rem 0 0;}
.header .search_result .product_list a .price {font-size: 1.4rem}
.header .header_row .search_wrap .search_result ul {margin: 0 0 1rem;}
.header .header_row .search_wrap .search_result ul li {margin-bottom: 1rem;}
.header .header_row .search_wrap .search_result ul li a {color: #757575;transition: 0.3s linear;}
.header .header_row .search_wrap .search_result ul li a .icon {margin-top: -0.5rem;margin-right: 0.5rem;}


.header .header_row .search_wrap .input {padding: 0 3.2rem;}
.header .header_row .search_wrap svg {position: absolute;top: 50%;left: 1rem;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);z-index: 2;height: 1.8rem;width: 1.8rem;color: #2b8cd6;}

.navigation.navigation_aside_main {display: none;position: relative;z-index: 6;width: 30rem;flex-shrink: 0;}

.home_page .navigation.navigation_aside_main {display: block;}

.hover_wrap .navigation.navigation_header{
  position: absolute;
  top: calc(100% + 1rem);
  left: 1rem;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 22rem);
  width: 30rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
  transform: translate3d(0, 1rem, 0);
  background-color: #ffffff;
  padding: 2rem 0;
  border-radius: 1.2rem;
  z-index: 10;
}
.navigation.navigation_header .header_nav > li.dr_down > a:not(.button)::after{right: 1rem;}
.hover_wrap .navigation.navigation_header .header_nav > li.button_bottom {
  padding: 1.5rem 2rem 0;
}
.hover_wrap {max-width: 20%;width: 100%;}

.hover_wrap.active .navigation.navigation_header{
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navigation .header_nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
}
.navigation .header_nav > li {
  display: block;
  width: 100%;
}
.navigation .header_nav > li > a:not(.button) {
  font: 400 1.6rem "Noto Sans", sans-serif;
  color: #000000;
  text-transform: initial;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  width: 100%;
  white-space: nowrap;
  margin: 0;
  padding: 1.4rem 0.8rem;
  position: relative;
  transition: 0.3s linear;
}
.navigation .header_nav > li.button_bottom {
  margin-top: auto;
  padding: 1.5rem 0 0;
}
.navigation .header_nav > li.button_bottom .button {
  max-width: 100%;
  width: 100%;
}
.navigation .header_nav > li.dr_down > a:not(.button) {
  padding: 1.4rem 3rem 1.4rem 0.8rem;
}
.navigation .header_nav > li.dr_down > a:not(.button)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  transition: all 0.3s;
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 24 24' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%23000000' fill-rule='evenodd' d='M5.293 8.293a1 1 0 0 0 0 1.414l6 6a1 1 0 0 0 1.414 0l6-6a1 1 0 0 0-1.414-1.414L12 13.586 6.707 8.293a1 1 0 0 0-1.414 0z' clip-rule='evenodd' opacity='1' data-original='%23000000'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0, -50%) rotate(-90deg);

}
.navigation .header_nav > li.header_btn {
  padding: 0 0 0 1rem;
}
.navigation .navigation_menu_img {
  width: 2.4rem;
  height: 2.4rem;
  transition: 0.3s;
}
.navigation .sub_menu {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: calc(100vw - 60rem);
  min-height: 100%;
  padding: 3.5rem 3.5rem 4rem;
  margin-left: 30rem;
  z-index: 1503;
  overflow-y: auto;
  height: 100%;
  background-color: #dfefff;
  border-top-right-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
}
.navigation .sub_menu a {transition: 0.3s;color: #000000;}
.navigation .sub_menu_title {
  font: 400 1.6rem "Noto Sans", sans-serif;
  color: #000000;
  text-transform: initial;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  width: 100%;
  white-space: nowrap;
  padding: 0;
  margin: 0.8rem 0;
  position: relative;
  transition: 0.3s linear;
}

.sub_menu_row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2rem 2.5rem;
  margin: 2rem 0 0;
}

.sub_menu_item {
  max-width: calc(33.3333333333% - 1.6666666667rem);
  width: 100%;
}
.sub_menu_item hr {
  margin: 1rem 0;
}
.sub_menu_item li {
  margin: 0.5rem 0;
}

.sub_menu_item_title {font-weight: 700;color: #000000;}

.navigation_btn {
  display: none;
  width: 4rem;
  height: 2.4rem;
  position: relative;
  overflow: visible;
  cursor: pointer;
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  z-index: 600;
}
.navigation_btn .hamburger_box {display: block;width: 4rem;height: 0.4rem;border-radius: 0.4rem;background-color: #dbdad6;position: absolute;left: 0;top: 50%;transform: translate(0, -50%);transition-property: transform;transition-duration: 0.075s;transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);}
.navigation_btn .hamburger_box::before, .navigation_btn .hamburger_box::after {content: "";display: block;width: 4rem;height: 0.4rem;border-radius: 0.4rem;background-color: #dbdad6;position: absolute;transition-property: transform;transition-duration: 0.15s;transition-timing-function: ease;}
.navigation_btn .hamburger_box::before {top: -1rem;transition: top 0.075s 0.12s ease, opacity 0.075s ease;}
.navigation_btn .hamburger_box::after {bottom: -1rem;transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);}
.navigation_btn.is_open .hamburger_box {transform: translate(0, -50%) rotate(45deg);transition-delay: 0.12s;transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);background-color: #FF9800;}
.navigation_btn.is_open .hamburger_box::before, .navigation_btn.is_open .hamburger_box::after {background-color: #FF9800;}
.navigation_btn.is_open .hamburger_box::before {top: 0;opacity: 0;transition: top 0.075s ease, opacity 0.075s 0.12s ease;}
.navigation_btn.is_open .hamburger_box::after {bottom: 0;transform: rotate(-90deg);transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);}
.navigation_btn p {display: block;font-size: 1.4rem;font-weight: 400;color: #2b8cd6;margin: 0;position: absolute;bottom: -2.5rem;left: 50%;transform: translate(-50%, 0);}
.mobile_phone {position: fixed;left: 0;right: 0;bottom: env(safe-area-inset-bottom);display: none;padding: 0.5rem 0;font: 700 2.5rem "Noto Sans", sans-serif;background-color: #2b8cd6;color: #ffffff;text-align: center;user-select: none;z-index: 300;}
.mobile_phone svg {width: 2.2rem;height: 2.2rem;}


@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .mobile_phone {
      bottom: 0;
    }
  }
}
.home_bar_space {position: fixed;left: 0;bottom: 0;display: none;width: 100%;height: env(safe-area-inset-bottom);background-color: #2b8cd6;z-index: 299;}

.dark_overlay.nav_opened::after {content: "";position: fixed;top: 0;left: 0;display: block;width: 100%;height: 100vh;background-color: #000000;opacity: 0.8;z-index: 2;}

.svg_link {font: 400 1.6rem/1 "Noto Sans", sans-serif;text-transform: capitalize;display: flex;align-items: center;justify-content: flex-start;gap: 0.8rem;color: #5f5f5f;transition: .3s;}
.svg_link svg {width: 2rem;height: 2rem;color: #5f5f5f;transition: .3s;}
.header_lincs {display: flex;align-items: center;justify-content: flex-end;gap: 2rem;position: relative;}
.header_linc {display: flex;align-items: center;justify-content: center;flex-direction: column;font: 400 1.1rem/1 "Noto Sans", sans-serif;color: #dbdad6;gap: 0.5rem;transition: .3s;position: relative;}
.header_linc svg {width: 2.2rem;height: 2.2rem;transition: .3s;}
.item_total_cart {position: absolute;display: none;top: -1rem;right: -0.5rem;min-width: 1.8rem;height: 1.8rem;line-height: 1.8rem;padding: 0 0.3rem;text-align: center;font-size: 1.2rem;font-weight: 700;color: #2b8cd6;background: #dbdad6;border-radius: 1.8rem;}
.item_total_cart.active {display: block;}
.cart_hover_inner_block{position: absolute;top: calc(100% + 1rem);right: -0.5rem;display: block;background-color: #dfefff;border-radius: 1.2rem;padding: 2.5rem 0;width: 29.2rem;opacity: 0;visibility: hidden;transition: all 0.3s ease-in-out;box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);transform: translate3d(0, 1rem, 0);}
.cart_hover_inner_block.active{opacity: 1;visibility: visible;transform: translate3d(0, 0, 0);}
.cart_hover_top{display: flex;align-items: center;justify-content: space-between;margin: 0 0 2rem;padding: 0 2rem}
.cart_hover_notification{padding: 0 2rem}
.cart_product_link{display: flex;align-items: flex-start;justify-content: flex-start; flex-direction: row;}
.cart_hover_center_product{margin: 0 0 1.5rem;}
.cart_hover_center_product:last-child{margin: 0;}
.cart_hover_inner_block:before{content: "";position: absolute;right: 1rem;bottom: 100%;display: block;border-bottom: 0.6rem solid #dfefff;border-left: 0.6rem solid transparent;border-right: 0.6rem solid transparent;}
.cart_products_img{max-width: 8rem;}
.cart_hover_center_products{max-height: 30rem;overflow-y: auto;padding: 0 1rem 0 2rem;}
.cart_product_dell{width: 1.9rem;height: 1.9rem;margin-left: auto;flex-shrink: 0;}
.cart_product_dell svg{width: 1.9rem;height: 1.9rem;}
.cart_products_name{font-size: 1.3rem;padding: 0 1rem 0 1.5rem}
.cart_product_bottom{margin: 1rem 0;display: flex;align-items: flex-end;justify-content: space-between;}
.cart_hover_bottom_flex{display: flex;align-items: flex-start;justify-content: space-between;margin: 1.5rem 0;width: 100%}
.cart_hover_bottom {padding:  0 2rem}
.cart_hover_bottom .button{margin: 0 0 1.5rem;}
.cart_hover_bottom_flex p{margin: 0;}
.cart_close{cursor: pointer;transition: .3s;}
.cart_product_number{margin: 0;font-weight: 600;}
.cart_products_img img{max-width: 100%;width: 100%; aspect-ratio: 1/1}
.main_top {position: relative;padding: 2rem 0;}
.main_top .main_top_row {display: flex;align-items: stretch;justify-content: flex-start;gap: 2.5rem;}
.main_top .top_slider_block {max-width: calc(100% - 32.5rem);width: 100%;}
.main_top .banner {background-position: center top;background-size: cover;background-repeat: no-repeat;width: 100%;max-width: 100%;position: relative;height: 50rem;z-index: 2;border-radius: 0.8rem;}
.main_top .top_slider.hidden_slider {opacity: 0;overflow: hidden;max-height: 50rem;}
.main_top .top_slider .slick-dots {bottom: 7rem;}
.product_sec_main_page {background-color: #f3f7fb;}



  /**/
.product_row {display: flex;flex-wrap: wrap;align-items: stretch;justify-content: flex-start;gap: 0.1rem;}
.product_item.product_item_product_page.slick-slide{max-width: 100%}
.product_item {width: 100%;background-color: #fff;padding: 1.6rem;position: relative;display: flex;flex-direction: column;border: 1px solid #e1e6ee;}
.product_item:first-child {border-top-left-radius: 1.2rem;}
.product_item.product_item_product_page:not(.slick-slide):nth-child(5) {border-top-right-radius: 1.2rem;}
.product_item.product_item_product_page {max-width: calc(20% - 0.1rem);}
.product_name {font-size: 1.4rem;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.product_name a{transition: .3s;}
.product_image {max-width: 100%;width: 100%;position: relative;display: block;z-index: 2;aspect-ratio: 1/1;overflow: hidden;}
.product_image img {position: absolute;top: 50%;left: 50%;-moz-transform: translate(-50%, -50%);-o-transform: translate(-50%, -50%);transform: translate(-50%, -50%);display: block;max-width: 90%;width: 100%;-o-object-fit: contain;object-fit: contain;font-family: "object-fit: contain;";transition: 0.3s;}
.product_item_top {display: flex;justify-content: space-between;align-items: center;font-size: 1.4rem;margin: 1rem 0;}
.product_item_top svg {width: 1.6rem;height: 1.6rem;transition: .3s;}
.product_item .product_item_top{flex-wrap: wrap;}
.product_item_bottom {display: none;position: absolute;top: calc(100% - 0.6rem);left: -0.1rem;width: calc(100% + 0.2rem);background-color: #ffffff;padding: 1.6rem;border-radius: 0 0 0.8rem 0.8rem;border-bottom: 1px solid #e1e6ee;border-right: 1px solid #e1e6ee;border-left: 1px solid #e1e6ee;margin-top: -0.9rem;z-index: 3}
.product_item_bottom hr {border-top: 1px solid #e1e6ee;margin: 1rem 0;}
.product_item_bottom .button {max-width: 100%;width: 100%;}
.product_item_bottom_content {overflow: hidden;max-height: 15rem;}
.product_item_bottom_content p {font-size: 1.4rem;line-height: 1;margin: 0 0 1rem;}
.product_item.slick-slide{min-height: 41.6rem;}
.product_item.active .product_image {display: none;}
.product_item.active .price_block {margin-top: 0;}
.product_item.active .product_item_bottom {top: 18.5rem;}
.product_item.active:not(.slick-slide) .product_item_bottom {top: 19.2rem;}
.product_item.active:not(.slick-slide) {min-height: 37.45rem;}
.product_item.active .product_item_bottom_content {overflow: auto;min-height: 42rem;height: 100%;max-height: 42rem;}
.product_item.active:not(.slick-slide) .product_item_bottom_content {overflow: auto;min-height: 35rem;height: 100%;max-height: 35rem;}
.product_item_review_box {display: flex;align-items: center;justify-content: flex-end;gap: 0.4rem;}
.item_left, .product_item_review {display: flex;align-items: center;justify-content: flex-end;gap: 0.4rem;}
a.product_item_review{transition: .3s}
.price_block {margin-top: auto;display: flex;flex-wrap: wrap; align-items: center;justify-content: space-between;gap: 2rem;}
.single_product .price_block {justify-content: flex-start;}
.single_product_buy_like{display: flex; gap: 2rem;align-items: center; justify-content: space-between;flex-grow: 1;}
.price {font-size: 1.8rem;font-weight: 600;margin: 0;line-height: 1}
.price small {font-size: 1.2rem;}
.price.price_old {color: #616e82;font-weight: 300;font-size: 1.3rem;}
.price.price_old .price_inner {text-decoration: line-through;}


.link_show_more {display: flex;align-items: center;justify-content: center;cursor: pointer;font-size: 1.5rem;gap: 0.8rem;transition: .3s;}
.link_show_more svg {width: 1.8rem;height: 1.8rem;transition: .3s;}

.underlined {
  position: relative;
  transition: all 0.3s;
}
.underlined:before {content: "";position: absolute;bottom: -0.1rem;left: 0;height: 0.1rem;width: 100%;background: #2b8cd6;transition: all 0.3s;}

.product_slider_main_page{z-index: 10;}


.product_slider_main_page.hidden_slider{opacity: 0;overflow: hidden;max-height: 41.3rem;}
.product_slider_main_page .product_item {margin: 0 .1rem;display: flex!important;flex-direction: column!important;height: auto!important;transition: .1s;opacity: 0;z-index: 5;max-width: 100%;}
.product_slider_main_page .product_item.slick-active{opacity: 1;}
.product_slider_main_page .product_item.first-visible{border-top-left-radius: 1.2rem;}
.product_slider_main_page .product_item.last-visible{border-top-right-radius: 1.2rem;}
.product_slider_main_page .slick-list {overflow: visible;}
.product_slider_main_page .slick-track{display: flex!important;}


.product_row_bottom {max-width: 100%;width: 100%;display: flex;align-items: center;justify-content: center;position: relative;padding: 1.5rem 1rem;background-color: #ffffff;border: 0.1rem solid #e1e6ee;border-top: none;border-bottom-right-radius: 1.2rem;border-bottom-left-radius: 1.2rem;margin: 0 auto;}
.product_row_bottom .slick-arrow{background-color: transparent;border: none;position: relative;top: unset;left: unset;right: unset;bottom: unset;transform: unset;}
.product_row_bottom .slick-arrow:after{width: 1rem;height: 1rem;border-color: #2b8cd6;}
.product_row_bottom.product_row_bottom4{max-width: calc(100%*4/5);}
.product_row_bottom.product_row_bottom3{max-width: calc(100%*3/5);}
.product_row_bottom.product_row_bottom2{max-width: calc(100%*2/5);}
.product_row_bottom.product_row_bottom1{max-width: calc(100%*1/5);}
.link_absolute {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translate(0, -50%);
}

.link_arrow {position: relative;padding-right: 3.5rem;transition: .3s;}
.link_arrow .icon {position: absolute;top: 0.2rem;right: 1rem;width: 1.6rem;height: 1.6rem;transition: all .3s;}

.pagination_items {display: flex;align-items: center;justify-content: center;gap: 2rem;min-width: 14rem;}

.pagination_items_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pagination_item svg {
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
}
.pagination_item.arrow_next svg {
  transform: rotate(-90deg);
}
.pagination_item.arrow_back svg {
  transform: rotate(90deg);
}

.now_visibled {
  font-weight: 800;
}

.product_badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  z-index: 5;
}

.product_badge {padding: 0 1rem;color: #fff;text-align: center;height: 2.4rem;line-height: 2.3rem;min-width: 4rem;font-size: 1.4rem;border-radius: 0.3rem;display: table;pointer-events: none;}
.product_badge_blue {background-color: #2b8cd6;}
.product_badge_green {background-color: #4caf50;}
.product_badge_orange {background-color: #ff9800;}
.product_badge_yellow {background-color: rgb(255, 242, 24);color: #333333;}
.product_badge_purple {background-color: #bc1dad;}
.product_badge_dark_red {background-color: #CA0101;}
.product_badge_red {background-color: red;}

.product_desired_block{cursor: pointer;}
.product_desired_block svg {width: 1.6rem;height: 1.6rem;display: none;}
.product_desired_block svg.non_added{display: block;}
.product_desired_block.active svg.non_added{display: none;}
.product_desired_block.active svg.added{display: block;}




.cta1 {
  background-color: #f3f7fb;
  padding: 1rem 0;
}
.cta1 .modal_title {
  display: none;
}
.cta1 .cta1_row {
  border-radius: 1.2rem;
  background-color: #ffffff;
  padding: 3rem 2rem;
}
.cta1 .form_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem 2rem;
}
.cta1 .form_item {max-width: calc(33.3333333333% - 2rem*2/3);width: 100%;margin: 0;}

.label_input_icon {
  position: relative;
}
.label_input_icon .input {
  padding-right: 3rem;
}

.show_password {
  display: block;
  width: 2rem;
  height: 1.3rem;
  position: absolute;
  bottom: 1.1rem;
  right: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.show_password svg {
  position: static;
  width: 2.2rem;
  height: 1.5rem;
  fill: #dbdad6;
}

.show_password.showing svg {
  fill: #2b8cd6;
}

.gift_form .form_wrap {
  max-width: 50rem;
  width: 100%;
  margin: 3rem auto 0;
}
.gift_form .filter_list {
  margin: 0 0 1.5rem;
}
.gift_form .filter_list li.active a {
  font-weight: 700;
}
.gift_form .filter_list li a {
  font-size: 1.4rem;
  padding: 0.2rem 0;
  display: inline-block;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.gift_form .amounts {
  margin-bottom: 2rem;
  font-size: 0;
}
.gift_form .amounts span {
  display: inline-block;
  vertical-align: middle;
  color: #9d9d9d;
  font-size: 1.4rem;
}
.gift_form .amounts label {
  margin: 0 0.5rem;
  display: inline-block;
  vertical-align: middle;
}
.gift_form .amounts label input {
  height: 3rem;
  max-width: 11rem;
  padding: 0 0.2rem;
}
.gift_form .ui-slider-horizontal .ui-slider-range {
  background-color: #2b8cd6;
}

.gift_img_modal {
  max-width: 30rem;
  width: 100%;
  height: 100%;
  max-height: 30rem;
  margin: 0 auto;
  display: block;
  color: #2b8cd6;
}

.catalog_sec {
  background-color: #f3f7fb;
  padding-top: 1rem;
}

.catalog_row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.2rem;
  position: relative;
  z-index: 2;
}

.catalog_item {
  max-width: calc(20% - 0.2rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #fff;
}
.catalog_item li{margin: 0 0 .5rem;}
.catalog_item li a{font-weight: 300}
.catalog_img {
  max-width: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 25%;
}

.catalog_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%,-50%) scale(1);
  -o-transform: translate(-50%,-50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  display: block;
  object-fit: contain;
  max-width: 100%;
  width: 100%;
  height: 100%;
  transition: all .3s;
}

.catalog_item_name {margin: 1rem 0;}
.catalog_item_name a {transition: 0.3s;display: flex;align-items: flex-start;justify-content: flex-start;gap: .5rem;}
.catalog_item_name_img{width: 2.4rem;height: 2.4rem;}
.catalog_item_name_image img{ max-width: 100%;width: 100%;object-fit: contain;}
.catalog_item_bottom{margin-top: auto; display: inline-block; padding-top: 2rem}

.breadcrumbs_sec {background-color: #f3f7fb;padding: 1rem 0 0.5rem;}
.breadcrumbs {padding: 0.5rem 1rem;font-size: 0;}
.breadcrumbs li {display: inline-block;font-size: 1.4rem;position: relative;padding-left: 2.5rem;cursor: pointer;}
.breadcrumbs li:first-child {padding-left: 0;}
.breadcrumbs li + li::before {padding: 0 0.5rem 0 0.9rem;content: "";position: absolute;top: 50%;left: .5rem;display: block;transition: all 0.3s;z-index: 3;width: 1.6rem;height: 1.6rem;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 24 24' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%23000000' fill-rule='evenodd' d='M5.293 8.293a1 1 0 0 0 0 1.414l6 6a1 1 0 0 0 1.414 0l6-6a1 1 0 0 0-1.414-1.414L12 13.586 6.707 8.293a1 1 0 0 0-1.414 0z' clip-rule='evenodd' opacity='1' data-original='%23000000'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");background-size: contain;background-repeat: no-repeat;background-position: center;transform: translate(0, -50%) rotate(-90deg);}
.breadcrumbs li a {color: #000000;text-decoration: none;}
.breadcrumbs li a svg {width: 1.6rem;height: 1.6rem;transition: 0.3s;}
.breadcrumbs li:last-child, .breadcrumbs li:last-child a {pointer-events: none;cursor: initial;}
.dialog .flex_buttons {display: flex;align-items: center;flex-direction: column;justify-content: space-between;margin: 2rem 0 0;gap: 1rem;}
.dialog .flex_buttons .button {max-width: 100%;width: 100%;}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.cart_icon {
  position: relative;
  display: inline-block;
}
.cart_icon .icon {
  width: 3rem;
  height: 3rem;
  color: #2b8cd6;
}
.cart_icon .cart_qty {
  position: absolute;
  top: -0.8rem;
  right: -1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  height: 2rem;
  line-height: 1.9rem;
  border-radius: 2rem;
  text-align: center;
  white-space: nowrap;
  padding: 0 0.6rem;
  background-color: #2b8cd6;
  color: #ffffff;
  z-index: 3;
}

.products_section {
  background-color: #f3f7fb;
  padding-top: 1rem;
}
.products_section aside {
  width: 28rem;
  float: left;
  margin-right: 4rem;
  padding: 1.5rem;
  border-radius: 1.2rem;
  background-color: #ffffff;
  position: relative;
  z-index: 5;
}
.products_section aside .filter_item {
  margin: 0 0 1rem;
  border-bottom: 0.1rem solid #f5f5f5;
  transition: 0.4s;
}
.products_section aside .filter_item .select_after{
  margin: 0 0 1.5rem;
}
.products_section aside .filter_item .filter_heading.active {
  margin: 0 0 1rem;
}
.products_section aside .filter_item .filter_heading.active::after {
  top: 0.9rem;
  transform: rotate(-135deg);
  transition: 0.4s;
}
.products_section aside .filter_button_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0;
}
.products_section aside .filter_button_flex .button {
  padding: 0 1rem;
}
.products_section aside .filter_heading {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  text-transform: initial;
  color: #2b8cd6;
  position: relative;
  cursor: pointer;
}
.products_section aside .filter_heading::after {
  content: "";
  position: absolute;
  top: 0.1rem;
  right: 0;
  display: inline-block;
  width: .8rem;
  height: .8rem;
  border-style: solid;
  border-width: 0 0.1rem 0.1rem 0;
  transform: rotate(45deg);
  transition: 0.4s;
}
.products_section aside .filter_list {
  margin: 0 0 1rem;
}
.products_section aside .filter_list li.active a {
  font-weight: 700;
}
.products_section aside .filter_list li {display: flex;align-items: center;gap: .4rem;}
.products_section aside .filter_list li a {
  font-size: 1.4rem;
  padding: 0.2rem 0;
  display: inline-block;
  transition: all 0.3s linear;
}
.products_section aside .filter_list li label{margin: 0.1rem 0;}
.products_section aside .amounts {
  margin-bottom: 2rem;
  font-size: 0;
}
.products_section aside .amounts span {
  display: inline-block;
  vertical-align: middle;
  color: #9d9d9d;
  font-size: 1.4rem;
}
.products_section aside .amounts label {
  margin: 0 0.5rem;
  display: inline-block;
  vertical-align: middle;
}
.products_section aside .amounts label input {
  height: 3rem;
  max-width: 9.1rem;
  padding: 0 0.2rem;
}
.products_section main {
  float: left;
  width: calc(100% - 32rem);
  position: relative;
  z-index: 5;
}
.products_section .ui-state-default, .products_section .ui-widget-content .ui-state-default, .products_section .ui-widget-header .ui-state-default {
  border: none;
  width: 1.5rem;
  height: 1.5rem;
  top: -0.6rem;
  cursor: pointer;
  background-color: #2b8cd6;
  border-radius: 50%;
}
.products_section .ui-widget-content {
  background: #ffffff;
  border: 0.1rem solid #2b8cd6;
  height: 0.4rem;
  max-width: calc(100% - 1.2rem);
  left: 0.6rem;
  margin: 0 0 2rem;
}
.products_section .ui-slider-horizontal .ui-slider-range {
  background-color: #2b8cd6;
}

.value_buttons_wrap {
  font-size: 0;
  display: inline-block;
  vertical-align: top;
  border: 0.1rem solid #efefef;
}
.value_buttons_wrap .value_button {
  display: inline-block;
  vertical-align: top;
  width: 2.5rem;
  height: 4rem;
  line-height: 4rem;
  transition: all 0.3s;
  font-size: 2.5rem;
  text-align: center;
  color: #b5b5b5;
  background: #efefef;
  user-select: none;
  cursor: pointer;
}
.value_buttons_wrap .input {
  text-align: center;
  display: inline-block;
  vertical-align: top;
  border: none;
  margin: 0;
  width: 5.9rem;
  height: 4rem;
  font-size: 1.6rem;
  color: #000;
  padding: 0 0.5rem;
  border-radius: 0;
}
.value_buttons_wrap .input:focus, .value_buttons_wrap .input:active {
  box-shadow: none;
}

.filter_btn {display: none;position: fixed;left: 0;top: 50%;background-color: #2b8cd6;z-index: 15;padding: 1rem 1rem;border-radius: 0 1.5rem 1.5rem 0;font-size: 0;cursor: pointer;}
.filter_btn.active {display: none;}
.filter_btn .icon {display: inline-block;vertical-align: middle;margin: 0 1rem 0 0;width: 2rem;height: 2rem;color: #ffffff;}
.filter_btn span {color: #ffffff;display: inline-block;vertical-align: middle;font-size: 1.6rem;}
.overlay_bg::after {content: "";display: none;width: 100%;height: 100vh;background: #000;opacity: 0.8;position: fixed;top: 0;left: 0;z-index: 1001;}
.overlay_bg.visible::after {display: block;}

.aside_close {display: none;position: absolute;top: 0.5rem;right: 1rem;}
.aside_close .icon {width: 1.6rem;height: 1.6rem;}

.aside_buttons_mobile {position: fixed;left: calc(-100% - 1.5rem);bottom: 0;width: 29rem;background-color: #ffffff;text-align: center;padding: 1rem 0;font-size: 0;transition: 0.3s;}

/* modal cart add */
body.dialog_opened > *:not(.dialog_wrapper):not(.toast_notifications):not(.fancybox-container) {filter: blur(1.5rem);}
.modal_cart_add {
  padding: 2rem 2.5rem 3rem;
}

.modal_cart_add_content .desc_wrap {
  font-size: 0;
  margin: 0 0 2rem;
}
.modal_cart_add_content .desc_wrap p {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
  color: #2b8cd6;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  width: calc(100% - 11.5rem);
}
.modal_cart_add_content .img_wrap {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  padding-top: 10rem;
  width: 10rem;
  margin: 0 1.5rem 0 0;
}
.modal_cart_add_content .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain;";
}
.modal_cart_add_content .modal_btns {
  font-size: 0;
}
.modal_cart_add_content .modal_btns .button {
  width: 19rem;
}
.modal_cart_add_content .modal_btns .button:first-child {
  margin: 0 1rem 0 0;
}

.single_product_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1.5rem;
}

.single_product_wrapper .single_product {
  width: -webkit-calc(100% / 2 - 3rem);
  width: -moz-calc(100% / 2 - 3rem);
  width: calc(50% - 3rem);
  margin: 0 1.5rem;
}

.single_product_wrapper .desc_block h1, .single_product_wrapper .desc_block .h1 {font-size: 3rem;line-height: 1.2;font-weight: 700;margin: 0 0 1.5rem;}
.single_product_wrapper .desc_block .сode_product{color: #5f5f5f;margin-top: 0;}

.single_product_wrapper .desc_block .prices_block {
  font-size: 0;
  margin: 0 0 1.5rem;

}

.single_product_wrapper .desc_block .price {
  color: #2b8cd6;
  font-size: 2.8rem;
  line-height: 1;
}
.single_product_wrapper .desc_block .price.price_old {
  color: #000000;
  font-size: 1.6rem;
}


.single_product_wrapper .desc_block .buttons_wrap {font-size: 0;margin: 0;}

.single_product_wrapper .desc_block .buttons_wrap .value_buttons_wrap {margin: 0 2rem 0 0;}

.single_product_wrapper .desc_block .product_item_top {
  font-size: 1.6rem;
  margin: 1rem 0;
}

.single_product_wrapper .desc_block .product_short_description {
  margin: 1rem 0 0;
}

.single_product_wrapper .desc_block .product_short_description .content {
  margin: 1rem 0 2rem;
}

.single_product_wrapper .desc_block .product_item_top svg {
  width: 2rem;
  height: 2rem;
}

.single_product_wrapper .desc_block .item_left {
  gap: 0.8rem;
}

.single_product_wrapper .review_form textarea.input {
  margin: 0 0 1rem;
}

.single_product_wrapper .review_form .rating_wrap p {
  text-align: center;
  margin: 0.4rem 0 0.5rem;
}

.single_product_wrapper .product_tabs h3 {
  font-size: 2.4rem;
  color: #2b8cd6;
  font-weight: 700;
  margin: 0 0 1.2rem;
}

.product_slider {margin: 0 0 2rem;}

.product_slider .slick-slide{opacity:0!important; display: flex;align-items: center; height: auto!important;}
.product_slider .slick-slide.slick-active{opacity:1!important}
.product_slider .slick-track {display: flex;}
.product_slider.hidden_slider {
  opacity: 0;
  overflow: hidden;
  max-height: 46rem;
}
.xzoom-gallery{
  border: none;
  margin-left: 0;
  margin-bottom: 0;
}


.product_slider .slider_item {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 0;
  max-width: 100%;
  width: 100%;
  padding-top: 60%;
  position: relative;
}


.product_slider .slider_item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product_slider_nav.hidden_slider {
  opacity: 0;
  overflow: hidden;
  max-height: 10rem;
}

.product_slider_nav .slick-current .slider_item {
  border: 0.1rem solid #2b8cd6;
}
.product_slider_nav .slick-arrow{top: -120%;transform: none;}

.product_slider_nav .slider_item {
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 9rem;
  max-width: 90%;
  margin: 0 auto;
  border: 0.1rem solid transparent;
  overflow: hidden;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  transition: 0.3s linear;
  border-radius: 0.4rem;
}

.product_slider_nav .slider_item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  padding: 0.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.mobile_product_desc {border-radius: 1.2rem;background-color: #dfefff;padding: 2rem;}

.button_add_favorive {display: flex;align-items: center;justify-content: flex-start;gap: 1rem;cursor: pointer;color: #2b8cd6;transition: .3s;margin-left: auto}
.button_add_favorive svg {width: 2rem;height: 2rem;transition: .3s;display: none}
.button_add_favorive svg.non_added {display: block;}
.button_add_favorive.active svg.added {display: block;}
.button_add_favorive.active svg.non_added {display: none;}

.product_favorite_block.active .hide_if_active {display: none;}
.product_favorite_block:not(.active) .show_if_active {display: none;}

.single_product_section2 {background-color: #f3f7fb;}

.product_tab_lists {display: flex;align-items: center;justify-content: flex-start;border-radius: 1.2rem;background-color: #dfefff;overflow: hidden;margin: 0 0 3rem;}

.product_tab_list {max-width: 100%;width: 100%;text-align: center;padding: 1rem;cursor: pointer;color: #000000;font-weight: 500;transition: .3s;flex-shrink: 1;}
.product_tab_list.active {background-color: #2b8cd6;color: #ffffff;pointer-events: none;}
.container_of_tabs {border-radius: 1.2rem;background-color: #ffffff;padding: 2rem;}
.container_of_tabs .product_tabs_content {display: none;}
.product_tabs_content h2 .icon, .product_tabs_content .h2 .icon{fill: #2b8cd6;position: relative;top: -.5rem;}
.container_of_tabs .product_tabs_content > p {margin: 0 0 2rem;}
.container_of_tabs .product_tabs_content.active {display: block;}
.container_of_tabs .content{margin: .5rem 0 2.5rem;}
.container_of_tabs .content:last-child{margin: .5rem 0 0;}
.xzoom{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}
.xactive{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border:none}
.z_index_column{position:relative;z-index:0}


/* Rating */
.rating {display: block;width: 15rem;margin: 0 auto;}
.rating.validate_radio.validate_error input[type=radio] + label::before {border: none !important;color: #e57373;}
.rating.validate_radio.validate_error input[type=radio]:checked ~ label::before {color: #f1cd06;}
.rating input[type=radio] + label {float: right;position: relative;width: 3rem;height: 3rem;cursor: pointer;padding-left: 0;display: inline-block;margin-right: 0;margin-bottom: 0;-webkit-border-radius: unset;-moz-border-radius: unset;border-radius: unset;}
.rating input[type=radio] + label:not(:first-of-type) {padding-right: 0.2rem;}
.rating input[type=radio] + label::before {content: "★";font-size: 2.7rem;color: #ccc;line-height: 1;position: static;left: unset;top: unset;right: unset;width: 2rem;height: 2rem;border: none;background: #fff;-webkit-border-radius: unset;-moz-border-radius: unset;border-radius: unset;-webkit-transition: none;-o-transition: none;-moz-transition: none;transition: none;transition: .3s}
.rating input[type=radio] + label::after {display: none !important;}
.rating input {display: none;}
.rating input[type=radio]:checked ~ label::before {color: #f1cd06;background-color: transparent;border: none;}

.reviews_row{display: flex;align-items: flex-start;justify-content: flex-start;gap: 2rem 4rem;}
.reviews_added{flex-grow: 1;}
.reviews_form_box{max-width: 35%;width: 100%;padding: 1rem 2rem;border-radius: 1.2rem;display: flex;}
.reviews_form_box > .button{margin: 0 auto;}
.reviews_form_box_bordered{border: .1rem solid #d5d5d5;display: block;}
.reviews_added_row_top{display: flex;align-items: center;justify-content: space-between;gap: 2rem 4rem; background-color: #FF9800;border-radius: 2.4rem; padding: 4.5rem 3rem;}
.reviews_added_row_top p{margin: 0;}
.reviews_added_item_top{display: flex;flex-wrap: wrap;align-items: center;justify-content: space-between;gap: 1rem 2rem;margin: 0 0 1rem;}
.reviews_added_item_top p{margin: 0;}
.stars{display: flex;align-items: center;justify-content: flex-start;gap: 0;}
.stars svg{width: 1.4rem; height: 1.4rem; color: #FF9800}
.reviews_added_item_top_right{display: flex;align-items: center;gap: 1rem;}
.review_time{font-size: 1.2rem;color: #8289a3;}
.reviewers_name{font-weight: 700;}
.reviews_added_row{max-width: 100%;width: 100%;display: flex;flex-direction: column;}
.reviews_added_item{max-width: 100%;width: 100%;padding: 1rem 1rem; border-bottom: .1rem solid #d5d5d5}
.reviews_added_item:last-child{border-bottom: none}
.reviews_added_item_plus{margin: 2rem 0;}
.reviews_added_item_minus{margin: 2rem 0 0;}
.reviews_added_item_plus > p,.reviews_added_item_minus > p{margin: 0 0 .5rem;font-weight: 700}
.toc {margin: 1rem 0;}
.grid_characteristics {display: flex;flex-wrap: wrap;align-items: flex-start;justify-content: flex-start;gap: 0 4rem;}
.grid_characteristic{max-width: calc(50% - 2rem);width: 100%;}
.grid_characteristic .characteristic_name{font-weight: 700;margin: 1.5rem 0 1rem}
.toc-item {display: flex;flex-wrap: wrap; align-items: center;white-space: nowrap;margin: 0 0 1rem;max-width: 100%;}
.toc_title {padding-right: .5rem;max-width: 100%;white-space: normal;}
.toc .dots {flex: 1;border-bottom: 1px dashed #c0d6eb;height: 1rem;overflow: hidden;min-width: 5rem;}
.product_characteristic {padding-left: .5rem;max-width: 100%;white-space: normal;}
.tot_right{display: flex;align-items: center;justify-content: flex-end;gap: 0;flex-grow: 1;}

.contact_us_section{background-color: #f3f7fb; overflow: hidden;}
.contact_us_section h3, .contact_us_section .h3 {margin-top: 0;}
.contacts_row{display: flex;align-items: flex-start;justify-content: flex-start;gap: 2rem 3rem;}
.contacts_form{max-width: 50%;width: 100%;background-color: #ffffff;border-radius: 1.2rem;padding: 2rem;}
.contacts_desc{max-width: 50%;width: 100%;padding-top: 2rem}
.contacts_desc .social .social_block .icon, .social .social_block .contacts_desc img {color: #000000;}
.contact_us_section address {display: flex;flex-direction: column;margin: 2rem 0 2rem;}
.contact_us_section address p{font-size: 2rem;}
.contact_us_section address a:not(.button) {display:inline-block;position: relative;font-style: initial;font-size: 1.8rem;line-height: 1.2;font-weight: 500;color: #000000;transition: 0.3s linear;padding: 0 1rem 0 2.5rem;margin-bottom: 1rem;}
.contact_us_section address a:not(.button):last-child{margin-bottom: 0;}
.contact_us_section address a:not(.button) svg {position: absolute;color: #2b8cd6;left: 0;top: 0.1rem;display: inline-block;}
.contact_us_section form .modal_title {display: none;}
.sticky_block {position: sticky;top: 15rem;}

.page_404 {display: flex;flex-direction: column;min-height: 100vh;}
.page_404 .block_404 {flex-grow: 1;display: flex;align-items: center;}
.page_404 .block_404_content {display: flex;flex-direction: column;align-items: center;justify-content: center;text-align: center;}
.page_404 .block_404_content h1, .page_404 .block_404_content .h1 {color: #2b8cd6;font-size: 4rem;font-weight: 700;text-transform: uppercase;}
.page_404 .block_404_content h1 span, .page_404 .block_404_content .h1 span {color: #dbdad6;display: block;font-size: 18rem;line-height: 1;}
.page_404 footer {flex-shrink: 0;}

footer {padding: 4rem 0 0;background: #1a6ba9;position: relative;z-index: 3;overflow: hidden;}
footer .footer_title {font-size: 2rem;font-weight: 700;color: #dbdad6;margin: 0 0 1.5rem;text-transform: capitalize;}
footer .footer_row {display: grid;grid-template-columns: calc(20% - 5rem*2/3) calc(40% - 5rem*2/3) calc(40% - 5rem*2/3);justify-content: space-between;gap: 2rem 5rem;}
footer .footer_sub_col {margin: 0 0 2rem;}
footer .footer_sub_col:last-child {margin: 0;}
footer .footer_location {display: flex;flex-direction: column;gap: 1rem;}
footer .footer_location p {margin: 0;}
footer .footer_location a {position: relative;padding-left: 2.5rem;}
footer .footer_location a svg {position: absolute;top: 0.2rem;left: 0;width: 1.6rem;height: 1.6rem;}
footer p {display: block;color: #dbdad6;font: 400 1.6rem/1.4 "Noto Sans", sans-serif;margin: 1rem 0;}
footer a {display: inline-block;font: 400 1.4rem/1.4 "Noto Sans", sans-serif;color: #dbdad6;transition: 0.3s linear;}
footer br {display: none;}
footer ul {position: relative;top: -0.5rem;}
footer ul li a {position: relative;padding: 0 0 0 2rem;margin: 0.5rem 0;}
footer ul li a::before {content: "";position: absolute;top: 50%;left: 0;transform: translate(0, -50%) rotate(-45deg);transition: 0.3s linear;width: 0.7rem;height: 0.7rem;border-style: solid;border-width: 0 0.2rem 0.2rem 0;}
footer .footer_logo{max-width: 24rem;width: 100%;}
footer .footer_logo .logo{max-width: 100%;width: 100%;}
.footer_bottom {padding: 1.7rem 0 1.5rem;margin: 2rem 0 0;border-top: 0.1rem solid #ffffff;position: relative;z-index: 3;}
.footer_bottom p, .footer_bottom a {font: 500 1.3rem/1.4 "Noto Sans", sans-serif;color: #dbdad6;}
.footer_bottom p {margin: 0;}
.footer_bottom a {transition: 0.3s linear;}
.footer_bottom_row {display: flex;align-items: center;justify-content: space-between;gap: .5rem 1.5rem;}

body.body_cart, body.body_search {display: flex;flex-direction: column;min-height: 100vh;}
.emptyCart {margin: 6rem 0;text-align: center;}
.emptyCart .img_cart {margin: 0 auto 2.5rem;text-align: center;width: 22rem;display: block}
.emptyCart .img_cart img {max-width: 100%;width: 100%;object-fit: cover;}
.cart{flex: 1;}
.body_cart footer{flex-shrink: 0;}
.cart .cart_wrap{-webkit-box-align:start;-webkit-align-items:flex-start;-moz-box-align:start;-ms-flex-align:start;align-items:flex-start}
.cart .cart_block{display:inline-block;vertical-align:middle}
.cart .cart_header{font-size:0;padding:1rem 0;text-align:center;border-bottom:.1rem solid #dbdbdb}
.cart .cart_header h4{font-size:1.4rem;line-height:1.2;font-weight:700;text-transform:uppercase;margin:0;color:#919191}
.cart .cart_product_name{width:45%;text-align:left}
.cart .cart_unit_price{width:15%}
.cart .cart_qty{width:20%}
.cart .cart_subtotal{width:15%}
.cart .cart_remove{width:5%}
.cart .cart_item{font-size:0;text-align:center;padding:1rem 0;border-bottom:.1rem solid #dbdbdb;position:relative}
.cart .cart_item p{font-size:1.4rem;line-height:1.2;margin:0}
.cart .cart_item_desc{width:45%;font-size:0;text-align:left}
.cart .cart_item_desc .img_wrap{margin:0 1.5rem 0 0}
.cart .cart_item_desc .img_wrap img{width:8rem;height:8rem;-o-object-fit:contain;object-fit:contain;font-family:'object-fit: contain;';-webkit-transition:.3s linear;-o-transition:.3s linear;-moz-transition:.3s linear;transition:.3s linear}
.cart .cart_item_desc .cart_item_heading{width:-webkit-calc(100% - 11.5rem);width:-moz-calc(100% - 11.5rem);width:calc(100% - 11.5rem)}
.cart .cart_item_desc .cart_item_heading a{-webkit-transition:.3s linear;-o-transition:.3s linear;-moz-transition:.3s linear;transition:.3s linear}
.cart .cart_item_price{width:15%}
.cart .cart_item_qty{width:20%}
.cart .cart_item_qty .value_buttons_wrap .value_button{height:3rem;line-height:3.1rem;font-size:2rem}
.cart .cart_item_qty .value_buttons_wrap .value_button.decrease{line-height:2.9rem}
.cart .cart_item_qty .value_buttons_wrap .input{width:5rem;height:3rem;font-size:1.4rem}
.cart .cart_item_qty .value_buttons_wrap .input::-webkit-input-placeholder{font-size:1.4rem}
.cart .cart_item_qty .value_buttons_wrap .input:-moz-placeholder{font-size:1.4rem}
.cart .cart_item_qty .value_buttons_wrap .input::-moz-placeholder{font-size:1.4rem}
.cart .cart_item_qty .value_buttons_wrap .input:-ms-input-placeholder{font-size:1.4rem}
.cart .cart_item_qty .value_buttons_wrap .input::-ms-input-placeholder{font-size:1.4rem}
.cart .cart_item_qty .value_buttons_wrap .input::placeholder{font-size:1.4rem}
.cart .cart_item_subtotal{width:15%}
.cart .product_remove{width:5%}
.cart .product_remove .icon{width:1.4rem;height:1.4rem;color:#3d3d3d;cursor:pointer;-webkit-transition:.3s;-o-transition:.3s;-moz-transition:.3s;transition:.3s}

.cart_totals_wrap {max-width: 100%;width: 100%; padding: 1.2rem 0 1.5rem 1.5rem;margin: 0;border-radius: 0;border-bottom: 0.1rem solid #f5f5f5;display: flex;justify-content: end;}
.cart_totals_wrap p {text-align: end;margin: 0 0 1rem;}
.cart_totals_wrap .buttons {display: flex;flex-wrap: wrap;gap: 1rem 2.5rem;justify-content: end;}
.cart_totals_wrap .buttons.buttons_small_d {gap: .5rem 1rem;}
.cart_totals_wrap.cart_totals_wrap_success{border-bottom: none;}

.checkout .checkout_wrap{-webkit-box-align:start;-webkit-align-items:flex-start;-moz-box-align:start;-ms-flex-align:start;align-items:flex-start}
.checkout .checkout_header{font-size:0;position:relative;text-align:justify;padding:1rem 0;border-bottom:.1rem solid #f5f5f5;margin: 0 0 1rem;}
.checkout .checkout_header.checkout_header_first{padding:0 0 1rem}
.checkout .input{height: 3.5rem;}
.checkout .checkout_header.checkout_header_order{padding:.5rem 0 1rem}
.checkout .checkout_header.checkout_header_success{padding:1.6rem 0 1.6rem}
.checkout .checkout_header::after{content:'';display:inline-block;width:100%}
.checkout .checkout_title{display:inline-block;vertical-align:middle;width:55%}
.checkout .checkout_title span{font-size:1.8rem;font-weight:700;color:#fff;background-color:#2b8cd6;padding:0 .8rem;margin:0 1rem 0 0;display:inline-block;vertical-align:middle}
.checkout .checkout_title h2{display:inline-block;vertical-align:middle;font-size:2rem;line-height:1;font-weight:700;margin:0;color:#2b8cd6;text-align:left}
.checkout .checkout_row{position:relative}
.checkout_row .form_item{margin: 0 0 1rem;}
.checkout .checkout_row:last-child::after{display:none}
.checkout .checkout_row::after{content:'';position:absolute;bottom:0;left:1.5rem;display:block;width:-webkit-calc(100% - 3rem);width:-moz-calc(100% - 3rem);width:calc(100% - 3rem);height:.1rem;background-color:#f5f5f5}
.checkout .order_wrap{margin:0 0 2rem}
.checkout .checkout_order_item{padding:1rem 0;font-size:0;border-bottom:.1rem solid #f5f5f5}
.checkout .checkout_order_item .img_wrap{display:inline-block;vertical-align:middle;position:relative;width:8rem;margin:0 1rem 0 0}
.checkout .checkout_order_item .img_wrap img{width:8rem;height:8rem;-o-object-fit:contain;object-fit:contain;font-family:'object-fit: contain;';-webkit-transition:.3s linear;-o-transition:.3s linear;-moz-transition:.3s linear;transition:.3s linear}
.checkout .checkout_order_item .img_wrap .qty{position:absolute;top: -.5rem;right: -.5rem;font-size:1.4rem;font-weight:500;height:2rem;line-height:2rem;-webkit-border-radius:2rem;-moz-border-radius:2rem;border-radius:2rem;text-align:center;white-space:nowrap;padding:0 .6rem;background-color:#2b8cd6;color:#fff;z-index:3}
.checkout .checkout_order_item .checkout_order_desc{display:inline-block;vertical-align:middle;width:-webkit-calc(100% - 9rem);width:-moz-calc(100% - 9rem);width:calc(100% - 9rem)}
.checkout .checkout_order_item .checkout_order_desc p{font-size:1.4rem;line-height:1.3;margin:0}
.checkout .checkout_order_item .checkout_order_name{display:inline-block;vertical-align:middle;width:70%;margin:0 1rem 0 0}
.checkout .checkout_order_item .checkout_order_price{display:inline-block;vertical-align:middle;text-align:right;width:-webkit-calc(30% - 1rem);width:-moz-calc(30% - 1rem);width:calc(30% - 1rem)}
.checkout .checkout_order_item .checkout_order_price p{color:#2b8cd6}
.checkout .cart_totals_wrap{width:100%;float:right;margin:0;display: flex;flex-direction: column;}
.checkout .cart_totals_wrap p{font-size:1.6rem}
.cart_totals_wrap p span {font-size: 1.8rem;}

.checkout input[type=radio] {position: absolute;left: -9999px;}
.checkout input[type=radio] + label {position: relative;padding-left: 2rem;cursor: pointer;display: inline-block;margin-right: 1rem;margin-bottom: 1rem;border-radius: 50%;}
.checkout input[type=radio] + label:before {content: "";position: absolute;left: 0;top: 0.4rem;right: 0;width: 1.2rem;height: 1.2rem;border: 1px solid #3F4247;background: #fff;border-radius: 50%;-webkit-transition: all 0.3s ease;-o-transition: all 0.3s ease;transition: all 0.3s ease;}
.checkout input[type=radio]:checked + label:after {content: "";display: block;width: 1rem;height: 1rem;position: absolute;border-radius: 50%;opacity: 1;-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);background-color: #2b8cd6;border: 0.2rem solid #fff;top: 0.5rem;left: 0.1rem;}
.select2-container {width: 100% !important;}
.delivery_method {font-weight: 600;}
.delivery_method svg, .delivery_method img{width: 6.6rem;height: 2rem;margin-right: 1rem;object-fit: contain;}
.page_grow{display: flex;flex-direction: column;min-height: 100vh;}
.page_grow .element_grow{flex-grow: 1;}
.page_grow .element_grow_center{flex-grow: 1; display: flex;align-items: center; justify-content: center;flex-direction: column;}
.page_grow footer{flex-shrink: 0;}

.empty_search {margin: 0 auto 2.5rem;text-align: center;max-width: 21rem;}

.dashboard_sec{background-color: #f3f7fb;}
.dashboard_aside{max-width: 23.8rem;width: 100%;background-color: #dfefff;position: relative;padding: 3.8rem 2rem 3rem;z-index: 2;border-radius: 1.2rem;}
.dashboard_row {display: flex;align-items: stretch;justify-content: flex-start;gap: 2rem}
.dashboard_main {max-width: calc(100% - 26.4rem);width: 100%;padding: 2rem 2rem 3rem 2rem;border-radius: 1.2rem;background-color: #ffffff;min-height: 61rem;position: relative;z-index: 4;}
.dashboard_list {width: 100%;margin: 0 0 6rem;}
.dashboard_tab_list {width: 100%;margin: 0 0 1.9rem;}
.dashboard_tab_list a {font-size: 1.4rem;font-weight: 500;display: block;width: 100%;padding-left: 2rem;position: relative;height: 2.2rem;line-height: 2.2rem; color: #5f5f5f;}
.dashboard_tab_list.active a {font-size: 1.6rem;font-weight: 700;color: #2b8cd6;}
.dashboard_tab_list a svg {top: 0.4rem;left: 0;position: absolute;width: 1.4rem;height: 1.4rem;fill: #2b8cd6;}
.dashboard_aside_buttons .button {max-width: 100%;width: 100%;margin: 0 0 1.5rem;}
.dashboard_aside_buttons .button:last-child {margin: 0;}
.dashboard_main .form_item{margin: 0 0 1rem;}
.dashboard_main .checkout_order_item{display: flex;align-items: flex-start;justify-content: flex-start;gap: 1.5rem;margin-top: 1rem;}
.dashboard_main .checkout_order_item:first-child{margin-top: 0;}
.dashboard_main .checkout_order_item .img_wrap{max-width: 6.4rem;width: 100%;aspect-ratio: 1/1;display: flex;align-items: center;justify-content: center;position: relative;}
.dashboard_main .checkout_order_item .img_wrap img{max-width: 100%;width: 100%;object-fit: cover}
.dashboard_main .checkout_order_item .img_wrap .qty {position: absolute;top: -.5rem;right: -.5rem;font-size: 1.4rem;font-weight: 500;height: 2rem;line-height: 2rem;-webkit-border-radius: 2rem;-moz-border-radius: 2rem;border-radius: 2rem;text-align: center;white-space: nowrap;padding: 0 .6rem;background-color: #2b8cd6;color: #fff;z-index: 3;}
.dashboard_order_item{position:relative;padding: 0 2rem;border-radius: 1.2rem; border:.1rem solid #d5d5d5;margin: 0 0 2rem;}
.dashboard_order_item:last-child{margin: 0;}
.dashboard_order_item.active .dashboard_order_name::before{top: 60%;transform: translate(0, -50%) rotate(-135deg);}
.dashboard_order_name{position:relative;padding:1.4rem 3.5rem 1rem 0;font-size: 1.6rem;font-weight: 400;line-height: 1.2;cursor:pointer;-webkit-transition:all .3s;-o-transition:all .3s;-moz-transition:all .3s;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#000;}
.dashboard_order_name::before{content: "";display: block;width: 1.2rem;height: 1.2rem;border-style: solid;border-width: 0 0.2rem 0.2rem 0;border-color: #2b8cd6;position: absolute;top: 45%;right: 0;transform: translate(0, -50%) rotate(45deg);transition: 0.3s linear;}
.dashboard_order_content{display:none;padding:1.5rem 0 1.5rem 0;border-top:.1rem solid #2b8cd6}
.product_item.dashboard_product_page {max-width: calc(100%/3 - 0.1rem);}
.dashboard_aside_btn{display: none;position: fixed;left: 0;top: 50%;background-color: #2b8cd6;z-index: 15;padding: 1rem 1rem;border-radius: 0 1.5rem 1.5rem 0;font-size: 0;cursor: pointer;}
.dashboard_aside_btn .icon {display: inline-block;vertical-align: middle;margin: 0 1rem 0 0;width: 2rem;height: 2rem;color: #ffffff;}
.dashboard_aside_btn span {color: #ffffff;display: inline-block;vertical-align: middle;font-size: 1.6rem;}
.contact_page,
.dashboard_page{
  background-color: #f3f7fb;
}
.dialog .ui-state-default, .dialog .ui-widget-content .ui-state-default, .dialog .ui-widget-header .ui-state-default {
    border: none;
    width: 2rem;
    height: 2rem;
    top: -0.8rem;
    cursor: pointer;
    background-color: #2b8cd6;
    border-radius: 50%;
}
.product_slider_dialog.hidden_slider{overflow: hidden;opacity: 0;max-height: 36.5rem;}
 .product_slider_dialog .slider_item{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.product_slider_dialog .slider_item img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}
.product_dialog .single_product_wrapper{
  display: flex;
  align-items: center;
  gap: 0;
  margin: 2rem 0 0;
}
.product_dialog_bottom .h4 {margin: 0;}
.dialog .ui-widget-content {
    background: #ffffff;
    border: 0.1rem solid #2b8cd6;
    height: 0.6rem;
    max-width: calc(100% - 1.2rem);
    left: 0.6rem;
    margin: 0 0 2rem;
}
.text_green{color: rgb(0, 160, 70);}
.text_orange{color: rgb(255, 169, 0);}
.text_red{color: rgb(248, 65, 71);}
.starRating {--count: 5;--percent: calc(attr(data-rating type(<number>), 0) / var(--count) * 100%);display: block;}
.starRating::after {content: '★★★★★';background: linear-gradient(90deg, #FF9800 var(--percent), #cccccc var(--percent));color: transparent;background-clip: text;}
.single_product .product_item_review_text.starRating{font-size: 140%}
.select2-container .select2-selection--single {height: 35px;}
.main_page_section{max-width: 100%;width: 100%}
.select2-container--default .select2-selection--single .select2-selection__rendered {line-height: 35px;}
.select2-container--default .select2-selection--single .select2-selection__arrow {height: 35px;}
.checkout .overflow_list {display: block;overflow-y: auto;padding: 0.5rem 1rem 0.5rem 1.6rem;border-radius: 0.5rem;max-height: 20rem;border: 0.1rem solid #cfcfcf;background-color: #dfefff;}
.about_section{overflow: hidden;}
.about_section .cta1{position: relative;z-index: 2}
.about_section .cta1:before,.about_section .cta1:after{content: "";position: absolute;top: 0;width: 100vw;height: 100%;background-color: #f3f7fb;z-index: -1;}
.about_section .cta1:before{right: 99vw;}
.about_section .cta1:after{left: 99vw;}
.prom_code_bock{display: flex;flex-wrap: wrap;align-items: flex-end;justify-content: flex-end;gap: .5rem 1rem;margin: 0 0 1.5rem;}
.video_block_responsive{position:relative;overflow:hidden;width:100%;padding-top:62.265%}
.video_block_responsive .video_iframe_res{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;height:100%}
.video_block_responsive .video_bg_res{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%);display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}
.video_block_responsive .play_res{position:absolute;top:50%;left:50%;z-index:3;-webkit-transition:.3s;-o-transition:.3s;-moz-transition:.3s;transition:.3s;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%);display:block;width:9rem;height:auto;cursor:pointer}
.video_block_responsive .overlay_res{position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;display:block;cursor:pointer;-webkit-transition:.3s;-o-transition:.3s;-moz-transition:.3s;transition:.3s;background:rgba(0,0,0,0.5)}
.video_block_responsive.video_play .play_res,.video_block_responsive.video_play .overlay_res,.video_block_responsive.video_play .video_bg_res{display:none}
.video_block_responsive_nav{position: relative;cursor: pointer;display: block;width: 100%;height: 9rem;max-width: 90%;margin: 0 auto;border: 0.1rem solid transparent;overflow: hidden;transition: 0.3s linear;border-radius: 0.4rem;}
.video_block_responsive_nav .video_bg_res{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);display: block;padding: 0.5rem;width: 100%;height: 100%;object-fit: contain;}
.video_block_responsive_nav .play_res{position: absolute;top: 50%;left: 50%;z-index: 3;transition: .3s;transform: translate(-50%, -50%);display: block;width: 2.5rem;height: auto;cursor: pointer;}

.product_slider_nav .slick-current .video_block_responsive_nav {border: 0.1rem solid #2b8cd6;}

@-moz-document url-prefix() {
  html {scrollbar-width: auto;scrollbar-color: #2b8cd6 #f1f1f1;}
}

@media only screen and (min-width: 993px) {
  .navigation .header_nav > li.dr_down:hover .sub_menu {display: block;}
  .product_item:hover .product_item_bottom {display: block;}
  .navigation .sub_menu .sub_menu_title:hover,
  .navigation .sub_menu .sub_menu_item_title:hover {color: #2b8cd6;}
  .navigation .sub_menu_item a.sub_menu_item_title:hover,
  .navigation .header_nav .sub_menu li > a:not(.button):hover {color: #2b8cd6;}
  .phones_wrap:hover .phones_wrap_button {transform: rotate(180deg);}
  .phones_wrap:hover .hidden_phone_item {height: auto;opacity: 1;visibility: visible;}
  .hover_wrap .navigation.navigation_header:has(.sub_menu:hover) {border-top-right-radius: 0;border-bottom-right-radius: 0;}
  .hover_wrap .navigation.navigation_header:has(a:hover) {border-top-right-radius: 0;border-bottom-right-radius: 0;}

}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  .header .svg_link:hover {color: #2b8cd6;}
  .header .svg_link:hover svg {color: #2b8cd6;}
  .svg_link:hover {color: #FF9800;}
  .product_slider_nav .slider_item:hover {border-color: #d5d5d5;}

  .product_name a:hover {color: #FF9800;}
  a:hover {color: #FF9800;}
  a:hover .underlined:before {background-color: #2b8cd6;}
  a.underlined:hover:before {background-color: #FF9800;}
  a.underlined:hover {color: #FF9800;}
  footer a:hover {color: #FF9800;}
  .footer_bottom a:hover {color: #FF9800;}
  .header_linc:hover{color: #FF9800;}
  .button:hover {color: #ffffff;background-color: #2b8cd6;border-color: #2b8cd6;}
  .button:hover svg {fill: #ffffff;}
  .button.light:hover {color: #ffffff;background-color: #FF9800;border-color: #FF9800;}
  .button.button_blue:hover{color: #2b8cd6;background-color: transparent;border-color: #2b8cd6;}
  .button.button_blue:hover svg{fill: #2b8cd6;}
  .button.light_2:hover {color: #ffffff;background-color: #2b8cd6;border-color: #ffffff;}
  .button.dark:hover {color: #dbdad6;background-color: #ffffff;border-color: #ffffff;}
  .button.button_success:hover {color: #ffffff;background-color: #24993f;border-color: #24993f;}
  .button.button_danger:hover {color: #ffffff;background-color: #c82333;border-color: #c82333;}
  .button.button_warning:hover {color: #000000;background-color: #fdae11;border-color: #fdae11;}
  .button.button_info:hover {color: #ffffff;background-color: #0890a7;border-color: #0890a7;}
  .button.button_disable:hover {color: #000000;background-color: #c3bfbf;border-color: #c3bfbf;}
  .button.button_default:hover {color: #ffffff;background-color: #50606e;border-color: #50606e;}
  .button.btn_icon:hover svg {transform: translate(-50%, 0.9rem);}
  .button.btn_icon:hover span {transform: translateY(3rem);}
  .cart_close:hover{color: red;}
  .slick-prev:hover, .slick-next:hover {background-color: #FF9800;border-color:#FF9800;}
  .slick-prev:hover::after, .slick-next:hover::after {border-color: #ffffff;}
  .product_row_bottom .slick-arrow:hover{background-color: #FF9800;border-color:#FF9800;}
  .dialog .icon_close:hover {color: #dc3545;}
  .input:-webkit-autofill:hover {-webkit-box-shadow: 0 0 0 4rem #ffffff inset !important;-webkit-text-fill-color: #000000 !important;}
  .custom_checkbox + label:hover .checkbox_design {border-color: #2b8cd6;}
  .custom_radio_button + label:hover .radio_button_design {border-color: #2b8cd6;}
  .pagination li a:hover {background-color: #2b8cd6;color: #ffffff;}
  .social .social_block:hover .icon, .social .social_block:hover img {padding: 0.2rem;}
  .content a:not(.button):hover {color: #FF3F0A;}
  .contact_us_section address a:not(.button):hover {color: #2b8cd6;}
  .toast_notifications .removeTOAST .icon:hover {color: #FF3F0A;}
  .breadcrumbs li a:hover {color: #2b8cd6;}
  .value_button:hover {background-color: #2b8cd6;color: #ffffff;}
  .products_section aside .filter_list li a:hover {color: #2b8cd6;}
  .link_show_more:hover{color: #FF9800;}
  .link_show_more:hover .underlined{color: #FF9800;}
  .link_show_more:hover .underlined:before{background-color: #FF9800;}
  .link_arrow:hover{color: #FF9800;}
  .link_arrow:hover svg{right: 0}
  .cart .cart_item_heading a:hover{color:#2b8cd6}
  .cart .cart_item_desc .img_wrap img:hover{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1)}
  .cart .product_remove .icon:hover{color:#f44336}
  .navigation .header_nav > li.navigation_top_menu .close_navigation:hover{border-color: #FF3F0A;color: #FF3F0A;transition: .3s}
  .svg_link:hover svg{color: #FF9800;}
  .social .social_block:hover .social_block_name{color: #FF9800;}
  .social .social_block:hover .social_block_svg{border-color: #FF9800;}
  .social .social_block:hover .icon, .social .social_block:hover img{color: #FF9800;}
  .header .social .social_block:hover .social_block_name{color: #2b8cd6;}
  .header .social .social_block:hover .social_block_svg{border-color: #2b8cd6;}
  .header .social .social_block:hover .icon, .header .social .social_block:hover img{color: #2b8cd6;}
  .catalog_img:hover img {-moz-transform: translate(-50%,-50%) scale(1.1);-o-transform: translate(-50%,-50%) scale(1.1);transform: translate(-50%, -50%) scale(1.1);transition: all .3s;}
  .catalog_item_name a:hover{color: #FF9800;}
  .product_image:hover img {-moz-transform: translate(-50%, -50%) scale(1.2);-o-transform: translate(-50%, -50%) scale(1.2);transform: translate(-50%, -50%) scale(1.2);}
  .button_add_favorive:hover{color: #FF9800;}
  a.product_item_review:hover{color: #FF9800;transition: .3s}
  .product_tab_list:hover{color: #FF9800;}
  .navigation .header_nav > li > a:not(.button):hover {color: #2b8cd6;background-color: #dfefff;}
  .navigation .header_nav > li > a:not(.button):hover svg.navigation_menu_img {color: #2b8cd6;}
  .navigation .header_nav > li > a:not(.button):hover img.navigation_menu_img {filter: brightness(0) saturate(100%) invert(47%) sepia(45%) saturate(319%) hue-rotate(178deg) brightness(92%) contrast(88%);}
  .navigation .header_nav > li.dr_down > a:not(.button):hover:after {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 24 24' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%232b8cd6' fill-rule='evenodd' d='M5.293 8.293a1 1 0 0 0 0 1.414l6 6a1 1 0 0 0 1.414 0l6-6a1 1 0 0 0-1.414-1.414L12 13.586 6.707 8.293a1 1 0 0 0-1.414 0z' clip-rule='evenodd' opacity='1' data-original='%232b8cd6'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");}
  .navigation .sub_menu a.sub_menu_title:hover{color: #2b8cd6;}
  .rating:not(:checked) > label:hover::before, .rating:not(:checked) > label:hover ~ label::before {color: #f1cd06;background-color: transparent;border: none;}
  .video_block .video_img:hover .overlay,.video_block_responsive:hover .overlay_res{background:rgba(0,0,0,0.2)}
  .video_block .video_img:hover .play,.video_block_responsive:hover .play_res{-webkit-transform:translate(-50%,-50%) scale(0.8);-moz-transform:translate(-50%,-50%) scale(0.8);-ms-transform:translate(-50%,-50%) scale(0.8);-o-transform:translate(-50%,-50%) scale(0.8);transform:translate(-50%,-50%) scale(0.8)}

}
@media only screen and (max-width: 1400px) {
  .main_top .banner {height: 60rem;}
  .product_item.product_item_product_page {max-width: calc(25% - 0.1rem);}
  .product_item.product_item_product_page:not(.slick-slide):nth-child(5) {border-top-right-radius: 0;}
  .product_item.product_item_product_page:not(.slick-slide):nth-child(4) {border-top-right-radius: 1.2rem;}
}
@media only screen and (max-width: 1300px) {
  h1, .h1 {font-size: 3.5rem;}
  .content h1, .content .h1 {font-size: 3.5rem;}
  h2, .h2 {font-size: 2.6rem;}
  .content h2, .content .h2 {font-size: 2.6rem;}
  .title, .content .title {font-size: 2.6rem;}
  .content img[style*="float: right"] {margin: 1rem 0 1rem 4.5rem !important;}
  .content img[style*="float: left"] {margin: 1rem 4.5rem 1.5rem 0 !important;}
  .product_item.slick-slide {min-height: 39.6rem;}
  .product_item.active .product_item_bottom_content {min-height: 38rem;max-height: 38rem;}
  .single_product_wrapper .desc_block h1, .single_product_wrapper .desc_block .h1 {font-size: 2.6rem;}
  .product_item.active:not(.slick-slide) .product_item_bottom {top: 20rem;}
  .product_item.active .product_item_bottom_content {min-height: 36rem;max-height: 36rem;}


}
@media only screen and (max-width: 1200px) {
  .row_f .col_lg_1 {width: calc(8.3333333333% - 3.01rem);}
  .row_f .col_lg_2 {width: calc(16.6666666667% - 3.01rem);}
  .row_f .col_lg_3 {width: calc(25% - 3.01rem);}
  .row_f .col_lg_4 {width: calc(33.3333333333% - 3.01rem);}
  .row_f .col_lg_5 {width: calc(41.6666666667% - 3.01rem);}
  .row_f .col_lg_6 {width: calc(50% - 3.01rem);}
  .row_f .col_lg_7 {width: calc(58.3333333333% - 3.01rem);}
  .row_f .col_lg_8 {width: calc(66.6666666667% - 3.01rem);}
  .row_f .col_lg_9 {width: calc(75.0000000019% - 3.01rem);}
  .row_f .col_lg_10 {width: calc(83.3333333333% - 3.01rem);}
  .row_f .col_lg_11 {width: calc(91.6666666667% - 3.01rem);}
  .row_f .col_lg_12 {width: calc(100% - 3.01rem);}
  .main_top .banner {height: 55rem;}
  .navigation .sub_menu {width: calc(100vw - 40rem);}
  .product_item {max-width: calc(25% - 0.1rem);}
  .catalog_item {max-width: calc(25% - 0.2rem);}
  .product_item.product_item_product_page {max-width: calc(100%/3 - 0.1rem);}
  .product_item.product_item_product_page:not(.slick-slide):nth-child(4) {border-top-right-radius: 0;}
  .product_item.product_item_product_page:not(.slick-slide):nth-child(3) {border-top-right-radius: 1.2rem;}
  .product_row_bottom.product_row_bottom4{max-width: 100%;}
  .product_row_bottom.product_row_bottom3{max-width: calc(100%*3/4);}
  .product_row_bottom.product_row_bottom2{max-width: calc(100%*2/4);}
  .product_row_bottom.product_row_bottom1{max-width: calc(100%*1/4);}
}
@media only screen and (max-width: 1100px) {
  .product_item.active .product_item_bottom {top: 19rem;}
  .product_item.active .product_item_bottom_content {min-height: 36rem;max-height: 36rem;}
}
@media only screen and (max-width: 992px) {
  body {padding-top: 12.42rem;}
  .main_page_section{max-width: 100%;width: 100%;overflow: hidden;}
  .header, .header.fixed {padding: 1rem 0 0;}
  .header .header_logo img, .header.fixed .header_logo img {width: 13rem;}
  .hide_mobile_992{display: none!important;}
  .header .social{display: none;}
  .header .navigation_btn {display: block;}
  .navigation.navigation_aside_main {position: fixed;top: 0;left: -54rem;width: 54rem;height: 100vh;margin: 0;overflow: hidden;background-color: #dfefff;transition: all 0.3s ease-in;z-index: 1005;display: block;}
  .navigation.navigation_aside_main.nav_opened {left: 0;transition: all 0.3s ease-out;}
  .navigation .header_nav {display: block;margin: 2rem 0 0;padding: 0 1.5rem;height: calc(100vh - 10rem);overflow-y: auto;}
  .navigation .header_nav > li {display: block;width: 100%;}
  .navigation .navigation_menu_img {width: 2rem;height: 2rem;}
  .navigation .header_nav > li > a:not(.button) {font-size: 1.6rem;font-weight: 400;width: 100%;padding: .8rem;}
  .navigation .header_nav > li.dr_down > a:not(.button) {padding: 0.8rem 3rem 0.8rem 0.8rem;}
  .navigation .header_nav > li.navigation_top_menu{display: flex;align-items: center;justify-content: space-between;margin: 0 0 2rem}
  .navigation .header_nav > li.navigation_top_menu .navigation_logo{max-width: 13rem; width: 100%}
  .navigation .header_nav > li.navigation_top_menu .close_navigation{width: 3.2rem;height: 3.2rem;border: .1rem solid #5f5f5f;color: #5f5f5f; border-radius: 50%; display: flex;align-items: center;justify-content: center;transition: .3s}
  .navigation .header_nav > li.navigation_top_menu .close_navigation svg{width: 1.8rem;height: 1.8rem;transition: .3s}
  .navigation .header_nav > li.navigation_top_menu > a:not(.button){padding: 0;}
  .navigation .sub_menu a.sub_menu_title{display: flex;font-size: 1.4rem; margin: 0.8rem;align-items: center;gap: 0.6rem;max-width: calc(100% - 1.6rem);}
  .sub_menu_item {max-width: 100%;width: 100%;}
  .sub_menu_row {margin: 0; gap: 0;overflow-x: hidden}
  .sub_menu_item hr{display: none;}
  .navigation .sub_menu_item a.sub_menu_item_title{font-size: 1.4rem;font-weight: 400;width: 100%;position: relative;display: block;padding: 0.8rem 3rem 0.8rem 0.8rem;}
  .navigation .sub_menu_item a.sub_menu_item_title:after{content: "";position: absolute;top: 50%;right: 0;display: block;transition: all 0.3s;z-index: 3;width: 2rem;height: 2rem;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 24 24' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%23000000' fill-rule='evenodd' d='M5.293 8.293a1 1 0 0 0 0 1.414l6 6a1 1 0 0 0 1.414 0l6-6a1 1 0 0 0-1.414-1.414L12 13.586 6.707 8.293a1 1 0 0 0-1.414 0z' clip-rule='evenodd' opacity='1' data-original='%23000000'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");background-size: contain;background-repeat: no-repeat;background-position: center;transform: translate(0, -50%) rotate(-90deg);}
  .navigation .sub_menu_item.visible_sub a.sub_menu_item_title:after{transform: translate(0, -50%) rotate(180deg);}
  .navigation .sub_menu_item ul {display: none;position: relative;top: 0;left: 0;width: 100%;height: auto;margin: 1rem 0;background-color: transparent;min-width: unset;box-shadow: unset;transform: unset;transition: unset;border: none;padding: 0;border-radius: 0;z-index: 1508;padding: 0 1.5rem;}
  .navigation .sub_menu_item li a{font-size: 1.4rem;display: block;}
  .navigation .sub_menu_item.visible_sub ul{display: block;opacity: 1;visibility: visible;}
  .navigation .header_nav > li.dr_down > a:not(.button)::after {width: 2rem;height: 2rem;}

  .navigation .header_nav > li.dr_down .sub_menu {display: none;position: relative;top: 0;left: 0;width: 100%;height: auto;margin: 1rem 0;background-color: transparent;min-width: unset;box-shadow: unset;transform: unset;transition: unset;border: none;padding: 0;border-radius: 0;z-index: 1506;}
  .navigation .header_nav > li.dr_down .sub_menu::after, .navigation .header_nav > li.dr_down .sub_menu::before {display: none;}
  .navigation .header_nav > li.dr_down .sub_menu > li {border-bottom: none;}
  .navigation .header_nav > li.dr_down .sub_menu > li > a:not(.button) {font-size: 1.7rem;line-height: 1.4;border-bottom: none;padding: 0.8rem 0;margin: 0 auto;max-width: 80%;text-align: center;}
  .navigation .header_nav > li.dr_down.visible_sub > a:not(.button)::after {transform: translate(0, -50%) rotate(180deg);}
  .navigation .header_nav > li.dr_down.visible_sub .sub_menu {display: block;opacity: 1;visibility: visible;}
  .navigation .header_nav > li.header_lincs{margin: 2rem 0; align-items: center;justify-content: center;}
  .navigation .header_nav > li.header_lincs > a:not(.button) {font-size: 1.4rem;max-width: 6rem;width: 100%;}

  .navigation .header_nav > li.header_btn {padding: 1rem 3rem;}
  .navigation .header_nav > li.header_btn .button {display: block;width: 100%;}
  .navigation .header_nav > li.mobile_social {display: block;}
  .navigation .header_nav > li.mobile_social .social {text-align: center;margin: 1rem 0 0;}
  .navigation .header_nav > li.mobile_social .social a {display: inline-block;vertical-align: middle;width: auto;margin: 0 1rem;}
  .mobile_phone, .home_bar_space {display: block;}
  .hide_desktop {display: block !important;}
  .hide_desktop_992_f{display: flex !important;}
  .hide_desktop_992_b{display: block !important;}

  .hide_desktop {display: block !important;}
  .hide_tablet {display: none !important;}
  .page aside, .page main {display: block;width: 100%;float: none;margin: 1rem 0;padding: 0;}
  .map iframe, .map #map {height: 30rem;}
  .row.tablet .col_3, .row.tablet .col_4 {width: calc(50% - 3rem);}
  .header .top_header {display: none;}
  footer {padding-bottom: 4.5rem;padding-top: 3rem;}
  .row_f .col_md_1 {width: calc(8.3333333333% - 3.01rem);}
  .row_f .col_md_2 {width: calc(16.6666666667% - 3.01rem);}
  .row_f .col_md_3 {width: calc(25% - 3.01rem);}
  .row_f .col_md_4 {width: calc(33.3333333333% - 3.01rem);}
  .row_f .col_md_5 {width: calc(41.6666666667% - 3.01rem);}
  .row_f .col_md_6 {width: calc(50% - 3.01rem);}
  .row_f .col_md_7 {width: calc(58.3333333333% - 3.01rem);}
  .row_f .col_md_8 {width: calc(66.6666666667% - 3.01rem);}
  .row_f .col_md_9 {width: calc(75.0000000019% - 3.01rem);}
  .row_f .col_md_10 {width: calc(83.3333333333% - 3.01rem);}
  .row_f .col_md_11 {width: calc(91.6666666667% - 3.01rem);}
  .row_f .col_md_12 {width: calc(100% - 3.01rem);}
  h1, .h1,
  .content h1, .content .h1 {font-size: 3rem;}
  h2, .h2,
  .content h2, .content .h2,
  .title, .content .title {font-size: 2.2rem;}
  h3, .h3,
  .content h3, .content .h3 {font-size: 2rem;}
  h4, .h4,
  .content h4, .content .h4 {font-size: 1.8rem;}
  h5, .h5,
  .content h5, .content .h5 {font-size: 1.6rem;}
  h6, .h6,
  .content h6, .content .h6 {font-size: 1.4rem;}
  .content img[style*="float: right"] {margin: 1rem 0 1rem 2.5rem !important;max-width: 100%!important; width: 50%!important;}
  .content img[style*="float: left"] {margin: 1rem 2.5rem 1.5rem 0 !important;max-width: 100%!important; width: 50%!important;}
  .modal_video.dialog .icon_close {display: none;}
  .products_section aside {position: fixed;top: 0;left: calc(-30rem);padding: 3rem 1rem 6rem;width: 30rem;height: 100%;min-height: 100%;overflow-y: auto;margin: 0;transition: 0.3s;z-index: 1005;float: none;background-color: #ffffff;}
  .products_section aside.active {left: 0;transition: 0.3s;}
  .products_section main {width: 100%;float: none;}
  .filter_btn {display: block;}
  .aside_close {display: block;}
  .product_item,.product_item.slick-slide{min-height: unset;}

  .products_section aside.active .aside_buttons_mobile {left: 0;transition: 0.3s;}
  .products_section aside.active .aside_buttons_mobile .button:first-child {margin: 0 1rem 0 0;}
  .single_product_wrapper .desc_block {width: -webkit-calc(100% / 1 - 3rem);width: -moz-calc(100% / 1 - 3rem);width: calc(100% - 3rem);}
  .single_product_wrapper .desc_block h1, .single_product_wrapper .desc_block .h1 {font-size: 2.2rem;}
  .cart .cart_item_desc .img_wrap{margin:0 1rem 0 0}
  .cart .cart_item_desc .img_wrap img{width:5rem;height:5rem}
  .cart .cart_item_desc .cart_item_heading{width:-webkit-calc(100% - 6rem);width:-moz-calc(100% - 6rem);width:calc(100% - 6rem)}
  .cart .cart_item_qty .value_buttons_wrap .input{width:4rem;font-size:1.2rem}
  .cart .cart_item_qty .value_buttons_wrap .input::-webkit-input-placeholder{font-size:1.2rem}
  .cart .cart_item_qty .value_buttons_wrap .input:-moz-placeholder{font-size:1.2rem}
  .cart .cart_item_qty .value_buttons_wrap .input::-moz-placeholder{font-size:1.2rem}
  .cart .cart_item_qty .value_buttons_wrap .input:-ms-input-placeholder{font-size:1.2rem}
  .cart .cart_item_qty .value_buttons_wrap .input::-ms-input-placeholder{font-size:1.2rem}
  .cart .cart_item_qty .value_buttons_wrap .input::placeholder{font-size:1.2rem}
  .cart .product_remove .icon{width:1.2rem;height:1.2rem}
  .product_slider_nav .slick-arrow{bottom: -4rem;top: unset;}

  .checkout .checkout_title h2{font-size:1.8rem}
  .checkout .checkout_title span{font-size:1.7rem}
  .checkout .checkout_row label span{font-size:1.4rem}
  .checkout .cart_totals_wrap{width:75%}
  .checkout .checkout_order_item .checkout_order_desc p{font-size:1.3rem}
  .checkout .checkout_order_item .img_wrap{width:6rem}
  .checkout .checkout_order_item .img_wrap img{width:6rem;height:6rem}
  .checkout .checkout_order_item .checkout_order_desc{width:-webkit-calc(100% - 7rem);width:-moz-calc(100% - 7rem);width:calc(100% - 7rem)}
  .checkout .input{height:3rem}
  .checkout textarea.input{min-height:7.5rem}
  .main_top .top_slider_block {max-width: 100%;}
  .main_top .banner {height: 40rem;background-position: center left;}
  .button_bottom .button{color: #2b8cd6;background-color: transparent;border-color: #2b8cd6;}
  .button_bottom .button.button svg{fill: #2b8cd6;}
  .product_item {max-width: calc(100%/3 - 0.1rem);}
  footer .footer_row {;grid-template-columns: 1fr 1fr;gap: 2rem 3rem;}
  .footer_col1 {grid-column: 1 / -1;}
  footer .footer_logo {max-width: 20rem;}
  .contact_us_section address p,
  .contact_us_section address a:not(.button) {font-size: 1.6rem;}
  .contact_us_section address a:not(.button) svg {top: 0.1rem;}
  .catalog_item_name {margin: 1rem 0 .5rem;}
  .product_item.product_item_product_page {max-width: calc(25% - 0.1rem);}
  .grid_characteristic {max-width: 100%;}
  .product_sec_main_page {overflow: hidden;}
  .dashboard_aside {position: fixed;top: 0;left: -40rem;width: 40rem;height: 100vh;margin: 0;overflow: hidden;padding: 8rem 2rem 16rem;transition: all 0.3s ease-in;z-index: 1005;display: block;border-top-left-radius: 0; border-bottom-left-radius: 0;}
  .dashboard_aside.nav_opened {left: 0;transition: all 0.3s ease-out;}
  .dashboard_aside_btn{display: block;}
  .dashboard_main {max-width: 100%;}
  .product_item {padding: 1rem;}
  .product_item.dashboard_product_page {max-width: calc(25% - 0.1rem);}
  .product_slider .slider_item img{pointer-events: none;}
  .product_tab_lists {margin: 0 0 2.5rem;}
  .product_item.product_item_product_page:not(.slick-slide):nth-child(3) {border-top-right-radius: 0;}
  .product_item.product_item_product_page:not(.slick-slide):nth-child(4) {border-top-right-radius: 1.2rem;}
  .dashboard_main {min-height: unset;padding: 1.5rem 1rem 2rem;}
  .product_row_bottom.product_row_bottom3{max-width: 100%;}
  .product_row_bottom.product_row_bottom2{max-width: calc(100%*2/3);}
  .product_row_bottom.product_row_bottom1{max-width: calc(100%*1/3);}
  .video_block .video_img .play, .video_block_responsive .play_res {width: 4rem;}
  .video_block_responsive_nav .play_res {width: 2rem;}
}

@media only screen and (max-width: 992px) and (-ms-high-contrast: none), only screen and (max-width: 992px) and (-ms-high-contrast: active), only screen and (max-width: 992px) and (-moz-touch-enabled: 0), only screen and (max-width: 992px) and (hover: hover) {
  .button_bottom .button:hover{color: #ffffff;background-color: #FF9800;border-color: #FF9800;}
  .button_bottom .button.button:hover svg{fill: #ffffff;}
  .navigation .sub_menu_item li a:hover{color: #FF9800}
  .navigation .sub_menu_item a.sub_menu_item_title:hover{color: #2b8cd6;}
  .navigation .sub_menu_item a.sub_menu_item_title:hover:after{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 24 24' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%232b8cd6' fill-rule='evenodd' d='M5.293 8.293a1 1 0 0 0 0 1.414l6 6a1 1 0 0 0 1.414 0l6-6a1 1 0 0 0-1.414-1.414L12 13.586 6.707 8.293a1 1 0 0 0-1.414 0z' clip-rule='evenodd' opacity='1' data-original='%232b8cd6'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");}
}
@media only screen and (max-width: 840px) {
  .product_item.product_item_product_page {max-width: calc(100%/3 - 0.1rem);}
  .product_item.dashboard_product_page {max-width: calc(100%/3 - 0.1rem);}
  .dialog.modal_large {max-width: 90%;}
  .product_item.product_item_product_page:not(.slick-slide):nth-child(4) {border-top-right-radius: 0;}
  .product_item.product_item_product_page:not(.slick-slide):nth-child(3) {border-top-right-radius: 1.2rem;}
  .catalog_item {max-width: calc(100%/3 - 0.2rem);}


}
@media only screen and (max-width: 767px) {
  .hide_mobile {display: none !important;}
  .row.tablet .col_3, .row.tablet .col_4 {width: calc(100% - 3rem);}
  section {padding: 3rem 0;}
  .row.mobile .col_1, .row.mobile .col_2, .row.mobile .col_3, .row.mobile .col_4, .row.mobile .col_5, .row.mobile .col_6, .row.mobile .col_7, .row.mobile .col_8, .row.mobile .col_9, .row.mobile .col_10, .row.mobile .col_11, .row.mobile .col_12 {
    width: calc(100% - 3rem);
  }
  .row_f .col_sm_1 {width: calc(8.3333333333% - 3.01rem);}
  .row_f .col_sm_2 {width: calc(16.6666666667% - 3.01rem);}
  .row_f .col_sm_3 {width: calc(25% - 3.01rem);}
  .row_f .col_sm_4 {width: calc(33.3333333333% - 3.01rem);}
  .row_f .col_sm_5 {width: calc(41.6666666667% - 3.01rem);}
  .row_f .col_sm_6 {width: calc(50% - 3.01rem);}
  .row_f .col_sm_7 {width: calc(58.3333333333% - 3.01rem);}
  .row_f .col_sm_8 {width: calc(66.6666666667% - 3.01rem);}
  .row_f .col_sm_9 {width: calc(75.0000000019% - 3.01rem);}
  .row_f .col_sm_10 {width: calc(83.3333333333% - 3.01rem);}
  .row_f .col_sm_11 {width: calc(91.6666666667% - 3.01rem);}
  .row_f .col_sm_12 {width: calc(100% - 3.01rem);}
  h1, .h1,
  .content h1, .content .h1 {font-size: 2.5rem;}
  h2, .h2,
  .content h2, .content .h2,
  .title, .content .title {font-size: 2rem;}
  h3, .h3,
  .content h3, .content .h3 {font-size: 1.8rem;}
  h4, .h4,
  .content h4, .content .h4 {font-size: 1.6rem;}
  h5, .h5,
  .content h5, .content .h5 {font-size: 1.4rem;}
  .modal_video.dialog {width: 90vw;}
  .single_product_wrapper .desc_block h1, .single_product_wrapper .desc_block .h1 {font-size: 2rem;}
  .single_product_wrapper {display: block;margin: 0;}
  .single_product_wrapper .img_block {margin: 0 0 6rem;width: 100%;}
  .product_dialog .single_product_wrapper .single_product {width: -webkit-calc(100% / 2 - 3rem);width: -moz-calc(100% / 2 - 3rem);width: calc(50% - 3rem);margin: 0 1.5rem;}
  .cart .cart_header{display:none}
  .cart .cart_block{vertical-align:top}
  .cart .cart_item_desc{width:100%;text-align:left;padding:0 3rem 0 0}
  .cart .cart_item_desc .cart_item_heading p{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
  .cart .cart_item_price{display:none}
  .cart .cart_item_qty{margin-left:6rem;width:9.5rem;margin-top:-1rem;text-align:left}
  .cart .cart_item_qty .value_buttons_wrap .input{width:4.2rem}
  .cart .cart_item_subtotal{width:-webkit-calc(100% - 15.5rem);width:-moz-calc(100% - 15.5rem);width:calc(100% - 15.5rem);margin-top:-1rem;text-align:right;vertical-align:bottom}
  .cart .product_remove{position:absolute;top:1rem;right:0}
  .cart .cart_item p{font-size:1.4rem}
  .checkout .cart_totals_wrap{max-width:30rem;width: 100%}
  .product_item {max-width: calc(50% - 0.1rem);}
  .link_absolute {position: relative;right: unset;top: unset;transform: none;}
  .product_row_bottom {justify-content: space-between;gap: .5rem 2rem; padding: 1rem 1rem}
  .cta1 .form_wrap {gap: 1rem 3rem;}
  .cta1 .form_item {max-width: calc(33.3333333333% - 1rem);}
  .footer_bottom_row {flex-direction: column; justify-content: center;text-align: center;}
  .contact_us_section address p,
  .contact_us_section address a:not(.button) {font-size: 1.4rem;}
  .contact_us_section address p br, .contact_us_section address a:not(.button) br{display: none;}
  .product_item.dashboard_product_page {max-width: calc(50% - 0.1rem);}
  .dashboard_aside {padding: 6rem 2rem 16rem;}
  .breadcrumbs li {font-size: 1.4rem;}
  .breadcrumbs li + li::before {width: 2rem;height: 2rem;}
  .product_dialog .single_product_wrapper .img_block {margin: 0 0 3rem;max-width: 40rem;width: 100%;}
  .product_dialog .single_product_wrapper {flex-direction: column;align-items: center;justify-content: center;}
  .product_dialog .single_product_wrapper .single_product {max-width: 90%;width: 100%;margin: 0 auto;}
  .catalog_item {padding: 1.5rem;}
  .product_desired_block svg {width: 1.4rem;height: 1.4rem;}
  .item_left, .product_item_review {gap: 0.2rem;}
  .product_item_top svg {width: 1.4rem;height: 1.4rem;}
  .reviews_row{flex-direction: column;align-items: center;justify-content: center;}
  .reviews_form_box {max-width: 40rem;padding: 0.5rem 1rem;}
  .product_tab_lists {margin: 0 0 1.5rem;}
  .checkout .checkout_header.checkout_header_success {padding: 1rem 0 1rem;}
  .cart_totals_wrap {padding: .6rem 0 1rem .6rem;}
  .checkout .order_wrap {margin: 0 0 1rem;}
}
@media only screen and (max-width: 640px) {
  .row_f .col_xs_1 {width: calc(8.3333333333% - 3.01rem);}
  .row_f .col_xs_2 {width: calc(16.6666666667% - 3.01rem);}
  .row_f .col_xs_3 {width: calc(25% - 3.01rem);}
  .row_f .col_xs_4 {width: calc(33.3333333333% - 3.01rem);}
  .row_f .col_xs_5 {width: calc(41.6666666667% - 3.01rem);}
  .row_f .col_xs_6 {width: calc(50% - 3.01rem);}
  .row_f .col_xs_7 {width: calc(58.3333333333% - 3.01rem);}
  .row_f .col_xs_8 {width: calc(66.6666666667% - 3.01rem);}
  .row_f .col_xs_9 {width: calc(75.0000000019% - 3.01rem);}
  .row_f .col_xs_10 {width: calc(83.3333333333% - 3.01rem);}
  .row_f .col_xs_11 {width: calc(91.6666666667% - 3.01rem);}
  .row_f .col_xs_12 {width: calc(100% - 3.01rem);}
  .content img[style*=float] {float: none !important;display: block;width: 100% !important;max-width: 100% !important;margin: 0 auto 2rem !important;}
  .content img[style*="float: right"] {margin: 0 auto 2rem !important;text-align: center;}
  .content img[style*="float: left"] {margin: 0 auto 2rem !important;text-align: center;}
  .content p[style*=float] {float: none !important;display: block;width: 100% !important;max-width: 100% !important;margin: 1rem auto !important;}
  .content p[style*=float][style*=right] {margin: 1rem auto !important;text-align: center;}
  .content p[style*=float][style*=left] {margin: 1rem auto !important;text-align: center;}
  .cart .cart_item:nth-child(2){border-top:.1rem solid #dbdbdb}
  .navigation.navigation_aside_main {left: -36rem;width: 36rem;}
  .catalog_item {max-width: calc(50% - 0.2rem);}
  .cta1 .form_wrap {flex-wrap: wrap}
  .cta1 .form_wrap {gap: 1rem 1rem;}
  .cta1 .form_item {max-width: calc(50% - .5rem)}
  .cta1 .form_item.form_item_captcha  {max-width: 100%}
  .product_item.product_item_product_page {max-width: calc(50% - 0.1rem);}
  .product_item.product_item_product_page:not(.slick-slide):nth-child(3) {border-top-right-radius: 0;}
  .product_item.product_item_product_page:not(.slick-slide):nth-child(2) {border-top-right-radius: 1.2rem;}
  .cart_totals_wrap p span {font-size: 1.6rem;}
  .contacts_row {align-items: center;justify-content: center;flex-direction: column;}
  .contacts_desc {max-width: 100%;padding-top: 0;}
  .contacts_form {max-width: 40rem;}
  .contact_us_section address {margin: 1rem 0;}
  .product_row_bottom.product_row_bottom2{max-width: 100%;}
  .product_row_bottom.product_row_bottom1{max-width: calc(100%*1/2);}
}
@media only screen and (max-width: 550px) {
  .toast_notifications {width: 95%;}
  .toast_notifications .toast {width: 100%;font-size: 1rem;margin-left: 2rem;}
  .page_404 .block_404_content h1, .page_404 .block_404_content .h1 {font-size: 3rem;}
  .page_404 .block_404_content h1 span, .page_404 .block_404_content .h1 span {font-size: 15rem;}
  .modal_cart_add_content .img_wrap {padding-top: 8rem;width: 8rem;margin: 0 1rem 0 0;}
  .modal_cart_add_content .desc_wrap p {font-size: 1.6rem;width: calc(100% - 9rem);}
  .modal_cart_add_content .modal_btns .button {width: auto;}
  .hide_mobile_550 {display: none!important;}
  .cta1 .cta1_row {padding: 2rem 1.5rem;}
  footer .footer_logo {max-width: 15rem;}
  footer .footer_row {grid-template-columns: 1fr;gap: 1.5rem;}
  .footer_col1 {grid-column: unset;}
  .single_product_wrapper .desc_block .price.price_old {font-size: 1.6rem;}
  .single_product_wrapper .desc_block .price {font-size: 2.6rem;}
  .price small {font-size: 1.1rem;}
  .dashboard_aside {padding: 4rem 2rem 16rem;left: -36rem;width: 36rem;}
  .breadcrumbs li {font-size: 1.2rem;}
  .breadcrumbs li + li::before {width: 1.8rem;height: 1.8rem;}
  .product_item {padding: .8rem;}
  .product_item_top {font-size: 1rem;}
  .product_item_top svg {width: 1.4rem;height: 1.4rem;}
  .product_desired_block svg {width: 1.4rem;height: 1.4rem;}
  .dashboard_main {padding: 1.5rem 1rem 2rem;}
  .product_badge {height: 2.2rem;line-height: 2.1rem;font-size: 1.2rem;}
  .button {padding: 0 1.5rem;}
  .header .header_row {gap: 1rem;}
  .svg_link {font-size: 1.4rem;}
  .svg_link svg {width: 1.8rem;height: 1.8rem;}
  .single_product_wrapper .desc_block .buttons_wrap .value_buttons_wrap {margin: 0 1rem 0 0;}
  .container_of_tabs {padding: 1rem 1.5rem;}
  .button_only_svg{height: 3rem; line-height: 3rem;padding: 0 1.2rem;}
  .button_only_svg svg {top: -0.3rem;}
}
@media only screen and (max-width: 450px) {
  .modal_cart_add_content .modal_btns .button {font-size: 1.4rem;}
  .modal_cart_add {padding: 1.5rem;}
  .modal_cart_add_content .desc_wrap p {font-size: 1.4rem;}
  .single_product_wrapper .review_form .button {display: block;margin: 0 auto;}
  .product_row_bottom {flex-direction: column;}
  .link_absolute {display: flex;width: 100%;justify-content: flex-end;}
  .catalog_item {max-width: 100%;}
  .button_add_favorive span{display: none;}
  .dialog.modal_large {max-width: 100%;}
  .product_item_top {flex-direction: column;gap: .5rem;}
  .product_name {font-size: 1.3rem;margin: .5rem 0;}
  .price.price_old {font-size: 1.1rem;}
  .price {font-size: 1.6rem;}
}
@media only screen and (max-width: 400px) {
  .dialog .modal_buttons .button {width: 100%;margin: 0 0 1.5rem;}
  .dialog .modal_buttons .button:last-child {margin: 0;}
  .cta1 .form_item {max-width: 100%}
}
@media only screen and (max-width: 380px) {
  .navigation.navigation_aside_main {left: -100%;width: 100%;}
  .dashboard_aside {left: -30rem;width: 30rem;}
  .checkout .checkout_order_item .checkout_order_price {width: -webkit-calc(35% - 1rem);width: -moz-calc(35% - 1rem);width: calc(35% - 1rem);}
}
@media only screen and (max-width: 370px) {
  .modal_cart_add_content .modal_btns .button {font-size: 1.2rem;}
  .single_product_wrapper .review_form .rating_col {margin-bottom: 1rem;}
  .product_slider_nav .slider_item {height: 5rem;}
  .single_product_wrapper .review_form .row_f .col_6 {width: -webkit-calc(100% / 1 - 3.01rem);width: -moz-calc(100% / 1 - 3.01rem);width: calc(100% - 3.01rem);}
  .checkout .checkout_title{display:block;width:100%}
  .checkout .checkout_order_item .checkout_order_desc p{font-size:1.2rem}
  .product_item, .product_item.product_item_product_page {max-width: 100%;}
  .product_item.product_item_product_page:not(.slick-slide):nth-child(2) {border-top-right-radius: 0;}
  .product_row_bottom.product_row_bottom1{max-width: 100%;}
}
@media (orientation: landscape) and (max-height: 450px) {
  .mobile_phone, .home_bar_space {display: none;}
  footer {padding-bottom: 0;}
}
