.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  position: relative;
  line-height: 1.4;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  font-style: normal;
  min-width: 320px !important;
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 7px;
}
body::-webkit-scrollbar {
  width: var(--sb-size);
}
body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

.dateInput_js {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  background-image: none !important;
}
.dateInput_js::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
  -webkit-appearance: none;
}
.dateInput_js::-webkit-clear-button, .dateInput_js::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
}
.dateInput_js::-moz-focus-inner {
  border: 0;
}

.overflow_hidden {
  overflow: hidden;
}

.position_relative {
  position: relative;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.section_padding {
  padding: 40px 0;
}

.padding_top_0 {
  padding-top: 0;
}

.padding_bottom_0 {
  padding-bottom: 0;
}

section {
  margin: 0 auto;
}

.title_1 {
  font-size: clamp(24px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.6em;
  color: #201d1d;
}

.title_2 {
  font-size: clamp(20px, 5vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.6em;
  color: #201d1d;
}

.title_3 {
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25em;
  color: #201d1d;
}

.title_description {
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1em;
}

.position_center {
  margin: 0 auto;
}

.font_size_16 {
  font-size: 16px;
}

.font_size_20 {
  font-size: 20px;
}

.font_weight_300 {
  font-weight: 300 !important;
}

.font_weight_400 {
  font-weight: 400 !important;
}

.font_weight_500 {
  font-weight: 500 !important;
}

.font_weight_600 {
  font-weight: 600 !important;
}

.font_weight_700 {
  font-weight: 700 !important;
}

.font_weight_800 {
  font-weight: 800 !important;
}

.font_weight_900 {
  font-weight: 900 !important;
}

.bg_white {
  background-color: #ffffff;
}

.text_decoration_underline {
  text-decoration: underline;
  cursor: pointer;
}

.margin_top_50 {
  margin-top: 50px;
}

.margin_top_25 {
  margin-top: 25px;
}

.margin_bottom_40 {
  margin-bottom: 40px;
}

.bg_grey {
  background-color: #eaeaea;
}

.bg_black {
  background-color: #201d1d;
}

.bg_brown {
  background-color: #d5c199;
}

.color_white {
  color: #ffffff;
}

.color_black {
  color: #201d1d;
}

.color_grey {
  color: #eaeaea;
}

.color_brown {
  color: #d5c199;
}

.border_radius {
  border-radius: 8px;
}

@media only screen and (max-width: 1200px) {
  .section_padding {
    padding: 30px 0;
  }
  .padding_top_0 {
    padding-top: 0;
  }
  .padding_bottom_0 {
    padding-bottom: 0;
  }
  .margin_bottom_40 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 680px) {
  .section_padding {
    padding: 20px 0;
  }
  .padding_top_0 {
    padding-top: 0;
  }
  .padding_bottom_0 {
    padding-bottom: 0;
  }
  .margin_bottom_40 {
    margin-bottom: 20px;
  }
}
.display_none {
  display: none !important;
}

/* prevent ios safari auto-zoom on mobile form inputs */
@media (max-width: 768px) {
  input,
  input[type=text],
  input[type=password],
  input[type=email],
  input[type=number],
  input[type=tel],
  input[type=url],
  input[type=search],
  input[type=date],
  input[type=radio],
  select,
  textarea,
  .select2-container .select2-search__field {
    font-size: 16px !important;
  }
}
/* prevent native ios picker from opening along with select2 dropdown */
.select2-hidden-accessible {
  pointer-events: none !important;
  opacity: 0 !important;
}

.button_cs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 50px;
  width: fit-content;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  padding: 1.063em 1.35em;
  position: relative;
  overflow: hidden;
  transition: all 0.1s;
  color: #201d1d;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  border-radius: 8px;
  background-color: #d5c199;
  font-size: clamp(14px, 2vw, 16px);
  text-decoration: none !important;
}
.button_cs:hover:not(:disabled) {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.button_cs:active:not(:disabled) {
  transform: scale(0.97);
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
  transition: all 0s;
}
.button_cs.arrow {
  padding-left: 3.2em;
  position: relative;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.button_cs.arrow::after {
  transition: all 0.1s;
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 1.2em;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.8em;
  height: 0.8em;
}
.button_cs.arrow_down::after {
  background-image: url(../images/select_arrow.svg);
}
.button_cs.arrow_left::after {
  background-image: url(../images/arrow_left.svg);
}
.button_cs:disabled {
  cursor: default;
  user-select: none;
  pointer-events: none;
  background-color: #dfdfdf;
  opacity: 1;
}

.witdth_180 {
  min-width: 180px;
}

.witdth_100_percent {
  min-width: 100%;
}

.button_cs_black {
  background-color: #201d1d;
  color: #ffffff;
  border: 1px solid #201d1d;
}
.button_cs_black:hover:not(:disabled) {
  background-color: rgb(90%, 90%, 90%);
  color: #201d1d;
}
.button_cs_black:active:not(:disabled) {
  color: #201d1d;
  transform: scale(0.97);
  background-color: rgb(85%, 85%, 85%);
  transition: all 0s;
}

@media only screen and (max-width: 480px) {
  .witdth_180 {
    min-width: 100px;
  }
}
.header .header_section_1 {
  max-height: 70px;
  min-height: 35px;
  height: 8vw;
}
.header .header_section_2 {
  max-height: 124px;
  min-height: 60px;
  height: 12vw;
}

.footer .footer_section_1 {
  max-height: 400px;
  min-height: 200px;
  height: 16vw;
}
.footer .footer_section_2 {
  max-height: 64px;
  min-height: 30px;
  height: 8vw;
}

.image_left_content_right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.image_left_content_right .image {
  width: 65.973%;
  max-width: 960px;
  flex-shrink: 0;
}
.image_left_content_right .image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.image_left_content_right .content {
  flex-grow: 1;
  margin-left: 40px;
  margin-left: 2vw;
}
@media only screen and (min-width: 2000px) {
  .image_left_content_right .content {
    margin-left: 40px;
  }
}
.image_left_content_right .content .brand_hero_content_logo {
  margin-bottom: 1em;
  width: 60%;
  max-width: 280px;
  line-height: 1;
  font-size: clamp(25px, 1.7vw, 40px);
}
.image_left_content_right .content .brand_hero_content_logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 2000px) {
  .image_left_content_right .content .brand_hero_content_logo {
    margin-bottom: 40px;
  }
}
.image_left_content_right .content .content_with_icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.image_left_content_right .content .content_with_icon:not(:last-child) {
  margin-bottom: 24px;
}
.image_left_content_right .content .content_with_icon a {
  color: #201d1d;
  transition: all 0.1s;
}
.image_left_content_right .content .content_with_icon a:hover {
  color: #d5c199;
}
.image_left_content_right .content .content_with_icon .phone {
  text-decoration: none;
}
.image_left_content_right .content .content_with_icon .name {
  font-weight: 700;
  font-size: 20px;
}
.image_left_content_right .content .content_with_icon .text {
  font-weight: 400;
  font-size: 20px;
}
.image_left_content_right .content .content_with_icon a.text:not(.phone) {
  text-decoration: underline;
}
.image_left_content_right .content .content_with_icon .icon {
  display: block;
  height: fit-content;
  width: 32px;
  margin-left: 24px;
  flex-shrink: 0;
}
.image_left_content_right .content .social_networks {
  margin: 25px 0 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.image_left_content_right .content .social_networks a {
  text-decoration: none;
  display: block;
  margin-left: 25px;
  width: 32px;
}
.image_left_content_right .content .social_networks a img {
  display: block;
  width: 100%;
  height: auto;
}
.image_left_content_right .content .social_networks a:hover img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(35%) saturate(319%) hue-rotate(1deg) brightness(91%) contrast(92%);
}
.image_left_content_right .content_vertical_center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 980px) {
  .image_left_content_right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .image_left_content_right .image {
    width: 100%;
    flex-shrink: 0;
  }
  .image_left_content_right .content {
    margin-left: 0px;
    margin-top: 30px;
  }
}
.text_block .text_block_title {
  font-weight: 700;
  font-size: clamp(20px, 2vw, 32px);
  margin-bottom: 0.8em;
}
.text_block a {
  text-decoration: underline;
}
.text_block a:hover {
  color: #d5c199;
}
.text_block p {
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1em;
}
.text_block h2 {
  font-weight: 600;
  font-size: clamp(20px, 2vw, 40px);
  margin-bottom: 0.8em;
}
.text_block h3 {
  font-weight: 600;
  font-size: clamp(20px, 2vw, 32px);
  margin-bottom: 0.8em;
}
.text_block h4 {
  font-weight: 600;
  font-size: clamp(16px, 2vw, 24px);
  margin-bottom: 0.8em;
}
.text_block ul,
.text_block ol {
  list-style-type: none;
  font-size: clamp(16px, 1.7vw, 20px);
  margin-bottom: 1.2em;
}
.text_block ul li,
.text_block ol li {
  font-size: inherit;
  position: relative;
  padding-right: 1.5em;
}
.text_block ul li::before,
.text_block ol li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.12em;
  font-size: inherit;
  width: 1.2em;
  height: 1.2em;
  background-image: url(../images/circle_check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.text_block ul li:not(:last-of-type),
.text_block ol li:not(:last-of-type) {
  margin-bottom: 0.6em;
}
.text_block ul li strong,
.text_block ol li strong {
  font-weight: 600;
}
.text_block .alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
.text_block .alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.text_block .aligncenter {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
.text_block *:last-child {
  margin-bottom: 0;
}

.branch_links_buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.branch_links_buttons .branch_links_button:not(:last-child) {
  margin-left: 24px;
}
.branch_links_buttons .additional_link_1 {
  background-color: #C1D5A1;
}
.branch_links_buttons .additional_link_1:hover {
  background-color: rgb(66.568627451%, 77.3529411765%, 49.3137254902%);
}
.branch_links_buttons .additional_link_1:active {
  background-color: rgb(62.0098039216%, 74.2647058824%, 42.4019607843%);
}
.branch_links_buttons .additional_link_2 {
  background-color: #EAA794;
}
.branch_links_buttons .additional_link_2:hover {
  background-color: rgb(88.4834558824%, 51.7401960784%, 41.3204656863%);
}
.branch_links_buttons .additional_link_2:active {
  background-color: rgb(86.8428308824%, 44.8651960784%, 32.9610906863%);
}

.branch_gallery .branch_gallery_item:not(:last-child) {
  margin-bottom: 2vw;
}
.branch_gallery .branch_gallery_item .image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}
.branch_gallery .branch_gallery_item .image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.branch_gallery .branch_gallery_item .image:hover:not(.has_video)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../images/zoom-in.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 48px;
}
@media only screen and (max-width: 680px) {
  .branch_gallery .branch_gallery_item .image:hover:not(.has_video)::after {
    background-size: 28px;
  }
}
.branch_gallery .branch_gallery_item .has_video .play_video {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  max-width: 62px;
  max-height: 62px;
  min-width: 18px;
  min-height: 18px;
  width: 4.5vw;
  height: 4.5vw;
  background-image: url(../images/play_video.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  background-color: transparent;
  transition: all 0.05s;
}
.branch_gallery .branch_gallery_item .has_video .play_video:active {
  transform: scale(0.97);
}
.branch_gallery .branch_gallery_item .has_video:hover::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.branch_gallery .image_6_style {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
}
.branch_gallery .image_3_style {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 2vw;
}
.branch_gallery .image_3_style > .image_1 {
  grid-area: 1 / 2 / 3 / 4;
}
.branch_gallery .image_3_style > .image_1 img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.branch_gallery .image_3_style > .image_2 {
  grid-area: 2 / 1 / 3 / 2;
}
.branch_gallery .image_3_style > .image_3 {
  grid-area: 1 / 1 / 2 / 2;
}

@media only screen and (max-width: 800px) {
  .branch_links_buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .branch_links_buttons .branch_links_button {
    width: 100%;
  }
  .branch_links_buttons .branch_links_button:not(:last-child) {
    margin-left: 0;
  }
  .branch_gallery .branch_gallery_item:not(:last-child) {
    margin-bottom: 20px;
  }
  .branch_gallery .image_6_style {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .branch_gallery .image_3_style {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .branch_gallery .image_3_style > .image_1 {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .branch_gallery .image_3_style > .image_1 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: initial;
    object-position: initial;
  }
  .branch_gallery .image_3_style > .image_2 {
    grid-column: 1;
    grid-row: 2;
  }
  .branch_gallery .image_3_style > .image_3 {
    grid-column: 2;
    grid-row: 2;
  }
}
.product_menu_tabs .tabs_titles_show_current {
  display: none;
}
.product_menu_tabs .tabs_titles_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #d5c199;
  border-radius: 8px;
  overflow: hidden;
  padding: 0 25px;
}
.product_menu_tabs .tabs_titles_wrap .tab_title {
  cursor: pointer;
  height: 50px;
  padding: 10px 20px;
  color: #201d1d;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
  flex-grow: 1;
  flex-basis: 1px;
  transition: all 0.1s;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.product_menu_tabs .tabs_titles_wrap .tab_title:hover {
  background-color: rgb(95.1960784314%, 92.908496732%, 88.3333333333%);
}
.product_menu_tabs .tabs_titles_wrap .tab_title:active {
  background-color: #000000 !important;
  color: #ffffff;
}
.product_menu_tabs .tabs_titles_wrap .tab_title:not(:last-child) {
  margin-left: 1vw;
}
.product_menu_tabs .tabs_titles_wrap .tab_title.current_tab_title {
  background-color: #201d1d;
  color: #ffffff;
}
.product_menu_tabs .scrollbar_wpap {
  border: 1px solid #d5c199;
  margin-top: 20px;
  padding: 2vw 2vw 2vw 1vw;
}
@media only screen and (min-width: 2000px) {
  .product_menu_tabs .scrollbar_wpap {
    padding: 40px 40px 40px 20px;
  }
}
.product_menu_tabs .scrollbar_wpap {
  border-radius: 8px;
}
.product_menu_tabs .tabs_contents_wrap {
  padding-left: 1vw;
  border-radius: 8px;
  height: 50vw;
  height: 35vw;
  max-height: 1050px;
  overflow: auto;
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 4px;
}
.product_menu_tabs .tabs_contents_wrap::-webkit-scrollbar {
  width: var(--sb-size);
}
.product_menu_tabs .tabs_contents_wrap::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.product_menu_tabs .tabs_contents_wrap::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .product_menu_tabs .tabs_contents_wrap {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.product_menu_tabs .tabs_contents_wrap .tab_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  display: none;
}
.product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item {
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border: 1px solid #d5c199;
}
.product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .image {
  flex-shrink: 0;
  width: 52%;
  max-width: 335px;
}
.product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .description {
  flex-grow: 1;
  padding: 1vw;
}
@media only screen and (min-width: 2000px) {
  .product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .description {
    padding: 25px;
  }
}
.product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .description .name {
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 700;
  margin-bottom: 0.8em;
}
.product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .description .text {
  font-size: clamp(14px, 1.7vw, 16px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1em;
}
.product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .description .price {
  line-height: 1;
}
.product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .description .price .old_price {
  display: inline-block;
  margin-right: 0.7em;
  font-size: clamp(14px, 2.4vw, 20px);
  font-weight: 400;
  opacity: 0.5;
  position: relative;
  text-decoration: line-through;
}
.product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .description .price .new_price {
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 700;
  display: inline-block;
}
.product_menu_tabs .tabs_contents_wrap .tab_content_image {
  display: none;
  height: 100%;
}
.product_menu_tabs .tabs_contents_wrap .tab_content_image .image_wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.product_menu_tabs .tabs_contents_wrap .current_tab_content.tab_content_image {
  display: block;
}
.product_menu_tabs .tabs_contents_wrap .current_tab_content {
  display: grid;
}

.menu_item_image_single_title {
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 500;
  margin-bottom: 0.8em;
}

.menu_item_image_single {
  width: 100%;
  height: 70vh;
  border-radius: 8px;
  padding: 2vw 2vw 2vw 1vw;
}
@media only screen and (min-width: 2000px) {
  .menu_item_image_single {
    padding: 40px 40px 40px 20px;
  }
}
.menu_item_image_single {
  border: 1px solid #d5c199;
}
.menu_item_image_single .image_wrap {
  height: 100%;
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 4px;
}
.menu_item_image_single .image_wrap::-webkit-scrollbar {
  width: var(--sb-size);
}
.menu_item_image_single .image_wrap::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.menu_item_image_single .image_wrap::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .menu_item_image_single .image_wrap {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.menu_item_image_single .image_wrap {
  overflow: auto;
}
.menu_item_image_single .image_wrap img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  .product_menu_tabs .tabs_titles_show_current {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: #ffffff;
    background-color: #201d1d;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border-radius: 8px;
    height: 50px;
    padding: 0 20px;
    transition: all 0.3s;
  }
  .product_menu_tabs .tabs_titles_show_current::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
    width: 13px;
    height: 13px;
    background-image: url(../images/arrow_down_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
  }
  .product_menu_tabs .tabs_titles_show_current.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .product_menu_tabs .tabs_titles_show_current.active::after {
    transform: rotate(180deg);
  }
  .product_menu_tabs .tabs_titles_show_current:active {
    background-color: rgb(23.0408228865%, 20.8807457409%, 20.8807457409%);
  }
  .product_menu_tabs .tabs_titles_block {
    display: none;
  }
  .product_menu_tabs .tabs_titles_wrap_mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 0px;
    position: relative;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .product_menu_tabs .tabs_titles_wrap_mobile .tab_title {
    cursor: default;
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .product_menu_tabs .tabs_titles_wrap_mobile .tab_title:hover {
    background-color: rgb(95.1960784314%, 92.908496732%, 88.3333333333%);
  }
  .product_menu_tabs .tabs_titles_wrap_mobile .tab_title:not(:last-child) {
    margin-left: 0vw;
  }
  .product_menu_tabs .tabs_titles_wrap_mobile .tab_title.active {
    background-color: #ffffff;
  }
  .product_menu_tabs .tabs_titles_wrap_mobile .tab_title.current_tab_title {
    background-color: rgb(95.1960784314%, 92.908496732%, 88.3333333333%);
    color: #201d1d;
    position: relative;
    z-index: 2;
    padding-left: 40px;
  }
}
@media only screen and (max-width: 820px) {
  .product_menu_tabs .tabs_titles_wrap {
    padding: 0px;
  }
  .product_menu_tabs .tabs_titles_wrap .tab_title {
    padding: 17px 20px;
  }
  .product_menu_tabs .scrollbar_wpap {
    padding: 3vw 3vw 3vw 1.5vw;
  }
  .product_menu_tabs .tabs_contents_wrap {
    padding-left: 1.5vw;
    height: 110vw;
  }
  .product_menu_tabs .tabs_contents_wrap .tab_content {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .image {
    width: 33%;
    max-width: 150px;
    min-width: 64px;
  }
  .product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
  }
  .product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .description {
    padding: 1.5vw 4vw 1.5vw 1.5vw;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .description .name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .description .text {
    display: none;
  }
  .product_menu_tabs .tabs_contents_wrap .tab_content .tab_content_item .description .price {
    margin-top: auto;
  }
}
@media only screen and (max-width: 480px) {
  .product_menu_tabs .tabs_contents_wrap {
    height: 140vw;
  }
}
.archive_halls_list_select {
  position: relative;
  z-index: 2;
  width: fit-content;
}
.archive_halls_list_select .archive_halls_list_select_button {
  min-width: 184px;
}
.archive_halls_list_select .archive_halls_list_select_button.active {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.archive_halls_list_select .archive_halls_list_select_button.active::after {
  transform: rotate(180deg);
}
.archive_halls_list_select:focus-within:not(.archive-halls-collapsed) .archive_halls_list_select_button {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.archive_halls_list_select:focus-within:not(.archive-halls-collapsed) .archive_halls_list_select_button::after {
  transform: rotate(180deg);
}
.archive_halls_list_select:focus-within:not(.archive-halls-collapsed) .archive_halls_list_select_js {
  display: block;
}
.archive_halls_list_select.is-open .archive_halls_list_select_js {
  display: block;
}
.archive_halls_list_select .archive_halls_list_select {
  position: absolute;
  top: calc(100% + 5px);
  list-style-type: none;
  background-color: #ffffff;
  border: 1px solid #d5c199;
  border-radius: 8px;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: clamp(14px, 2vw, 16px);
  overflow: hidden;
  display: none;
}
.archive_halls_list_select .archive_halls_list_select li {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.archive_halls_list_select .archive_halls_list_select li a {
  transition: all 0.1s;
  padding: 5px 10px;
  text-decoration: none;
  color: #201d1d;
  display: block;
}
.archive_halls_list_select .archive_halls_list_select li:hover a {
  background-color: #d5c199;
  color: #ffffff;
}

.archive_halls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2vw;
  grid-row-gap: 4vw;
}
@media only screen and (min-width: 2000px) {
  .archive_halls {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}
.archive_halls .archive_halls_item .image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.archive_halls .archive_halls_item .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  flex-grow: 1;
  margin-top: 40px;
}
.archive_halls .archive_halls_item .content .adress {
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 24px);
  margin-bottom: 1em;
}
.archive_halls .archive_halls_item .content .description {
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 24px);
  margin-bottom: 0.5em;
}
.archive_halls .archive_halls_item .content .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-bottom: 30px;
}
.archive_halls .archive_halls_item .content .text p {
  font-size: clamp(16px, 1.7vw, 24px);
}
.archive_halls .archive_halls_item .content .text p:not(:last-child) {
  margin-bottom: 0.6em;
}
.archive_halls .archive_halls_item .content .text ol,
.archive_halls .archive_halls_item .content .text ul {
  padding-left: 20px;
}
.archive_halls .archive_halls_item .content .links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
}
.archive_halls .archive_halls_item .content .links .link:not(:last-child) {
  margin-left: 1.3em;
}

.archive_halls_slider_wrap {
  display: block;
}
.archive_halls_slider_wrap .archive_halls_slider {
  overflow: hidden;
}
.archive_halls_slider_wrap .archive_halls_slider .slider_wrap .archive_halls_slider_item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.archive_halls_slider_wrap .archive_halls_slider .slider_button_prev,
.archive_halls_slider_wrap .archive_halls_slider .slider_button_next {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  max-width: 64px;
  max-height: 64px;
  min-width: 32px;
  min-height: 32px;
  width: 6vw;
  height: 6vw;
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
}
.archive_halls_slider_wrap .archive_halls_slider .slider_button_prev:hover,
.archive_halls_slider_wrap .archive_halls_slider .slider_button_next:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.archive_halls_slider_wrap .archive_halls_slider .slider_button_prev:active,
.archive_halls_slider_wrap .archive_halls_slider .slider_button_next:active {
  transform: scale(0.97);
}
.archive_halls_slider_wrap .archive_halls_slider .slider_button_next {
  right: 0;
  background-image: url(../images/slider_button_next.svg);
}
.archive_halls_slider_wrap .archive_halls_slider .slider_button_prev {
  left: 0;
  background-image: url(../images/slider_button_prev.svg);
}
.archive_halls_slider_wrap .archive_halls_slider .swiper-button-disabled {
  display: none;
}

@media only screen and (max-width: 780px) {
  .archive_halls {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 50px;
  }
  .archive_halls .archive_halls_item .content {
    margin-top: 30px;
  }
  .archive_halls .archive_halls_item .content .links .link {
    flex-grow: 1;
    flex-basis: 1px;
  }
}
body .select2-container {
  width: 185px !important;
}
body .select2-container .selection .select2-selection {
  background-color: #d5c199;
  width: 100% !important;
  border: none;
  border-radius: 8px;
  height: 50px;
}
body .select2-container .selection .select2-selection .select2-selection__rendered {
  height: 100%;
  line-height: 48px;
  padding: initial;
  padding-left: 38px;
  padding-right: 20px;
}
body .select2-container .selection .select2-selection .select2-selection__arrow {
  height: 50px;
  top: 0;
  left: 10px;
}
body .select2-container .selection .select2-selection .select2-selection__arrow b {
  width: 12px;
  height: 12px;
  border: none;
  background-image: url(../images/select_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  top: 2px;
  bottom: 0;
  left: 0;
  right: 0;
}
body .select_wrapper .select2-container .selection .select2-selection .select2-selection__arrow b {
  background-image: url(../images/select_arrow_brown.svg);
}
body .select2-container--open .selection .select2-selection .select2-selection__arrow b {
  transform: rotate(180deg);
}
body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #d5c199;
}
body .select2-container--default .select2-results > .select2-results__options {
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 4px;
}
body .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: var(--sb-size);
}
body .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
body .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  body .select2-container--default .select2-results > .select2-results__options {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
body .select2-container--default .select2-results > .select2-results__options li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2_custom_style_select {
  border-color: #d5c199 !important;
  direction: rtl;
}

.contact_form_wrap {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  padding: 2vw;
  border: 1px solid #d5c199;
  background-color: #fff7f0;
  position: relative;
}
@media only screen and (max-width: 680px) {
  .contact_form_wrap {
    padding: 40px;
  }
}
.contact_form_wrap {
  border-radius: 8px;
}
.contact_form_wrap .wpcf7[dir=ltr] {
  direction: rtl;
  text-align: right;
}
.contact_form_wrap .wpcf7 {
  width: 100%;
}
.contact_form_wrap .wpcf7 form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contact_form_wrap .wpcf7 form > div p label br {
  display: none;
}
.contact_form_wrap .wpcf7 form > div p label small {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
}
.contact_form_wrap .wpcf7 form > div p label > span {
  width: 100%;
  display: block;
  position: relative;
}
.contact_form_wrap .wpcf7 form > div p label > span input {
  width: 100%;
  height: 50px;
  border: 1px solid #d5c199;
  border-radius: 8px;
  font-size: 16px;
  padding: 0 20px;
}
.contact_form_wrap .wpcf7 form > div p label > span input[type=url],
.contact_form_wrap .wpcf7 form > div p label > span input[type=email] {
  direction: rtl;
}
.contact_form_wrap .wpcf7 form > div p label > span input[type=tel] {
  text-align: right;
}
.contact_form_wrap .wpcf7 form > div p label > span .wpcf7-not-valid {
  border-color: #ff0000;
}
.contact_form_wrap .wpcf7 form > div p label > span .wpcf7-not-valid-tip {
  font-size: 14px;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
}
.contact_form_wrap .wpcf7 form .input_wrapper {
  width: calc(50% - 2vw);
  margin-bottom: 32px;
}
.contact_form_wrap .wpcf7 form .textarea_wrapper {
  width: 100%;
  margin-bottom: 32px;
}
.contact_form_wrap .wpcf7 form .textarea_wrapper textarea {
  width: 100%;
  height: 100px;
  resize: vertical;
  border: 1px solid #d5c199;
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
}
.contact_form_wrap .wpcf7 form .submit_wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact_form_wrap .wpcf7 form .submit_wrapper p {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin-right: auto;
  height: fit-content;
}
.contact_form_wrap .wpcf7 form .submit_wrapper p .wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 5px);
  margin: auto;
}
.contact_form_wrap .wpcf7 form .submit_wrapper p input {
  box-sizing: border-box;
  background-color: #d5c199;
  color: #201d1d;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
  font-size: clamp(14px, 2vw, 16px);
  padding: 0.5em;
  font-weight: 600;
  height: 3.2em;
  max-height: 50px;
  min-width: 98px;
  width: 9em;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.1s;
}
.contact_form_wrap .wpcf7 form .submit_wrapper p input:hover {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.contact_form_wrap .wpcf7 form .submit_wrapper p input:active {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.contact_form_wrap .wpcf7 form .wpcf7-response-output {
  padding: 0 30px 0 0;
  font-size: 14px;
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  margin: 0;
  border-width: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.contact_form_wrap .wpcf7 form .wpcf7-response-output::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contact_form_wrap .wpcf7 form.success .wpcf7-response-output::after {
  background-image: url(../images/success_icon.svg);
}
.contact_form_wrap .wpcf7 form.failed .wpcf7-response-output::after {
  background-image: url(../images/alert_icon.svg);
}

form .select_wrapper {
  width: calc(50% - 2vw);
  margin-bottom: 32px;
}
form .select_wrapper .select2-container {
  width: 100% !important;
}
form .select_wrapper .select2-container .selection .select2-selection {
  background-color: #ffffff;
  border: 1px solid #d5c199;
}
form .select_wrapper .wpcf7-not-valid + .select2-container {
  border-color: #ff0000;
}
form .select_wrapper .wpcf7-not-valid + .select2-container .selection .select2-selection {
  border-color: #ff0000;
}

@media only screen and (max-width: 820px) {
  .contact_form_wrap {
    padding: 20px;
    border-radius: 8px;
  }
  .contact_form_wrap .wpcf7 form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .contact_form_wrap .wpcf7 form .input_wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
  .contact_form_wrap .wpcf7 form .textarea_wrapper {
    margin-bottom: 20px;
  }
  .contact_form_wrap .wpcf7 form .textarea_wrapper textarea {
    height: 80px;
  }
  form .select_wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
}
.content_vacancies .text_block p {
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0;
}
.content_vacancies .text_block p:not(:last-of-type) {
  margin-bottom: 1em;
}

.vacancies_list .vacancies_list_item {
  margin-bottom: 5px;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_title {
  display: block;
  width: 100%;
  text-align: inherit;
  text-decoration: none;
  color: inherit;
  background-color: #fff7f0;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1;
  font-weight: 600;
  position: relative;
  padding: 0.7em 1em 0.7em 2em;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #d5c199;
  transition: all 0.1s;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_title::after {
  content: "";
  position: absolute;
  font-size: inherit;
  top: 0;
  left: 1em;
  bottom: 0;
  margin: auto;
  width: 0.6em;
  height: 0.6em;
  background-image: url(../images/arrow_down_black.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.1s;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_title:hover {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.vacancies_list .vacancies_list_item .vacancies_list_item_title:active {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.vacancies_list .vacancies_list_item .vacancies_list_item_title.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_title.active::after {
  transform: rotate(180deg);
}
.vacancies_list .vacancies_list_item:first-child .vacancies_list_item_title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.vacancies_list .vacancies_list_item:last-child .vacancies_list_item_title {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 2vw;
  border: 1px solid #d5c199;
  border-top: none;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text {
  flex-grow: 1;
  font-size: clamp(16px, 1.7vw, 20px);
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .vacancy_block:not(:last-of-type) {
  margin-bottom: 2em;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .vacancies_list_item_text_title_small {
  font-weight: 600;
  font-size: clamp(16px, 2.4vw, 24px);
  margin-bottom: 0.5em;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .vacancies_list_item_text_title {
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 32px);
  margin-bottom: 0.5em;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text ul,
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text ol {
  list-style-type: none;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text ul li,
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text ol li {
  padding: initial;
  border-bottom: initial;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text ul li:not(:last-of-type),
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text ol li:not(:last-of-type) {
  margin-bottom: 0.7em;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text ul li strong,
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text ol li strong {
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 600;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .list_style_type_default {
  list-style-type: initial;
  padding-right: 1em;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .list_style_type_check li {
  font-size: clamp(16px, 2.4vw, 20px);
  position: relative;
  padding-right: 1.5em;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .list_style_type_check li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.12em;
  font-size: inherit;
  width: 1.2em;
  height: 1.2em;
  background-image: url(../images/circle_check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .vacancy_offers li {
  position: relative;
  padding-right: 1.5em;
  font-size: clamp(16px, 2.4vw, 20px);
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .vacancy_offers li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.12em;
  font-size: inherit;
  width: 1.2em;
  height: 1.2em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .vacancy_offers .point_1::before {
  background-image: url(../images/point_1.svg);
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .vacancy_offers .point_2::before {
  background-image: url(../images/point_2.svg);
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .vacancy_offers .point_3::before {
  background-image: url(../images/point_3.svg);
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .vacancy_offers .point_4::before {
  background-image: url(../images/point_4.svg);
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .vacancy_offers .point_5::before {
  background-image: url(../images/point_5.svg);
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_text .vacancies_list_item_text_text {
  font-size: clamp(16px, 2.4vw, 24px);
  line-height: 1.4;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_image {
  flex-shrink: 0;
  width: 29vw;
  max-width: 550px;
  margin-right: 2vw;
}
.vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  position: sticky;
  top: 20px;
}
.vacancies_list .accordion_item_content_js {
  display: none;
}

@media only screen and (max-width: 820px) {
  .vacancies_list .vacancies_list_item {
    margin-bottom: 5px;
  }
  .vacancies_list .vacancies_list_item .vacancies_list_item_title {
    padding: 1em 1em;
    cursor: default;
  }
  .vacancies_list .vacancies_list_item .vacancies_list_item_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 30px 20px;
  }
  .vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_image {
    width: 100%;
    margin: 0 auto 30px auto;
    max-width: 460px;
  }
  .vacancies_list .vacancies_list_item .vacancies_list_item_content .vacancies_list_item_image img {
    position: relative;
    top: initial;
  }
}
.about_us_icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 2vw 0;
}
.about_us_icons .about_us_icons_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-grow: 1;
  flex-basis: 1px;
  background-color: #fff7f0;
  border: 1px solid #d5c199;
  border-radius: 8px;
  padding: 15px 10px;
  aspect-ratio: 1/0.85;
  max-width: 260px;
}
.about_us_icons .about_us_icons_item:not(:last-child) {
  margin-left: 2vw;
}
.about_us_icons .about_us_icons_item .icon {
  display: block;
  width: 100%;
  height: auto;
  max-width: 64px;
  min-width: 48px;
  width: 30%;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
}
.about_us_icons .about_us_icons_item .text {
  transition: all 0.2s ease-in-out;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-top: 30px;
}
.about_us_icons .about_us_icons_item:hover .icon {
  transform: scale(1.1) translateY(-10px);
}
.about_us_icons .about_us_icons_item:hover .text {
  color: #d5c199;
}

@media only screen and (max-width: 820px) {
  .about_us_icons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 30px 0;
  }
  .about_us_icons .about_us_icons_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-grow: initial;
    flex-basis: initial;
    border-radius: 8px;
    padding: 15px 10px;
    aspect-ratio: initial;
    max-width: 100%;
  }
  .about_us_icons .about_us_icons_item:not(:last-child) {
    margin-left: 0vw;
    margin-bottom: 10px;
  }
  .about_us_icons .about_us_icons_item .icon {
    width: 48px;
    margin: 0;
  }
  .about_us_icons .about_us_icons_item .text {
    text-align: center;
    margin-top: 0px;
    margin-right: 20px;
  }
  .about_us_icons .about_us_icons_item:hover .icon {
    transform: scale(1.1) translateY(0px) translateX(10px);
  }
}
.information_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.information_block .image {
  flex-shrink: 0;
  margin-left: 2vw;
}
.information_block .image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.information_block .content {
  flex-grow: 1;
}

.conditions_text_block {
  display: none;
}

.club_registration_form {
  background-color: #fff7f0;
  border-radius: 8px;
  border: 1px solid #d5c199;
  margin: 0 auto;
  width: 100%;
  max-width: 710px;
  padding: 2.2vw;
}
.club_registration_form .club_registration_form_text_1 {
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.2;
  text-align: center;
  width: 100%;
  max-width: 450px;
  margin: 0 auto 2em auto;
}
.club_registration_form .club_registration_form_text_2 {
  font-weight: 400;
  font-size: clamp(14px, 1.7vw, 20px);
  line-height: 1.2;
  text-align: center;
  width: 100%;
  max-width: 450px;
  margin: 1.5em auto 0 auto;
}
.club_registration_form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.club_registration_form form .input_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-grow: 1;
}
.club_registration_form form .input_wrap .input_wrap_text {
  flex-shrink: 0;
  margin-left: 15px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}
.club_registration_form form .input_wrap input {
  width: 100%;
  font-size: 16px;
  height: 49px;
  border-radius: 8px;
  padding: 0 10px;
  border: 1px solid #d5c199;
  background-color: #ffffff;
  flex-grow: 1;
}
.club_registration_form form .sms_code_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.club_registration_form form .sms_code_wrap input {
  text-align: center;
  display: inline-block;
  height: 49px;
  width: 35px;
  border-radius: 8px;
  padding: 0 5px;
  background-color: #ffffff;
  border: 1px solid #d5c199;
  font-size: 18px;
}
.club_registration_form form .sms_code_wrap input:not(:last-child) {
  margin-left: 18px;
}
.club_registration_form form .sms_code_wrap input::-webkit-outer-spin-button,
.club_registration_form form .sms_code_wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.club_registration_form form .sms_code_wrap {
  /* For Firefox */
}
.club_registration_form form .sms_code_wrap input[type=number] {
  -moz-appearance: textfield;
}
.club_registration_form form .button_submit {
  flex-shrink: 0;
  margin-right: 24px;
}
.club_registration_form .content_center {
  margin: 0 auto;
  width: fit-content;
}

@media only screen and (max-width: 980px) {
  .information_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .information_block .image {
    margin-left: 0vw;
    max-width: 400px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 680px) {
  .club_registration_form {
    padding: 30px 20px;
  }
  .club_registration_form form .input_wrap .input_wrap_text {
    margin-left: 10px;
  }
  .club_registration_form form .input_wrap input {
    height: 40px;
  }
  .club_registration_form form .sms_code_wrap input {
    height: 40px;
    width: 30px;
  }
  .club_registration_form form .sms_code_wrap input:not(:last-child) {
    margin-left: 6px;
  }
  .club_registration_form form .button_submit {
    margin-right: 10px;
    width: 78px;
    max-width: initial;
    min-width: initial;
    height: 40px;
  }
}
.contacts_page_form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contacts_page_form .image {
  flex-shrink: 0;
  margin-right: 40px;
  max-width: 460px;
  width: 25vw;
}
.contacts_page_form .image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.contacts_page_form .contact_form_wrap {
  flex-grow: 1;
  max-width: initial;
  margin: initial;
  padding: 40px;
}
.contacts_page_form .contact_form_wrap form div:nth-of-type(1) {
  order: 0;
}
.contacts_page_form .contact_form_wrap form div:nth-of-type(2) {
  order: 2;
}
.contacts_page_form .contact_form_wrap form div:nth-of-type(3) {
  order: 3;
}
.contacts_page_form .contact_form_wrap form div:nth-of-type(4) {
  order: 1;
}
.contacts_page_form .contact_form_wrap form div:nth-of-type(5) {
  order: 4;
}
.contacts_page_form .contact_form_wrap form div:nth-of-type(6) {
  order: 5;
}
.contacts_page_form .contact_form_wrap form .submit_wrapper p input {
  max-width: 180px;
  width: 10vw;
}
.contacts_page_form .contact_form_wrap form .wpcf7-response-output {
  padding: 0 30px 0 0;
  font-size: 14px;
  position: absolute;
  top: initial;
  bottom: 15px;
  left: 40px;
  margin: 0;
  border-width: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.contacts_page_form .contact_form_wrap form .wpcf7-response-output::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contacts_page_form .contact_form_wrap form.success .wpcf7-response-output::after {
  background-image: url(../images/success_icon.svg);
}
.contacts_page_form .contact_form_wrap form.failed .wpcf7-response-output::after {
  background-image: url(../images/alert_icon.svg);
}

.contacts_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 5.5vw;
}
.contacts_info .contacts_info_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: fit-content;
}
.contacts_info .contacts_info_item .icon {
  flex-shrink: 0;
  width: 32px;
  margin-left: 16px;
}
.contacts_info .contacts_info_item .icon img {
  display: block;
  width: 100%;
  height: auto;
}
.contacts_info .contacts_info_item .text .title {
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1;
  margin-bottom: 0.7em;
  font-weight: 600;
}
.contacts_info .contacts_info_item .text p {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}
.contacts_info .contacts_info_item .text .text_decoration_underline {
  text-decoration: underline;
}
.contacts_info .contacts_info_item .text a {
  transition: all 0.1s;
}
.contacts_info .contacts_info_item .text a:hover {
  color: #d5c199;
}

@media only screen and (max-width: 1200px) {
  .contacts_page_form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .contacts_page_form .image {
    display: none;
  }
}
@media only screen and (max-width: 820px) {
  .contacts_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contacts_info .contacts_info_item:not(:last-child) {
    margin-bottom: 24px;
  }
  .contacts_page_form .contact_form_wrap {
    padding: 20px 20px 40px 20px;
  }
  .contacts_page_form .contact_form_wrap form .wpcf7-response-output {
    padding: 0 20px 0 0;
    left: 20px;
    font-size: 12px;
  }
}
.post_published_date {
  position: relative;
}
.post_published_date::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: inherit;
  width: 1.1em;
  height: 1.1em;
  mask: url("../images/calendar-event.svg");
  -webkit-mask: url("../images/calendar-event.svg");
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  background-color: #d5c199;
}
.post_published_date .date {
  padding-top: 2px;
  padding-right: 1.8em;
  font-size: clamp(14px, 1.7vw, 16px);
  font-weight: 500;
  margin: 2em 0 1.2em 0;
  font-weight: 400;
}

.loading {
  text-align: center;
  padding: 1rem;
  font-weight: 500;
  background-color: #fff7f0;
  margin: 2vw 0 0vw 0;
  display: none;
  height: fit-content;
}
@media only screen and (min-width: 2000px) {
  .loading {
    margin: 40px 0 0px 0;
  }
}
@media only screen and (max-width: 1200px) {
  .loading {
    margin: 20px 0 0px 0;
  }
}
.loading .loading_text {
  line-height: 1;
  font-size: 16px;
}
.loading .loading_progress {
  margin: 0 auto;
  width: 240px;
  border-radius: 8px;
  border: 2px solid #201d1d;
  padding: 2px;
  display: none;
}
.loading .loading_progress .loading_progress_bar_wrap {
  border-radius: inherit;
  overflow: hidden;
  width: 100%;
  display: block;
}
.loading .loading_progress .loading_progress_bar_wrap .loading_progress_bar {
  display: block;
  height: 10px;
  background-color: #d5c199;
  width: 0;
}

.loading_active .loading_text {
  margin-bottom: 15px;
}
.loading_active .loading_progress {
  display: block;
}
@keyframes indeterminate-load {
  0% {
    width: 0%;
  }
  50% {
    width: 20%;
  }
  100% {
    width: 100%;
  }
}
.loading_active .loading_progress .loading_progress_bar_wrap .loading_progress_bar {
  animation: indeterminate-load 2s infinite ease-in-out;
}

.posts_list_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 3vw 0 2vw 0;
}
@media only screen and (min-width: 2000px) {
  .posts_list_header {
    margin: 60px 0 40px 0;
  }
}
@media only screen and (max-width: 1200px) {
  .posts_list_header {
    margin: 30px 0 20px 0;
  }
}
.posts_list_header .posts_count {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}
.posts_list_header .posts_count .posts_count_title {
  font-size: clamp(16px, 1.7vw, 20px);
  margin-right: 5px;
}
.posts_list_header .posts_list_sort {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}
.posts_list_header .posts_list_sort .posts_list_sort_title {
  margin-left: 5px;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
}

.posts_list_sort_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.posts_list_sort_wrap .select2-container {
  width: 100px !important;
}
.posts_list_sort_wrap .select2-container .selection .select2-selection {
  background-color: transparent;
  width: 100% !important;
  border-radius: 0;
  border: none;
  height: 26px;
}
.posts_list_sort_wrap .select2-container .selection .select2-selection .select2-selection__rendered {
  height: 100%;
  line-height: 26px;
  padding: initial;
  padding-left: 20px;
  padding-right: 0px;
  color: #d5c199;
  font-size: clamp(16px, 1.7vw, 20px);
}
.posts_list_sort_wrap .select2-container .selection .select2-selection .select2-selection__arrow {
  height: 26px;
  top: 0;
  left: 0px;
}
.posts_list_sort_wrap .select2-container .selection .select2-selection .select2-selection__arrow b {
  width: 15px;
  height: 15px;
  border: none;
  background-image: none;
  mask: url("../images/select_arrow.svg");
  -webkit-mask: url("../images/select_arrow.svg");
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  background-color: #d5c199;
  margin: auto;
  top: 2px;
  bottom: 0;
  left: 0;
  right: 0;
}

.posts_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  transition: all 0.2s ease-in-out;
}
.posts_list .posts_list_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.posts_list .posts_list_item .posts_list_item_content:hover .date {
  color: #d5c199;
}
.posts_list .posts_list_item .posts_list_item_content:hover .posts_list_item_title {
  color: #d5c199;
}
.posts_list .posts_list_item .posts_list_item_content:hover .posts_list_item_excerpt {
  color: #d5c199;
}
.posts_list .posts_list_item .posts_list_item_content:hover .posts_list_item_excerpt p {
  color: #d5c199;
}
.posts_list .posts_list_item .posts_list_item_content:hover {
  text-decoration: none;
}
.posts_list .posts_list_item .image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.posts_list .posts_list_item .date {
  line-height: 1;
  font-size: clamp(14px, 1.7vw, 16px);
  font-weight: 500;
  margin: 2em 0 1.2em 0;
  font-weight: 400;
  transition: all 0.1s ease-in-out;
}
.posts_list .posts_list_item .posts_list_item_title {
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(16px, 2vw, 24px);
  margin-bottom: 0.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.1s ease-in-out;
}
.posts_list .posts_list_item .posts_list_item_excerpt {
  font-weight: 400;
  line-height: 1.2;
  font-size: 16px;
  margin-bottom: 3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.1s ease-in-out;
}
.posts_list .posts_list_item .posts_list_item_excerpt p {
  transition: all 0.1s ease-in-out;
}
.posts_list .posts_list_item .posts_list_item_link {
  margin-top: auto;
}

.posts_list_loding {
  opacity: 0.5;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@media only screen and (max-width: 780px) {
  .posts_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
  }
  .posts_list .posts_list_item .date {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .posts_list .posts_list_item .posts_list_item_title {
    margin-bottom: 20px;
  }
  .posts_list .posts_list_item .posts_list_item_excerpt {
    display: none;
  }
  .posts_list .posts_list_item .posts_list_item_link {
    width: 100%;
    max-width: 100%;
  }
}
.faq_list .faq_list_item {
  margin-bottom: 5px;
}
.faq_list .faq_list_item .faq_list_item_title {
  display: block;
  width: 100%;
  text-align: inherit;
  text-decoration: none;
  color: #201d1d;
  background-color: #fff7f0;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1;
  font-weight: 600;
  position: relative;
  padding: 0.7em 1em 0.7em 2em;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  border: 1px solid #d5c199;
  transition: all 0.1s;
}
.faq_list .faq_list_item .faq_list_item_title::after {
  content: "";
  position: absolute;
  font-size: inherit;
  top: 0;
  left: 1em;
  bottom: 0;
  margin: auto;
  width: 0.6em;
  height: 0.6em;
  background-image: url(../images/arrow_down_black.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.1s;
}
.faq_list .faq_list_item .faq_list_item_title:hover {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.faq_list .faq_list_item .faq_list_item_title:active {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.faq_list .faq_list_item .faq_list_item_title.active {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq_list .faq_list_item .faq_list_item_title.active::after {
  transform: rotate(180deg);
}
.faq_list .faq_list_item:first-child .faq_list_item_title {
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq_list .faq_list_item:last-child .faq_list_item_title {
  border-radius: 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.faq_list .faq_list_item .faq_list_item_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 2vw;
  border: 1px solid #d5c199;
  border-top: none;
  font-size: clamp(16px, 1.7vw, 24px);
}
.faq_list .faq_item_content_js {
  display: none;
}

@media only screen and (max-width: 820px) {
  .faq_list .faq_list_item {
    margin-bottom: 5px;
  }
  .faq_list .faq_list_item .faq_list_item_title {
    padding: 1em 1em 1em 2.2em;
    cursor: default;
  }
  .faq_list .faq_list_item .faq_list_item_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 30px 20px;
  }
  .faq_list .faq_list_item:first-child .faq_list_item_title {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .faq_list .faq_list_item:last-child .faq_list_item_title {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
}
.content_404 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.content_404 .img_404 {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 40px auto 20px auto;
}
.content_404 .text {
  font-size: clamp(14px, 1.7vw, 20px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 2.4em;
}

@media only screen and (max-width: 820px) {
  .content_404 .img_404 {
    margin: 20px auto;
  }
}
.archive_branch {
  position: relative;
  height: 70vh;
}
.archive_branch .archive_branch_map {
  position: relative;
  z-index: 1;
  height: 100%;
}
.archive_branch .archive_branch_map > div {
  height: 100%;
}
.archive_branch .archive_branch_map > div iframe {
  height: 100%;
  display: block;
}
.archive_branch .archive_branch_content_block {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30vw;
  max-width: 460px;
  padding: 2vw 0;
}
@media only screen and (min-width: 2000px) {
  .archive_branch .archive_branch_content_block {
    padding: 60px 0;
  }
}
.archive_branch .archive_branch_content_block .archive_branch_content {
  background-color: #ffffff;
  padding: 30px 30px;
  border-radius: 8px;
  border: 1px solid #d5c199;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: fit-content;
  max-height: 100%;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap {
  overflow: auto;
  height: 100%;
  padding-left: 5px;
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 4px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap:focus,
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap:focus-visible {
  outline: none;
  box-shadow: none;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap::-webkit-scrollbar {
  width: var(--sb-size);
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap .branch_list {
  padding: 0;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap .branch_list li {
  transition: opacity 0.2s ease, visibility 0.2s ease;
  padding: 0;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.1;
  padding: 0.2em 0em;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  border-bottom: 1px solid #dfdfdf;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap .branch_list li .branch_details {
  font-size: inherit;
  line-height: inherit;
  padding: 0.5em;
  display: block;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap .branch_list li .branch_details:hover {
  border-color: #d5c199;
  background-color: #fff7f0;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap .branch_list li .branch_details span {
  display: block;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap .branch_list li .branch_details .branch_name {
  font-size: inherit;
  font-weight: 600;
  margin-bottom: 0.2em;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap .branch_list li .branch_details .branch_address {
  font-size: clamp(14px, 1.7vw, 16px);
  font-weight: 400;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap .branch_list li.hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap .branch_list li.active .branch_details {
  background-color: #d5c199;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search {
  position: relative;
  margin-bottom: 10px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-image: url(../images/search.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search .branch_list_search_input {
  position: relative;
  z-index: 1;
  height: 50px;
  width: 100%;
  border: 1px solid #d5c199;
  border-radius: 8px;
  padding: 0 10px 0 40px;
  font-size: clamp(14px, 1.7vw, 16px);
  font-weight: 400;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search .branch_list_search_input::placeholder {
  color: #201d1d;
  font-size: 16px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search input[type=search]::-webkit-search-decoration,
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search input[type=search]::-webkit-search-cancel-button,
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search input[type=search]::-webkit-search-results-button,
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search input[type=search]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none; /* Helps with general styling reset in webkit browsers */
  appearance: none;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search {
  /* Removes the 'X' from Internet Explorer 10+ */
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search input[type=search]::-ms-clear,
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search .clear_button {
  display: none;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search .close_mobile_branch_list {
  display: none;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search.show_clear_button .clear_button {
  cursor: pointer;
  display: block;
  z-index: 2;
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-image: url(../images/close.svg);
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search.show_clear_button::after {
  display: none;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container {
  width: 100% !important;
  margin-bottom: 10px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container:last-of-type {
  margin-bottom: 20px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container .selection .select2-selection {
  background-color: #ffffff;
  width: 100% !important;
  border: 1px solid #d5c199 !important;
  border: none;
  border-radius: 8px;
  height: 50px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container .selection .select2-selection .select2-selection__clear {
  float: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 50px;
  z-index: 10;
  font-size: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/close.svg);
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container .selection .select2-selection .select2-selection__placeholder {
  color: #201d1d;
  font-size: 16px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container .selection .select2-selection .select2-selection__rendered {
  height: 100%;
  line-height: 48px;
  padding: initial;
  padding-left: 38px;
  padding-right: 20px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container .selection .select2-selection .select2-selection__arrow {
  height: 50px;
  top: 0;
  left: 22px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container .selection .select2-selection .select2-selection__arrow b {
  display: block;
  width: 20px;
  height: 20px;
  border: none;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/select_arrow.svg");
  -webkit-mask: url("../images/select_arrow.svg");
  background-color: #d5c199;
  margin: auto;
  top: 2px;
  bottom: 0;
  left: 0;
  right: 0;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select_wrapper .select2-container .selection .select2-selection .select2-selection__arrow b {
  background-image: url(../images/select_arrow_brown.svg);
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container--open .selection .select2-selection .select2-selection__arrow b {
  transform: rotate(180deg);
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #d5c199;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container--default .select2-results > .select2-results__options {
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 4px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: var(--sb-size);
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .archive_branch .archive_branch_content_block .archive_branch_content .select2-container--default .select2-results > .select2-results__options {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.archive_branch .archive_branch_content_block .archive_branch_content .select2-container--default .select2-results > .select2-results__options li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.branch_list_popup {
  position: absolute;
  top: 2vw;
  left: 0;
  width: 50vw;
  max-width: 860px;
  background-color: #ffffff;
  border: 1px solid #d5c199;
  border-radius: 8px;
  overflow: hidden;
  z-index: 2;
  display: none;
}
@media only screen and (min-width: 2000px) {
  .branch_list_popup {
    top: 60px;
  }
}
.branch_list_popup.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.branch_list_popup .branch_image {
  flex-shrink: 0;
  max-width: 540px;
  width: 64%;
  background-image: url(../images/image_demo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.branch_list_popup .branch_image img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 980px) and (max-width: 1450px) {
  .branch_list_popup .branch_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.branch_list_popup .branch_info {
  flex-grow: 1;
  padding: 2.5vw 2vw 2vw 2vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (min-width: 2000px) {
  .branch_list_popup .branch_info {
    padding: 40px;
  }
}
.branch_list_popup .branch_info {
  font-size: clamp(14px, 1.7vw, 16px);
}
.branch_list_popup .branch_info .close_mobile_branch_info {
  background-color: #d5c199;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  cursor: pointer;
}
.branch_list_popup .branch_info .close_mobile_branch_info:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/close.svg");
  -webkit-mask: url("../images/close.svg");
  background-color: #201d1d;
  mask-size: 70% !important;
  -webkit-mask-size: 70% !important;
}
.branch_list_popup .branch_info .close_mobile_branch_info:hover {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.branch_list_popup .branch_info .close_mobile_branch_info:focus-visible {
  outline: 2px solid #201d1d;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(213, 193, 153, 0.35);
}
.branch_list_popup .branch_info .close_mobile_branch_info:focus {
  outline: 2px solid #201d1d;
  outline-offset: 3px;
}
.branch_list_popup .branch_info .close_mobile_branch_info:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.branch_list_popup .branch_info .branch_name {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 600;
  margin-bottom: 1em;
}
.branch_list_popup .branch_info .branch_info_item {
  position: relative;
  font-size: inherit;
  padding-right: 2em;
}
.branch_list_popup .branch_info .branch_info_item::after {
  content: "";
  position: absolute;
  right: 0;
  top: -0.1em;
  font-size: inherit;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.branch_list_popup .branch_info .branch_address {
  margin-bottom: 1em;
  font-size: inherit;
}
.branch_list_popup .branch_info .branch_address::after {
  background-image: url(../images/location_pin.svg);
}
.branch_list_popup .branch_info .branch_phone {
  margin-bottom: 1em;
  font-size: inherit;
  text-decoration: none;
}
.branch_list_popup .branch_info .branch_phone:hover {
  color: #d5c199;
}
.branch_list_popup .branch_info .branch_phone::after {
  background-image: url(../images/phone.svg);
}
.branch_list_popup .branch_info .branch_link {
  margin-bottom: 1em;
  font-size: inherit;
}
.branch_list_popup .branch_info .branch_link::after {
  background-image: url(../images/id_card.svg);
}
.branch_list_popup .branch_info .socials {
  margin-bottom: 1.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.branch_list_popup .branch_info .socials .social_link {
  text-decoration: none;
  display: block;
}
.branch_list_popup .branch_info .socials .social_link:not(:last-child) {
  margin-left: 15px;
}
.branch_list_popup .branch_info .socials .social_link img {
  display: block;
  width: 100%;
  height: auto;
}
.branch_list_popup .branch_info .popup_link_buttons {
  margin-top: auto;
}
.branch_list_popup .branch_info .popup_link_buttons .additional_link {
  margin-top: 25px;
  width: 100%;
  max-width: 250px;
  padding-right: 3.5em;
  position: relative;
}
.branch_list_popup .branch_info .popup_link_buttons .additional_link::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: inherit;
  width: 1.6em;
  height: 1.6em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/info-circle.svg);
}
.branch_list_popup .branch_info .popup_link_buttons .additional_link.additional_link_1 {
  background-color: #eaa794;
}
.branch_list_popup .branch_info .popup_link_buttons .additional_link.additional_link_1:hover {
  background-color: rgb(88.4834558824%, 51.7401960784%, 41.3204656863%);
}
.branch_list_popup .branch_info .popup_link_buttons .additional_link.additional_link_1:active {
  background-color: rgb(86.8428308824%, 44.8651960784%, 32.9610906863%);
}
.branch_list_popup .branch_info .popup_link_buttons .additional_link.additional_link_1::after {
  background-image: url(../images/bycicle.svg);
}
.branch_list_popup .branch_info .popup_link_buttons .additional_link.additional_link_2 {
  background-color: #c1d5a1;
}
.branch_list_popup .branch_info .popup_link_buttons .additional_link.additional_link_2:hover {
  background-color: rgb(66.568627451%, 77.3529411765%, 49.3137254902%);
}
.branch_list_popup .branch_info .popup_link_buttons .additional_link.additional_link_2:active {
  background-color: rgb(62.0098039216%, 74.2647058824%, 42.4019607843%);
}
.branch_list_popup .branch_info .popup_link_buttons .additional_link.additional_link_2::after {
  background-image: url(../images/calendar-time.svg);
}
.branch_list_popup .branch_info .popup_link_buttons .branch_permalink {
  width: 100%;
  max-width: 250px;
  position: relative;
  padding-right: 3.5em;
}
.branch_list_popup .branch_info .popup_link_buttons .branch_permalink::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: inherit;
  width: 1.6em;
  height: 1.6em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/info-circle.svg);
}

@media only screen and (max-width: 980px) {
  .archive_branch {
    height: initial;
  }
  .archive_branch .archive_branch_map {
    height: 100vh;
  }
  .archive_branch .archive_branch_content_block {
    position: relative;
    z-index: 2;
    top: initial;
    bottom: initial;
    right: initial;
    left: initial;
    width: 100%;
    max-width: initial;
    padding: 0vw 0;
  }
  .archive_branch .archive_branch_content_block .archive_branch_content {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 8;
    border-top-right-radius: 8;
    border-top: 1px solid #d5c199;
    border-left: 1px solid #d5c199;
    border-right: 1px solid #d5c199;
    padding: 30px 20px;
  }
  .archive_branch .archive_branch_content_block .archive_branch_content .branch_list_wrap {
    height: 0;
    transition: all 0.2s ease-in-out;
  }
  .archive_branch .archive_branch_content_block .archive_branch_content .branch_list_search {
    transition: all 0.2s ease-in-out;
  }
  .archive_branch.active .archive_branch_content_block .archive_branch_content .branch_list_wrap {
    height: 30vh;
  }
  .archive_branch.active .archive_branch_content_block .archive_branch_content .close_mobile_branch_list {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/close.svg);
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
  }
  .branch_list_popup {
    top: 30px;
    left: 20px;
    right: 20px;
    margin: auto;
    width: initial;
    max-width: 460px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .branch_list_popup .branch_image {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1/0.72;
  }
  .branch_list_popup .branch_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .branch_list_popup .branch_info {
    padding: 40px;
  }
  .branch_list_popup .branch_info .close_mobile_branch_info {
    background-color: #ffffff;
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/close.svg);
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
  }
  .branch_list_popup .branch_info .popup_link_buttons .button_cs {
    width: fit-content;
    max-width: initial;
    min-width: 170px;
  }
}
.popup_button:hover {
  color: #d5c199 !important;
}

.popup_wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  display: none;
}
.popup_wrap::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(32, 29, 29, 0);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.popup_wrap.active {
  display: block;
}
.popup_wrap.active::after {
  background-color: rgba(32, 29, 29, 0.5);
}

.popup_content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  height: fit-content;
  background-color: #fff7f0;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  padding: 2vw;
  padding: 40px;
  transform: translateY(50%);
  opacity: 0;
  display: none;
}
.popup_content .popup_close {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  background-image: url(../images/close_popup.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.popup_content .popup_close:active {
  transform: scale(0.9);
}
.popup_content .popup_title {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0.8em;
  text-align: center;
}
.popup_content .popup_text {
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1;
  margin-bottom: 1em;
  font-weight: 400;
}
.popup_content .popup_text strong {
  font-weight: 600;
}
.popup_content form p:not(:last-of-type) {
  margin-bottom: 25px;
}
.popup_content form p label {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 14px;
}
.popup_content form p input {
  font-size: 16px;
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #d5c199;
  background-color: #ffffff;
  padding: 0 10px;
}
.popup_content form p input[type=tel] {
  text-align: right;
}
.popup_content form .code_inputs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  gap: 18px;
}
.popup_content form .code_inputs input {
  display: block;
  flex-grow: 1;
  flex-basis: 1px;
  background-color: #ffffff;
  border: 1px solid #d5c199;
  font-size: 16px;
  height: 50px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
}
.popup_content form .code_inputs input:disabled {
  cursor: default;
  opacity: 0.5;
}
.popup_content form .resend_code,
.popup_content form .error_code {
  text-decoration: underline;
  text-align: center;
  cursor: pointer;
  transition: all 0.1;
}
.popup_content form .resend_code:hover,
.popup_content form .error_code:hover {
  color: #d5c199;
}
.popup_content form .login-remember {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.popup_content form .login-remember label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: fit-content;
}
.popup_content form .login-remember label input {
  width: 20px;
  height: 20px;
  margin-left: 20px;
  background-color: #d5c199;
  display: none;
}
.popup_content form .login-remember label .custom_checkbox_helper {
  width: 22px;
  height: 22px;
  margin-left: 20px;
  display: block;
  border-radius: 50%;
  border: 1px solid #d5c199;
  transition: all 0.05s ease-in-out;
  background-image: url(../images/checkbox_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0%;
}
.popup_content form .login-remember label input:checked + .custom_checkbox_helper {
  background-color: #d5c199;
  background-size: 60%;
}
.popup_content form .login-remember label:active .custom_checkbox_helper {
  transform: scale(0.9);
}
.popup_content form .login-submit input {
  border-radius: 8px;
  background-color: #d5c199;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  text-transform: uppercase;
}
.popup_content form .login-submit input:hover {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.popup_content form .login-submit input:disabled {
  cursor: default;
  opacity: 0.5;
}
.popup_content form.validation_error .code_inputs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.popup_content form.validation_error .code_inputs input {
  border-color: #eaa794;
}
.popup_content.display_block {
  display: block;
}
.popup_content.active {
  transition-delay: 0.4s;
  transform: translateY(0);
  opacity: 1;
}

@media only screen and (max-width: 480px) {
  .popup_content {
    max-width: 100%;
    top: initial;
    padding: 55px 40px 40px 40px;
    border-radius: 16px 16px 0 0;
    border: 1px solid #d5c199;
  }
  .popup_content .popup_close {
    border: none;
    background-color: transparent;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background-image: url(../images/close_popup.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .popup_content .popup_close:active {
    transform: scale(0.9);
  }
  .popup_content .popup_title {
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1;
    font-weight: 600;
    margin-bottom: 0.8em;
    text-align: center;
  }
  .popup_content form p:not(:last-of-type) {
    margin-bottom: 25px;
  }
  .popup_content form p label {
    display: block;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .popup_content form p input {
    font-size: 16px;
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #d5c199;
    background-color: #ffffff;
    padding: 0 10px;
  }
  .popup_content form p input[type=tel] {
    text-align: right;
  }
  .popup_content form .login-submit input {
    border-radius: 8px;
    background-color: #d5c199;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    text-transform: uppercase;
  }
  .popup_content form .login-submit input:hover {
    background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
  }
  .popup_content.display_block {
    display: block;
  }
  .popup_content.active {
    transition-delay: 0.4s;
    transform: translateY(0);
    opacity: 1;
  }
}
#wishlist_login_choice_popup .login-choice-nav ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#wishlist_login_choice_popup .login-choice-nav a {
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  text-transform: uppercase;
  display: block;
  width: 100%;
  height: 49px;
  font-weight: 400;
  font-size: 19px;
  text-align: center;
  color: #201d1d;
  line-height: 45px;
}

.woocommerce-account .breadcrumbs {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 2vw 0;
}
@media only screen and (min-width: 2000px) {
  .woocommerce-account .breadcrumbs {
    margin: 40px 0;
  }
}
.woocommerce-account .woocommerce .hiden_page_title_target {
  opacity: 0;
}
.woocommerce-account .woocommerce .hiden_page_title_target.active {
  opacity: 1;
}
.woocommerce-account .woocommerce .my_account_page_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  flex-grow: 1;
  position: relative;
  width: 100%;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination {
  margin-top: 15px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  max-width: 335px;
  min-width: 220px;
  width: 17.5vw;
  flex-shrink: 0;
  margin-left: 7vw;
}
@media only screen and (min-width: 2000px) {
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    margin-left: 160px;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .show_mobile_current_item {
  display: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
  width: 100%;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
  width: inherit;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-of-type) {
  margin-bottom: 4px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:first-of-type a {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:last-of-type a {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
  display: block;
  width: inherit;
  font-size: clamp(16px, 1.7vw, 20px);
  padding: 1em;
  line-height: 1;
  font-weight: 500;
  background-color: #fff7f0;
  border: 1px solid #d5c199;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  position: relative;
  padding-right: 3.2em;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  width: 1.8em;
  height: 1.8em;
  max-width: 32px;
  max-height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
  background-color: #d5c199;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .is-active a {
  background-color: #d5c199;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--edit-account a::after {
  background-image: url(../images/icon_user.svg);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--club-promotions {
 display: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--club-promotions a::after {
  background-image: url(../images/club_promotions.svg);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--orders a::after {
  background-image: url(../images/orders.svg);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--wish-list a::after {
  background-image: url(../images/heart.svg);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--privacy-policy a::after {
  background-image: url(../images/page_icon.svg);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--customer-logout a::after {
  background-image: url(../images/logout.svg);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--my-lists a::after {
  background-image: url(../images/upload.svg);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--payment-methods {
  display: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--payment-methods a::after {
  background-image: url(../images/credit_card.svg);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--my-delivery-addresses a::after {
  background-image: url(../images/location_pin_2.svg);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link--delete-account a::after {
  background-image: url(../images/trash.svg);
}

.woocommerce-MyAccount-content {
  background-color: transparent !important;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff7f0;
  border: 1px solid #d5c199;
  outline: 2px solid transparent;
  border-radius: 8px;
  padding: 2vw;
  transition: all 0.2s;
}
@media only screen and (min-width: 2000px) {
  .woocommerce-MyAccount-content form.woocommerce-EditAccountForm {
    padding: 40px;
  }
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .clear {
  display: none;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row {
  font-size: clamp(14px, 1.7vw, 16px);
  width: calc(50% - 2em);
  float: none;
  padding: 0;
  margin: 0 0 2em 0;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row .input_wrap {
  display: block;
  position: relative;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row em {
  display: none;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row input,
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row .value_display {
  border-radius: 8px;
  border: 1px solid #d5c199;
  background-color: #ffffff;
  width: 100%;
  max-height: 50px;
  font-size: inherit;
  height: 3.2em;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  position: relative;
  z-index: 1;
  padding: 0 1em;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row .value_display {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
  background-color: transparent;
  cursor: default;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row input[type=date] {
  direction: rtl;
  text-align: right;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row input[readonly] {
  pointer-events: none;
  background-color: rgb(95%, 95%, 95%);
  cursor: default;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row input[disabled] {
  background-color: rgb(95%, 95%, 95%);
  cursor: default;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row .dateInput {
  padding-left: 3em;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row .openCalendar {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 1em;
  margin: auto;
  width: 1.8em;
  height: 1.8em;
  max-width: 32px;
  max-height: 32px;
  background-image: url(../images/calendar.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row .clearCalendar {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 3em;
  margin: auto;
  width: 1.8em;
  height: 1.8em;
  max-width: 32px;
  max-height: 32px;
  background-image: url(../images/close_popup.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  display: none;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset legend {
  display: none;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset .woocommerce-form-row {
  font-size: clamp(14px, 1.7vw, 16px);
  width: calc(33.33% - 1em);
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset .woocommerce-form-row label {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm p {
  width: 100%;
  position: relative;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm.is_submitting input,
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm.is_submitting button {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}
.woocommerce-MyAccount-content form.woocommerce-EditAccountForm .loading {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  padding: 0;
}
.woocommerce-MyAccount-content .ajax_message {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  margin: auto;
  width: fit-content;
  padding: 0 30px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.woocommerce-MyAccount-content .ajax_message::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.woocommerce-MyAccount-content .ajax_message.success::after {
  background-image: url(../images/success_icon.svg);
}
.woocommerce-MyAccount-content .ajax_message.error::after {
  background-image: url(../images/error_icon.svg);
}

.popup_my_account_wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  display: none;
}
.popup_my_account_wrap::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(32, 29, 29, 0);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.popup_my_account_wrap.active {
  display: block;
}
.popup_my_account_wrap.active_background::after {
  background-color: rgba(32, 29, 29, 0.5);
}

.popup_my_account_content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  height: fit-content;
  background-color: #fff7f0;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  padding: 2vw;
  padding: 40px;
  transform: translateY(50%);
  opacity: 0;
  display: none;
}
.popup_my_account_content.min_width_700 {
  max-width: 700px;
}
.popup_my_account_content .popup_my_account_close {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  background-image: url(../images/close_popup.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.popup_my_account_content .popup_my_account_close:active {
  transform: scale(0.9);
}
.popup_my_account_content .popup_my_account_title {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0.8em;
  text-align: center;
}
.popup_my_account_content .popup_my_account_title_big {
  font-size: clamp(24px, 1.7vw, 32px);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0.8em;
  text-align: center;
}
.popup_my_account_content .popup_my_account_text {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 2em;
  font-weight: 400;
}
.popup_my_account_content .popup_text {
  line-height: 1;
  font-size: clamp(14px, 1.7vw, 16px);
  margin-bottom: 1em;
  font-weight: 600;
}
.popup_my_account_content .popup_my_account_text_block {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 1em;
  font-weight: 400;
  margin-bottom: 2em;
}
.popup_my_account_content .popup_my_account_text_block h4 {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 600;
  margin-bottom: 1.2em;
}
.popup_my_account_content .popup_my_account_text_block ul {
  list-style-type: none;
}
.popup_my_account_content .popup_my_account_text_block ul li {
  font-size: inherit;
  padding-right: 2em;
  position: relative;
}
.popup_my_account_content .popup_my_account_text_block ul li:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.popup_my_account_content .popup_my_account_text_block ul li::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-image: url(../images/circle_check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.popup_my_account_content .popup_my_account_buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
.popup_my_account_content .popup_my_account_buttons .button_cs {
  flex: 0 0 auto;
  width: 120px;
  max-width: 120px;
  min-width: 100px;
  justify-content: center;
}
.popup_my_account_content .popup_my_account_buttons .button_cs_black {
  color: #ffffff;
}
.popup_my_account_content .popup_my_account_buttons .popup_my_account_button {
  width: 120px;
  max-width: 120px;
  min-width: 100px;
}
.popup_my_account_content.display_block {
  display: block;
}
.popup_my_account_content.active {
  transition-delay: 0.4s;
  transform: translateY(0);
  opacity: 1;
}
.popup_my_account_content form p:not(:last-of-type) {
  margin-bottom: 25px;
}
.popup_my_account_content form p label {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 14px;
}
.popup_my_account_content form p input {
  font-size: 16px;
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #d5c199;
  background-color: #ffffff;
  padding: 0 10px;
}
.popup_my_account_content form p input[type=tel] {
  text-align: right;
}
.popup_my_account_content form .code_inputs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  gap: 18px;
  margin-bottom: 25px;
}
.popup_my_account_content form .code_inputs input {
  display: block;
  flex-grow: 1;
  flex-basis: 1px;
  background-color: #ffffff;
  border: 1px solid #d5c199;
  font-size: 16px;
  height: 50px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
}
.popup_my_account_content form .code_inputs input:disabled {
  cursor: default;
  opacity: 0.5;
}

@media only screen and (max-width: 1200px) {
  .woocommerce-account .breadcrumbs {
    margin: 20px 0;
  }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    margin-left: 4vw;
  }
  .woocommerce-MyAccount-content form.woocommerce-EditAccountForm {
    padding: 20px;
  }
  .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .clear {
    display: none;
  }
  .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row {
    width: calc(50% - 10px);
    margin: 0 0 20px 0;
  }
  .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row .input_wrap input {
    max-height: 40px;
  }
}
@media only screen and (max-width: 820px) {
  .woocommerce-account .woocommerce .my_account_page_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    margin-left: 0vw;
    max-width: 100%;
    width: 100%;
  }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .show_mobile_current_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: inherit;
    font-size: clamp(16px, 1.7vw, 20px);
    padding: 1em;
    line-height: 1;
    font-weight: 500;
    background-color: #d5c199;
    border: 1px solid #d5c199;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
    position: relative;
    padding-right: 3.2em;
    margin-bottom: 10px;
    border-radius: 8px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    height: 64px;
  }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .show_mobile_current_item .show_mobile_current_item_icon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1em;
    margin: auto;
    width: 1.8em;
    height: 1.8em;
    max-width: 32px;
    max-height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .show_mobile_current_item::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 1.6em;
    margin: auto;
    width: 14px;
    height: 14px;
    background-image: url(../images/arrow_down_black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.1s ease-in-out;
  }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .show_mobile_current_item:active {
    background-color: rgb(80.612745098%, 71.3807189542%, 52.9166666667%);
  }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation .show_mobile_current_item:active .show_mobile_current_item_icon {
    transform: scale(0.9);
  }
  .woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
    display: none;
  }
  .woocommerce-account .woocommerce .show_mobile_current_item_active::after {
    transform: rotate(180deg);
  }
  .woocommerce-MyAccount-content {
    margin-top: 20px;
  }
  .woocommerce-MyAccount-content form.woocommerce-EditAccountForm {
    padding: 30px 20px;
  }
  .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .woocommerce-form-row {
    width: 100%;
  }
  .woocommerce-MyAccount-content .ajax_message {
    bottom: initial;
    top: calc(100% + 8px);
  }
}
.admin-user-addresses {
  clear: both;
  float: left;
  width: 93%;
  margin-top: 15px;
  padding: 12px 15px;
  border: 1px solid #ccd0d4;
  border-radius: 4px;
  background: #f9f9f9;
}
.admin-user-addresses h3 {
  margin-top: 0;
  font-weight: 600;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.admin-user-addresses .user-addresses-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-user-addresses .user-address-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  padding: 6px 8px;
  border-radius: 3px;
  border: 1px solid #dcdcde;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-user-addresses .user-address-item:hover, .admin-user-addresses .user-address-item:has(input:checked) {
  border-color: #2271b1;
  background: #f3faff;
}
.admin-user-addresses .user-address-item input[type=radio] {
  margin-top: 4px;
}
.admin-user-addresses .user-address-item .address-info {
  display: flex;
  flex-direction: column;
}
.admin-user-addresses .user-address-item .address-info strong {
  font-weight: 600;
}
.admin-user-addresses .user-address-item .address-info span {
  font-size: 13px;
  color: #333;
}
.admin-user-addresses .user-address-item .address-info em {
  font-size: 12px;
  color: #666;
}

@media only screen and (max-width: 480px) {
  .popup_my_account_content {
    max-width: 100%;
    top: initial;
    padding: 55px 40px 40px 40px;
    border-radius: 16px 16px 0 0;
    border: 1px solid #d5c199;
  }
  .popup_my_account_content .popup_my_account_close {
    border: none;
    background-color: transparent;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background-image: url(../images/close_popup.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .popup_my_account_content .popup_my_account_close:active {
    transform: scale(0.9);
  }
  .popup_my_account_content.display_block {
    display: block;
  }
  .popup_my_account_content.active {
    transition-delay: 0.4s;
    transform: translateY(0);
    opacity: 1;
  }
}
.form_wrap {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  padding: 2vw;
  border: 1px solid #d5c199;
  background-color: #fff7f0;
  position: relative;
}
@media only screen and (max-width: 680px) {
  .form_wrap {
    padding: 40px;
  }
}
.form_wrap {
  border-radius: 8px;
}
.form_wrap .form_container[dir=ltr] {
  direction: rtl;
  text-align: right;
}
.form_wrap .form_container {
  width: 100%;
}
.form_wrap .form_container form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.form_wrap .form_container form .form_field {
  width: calc(50% - 2vw);
  position: relative;
  margin-bottom: 32px;
}
.form_wrap .form_container form .form_field label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.form_wrap .form_container form .form_field input {
  width: 100%;
  height: 50px;
  border: 1px solid #d5c199;
  border-radius: 8px;
  font-size: 16px;
  padding: 0 20px;
}
.form_wrap .form_container form .form_field input[type=url],
.form_wrap .form_container form .form_field input[type=email] {
  direction: rtl;
}
.form_wrap .form_container form .form_field input[type=tel] {
  text-align: right;
}
.form_wrap .form_container form .form_field .wpcf7-not-valid,
.form_wrap .form_container form .form_field .field-error {
  border-color: #ff0000;
}
.form_wrap .form_container form .form_field .wpcf7-not-valid-tip,
.form_wrap .form_container form .form_field .register-error-message {
  display: block;
  color: #ff0000;
  font-size: 14px;
  line-height: 1.3;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
}
.form_wrap .form_container form .form_field .checkbox_field .register-error-message {
  position: static;
  margin-top: 6px;
  padding-right: 35px;
}
.form_wrap .form_container form .form_field .checkbox_field {
  position: relative;
}
.form_wrap .form_container form .form_field .checkbox_field:not(:last-child) {
  margin-bottom: 10px;
}
.form_wrap .form_container form .form_field .checkbox_field input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.form_wrap .form_container form .form_field .checkbox_field label {
  cursor: pointer;
  padding-right: 35px;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.form_wrap .form_container form .form_field .checkbox_field label::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background-color: #d5c199;
  z-index: 1;
}
.form_wrap .form_container form .form_field .checkbox_field label::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/checkbox_check_2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 62%;
  transition: all 0.05s ease-in-out;
  z-index: 2;
  transform: scale(0);
}
.form_wrap .form_container form .form_field .checkbox_field label:hover::after {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.form_wrap .form_container form .form_field .checkbox_field label:active::after {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
  transform: scale(0.9);
}
.form_wrap .form_container form .form_field .checkbox_field input:checked + label::before {
  transform: scale(1);
}
.form_wrap .form_container form .form_field.select_wrapper {
  width: calc(50% - 2vw);
  margin-bottom: 32px;
}
.form_wrap .form_container form .form_field.select_wrapper .select2-container {
  width: 100% !important;
}
.form_wrap .form_container form .form_field.select_wrapper .select2-container .selection .select2-selection {
  background-color: #ffffff;
  border: 1px solid #d5c199;
}
.form_wrap .form_container form .form_field.select_wrapper .wpcf7-not-valid + .select2-container,
.form_wrap .form_container form .form_field.select_wrapper select.field-error + .select2-container {
  border-color: #ff0000;
}
.form_wrap .form_container form .form_field.select_wrapper .wpcf7-not-valid + .select2-container .selection .select2-selection {
  border-color: #ff0000;
}
.form_wrap .form_container form .form_field .input_date_wrap {
  position: relative;
}
.form_wrap .form_container form .form_field .input_date_wrap input {
  width: 100%;
}
.form_wrap .form_container form .form_field .input_date_wrap .openCalendar {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 1em;
  margin: auto;
  width: 1.8em;
  height: 1.8em;
  max-width: 32px;
  max-height: 32px;
  background-image: url(../images/calendar.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.form_wrap .form_container form .form_field .input_date_wrap .clearCalendar {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 3em;
  margin: auto;
  width: 1.8em;
  height: 1.8em;
  max-width: 32px;
  max-height: 32px;
  background-image: url(../images/close_popup.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  display: none;
}
.form_wrap .form_container form .checkbox_fields_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.form_wrap .form_container form .form_field_submit {
  width: 100%;
  margin-top: 30px;
  position: relative;
}
.form_wrap .form_container form .input_wrapper {
  width: calc(50% - 2vw);
  margin-bottom: 32px;
}
.form_wrap .form_container form .select_wrapper {
  width: calc(50% - 2vw);
  margin-bottom: 32px;
}
.form_wrap .form_container form .select_wrapper .select2-container {
  width: 100% !important;
}
.form_wrap .form_container form .select_wrapper .select2-container .selection .select2-selection {
  background-color: #ffffff;
  border: 1px solid #d5c199;
}
.form_wrap .form_container form .select_wrapper .wpcf7-not-valid + .select2-container,
.form_wrap .form_container form .select_wrapper select.field-error + .select2-container {
  border-color: #ff0000;
}
.form_wrap .form_container form .select_wrapper .wpcf7-not-valid + .select2-container .selection .select2-selection {
  border-color: #ff0000;
}
.form_wrap .form_container form .textarea_wrapper {
  width: 100%;
  margin-bottom: 32px;
}
.form_wrap .form_container form .textarea_wrapper textarea {
  width: 100%;
  height: 100px;
  resize: vertical;
  border: 1px solid #d5c199;
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
}
.form_wrap .form_container form .submit_wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.form_wrap .form_container form .submit_wrapper p {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin-right: auto;
  height: fit-content;
}
.form_wrap .form_container form .submit_wrapper p .wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 5px);
  margin: auto;
}
.form_wrap .form_container form .submit_wrapper p input {
  box-sizing: border-box;
  background-color: #d5c199;
  color: #201d1d;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
  font-size: clamp(14px, 2vw, 16px);
  padding: 0.5em;
  font-weight: 600;
  height: 3.2em;
  max-height: 50px;
  min-width: 98px;
  width: 9em;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.1s;
}
.form_wrap .form_container form .submit_wrapper p input:hover {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.form_wrap .form_container form .submit_wrapper p input:active {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.form_wrap .form_container form .wpcf7-response-output {
  padding: 0 30px 0 0;
  font-size: 14px;
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  margin: 0;
  border-width: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.form_wrap .form_container form .wpcf7-response-output::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.form_wrap .form_container form.success .wpcf7-response-output::after {
  background-image: url(../images/success_icon.svg);
}
.form_wrap .form_container form.failed .wpcf7-response-output::after {
  background-image: url(../images/alert_icon.svg);
}
.form_wrap .loading {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  padding: 0;
}
.form_wrap .ajax_message {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  padding: 0 30px 0 0;
  font-weight: 400;
  line-height: 1.4;
  font-size: 16px;
}
.form_wrap .ajax_message::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.form_wrap .ajax_message.success::after {
  background-image: url(../images/success_icon.svg);
}
.form_wrap .ajax_message.error::after {
  background-image: url(../images/error_icon.svg);
}

@media only screen and (max-width: 820px) {
  .form_wrap {
    padding: 20px;
  }
  .form_wrap .form_container form .form_field {
    width: 100%;
    margin-bottom: 20px;
  }
  .form_wrap .form_container form .form_field input {
    width: 100%;
    height: 40px;
  }
  .form_wrap .form_container form .form_field .checkbox_field:not(:last-child) {
    margin-bottom: 15px;
  }
  .form_wrap .form_container form .form_field.select_wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
  .form_wrap .form_container form .form_field_submit {
    margin-top: 0;
  }
  .form_wrap .ajax_message {
    top: calc(100% + 30px);
  }
}
.MyAccount_page_block_title {
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 36px);
  line-height: 1;
  margin-bottom: 0.8em;
}

.MyAccount_page_block:not(:last-child) {
  margin-bottom: 60px;
}

.uw-wishlist-container {
  padding: 0;
}

.product_preview_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
}
@media only screen and (min-width: 2000px) {
  .product_preview_list {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}
.product_preview_list .product_preview_list_item .product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.product_preview_list .product_preview_list_item .product .product_preview {
  text-decoration: none;
  display: block;
  position: relative;
}
.product_preview_list .product_preview_list_item .product .product_preview .uw-wishlist-button-container {
  position: absolute;
  z-index: 10;
  top: 10px;
  left: 10px;
}
.product_preview_list .product_preview_list_item .product .product_preview .uw-wishlist-button-container .uw-wishlist-button {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_preview_list .product_preview_list_item .product .product_preview .uw-wishlist-button-container .uw-wishlist-button .uw-button-text {
  display: none;
}
.product_preview_list .product_preview_list_item .product .product_preview .image {
  position: relative;
}
.product_preview_list .product_preview_list_item .product .product_preview .image .onsale {
  top: 12px;
  right: 0;
  position: absolute;
  max-height: 44px;
  min-height: 36px;
  min-width: initial;
  padding: 12px 20px;
  font-size: clamp(12px, 1.7vw, 16px);
  line-height: 1;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #d5c199;
  background-color: initial;
  color: #d5c199;
  z-index: 9;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.product_preview_list .product_preview_list_item .product .product_preview .image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.product_preview_list .product_preview_list_item .product .product_preview .title {
  display: block;
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.4em;
  margin-top: 1.2em;
}
.product_preview_list .product_preview_list_item .product .product_preview .product_description {
  display: block;
  font-size: clamp(12px, 1.7vw, 21px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2em;
  opacity: 0.5;
}
.product_preview_list .product_preview_list_item .product .button_and_price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  position: relative;
}
.product_preview_list .product_preview_list_item .product .button_and_price .product_price {
  margin: 0 0 0 auto;
}
.product_preview_list .product_preview_list_item .product .button_and_price .product_price .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  line-height: 1;
}
.product_preview_list .product_preview_list_item .product .button_and_price .product_price .price ins {
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 24px);
  text-decoration: unset;
  margin-left: 0.7em;
}
.product_preview_list .product_preview_list_item .product .button_and_price .product_price .price del {
  font-weight: 400;
  font-size: clamp(14px, 1.7vw, 20px);
  text-decoration: unset;
  opacity: 0.5;
  text-decoration: line-through;
}
.product_preview_list .product_preview_list_item .product .button_and_price .product_button {
  flex-shrink: 0;
  width: fit-content;
  margin: 0 auto 0 0;
}
.product_preview_list .product_preview_list_item .product .button_and_price .product_button .button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  font-size: clamp(14px, 1.7vw, 16px);
  padding: 0.5em;
  font-weight: 600;
  height: 3.2em;
  max-height: 50px;
  min-height: 40px;
  min-width: 150px;
  max-width: 176px;
  width: 12em;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #d5c199;
  transition: all 0.1s;
  color: #201d1d;
}
.product_preview_list .product_preview_list_item .product .button_and_price .product_button .button:hover {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.product_preview_list .product_preview_list_item .product .button_and_price .product_button .button:active {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.product_preview_list .product_preview_list_item .product .button_and_price .product_button .added_to_cart {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  font-weight: 600;
  font-size: clamp(12px, 1.7vw, 21px);
  line-height: 1;
  padding: 0.2em 0;
  color: #201d1d;
}
.product_preview_list .product_preview_list_item .product .button_and_price .product_button .added_to_cart:hover {
  text-decoration: underline;
  color: #d5c199;
}
.product_preview_list.product_preview_hide_buy_button .product_preview_list_item .product .button_and_price .product_button {
  display: none;
}
.product_preview_list.product_preview_hide_buy_button .product .add-to-cart-block .button {
  display: none;
}
.product_preview_list.product_preview_only_name .product_preview_list_item .product .product_preview .title {
  text-align: center;
  margin-bottom: 0;
}
.product_preview_list.product_preview_only_name .product_preview_list_item .product .product_preview .product_description {
  display: none;
}
.product_preview_list.product_preview_only_name .product_preview_list_item .product .button_and_price {
  display: none;
}
.product_preview_list.product_preview_only_name .product {
  padding-bottom: 0;
}
.product_preview_list.product_preview_only_name .product .woocommerce-LoopProduct-link .product-content .woocommerce-loop-product__title {
  margin: 0;
  text-align: center;
}
.product_preview_list.product_preview_only_name .product .woocommerce-LoopProduct-link .product-content .woocommerce-product-details__short-description {
  display: none;
}
.product_preview_list.product_preview_only_name .product .woocommerce-LoopProduct-link .price {
  display: none;
}
.product_preview_list.product_preview_only_name .product .add-to-cart-block .button {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .product_preview_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .MyAccount_page_block:not(:last-child) {
    margin-bottom: 40px;
  }
  .product_preview_list .product .add-to-cart-block .button {
    width: 54%;
  }
}
@media only screen and (max-width: 820px) {
  .product_preview_list .product_preview_list_item .product .product_preview .uw-wishlist-button-container .uw-wishlist-button {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .product_preview_list .product_preview_list_item .product .button_and_price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .product_preview_list .product_preview_list_item .product .button_and_price .product_price {
    margin: 0 0 20px 0;
  }
  .product_preview_list .product_preview_list_item .product .button_and_price .product_button {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .product_preview_list .product_preview_list_item .product .button_and_price .product_button .button {
    width: 100%;
    max-width: initial;
    min-width: initial;
  }
  .product_preview_list.product_preview_hide_buy_button .product_preview_list_item .product .button_and_price .product_price {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 600px) {
  .product_preview_list .product .add-to-cart-block .button {
    width: 100%;
  }
  .product_preview_list.product_preview_hide_buy_button .product_preview_list_item .product .button_and_price .product_button {
    display: none;
  }
  .product_preview_list.product_preview_hide_buy_button .product {
    padding-bottom: 20px;
  }
  .product_preview_list.product_preview_hide_buy_button .product span.price {
    bottom: -4px;
    height: initial;
  }
}
.payment_methods_list .save_payment_method {
  margin-top: 30px;
}
.payment_methods_list label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff7f0;
  border: 1px solid #d5c199;
  padding: 1em;
  margin-bottom: 10px;
  cursor: pointer;
}
.payment_methods_list label:first-of-type {
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.payment_methods_list label:last-of-type {
  border-radius: 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.payment_methods_list label input {
  display: none;
}
.payment_methods_list label .uw-payment-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
  line-height: 1;
}
.payment_methods_list label .uw-payment-card .check_input {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 15px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #d5c199;
}
.payment_methods_list label .uw-payment-card .default_label {
  font-size: clamp(14px, 1.7vw, 16px);
  font-weight: 400;
  display: block;
  margin-left: 70px;
}
.payment_methods_list label .uw-payment-card .uw-card-icon {
  display: block;
  width: 53px;
  height: 35px;
  margin-left: 15px;
  background-image: url(../images/card_icon.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.payment_methods_list label .uw-payment-card .uw-card-icon img {
  display: none;
}
.payment_methods_list .selected_payment_method {
  background-color: #d5c199;
}
.payment_methods_list .selected_payment_method .uw-payment-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.payment_methods_list .selected_payment_method .uw-payment-card .check_input::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #201d1d;
}
.payment_methods_list .selected_payment_method .uw-payment-card .uw-card-icon {
  background-image: url(../images/card_icon_selected.svg);
}

@media only screen and (max-width: 820px) {
  .payment_methods_list .save_payment_method {
    margin-top: 20px;
  }
  .payment_methods_list label .uw-payment-card .default_label {
    margin-left: 35px;
  }
  .payment_methods_list label .uw-payment-card .uw-card-icon {
    display: block;
    width: 36px;
    height: 24px;
  }
  .payment_methods_list .selected_payment_method {
    background-color: #d5c199;
  }
  .payment_methods_list .selected_payment_method .uw-payment-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .payment_methods_list .selected_payment_method .uw-payment-card .check_input::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #201d1d;
  }
  .payment_methods_list .selected_payment_method .uw-payment-card .uw-card-icon {
    background-image: url(../images/card_icon_selected.svg);
  }
}
.user_addresses_form .addresses_wrapper {
  position: relative;
}
.user_addresses_form .addresses_wrapper .address_block {
  background-color: #fff7f0;
  border: 1px solid #d5c199;
  outline: 2px solid transparent;
  border-radius: 8px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  padding: 2vw;
  padding-left: 6vw;
}
@media only screen and (min-width: 2000px) {
  .user_addresses_form .addresses_wrapper .address_block {
    padding: 40px;
    padding-left: 140px;
  }
}
.user_addresses_form .addresses_wrapper .address_block:not(:first-of-type) {
  margin-top: 40px;
}
.user_addresses_form .addresses_wrapper .address_block {
  position: relative;
  transition: all 0.1s;
}
.user_addresses_form .addresses_wrapper .address_block .sls-autocomplete-wrap,
.user_addresses_form .addresses_wrapper .address_block .nono-address-field-wrap {
  position: relative;
  overflow: visible;
}
.user_addresses_form .addresses_wrapper .address_block .nono-autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(32, 29, 29, 0.35);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  max-height: 220px;
  overflow-y: auto;
}
.user_addresses_form .addresses_wrapper .address_block .nono-autocomplete-list li[role=option] {
  padding: 10px 14px;
  font-size: 15px;
  line-height: 1.3;
  cursor: pointer;
  border-bottom: 1px solid rgba(32, 29, 29, 0.15);
}
.user_addresses_form .addresses_wrapper .address_block .nono-autocomplete-list li[role=option]:hover {
  background: rgba(32, 29, 29, 0.08);
}
.user_addresses_form .addresses_wrapper .address_block .nono-autocomplete-list li.nono-powered-by-google {
  padding: 6px 12px;
  text-align: left;
  background: #fff;
  border-top: 1px solid rgba(32, 29, 29, 0.15);
  cursor: default;
  pointer-events: none;
  font-size: 12px;
  color: #888;
}
.user_addresses_form .addresses_wrapper .address_block .remove_address {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
  width: 24px;
  height: 24px;
  background-image: url(../images/trash.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.user_addresses_form .addresses_wrapper .address_block .remove_address:active {
  transform: scale(0.9);
}
.user_addresses_form .addresses_wrapper .address_block .form_item {
  margin-bottom: 30px;
  font-size: clamp(14px, 1.7vw, 16px);
  margin: 0 0 2em 0;
}
.user_addresses_form .addresses_wrapper .address_block .form_item_4_columns_mobile_3_columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  overflow: visible;
}
.user_addresses_form .addresses_wrapper .address_block .form_item_4_columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  overflow: visible;
}
.user_addresses_form .addresses_wrapper .address_block .woocommerce-form-row {
  font-size: inherit;
  width: 100%;
  float: none;
  padding: 0;
}
.user_addresses_form .addresses_wrapper .address_block .woocommerce-form-row .input_wrap {
  display: block;
  position: relative;
}
.user_addresses_form .addresses_wrapper .address_block .woocommerce-form-row label {
  display: inline-block;
  margin-bottom: 0.5em;
  font-weight: 600;
  font-size: inherit;
  line-height: 1;
}
.user_addresses_form .addresses_wrapper .address_block .woocommerce-form-row input {
  border-radius: 8px;
  border: 1px solid #d5c199;
  background-color: #ffffff;
  width: 100%;
  max-height: 50px;
  font-size: inherit;
  height: 3.2em;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  position: relative;
  z-index: 1;
  padding: 0 1em;
}
.user_addresses_form .addresses_wrapper .address_block .woocommerce-form-row input[type=date] {
  direction: rtl;
  text-align: right;
}
.user_addresses_form .addresses_wrapper .address_block .woocommerce-form-row input[readonly] {
  pointer-events: none;
  background-color: rgb(95%, 95%, 95%);
  cursor: default;
}
.user_addresses_form .addresses_wrapper .address_block .woocommerce-form-row input[disabled] {
  background-color: rgb(95%, 95%, 95%);
  cursor: default;
}
.user_addresses_form .addresses_wrapper .address_block .default_address_radio input {
  display: none;
}
.user_addresses_form .addresses_wrapper .address_block .default_address_radio label {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.user_addresses_form .addresses_wrapper .address_block .default_address_radio label .check_box {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #d5c199;
  margin-left: 15px;
}
.user_addresses_form .addresses_wrapper .address_block .default_address_radio input:checked + label .check_box {
  background-color: #d5c199;
  position: relative;
}
.user_addresses_form .addresses_wrapper .address_block .default_address_radio input:checked + label .check_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #201d1d;
}
.user_addresses_form .addresses_wrapper .address_block p {
  width: 100%;
  position: relative;
}
.user_addresses_form .addresses_wrapper .address_block .loading {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  padding: 0;
}
.user_addresses_form .buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.user_addresses_form .buttons .button_cs {
  flex-grow: 1;
  flex-basis: 1px;
  max-width: 180px;
}
.user_addresses_form .buttons .button_cs:not(:first-of-type) {
  margin-right: 25px;
}
.user_addresses_form.is_submitting input,
.user_addresses_form.is_submitting button {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}

@media only screen and (max-width: 820px) {
  .user_addresses_form .addresses_wrapper .address_block {
    padding: 20px;
    padding-left: 20px;
  }
  .user_addresses_form .addresses_wrapper .address_block:not(:first-of-type) {
    margin-top: 20px;
  }
  .user_addresses_form .addresses_wrapper .address_block .remove_address {
    top: 10px;
    left: 10px;
  }
  .user_addresses_form .addresses_wrapper .address_block .form_item {
    margin-bottom: 20px;
  }
  .user_addresses_form .addresses_wrapper .address_block .form_item_4_columns_mobile_3_columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    grid-column-gap: initial;
    grid-row-gap: initial;
  }
  .user_addresses_form .addresses_wrapper .address_block .form_item_4_columns_mobile_3_columns .woocommerce-form-row:not(:first-of-type) {
    margin-right: 20px;
  }
  .user_addresses_form .addresses_wrapper .address_block .form_item_4_columns_mobile_3_columns .woocommerce-form-row:not(:last-of-type) {
    flex-grow: 1;
    flex-basis: 1px;
  }
  .user_addresses_form .addresses_wrapper .address_block .form_item_4_columns_mobile_3_columns .woocommerce-form-row:last-of-type {
    flex-shrink: 0;
    width: 70px;
  }
  .user_addresses_form .addresses_wrapper .address_block .form_item_4_columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .user_addresses_form .addresses_wrapper .address_block .woocommerce-form-row input {
    max-height: 40px;
  }
  .user_addresses_form .buttons {
    margin-top: 30px;
  }
  .user_addresses_form .buttons .button_cs:not(:first-of-type) {
    margin-right: 15px;
  }
}
.orders_list .orders_list_item:not(:last-child) {
  margin-bottom: 10px;
}
.orders_list .orders_list_item .list_item_title {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1;
  padding: 1.3em 2em 1.3em 2.7em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: #fff7f0;
  border: 1px solid #d5c199;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  position: relative;
  transition: all 0.1s;
}
.orders_list .orders_list_item .list_item_title::after {
  content: "";
  position: absolute;
  font-size: inherit;
  top: 0;
  left: 1.6em;
  bottom: 0;
  margin: auto;
  width: 0.8em;
  height: 0.8em;
  background-image: url(../images/arrow_down_black.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.orders_list .orders_list_item .list_item_title .date {
  flex-shrink: 0;
  font-size: inherit;
  width: 5em;
  margin-left: 1.5em;
}
.orders_list .orders_list_item .list_item_title .occasion {
  flex-shrink: 0;
  width: 7.5em;
  margin-left: 1.5em;
  font-size: inherit;
}
.orders_list .orders_list_item .list_item_title .price {
  font-size: inherit;
  width: 6em;
  margin-left: auto;
}
.orders_list .orders_list_item .list_item_title .width_initial {
  width: initial;
}
.orders_list .orders_list_item .list_item_title .order_number {
  font-size: inherit;
  flex-shrink: 0;
  width: 7em;
  margin-left: 1.5em;
}
.orders_list .orders_list_item .list_item_title .status {
  margin-left: 1.5em;
  width: 6em;
  position: relative;
  display: block;
  padding-right: 1em;
  font-size: inherit;
}
.orders_list .orders_list_item .list_item_title .status::after {
  width: 10px;
  height: 10px;
  top: 0.1em;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
  position: absolute;
  border: 1px solid #201d1d;
  border-radius: 50%;
}
.orders_list .orders_list_item .list_item_title .status.status-completed::after {
  background-color: green;
}
.orders_list .orders_list_item .list_item_title .status.status-in-progress::after {
  background-color: yellow;
}
.orders_list .orders_list_item .list_item_title .status.status-new::after {
  background-color: white;
}
.orders_list .orders_list_item .list_item_title .status.status-canceled::after {
  background-color: red;
}
.orders_list .orders_list_item .list_item_title .download {
  position: relative;
  padding-left: 2em;
  margin-right: 1em;
  font-size: inherit;
}
.orders_list .orders_list_item .list_item_title .download:hover {
  color: #d5c199;
}
.orders_list .orders_list_item .list_item_title .download:hover::after {
  background-color: #d5c199;
}
.orders_list .orders_list_item .list_item_title .download::after {
  width: 1.5em;
  height: 1.5em;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  content: "";
  position: absolute;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/file_icon.svg");
  -webkit-mask: url("../images/file_icon.svg");
  background-color: #201d1d;
}
.orders_list .orders_list_item .list_item_title .download.download_disabled {
  pointer-events: none;
  opacity: 0.5;
  font-weight: 400;
}
.orders_list .orders_list_item .list_item_title .shipping {
  position: relative;
  display: block;
  padding-right: 2em;
  margin-left: 1.5em;
  font-size: inherit;
}
.orders_list .orders_list_item .list_item_title .shipping::after {
  width: 1.5em;
  height: 1.5em;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
  position: absolute;
  background-image: url(../images/shipping.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.orders_list .orders_list_item .orders_list_item_title .price {
  margin-left: 3em;
  margin-right: auto;
}
.orders_list .orders_list_item .orders_list_item_title .order_number {
  margin-right: auto;
}
.orders_list .orders_list_item:first-of-type .list_item_title {
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.orders_list .orders_list_item:last-of-type .list_item_title {
  border-radius: 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.orders_list .orders_list_item:active .list_item_title {
  background-color: #d5c199;
}
.orders_list .orders_list_item.active .list_item_title {
  background-color: #d5c199;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.orders_list .orders_list_item.active .list_item_title::after {
  transform: rotate(180deg);
}
.orders_list .orders_list_item_content_wrap {
  padding: 25px;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid #d5c199;
  display: none;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products {
  overflow: auto;
  max-height: 20vw;
  padding-left: 5px;
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 4px;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products::-webkit-scrollbar {
  width: var(--sb-size);
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #eaeaea;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_img {
  flex-shrink: 0;
  max-width: 125px;
  min-width: 64px;
  width: 6vw;
  aspect-ratio: 1/0.72;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-grow: 1;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info .product_name {
  font-size: inherit;
  line-height: inherit;
  flex-grow: 1;
  font-weight: 400;
  padding: 0 1.1em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info .product_name:hover {
  text-decoration: underline;
  color: #d5c199;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info .product_price {
  font-size: inherit;
  line-height: inherit;
  flex-shrink: 0;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info .product_price .regular-price,
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info .product_price .current-price {
  font-weight: 500;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info .product_price .sale-price {
  font-size: clamp(14px, 1.4vw, 16px);
  color: #201d1d;
  opacity: 0.5;
  font-weight: 500;
  margin-right: 0.5em;
  text-decoration: line-through;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info .product_qty {
  font-size: inherit;
  line-height: inherit;
  flex-shrink: 0;
  min-width: 10%;
  text-align-last: center;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info .product_total {
  font-size: inherit;
  line-height: inherit;
  flex-shrink: 0;
  min-width: 20%;
  text-align-last: left;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content_footer {
  margin-top: 30px;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_info .total_order_price_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  flex-shrink: 0;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_info .total_order_price_block .total_price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  margin-right: 3em;
  flex-shrink: 0;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_info .total_order_price_block .total_order_price_text .text_1 {
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 0.2em;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_info .total_order_price_block .total_order_price_text .text_2 {
  font-weight: 400;
  font-size: clamp(12px, 1.5vw, 14px);
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_info .decription_block .decription_block_item {
  font-size: clamp(14px, 1.5vw, 16px);
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_info .decription_block .decription_block_item strong {
  font-weight: 600;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_info .decription_block .decription_block_item:not(:last-child) {
  margin-bottom: 0.5em;
}
.orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_buttons {
  margin-top: 2vw;
}
@media only screen and (min-width: 2000px) {
  .orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_buttons {
    margin-top: 40px;
  }
}
.orders_list .payment_method {
  font-size: clamp(14px, 1.4vw, 16px);
  margin-top: 2em;
  margin-bottom: 2em;
}
.orders_list .payment_method .payment_method_title {
  font-size: inherit;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5em;
}
.orders_list .adress {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.4;
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.65em;
  font-weight: 400;
}
.orders_list .adress__line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin: 0;
  gap: 0.35em 0.5em;
}
.orders_list .adress strong {
  flex-shrink: 0;
  font-weight: 700;
}
.orders_list .adress .address-line,
.orders_list .adress .order-slot-date {
  flex: 1 1 auto;
  min-width: 0;
}

@media only screen and (max-width: 1200px) {
  .orders_list .orders_list_item .list_item_title {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element {
    width: 33%;
    margin: 0;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element.download {
    width: fit-content;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element:nth-child(1) {
    margin-bottom: 1.2em;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element:nth-child(2) {
    margin-bottom: 1.2em;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element:nth-child(3) {
    margin-bottom: 1.2em;
  }
}
@media only screen and (max-width: 980px) {
  .orders_list .orders_list_item_content_wrap .orders_list_item_content_footer {
    margin-top: 20px;
  }
  .orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_info .total_order_price_block {
    margin: 0 0 20px 0;
  }
  .orders_list .orders_list_item_content_wrap .orders_list_item_content_footer .footer_info .total_order_price_block .total_price {
    margin-right: auto;
  }
}
@media only screen and (max-width: 680px) {
  .orders_list .orders_list_item .list_item_title {
    padding: 1.3em 1.3em 1.3em 2.3em;
  }
  .orders_list .orders_list_item .list_item_title::after {
    left: 1.6em;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element {
    width: 50%;
    margin-bottom: 0;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element:nth-child(1) {
    margin-bottom: 1.2em;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element:nth-child(2) {
    margin-bottom: 1.2em;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element:nth-child(3) {
    margin-bottom: 1.2em;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element:nth-child(4) {
    margin-bottom: 1.2em;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element:nth-last-child(1) {
    margin-bottom: 0;
  }
  .orders_list .orders_list_item .list_item_title .list_item_title_element:nth-last-child(2) {
    margin-bottom: 0;
  }
  .orders_list .orders_list_item_content_wrap {
    padding: 20px;
  }
  .orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products {
    max-height: initial;
    overflow: initial;
  }
  .orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_img {
    margin-left: 20px;
  }
  .orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info .product_name {
    width: 100%;
    padding: 0;
  }
  .orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info p:not(.product_name) {
    padding-top: 10px;
  }
  .orders_list .orders_list_item_content_wrap .orders_list_item_content .order_products .order_product .product_info .product_qty {
    margin: 0 10px;
  }
}
.nonomimi-clone-order-popup .popup_my_account_title {
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.25;
  margin-bottom: 1em;
}
.nonomimi-clone-order-popup .popup_my_account_text {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 2em;
}
.nonomimi-clone-order-popup .popup_my_account_buttons .button_cs_black {
  background-color: #201d1d;
  border: 1px solid #201d1d;
  color: #ffffff;
}
.nonomimi-clone-order-popup .popup_my_account_buttons .button_cs_black:hover:not(:disabled) {
  background-color: rgb(20.9424622308%, 18.9791063967%, 18.9791063967%);
  border-color: rgb(20.9424622308%, 18.9791063967%, 18.9791063967%);
  color: #ffffff;
}
.nonomimi-clone-order-popup .popup_my_account_buttons .button_cs_black:active:not(:disabled) {
  background-color: #201d1d;
  border-color: #201d1d;
  color: #ffffff;
}

.delete_account_text {
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.3;
  margin-bottom: 1.5em;
}

.delete_account_button_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.archive_special_day_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.archive_special_day_item .archive_special_day_item_link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
}
.archive_special_day_item .archive_special_day_item_link span {
  display: block;
}
.archive_special_day_item .image {
  position: relative;
}
.archive_special_day_item .image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.archive_special_day_item .image .label {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 0;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 500;
  line-height: 1;
  border: 2px solid #d5c199;
  border-radius: 8px;
  padding: 0.7em 1.2em;
  color: #d5c199;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.archive_special_day_item .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  flex-grow: 1;
  margin-top: 20px;
  margin-bottom: 3vw;
}
@media only screen and (min-width: 2000px) {
  .archive_special_day_item .content {
    margin-bottom: 60px;
  }
}
.archive_special_day_item .content .archive_special_day_item_title {
  font-weight: 700;
  font-size: clamp(26px, 1.7vw, 32px);
  margin-bottom: 0.5em;
}
.archive_special_day_item .content .excerpt {
  font-weight: 400;
  font-size: clamp(14px, 1.7vw, 16px);
}
.archive_special_day_item .content .excerpt p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.archive_special_day_item .content .excerpt p:not(:last-child) {
  margin-bottom: 0.8em;
}

.item_footer {
  margin-top: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.item_footer .add_to_list_button {
  min-width: 150px;
}
.item_footer .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1;
  margin-left: 3em;
}
.item_footer .price .old_price {
  font-size: clamp(14px, 1.7vw, 20px);
  opacity: 0.5;
  font-weight: 400;
  margin-right: 1em;
  text-decoration: line-through;
}

.categories_titles_show_current {
  display: none;
}

.categories_names {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #d5c199;
  border-radius: 8px;
  overflow: hidden;
  padding: 0 25px;
}
.categories_names .categories_names_item:not(:last-child) {
  margin-left: 10px;
}
.categories_names .categories_names_item .categories_names_item_link {
  cursor: pointer;
  height: 50px;
  padding: 10px 20px;
  color: #201d1d;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  font-weight: 400;
  font-size: 16px;
  flex-grow: 1;
  flex-basis: 1px;
  transition: all 0.1s;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  text-decoration: none;
}
.categories_names .categories_names_item .categories_names_item_link:hover {
  background-color: rgb(95.1960784314%, 92.908496732%, 88.3333333333%);
}
.categories_names .categories_names_item .categories_names_item_link:active {
  background-color: #201d1d;
  color: #ffffff;
}
.categories_names .categories_names_item .categories_names_item_link.active {
  background-color: #201d1d;
  color: #ffffff;
}
.categories_names .categories_names_item .categories_names_item_link:not(:last-child) {
  margin-left: 1vw;
}
.categories_names .categories_names_item .categories_names_item_link.current_tab_title {
  background-color: #201d1d;
  color: #ffffff;
}

.archive_special_days {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2vw;
  grid-row-gap: 4vw;
  margin-top: 25px;
}
@media only screen and (min-width: 2000px) {
  .archive_special_days {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}

@media only screen and (max-width: 1200px) {
  .categories_titles_show_current {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: #ffffff;
    background-color: #201d1d;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border-radius: 8px;
    height: 50px;
    padding: 0 20px;
    transition: all 0.3s;
  }
  .categories_titles_show_current::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
    width: 13px;
    height: 13px;
    background-image: url(../images/arrow_down_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s;
  }
  .categories_titles_show_current.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .categories_titles_show_current.active::after {
    transform: rotate(180deg);
  }
  .categories_titles_show_current:active {
    background-color: rgb(23.0408228865%, 20.8807457409%, 20.8807457409%);
  }
  .categories_names_block {
    display: none;
  }
  .categories_names {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #d5c199;
    border-radius: 8px;
    overflow: hidden;
    padding: 0 0px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .categories_names .categories_names_item:not(:last-child) {
    margin-left: 0px;
  }
  .categories_names .categories_names_item .categories_names_item_link {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .categories_names .categories_names_item .categories_names_item_link.active {
    background-color: rgb(95.1960784314%, 92.908496732%, 88.3333333333%);
    color: #201d1d;
  }
  .categories_names .categories_names_item .categories_names_item_link:hover {
    background-color: rgb(95.1960784314%, 92.908496732%, 88.3333333333%);
  }
}
.special_days_list_popup {
  position: fixed;
  border: 1px solid #d5c199;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  background-color: #fff7f0;
  width: 80%;
  max-width: 1460px;
  max-height: 800px;
  height: 80%;
  min-height: 400px;
  margin: 0 auto;
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0 2vw 2vw 2vw;
}
@media only screen and (min-width: 2000px) {
  .special_days_list_popup {
    padding: 0 40px 40px 40px;
  }
}
.special_days_list_popup {
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.special_days_list_popup.active {
  transform: translateY(0);
}
.special_days_list_popup .popup_title {
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1;
  flex-shrink: 0;
  padding: 1.5vw 0;
  cursor: pointer;
}
@media only screen and (min-width: 2000px) {
  .special_days_list_popup .popup_title {
    padding: 30px 0;
  }
}
.special_days_list_popup .popup_title {
  position: relative;
}
.special_days_list_popup .popup_title::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  background-image: url(../images/arrow_down_black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}
.special_days_list_popup .special_days_list_block {
  padding-top: 10px;
  overflow: auto;
  flex-grow: 1;
  padding-left: 15px;
  margin-left: -15px;
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 4px;
}
.special_days_list_popup .special_days_list_block::-webkit-scrollbar {
  width: var(--sb-size);
}
.special_days_list_popup .special_days_list_block::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.special_days_list_popup .special_days_list_block::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .special_days_list_popup .special_days_list_block {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.2vw;
  padding-bottom: 1.2vw;
  border-bottom: 1px solid #dfdfdf;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .image {
  max-width: 125px;
  min-width: 80px;
  width: 7vw;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .image img {
  display: block;
  width: 100%;
  height: auto;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .name {
  flex-grow: 1;
  margin-right: 1.5vw;
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .price,
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .total_price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1;
  margin-left: 3em;
  flex-shrink: 0;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .price .old_price,
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .total_price .old_price {
  font-size: clamp(14px, 1.5vw, 18px);
  opacity: 0.5;
  font-weight: 400;
  margin-right: 1em;
  text-decoration: line-through;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid #d5c199;
  border-radius: 8px;
  padding: 0.5em 1em;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity input[type=number] {
  font-size: inherit;
  border: none;
  width: 2em;
  text-align: center;
  -moz-appearance: textfield;
  background-color: transparent;
  margin: 0 1em;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity {
  /* Chrome, Safari, Edge, Opera */
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity input::-webkit-outer-spin-button,
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity .quantity_button {
  width: 1.1em;
  height: 1.1em;
  font-size: inherit;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  background-color: #d5c199;
  cursor: pointer;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity .quantity_button:hover {
  background-color: #201d1d;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity .quantity_button:active {
  background-color: #201d1d;
  transform: scale(0.94);
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity .quantity_minus {
  mask: url("../images/minus.svg");
  -webkit-mask: url("../images/minus.svg");
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity .quantity_plus {
  mask: url("../images/plus.svg");
  -webkit-mask: url("../images/plus.svg");
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity .delete_from_list_button {
  font-size: inherit;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  width: 1.5em;
  height: 1.5em;
  mask: url("../images/trash.svg");
  -webkit-mask: url("../images/trash.svg");
  cursor: pointer;
  margin-left: 1.4em;
  background-color: #d5c199;
  flex-shrink: 0;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity .delete_from_list_button:hover {
  background-color: #201d1d;
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity .delete_from_list_button:active {
  background-color: #201d1d;
  transform: scale(0.94);
}
.special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .total_price {
  margin-left: 0;
  min-width: 6em;
  width: fit-content;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: 1.5em;
}
.special_days_list_popup .special_days_list_popup_footer {
  margin-top: 2.5vw;
}
@media only screen and (min-width: 2000px) {
  .special_days_list_popup .special_days_list_popup_footer {
    margin-top: 50px;
  }
}
.special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_1 {
  margin-bottom: 2vw;
}
@media only screen and (min-width: 2000px) {
  .special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_1 {
    margin-bottom: 40px;
  }
}
.special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_1 .input_wrap {
  width: 100%;
  max-width: 300px;
  margin-left: 2vw;
}
@media only screen and (min-width: 2000px) {
  .special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_1 .input_wrap {
    margin-left: 40px;
  }
}
.special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_1 .input_wrap:first-of-type {
  max-width: 500px;
}
.special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_2 {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_2 .input_wrap {
  flex-grow: 1;
  margin-left: 2vw;
}
@media only screen and (min-width: 2000px) {
  .special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_2 .input_wrap {
    margin-left: 40px;
  }
}
.special_days_list_popup .special_days_list_popup_footer .total_order_price_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  flex-shrink: 0;
}
.special_days_list_popup .special_days_list_popup_footer .total_order_price_block .total_price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  margin-right: 3em;
  flex-shrink: 0;
}
.special_days_list_popup .special_days_list_popup_footer .total_order_price_block .total_order_price_text .text_1 {
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 0.2em;
}
.special_days_list_popup .special_days_list_popup_footer .total_order_price_block .total_order_price_text .text_2 {
  font-weight: 400;
  font-size: clamp(12px, 1.5vw, 14px);
}
.special_days_list_popup .special_days_list_popup_footer .input_wrap .input_label {
  display: block;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1;
  margin-bottom: 0.2em;
  font-weight: 500;
}
.special_days_list_popup .special_days_list_popup_footer .input_wrap input {
  width: 100%;
  font-size: clamp(14px, 1.5vw, 16px);
  padding: 0 0.5em;
  height: 3.2em;
  max-height: 50px;
  border: 1px solid #d5c199;
  border-radius: 8px;
}
.special_days_list_popup .special_days_list_popup_footer .send_list_button {
  height: fit-content;
}

.special_days_list_popup.hide {
  transform: translateY(calc(100% - var(--popup-title-height)));
}
.special_days_list_popup.hide .popup_title::after {
  transform: rotate(180deg);
}

.send_request_form {
  display: none;
}

.loading_form .send_request_form {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.loading_form .send_request_form::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff7f0;
  z-index: 1;
  opacity: 0.7;
}
.loading_form .send_request_form .send_request_form_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.loading_form .send_request_form .send_request_form_content .loading_active {
  display: block;
}
.loading_form .send_request_form .send_request_form_content .success_text {
  display: none;
  font-size: clamp(16px, 1.5vw, 20px);
  position: relative;
  padding-right: 2.5em;
}
.loading_form .send_request_form .send_request_form_content .success_text::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-image: url(../images/success_icon.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 2em;
  height: 2em;
}

.loading_form_success .send_request_form .send_request_form_content {
  position: relative;
  z-index: 2;
}
.loading_form_success .send_request_form .send_request_form_content .loading_active {
  display: none;
}
.loading_form_success .send_request_form .send_request_form_content .success_text {
  display: block;
}

@media only screen and (max-width: 1200px) {
  .special_days_list_popup .special_days_list_popup_footer {
    margin-top: 15px;
  }
  .special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 15px;
  }
  .special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_1 .input_wrap {
    width: 100%;
    max-width: initial;
    margin-left: initial;
  }
  .special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_1 .input_wrap input {
    height: 40px;
  }
  .special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_1 .input_wrap .input_label {
    margin-bottom: 5px;
  }
  .special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_1 .input_wrap:first-of-type {
    max-width: initial;
    margin-top: 15px;
  }
  .special_days_list_popup .special_days_list_popup_footer .special_days_list_popup_footer_row_2 .input_wrap {
    width: 100%;
    margin-left: initial;
    margin-bottom: 15px;
  }
  .special_days_list_popup .special_days_list_popup_footer .total_order_price_block {
    margin-right: initial;
    margin-bottom: 15px;
  }
  .special_days_list_popup .special_days_list_popup_footer .total_order_price_block .total_price {
    margin-right: auto;
  }
  .special_days_list_popup .special_days_list_popup_footer .send_list_button {
    margin-left: auto;
  }
}
@media only screen and (max-width: 980px) {
  .special_days_list_popup {
    padding: 0 20px 20px 20px;
    width: 100%;
  }
  .special_days_list_popup .popup_title {
    padding: 20px 0;
  }
  .special_days_list_popup .special_days_list_block {
    padding-left: 10px;
    margin-left: -10px;
  }
}
@media only screen and (max-width: 680px) {
  .special_days_list_popup {
    height: 85%;
  }
  .special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .image {
    max-width: 125px;
    min-width: 80px;
    width: 7vw;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .name {
    width: calc(100% - 80px);
    margin-right: 0;
    padding-right: 20px;
  }
  .special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .price,
  .special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .total_price {
    width: 100%;
  }
  .special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .price {
    margin: 10px 0;
  }
  .special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .quantity .delete_from_list_button {
    margin-left: 50px;
  }
  .special_days_list_popup .special_days_list_block .special_days_list .special_days_list_item .total_price {
    margin-left: 0;
    width: 7.5em;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: auto;
  }
  .archive_special_days {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 40px;
  }
}
.single_special_day_block .excerpt,
.single_special_day_block .special_day_gallery,
.single_special_day_block .text {
  margin-bottom: 3vw;
}
@media only screen and (min-width: 2000px) {
  .single_special_day_block .excerpt,
  .single_special_day_block .special_day_gallery,
  .single_special_day_block .text {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 780px) {
  .single_special_day_block .excerpt,
  .single_special_day_block .special_day_gallery,
  .single_special_day_block .text {
    margin-bottom: 30px;
  }
}
.header-mega-menu {
  padding-left: 0;
}

.header-container {
  z-index: 12;
}

.header-mega-menu {
  z-index: 11;
}

.running-line-block {
  z-index: 11;
}

.header-slots-select-block {
  background-color: #ffffff;
}

.left-block .nono-header-slot-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 5px;
}

@media only screen and (max-width: 600px) {
  .nono-slots-header-container {
    background-color: #201D1D;
  }
  .nono-slots-header-container #nono-header-slot-summary {
    color: #fff;
    display: flex;
    align-items: center;
    height: 44px;
    width: 100%;
    justify-content: space-around;
  }
  body:not(.nono-has-header-slot-summary) .nono-slots-header-container {
    display: none;
  }
}
.nono-header-slot-summary__content span {
  margin: 0 5px;
  font-size: 16px;
}

.mini_basket_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  display: none;
  width: 100%;
  height: 100%;
}
.mini_basket_overlay:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
}
.mini_basket_overlay.show {
  display: block;
}
.mini_basket_overlay.active::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.mini_basket_popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease-in-out;
  z-index: 12;
  width: 100%;
  max-width: 430px;
  height: fit-content;
  background-color: #fff7f0;
  border: 1px solid #d5c199;
  border-radius: 8px;
  padding: 40px 60px;
  display: none;
  opacity: 0;
  transform: translateY(50%);
}
.mini_basket_popup .mini_basket_popup_close {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/close_popup.svg");
  -webkit-mask: url("../images/close_popup.svg");
  cursor: pointer;
  background-color: #201d1d;
}
.mini_basket_popup .mini_basket_popup_close:hover {
  background-color: #d5c199;
}
.mini_basket_popup .mini_basket_popup_close:active {
  background-color: #d5c199;
  transform: scale(0.94);
}
.mini_basket_popup.show {
  display: block;
}
.mini_basket_popup.active {
  transform: translateY(0);
  opacity: 1;
}
.mini_basket_popup .mini_basket_popup_title {
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 40px;
  text-align: center;
}
.mini_basket_popup .mini_basket_popup_buttons .mini_basket_add_button {
  width: 100%;
}
.mini_basket_popup .mini_basket_popup_buttons .mini_basket_add_button:not(:last-child) {
  margin-bottom: 20px;
}

.cart-block {
  height: 100%;
}
.cart-block .mini_basket_button {
  height: inherit;
  background-color: #fff7f0;
  border: 1px solid transparent;
  border-bottom: none;
  width: 170px;
  padding: 0 35px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  position: relative;
}
.cart-block .mini_basket_button:after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  height: 3px;
  left: 0;
  right: 0;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.cart-block .mini_basket_button:hover {
  background-color: rgb(100%, 91.5294117647%, 84.1176470588%);
}
.cart-block .mini_basket_button:active {
  background-color: rgb(100%, 86.1960784314%, 74.1176470588%);
}
.cart-block .mini_basket_button:active .button_icon {
  transform: scale(0.96);
}
.cart-block .mini_basket_button .button_icon {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
}
.cart-block .mini_basket_button .button_icon:after {
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/shopping_cart_icon.svg");
  -webkit-mask: url("../images/shopping_cart_icon.svg");
  background-color: #201d1d;
}
.cart-block .mini_basket_button .button_icon .products_count {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #201d1d;
  color: #ffffff;
  line-height: 1;
  font-size: 16px;
  transform: translate(-40%, -40%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cart-block .mini_basket_button .button_icon .products_count.empty {
  display: none;
}
.cart-block .mini_basket_button .button_arrow {
  display: block;
  width: 15px;
  height: 15px;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/select_arrow.svg");
  -webkit-mask: url("../images/select_arrow.svg");
  background-color: #201d1d;
  transition: all 0.3s ease-in-out;
}
.cart-block .mini_basket_button.active {
  background-color: #ffffff;
  border-color: #d5c199;
  cursor: pointer;
}
.cart-block .mini_basket_button.active:after {
  bottom: -2px;
  background-color: #ffffff;
}
.cart-block .mini_basket_button.active .button_arrow {
  transform: rotate(180deg);
}

.mini_basket {
  background-color: #ffffff;
  max-width: 600px;
  min-width: 500px;
  width: 38vw;
  min-height: 150px;
  position: fixed;
  top: 210px;
  left: 0;
  z-index: 10;
  border: 1px solid #d5c199;
  border-bottom-right-radius: 8px;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(calc(-100% - 26px));
  padding: 1vw 2vw 1vw 1vw;
}
@media only screen and (min-width: 2000px) {
  .mini_basket {
    padding: 25px 40px 25px 25px;
  }
}
.mini_basket {
  overflow: auto;
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 4px;
}
.mini_basket::-webkit-scrollbar {
  width: var(--sb-size);
}
.mini_basket::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.mini_basket::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .mini_basket {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.mini_basket {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mini_basket.active {
  transform: translateY(0);
  opacity: 1;
}
.mini_basket .mini_basket_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 1.5em;
  font-weight: 600;
}
.mini_basket .mini_basket_header .text_2 {
  font-size: clamp(20px, 1.7vw, 24px);
}
.mini_basket .mini_basket_header .text_1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: inherit;
  position: relative;
  padding-right: 2em;
}
.mini_basket .mini_basket_header .text_1.is-hidden {
  display: none !important;
}
.mini_basket .mini_basket_header .text_1::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1.5em;
  height: 1.5em;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/alert-triangle.svg");
  -webkit-mask: url("../images/alert-triangle.svg");
  background-color: #d5c199;
}
.mini_basket .mini_basket_content {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  min-height: 200px;
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 4px;
}
.mini_basket .mini_basket_content::-webkit-scrollbar {
  width: var(--sb-size);
}
.mini_basket .mini_basket_content::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.mini_basket .mini_basket_content::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .mini_basket .mini_basket_content {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.mini_basket .mini_basket_content {
  padding-left: 1vw;
  margin-bottom: 25px;
}
@media only screen and (min-width: 2000px) {
  .mini_basket .mini_basket_content {
    padding-left: 25px;
  }
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item:not(:last-child) {
  margin-bottom: 20px;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__title_mobile {
  display: none;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item_main_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__thumb {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 125px;
  min-width: 64px;
  width: 26%;
  aspect-ratio: 1/0.72;
  flex-shrink: 0;
  margin-left: 1vw;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__thumb img {
  display: block;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  transition: all 0.1s ease-in-out;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__thumb .sail_text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  color: #d5c199;
  line-height: 1;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 72%;
  text-align: center;
  padding: 5px;
  font-weight: 600;
  transform: rotate(-90deg) translateY(-100%);
  transform-origin: top right;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__thumb:hover img {
  transform: scale(1.1);
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content {
  flex-grow: 1;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__title {
  font-weight: 600;
  line-height: 1;
  font-size: clamp(16px, 1.4vw, 20px);
  margin-bottom: 1em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta {
  font-size: 16px;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta .woocommerce-Price-currencySymbol {
  font-size: inherit;
  margin-right: 0.2em;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta:first-of-type {
  margin-left: auto;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta:last-of-type {
  width: 3em;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta .mini_basket_item__single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta .mini_basket_item__single del {
  font-size: clamp(14px, 1.4vw, 16px);
  opacity: 0.5;
  margin-right: 0.3em;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta .mini_basket_item__single ins {
  text-decoration: none;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_qty {
  flex-shrink: 0;
  max-width: 150px;
  width: 8vw;
  min-width: 140px;
  max-height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  aspect-ratio: 1/0.35;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #d5c199;
  margin-left: 20px;
  margin-right: 15px;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_qty .mini_qty_value {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_qty .mini_qty_btn {
  cursor: pointer;
  aspect-ratio: 0.8/1;
  height: 100%;
  display: block;
  position: relative;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_qty .mini_qty_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50%;
  height: 50%;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  background-color: #d5c199;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_qty .mini_qty_btn:hover {
  background-color: #d5c199;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_qty .mini_qty_btn:hover::after {
  background-color: #ffffff;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_qty .mini_qty_btn:active {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_qty .mini_qty_btn:active::after {
  transform: scale(0.9);
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_qty .mini_qty_minus::after {
  mask: url("../images/minus.svg");
  -webkit-mask: url("../images/minus.svg");
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_qty .mini_qty_plus::after {
  mask: url("../images/plus.svg");
  -webkit-mask: url("../images/plus.svg");
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_remove {
  flex-shrink: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/close.svg");
  -webkit-mask: url("../images/close.svg");
  background-color: #201d1d;
  mask-size: 65% !important;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_remove:hover {
  background-color: #d5c199;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .additional_options {
  font-size: clamp(16px, 1.4vw, 18px);
  margin-top: 20px;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .additional_options .additional_options_title {
  font-weight: 600;
  font-size: inherit;
  flex-shrink: 0;
  margin-left: auto;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .additional_options .additional_options_list .additional_options_list_item:not(:last-child) {
  margin-bottom: 0.3em;
}
.mini_basket .mini_basket_content .mini_basket_product_list .item_loading {
  position: relative;
}
.mini_basket .mini_basket_content .mini_basket_product_list .item_loading::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 1;
  opacity: 0.6;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_empty {
  text-align: center;
  font-size: clamp(18px, 1.5vw, 24px);
  position: relative;
  display: block;
  font-weight: 500;
}
.mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_empty::after {
  font-size: inherit;
  position: absolute;
  content: "";
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background-color: #d5c199;
  z-index: 1;
  width: 3em;
  height: 3em;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/empty_icon.svg");
  -webkit-mask: url("../images/empty_icon.svg");
  margin: auto;
}
.mini_basket .order_info {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1;
  margin-bottom: 25px;
  margin-top: auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.mini_basket .order_info .order_info_header .order_info_text {
  font-weight: 700;
}
.mini_basket .order_info .order_info_list {
  font-size: inherit;
  margin-top: 0.7em;
}
.mini_basket .order_info .order_info_list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.mini_basket .order_info .order_info_list li:not(:last-child) {
  margin-bottom: 0.5em;
}
.mini_basket .order_info .order_info_list li.is-hidden {
  display: none;
}
.mini_basket .order_info .order_info_name {
  font-size: inherit;
  flex-shrink: 0;
  margin-left: 1em;
  font-weight: 600;
  display: block;
}
.mini_basket .order_info .order_info_text {
  display: block;
  font-size: inherit;
  margin-right: auto;
}
.mini_basket .product_options_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  position: relative;
  padding-left: 1.2em;
  width: fit-content;
}
.mini_basket .product_options_header:after {
  font-size: inherit;
  position: absolute;
  content: "";
  width: 0.8em;
  height: 0.8em;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/select_arrow.svg");
  -webkit-mask: url("../images/select_arrow.svg");
  background-color: #201d1d;
  transition: all 0.1s;
  transform: rotate(0deg);
}
.mini_basket .product_options_header .order_info_text {
  font-weight: 700;
}
.mini_basket .product_options_header:hover {
  color: #d5c199;
  transition: all 0.1s;
}
.mini_basket .product_options_header:hover:after {
  transition: all 0.1s;
  background-color: #d5c199;
}
.mini_basket .product_options_header:active {
  color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
  transition: all 0s;
}
.mini_basket .product_options_header:active:after {
  transition: all 0s;
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.mini_basket .product_options_header.active {
  color: #d5c199;
  transition: all 0.1s;
}
.mini_basket .product_options_header.active:after {
  transition: all 0.1s;
  transform: rotate(180deg);
  background-color: #d5c199;
}
.mini_basket .product_options_list:not(.order_info_list) {
  display: none;
}
.mini_basket .mini_basket_footer {
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
}
.mini_basket .mini_basket_footer .total_count_price .mini_basket_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mini_basket .mini_basket_footer .total_count_price .mini_basket_item:first-child {
  line-height: 1;
  font-size: 20px;
  margin-bottom: 15px;
}
.mini_basket .mini_basket_footer .total_count_price .mini_basket_item:last-child {
  font-weight: 700;
  line-height: 1;
  font-size: 24px;
}
.mini_basket .mini_basket_footer .mini_basket_footer_buttons {
  margin-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mini_basket .mini_basket_footer .mini_basket_footer_buttons .button_cs {
  width: 165px;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}

@media only screen and (max-width: 1280px) {
  .cart-block .mini_basket_button {
    width: initial;
    padding: 0;
    background-color: initial;
    border: none;
  }
  .cart-block .mini_basket_button:after {
    display: none;
  }
  .cart-block .mini_basket_button:hover {
    background-color: initial;
  }
  .cart-block .mini_basket_button:active {
    background-color: initial;
  }
  .cart-block .mini_basket_button.active {
    background-color: #201d1d;
    cursor: pointer;
  }
  .cart-block .mini_basket_button .button_icon:after {
    background-color: #ffffff;
  }
  .cart-block .mini_basket_button .button_icon .products_count {
    width: 22px;
    height: 22px;
    background-color: #ffffff;
    color: #201d1d;
    font-size: 14px;
  }
  .cart-block .mini_basket_button .button_arrow {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  .cart-block .mini_basket_button .button_icon {
    width: 24px;
    height: 24px;
  }
  .cart-block .mini_basket_button .button_icon .products_count {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 600px) {
  .body_overflow_hidden {
    overflow: hidden;
  }
  header .cart-block {
    margin-left: 20px;
  }
  .header-container .left-block .user-menu-block {
    padding: 5px 15px 5px 15px;
    margin-left: 10px;
  }
  .header-container .left-block .cart-search-block .cart-block {
    margin: 0;
  }
  .mini_basket_overlay {
    z-index: 99998;
    width: 100%;
    height: 100%;
  }
  .mini_basket_popup {
    z-index: 100000;
    top: initial;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    border-radius: 8px;
    padding: 40px 40px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .mini_basket_popup .mini_basket_popup_close {
    border: none;
    background-color: transparent;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    mask-position: center !important;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
    mask: url("../images/close_popup.svg");
    -webkit-mask: url("../images/close_popup.svg");
    cursor: pointer;
    background-color: #201d1d;
  }
  .mini_basket_popup .mini_basket_popup_close:hover {
    background-color: #d5c199;
  }
  .mini_basket_popup .mini_basket_popup_close:active {
    background-color: #d5c199;
    transform: scale(0.94);
  }
  .mini_basket_popup.show {
    display: block;
  }
  .mini_basket_popup.active {
    transform: translateY(0);
    opacity: 1;
  }
  .mini_basket_popup .mini_basket_popup_title {
    font-size: clamp(20px, 1.5vw, 24px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    text-align: center;
  }
  .mini_basket_popup .mini_basket_popup_buttons .mini_basket_add_button {
    width: 100%;
  }
  .mini_basket_popup .mini_basket_popup_buttons .mini_basket_add_button:not(:last-child) {
    margin-bottom: 20px;
  }
  .mini_basket {
    top: 0;
    z-index: 99999;
    height: fit-content;
    max-height: 85dvh;
    width: 100%;
    min-width: initial;
    max-width: initial;
    border-top: none;
    border-bottom-left-radius: 8px;
    padding: 20px 20px 20px 10px;
  }
  .mini_basket .mini_basket_header {
    margin-bottom: 1em;
  }
  .mini_basket .mini_basket_header .text_2 {
    min-width: 24px;
  }
  .mini_basket .mini_basket_header .text_1 {
    margin: 0 auto;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #dfdfdf;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item:not(:last-child) {
    margin-bottom: 20px;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__title_mobile {
    display: block;
    font-weight: 600;
    line-height: 1;
    font-size: clamp(16px, 1.4vw, 20px);
    margin-bottom: 1em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 30px;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item_main_content {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__thumb {
    margin-left: 15px;
    width: 19%;
    aspect-ratio: 1/0.8;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__thumb .sail_text {
    display: none;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__title {
    display: none;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta:first-of-type {
    margin-left: auto;
    order: 1;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta:last-of-type {
    order: 2;
    margin-right: auto;
    text-align: left;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta .mini_basket_item__single {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta .mini_basket_item__single del {
    font-size: clamp(14px, 1.4vw, 16px);
    opacity: 0.5;
    margin-right: 0.3em;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_item__meta .mini_basket_item__single ins {
    text-decoration: none;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_item__content .mini_basket_item__content_info .mini_basket_qty {
    min-width: 110px;
    margin: 0 0 0px 15px;
    order: 0;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .mini_basket_remove {
    position: absolute;
    top: 0;
    left: 0;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .additional_options {
    margin-top: 15px;
  }
  .mini_basket .mini_basket_content .mini_basket_product_list .mini_basket_item .order_info {
    margin-top: 15px;
  }
  .mini_basket .product_options_header:hover {
    color: #201d1d;
  }
  .mini_basket .product_options_header:hover:after {
    background-color: #201d1d;
  }
  .mini_basket .product_options_header:active {
    color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
  }
  .mini_basket .product_options_header:active:after {
    background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
  }
  .mini_basket .product_options_header.active {
    color: #d5c199;
  }
  .mini_basket .product_options_header.active:after {
    background-color: #d5c199;
  }
  .mini_basket .mini_basket_footer {
    margin: auto 0 0 0;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
  }
  .mini_basket .mini_basket_footer .total_count_price .mini_basket_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .mini_basket .mini_basket_footer .total_count_price .mini_basket_item:first-child {
    line-height: 1;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .mini_basket .mini_basket_footer .total_count_price .mini_basket_item:last-child {
    font-weight: 700;
    line-height: 1;
    font-size: 24px;
  }
  .mini_basket .mini_basket_footer .mini_basket_footer_buttons {
    margin-top: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .mini_basket .mini_basket_footer .mini_basket_footer_buttons .button_cs {
    max-width: 180px;
    width: calc(50% - 10px);
  }
}
.cart_title_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.cart_title_block .cart_title_text {
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: clamp(16px, 1.5vw, 20px);
  position: relative;
  padding-right: 2em;
}
.cart_title_block .cart_title_text::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1.5em;
  height: 1.5em;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/alert-triangle.svg");
  -webkit-mask: url("../images/alert-triangle.svg");
  background-color: #d5c199;
}
.cart_title_block .nono-minimum-order-notice {
  display: none;
}
.cart_title_block .cart_title_block_padding_left {
  flex-shrink: 0;
  max-width: 310px;
  min-width: 280px;
  width: 22%;
  margin-right: 2vw;
}
@media only screen and (min-width: 2000px) {
  .cart_title_block .cart_title_block_padding_left {
    margin-right: 40px;
  }
}

body.nono-has-header-slot-summary .cart_title_block .nono-minimum-order-notice {
  display: flex;
  align-items: center;
}

body.nono-min-order-met .nono-minimum-order-notice,
body.nono-min-order-met .nono-minimum-order-notice-wrap {
  display: none !important;
}

.custom_cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.custom_cart .custom_cart_main {
  flex-grow: 1;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name-mobile {
  display: none;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .main_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-thumbnail {
  flex-shrink: 0;
  max-width: 120px;
  min-width: 64px;
  width: 8vw;
  aspect-ratio: 1/0.72;
  border-radius: 8px;
  overflow: hidden;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name {
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 24px);
  margin: 0px 2em 0 auto;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: inherit;
  color: inherit;
  display: block;
  text-decoration: none;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name a:hover {
  text-decoration: underline;
  color: #d5c199;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options {
  font-size: clamp(14px, 1.4vw, 16px);
  margin-top: 0.2em;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options .additional_options_list .additional_options_list_item:not(:last-child) {
  margin-bottom: 0.3em;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options .product_options_header {
  font-weight: 600;
  font-size: inherit;
  flex-shrink: 0;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  position: relative;
  padding-left: 1.2em;
  width: fit-content;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options .product_options_header:after {
  font-size: inherit;
  position: absolute;
  content: "";
  width: 0.8em;
  height: 0.8em;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/select_arrow.svg");
  -webkit-mask: url("../images/select_arrow.svg");
  background-color: #201d1d;
  transition: all 0.1s;
  transform: rotate(0deg);
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options .product_options_header .order_info_text {
  font-weight: 700;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options .product_options_header:hover {
  color: #d5c199;
  transition: all 0.1s;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options .product_options_header:hover:after {
  transition: all 0.1s;
  background-color: #d5c199;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options .product_options_header:active {
  color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
  transition: all 0s;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options .product_options_header:active:after {
  transition: all 0s;
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options .product_options_header.active {
  color: #d5c199;
  transition: all 0.1s;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options .product_options_header.active:after {
  transition: all 0.1s;
  transform: rotate(180deg);
  background-color: #d5c199;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name .additional_options .product_options_list {
  display: none;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-price {
  flex-shrink: 0;
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 24px);
  margin: 0 0 0 1.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-price del {
  font-size: clamp(14px, 1.4vw, 20px);
  opacity: 0.5;
  margin-right: 0.3em;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-price ins {
  text-decoration: none;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity {
  flex-shrink: 0;
  width: 18vw;
  min-width: 100px;
  max-width: 180px;
  max-height: 50px;
  min-height: 36px;
  aspect-ratio: 1/0.28;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #d5c199;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  width: 100%;
  height: 100%;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .input_wrap {
  /* Chrome, Safari, Edge, Opera */
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .input_wrap input::-webkit-outer-spin-button,
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .input_wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .input_wrap {
  /* Firefox */
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .input_wrap input[type=number] {
  -moz-appearance: textfield;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .custom_cart_qty_input_for_ajax {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .custom_cart_qty_btn {
  cursor: pointer;
  aspect-ratio: 0.8/1;
  height: 100%;
  display: block;
  position: relative;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .custom_cart_qty_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50%;
  height: 50%;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  background-color: #d5c199;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .custom_cart_qty_btn:hover {
  background-color: #d5c199;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .custom_cart_qty_btn:hover::after {
  background-color: #ffffff;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .custom_cart_qty_btn:active {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .custom_cart_qty_btn:active::after {
  transform: scale(0.9);
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .custom_cart_qty_minus::after {
  mask: url("../images/minus.svg");
  -webkit-mask: url("../images/minus.svg");
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .custom_cart_qty .custom_cart_qty_plus::after {
  mask: url("../images/plus.svg");
  -webkit-mask: url("../images/plus.svg");
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .product_stok_count {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1;
  padding-right: 2em;
  margin-top: 0.2em;
  position: relative;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-quantity .product_stok_count::after {
  position: absolute;
  content: "";
  top: -1.1em;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1.5em;
  height: 1.5em;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/alert-triangle.svg");
  -webkit-mask: url("../images/alert-triangle.svg");
  background-color: #eaa794;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-subtotal {
  font-size: clamp(16px, 1.5vw, 24px);
  flex-shrink: 0;
  width: 4.5em;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-subtotal span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  font-size: inherit;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-subtotal .woocommerce-Price-currencySymbol {
  font-size: inherit;
  margin-right: 0.2em;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-remove {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  width: 1em;
  height: 1em;
  margin-right: 1em;
  font-size: clamp(16px, 1.5vw, 24px);
  flex-shrink: 0;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-remove .remove {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: inherit;
  flex-shrink: 0;
  position: relative;
  background-color: #ffffff;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-remove .remove::after {
  font-size: inherit;
  transition: all 0.1s ease-in-out;
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0.15em;
  right: 0.15em;
  bottom: 0.15em;
  margin: auto;
  z-index: 10;
  background-color: #d5c199;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/close.svg");
  -webkit-mask: url("../images/close.svg");
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-remove .remove:hover {
  background-color: #d5c199;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-remove .remove:hover::after {
  background-color: #ffffff;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-remove .remove:active {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
  transform: scale(0.9);
  transition: all 0;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .additional_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .additional_row .additional_row_item {
  height: fit-content;
  min-height: initial;
  max-height: initial;
  aspect-ratio: initial;
}
.custom_cart .custom_cart_main .cart-collaterals {
  background-color: #201d1d;
  overflow: hidden;
  border-radius: 8px;
  padding: 30px;
}
.custom_cart .custom_cart_main .cart-collaterals .blockUI.blockOverlay {
  background-color: transparent !important;
  opacity: 0 !important;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 1;
  flex-basis: 1px;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item {
  flex-grow: 1;
  flex-basis: 1px;
  margin-left: 20px;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .product_options_header {
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  width: fit-content;
  padding-left: 1.5em;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  white-space: nowrap;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .product_options_header::after {
  position: absolute;
  content: "";
  width: 0.8em;
  height: 0.8em;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/select_arrow.svg");
  -webkit-mask: url("../images/select_arrow.svg");
  background-color: #ffffff;
  transition: all 0.1s ease-in-out;
  transform: rotate(0deg);
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .product_options_header:hover {
  color: #d5c199;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .product_options_header:hover::after {
  background-color: #d5c199;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .product_options_header:active {
  color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
  transition: all 0s ease-in-out;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .product_options_header:active::after {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .product_options_header.active {
  color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .product_options_header.active::after {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
  transform: rotate(180deg);
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .product_options_list {
  display: none;
  font-size: 18px;
  margin-top: 0.4em;
  line-height: 1;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .product_options_list li {
  color: #ffffff;
  white-space: nowrap;
  line-height: inherit;
  font-size: inherit;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .product_options_list li:not(:last-child) {
  margin-bottom: 0.3em;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .shop_table_item_name {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0.5em;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .shop_table .shop_table_item .shop_table_item_value {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}
.custom_cart .custom_cart_main .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  margin-right: auto;
}

.custom_cart .blockUI.blockOverlay,
.custom_cart_sidebar_wrap .blockUI.blockOverlay {
  background-color: transparent !important;
  opacity: 0 !important;
}

.cart_is_loading {
  position: relative;
}
.cart_is_loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  background-color: transparent;
  opacity: 0;
}

.custom_cart_sidebar_wrap {
  flex-shrink: 0;
  max-width: 310px;
  min-width: 280px;
  width: 22%;
  margin-right: 2vw;
}
@media only screen and (min-width: 2000px) {
  .custom_cart_sidebar_wrap {
    margin-right: 40px;
  }
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_title {
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 24px);
  margin-bottom: 0.5em;
  line-height: 1;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block {
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 4px;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block::-webkit-scrollbar {
  width: var(--sb-size);
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .custom_cart_sidebar_wrap .custom_cart_sidebar_block {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block {
  max-height: 70vh;
  overflow: auto;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block .custom_cart_sidebar {
  padding-left: 10px;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block .custom_cart_sidebar .cross-sells h2 {
  display: none;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block .custom_cart_sidebar .cross-sells .products {
  display: block;
  gap: initial;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block .custom_cart_sidebar .cross-sells .products .product:not(:last-child) {
  margin-bottom: 30px;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block .custom_cart_sidebar .cross-sells .products .product img {
  margin-bottom: 10px;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block .custom_cart_sidebar .cross-sells .products .product .woocommerce-product-details__short-description p {
  margin-bottom: 0px;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block #b2c-search-results {
  padding-left: 10px;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block #b2c-search-results .products {
  display: block;
  gap: initial;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block #b2c-search-results .products .product:not(:last-child) {
  margin-bottom: 30px;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block #b2c-search-results .products .product img {
  margin-bottom: 10px;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block #b2c-search-results .products .product .woocommerce-product-details__short-description p {
  margin-bottom: 0px;
}
.custom_cart_sidebar_wrap .custom_cart_sidebar_block #b2c-search-results .b2c-search-no-results {
  opacity: 0.6;
}
.custom_cart_sidebar_wrap .b2c-search-block {
  margin-bottom: 20px;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-input-wrap {
  position: relative;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-input {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 16px;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  font-size: 16px;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-input:focus {
  border-color: #d5c199;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #d5c199;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-dropdown {
  display: none;
  position: absolute;
  z-index: 5;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  max-height: 300px;
  overflow: auto;
  background-color: #ffffff;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  --sb-track-color: #000000;
  --sb-thumb-color: #977c4a;
  --sb-size: 4px;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-dropdown::-webkit-scrollbar {
  width: var(--sb-size);
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-dropdown::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 10px;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-dropdown::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 10px;
}
@supports not selector(::-webkit-scrollbar) {
  .custom_cart_sidebar_wrap .b2c-search-block .b2c-search-dropdown {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-dropdown.is-open {
  display: block;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-dropdown .b2c-search-suggestion {
  padding: 10px 16px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-dropdown .b2c-search-suggestion:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-dropdown .b2c-search-suggestion:hover {
  background-color: #fff7f0;
}
.custom_cart_sidebar_wrap .b2c-search-block .b2c-search-dropdown .b2c-search-suggestion .b2c-search-suggestion-sku {
  flex-shrink: 0;
  opacity: 0.5;
  font-size: 13px;
}

.custom_cart_empty .cart_empty_text {
  text-align: center;
  font-weight: 600;
  font-size: clamp(20px, 1.5vw, 32px);
}
.custom_cart_empty .cart_empty_img {
  display: block;
  font-size: clamp(18px, 1.6vw, 32px);
  width: 4em;
  height: 4em;
  margin: 1em auto;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/empty_icon.svg");
  -webkit-mask: url("../images/empty_icon.svg");
  background-color: #d5c199;
}
.custom_cart_empty .cart_empty_button {
  margin: 0 auto;
}

.remove_products_list_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  display: none;
  width: 100%;
  height: 100%;
}
.remove_products_list_overlay:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
}
.remove_products_list_overlay.show {
  display: block;
}
.remove_products_list_overlay.active::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.remove_products_list_popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease-in-out;
  z-index: 12;
  width: 100%;
  max-width: 380px;
  height: fit-content;
  background-color: #fff7f0;
  border: 1px solid #d5c199;
  border-radius: 8px;
  padding: 40px 40px;
  display: none;
  opacity: 0;
  transform: translateY(50%);
}
.remove_products_list_popup .remove_products_list_popup_close {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/close_popup.svg");
  -webkit-mask: url("../images/close_popup.svg");
  cursor: pointer;
  background-color: #201d1d;
}
.remove_products_list_popup .remove_products_list_popup_close:hover {
  background-color: #d5c199;
}
.remove_products_list_popup .remove_products_list_popup_close:active {
  background-color: #d5c199;
  transform: scale(0.94);
}
.remove_products_list_popup.show {
  display: block;
}
.remove_products_list_popup.active {
  transform: translateY(0);
  opacity: 1;
}
.remove_products_list_popup .remove_products_list_popup_title {
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
.remove_products_list_popup .remove_products_list_popup_text {
  font-size: clamp(16px, 1.5vw, 18px);
  margin-bottom: 30px;
}
.remove_products_list_popup .unavailable_products_list .unavailable_products_list_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.remove_products_list_popup .unavailable_products_list .unavailable_products_list_item .unavailable_products_list_item_image_wrap {
  text-decoration: none;
  display: block;
  width: 64px;
  height: 48px;
  margin-left: 20px;
}
.remove_products_list_popup .unavailable_products_list .unavailable_products_list_item .unavailable_products_list_item_image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.remove_products_list_popup .unavailable_products_list .unavailable_products_list_item .unavailable_products_list_item_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.remove_products_list_popup .unavailable_products_list .unavailable_products_list_item .unavailable_products_list_item_content .unavailable_products_list_item_name {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: auto;
}
.remove_products_list_popup .unavailable_products_list .unavailable_products_list_item .unavailable_products_list_item_content .unavailable_products_list_item_price {
  font-size: 16px;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.remove_products_list_popup .unavailable_products_list .unavailable_products_list_item .unavailable_products_list_item_content .unavailable_products_list_item_price del {
  font-size: 14px;
  opacity: 0.5;
  margin-right: 0.3em;
}
.remove_products_list_popup .unavailable_products_list .unavailable_products_list_item .unavailable_products_list_item_content .unavailable_products_list_item_price ins {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.remove_products_list_popup .remove_products_list_popup_buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.remove_products_list_popup .remove_products_list_popup_buttons .remove_products_list_add_button {
  flex-shrink: 0;
  margin-left: 20px;
  min-width: 120px;
}
.remove_products_list_popup .remove_products_list_popup_buttons .products_list_add_button {
  flex-grow: 1;
}

@media only screen and (max-width: 1200px) {
  .custom_cart_sidebar_wrap {
    display: none;
  }
  .cart_title_block .cart_title_block_padding_left {
    display: none;
  }
  .alt-order-b2c-cart .custom_cart_sidebar_wrap {
    display: block !important;
  }
}
@media only screen and (max-width: 780px) {
  .custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .product-name-mobile {
    display: block;
    font-weight: 600;
    font-size: clamp(16px, 1.5vw, 24px);
    margin: 0px 0 0.5em 0;
  }
  .custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .main_row .product-name {
    display: none;
  }
  .custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .main_row .product-price {
    margin: 0 1em 0 auto;
  }
  .custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .main_row .product-subtotal {
    width: 3.5em;
  }
  .custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .main_row .product-remove {
    margin-right: 0.5em;
  }
  .custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .additional_row .product-thumbnail {
    display: none;
  }
  .custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .additional_row .product-name {
    margin: 0.2em 0 0 auto;
    width: fit-content;
    white-space: nowrap;
  }
  .custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .additional_row .product-subtotal {
    width: 3.1em;
  }
  .custom_cart .custom_cart_main .woocommerce-cart-form .shop_table .woocommerce-cart-form__cart-item .additional_row .product-quantity .product_stok_count {
    white-space: nowrap;
  }
  .custom_cart .custom_cart_main .cart-collaterals {
    padding: 20px;
  }
  .custom_cart .custom_cart_main .cart-collaterals .custom-cart-totals {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .custom_cart .custom_cart_main .cart-collaterals .custom-cart-totals .shop_table {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .custom_cart .custom_cart_main .cart-collaterals .custom-cart-totals .shop_table .shop_table_item {
    width: 50%;
    margin: 0;
    flex-grow: initial;
    flex-basis: initial;
  }
  .custom_cart .custom_cart_main .cart-collaterals .custom-cart-totals .shop_table .shop_table_item:first-child {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .custom_cart .custom_cart_main .cart-collaterals .custom-cart-totals .shop_table .shop_table_item:first-child .order_info_name {
    margin: 0;
  }
  .custom_cart .custom_cart_main .cart-collaterals .custom-cart-totals .shop_table .shop_table_item:first-child .product_options_list {
    width: 100%;
  }
  .custom_cart .custom_cart_main .cart-collaterals .custom-cart-totals .shop_table .shop_table_item:nth-child(2) {
    margin-bottom: 30px;
  }
  .custom_cart .custom_cart_main .cart-collaterals .custom-cart-totals .shop_table .shop_table_item:nth-child(3) {
    margin-bottom: 20px;
    text-align-last: left;
    padding-left: 25px;
  }
  .custom_cart .custom_cart_main .cart-collaterals .custom-cart-totals .shop_table .shop_table_item:nth-child(5) {
    padding-left: 25px;
    margin-bottom: 3%;
    text-align-last: left;
  }
  .custom_cart .custom_cart_main .cart-collaterals .custom-cart-totals .wc-proceed-to-checkout {
    margin: 30px auto 0 auto;
  }
}
@media only screen and (max-width: 600px) {
  .remove_products_list_overlay {
    z-index: 99998;
    width: 100%;
    height: 100%;
  }
  .remove_products_list_popup {
    z-index: 100000;
    top: initial;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    border-radius: 8px;
    padding: 40px 40px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .remove_products_list_popup .remove_products_list_popup_close {
    border: none;
    background-color: transparent;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    mask-position: center !important;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
    mask: url("../images/close_popup.svg");
    -webkit-mask: url("../images/close_popup.svg");
    cursor: pointer;
    background-color: #201d1d;
  }
  .remove_products_list_popup .remove_products_list_popup_close:hover {
    background-color: #d5c199;
  }
  .remove_products_list_popup .remove_products_list_popup_close:active {
    background-color: #d5c199;
    transform: scale(0.94);
  }
  .remove_products_list_popup.show {
    display: block;
  }
  .remove_products_list_popup.active {
    transform: translateY(0);
    opacity: 1;
  }
  .remove_products_list_popup .remove_products_list_popup_title {
    font-size: clamp(20px, 1.5vw, 24px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    text-align: center;
  }
  .remove_products_list_popup .remove_products_list_popup_buttons .remove_products_list_add_button {
    width: 100%;
  }
  .remove_products_list_popup .remove_products_list_popup_buttons .remove_products_list_add_button:not(:last-child) {
    margin-bottom: 20px;
  }
}
.custom_checkout .custom_checkout_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom {
  height: fit-content;
  width: 100%;
  max-width: 460px;
  margin-right: 2vw;
}
@media screen and (min-width: 2000px) {
  .custom_checkout .custom_checkout_content .checkout_review_order_custom {
    margin-right: 40px;
  }
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom {
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #d5c199;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__title {
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 600;
  margin-bottom: 1em;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #dfdfdf;
  position: relative;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__image {
  width: 5vw;
  flex-shrink: 0;
  max-width: 75px;
  min-width: 64px;
  aspect-ratio: 1/0.72;
  height: fit-content;
  font-size: clamp(14px, 1.3vw, 20px);
  margin-left: 1em;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info {
  flex-grow: 1;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .nm-checkout-item__content .nm-checkout-item__name {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0.6em;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_quantity {
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_quantity .nm-checkout-item__qty {
  font-size: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_quantity .nm-checkout-item__qty .symbol {
  display: block;
  font-size: inherit;
  width: 0.5em;
  height: 0.5em;
  background-image: url(../images/close.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin-left: 0.3em;
  margin-right: 0.3em;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_quantity .nm-checkout-item__total {
  font-size: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_quantity .nm-checkout-item__total .nm-checkout-item__total-old {
  font-size: 14px;
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 0.5em;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description {
  font-size: 16px;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .product_description_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: inherit;
  margin-top: 0.5em;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .product_description_item .product_description_item_text {
  font-weight: 600;
  flex-shrink: 0;
  margin-left: auto;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options {
  font-size: inherit;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options .additional_options_list .additional_options_list_item:not(:last-child) {
  margin-bottom: 0.3em;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options .product_options_header {
  font-weight: 600;
  font-size: inherit;
  flex-shrink: 0;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  position: relative;
  padding-left: 1.2em;
  width: fit-content;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options .product_options_header:after {
  font-size: inherit;
  position: absolute;
  content: "";
  width: 0.8em;
  height: 0.8em;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/select_arrow.svg");
  -webkit-mask: url("../images/select_arrow.svg");
  background-color: #201d1d;
  transition: all 0.1s;
  transform: rotate(0deg);
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options .product_options_header .order_info_text {
  font-weight: 700;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options .product_options_header:hover {
  color: #d5c199;
  transition: all 0.1s;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options .product_options_header:hover:after {
  transition: all 0.1s;
  background-color: #d5c199;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options .product_options_header:active {
  color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
  transition: all 0s;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options .product_options_header:active:after {
  transition: all 0s;
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options .product_options_header.active {
  color: #d5c199;
  transition: all 0.1s;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options .product_options_header.active:after {
  transition: all 0.1s;
  transform: rotate(180deg);
  background-color: #d5c199;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__info .product_description .additional_options .product_options_list {
  display: none;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item.cart_is_loading {
  opacity: 0.55;
  pointer-events: none;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__remove {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-shrink: 0;
  align-self: flex-start;
  width: 1em;
  height: 1em;
  margin-right: 0.6em;
  font-size: clamp(16px, 1.5vw, 22px);
  position: relative;
  background-color: #ffffff;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__remove::after {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0.15em;
  right: 0.15em;
  bottom: 0.15em;
  margin: auto;
  z-index: 1;
  background-color: #d5c199;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/close.svg");
  -webkit-mask: url("../images/close.svg");
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__remove:hover {
  background-color: #d5c199;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__remove:hover::after {
  background-color: #ffffff;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__remove:active {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
  transform: scale(0.9);
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__items .nm-checkout-item .nm-checkout-item__remove:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.custom_checkout.nono-checkout-payment-active .custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-item .nm-checkout-item__remove {
  display: none;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info {
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #dfdfdf;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item:not(:last-child) {
  margin-bottom: 1em;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item .additional_info_item_title {
  margin-left: auto;
  font-weight: 600;
  font-size: inherit;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item .additional_info_item_value {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: inherit;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item .product_options_header {
  font-weight: 600;
  font-size: inherit;
  line-height: inherit;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  position: relative;
  padding-left: 1.2em;
  width: fit-content;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item .product_options_header:after {
  font-size: inherit;
  position: absolute;
  content: "";
  width: 0.8em;
  height: 0.8em;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/select_arrow.svg");
  -webkit-mask: url("../images/select_arrow.svg");
  background-color: #201d1d;
  transition: all 0.1s;
  transform: rotate(0deg);
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item .product_options_header .order_info_text {
  font-weight: 700;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item .product_options_header:hover {
  color: #d5c199;
  transition: all 0.1s;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item .product_options_header:hover:after {
  transition: all 0.1s;
  background-color: #d5c199;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item .product_options_header:active {
  color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
  transition: all 0s;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item .product_options_header:active:after {
  transition: all 0s;
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item .product_options_header.active {
  color: #d5c199;
  transition: all 0.1s;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .additional_info .additional_info_item .product_options_header.active:after {
  transition: all 0.1s;
  transform: rotate(180deg);
  background-color: #d5c199;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon {
  margin-top: 20px;
  margin-bottom: 25px;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon .checkout_coupon_applied {
  display: none;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon .checkout_coupon_applied .summary-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 0;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon .checkout_coupon_applied .summary-row .summary-row__title {
  margin-left: auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon .checkout_coupon_applied .summary-row .summary-row__value {
  line-height: 1;
  font-size: 20px;
  font-weight: 600;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon.has-applied-coupon .checkout_coupon_title,
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon.has-applied-coupon .coupon_form_inline {
  display: none;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon.has-applied-coupon .checkout_coupon_applied {
  display: block;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon.is-disabled .coupon_code_value {
  opacity: 0.55;
  cursor: not-allowed;
  background-color: rgba(213, 193, 153, 0.08);
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon.is-disabled .coupon_code_button {
  opacity: 0.55;
  cursor: not-allowed;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon .checkout_coupon_title {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 600;
  margin-bottom: 0.5em;
  display: block;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon .coupon_form_inline .coupon_code_value {
  width: 100%;
  font-size: 16px;
  border: 1px solid #d5c199;
  border-radius: 8px;
  padding: 0 10px;
  height: 49px;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon .coupon_form_inline .coupon_code_button {
  width: 100%;
  margin-top: 10px;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon .coupon_form_inline .checkout_coupon_notices {
  margin-top: 10px;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon .coupon_form_inline .checkout_coupon_notices .woocommerce-error {
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent;
  border: 0;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon .coupon_form_inline .checkout_coupon_notices .woocommerce-error li {
  color: #b81c23;
  font-size: 14px;
  line-height: 1.4;
  text-align: right;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .checkout_coupon .checkout_coupon_applied__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .summary-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 10px;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .summary-row:first-child {
  margin-top: 0;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .summary-row .summary-row__title {
  margin-left: auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .summary-row .summary-row__value {
  line-height: 1;
  font-size: 20px;
  font-weight: 600;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .summary-row.is-hidden {
  display: none;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .custom-coupon-row .summary-row__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .custom-coupon-row .custom-coupon-remove {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .custom-coupon-row .custom-coupon-remove::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url(../images/close.svg);
  -webkit-mask: url(../images/close.svg);
  background-color: #201d1d;
  -webkit-mask-size: 60% !important;
  mask-size: 60% !important;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .custom-coupon-row .custom-coupon-remove:hover {
  background-color: #d5c199;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .custom-coupon-row .custom-coupon-remove:hover::after {
  background-color: #ffffff;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .custom-coupon-row .custom-coupon-remove:active {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .custom-coupon-row .custom-coupon-remove:active::after {
  background-color: #ffffff;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .total-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: clamp(20px, 1.3vw, 24px);
  margin-top: 1em;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .total-row .total-row__title {
  margin-left: auto;
  font-weight: 600;
  line-height: 1;
  font-size: inherit;
}
.custom_checkout .custom_checkout_content .checkout_review_order_custom .nm-checkout-summary__totals .total-row .total-row__value {
  font-size: inherit;
  line-height: 1;
  font-size: 20px;
  font-weight: 600;
}
.custom_checkout .custom_checkout_content .customer_details_custom {
  height: fit-content;
  flex-grow: 1;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item {
  border-radius: 8px;
  border: 1px solid #d5c199;
  overflow: hidden;
  flex-grow: 1;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item.active {
  overflow: visible;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item:not(:last-child) {
  margin-bottom: 10px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_title {
  cursor: pointer;
  background-color: #fff7f0;
  line-height: 1;
  font-size: clamp(20px, 1.3vw, 24px);
  padding: 25px 30px;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_title::after {
  transition: all 0.3s;
  font-size: inherit;
  width: 0.8em;
  height: 0.8em;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1em;
  margin: auto;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url(../images/arrow_down_black.svg);
  -webkit-mask: url(../images/arrow_down_black.svg);
  background-color: #201d1d;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_title:hover {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_title:active {
  background-color: rgb(71.862745098%, 58.4640522876%, 31.6666666667%);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_title.active {
  background-color: #d5c199;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_title.active::after {
  transition: all 0.3s;
  transform: rotate(180deg);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_title.nm-payment-tab-ready:not(.active) {
  background-color: #d5c199;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_title.nm-payment-tab-ready:not(.active):hover {
  background-color: rgb(78.862745098%, 68.7973856209%, 48.6666666667%);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_title.nm-payment-tab-ready:not(.active):active {
  background-color: rgb(75.362745098%, 63.6307189542%, 40.1666666667%);
}
.custom_checkout .nm-go-to-payment-row {
  display: none !important;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item.disabled {
  border-color: #dfdfdf;
  opacity: 1;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item.disabled .customer_details_custom_item_title {
  pointer-events: none;
  background-color: #dfdfdf;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content {
  display: none;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content .payment_methods_wrapper {
  padding: 2px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content .payment_methods_wrapper .payment_methods {
  margin-bottom: 20px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content .payment_methods_wrapper .payment_methods .wc_payment_method input {
  accent-color: #d5c199;
  width: 16px;
  height: 16px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content .payment_methods_wrapper .payment_methods .wc_payment_method.payment_method_dp_hypay--tiles, .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content .payment_methods_wrapper .payment_methods .wc_payment_method.payment_method_creditguard--tiles {
  margin-bottom: 0;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content .payment_methods_wrapper .payment_methods .wc_payment_method.payment_method_dp_hypay--tiles .payment_box, .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content .payment_methods_wrapper .payment_methods .wc_payment_method.payment_method_creditguard--tiles .payment_box {
  background-color: transparent;
  padding: 0;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content .payment_methods_wrapper .payment_methods .wc_payment_method .payment_box {
  font-size: clamp(14px, 1.3vw, 16px);
  background-color: #d5c199;
  padding: 1em;
  border-radius: 8px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content .payment_methods_wrapper .payment_methods .wc_payment_method .payment_box p {
  font-size: inherit;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content .payment_methods_wrapper .payment_methods .wc_payment_method label {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 500;
  margin-left: 10px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .customer_details_custom_item_content .payment_methods_wrapper .payment_methods .wc_payment_method:not(:last-child) {
  margin-bottom: 15px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 16px;
  padding: 30px 30px 5px 30px;
  border-bottom: 1px solid #d5c199;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group.border_bottom_none {
  border-bottom: none;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group input[type=tel] {
  text-align: right;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group input:not([type=checkbox]) {
  font-size: inherit;
  width: fit-content;
  height: 49px;
  border: 1px solid #d5c199;
  border-radius: 8px;
  padding: 0 10px;
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group input[readonly]:not(.dateInput_js) {
  background-color: #dfdfdf;
  background-color: initial;
  font-weight: 500;
  border: none;
  cursor: default;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .woocommerce-input-wrapper {
  flex-grow: 1;
  max-width: 275px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group label {
  font-size: inherit;
  font-weight: 600;
  width: 7em;
  flex-shrink: 0;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 47%;
  max-width: 400px;
  margin-bottom: 25px;
  height: fit-content;
  font-size: clamp(14px, 1.3vw, 16px);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row.width_400 {
  max-width: 400px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row.width_100 {
  max-width: initial;
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row .save_to_account_label {
  position: relative;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row .save_to_account_label .input_checkbox_style {
  display: block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 2px;
  border: 1px solid #d5c199;
  margin-left: 0.5em;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row .save_to_account_label input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row .save_to_account_label input:checked + .input_checkbox_style {
  background-color: #d5c199;
  background-image: url(../images/checkbox_check_2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row .save_to_account_label:active .input_checkbox_style {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
  transform: scale(0.9);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row .save_to_account_label a:hover {
  color: #d5c199;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form_required_text {
  margin-right: auto;
  line-height: 1;
  font-size: 14px;
  font-weight: 300;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  padding-bottom: 30px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_1 .form-row {
  margin-bottom: 0 !important;
  max-width: initial;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_1 .form-row .woocommerce-input-wrapper {
  max-width: initial;
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_1 .form-row {
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_1 .form-row:not(:first-of-type) {
  margin-bottom: 0px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_1 .form-row:nth-child(even) {
  margin-right: auto;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .nm-billing-address-section {
  width: 100%;
  padding: 30px;
  border-bottom: 1px solid #d5c199;
  margin-bottom: 30px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .nm-billing-address-section .nm-billing-address-title {
  font-size: clamp(20px, 1.3vw, 24px);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 20px;
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .nm-billing-address-section .nm-billing-same-row {
  margin-bottom: 20px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .nm-billing-address-section .nm-billing-same-row .save_to_account_label {
  position: relative;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .nm-billing-address-section .nm-billing-same-row .save_to_account_label .input_checkbox_style {
  display: block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 2px;
  border: 1px solid #d5c199;
  margin-left: 0.5em;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .nm-billing-address-section .nm-billing-same-row .save_to_account_label input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .nm-billing-address-section .nm-billing-same-row .save_to_account_label input:checked + .input_checkbox_style {
  background-color: #d5c199;
  background-image: url(../images/checkbox_check_2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .nm-billing-address-section .nm-billing-same-row .save_to_account_label:active .input_checkbox_style {
  background-color: rgb(77.6960784314%, 67.0751633987%, 45.8333333333%);
  transform: scale(0.9);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_billing_address {
  border: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  width: 100%;
  padding-bottom: 0;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_billing_address .form-row {
  margin-bottom: 0 !important;
  max-width: initial;
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_billing_address .width_100 {
  grid-column: 1/-1;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_billing_address .sls-autocomplete-wrap {
  position: relative;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_billing_address .nono-autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 40;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(213, 193, 153, 0.35);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  max-height: 220px;
  overflow-y: auto;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_billing_address .nono-autocomplete-list li[role=option] {
  padding: 10px 14px;
  font-size: 15px;
  line-height: 1.3;
  cursor: pointer;
  border-bottom: 1px solid rgba(213, 193, 153, 0.15);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_billing_address .nono-autocomplete-list li[role=option]:hover {
  background: rgba(213, 193, 153, 0.08);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_billing_address .nono-autocomplete-list li.nono-powered-by-google {
  padding: 6px 12px;
  text-align: left;
  background: #fff;
  border-top: 1px solid rgba(213, 193, 153, 0.15);
  cursor: default;
  pointer-events: none;
  font-size: 12px;
  color: #888;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm-address-summary .selected-address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm-address-summary .nm-address-summary-lines {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm-address-summary .nm-address-summary-lines .nm-line {
  margin-left: 20px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm-address-summary .nm-address-summary-label {
  font-size: clamp(20px, 1.3vw, 24px);
  line-height: 1;
  font-weight: 600;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm_user_saved_slot_block,
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm-checkout-slot-address-summary {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm_user_saved_slot_block .nm-checkout-slot-address-summary__line,
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm-checkout-slot-address-summary .nm-checkout-slot-address-summary__line {
  margin: 0;
  font-size: clamp(20px, 1.3vw, 24px);
  line-height: 1.3;
  flex: 1 1 auto;
  min-width: 0;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm_user_saved_slot_block .nm-checkout-slot-address-summary__title,
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm-checkout-slot-address-summary .nm-checkout-slot-address-summary__title {
  font-weight: 600;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm_user_saved_slot_block .nm_user_saved_slot_name,
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm-checkout-slot-address-summary .nm_user_saved_slot_name {
  font-weight: 700;
  font-size: clamp(20px, 1.3vw, 24px);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm_user_saved_slot_block .nm-checkout-slot-change-address-btn,
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm-checkout-slot-address-summary .nm-checkout-slot-change-address-btn {
  flex-shrink: 0;
  margin: 0;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .nm-checkout-slot-address-summary.is-pickup-slot .nm-checkout-slot-change-address-btn {
  display: none !important;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2.is-not-sure-address {
  padding-top: 0;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2.is-not-sure-address .nm-saved-addresses-wrapper > *:not(#nm_user_saved_slot_block) {
  display: none !important;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2.is-not-sure-address .nm-saved-addresses-wrapper > #nm_shipping_form_visible {
  display: none !important;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .user-saved-addresses {
  margin-bottom: 25px;
  width: 100%;
  max-width: initial;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .user-saved-addresses .select_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .user-saved-addresses .select_block .select_wrapper {
  flex-grow: 1;
  flex-shrink: 0;
  margin-bottom: 0px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .user-saved-addresses .button_cs {
  flex-shrink: 0;
  margin-right: 20px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .shipping_address {
  display: block !important;
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .shipping_address .woocommerce-shipping-fields__field-wrapper {
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .shipping_address .woocommerce-shipping-fields__field-wrapper .nm-saved-addresses-wrapper {
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .shipping_address .nm-shipping-form-visible {
  margin-top: 20px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .shipping_address .new_address_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .change_delivery_time_button {
  margin-right: 25px;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .select_wrapper {
  margin-bottom: 0;
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .select_wrapper .select2-container {
  width: 100% !important;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .textarea_wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .textarea_wrapper label {
  margin-top: 0.8em;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .textarea_wrapper textarea {
  border: 1px solid #d5c199;
  border-radius: 8px;
  min-height: 90px;
  font-size: clamp(14px, 1.3vw, 16px);
  resize: vertical;
  width: 100%;
  padding: 0.72em 1em;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .textarea_wrapper textarea::placeholder {
  color: #201d1d;
  opacity: 1;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .textarea_wrapper textarea::-webkit-input-placeholder {
  color: #201d1d;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .delivery_time_value_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .delivery_time_value_block .delivery_time_value {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account_info.is-hidden {
  display: none !important;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account .form_row_text {
  flex-grow: 1;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account .join_club_button {
  flex-shrink: 0;
  margin-right: 2em;
  font-size: clamp(14px, 1.3vw, 16px);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account .join_club_button.active {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account_form_wrapper {
  display: none;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account_form_wrapper .form_row_create_account_form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account_form_wrapper .form_row_create_account_form .form-row:nth-child(even) {
  margin-right: auto;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account_form_wrapper .form_row_create_account_form .input_date_wrap {
  position: relative;
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account_form_wrapper .form_row_create_account_form .input_date_wrap input {
  width: 100%;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account_form_wrapper .form_row_create_account_form .input_date_wrap .openCalendar {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 1em;
  margin: auto;
  width: 1.8em;
  height: 1.8em;
  max-width: 32px;
  max-height: 32px;
  background-image: url(../images/calendar.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account_form_wrapper .form_row_create_account_form .input_date_wrap .clearCalendar {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 3em;
  margin: auto;
  width: 1.8em;
  height: 1.8em;
  max-width: 32px;
  max-height: 32px;
  background-image: url(../images/close_popup.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  display: none;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account_form_wrapper .form_row_create_account_form .checkbox_wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .form_row_create_account_form_wrapper .form_row_create_account_form .checkbox_wrapper .save_to_account_label:not(:first-child) {
  margin-top: 15px;
}

.select2_custom_style_select_saved_address {
  border: 1px solid #d5c199 !important;
}

#current_address .is-hidden {
  display: none !important;
}

.nm-checkout-shipping-cost-item.is-hidden {
  display: none !important;
}

#nm_user_saved_address_wrapper.is-hidden {
  display: none !important;
}

#nm_shipping_form_visible.is-hidden {
  display: none !important;
}

body.logged-in .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2.is-not-sure-address .nm-saved-addresses-wrapper > #nm_shipping_form_visible,
body:not(.logged-in) .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2.is-not-sure-address .nm-saved-addresses-wrapper > #nm_shipping_form_visible {
  display: none !important;
}

#nm_shipping_form_visible .form-row.is-hidden {
  display: none !important;
}

.nm-checkout-over-18-row.is-hidden {
  display: none !important;
}

.custom_checkout #shipping_method,
.custom_checkout .woocommerce-shipping-methods,
.custom_checkout .nm-checkout-hidden-shipping-methods {
  display: none !important;
}

.nm-thankyou {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.nm-thankyou .nm-thankyou-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  flex-grow: 1;
}
.nm-thankyou .nm-thankyou-content .nm-thankyou-title {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.2;
  margin-bottom: 2em;
  font-weight: 400;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview {
  font-size: clamp(16px, 1.3vw, 20px);
  margin-bottom: 1.5em;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview li, .nm-thankyou .nm-thankyou-content .nm-order-overview__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  font-size: inherit;
  padding-right: 1em;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview li::before, .nm-thankyou .nm-thankyou-content .nm-order-overview__item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.55em;
  font-size: inherit;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background-color: #d5c199;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview li:not(:last-of-type), .nm-thankyou .nm-thankyou-content .nm-order-overview__item:not(:last-of-type) {
  margin-bottom: 0.5em;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview li span, .nm-thankyou .nm-thankyou-content .nm-order-overview__item span {
  display: inline-block;
  margin-left: 0;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview li strong, .nm-thankyou .nm-thankyou-content .nm-order-overview__item strong {
  font-weight: 700;
  display: inline-block;
  margin-right: 0.5em;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview li .margin_right, .nm-thankyou .nm-thankyou-content .nm-order-overview__item .margin_right {
  margin-right: 0.3em;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview li .woocommerce-Price-amount, .nm-thankyou .nm-thankyou-content .nm-order-overview__item .woocommerce-Price-amount {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview .nm-pickup-row span:not(:first-of-type) {
  margin-right: 0.5em;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview .nm-pickup-row strong {
  margin-left: 0;
  margin-right: 0.5em;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview__item--address {
  flex-wrap: nowrap;
  align-items: baseline;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview__item--address .nm-order-slot-address {
  display: inline;
  font-weight: 700;
  margin-right: 0.5em;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview__item--address .nm-order-slot-address__main, .nm-thankyou .nm-thankyou-content .nm-order-overview__item--address .nm-order-slot-address__detail {
  display: inline;
  white-space: normal;
}
.nm-thankyou .nm-thankyou-content .nm-order-overview__item--address .nm-order-slot-address__detail {
  font-weight: 400;
}
.nm-thankyou .nm-thankyou-content .nm-order-items {
  margin: 10px 0 30px 0;
}
.nm-thankyou .nm-thankyou-content .nm-order-items-button {
  margin-top: auto;
}
.nm-thankyou .nm-thankyou-image {
  width: 65%;
  flex-shrink: 0;
  margin-right: 2.25vw;
}
.nm-thankyou .nm-thankyou-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media only screen and (max-width: 1200px) {
  .nm-thankyou {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .nm-thankyou .nm-thankyou-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px auto;
  }
  .custom_checkout .custom_checkout_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .custom_checkout .custom_checkout_content .checkout_review_order_custom {
    margin: 0 0 20px 0;
    max-width: initial;
  }
}
@media only screen and (max-width: 820px) {
  .custom_checkout .custom_checkout_content .checkout_review_order_custom {
    padding: 20px;
  }
  .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group {
    padding: 20px 20px 20px 20px;
  }
  .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row {
    width: 100%;
    max-width: initial;
    margin-bottom: 20px;
  }
  .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .user-saved-addresses .select_block {
    width: 100%;
    max-width: initial;
  }
  .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_2 .user-saved-addresses .select_block .select_wrapper {
    flex-grow: 1;
    flex-shrink: 1;
  }
}
@media only screen and (max-width: 680px) {
  .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .form-row label {
    margin-bottom: 0.3em;
  }
  .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .user-saved-addresses .select_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group .user-saved-addresses .nm-new-address-btn {
    margin: 20px 0 0 0;
  }
  .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .form_row_delivery_time {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .custom_checkout .custom_checkout_content .customer_details_custom .customer_details_custom_item .fields_group_3 .form_row_delivery_time .delivery_time_value_block {
    margin-left: auto;
  }
  .go_to_payment_button_js {
    display: none !important;
  }
}
.woocommerce-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}
.woocommerce-breadcrumb a {
  font-size: 14px;
  display: inline-block;
  margin-left: 5px;
}
.woocommerce-breadcrumb a:not(:first-of-type) {
  margin-right: 5px;
}

.product_breadcrumb_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.product_breadcrumb_wrap .product_breadcrumb_buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: auto;
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .share_buttons a {
  width: 24px;
  height: 24px;
  padding: 0;
  margin-left: 12px;
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .share_buttons a span {
  display: none;
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .share_buttons a {
  position: relative;
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .share_buttons a:after {
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask: url("../images/share.svg");
  -webkit-mask: url("../images/share.svg");
  background-color: #201d1d;
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .share_buttons a:hover {
  color: #d5c199;
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .share_buttons a:hover::after {
  background-color: #d5c199;
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .share_buttons a:active {
  color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .share_buttons a:active::after {
  background-color: rgb(74.7794117647%, 62.7696078431%, 38.75%);
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .uw-wishlist-button-container .uw-wishlist-button {
  width: 32px;
  height: 32px;
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .uw-wishlist-button-container .uw-wishlist-button .uw-button-icon {
  width: 24px;
  height: 24px;
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .uw-wishlist-button-container .uw-wishlist-button .uw-button-icon svg {
  width: 100%;
  height: 100%;
}
.product_breadcrumb_wrap .product_breadcrumb_buttons .uw-wishlist-button-container .uw-wishlist-button .uw-button-text {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .product_breadcrumb_wrap .product_breadcrumb_buttons {
    display: none;
  }
}
.branch_info_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 4.5vw;
  grid-row-gap: 4.5vw;
}
@media only screen and (min-width: 2000px) {
  .branch_info_list {
    grid-column-gap: 90px;
    grid-row-gap: 90px;
  }
}
.branch_info_list .branch_info_list_item a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}
.branch_info_list .branch_info_list_item p {
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1;
  position: relative;
  padding-right: 80px;
}
.branch_info_list .branch_info_list_item p:not(:last-child) {
  margin-bottom: 1.5em;
}
.branch_info_list .branch_info_list_item p:after {
  position: absolute;
  content: "";
  right: 45px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.branch_info_list .branch_info_list_item .branch_name {
  padding-right: 45px;
  font-size: clamp(20px, 1.7vw, 24px);
  text-decoration: underline;
  line-height: 1;
  color: #d5c199;
  font-weight: 700;
}
.branch_info_list .branch_info_list_item .branch_name:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-image: url(../images/circle_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.branch_info_list .branch_info_list_item .branch_address {
  text-decoration: underline;
}
.branch_info_list .branch_info_list_item .branch_address:after {
  background-image: url(../images/location_pin.svg);
}
.branch_info_list .branch_info_list_item .branch_phone:after {
  background-image: url(../images/phone.svg);
}
.branch_info_list .branch_info_list_item .branch_link:after {
  background-image: url(../images/id_card.svg);
}
.branch_info_list .branch_info_list_item .branch_socials {
  padding-right: 42px;
}
.branch_info_list .branch_info_list_item .branch_socials a:not(:last-child) {
  margin-left: 16px;
}
.branch_info_list .branch_info_list_item .branch_socials a {
  display: inline-block;
  width: 24px;
  height: auto;
}
.branch_info_list .branch_info_list_item .branch_socials a img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1200px) {
  .branch_info_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 860px) {
  .branch_info_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .branch_info_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.brands_list_wrap {
  overflow: hidden;
}
.brands_list_wrap .brands_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
  margin: 0 -3.5%;
  margin-bottom: -1.3%;
}
.brands_list_wrap .brands_list .brands_list_item {
  aspect-ratio: 1/0.72;
  width: 13%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1.5%;
}
.brands_list_wrap .brands_list .brands_list_item a {
  border-radius: 8px;
  outline: 1px solid #d5c199;
  background-color: #fff7f0;
  height: 100%;
  width: 100%;
  transition: all 0.1s;
}
.brands_list_wrap .brands_list .brands_list_item a:hover {
  background-color: #f8ebd3;
  outline-width: 2px;
}
.brands_list_wrap .brands_list .brands_list_item a:hover .image_wrap::after {
  transform: translateX(-160%);
  opacity: 1;
}
.brands_list_wrap .brands_list .brands_list_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}
.brands_list_wrap .brands_list .brands_list_item a .image_wrap {
  display: block;
  width: 60%;
  height: auto;
  position: relative;
}
.brands_list_wrap .brands_list .brands_list_item a .image_wrap::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url(../images/arrow_left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(-100%);
  transition: all 0.1s;
  opacity: 0;
}
.brands_list_wrap .brands_list .brands_list_item a .image_wrap img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1200px) {
  .brands_list_wrap .brands_list {
    margin: 0 -7%;
  }
  .brands_list_wrap .brands_list .brands_list_item {
    width: 15%;
    margin: 1.5%;
  }
}
@media screen and (max-width: 820px) {
  .brands_list_wrap .brands_list {
    margin: 0 -6%;
  }
  .brands_list_wrap .brands_list .brands_list_item {
    width: 20%;
    margin: 1.5%;
  }
}
@media screen and (max-width: 600px) {
  .brands_list_wrap .brands_list {
    margin: 0 -11%;
  }
  .brands_list_wrap .brands_list .brands_list_item {
    width: 18%;
    margin: 1.5%;
  }
}
@media screen and (max-width: 480px) {
  .brands_list_wrap .brands_list {
    margin: 0 -11%;
  }
  .brands_list_wrap .brands_list .brands_list_item {
    width: 25%;
    margin: 1.5%;
  }
}
@media screen and (max-width: 420px) {
  .brands_list_wrap .brands_list {
    margin: 0 -11%;
    margin-bottom: -1.95%;
  }
  .brands_list_wrap .brands_list .brands_list_item {
    width: 38.5%;
    margin: 2%;
  }
}
:root {
  --vp-toggler-button-size: 40px;
  --vp-toggler-icon-size: 24px;
  --vp-toggler-button-corners: 8px;
  --nono-vp-selected-border: #118f38;
  --nono-vp-selected-bg: rgba(17, 143, 56, 0.42);
  --nono-vp-selected-check-bg: #118f38;
}

#vplugin {
  z-index: 9999999999 !important;
}
#vplugin-toggler {
  background-color: #baa377 !important;
  background-image: url(../../img/accessibility-icon.svg) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

#vplugin-toggler-link {
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
}

#vplugin-interface .vp-btn {
  position: relative;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

#vplugin-interface .vp-btn.selected,
#vplugin-interface .vp-btn.nono-vp-selected,
#vplugin-interface .vp-btn[aria-pressed=true] {
  background-color: var(--nono-vp-selected-bg) !important;
  border: 3px solid var(--nono-vp-selected-border) !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 5px var(--nono-vp-selected-border), inset 0 0 0 1px rgba(255, 255, 255, 0.65) !important;
}

#vplugin-interface .vp-btn.selected::after,
#vplugin-interface .vp-btn.nono-vp-selected::after,
#vplugin-interface .vp-btn[aria-pressed=true]::after {
  content: "";
  position: absolute;
  top: 4px;
  inset-inline-end: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: var(--nono-vp-selected-check-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
  pointer-events: none;
  z-index: 2;
}

#vplugin-interface li:has(> .vp-btn.selected) > .vp-btn,
#vplugin-interface li:has(> .vp-btn.nono-vp-selected) > .vp-btn,
#vplugin-interface li:has(> .vp-btn[aria-pressed=true]) > .vp-btn {
  font-weight: 700;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) header.main-header,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) header.main-header * {
  filter: none !important;
  -webkit-filter: none !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) header.main-header {
  isolation: isolate;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) header.main-header .mmenu .line {
  background-color: #ffffff !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .mmmenuopen header.main-header .mmenu .line,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) header.main-header .mmenu.mmmenuopen .line {
  background-color: #201d1d !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) header.main-header .digi-megamenu-nav-wrapper {
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) header.main-header .digi-megamenu-item,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) header.main-header .digi-megamenu-link {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  max-width: none !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) header.main-header .header-mega-menu {
  background-color: #fff7f0 !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) header.main-header .digi-megamenu-link {
  color: #201d1d !important;
}

body.vp_filter_contrast header.main-header .header-container {
  background-color: #201d1d !important;
}

body.vp_filter_contrast header.main-header .header-container .header-btn span,
body.vp_filter_contrast header.main-header .header-container .user-menu-block,
body.vp_filter_contrast header.main-header .header-container .user-menu-block a,
body.vp_filter_contrast header.main-header .right-block .header-btn,
body.vp_filter_contrast header.main-header .right-block .header-btn span {
  color: #fff7f0 !important;
}

body.vp_filter_contrast header.main-header .nono-header-slot-summary,
body.vp_filter_contrast header.main-header .nono-header-slot-summary__address,
body.vp_filter_contrast header.main-header .nono-header-slot-summary__schedule {
  color: #fff7f0 !important;
}

body.vp_filter_contrast header.main-header .nono-header-slot-summary svg path {
  stroke: #fff7f0 !important;
}

body.vp_filter_contrast header.main-header .cart-search-block .search-block button#open-search,
body.vp_filter_contrast header.main-header .cart-search-block .cart-block .mini_basket_button {
  background-color: #fff7f0 !important;
  color: #201d1d !important;
  border-color: #201d1d !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  line-height: 1.4 !important;
  overflow: visible !important;
}

body.vp_filter_contrast header.main-header .cart-search-block .search-block button#open-search p {
  color: #201d1d !important;
  line-height: 1.4 !important;
  overflow: visible !important;
  margin: 0 !important;
}

body.vp_filter_contrast header.main-header .cart-search-block .search-block svg path {
  stroke: #201d1d !important;
}

body.vp_filter_contrast header.main-header .cart-search-block .cart-block .mini_basket_button .button_icon::after,
body.vp_filter_contrast header.main-header .cart-search-block .cart-block .mini_basket_button .button_arrow {
  background-color: #201d1d !important;
}

body.vp_filter_contrast header.main-header .cart-search-block .cart-block .mini_basket_button .button_icon .products_count {
  background-color: #201d1d !important;
  color: #ffffff !important;
}

body.vp_filter_contrast header.main-header .cart-search-block .cart-block .mini_basket_button.active {
  background-color: #ffffff !important;
  border-color: #201d1d !important;
}

@media only screen and (max-width: 1280px) {
  body.vp_filter_contrast header.main-header .cart-search-block .cart-block .mini_basket_button {
    background-color: transparent !important;
    border-color: transparent !important;
  }
  body.vp_filter_contrast header.main-header .cart-search-block .search-block button#open-search {
    background-color: transparent !important;
    border-color: transparent !important;
  }
  body.vp_filter_contrast header.main-header .cart-search-block .search-block svg path {
    stroke: #ffffff !important;
  }
  body.vp_filter_contrast header.main-header .cart-search-block .cart-block .mini_basket_button .button_icon::after {
    background-color: #ffffff !important;
  }
  body.vp_filter_contrast header.main-header .cart-search-block .cart-block .mini_basket_button .button_icon .products_count {
    background-color: #ffffff !important;
    color: #201d1d !important;
  }
  body.vp_filter_contrast header.main-header .cart-search-block .cart-block .mini_basket_button.active {
    background-color: #201d1d !important;
    border-color: #ffffff !important;
  }
  body.vp_filter_contrast header.main-header .cart-search-block .cart-block .mini_basket_button.active .button_icon::after {
    background-color: #ffffff !important;
  }
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block * {
  filter: none !important;
  -webkit-filter: none !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .sls-main-block,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .sls-main-block .sls-container {
  background-color: #ffffff !important;
  color: #201d1d !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .sls-main-block .sls-panel-close,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .sls-main-block .close {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #ffffff !important;
  border: 2px solid #201d1d !important;
  border-radius: 4px !important;
  box-sizing: content-box !important;
  min-width: 24px !important;
  min-height: 24px !important;
  padding: 8px !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .sls-main-block .sls-panel-close svg path,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .sls-main-block .close svg path {
  stroke: #201d1d !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .sls-main-block .sls-container .sls-header h2,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .sls-main-block .sls-container .sls-tabs .item h3,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .sls-required-note,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block label {
  color: #201d1d !important;
  line-height: 1.4 !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .checkbox-block {
  align-items: flex-start !important;
  overflow: visible !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .checkbox-block label {
  margin-right: 20px !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .checkbox-block input[type=checkbox] {
  background-color: #baa377 !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .input-item-container {
  align-items: flex-start !important;
  overflow: visible !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .input-item-container label {
  padding-top: 14px !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block input[type=text],
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block input[type=search],
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block select {
  background-color: #ffffff !important;
  color: #201d1d !important;
  border-color: #d5c199 !important;
  -webkit-text-fill-color: #201d1d !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block input::placeholder,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block textarea::placeholder {
  color: #595959 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #595959 !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .sls-footer .submit-button-block .btn.button-color {
  background-color: #201d1d !important;
  color: #ffffff !important;
  border: 2px solid #201d1d !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .header-slots-select-block .sls-footer .submit-button-block .btn.button-color:disabled {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .block-map-js,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .block-map-js *,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch_map_js,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch_map_js *,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) #map,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) #map * {
  filter: none !important;
  -webkit-filter: none !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .block-map-js,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch_map_js,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) #map {
  background-color: #f5f5f5 !important;
}

body.vp_filter_contrast .event-rooms-section {
  background-color: #fff7f0 !important;
}

body.vp_filter_contrast .event-rooms-section .block-content h2,
body.vp_filter_contrast .event-rooms-section .block-content p {
  color: #201d1d !important;
}

body.vp_filter_contrast .event-rooms-section .block-content a.btn {
  background-color: #201d1d !important;
  color: #ffffff !important;
  border-color: #201d1d !important;
}

body.vp_filter_contrast .event-rooms-section .block-content a.btn svg path {
  stroke: #ffffff !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch .archive_branch_content {
  background-color: #ffffff !important;
  color: #201d1d !important;
  border-color: #201d1d !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch .archive_branch_content .title_2 {
  color: #201d1d !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch .branch_list_search_input {
  background-color: #ffffff !important;
  color: #201d1d !important;
  border-color: #201d1d !important;
  -webkit-text-fill-color: #201d1d !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch .branch_list_search_input::placeholder {
  color: #595959 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #595959 !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch .branch_list_search::after {
  filter: none !important;
  -webkit-filter: none !important;
  background-color: #201d1d !important;
  background-image: none !important;
  -webkit-mask-image: url(../images/search.svg);
  mask-image: url(../images/search.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch .select2-container .selection .select2-selection {
  background-color: #ffffff !important;
  color: #201d1d !important;
  border-color: #201d1d !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch .select2-selection__rendered,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch .select2-selection__placeholder {
  color: #595959 !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch .select2-selection__rendered:not(:empty) {
  color: #201d1d !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch .branch_list li .branch_details {
  color: #201d1d !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .archive_branch .branch_list li.active .branch_details {
  background-color: #201d1d !important;
  color: #ffffff !important;
}

body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .input_date_wrap .openCalendar,
body:is(.vp_filter_contrast, .vp_filter_negative, .vp_filter_bw, .vp_filter_grayscale) .input_date_wrap .clearCalendar {
  filter: none !important;
  -webkit-filter: none !important;
}

body.vp_filter_contrast .input_date_wrap .openCalendar {
  background-color: #ffffff !important;
  background-image: none !important;
  -webkit-mask-image: url(../images/calendar.svg);
  mask-image: url(../images/calendar.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

body.vp_filter_contrast .input_date_wrap .clearCalendar {
  background-color: #ffffff !important;
  background-image: none !important;
  -webkit-mask-image: url(../images/close_popup.svg);
  mask-image: url(../images/close_popup.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

/* Hand-mirrored from assets/scss/components/_cookie_consent.scss (2026-08-02) — no sass
   compiler available in this environment to regenerate main.css from source. The .scss
   partial is the durable source of truth; keep both in sync if this block is edited again. */
.cc-window .cc-compliance {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cc-window .cc-compliance .cc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 49px;
  font-weight: 400;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  margin: 0 !important;
}
.cc-window .cc-compliance .cc-btn.cc-dismiss,
.cc-window .cc-compliance .cc-btn.cc-allow {
  background: #d5c199 !important;
  color: #201d1d !important;
  border: none !important;
}
.cc-window .cc-compliance .cc-btn.cc-deny {
  background: #f2f2f2 !important;
  color: #201d1d !important;
  border: 1px solid #d0d0d0 !important;
}

.add-to-cart-block .nono-added-to-cart-msg {
  bottom: 47px;
}
ul.products.list-view .add-to-cart-block .nono-added-to-cart-msg {
  bottom: 34px;
}

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