:root {
  --wrap-max-size: 2560px;
  --wrap-min-size: 360px;
  --wrap-box-size: 1440px;
  --nav-desk-height: 120px;
  --nav-mobile-height: 100px;
  /* custom */
  --color-background-block: normal;
}

:root, [data-bs-theme=light] {
  --bs-primary: #0d6efd;
  --bs-primary-rgb: 13,110,253;
  --bs-primary-text-emphasis: #052C65;
  --bs-primary-bg-subtle: #CFE2FF;
  --bs-primary-border-subtle: #9EC5FE;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0B5ED7;
  --bs-btn-hover-border-color: #0A58CA;
  --bs-btn-focus-shadow-rgb: 219,233,255;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0A58CA;
  --bs-btn-active-border-color: #0A53BE;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13,110,253;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
}

/* !set grid breakpoints */
/* Color */
/* *
 * !Base */
* {
  font-family: "Outfit";
  box-sizing: border-box;
  font-size: 100%;
  transition: 0.5s;
  box-shadow: none !important;
}

body {
  height: 100%;
  overflow-x: hidden;
  background-color: white;
  font-family: Outfit, sans-serif;
  position: relative;
}

header {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  width: 100%;
  height: var(--nav-mobile-height);
  transition: right 0.6s ease-in-out;
}

header.sticky {
  position: fixed;
  background-color: black;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.7);
}

main {
  width: 100%;
}

footer {
  width: 100%;
  background-color: black;
}

a {
  text-decoration: none;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  font-weight: 200;
  display: grid;
}

div.col > ul {
  padding-left: 20px;
}
div.col > ol {
  padding-left: 20px;
}

.input:focus,
.form-control:focus {
  border-color: #228BA3;
}

/* *
* !Typography */
h1, h2, h3, h4, h5, h6, p {
  color: black;
}

h1 {
  font-size: clamp(30px, 2.778vw, 40px);
  line-height: clamp(36px, 3.194vw, 46px);
  font-weight: 300;
}

h2 {
  font-size: clamp(24px, 2.222vw, 32px);
  line-height: clamp(30px, 2.639vw, 38px);
  font-weight: 300;
}

h3 {
  font-size: clamp(20px, 1.806vw, 26px);
  line-height: clamp(26px, 2.222vw, 32px);
  font-weight: 300;
}

p {
  font-weight: 200;
}
p img.alignright {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
  width: 50%;
}
@media (min-width: 36rem) {
  p img.alignright {
    width: auto;
  }
}
p img.alignleft {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  width: 50%;
}
@media (min-width: 36rem) {
  p img.alignleft {
    width: auto;
  }
}
p img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  width: 100% !important;
  max-width: 100%;
}
@media (min-width: 36rem) {
  p img.aligncenter {
    width: auto;
  }
}

.text-glow {
  text-shadow: 0px 0px 10px rgb(206, 206, 206);
}

/* *
* !Globals */
.wrapper {
  position: relative;
  width: 100%;
  max-width: var(--wrap-max-size);
  min-width: var(--wrap-min-size);
  margin-left: auto;
  margin-right: auto;
}

.wrapper:after {
  content: "";
  position: fixed;
  background: rgba(255, 255, 255, 0.2);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 99;
  display: none;
}

.wrapper.overlay::after {
  display: block;
}

.wrapper__boxing {
  width: 100%;
  max-width: var(--wrap-box-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.btn {
  padding: 10px 30px 13px 30px;
  border-radius: 5px;
  line-height: 20px;
}

.row-column {
  flex-direction: column;
}

.row-column > col-center {
  text-align: center;
}

.row-column-reverse {
  flex-direction: column-reverse;
}

.row-column-reverse > col-center {
  text-align: center;
}

section {
  padding-top: clamp(35px, 3.819vw, 55px);
  padding-bottom: clamp(30px, 3.819vw, 50px);
}

section.light {
  background: white;
  color: black;
}
section.light *:not(a):not(button) {
  color: black;
}

section.light-texture-full {
  background: white url("/wp-content/themes/lumina/assets/img/background-light.png") left center repeat;
  color: black;
}
section.light-texture-full *:not(a):not(button) {
  color: black;
}

section.light-texture-gradient {
  background: white url("/wp-content/themes/lumina/assets/img/background-light-gradient.png") left bottom repeat-x;
  color: black;
  mix-blend-mode: var(--color-background-block);
}

section.dark,
div.dark {
  background: black;
  color: white;
}
section.dark *:not(a):not(button),
div.dark *:not(a):not(button) {
  color: white;
}

section.dark-texture-full {
  background: black url("/wp-content/themes/lumina/assets/img/background-dark.png") left center repeat;
  color: white;
}
section.dark-texture-full *:not(a):not(button) {
  color: white;
}

section.dark-texture-gradient {
  background: black url("/wp-content/themes/lumina/assets/img/background-dark-gradient.png") left bottom repeat-x;
  color: white;
}

section.dark-clouds {
  background: transparent url("/wp-content/themes/lumina/assets/img/cloudd-1.png") 0px -45px repeat-x;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-image {
  display: none;
}

.spacer-top {
  margin-top: clamp(35px, 3.819vw, 55px);
}

.spacer-bottom {
  margin-bottom: clamp(30px, 3.819vw, 50px);
}

.no-spacer-int {
  padding-top: 0px;
  padding-bottom: 0px;
}

.box-items {
  padding: 20px;
}

.post-edit-link {
  color: black !important;
}

/* *
* !Navigator */
.navigator {
  width: 100%;
  background: transparent;
  height: 100%;
}

.navigator__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.navigator__contents__logo > a > img {
  width: 100%;
  height: auto;
  max-width: 212px;
  margin-bottom: 7px;
}

.navigator__contents__menu {
  display: none;
}

.navigator__contents__menu > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: clamp(20px, 2.778vw, 40px);
}

.navigator__contents__menu > ul > li > a {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.navigator__contents__menu > ul > li {
  position: relative;
}

.navigator__contents__menu > ul > li.open > .dropdown {
  display: block;
}

.navigator__contents__menu .dropdown {
  position: absolute;
  background-color: black;
  padding: 20px 30px;
  top: 40px;
  left: -27px;
  border-radius: 5px;
  display: none;
  width: -moz-max-content;
  width: max-content;
}

.navigator__contents__menu .dropdown > ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.navigator__contents__menu .dropdown > ul > li {
  padding: 7px 0px;
}

.navigator__contents__menu .dropdown > ul > li > a {
  color: white;
}

.navigator__contents__service {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-bottom: 4px;
}

.navigator__contents__service > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style-type: none;
  gap: 20px;
}

.navigator__contents__service > .user {
  border-right: solid 1px white;
  padding-right: 24px;
  margin-right: 24px;
  cursor: pointer;
}

.navigator__contents__service > .user > .user_icons img {
  width: 100%;
  height: auto;
  max-width: 20px;
  padding-bottom: 1px;
}

.navigator__contents__service > .cart {
  border-right: solid 1px white;
  padding-right: 24px;
  margin-right: 24px;
  cursor: pointer;
}

.navigator__contents__service > .cart > .cart_icons img {
  width: 100%;
  height: auto;
  max-width: 20px;
  padding-bottom: 1px;
}

.navigator__contents__service > .utilities {
  /* border-right: solid 1px white; */
  padding-right: 24px;
  /*  margin-right: 24px; */
}

.navigator__contents__service > .utilities > .utilities__search img {
  width: 100%;
  height: auto;
  max-width: 20px;
  padding-bottom: 1px;
}

.navigator__contents__service > .social > .social__yt img {
  width: 100%;
  height: auto;
  max-width: 21px;
  padding-bottom: 3px;
}

.navigator__contents__service > .social > .social__fb img {
  width: 100%;
  height: auto;
  max-width: 12px;
  padding-bottom: 4px;
}

.navigator__contents__collapse {
  display: block;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
  margin-left: 30px;
  cursor: pointer;
}

.navigator__contents__collapse > span {
  background-color: white;
  width: 100%;
  height: 2px;
  display: block;
  margin-top: 2px;
  margin-bottom: 2px;
  margin-right: auto;
}

.navigator__contents__collapse > span:nth-child(3) {
  width: 60%;
}

/* *
* !Menu mobile */
.menu-mobile {
  position: fixed;
  width: 100%;
  max-width: 390px;
  height: 100vh;
  background: black;
  top: 0px;
  right: -390px;
}

.menu-mobile__header {
  padding: 30px;
}

.menu-mobile__header img {
  width: 100%;
  height: auto;
}

.menu-mobile__nav {
  padding: 30px 20px 30px 0px;
}

.menu-mobile__nav ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

.menu-mobile__nav ul > li {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.menu-mobile__nav ul > li > .sub-menu {
  display: none;
}

.menu-mobile__nav ul > li > a {
  color: white;
}

.menu-mobile__nav > ul > li > a {
  font-weight: 600;
}

.menu-mobile__nav ul.dropdown__list > li {
  border-bottom: dotted 1px rgba(255, 255, 255, 0.1);
}

.menu-mobile__nav ul.dropdown__list > li > a {
  font-weight: 300;
}

/* *
* !Drawer */
.drawer {
  overflow: hidden;
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.6s ease-in-out;
}

.drawer.open {
  right: 0;
}

.drower--close {
  width: 23px;
  height: 28px;
  margin-left: auto;
  cursor: pointer;
}

.drower--close:hover {
  transform: rotate(360deg);
}

/* *
* !Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero__contents {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background: url("/wp-content/themes/lumina/assets/img/cloudd-2.png") center bottom repeat-x;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero__contents__block {
  width: 100%;
  max-width: calc(var(--wrap-box-size) - 70px);
  margin: 0px auto;
  padding: 0px 30px;
}

.hero__contents__block > h1 {
  font-size: clamp(40px, 4.167vw, 60px);
  font-weight: 600;
  line-height: clamp(52px, 5vw, 72px);
  color: white;
}

.hero__contents__block > p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin: 20px 0px;
  color: white;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
@media (min-width: 992px) {
  .hero__image > img {
    -o-object-position: center;
       object-position: center;
  }
}

/* *
* !Hero mini */
.hero-mini {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 380px;
  max-height: 380px;
}

.hero-mini__contents {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background: url("/wp-content/themes/lumina/assets/img/cloudd-2.png") center 100px repeat-x;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mini__contents__block {
  width: 100%;
  max-width: calc(var(--wrap-box-size) - 70px);
  margin: 0px auto;
  padding: 0px 30px;
}

.hero-mini__contents__block > h1 {
  font-size: clamp(30px, 2.778vw, 40px);
  font-weight: 600;
  line-height: clamp(52px, 5vw, 72px);
  color: white;
  text-align: center;
}

.hero-mini__contents__block > p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: white;
  text-align: center;
}

.hero-mini__image {
  width: 100%;
  height: 100%;
}

.hero-mini__image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* *
* !Components */
.box-items-review {
  border: solid 2px var(--bs-gray-300);
  border-radius: 5px;
  background-position: center center;
  background-image: url("/wp-content/themes/lumina/assets/img/icons-quote.svg");
  background-size: 50% 50%;
  background-repeat: no-repeat;
}

.review-slide .slick-center {
  transform: scale(1);
}

.review-slide .slick-track {
  padding-top: 20px;
  padding-bottom: 20px;
}

.review-slide .slick-dots li button:before {
  color: white;
  font-size: 10px;
}

.review-slide .slick-dots {
  bottom: -37px;
}

.breadcrumb {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
}

.breadcrumb span,
.breadcrumb span a {
  color: white;
  font-weight: 300;
}

.breadcrumb .breadcrumb_last {
  font-weight: 500;
}

/** Page setup */
.paragraph p img.alignright {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
  width: 50%;
}
@media (min-width: 36rem) {
  .paragraph p img.alignright {
    width: auto;
  }
}
.paragraph p img.alignleft {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  width: 50%;
}
@media (min-width: 36rem) {
  .paragraph p img.alignleft {
    width: auto;
  }
}
.paragraph p img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  width: 100% !important;
  max-width: 100%;
}
@media (min-width: 36rem) {
  .paragraph p img.aligncenter {
    width: auto;
  }
}

.blog-title-card {
  min-height: 64px;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}

.blog-excerpt {
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}

.blog-catagory-badge {
  position: absolute;
  top: 17px;
  left: 13%;
}

.product {
  height: 800px;
}

/* *
* !Footer */
.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer > .footer__contents > .footer__contents__logo > img {
  width: 100%;
  height: auto;
  max-width: 160px;
}

.footer > .footer__contents > .footer__contents__menu ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  color: white;
}

.footer > .footer__contents > .footer__contents__menu ul > li {
  padding: 5px 0px;
}

.footer > .footer__contents > .footer__contents__menu ul > li > a {
  color: white;
  text-decoration: none;
}

.footer > .footer__contents > .footer__contents__menu h5 {
  color: white;
}

.image-top-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hidden {
  display: none !important;
}

.view-logged {
  display: none;
}

body.logged-in .view-logged {
  display: block;
}

/* *
* !Responsive */
/* *
  * !Globals */
@media (min-width: 992px) {
  header {
    height: var(--nav-desk-height);
  }
}
@media (min-width: 992px) {
  .row-column {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .row-column > col-center {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .row-column-reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .row-column-reverse > col-center {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .features-image {
    display: block;
  }
}
/* *
  * !Navigator
* */
@media (min-width: 992px) {
  .navigator__contents__menu {
    display: block;
  }
}
@media (min-width: 992px) {
  .navigator__contents__service {
    display: flex;
    margin-left: initial;
  }
}
@media (min-width: 1200px) {
  .navigator__contents__logo > a > img {
    max-width: 280px;
  }
}
@media (min-width: 992px) {
  .navigator__contents__collapse {
    display: none;
  }
}
/* *
  * !Components
* */
@media (min-width: 992px) {
  .review-slide .slick-center {
    transform: scale(1.1);
  }
}
.woocommerce a {
  text-decoration: underline;
  font-weight: 400;
  color: black;
}
.woocommerce a:hover, .woocommerce a:focus, .woocommerce a:active {
  color: #228BA3;
}
.woocommerce > .wc-login-title {
  width: 100%;
  max-width: 650px;
  margin: 0px auto;
}
.woocommerce > .wc-login-form {
  width: 100%;
  max-width: 650px;
  margin: 0px auto !important;
}
.woocommerce > .wc-login-form .woocommerce-form-login__submit {
  float: none;
}
.woocommerce > .wc-login-form > .lost_password a {
  text-decoration: underline;
  font-weight: 400;
  color: black;
}
.woocommerce > .wc-login-form > .lost_password a:hover, .woocommerce > .wc-login-form > .lost_password a:focus, .woocommerce > .wc-login-form > .lost_password a:active {
  color: #228BA3;
}

.woocommerce-MyAccount-navigation {
  display: none;
}
.woocommerce-MyAccount-navigation > ul {
  list-style: none;
  border-radius: 0px;
}
.woocommerce-MyAccount-navigation > ul > li {
  border: none;
  background-color: transparent;
}
@media (min-width: 768px) {
  .woocommerce-MyAccount-navigation {
    display: block;
  }
}

.single-product .product {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 48rem) {
  .single-product .product {
    flex-direction: row;
  }
}
.single-product .product > .onsale {
  border-radius: 0px;
  top: 7px !important;
  left: auto !important;
  right: auto !important;
  padding: 5px 20px;
  height: auto;
  line-height: 1.5em;
  min-height: auto;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: red;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  display: none;
}
.single-product .product .woocommerce-product-gallery {
  flex: 0 1 25%;
}
.single-product .product .summary {
  width: 100%;
  flex: 0 1 75%;
}
.single-product .product .woocommerce-product-gallery__trigger {
  display: none;
}

.woocommerce div.product .images, .woocommerce-page div.product .images {
  pointer-events: none;
}

.woocommerce .shop-ordering {
  margin-bottom: 40px !important;
}
.woocommerce .shop-details {
  height: auto;
}
.woocommerce .shop-details > .summary.entry-summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.woocommerce .shop-details > .summary.entry-summary > .product_title entry-title {
  order: 0;
}
.woocommerce .shop-details > .summary.entry-summary > .product_meta {
  order: 1;
  margin-top: 12px;
}
.woocommerce .shop-details > .summary.entry-summary > .woocommerce-product-details__short-description {
  order: 2;
  margin-top: 20px;
}
.woocommerce .shop-details > .summary.entry-summary > .price {
  order: 3;
  color: black;
  margin-bottom: 39px;
  margin-top: 10px;
}
.woocommerce .shop-details > .summary.entry-summary > .price .woocommerce-Price-amount {
  margin-left: 10px;
  font-size: 30px;
  font-weight: 600;
}
.woocommerce .shop-details > .summary.entry-summary > .price del .woocommerce-Price-amount {
  margin-left: 10px;
  font-size: 30px;
  font-weight: 500;
}
.woocommerce .shop-details > .summary.entry-summary > .price del .woocommerce-Price-amount > bdi {
  font-size: 22px;
  font-weight: 300;
}
.woocommerce .shop-details > .summary.entry-summary > .cart {
  order: 4;
}
.woocommerce .shop-details > .summary.entry-summary > .product-tab {
  order: 5;
  width: 100%;
  margin-top: 50px;
}
.woocommerce .shop-details > .summary.entry-summary > .product-tab > .nav-tabs .nav-link {
  color: gray;
  font-weight: 400;
}
.woocommerce .shop-details > .summary.entry-summary > .product-tab > .nav-tabs .active {
  font-weight: 500;
  color: black;
}
.woocommerce .shop-details > .summary.entry-summary > .product-tab > .tab-content {
  padding: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
}
.woocommerce .shop-details form.cart {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0px;
}
@media (min-width: 48rem) {
  .woocommerce .shop-details form.cart {
    flex-direction: row;
    align-items: center;
  }
}
.woocommerce .shop-details form.cart > .quantity {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0px;
  margin-right: 0px !important;
  margin-bottom: 30px !important;
}
@media (min-width: 48rem) {
  .woocommerce .shop-details form.cart > .quantity {
    margin-right: 40px !important;
    margin-bottom: 0px !important;
  }
}
.woocommerce .shop-details form.cart > .quantity > .minus,
.woocommerce .shop-details form.cart > .quantity > .plus {
  background: black;
  color: white;
  padding: 14px 20px;
}
.woocommerce .shop-details form.cart > .quantity > .minus:hover, .woocommerce .shop-details form.cart > .quantity > .minus:active, .woocommerce .shop-details form.cart > .quantity > .minus:focus,
.woocommerce .shop-details form.cart > .quantity > .plus:hover,
.woocommerce .shop-details form.cart > .quantity > .plus:active,
.woocommerce .shop-details form.cart > .quantity > .plus:focus {
  background: rgba(0, 0, 0, 0.8);
}
.woocommerce .shop-details form.cart > .quantity > .minus {
  border-radius: 5px 0px 0px 5px;
}
.woocommerce .shop-details form.cart > .quantity > .plus {
  border-radius: 0px 5px 5px 0px;
}
.woocommerce .shop-details form.cart > .quantity > input {
  border-radius: 0px 0px 0px 0px;
  border: none;
  background-color: #f9f9f9;
}
.woocommerce .shop-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: column;
  border-top: solid 1px #d2d2d2 !important;
  padding-top: 40px !important;
}
@media (min-width: 36rem) {
  .woocommerce .shop-list {
    flex-direction: row;
  }
}
.woocommerce .shop-list > li.product {
  background: linear-gradient(to bottom, #f0f0f0, #fbfbfb);
  padding: 25px 0px 0px 0px !important;
  width: 100% !important;
  height: auto;
}
@media (min-width: 36rem) {
  .woocommerce .shop-list > li.product {
    width: calc(50% - 10px) !important;
  }
}
@media (min-width: 48rem) {
  .woocommerce .shop-list > li.product {
    width: calc(23% - 12px) !important;
  }
}
.woocommerce .shop-list > li.product > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.woocommerce .shop-list > li.product > a > .onsale {
  border-radius: 0px;
  top: 7px !important;
  left: auto !important;
  right: auto !important;
  padding: 5px 20px;
  height: auto;
  line-height: 1.5em;
  min-height: auto;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: red;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.woocommerce .shop-list > li.product > a > img {
  order: 0;
}
.woocommerce .shop-list > li.product > a > h2.woocommerce-loop-product__title {
  order: 2;
  font-size: 16px;
  font-weight: 400;
  color: black;
  padding: 0px;
  padding: 0.5em 28px 15px 28px !important;
  width: 100%;
  text-align: left;
  line-height: 1.3em;
  height: 65px;
  font-weight: 200;
}
.woocommerce .shop-list > li.product > a > span.price {
  order: 1;
  width: 100%;
  margin: 0px !important;
  padding: 10px 28px 0px 28px;
}
.woocommerce .shop-list > li.product > a > span.price bdi {
  font-size: 21px;
  font-weight: 400;
  color: black;
}
.woocommerce .shop-list > li.product > a > span.price > span.price-integer > del {
  text-decoration: none;
  opacity: 1;
}
.woocommerce .shop-list > li.product > a > span.price .line-through {
  text-decoration: line-through;
}
.woocommerce .shop-list > li.product > a > span.price .line-through bdi {
  text-decoration: line-through;
}
.woocommerce .shop-list > li.product > a span.price-decimal {
  top: -0.5em;
  font-size: 12px;
  position: relative;
  color: black;
  margin-left: -3px;
}
.woocommerce .shop-list > li.product > a span.currency {
  color: black;
}
.woocommerce .shop-list > li.product > a div.sales-price {
  display: block;
}
.woocommerce .shop-list > li.product > a div.sales-price > span.sales-price-integer {
  color: gray;
  font-size: 16px;
}
.woocommerce .shop-list > li.product > a div.sales-price > span.sales-price-integer bdi {
  text-decoration: none;
  font-size: 18px;
  color: green;
}
.woocommerce .shop-list > li.product > a div.sales-price > span.sales-price-integer > del {
  text-decoration: none;
  opacity: 1;
}

.woocommerce-cart .woocommerce-cart-form > table.shop_table {
  border: none;
  margin-bottom: 50px;
}
.woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0px;
  margin-right: 0px !important;
  margin-bottom: 30px !important;
}
@media (min-width: 48rem) {
  .woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity {
    margin-right: 40px !important;
    margin-bottom: 0px !important;
  }
}
.woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity > .minus,
.woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity > .plus {
  background: black;
  color: white;
  padding: 14px 20px;
  max-width: 45px;
}
.woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity > .minus:hover, .woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity > .minus:active, .woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity > .minus:focus,
.woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity > .plus:hover,
.woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity > .plus:active,
.woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity > .plus:focus {
  background: rgba(0, 0, 0, 0.8);
}
.woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity > .minus {
  border-radius: 5px 0px 0px 5px;
}
.woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity > .plus {
  border-radius: 0px 5px 5px 0px;
}
.woocommerce-cart .woocommerce-cart-form > table.shop_table .quantity > input {
  border-radius: 0px 0px 0px 0px;
  border: none;
  background-color: #f9f9f9;
}
.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout > a.btn-checkout {
  color: white !important;
  text-decoration: none;
}

.woocommerce-checkout #customer_details {
  margin-bottom: 50px;
}
.woocommerce-checkout .wc_payment_methods {
  padding: 30px;
}

.reserved-area__block ul {
  margin: 0px;
  padding: 0px !important;
}
.reserved-area__block ul > li {
  background-color: transparent;
  border-bottom: solid 1px #e0e0e0 !important;
  color: black;
}
.reserved-area__block ul > li > a {
  color: black;
  font-weight: 500;
}
.reserved-area__block ul > li > a:hover, .reserved-area__block ul > li > a:focus, .reserved-area__block ul > li > a:active {
  color: #228BA3;
}
.reserved-area .modal-content {
  background-color: black;
  border: var(--bs-modal-border-width) solid rgba(255, 255, 255, 0.15);
}
.reserved-area .modal-content > .modal-header > .modal-title {
  color: white;
}
.reserved-area .modal-content > .modal-body {
  margin: 0px auto;
}
.reserved-area .disable-download {
  pointer-events: none;
}

.events .col img.alignright {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
  width: 50%;
}
@media (min-width: 36rem) {
  .events .col img.alignright {
    width: auto;
  }
}
.events .col img.alignleft {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  width: 50%;
}
@media (min-width: 36rem) {
  .events .col img.alignleft {
    width: auto;
  }
}
.events .col img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  width: 100% !important;
  max-width: 100%;
}
@media (min-width: 36rem) {
  .events .col img.aligncenter {
    width: auto;
  }
}

.events-archive .events-flex {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 79px 80px;
  grid-gap: 79px 80px;
}
@media (min-width: 48rem) {
  .events-archive .events-flex {
    grid-template-columns: repeat(2, 1fr);
    gap: 79px 80px;
    grid-gap: 79px 80px;
  }
}
@media (min-width: 75rem) {
  .events-archive .events-flex {
    grid-template-columns: repeat(3, 1fr);
    gap: 79px 80px;
    grid-gap: 79px 80px;
  }
}
.events-archive__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  width: -moz-fit-content;
  width: fit-content;
}
.events-archive__items--date {
  color: white;
  width: 60px;
  min-width: 60px;
  height: 60px;
  padding: 6px;
  text-align: center;
  background: linear-gradient(315deg, #000000 0%, #2a2a2a 100%);
}
.events-archive__items--date > span {
  display: block;
}
.events-archive__items--date > span:first-child {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  color: white;
}
.events-archive__items--date > span:last-child {
  font-weight: 600;
  font-size: 9px;
  line-height: 11px;
  text-align: center;
  text-transform: uppercase;
  color: white;
}
.events-archive__items--info {
  border-left: solid 1px black;
  padding-left: 25px;
}
.events-archive__items--info .location {
  position: relative;
  padding-left: 35px;
}
.events-archive__items--info .location:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #848484;
  -webkit-mask: url(/wp-content/themes/lumina/assets/img/icon-location.svg) no-repeat center;
  mask: url(/wp-content/themes/lumina/assets/img/icon-location.svg) no-repeat center;
}

.search-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 999;
}

.searchbar {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 9999;
}
.searchbar__contents {
  position: absolute;
  width: 100%;
  max-width: 350px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.searchbar__contents > form {
  display: flex;
  justify-content: center;
  align-items: center;
}
.searchbar__contents > form > input {
  color: black;
  background-color: white;
  border-radius: 0px;
  padding: 10px 20px;
  border: 0px;
}
.searchbar__contents > form > input:hover, .searchbar__contents > form > input:focus {
  color: black;
  background-color: white;
  border-radius: 0px;
  padding: 10px 20px;
  border: 0px;
}
.searchbar__contents > form > .search-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  padding: 22px;
  background-color: white;
}
.searchbar__contents > form > .close-search {
  position: relative;
  width: 24px;
  height: 20px;
  margin-top: -84px;
  margin-left: -20px;
  cursor: pointer;
}
.searchbar__contents > form > .close-search > span {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  margin-bottom: 5px;
  top: 9px;
  right: 0px;
}
.searchbar__contents > form > .close-search > span:nth-child(1) {
  transform: rotate(45deg);
}
.searchbar__contents > form > .close-search > span:nth-child(2) {
  transform: rotate(-45deg);
}

.search-list > li a {
  border-top: none;
  border-left: none;
  border-right: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.search-list > li a > span {
  display: block;
}
