html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, select, input, button, textarea,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, ul, ol, li {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: inherit;
  font-size: inherit;
  font: inherit;
  color: inherit;
  vertical-align: baseline;
  outline: none;
}

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

b, strong {
  font-weight: 700;
}

i, em {
  font-style: italic;
}

ol, ul {
  list-style: none;
}

html {
  margin: 0 !important;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.flex {
  display: flex;
}
.flex > * {
  position: relative;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.space-around {
  justify-content: space-around;
}
.flex.flex-column {
  flex-direction: column;
}
.flex.wrap {
  flex-flow: row wrap;
}
.flex.flex-center {
  align-items: center;
}
.flex.flex-bottom {
  align-items: flex-end;
}
.flex.flex-text-center {
  justify-content: center;
}
.flex.flex-text-right {
  justify-content: flex-end;
}
.flex .flex-item-right {
  margin-left: auto !important;
}
.flex .flex-item-left {
  margin-right: auto !important;
}
.flex .flex-1 {
  flex: 1;
}
.flex .flex-2 {
  flex: 2;
}
.flex .flex-3 {
  flex: 3;
}
.flex .flex-4 {
  flex: 4;
}
.flex .flex-5 {
  flex: 5;
}
.flex .flex-6 {
  flex: 6;
}
.flex .flex-7 {
  flex: 7;
}
.flex .flex-8 {
  flex: 8;
}
.flex .flex-9 {
  flex: 9;
}
.flex .flex-10 {
  flex: 10;
}
.flex.fixed-columns-count {
  flex-wrap: wrap;
}
.flex.fixed-columns-count > * {
  width: calc( ( 100% - ( var(--bleed) * 2 * var(--columns-count) ) ) / var(--columns-count) );
  max-width: calc( ( 100% - ( var(--bleed) * 2 * var(--columns-count) ) ) / var(--columns-count) );
  min-width: calc( ( 100% - ( var(--bleed) * 2 * var(--columns-count) ) ) / var(--columns-count) );
}
.flex.fixed-columns-count.bleed {
  margin-left: calc( var(--bleed) * -1 );
  margin-right: calc( var(--bleed) * -1 );
}
.flex.fixed-columns-count.bleed > *:first-child {
  margin-left: var(--bleed);
}
.flex.fixed-columns-count.bleed > *:last-child {
  margin-right: var(--bleed);
}
.flex.bleed > * {
  margin-left: var(--bleed);
  margin-right: var(--bleed);
}
.flex.bleed > *:first-child {
  margin-left: 0;
}
.flex.bleed > *:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1660px) {
  .flex.break-laptop {
    flex-direction: column;
  }
  .flex.break-laptop.bleed {
    margin-left: 0px;
    margin-right: 0px;
  }
  .flex.break-laptop.bleed > * {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: var(--bleed);
    width: 100%;
  }
  .flex.break-laptop.bleed > :first-child {
    margin-left: 0px;
  }
  .flex.break-laptop.bleed > :last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 1280px) {
  .flex.break-tablet {
    flex-direction: column;
  }
  .flex.break-tablet.bleed {
    margin-left: 0px;
    margin-right: 0px;
  }
  .flex.break-tablet.bleed > * {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: var(--bleed);
    width: 100%;
  }
  .flex.break-tablet.bleed > :first-child {
    margin-left: 0px;
  }
  .flex.break-tablet.bleed > :last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 960px) {
  .flex.break-mobile {
    flex-direction: column;
  }
  .flex.break-mobile.bleed {
    margin-left: 0px;
    margin-right: 0px;
  }
  .flex.break-mobile.bleed > * {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: var(--bleed);
    width: 100%;
  }
  .flex.break-mobile.bleed > :first-child {
    margin-left: 0px;
  }
  .flex.break-mobile.bleed > :last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
}

@keyframes open_menu {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes close_menu {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.75;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
  }
}
@keyframes firstLine {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.75;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
  }
}
@keyframes firstLineReverse {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes middleLine {
  0% {
    transform: none;
  }
  25% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(-95%);
  }
  100% {
    transform: rotate(-135deg);
  }
}
@keyframes middleLineReverse {
  0% {
    transform: rotate(-135deg);
  }
  25% {
    transform: rotate(-95%);
  }
  50% {
    transform: rotate(-45deg);
  }
  100% {
    transform: none;
  }
}
@keyframes lastLine {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.75;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
  }
}
@keyframes lastLineReverse {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hiddenLine {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hiddenLineReverse {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.75;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
  }
}
.e-con.container > .e-con-inner,
.container:not(.e-con) {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1836px;
  padding-left: 116px;
  padding-right: 60px;
}
@media screen and (max-width: 1280px) {
  .e-con.container > .e-con-inner,
.container:not(.e-con) {
    padding-left: 96px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 960px) {
  .e-con.container > .e-con-inner,
.container:not(.e-con) {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.e-con.container > .e-con-inner.narrow,
.container:not(.e-con).narrow {
  max-width: 1264px;
}

html {
  color: #919191;
  line-height: 2.25;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 1836px) {
  html {
    font-size: calc( 10px + ( 6 * ( 100vw - 960px ) / 876 ) );
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: #FDDEC8;
}
body .site-content {
  overflow: hidden;
}
body.menu-opened .site-header {
  background: none !important;
}
body.menu-opened .site-header .buttons-wrapper .buttons-inner-wrapper {
  display: flex;
}
body.menu-opened .menu-panel {
  z-index: 60;
}
body.register-opened .register-panel {
  display: none;
}
body.register-opened .woocommerce-section .woocommerce-form-register {
  display: block;
}
body.scrolled .site-header {
  height: 8.37rem;
  background: #FF6C00;
  transition: all 0.3s ease-in-out;
}
body.blog .site-content {
  background-image: url("./img/blog-background.png");
  background-repeat: repeat-y;
  background-size: contain;
}
body.single-post .site-content {
  background-image: url("./img/single-blog-background.png");
  background-repeat: repeat-y;
  background-size: 94%;
  background-position: center;
}
body.page-id-67 .site-content, body.page-id-71 .site-content, body.page-id-3 .site-content, body.page-id-82 .site-content, body.page-id-1714 .site-content, body.page-id-1737 .site-content, body.page-id-2741 .site-content {
  margin-top: 13.37rem;
}
body.sort-opened .sort .sort-options-wrapper {
  display: block;
}
body.page-id-50 .text-slider-widget .col.text-slider-col .text-slider .swiper-wrapper .swiper-slide {
  height: 15.37rem;
}
@media screen and (max-width: 1280px) {
  body.page-id-50 .text-slider-widget .col.text-slider-col .text-slider .swiper-wrapper .swiper-slide {
    height: 18.37rem;
  }
}
@media screen and (max-width: 960px) {
  body.page-id-50 .text-slider-widget .col.text-slider-col .text-slider .swiper-wrapper .swiper-slide {
    height: 11.37rem;
  }
}
@media screen and (max-width: 600px) {
  body.page-id-50 .text-slider-widget .col.text-slider-col .text-slider .swiper-wrapper .swiper-slide {
    height: auto;
  }
}
body.page-id-53 .text-slider-widget .col.text-slider-col .text-slider .swiper-wrapper .swiper-slide {
  height: 42.37rem;
}
@media screen and (max-width: 1660px) {
  body.page-id-53 .text-slider-widget .col.text-slider-col .text-slider .swiper-wrapper .swiper-slide {
    height: 46.37rem;
  }
}
@media screen and (max-width: 1280px) {
  body.page-id-53 .text-slider-widget .col.text-slider-col .text-slider .swiper-wrapper .swiper-slide {
    height: 54.37rem;
  }
}
@media screen and (max-width: 960px) {
  body.page-id-53 .text-slider-widget .col.text-slider-col .text-slider .swiper-wrapper .swiper-slide {
    height: 32.37rem;
  }
}
@media screen and (max-width: 600px) {
  body.page-id-53 .text-slider-widget .col.text-slider-col .text-slider .swiper-wrapper .swiper-slide {
    height: auto;
  }
}
body h1 {
  letter-spacing: normal;
}
body h2 {
  letter-spacing: normal;
}
body .elementor-widget-heading.small h1 {
  font-size: 2.81rem;
  line-height: 3.75rem;
}
@media screen and (max-width: 960px) {
  body .elementor-widget-heading.small h1 {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
}
body .elementor-widget-heading.smaller h1 {
  font-size: 2.18rem;
  line-height: 2.81rem;
  letter-spacing: calc(1em * (20 / 1000));
}
@media screen and (max-width: 960px) {
  body .elementor-widget-heading.smaller h1 {
    font-size: 1.25rem;
    line-height: 1.6rem;
  }
}
body .elementor-widget-heading.big h2 {
  font-size: 2.81rem;
  letter-spacing: normal;
  line-height: 3.75rem;
}
@media screen and (max-width: 960px) {
  body .elementor-widget-heading.big h2 {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
}
body .elementor-widget-heading.h1 h2 {
  font-size: 4.37rem;
  line-height: 5.5rem;
}
@media screen and (max-width: 960px) {
  body .elementor-widget-heading.h1 h2 {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }
}
body .elementor-widget-heading.small h3 {
  font-size: 1.37rem;
  font-weight: 600;
  line-height: 1.87rem;
}
@media screen and (max-width: 960px) {
  body .elementor-widget-heading.small h3 {
    font-size: 1.12rem;
    line-height: 2.81rem;
  }
}
body h1.small {
  font-size: 2.81rem;
  line-height: 3.75rem;
}
@media screen and (max-width: 960px) {
  body h1.small {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
}
body h1.smaller {
  font-size: 2.18rem;
  line-height: 2.81rem;
  letter-spacing: calc(1em * (20 / 1000));
}
@media screen and (max-width: 960px) {
  body h1.smaller {
    font-size: 1.25rem;
    line-height: 1.6rem;
  }
}
body h2.big {
  font-size: 2.81rem;
  line-height: 3.75rem;
  letter-spacing: normal;
}
@media screen and (max-width: 960px) {
  body h2.big {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
}
body h2.h1 {
  font-size: 4.37rem;
  line-height: 5.5rem;
}
@media screen and (max-width: 960px) {
  body h2.h1 {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }
}
body h3.small {
  font-size: 1.37rem;
  font-weight: 600;
  line-height: 1.87rem;
}
@media screen and (max-width: 960px) {
  body h3.small {
    font-size: 1.12rem;
    line-height: 2.81rem;
  }
}

.menu-button {
  height: 3.5rem;
  width: 3.5rem;
  background: #e73e07;
  background: linear-gradient(180deg, #e73e07 0%, #ff6c00 100%);
  border-radius: 1.25rem;
  margin-left: -3.5rem;
}
@media screen and (max-width: 960px) {
  .menu-button {
    height: 3.5rem;
    width: 3.5rem;
    margin-left: 0;
  }
}

.burger-menu {
  height: 1.12rem;
  width: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .burger-menu {
    height: 1.12rem;
    width: 1.5rem;
  }
}
.burger-menu .stick, .burger-menu .hidden-stick {
  height: 0.12rem;
  background-color: #FFFFFF;
  width: 100%;
  border-radius: 2px;
}
.burger-menu.opening .stick:first-child {
  animation: firstLine 0.3s ease-in-out forwards;
}
.burger-menu.opening .stick:nth-child(2) {
  animation: middleLine 0.3s ease-in-out forwards;
}
.burger-menu.opening .stick:nth-child(3) {
  animation: lastLine 0.3s ease-in-out forwards;
}
.burger-menu.opening .hidden-stick {
  animation: hiddenLine 0.3s ease-in-out forwards;
}
.burger-menu.closing .stick:first-child {
  animation: firstLineReverse 0.3s ease-in-out forwards;
}
.burger-menu.closing .stick:nth-child(2) {
  animation: middleLineReverse 0.3s ease-in-out forwards;
}
.burger-menu.closing .stick:nth-child(3) {
  animation: lastLineReverse 0.3s ease-in-out forwards;
}
.burger-menu.closing .hidden-stick {
  animation: hiddenLineReverse 0.3s ease-in-out forwards;
}
.burger-menu .hidden-stick {
  position: absolute;
  opacity: 0;
  top: 45%;
  left: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 10.37rem;
  width: 100%;
  background: #ff6c00;
  background: linear-gradient(0deg, rgba(255, 108, 0, 0) 0%, #ff6c00 100%);
  transition: all 0.3s ease-in-out;
}
.site-header .container {
  height: 100%;
}
@media screen and (max-width: 960px) {
  .site-header .menu-button-wrapper {
    order: 3;
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 960px) {
  .site-header .logo {
    order: 2;
  }
}
.site-header .logo img {
  height: 4rem;
}
@media screen and (max-width: 960px) {
  .site-header .logo img {
    height: 3.12rem;
  }
}
@media screen and (max-width: 960px) {
  .site-header .buttons-wrapper {
    order: 1;
  }
}
@media screen and (max-width: 960px) {
  .site-header .buttons-wrapper .buttons-inner-wrapper {
    display: none;
    position: fixed;
    bottom: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: max-content;
  }
}
.site-header .buttons-wrapper .button {
  margin-right: 2rem;
}
@media screen and (max-width: 960px) {
  .site-header .buttons-wrapper .button {
    margin-right: 0;
    order: 2;
  }
}
.site-header .buttons-wrapper .small-links-wrapper {
  --bleed: 0.37rem;
}
@media screen and (max-width: 960px) {
  .site-header .buttons-wrapper .small-links-wrapper {
    --bleed: 1.56rem;
  }
}
@media screen and (max-width: 960px) {
  .site-header .buttons-wrapper .small-links-wrapper {
    order: 1;
    justify-content: center;
    margin-bottom: 2.31rem;
  }
}
.site-header .buttons-wrapper .small-links-wrapper .header-link {
  display: block;
}
.site-header .buttons-wrapper .small-links-wrapper .header-link.profile img, .site-header .buttons-wrapper .small-links-wrapper .header-link.cart img {
  height: 1.5rem;
}
@media screen and (max-width: 960px) {
  .site-header .buttons-wrapper .small-links-wrapper .header-link.profile img, .site-header .buttons-wrapper .small-links-wrapper .header-link.cart img {
    height: 1.5rem;
  }
}
.site-header .buttons-wrapper .small-links-wrapper .header-link .items-count {
  position: absolute;
  top: -15px;
  left: 3px;
  background-color: #fff;
  color: #ff6c00;
  padding: 2px 2px;
  border-radius: 50%;
  font-size: 14px;
  min-width: 16px;
  font-weight: bold;
  justify-content: center;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
}
@media screen and (max-width: 960px) {
  .site-header .buttons-wrapper .small-links-wrapper .header-link .items-count {
    left: 4px;
  }
}
.site-header .buttons-wrapper .small-links-wrapper .header-link .items-count.has-items {
  display: flex;
}
.site-header .buttons-wrapper .small-links-wrapper .header-link.heart img {
  height: 1.74rem;
}
@media screen and (max-width: 960px) {
  .site-header .buttons-wrapper .small-links-wrapper .header-link.heart img {
    height: 1.8rem;
  }
}
.site-header .buttons-wrapper .small-links-wrapper .header-link.heart.selected .not-selected-img {
  display: none;
}
.site-header .buttons-wrapper .small-links-wrapper .header-link.heart.selected .selected-img {
  display: block;
}
.site-header .buttons-wrapper .small-links-wrapper .header-link.heart img.selected-img {
  display: none;
}
.site-header .buttons-wrapper .small-links-wrapper .header-link img {
  display: block;
}

.menu-panel {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
}
.menu-panel::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #FF6C00;
  opacity: 51%;
  backdrop-filter: blur(15px);
  z-index: 40;
}
.menu-panel.opening {
  animation: open_menu 0.3s ease-in-out forwards;
}
.menu-panel.closing {
  animation: close_menu 0.3s ease-in-out forwards;
}
.menu-panel .container {
  padding: 10.37rem 0 13rem;
  height: 100%;
}
.menu-panel .inner-wrapper {
  position: relative;
  z-index: 50;
  height: 98vh;
  background-image: url("./img/menu-background-desktop.svg");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .menu-panel .inner-wrapper {
    background-image: url("./img/menu-background.png");
  }
}
.menu-panel .inner-wrapper .menu-wrapper {
  overflow-y: auto;
  height: calc(100%);
  padding-top: 3.75rem;
}
@media screen and (max-width: 1660px) {
  .menu-panel .inner-wrapper .menu-wrapper {
    padding-top: 1.65rem;
  }
}
@media screen and (max-width: 960px) {
  .menu-panel .inner-wrapper .menu-wrapper {
    padding-top: 0;
  }
}
.menu-panel .inner-wrapper .menu-wrapper .menu .menu-item {
  font-size: 1.87rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin-bottom: 2.18rem;
  color: #FFFFFF;
}
@media screen and (max-width: 1660px) {
  .menu-panel .inner-wrapper .menu-wrapper .menu .menu-item {
    font-size: 1.77rem;
    margin-bottom: 1.7rem;
  }
}
@media screen and (max-width: 960px) {
  .menu-panel .inner-wrapper .menu-wrapper .menu .menu-item {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1em;
    margin-bottom: 1.77rem;
  }
}
.menu-panel .inner-wrapper .menu-wrapper .menu .menu-item.current-menu-item {
  font-weight: bold;
}
.menu-panel .inner-wrapper .menu-wrapper .menu .menu-item:last-child {
  margin-bottom: 0;
}

.newsletter-section {
  background: #ff6c00;
  background: linear-gradient(270deg, #ff6c00 0%, #e73e07 100%);
  color: #FFFFFF;
  padding-top: 5.93rem;
  padding-bottom: 5.62rem;
}
@media screen and (max-width: 960px) {
  .newsletter-section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
@media screen and (max-width: 960px) {
  .newsletter-section .title-wrapper {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .newsletter-section .title-wrapper h2.big {
    font-size: 1.75rem;
    margin-bottom: 0.37rem;
  }
}
.newsletter-section .newsletter-form {
  --bleed: 0.87rem;
}
@media screen and (max-width: 960px) {
  .newsletter-section .newsletter-form {
    --bleed: 1.93rem;
  }
}
.newsletter-section .newsletter-form .fields-outer-wrapper .fields-wrapper {
  margin-bottom: 1.12rem;
}
@media screen and (max-width: 960px) {
  .newsletter-section .newsletter-form .fields-outer-wrapper .fields-wrapper {
    margin-bottom: 1.93rem;
  }
}
.newsletter-section .newsletter-form .form-text {
  color: #F4F4F6;
  text-align: center;
  min-width: max-content;
  margin-left: 1.25rem;
}
@media screen and (max-width: 960px) {
  .newsletter-section .newsletter-form .form-text {
    min-width: auto;
    text-align: left;
    font-size: 0.85rem;
    line-height: 1.28rem;
    margin-left: 0;
  }
}

.site-footer {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  color: #220800;
  background-color: #F4F4F6;
  line-height: 1.18rem;
}
@media screen and (max-width: 960px) {
  .site-footer {
    padding-top: 3.43rem;
    padding-bottom: 2.5rem;
  }
}
.site-footer .social-media-wrapper {
  --bleed: 0.62rem;
}
.site-footer .social-media-wrapper a {
  display: block;
}
.site-footer .social-media-wrapper a img {
  display: block;
  height: 2.25rem;
}
.site-footer .upper-row {
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row {
    margin-bottom: 5.18rem;
    flex-wrap: wrap;
  }
}
.site-footer .upper-row h4 {
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row h4 {
    margin-bottom: 0.93rem;
  }
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row .col {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 3.43rem;
  }
}
.site-footer .upper-row .col.logo-col {
  font-weight: 500;
  line-height: 1.37rem;
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row .col.logo-col {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    order: 1;
  }
}
.site-footer .upper-row .col.logo-col .logo {
  display: block;
  margin-bottom: 1.81rem;
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row .col.logo-col .logo {
    margin-bottom: 2.5rem;
  }
}
.site-footer .upper-row .col.logo-col .logo img {
  height: 3.68rem;
}
.site-footer .upper-row .col.logo-col .text {
  margin-bottom: 3.12rem;
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row .col.logo-col .text {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row .col.logo-col .social-media-wrapper {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row .col.language-col {
    display: flex;
    justify-content: flex-end;
    order: 2;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    padding-top: 6.18rem;
  }
}
.site-footer .upper-row .col.mobile-app-col a, .site-footer .upper-row .col.language-col a {
  color: #FF6C00;
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row .col.about-us-col {
    order: 3;
  }
}
.site-footer .upper-row .col.about-us-col .social-media-wrapper {
  margin-top: 2.31rem;
}
@media screen and (min-width: 961px) {
  .site-footer .upper-row .col.about-us-col .social-media-wrapper {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row .col.mobile-app-col {
    order: 5;
  }
}
.site-footer .upper-row .col:not(.logo-col) a, .site-footer .upper-row .col:not(.logo-col) .menu {
  font-size: 0.93rem;
  line-height: 1.18rem;
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row .col.info-col {
    order: 4;
  }
}
@media screen and (max-width: 960px) {
  .site-footer .upper-row .col.payment-options-col {
    order: 6;
    margin-bottom: 0;
  }
}
.site-footer .upper-row .col.payment-options-col .payment-options {
  --bleed: 0.31rem;
}
.site-footer .upper-row .col.payment-options-col .payment-options img {
  height: 1.56rem;
}
.site-footer .copyright-row {
  text-align: center;
}
@media screen and (max-width: 960px) {
  .site-footer .copyright-row {
    font-size: 0.75rem;
  }
}

.elementor-button {
  background: #ff6c00;
  background: linear-gradient(270deg, #ff6c00 0%, #e73e07 100%);
}

.button, a.button, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled], html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, a.checkout-button.button {
  display: flex;
  font-family: "Montserrat";
  font-size: 0.87rem;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  min-height: 3.12rem;
  border-radius: 1.56rem;
  color: #FFFFFF;
  background: #ff6c00;
  background: linear-gradient(270deg, #ff6c00 0%, #e73e07 100%);
  padding: 0.5rem 2.5rem;
  text-transform: uppercase;
  border: 1px solid #ff6c00;
}
@media screen and (max-width: 960px) {
  .button, a.button, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled], html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, a.checkout-button.button {
    font-size: 0.87rem;
    line-height: 1.12rem;
    padding: 0.5rem 2.5rem;
  }
}
.button:hover, a.button:hover, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled]:hover, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, a.checkout-button.button:hover {
  color: #FFFFFF;
  background: #ff6c00;
  background: linear-gradient(270deg, #ff6c00 0%, #e73e07 100%);
}
.button.hidden, a.button.hidden, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled.hidden, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled].hidden, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.hidden, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.hidden, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.hidden, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.hidden, a.checkout-button.button.hidden {
  display: none;
}
.button.inline, a.button.inline, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled.inline, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled].inline, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.inline, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.inline, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.inline, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.inline, a.checkout-button.button.inline {
  width: fit-content;
}
.button.inverted, a.button.inverted, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled.inverted, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled].inverted, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.inverted, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.inverted, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.inverted, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.inverted, a.checkout-button.button.inverted {
  background: transparent;
  border: 1px solid #FF6C00;
  color: #FF6C00;
}
.button.inverted:hover, a.button.inverted:hover, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled.inverted:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled].inverted:hover, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.inverted:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.inverted:hover, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.inverted:hover, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.inverted:hover, a.checkout-button.button.inverted:hover {
  color: #FFFFFF;
  background: #FF6C00;
}
.button:disabled, a.button:disabled, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled]:disabled, html body:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled, html .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled, a.checkout-button.button:disabled {
  opacity: 0.5;
}

.elementor-kit-6 .form-control, .woocommerce .form-control {
  --bleed: 1.25rem;
  width: calc(100% - 2 * var(--bleed));
  float: none;
}
.elementor-kit-6 .form-control:first-child, .woocommerce .form-control:first-child {
  margin-left: var(--bleed);
}
@media screen and (max-width: 960px) {
  .elementor-kit-6 .form-control, .woocommerce .form-control {
    --bleed: 2.06rem;
  }
}
.elementor-kit-6 .form-control.width-50, .woocommerce .form-control.width-50 {
  width: calc(50% - 2 * var(--bleed));
}
@media screen and (max-width: 960px) {
  .elementor-kit-6 .form-control.width-50, .woocommerce .form-control.width-50 {
    width: calc(100% - 2 * var(--bleed));
  }
}
.elementor-kit-6 .form-control img, .woocommerce .form-control img {
  height: 1.38rem;
  margin-right: 2.05rem;
}
@media screen and (max-width: 960px) {
  .elementor-kit-6 .form-control img, .woocommerce .form-control img {
    height: 1.42rem;
    margin-right: 2.05rem;
  }
}
.elementor-kit-6 .form-control.smaller-font input, .elementor-kit-6 .form-control.smaller-font textarea, .woocommerce .form-control.smaller-font input, .woocommerce .form-control.smaller-font textarea {
  font-size: 1rem;
  font-weight: normal;
}
.elementor-kit-6 .form-control.transparent input, .elementor-kit-6 .form-control.transparent textarea, .woocommerce .form-control.transparent input, .woocommerce .form-control.transparent textarea {
  background-color: rgba(255, 108, 0, 0.1);
  color: #919191;
}
.elementor-kit-6 .form-control.transparent input::-webkit-input-placeholder, .elementor-kit-6 .form-control.transparent textarea::-webkit-input-placeholder, .woocommerce .form-control.transparent input::-webkit-input-placeholder, .woocommerce .form-control.transparent textarea::-webkit-input-placeholder {
  color: #919191 !important;
  opacity: 1 !important;
}

.elementor-kit-6 .form-control.transparent input:-moz-placeholder, .elementor-kit-6 .form-control.transparent textarea:-moz-placeholder, .woocommerce .form-control.transparent input:-moz-placeholder, .woocommerce .form-control.transparent textarea:-moz-placeholder {
  color: #919191 !important;
  opacity: 1 !important;
}

.elementor-kit-6 .form-control.transparent input::-moz-placeholder, .elementor-kit-6 .form-control.transparent textarea::-moz-placeholder, .woocommerce .form-control.transparent input::-moz-placeholder, .woocommerce .form-control.transparent textarea::-moz-placeholder {
  color: #919191 !important;
  opacity: 1 !important;
}

.elementor-kit-6 .form-control.transparent input:-ms-input-placeholder, .elementor-kit-6 .form-control.transparent textarea:-ms-input-placeholder, .woocommerce .form-control.transparent input:-ms-input-placeholder, .woocommerce .form-control.transparent textarea:-ms-input-placeholder {
  color: #919191 !important;
  opacity: 1 !important;
}

.elementor-kit-6 .form-control.no-border-radius input, .elementor-kit-6 .form-control.no-border-radius textarea, .woocommerce .form-control.no-border-radius input, .woocommerce .form-control.no-border-radius textarea {
  border-radius: 0;
}
.elementor-kit-6 .form-control.small input, .elementor-kit-6 .form-control.small textarea, .woocommerce .form-control.small input, .woocommerce .form-control.small textarea {
  height: 2.31rem;
  padding: 0.3rem 1.06rem;
}
.elementor-kit-6 .form-control.primary-color input:not([type=button]):not([type=submit]), .elementor-kit-6 .form-control.primary-color textarea, .elementor-kit-6 .form-control.primary-color .select2-selection__rendered, .woocommerce .form-control.primary-color input:not([type=button]):not([type=submit]), .woocommerce .form-control.primary-color textarea, .woocommerce .form-control.primary-color .select2-selection__rendered {
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  color: #F4F4F6;
  line-height: 1.56rem;
  background-color: #FF6C00;
  border: 1px solid rgba(244, 244, 246, 0.5);
  border-radius: 0.56rem;
  padding: 0.5rem 1.43rem;
  height: 3rem;
  letter-spacing: calc(1em * (6 / 1000));
}
.elementor-kit-6 .form-control.primary-color input:not([type=button]):not([type=submit])::-webkit-input-placeholder, .elementor-kit-6 .form-control.primary-color textarea::-webkit-input-placeholder, .elementor-kit-6 .form-control.primary-color .select2-selection__rendered::-webkit-input-placeholder, .woocommerce .form-control.primary-color input:not([type=button]):not([type=submit])::-webkit-input-placeholder, .woocommerce .form-control.primary-color textarea::-webkit-input-placeholder, .woocommerce .form-control.primary-color .select2-selection__rendered::-webkit-input-placeholder {
  color: #F4F4F6 !important;
  opacity: 1 !important;
}

.elementor-kit-6 .form-control.primary-color input:not([type=button]):not([type=submit]):-moz-placeholder, .elementor-kit-6 .form-control.primary-color textarea:-moz-placeholder, .elementor-kit-6 .form-control.primary-color .select2-selection__rendered:-moz-placeholder, .woocommerce .form-control.primary-color input:not([type=button]):not([type=submit]):-moz-placeholder, .woocommerce .form-control.primary-color textarea:-moz-placeholder, .woocommerce .form-control.primary-color .select2-selection__rendered:-moz-placeholder {
  color: #F4F4F6 !important;
  opacity: 1 !important;
}

.elementor-kit-6 .form-control.primary-color input:not([type=button]):not([type=submit])::-moz-placeholder, .elementor-kit-6 .form-control.primary-color textarea::-moz-placeholder, .elementor-kit-6 .form-control.primary-color .select2-selection__rendered::-moz-placeholder, .woocommerce .form-control.primary-color input:not([type=button]):not([type=submit])::-moz-placeholder, .woocommerce .form-control.primary-color textarea::-moz-placeholder, .woocommerce .form-control.primary-color .select2-selection__rendered::-moz-placeholder {
  color: #F4F4F6 !important;
  opacity: 1 !important;
}

.elementor-kit-6 .form-control.primary-color input:not([type=button]):not([type=submit]):-ms-input-placeholder, .elementor-kit-6 .form-control.primary-color textarea:-ms-input-placeholder, .elementor-kit-6 .form-control.primary-color .select2-selection__rendered:-ms-input-placeholder, .woocommerce .form-control.primary-color input:not([type=button]):not([type=submit]):-ms-input-placeholder, .woocommerce .form-control.primary-color textarea:-ms-input-placeholder, .woocommerce .form-control.primary-color .select2-selection__rendered:-ms-input-placeholder {
  color: #F4F4F6 !important;
  opacity: 1 !important;
}

.elementor-kit-6 .form-control textarea, .woocommerce .form-control textarea {
  height: 10em;
}
@media screen and (max-width: 960px) {
  .elementor-kit-6 .form-control textarea, .woocommerce .form-control textarea {
    height: 5em;
  }
}
.elementor-kit-6 .form-control .label-container, .woocommerce .form-control .label-container {
  margin-bottom: 0.87rem;
  display: flex;
  color: #A2A2A2;
  padding-left: 1.62rem;
  font-weight: normal;
  position: relative;
  line-height: 1.56rem;
}
.elementor-kit-6 .form-control .label-container:last-child, .woocommerce .form-control .label-container:last-child {
  margin-bottom: 0;
}
.elementor-kit-6 .form-control .label-container input[type=radio],
.elementor-kit-6 .form-control .label-container input[type=checkbox], .woocommerce .form-control .label-container input[type=radio],
.woocommerce .form-control .label-container input[type=checkbox] {
  display: none;
}
.elementor-kit-6 .form-control .label-container input[type=radio] + span,
.elementor-kit-6 .form-control .label-container input[type=checkbox] + span, .woocommerce .form-control .label-container input[type=radio] + span,
.woocommerce .form-control .label-container input[type=checkbox] + span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.06rem;
  height: 1.06rem;
  border-radius: 50%;
  border: 1px solid #FF6C00;
}
.elementor-kit-6 .form-control .label-container input[type=radio] + span:after,
.elementor-kit-6 .form-control .label-container input[type=checkbox] + span:after, .woocommerce .form-control .label-container input[type=radio] + span:after,
.woocommerce .form-control .label-container input[type=checkbox] + span:after {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.93rem;
  height: 0.68rem;
  transform: translate(-40%, -60%);
  background-image: url("./img/icon-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.elementor-kit-6 .form-control .label-container input[type=radio]:checked + span:after,
.elementor-kit-6 .form-control .label-container input[type=checkbox]:checked + span:after, .woocommerce .form-control .label-container input[type=radio]:checked + span:after,
.woocommerce .form-control .label-container input[type=checkbox]:checked + span:after {
  display: block;
}
.elementor-kit-6 .form-control .label-container .bolded, .woocommerce .form-control .label-container .bolded {
  margin-right: 0.3rem;
}
.bolded {
  font-weight: bold;
}

.colored.primary {
  color: #FF6C00;
}
.colored.yellow {
  color: #FFBA00;
}
.colored.dark-orange {
  color: #E73E07;
}

.small-line-height-text {
  line-height: 1.56rem;
}

.no-content {
  padding: 2rem 0;
  text-align: center;
}

.big-text {
  font-size: 1.25rem;
  line-height: 1.81rem;
}
@media screen and (max-width: 960px) {
  .big-text {
    font-size: 1rem;
    line-height: 1.56rem;
  }
}

.list-empty {
  display: none;
  text-align: center;
  font-size: 2rem;
}
.list-empty.opened {
  display: block;
}

table tr:first-child td {
  padding-top: 0;
}
table tr td {
  padding-top: 0.87rem;
  padding-bottom: 0.87rem;
  border-bottom: 1px solid rgba(255, 108, 0, 0.5);
}
table tr td p {
  margin-bottom: 0.87rem;
}
table tr td p:last-child {
  margin-bottom: 0;
}

.wishlist-button {
  cursor: pointer;
  height: 2.18rem;
  width: 2.37rem;
}
.wishlist-button.selected .not-selected-img {
  display: none;
}
.wishlist-button.selected .selected-img {
  display: block;
}
.wishlist-button img.selected-img {
  display: none;
}

.select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted {
  background-color: #FF6C00;
}

.woocommerce form .form-row .select2-container--default .select2-selection {
  height: auto;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.56rem;
  letter-spacing: calc(1em * (6 / 1000));
  color: #919191;
  background-color: #FF6C001A;
  border-style: none;
  border-radius: 0px 0px 0px 0px;
  padding: 0.56rem 1rem 0.56rem 1rem;
}
.woocommerce form .form-row .select2-container--default .select2-selection .select2-selection__rendered {
  line-height: normal;
  color: #919191;
}
.woocommerce form .form-row .select2-container--default .select2-selection .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce form .form-row .show-password-input {
  top: 0.65em;
  height: 0.93rem;
  width: 1.46rem;
  background-image: url("./img/icon-show-password.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.woocommerce form .form-row .show-password-input::after {
  display: none;
}

.woocommerce-notices-wrapper .woocommerce-message {
  margin-top: 2em;
}
@media screen and (max-width: 960px) {
  .woocommerce-notices-wrapper .woocommerce-message {
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  .woocommerce-notices-wrapper .woocommerce-message .button {
    order: 2;
    margin-top: 0.5rem;
  }
}

[tooltip-text] {
  cursor: pointer;
}

.tooltip-window {
  width: auto;
  max-width: 460px;
  background-color: #FFEFE4;
  color: black;
  border-radius: 12px;
  filter: drop-shadow(0px 12px 48px rgba(197, 196, 196, 0.22));
  text-align: center;
  padding: 10px;
  position: absolute;
  z-index: 999999;
  font-weight: 400;
  transform: translateY(-7px);
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  .tooltip-window {
    max-width: 280px;
    font-size: 12px;
  }
}
.tooltip-window::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: #FFEFE4 transparent transparent transparent;
  margin-left: var(--arrow-offset);
}

a.woocommerce-privacy-policy-link {
  text-decoration: underline;
}