:root {
  --background: #161618;
  --darken: #0E0F11;
  --primary: #ED1C24;
  --secondary: #FFF200;
  --darkest: #0E0F11;
  --dark: #1c1c1e;
  --medium: #434343;
  --light: #AFAFAF;
  --white: #FFF;
  --placeholder: #AFAFAF;
  --radius: 1em;
  --radius-big: 2.75em;
  --shadow: 0px 4px 20px -10px rgba(0, 2, 3, 0.40);
}

* {
  scrollbar-width: auto;
  scrollbar-color: var(--primary) var(--primary-light);
}

*::-webkit-scrollbar {
  width: 6px;
  border-radius: 6px;
}

*::-webkit-scrollbar-track {
  background: var(--medium);
  border-radius: 6px;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 6px;
  border: 0px none var(--medium);
}

html {
  scroll-behavior: smooth;
}

html, body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

body {
  background: var(--background);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  line-height: 1.44;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  quotes: "„" "”" "‚" "’";
}

.container {
  -webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
  position: relative;
  z-index: 2;
}

@media (min-width: 1600px) {
  .container {
      max-width: 1400px;
  }
}

::-moz-selection {
  background-color: var(--primary);
  color: var(--white);
}

::selection {
  background-color: var(--primary);
  color: var(--white);
}

section.temp-space {
  padding-top: 50px;
  padding-bottom: 50px;
}

section.fl-row.temp-space .fl-row-content-wrap {
  padding-top: 50px;
  padding-bottom: 50px;
}

section.fl-row.temp-space {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* PARAGRAPH */

a {
  color: inherit;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  display: inline-block;
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.text-underline {
  text-decoration: underline;
}

a:hover,
a:active,
a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

button, button:hover, button:focus {
  background-color: transparent;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  cursor: pointer;
  color: inherit;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

input, input:focus, input:hover, select, select:focus, select:hover, textarea, textarea:focus, textarea:hover {
  background-color: var(--dark);
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: var(--radius);
  padding: 1em;
  color: var(--placeholder);
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

::placeholder {
  color: var(--placeholder);
  font-weight: 400;
}

:-ms-input-placeholder {
  color: var(--placeholder);
  font-weight: 400;
}

::-ms-input-placeholder {
  color: var(--placeholder);
  font-weight: 400;
 }

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right[class*="button"], .align-right[class*="read-more"] {
  text-align: center;
  float: right;
}

.align-center[class*="button"], .align-center[class*="read-more"] {
  text-align: center;
  float: none;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

img.alignright {
  float:right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float:left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float:right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float:left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.text-normal {
  font-size: 1em;
}

.text-smaller {
  font-size: 0.9em;
  line-height: 1.4em;
}

.text-smallest {
  font-size: 0.8em;
  line-height: 1.4em;
}

.text-bigger {
  font-size: 1.1em;
  line-height: 1.4em;
}

.text-biggest {
  font-size: 1.2em;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

footer ul, header ul {
  list-style: none;
}

strong, b {
  font-weight: bold;
}

.invert {
  color: var(--white);
}

/* OTHER */

.break-after:after {
  content: '\A';
  white-space: pre;
}

.break-before:before {
  content: '\A';
  white-space: pre;
}

.va-middle {
  vertical-align: middle;
}

.va-top {
  vertical-align: top;
}

.va-bottom {
  vertical-align: bottom;
}

.no-border {
  border: none;
}

.inline-block {
  display: inline-block !important;
}

.block-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.vertical-middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.navbar-toggler {
  display: none;
}

.screen-reader-text {
  font-size: 0;
}

.invert .section-title {
  color: var(--white);
}

/* HEADINGS */

h1, .h1 {
  font-size: 4em;
  font-weight: 300;
  display: table;
  margin-bottom: 15px;
}

h2, .h2 {
  font-size: 3em;
  font-weight: 300;
  display: table;
  margin-bottom: 15px;
}

h3, .h3 {
  font-size: 2em;
  font-weight: 300;
  display: table;
  margin-bottom: 15px;
}

h4, .h4 {
  font-size: 1.7em;
  font-weight: 300;
  display: table;
  margin-bottom: 15px;
}

h5, .h5 {
  font-size: 1.25em;
  font-weight: 400;
  display: table;
  margin-bottom: 15px;
}

h6, .h6 {
  font-size: 1em;
  font-weight: 400;
  display: table;
  text-transform: uppercase;
  margin-bottom: 15px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: Kanit, sans-serif;
}

/* TOP BAR */

.top-bar {
  background-color: var(--dark);
  color: var(--secondary);
  position: relative;
  display: block;
  text-align: center;
  font-size: 0.8em;
  padding: 0.5em 3em 0.5em 1em;
}

.top-bar .close {
  position: absolute;
  top: -0.15em;
  right: 0;
  opacity: 1;
}

.top-bar .close img {
  height: 1.5em;
  width: 1.5em;
}

/* HEADER */

header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

header .nav-bar {
  position: relative;
  max-width: 1370px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  gap: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.home header .nav-bar {
  display: none;
}

header .nav-bar .container {
  position: relative;
  width: 100%;
  display: flex;
  gap: 40px;
  padding: 2em 0;
}

header .nav-bar .logo {
  height: 48px;
  width: 95px;
}

ul li {
  position: relative;
}

ul li .sub-menu {
  position: absolute;
  top: 100%;
  background-color: var(--dark);
  color: var(--white);
  font-size: 14px;
  border-radius: var(--radius);
  padding: 1em 1.5em;
  max-width: 300px;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  position: absolute;
  z-index: 100;
  box-shadow: var(--shadow);
}

ul li:hover > .sub-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.navigations {
  display: flex;
  gap: 30px;
  width: calc(100% - 135px);
}

.navigations a {
  text-decoration: none;
}

.navigations ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.navigations ul li {
  width: 100%;
}

.navigations ul.main-nav > li, .navigations ul.shop-nav > li {
  width: auto;
  position: relative;
  padding-left: 28px;
}

.navigations ul.main-nav > li:before {
  height: 1px;
  width: 10px;
  left: 10px;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  background-color: var(--light);
  top: 0.75em;
  transform: translateY(-50%);
  content: "";
  position: absolute;
}

.navigations ul.main-nav > li:hover:before, .navigations ul.main-nav > li.active:before {
  background-color: var(--white);
  width: 20px;
  left: 0;
}

.navigations ul.main-nav {
  gap: 30px;
  padding-top: 1em;
  padding-bottom: 1em;
}

.search-box {
    position: relative;
    display: inline-block;
}

.search-box .search-button, ul.shop-nav a {
    border: none;
    cursor: pointer;
    padding: 1em 1em;
    background-color: var(--dark);
    border-radius: var(--radius);
}

.search-box .search-button:hover, ul.shop-nav a:hover {
  background-color: var(--secondary);
  color: var(--dark);
}

.search-box .search-button img, ul.shop-nav a img {
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.search-box .search-button:hover img, ul.shop-nav a:hover img {
  filter: invert(1);
}

ul.shop-nav {
  gap: 15px;
  margin-left: auto
}

.navigations ul.shop-nav > li {
  padding-left: 0;
}

.search-box .search-button img {
  height: 1.4em;
}

.search-box input {
    position: absolute;
    top: 50%;
    left: -10px;
    opacity: 0;
    visibility: hidden;
    width: 0;
    border-radius: var(--radius);
    background-color: var(--dark);
    transition: width 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transform-origin: right;
    transform: translateX(-100%) translateY(-50%);
}

.search-box.active input {
    opacity: 1;
    visibility: visible;
    width: 350px;
}

a .product-count {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.75em;
  background-color: var(--secondary);
  color: var(--dark);
  min-width: 1.5em;
  border-radius: 50%;
  text-align: center;
}

/* HOME TOP */

.home-top-section {
  width: 100%;
  display: flex;
  position: relative;
}

.home-top-section .sub-menu {
  transform: none;
  left: 100%;
  top: -1em;
}

.home-top-section ul li {
  padding-right: 10px;
}

.sub-menu {
  min-width: 250px;
}

.home-top-section .logo {
  margin-bottom: 50px;
  margin-top: 30px;
}

.home-top-section .home-top-nav {
  width: 27%;
  min-width: 350px;
}

.home-top-section .home-top-text {
  width:  73%;
  position: relative;
  min-height: 700px;
}

.home-top-nav .main-nav {
  flex-direction: column;
    align-items: flex-start;
}

.home-top-section .home-top-text > .background {
  position: absolute;
  height: 100%;
  width: 85%;
  left: 15%;
  top: 0;
  pointer-events: none;
  z-index: -2;
  background-size: cover;
  background-position: right center;
}

.home-top-section .home-top-text .bg-element {
  width: 197px;
  height: 138px;
  left: 0;
  top: 100px;
  position: absolute;
  pointer-events: none;
  z-index: -1;
  content: "";
  background-image: url(../img/shape-01.svg);
  background-size: cover;
  background-position: center;
}

.home-top-section .home-top-text .bg-text {
  opacity: 0.1;
  font-size: 280px;
  bottom: 10px;
  right: 0;
  pointer-events: none;
  position: absolute;
  font-weight: 300;
  z-index: -1;
}

.home-top-section .shop-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  margin-top: 30px;
  justify-content: right;
}

.shop-nav a {
  text-decoration: none;
}

.home-top-section .home-top-text .text {
  display: block;
  width: 100%;
  padding-bottom: 30px;
  margin-top: 50px;
}

.home-top-section .home-top-text .text .text-top {
  display: block;
  text-align: right;
  width: 100%;
  font-weight: 400;
  font-family: Kanit, sans-serif;
}

.home-top-section .home-top-text .text .text-main {
  display: block;
  font-size: 6em;
  line-height: 1em;
  font-family: Kanit, sans-serif;
  margin-top: 40px;
}

.home-top-section .home-top-text .text .text-main i {
  font-weight: 100;
}

.home-top-section .home-top-text .text .text-bottom {
  display: block;
  color: var(--light);
  margin-top: 50px;
  width: 100%;
}

.home-top-section .home-top-text .text .primary-button {
  display: table;
  margin-left: auto;
}

/* BUTTONS */

.primary-button, .primary-button:hover, .primary-button:focus, .primary-button.active, .checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button.alt, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button.alt:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button.alt:focus, .woocommerce .cart .button, .woocommerce .cart input.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled], .button, .button:focus, .button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  padding: 1em 1.25em;
  font-style: italic;
  border: 1px solid var(--light);
  min-width: 235px;
  border-radius: var(--radius);
  text-decoration: none;
  position: relative;
  cursor: pointer;
  background-color: var(--background);
  font-style: normal;
  text-align: center;
  max-width: 100%;
}

.primary-button:hover, .primary-button:focus, .primary-button.active, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button.alt:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button.alt:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button.alt.active, .woocommerce .cart .button:hover, .woocommerce .cart input.button:hover, .button:focus, .button:hover, .button.active, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
  max-width: 100%;
}


.primary-button.arrow-button {
  padding-right: 60px;
}

.primary-button.arrow-button:after {
  width: 50px;
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  right: -1px;
  border-radius: var(--radius);
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/icon_arrow-right.svg);
  background-size: 17px 9px;
  border: 1px solid  var(--light);
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.primary-button.arrow-button:hover:after {
  border-color: transparent;
  filter: invert(1);
  background-position: left;
}

/* COUNTER COLUMNS */

.counter-columns {
  display: flex;
  width: 100%;
  gap: 40px;
}

.counter-columns .text {
  font-size: 1.5em;
}

.counter-columns .number {
  font-size: 3em;
}

.counter-columns .column {
  flex: 1;
  min-width: 0;
}

/* TITLES */

.section-title {
  padding-left: 50px;
  margin-bottom: 50px;
  position: relative;
}

.section-title:before {
  position: absolute;
  width: 23px;
  height: 72px;
  background-color: var(--primary);
  clip-path: polygon(95.74% 0, 19.2% 100%, 0 100%, 76.23% 0);
  content: "";
  left: 0;
  top: 0.25em;
}

.section-pretitle {
  font-size: 1.25em;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 0;
}

/* BREADCRUMBS */

.breadcrumbs {
  display: inline-block;
  padding: 0.5em 60px 0.5em 1em;
  border-radius: var(--radius);
  background-color: var(--dark);
  color: var(--medium);
  width: auto;
  border: 1px solid var(--medium);
  position: relative;
  margin-bottom: 30px;
}

.breadcrumbs a {
  color: var(--light);
  text-decoration: none;
}

.breadcrumbs span, .breadcrumbs a {
  margin-left: 10px;
  margin-right: 10px;
}

.breadcrumbs span, .breadcrumbs a.active {
  color: var(--white);
}

.breadcrumbs a:hover {
  color: var(--secondary);
}

.breadcrumbs:after {
  width: 50px;
  height: 100%;
  position: absolute;
  border-radius: var(--radius);
  content: "";
  top: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/icon_arrow-right.svg);
  background-size: 17px 9px;
  border: 1px solid  var(--medium);
}

/* PRODUCT LIST */

.product-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.product-item .image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.product-item .image img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
  min-width: 100%;
  min-height: 100%;
  height: auto;
}

.product-item .image:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  content: "";
}

.product-item:hover .image:after {
  background: linear-gradient(180deg, rgba(237,28,36,0) 0%, rgba(237,28,36,1) 100%);
}

.product-item:hover .image img {
  transform-origin: center;
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}

.product-item .text {
  width: 100%;
  height: auto;
  bottom: 0;
  padding: 1.5em;
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-item .text h3 {
  font-size: 1.25em;
  margin-bottom: 5px;
}

.product-item .text .product-name {
  width: 100%;
}

.product-item a {
  text-decoration: none;
}

.product-item .text .add-to-cart {
  width: 20px;
  margin-left: auto;
}

.product-item .text .price {
  font-size: 1.25em;
}

.product-item .text .price del {
  font-size: 0.75em;
}

/* NUMBER TEXT PHOTO SECTION */

.number-text-image {
  display: block;
  margin-top: 50px;
}

.number-text-image .module-row {
  display: flex;
  gap: 50px;
  padding-bottom: 30px;
}

.number-text-image .module-row .number {
  color: var(--primary);
  width: 100px;
}

.number-text-image .module-row .text {
  width: calc(45% - 50px);
}

.number-text-image .module-row .image img {
  margin-top: -50px;
  max-width: 100%;
  border-radius: var(--radius-big);
  overflow: hidden;
}

.number-text-image .module-row:nth-child(2n+2) .image {
  order: 1;
}

.number-text-image .module-row:nth-child(2n+2) .number {
  order: 2;
}

.number-text-image .module-row:nth-child(2n+2) .text {
  order: 3;
}

/* TESTOMONIALS */

.testimonial-item {
  background-color: var(--darkest);
  padding: 1.5em;
  border-radius: var(--radius);
}

blockquote {
  display: block;
  position: relative;
  padding-top: 4em;
}

blockquote:before {
  content: "„";
  color: var(--primary);
  font-size: 10em;
  line-height: 0;
  display: block;
  position: absolute;
  pointer-events: none;
  top: -0.2em;
}

blockquote cite {
  position: relative;
  display: block;
  color: var(--light);
  font-weight: 500;
  font-size: 0.85em;
  border-top: 1px solid var(--medium);
  padding-top: 1em;
  margin-top: 1em;
}

.testimonial-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

/* FOOTER */

footer {
  display: block;
  width: 100%;
  font-size: 0.85em;
  margin-top: 60px;
}

footer > .container:first-child > .footer-columns {
  border-top: 1px solid var(--medium);
  padding-top: 50px;
}

.footer-columns, .footer-columns-2 {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  margin-bottom: 5px;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: var(--secondary);
}

.footer-columns .footer-column, .footer-columns-2 .footer-column {
  flex: 1;
  min-width: 0;
}

footer h5, footer h6 {
  color: var(--light);
}


footer .company-info {
  color: var(--light);
  text-align: right;
}

footer .logo {
  float: right;
}

.social-media {
  display: flex;
  gap: 10px;
}

.social-media img {
  height: 2.5em;
}

.social-media a:hover {
  opacity: 0.7;
}

footer h6 {
  font-size: 0.9em;
}

/* PRODUCT LIST SUBPAGE */

.mcs-shop {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
}

.mcs-shop .shop-sidebar {
  width: 300px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.mcs-shop .product-part {
  width: calc(100% - 330px);
}

.show-sidebar-nav {
  display: none;
}

.sidebar-nav, .sidebar-nav ul, .shop-sidebar ul.product-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav li, .shop-sidebar ul.product-categories li {
  margin-top: 5px;
}

.sidebar-nav a, .shop-sidebar ul.product-categories li a {
  text-decoration: none;
}

.sidebar-nav ul, .shop-sidebar ul.product-categories {
  padding-left: 0;
}

.sidebar-box {
  border-radius: var(--radius);
  background-color: var(--dark);
  padding: 1.5em;
  width: 100%;
}

.sidebar-nav li.active > a, .shop-sidebar ul.product-categories li.active > a {
  color: var(--secondary);
  font-weight: 500;
}

.sidebar-nav li, .shop-sidebar ul.product-categories li {
  padding-left: 25px;
  position: relative;
}

.sidebar-nav a:hover, .shop-sidebar ul.product-categories a:hover {
  color: var(--secondary);
}

.sidebar-nav li:before, .shop-sidebar ul.product-categories li:before {
  height: 1px;
  width: 10px;
  left: 10px;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  background-color: var(--light);
  top: 0.75em;
  transform: translateY(-50%);
  content: "";
  position: absolute;
}

.sidebar-nav li:hover:before, .sidebar-nav li.active:before, .shop-sidebar ul.product-categories li:hover:before, .shop-sidebar ul.product-categories li.active:before, .shop-sidebar ul.product-categories li.current-cat:before {
  background-color: var(--white);
  width: 20px;
  left: 0;
}

.shop-sidebar ul.product-categories li ul.children {
  margin-left: -10px;
  width: calc(100% + 10px);
}

.sidebar-sub-menu {
  display: none;
}

li.active > .sidebar-sub-menu {
  display: block;
}

.box-title {
  padding-left: 25px;
  margin-bottom: 20px;
  position: relative;
}

.box-title:before {
  position: absolute;
  width: 12px;
  height: 32px;
  background-color: var(--primary);
  clip-path: polygon(95.74% 0, 19.2% 100%, 0 100%, 76.23% 0);
  content: "";
  left: 0;
  top: 0;
}

.sidebar-nav, .shop-sidebar ul.product-categories {
  max-height: 500px;
  overflow-y: auto;
}

.product-list-top {
  display: flex;
  width: 100%;
  gap: 30px;
  margin-bottom: 2em;
}

.product-list-top .left-part {
  padding-top: 1em;
}

.product-list-top .right-part {
  margin-left: auto;
}

.product-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.product-list .product-item {
  width: calc(33.33% - 20px);
}

.pagination {
  margin-top: 30px;
  width: 100%;
}

.pagination span.active, .pagination a:hover {
  color: var(--primary);
}

.pagination a, .pagination span {
  margin-left: 15px;
}

/* PRODUCT SUBPAGE */

.single-product {
  display: block;
  position: relative;
}

.single-product .product-top {
  display: flex;
  gap: 40px;
  position: relative;
}

.single-product .product-top .product-informations {
  width: calc(50% - 20px);
}

.badge {
  display: block;
  text-align: left;
}

.badge span {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 0.5em 1em;
  border-radius: var(--radius);
  background-color: var(--dark);
  color: var(--light);
  width: auto;
  border: 1px solid var(--medium);
  position: relative;
}

.badge span.promo {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

span.product-color {
  display: block;
  color: var(--light);
  margin-bottom: 30px;
  font-style: italic;
}

.product-table {
  display: flex;
  gap: 20px 40px;
  flex-wrap: wrap;
  color: var(--light);
  font-size: 0.85em;
}

.product-table .half-row {
  width: calc(50% - 20px);
}

.product-table .full-row {
  width: 100%;
}

button.price-proposal {
  text-decoration: underline;
}

.price-proposal-box {
  display: none;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.price-proposal-box input, .price-proposal-box button {
  width: 100%;
}

button.send {
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  padding: 1em 1.25em;
  font-style: italic;
  border: 1px solid var(--light);
  min-width: 295px;
  border-radius: var(--radius);
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

button.send:hover, button.send:focus, button.send.active {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
}

.single-product .price-part {
  display: block;
  margin-top: 30px;
}

.single-product .price-part .price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  font-size: 2.25em;
  color: var(--secondary);
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  margin-top: 30px;
}

.single-product .price-part .price del, .single-product .price-part .price small {
  font-size: 0.4em;
  color: var(--white);
}

.omnibus {
  display: block;
  color: var(--medium);
  font-size: 0.85em;
}

.qty-add-to-cart {
  display: flex;
  gap: 10px;
  position: relative;
  margin-top: 30px;
}

.qty-input {
  position: relative;
}

 select, select:hover, select:active, select:focus {
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid var(--light);
}

.variations select, .variations select:hover, .variations select:active, .variations select:focus {
  padding-top: 10px;
  padding-bottom: 10px;
}

.owl-carousel .owl-item img {
  width: auto;
}

.qty-input input.product-qty {
  padding-left: 40px;
  padding-right: 40px;
  border: 1px solid var(--light);
  position: relative;
  z-index: 1;
  width: 120px;
}

.qty-input .qty-count {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.qty-input .qty-count.qty-count--minus {
  left: 15px;
}

.qty-input .qty-count.qty-count--add {
  right: 15px;
}

.single-product .qty-add-to-cart .add-to-cart {
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  padding: 1em 70px 1em 1.25em !important;
  font-style: italic !important;
  font-weight: 500  !important;
  border: 1px solid var(--background);
  min-width: 295px !important;
  border-radius: var(--radius);
  text-decoration: none;
  position: relative;
  cursor: pointer;
  background-color: var(--secondary);
  color: var(--dark);
}

.single-product .qty-add-to-cart .add-to-cart:hover, .single-product .qty-add-to-cart .add-to-cart:focus, .single-product .qty-add-to-cart .add-to-cart.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.single-product .qty-add-to-cart .add-to-cart:after {
  width: 60px;
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  right: -1px;
  border-radius: var(--radius);
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/ico_cart-3.svg);
  background-size: 20px 26px;
  border: 1px solid  var(--background);
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  filter: invert(0);
}

.single-product .qty-add-to-cart .add-to-cart:hover:after {
  border-color: transparent;
  background-position: left;
}

.single-product .product-description {
  margin-top: 50px;
  position: relative;
  display: block;
}

.single-product .product-gallery {
  width: calc(50% - 20px);
}

.single-product .product-gallery img {
  border-radius: var(--radius-big);
  overflow: hidden;
}

.product-gallery-carousel {
  width: 100%;
}

.single-product .product-gallery a, .single-product .product-gallery img {
  width: 100%;
  display: block;
}

/* SUBPAGE HEADER */

.subpage-container {
  padding-top: 50px;
  padding-bottom: 50px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.subpage-container h1 {
  display: table;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  margin-bottom: 50px;
  position: relative;
}

.subpage-container h1:before {
  position: absolute;
  width: 23px;
  height: 72px;
  background-color: var(--primary);
  clip-path: polygon(95.74% 0, 19.2% 100%, 0 100%, 76.23% 0);
  content: "";
  left: 0;
  top: 0.25em;
}

/* CONTACT */

.contact-module {
  display: flex;
  gap: 40px;
}

.contact-module .contact-info {
  width: calc(50% - 20px);
}

.contact-module .contact-form-part {
  width: calc(50% - 20px);
}

.contact-box-title {
  position: relative;
  display: block;
  margin-bottom: 10px;
  font-size: 1.25em;
}

.contact-box-title > img {
  height: 2.25em;
  margin-right: 10px;
}

.contact-box {
  margin-bottom: 40px;
}

.contact-box .text {
  color: var(--light);
}

.contact-box .text a, .hightlight {
  color: var(--secondary);
}

.contact-form-part input, .contact-form-part textarea {
  width: 100%;
  margin-bottom: 10px;
}

.contact-form-part textarea {
  min-height: 150px;
}

/* BLOG ENTRIES */

.blog-entries {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
}

.blog-entries .blog-item {
  width: calc(33.33% - 20px);
}

.blog-item {
  display: block;
}

.blog-item .image, .blog-item .image img, .blog-item .image a {
  position: relative;
  width: 100%;
  display: block;
  z-index: 1;
}

.blog-item .image {
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-item .image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  content: "";
  z-index: 2;
  pointer-events: none;
}

.blog-item .image .date {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 3;
  font-size: 0.85em;
  pointer-events: none;
}

.blog-item a {
  text-decoration: none;
}

.blog-item .title {
  margin-top: 20px;
}

.blog-item .primary-button {
  width: 100%;
  margin-top: 30px;
}

/* BLOG ENTRY */

.subpage-container.blog-entry {
  padding-top: 100px;
}

.subpage-container.blog-entry .breadcrumbs {
  margin-bottom: 200px;
}

.subpage-container.blog-entry .date {
  display: block;
}

/* AUTOCOMPLETE */

.ui-widget {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.ui-autocomplete {
	z-index: 99;
}

.ui-autocomplete-input.ui-autocomplete-loading {
	background-image: url(../img/spinner.gif);
	background-size: 31px;
	background-position: center;
	background-repeat: no-repeat;
}

.ui-widget-content.ui-autocomplete.ui-front .ui-menu-item-wrapper {
	cursor: pointer;
}

.ui-widget-content.ui-autocomplete.ui-front {
	width: 500px;
	font-size: 14px;
	max-width: 80vw;
	border-radius: 15px;
  border: 1px solid var(--darken);
	background-color: var(--darken);
	max-height: 50vh;
	overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ui-widget-content.ui-autocomplete.ui-front li {
  margin: 0;
  padding: 10px;
}

ul.ui-widget-content.ui-autocomplete.ui-front {
	z-index: 99;
}

.autocomplete-item.ui-menu-item-wrapper img {
  width: 45px;
  height: 45px;
  margin-right: 8px;
  border-radius: 5px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
	z-index: 999;
}

.ui-dialog .ui-dialog-titlebar-close {
	font-size: 0;
}

.ui-menu .ui-menu-item {
	padding: 5px !important;
}

/* WOOCOMMERCE */

.woocommerce .woocommerce-ordering {
  margin: 0;
  display: flex;
  float: none;
  gap: 10px;
  align-items: center;
}

.shop-sidebar ul.product-categories a {
  text-decoration: none;
}

.shop-sidebar ul.product-categories, .shop-sidebar ul.product-categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-info {
  background-color: transparent;
  color: var(--secondary);
  border-top-color: var(--primary);
  width: 100%;
}

.woocommerce-info::before {
  color: var(--secondary);
}

.woocommerce-no-products-found {
  width: calc(100% - 330px);
}

#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
  padding: 0.75em 1.25em;
  min-width: 300px;
}

.woocommerce .cart .button, .woocommerce .cart input.button, #add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled], .button, .button:focus, .button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
  background-color: var(--secondary) !important;
  color: var(--dark) !important;
  border-color: var(--secondary) !important;
}

.woocommerce .cart .button:hover, .woocommerce .cart input.button:hover, #add_payment_method .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2, .col-1, .col-2, .u-column1.col-1, .u-column2.col-2 {
  max-width: 48%;
}

.woocommerce-input-wrapper, .woocommerce-input-wrapper input, .woocommerce-input-wrapper textarea {
  width: 100%;
  display: block;
}

.select2-container--default .select2-selection--single {
  background-color: var(--dark);
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: var(--radius);
  padding: 1em;
  color: var(--placeholder);
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  display: flex;
  align-items: center;
  min-height: 42px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--placeholder);
  padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  display: flex;
  align-items: center;
}

.select2-dropdown {
  background-color: var(--dark);
  border: none;
  box-shadow: none;
  border-radius: var(--radius);
}

.select2-results__option {
  padding: 1em;
  color: var(--placeholder);
}

.select2-results__option--highlighted {
  background-color: var(--placeholder);
  color: var(--dark);
}

.woocommerce-MyAccount-navigation {
  background-color: var(--dark);
  border-radius: var(--radius);
  padding: 1em;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li {
  margin-bottom: 0.5em;
}

.woocommerce-MyAccount-navigation-link a {
  display: block;
  padding: 0.75em 1em;
  background-color: var(--dark);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s ease-in-out;
}

.woocommerce-MyAccount-navigation-link a:hover {
  background-color: var(--background);
  color: var(--secondary);
}

.woocommerce-MyAccount-navigation-link.is-active a {
  background-color: var(--secondary);
  color: var(--dark);
  font-weight: bold;
}

.admin-bar header {
  top: 0;
}

.woocommerce-Address-title.title {
  margin-bottom: 20px;
}

.woocommerce-form-row > label, .woocommerce-form-row > span {
  width: 100%;
  display: block;
}

.woocommerce-form__label.woocommerce-form__label-for-checkbox {
  width: 100%;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    padding: 0.5em 60px 0.5em 1em;
    border-radius: var(--radius);
    color: var(--white);
    width: auto;
    border: 1px solid var(--medium);
}

.footer-column .bigger {
  font-size: 1.25em;
}

.woocommerce-product-gallery, .woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
  width: 100%;
  float: none;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: 50px;
}

.woocommerce div.product div.images .flex-control-thumbs {
  margin-top: 20px;
}

.single-product .product-gallery .flex-control-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.single-product .product-gallery .flex-control-thumbs img {
  border-radius: 10px;
}

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
  clear: none;
}

.single-product.woocommerce .quantity .qty {
  position: absolute;
  padding: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.wpcf7-form-control-wrap {
  display: block;
}

.irs--round .irs-bar {
  background-color: var(--primary) !important;
}

.irs--round .irs-handle {
  border: 4px solid var(--primary) !important;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  background-color: var(--primary) !important;
}
.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
  border-top-color: var(--primary) !important;
}

.owl-carousel .owl-nav {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.owl-carousel .owl-nav > button {
  width: 30px;
  height: 18px;
  background-size: cover !important;
  background-position: center !important;
  display: inline-block;
  margin: 5px;
}

.owl-carousel .owl-nav > button.owl-prev {
  background-image: url(../img/icon_arrow-right.svg) !important;
  transform: scaleX(-1);
}

.owl-carousel .owl-nav > button.owl-next {
  background-image: url(../img/icon_arrow-right.svg) !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
  border: none;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background-color: var(--dark);
}

.woocommerce-message {
  border-top-color: var(--secondary);
}

.woocommerce-message::before {
  color: var(--secondary);
}

.woocommerce-checkout, .woocommerce-cart-form, .cart-collaterals {
  padding-left: 10px;
  padding-right: 10px;
}

#order_review_heading {
  margin-left: 15px;
  margin-top: 45px;
}

@media (max-width: 1180px) {
  body {
    font-size: 14px;
  }
  
  .product-list .product-item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 992px) {
  .home header .nav-bar {
    display: block;
  }
  
  .home-top-section .home-top-nav {
    display: none;
  }
  
  .home-top-section .home-top-text {
    width: 100%;
  }
  
  header .navbar-toggler, header .navbar-toggler:hover, header .navbar-toggler:focus {
    position: absolute;
    display: block;
    top: 50%;
    margin-top: -8px;
    right: 15px;
    width: 24px;
    height: 21px;
    border-radius: 0;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border: none;
  }

  header .navbar-toggler span {
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }

  header .navbar-toggler span:nth-child(2) {
    top: 7px;
    width: 11px;
  }

  header .navbar-toggler:hover span:nth-child(2) {
    width: 21px;
  }

  header .navbar-toggler span:nth-child(3) {
    top: 14px;
    width: 21px;
  }

  header .navbar-toggler.open span:nth-child(1) {
    width: 21px;
    transform: rotate(45deg);
    top: 0;
  }

  header .navbar-toggler.open span:nth-child(2) {
    width: 0;
  }

  header .navbar-toggler.open span:nth-child(3) {
    width: 21px;
    transform: rotate(-45deg);
    top: 0;
  }

  header .navbar-toggler.open {
    z-index: 1001;
    position: fixed;
    top: 35px;
    margin-top: 0;
  }

  header .navigations {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    overflow: auto;
    width: 100%;
    background-color: var(--background);
    z-index: 1000;
    right: -100%;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    
  }

  header .navigations.open {
    right: 0;
  }

  header .nav-bar {
    padding: 15px;
  }

  header .nav-bar.container {
    max-width: 100%;
  }

  header .nav-bar .main-nav {
    padding: 30px;
    margin-top: 0;
  }

  header .nav-bar .main-nav ul {
    display: block;
  }
  
  .navigations ul.main-nav {
    gap: 10px;
    order: 2;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .navigations ul.main-nav > li {
    width: 100%;
  }
  
  .navigations ul.shop-nav {
    order: 1;
    padding: 80px 15px 0 15px;
    width: 100%;
    gap: 7px;
    align-items: center;
    justify-content: center;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .navigations ul.shop-nav li:first-child {
    width: 100%;
  }
  
  .search-box input {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    visibility: visible;
    opacity: 1;
  }
  
  .search-box button {
    display: none;
  }
  
  .search-box {
    display: block;
  }
  
  ul li .sub-menu {
    top: 0;
    opacity: 1;
    max-width: 100%;
    position: relative;
    left: 0;
    visibility: visible;
    transform: none;
    background-color: transparent;
    box-shadow: none;
    padding: 0.5em 0.85em;
  }
  
}

@media (max-width: 768px) {
  .single-product .product-top {
    flex-wrap: wrap;
  }
  
  .single-product .product-top .product-informations, .single-product .product-gallery {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  
  .counter-columns, .footer-columns, .footer-columns-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .counter-columns .column, .footer-columns .footer-column, .footer-columns-2 .footer-column {
    width: calc(50% - 15px);
    flex: auto;
  }
  
  .counter-columns .column {
    text-align: center;
  }
  
  .number-text-image .module-row {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .number-text-image .module-row .number {
    width: 50px;
  }
  
  .number-text-image .module-row .text {
    width: calc(100% - 80px);
  }
  
  .number-text-image .module-row .image {
    width: 100%;
  }
  
  .number-text-image .module-row .image img {
    margin-top: 0;
  }
  
  .home-top-section {
    flex-wrap: wrap;
  }
  
  .home-top-section .home-top-nav, .home-top-section .home-top-text {
    width: 100%;
  }
  
  .home-top-section .home-top-text {
    min-height: auto;
  }
  
  .home-top-section .home-top-text > .background {
    width: calc(100% + 60px);
    left: -30px;
  }
  
  .home-top-section .shop-nav {
    display: none;
  }
  
  .home-top-section .home-top-nav {
    display: none;
  }
  
  .home header .nav-bar {
    display: flex;
  }
  
  .mcs-shop, .product-list-top {
    flex-wrap: wrap;
  }
  
  .mcs-shop .shop-sidebar, .mcs-shop .product-part, .product-list-top .left-part, .product-list-top .right-part, .product-list .product-item {
    width: 100%;
  }
  
  .woocommerce .woocommerce-ordering {
    flex-wraP: wrap;
  }
  
  .counter-columns {
    font-size: 0.85em;
  }
  
  h1, .h1 {
    font-size: 2.85em;
  }
  
  h2, .h2, h1.section-title {
    font-size: 2.15em;
  }
  
  h3, .h3 {
    font-size: 1.85em;
  }
  
  .product-table .half-row {
    width: 100%;
  }
  
  .qty-add-to-cart {
    flex-wrap: wrap;
  }
  
  .product-categories {
    max-height: 350px;
  }
  
  .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2, .col-1, .col-2, .u-column1.col-1, .u-column2.col-2 {
    width: 100%;
    max-width: 100%;
    float: none;
  }
  
  .woocommerce-notices-wrapper a, .woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
    margin-top: 15px;
    float: none;
  }

}