:root {
  --primary: #14b2ca;
  --active: #0093aa;
  --secondary: #0e234b;
  --tertiary: #646999;
  --accent: #ca0000;
  --danger: #dc3545;
  --text: #000000;
  --text-secondary: #808080;
  --text-inverse: #ffffff;
  --background: #ffffff;
  --background-secondary: #d3d3d3;
  --background-tertiary: #f5f5f5;
  --background-inverse: #000000;
}

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

body {
  position: relative;
  margin: 0px;
  padding: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--background);
  color: var(--text);
}
body > * {
  width: 100%;
  height: 100%;
}

.header {
  background-color: var(--background);
}
.header img {
  height: 100%;
}
.header a {
  color: var(--text);
}
.header .icon {
  padding: 0px 8px;
  height: 32px;
}
.header .icon:hover img {
  filter: brightness(0) saturate(100%) invert(77%) sepia(67%) saturate(4606%) hue-rotate(143deg) brightness(91%) contrast(84%);
}
.header .cart {
  position: relative;
}
.header .cart span {
  position: absolute;
  top: -4px;
  right: 22px;
  background-color: var(--accent);
  color: var(--text-inverse);
  border-radius: 10px;
  padding: 2px 4px;
  font-size: small;
}
.header .cart-value {
  position: relative;
  font-size: 12px;
}
.header .cart-value:before, .header .cart-value:after {
  content: "";
  position: absolute;
  padding: 0px 15px;
  top: -5px;
  left: -5px;
  right: -5px;
  height: 1px;
  background-color: var(--background-inverse);
}
.header .cart-value:after {
  top: unset;
  bottom: -4px;
}
.header .language-selector {
  height: 22px;
  align-self: end;
  z-index: 20;
}
.header .language-selector form {
  display: contents;
}
.header .language-selector img {
  height: 22px;
  width: 22px;
}
.header .language-selector img:not(.active):not(.arrow) {
  opacity: 0.5;
}
.header .language-selector .dropdown {
  position: relative;
  width: 22px;
  height: 16px;
  display: inline;
}
.header .language-selector .dropdown .dropdown-content {
  position: absolute;
  display: none;
  top: 100%;
  right: 0px;
  background-color: var(--background);
  border-radius: 5px;
}
.header .language-selector .dropdown .dropdown-content div {
  display: flex;
  padding: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 8vh;
  border: 1px solid var(--background-inverse);
  border-radius: 5px;
}
.header .language-selector .dropdown .arrow {
  transform: rotate(0deg);
}
.header .language-selector .dropdown:hover .dropdown-content {
  display: block;
}
.header .language-selector .dropdown:hover .arrow {
  transform: rotate(90deg);
}

#subheader {
  padding: 0px 20px;
  height: 2.5em;
  display: flex;
  justify-content: end;
  gap: 20px;
}
#subheader > a,
#subheader > span {
  margin-top: 22px;
  font-size: 14px;
}

#header {
  height: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0px 0px 0px;
  gap: 2px;
  position: sticky;
  top: -1px;
  z-index: 10;
}
#header > :first-child {
  align-self: flex-end;
}
#header::after {
  content: "";
  box-shadow: 0 7px 10px -6px var(--background-inverse);
  position: absolute;
  top: 98%;
  left: 0;
  right: 0;
  height: 16px;
  background-color: var(--background);
  pointer-events: none;
  z-index: -1;
}
#header > *:not(.icon) {
  padding: 0px 15px;
}
#header .cart-value {
  padding: 0px;
  margin-left: 15px;
}
#header .logo {
  max-height: 60px;
  bottom: 0px;
  height: 60px;
  transition: max-height 0.05s linear;
  display: none;
}
@media (min-width: 1600px) {
  #header .logo {
    justify-self: flex-start;
    position: absolute;
    left: 50px;
    padding-left: 2vw;
  }
}
@media (min-width: 1200px) {
  #header .logo {
    margin-right: 4rem;
  }
}
@media (min-width: 900px) {
  #header .logo {
    display: block;
  }
}
@media (min-width: 1200px) {
  #header:not(.is-pinned) .logo {
    max-height: 90px;
    height: 90px;
  }
}
#header .menuitem {
  text-transform: uppercase;
  font-weight: bold;
}
#header .menuitem:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--primary);
}
@media (min-width: 1200px) {
  #header .search-icon {
    display: none;
  }
}
#header .search {
  display: none;
  padding: 0px !important;
}
@media (min-width: 1200px) {
  #header .search {
    display: unset;
  }
}
#header .search .search-popup {
  right: -4vh;
  left: unset;
  width: 50vh;
}
#header .search .suggestion-container {
  margin-bottom: 4vh;
}
#header .search .suggestion-container > div {
  display: flex;
  align-items: center;
}
#header .search .suggestion-container > div img {
  height: 6vh;
  width: 6vh;
  margin-right: 5px;
  object-fit: contain;
}
#header .search .suggestion-container > div h5 {
  margin: 4px 0px;
}
#header .dropdown:hover:not(.cart-message-box):not(.js) .dropdown-container, #header .dropdown.open:not(.js) .dropdown-container {
  display: block;
}
#header .dropdown .arrow {
  width: 25px;
  vertical-align: bottom;
}
#header .dropdown:hover > a .arrow {
  transform: rotate(90deg);
}
#header .dropdown .dropbtn {
  display: flex;
  align-items: center;
}
#header .dropdown .dropdown-container {
  position: absolute;
  display: none;
  z-index: -1;
  top: 85%;
  pointer-events: none;
}
#header .dropdown .dropdown-container .dropdown-content {
  width: fit-content;
  background-color: var(--background);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 2vh;
  text-transform: none;
  font-weight: normal;
  margin: auto;
  box-shadow: 0 7px 10px -6px var(--background-inverse);
  pointer-events: auto;
}
#header .dropdown .dropdown-container .dropdown-content h3 {
  text-transform: uppercase;
  font-weight: bold;
}
#header .dropdown .dropdown-container .dropdown-content .category-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
#header .dropdown .dropdown-container .dropdown-content .category-container .image {
  transition: 100ms ease;
  width: 18vh;
  height: 14vh;
  border-radius: 5px;
  overflow: hidden;
}
#header .dropdown .dropdown-container .dropdown-content .category-container .image img {
  width: 100%;
  object-fit: cover;
}
#header .dropdown .dropdown-container .dropdown-content .category-container .image:hover {
  transform: scale(1.05);
}
#header .dropdown .dropdown-container .dropdown-content .category-container a {
  position: block;
}
#header .dropdown .dropdown-container .dropdown-content .category-container a div {
  position: relative;
}
#header .dropdown .dropdown-container .dropdown-content .category-container span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--text-inverse);
  font-size: medium;
  font-weight: bolder;
  margin: 0;
  padding: 10px 0px;
  background-color: rgba(0, 0, 0, 0.4588235294);
}
#header .dropdown p img {
  transform: rotate(270deg);
}
#header .product-dropdown .dropdown-container {
  left: 0px;
  right: 0px;
}
#header .product-dropdown .dropdown-container .dropdown-content {
  left: 20px;
  right: 20px;
}
#header .center-dropdown {
  position: relative;
}
#header .center-dropdown .dropdown-container {
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  width: max-content;
}
#header .center-dropdown input {
  margin-top: 12px;
  width: 100%;
  padding: 22px;
  box-sizing: border-box;
}
#header .center-dropdown .buttons {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: space-between;
}

#mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--background);
  color: var(--text);
  position: relative;
}
#mobile-header .logo {
  height: 40px;
  width: 100%;
}
#mobile-header .burger-menu {
  cursor: pointer;
  width: 30px;
}
#mobile-header .burger-menu img {
  width: 30px;
}
#mobile-header ul {
  list-style: none;
  padding: 0;
}
#mobile-header #menu-toggle {
  display: none;
}
#mobile-header .mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--background);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  transform: translateX(-100%);
  transition: transform 300ms ease-in-out;
  z-index: 30;
  padding: 15px;
}
#mobile-header .mobile-nav li {
  padding: 15px;
}
#mobile-header .mobile-nav li .icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
#mobile-header .mobile-nav .close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
#mobile-header .mobile-nav .close-menu img {
  height: 24px;
}
#mobile-header #menu-toggle:checked ~ .mobile-nav {
  transform: translateX(0);
}

body:has(#mobile-header #menu-toggle:checked) {
  overflow: hidden;
}

@media (max-width: 800px) {
  #header,
  #subheader {
    display: none;
  }
}
@media (min-width: 800px) {
  #mobile-header {
    display: none;
  }
}
.main {
  position: relative;
  margin: 0px auto auto auto;
  max-width: 2600px;
}
@media (min-width: 800px) {
  .main {
    margin-top: 14px;
  }
}
.main a {
  color: var(--primary);
}
.main .icon {
  object-fit: contain;
  width: 32px;
  height: 32px;
}
.main .icon.large {
  width: 48px;
  height: 48px;
}
.main .icon.x-large {
  width: 80px;
  height: 80px;
}
.main .icon.slim {
  height: 16px;
}

.footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  background-color: var(--secondary);
  color: var(--text-inverse);
  height: 100%;
  padding: 30px;
  padding-bottom: 60px;
  margin-top: 50px;
}
@media (min-width: 1200px) {
  .footer {
    flex-direction: row;
  }
  .footer .vr {
    display: unset;
  }
}
.footer .companies {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 30px;
}
.footer .companies span {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 30px;
  color: var(--tertiary);
  align-self: center;
}
.footer .company-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer .company-container hr {
  width: 100%;
}
.footer .company-container img {
  width: 150px;
}
.footer > .vr {
  border-right-width: 2px;
  border-color: var(--tertiary);
}
.footer .company-text {
  max-width: 600px;
}
.footer .socials {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: end;
  gap: 5px;
  width: 100%;
}
.footer .socials a:first-child {
  margin-right: auto;
}
.footer .socials img {
  height: 24px;
  width: 100%;
}
.footer .payment-options {
  padding-bottom: 20px;
}
.footer .payment-options img {
  height: 20px;
}

hr {
  border-bottom: none;
}

.vr {
  border-right: 1px solid var(--text-secondary);
  align-self: normal;
  display: inline;
}

.btn {
  font-weight: bold;
  text-align: center;
  padding: 6px 10px;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  width: max-content;
  user-select: none;
}
.btn:disabled {
  opacity: 30%;
}
.btn.fixed-w {
  min-width: 200px;
}
.btn.flag {
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
}
.btn.tall {
  height: 50px;
}

div.btn {
  display: inline-block;
}

.btn-primary,
.btn-outline-primary {
  border-color: var(--primary);
}
.btn-primary:hover,
.btn-outline-primary:hover {
  border-color: var(--active);
}
.btn-primary.btn-primary,
.btn-outline-primary.btn-primary {
  color: var(--text-inverse);
  background-color: var(--primary);
}
.btn-primary.btn-primary:hover,
.btn-outline-primary.btn-primary:hover {
  background-color: var(--active);
}
.btn-primary.btn-outline-primary,
.btn-outline-primary.btn-outline-primary {
  color: var(--primary) !important;
  background-color: var(--background);
}

.btn-secondary,
.btn-outline-secondary {
  border-color: var(--text);
}
.btn-secondary:hover,
.btn-outline-secondary:hover {
  border-color: rgb(65, 65, 65);
}
.btn-secondary.btn-secondary,
.btn-outline-secondary.btn-secondary {
  color: var(--text-inverse);
  background-color: var(--background-inverse);
}
.btn-secondary.btn-secondary:hover,
.btn-outline-secondary.btn-secondary:hover {
  background-color: rgb(65, 65, 65);
}
.btn-secondary.btn-outline-secondary,
.btn-outline-secondary.btn-outline-secondary {
  color: var(--text);
  background-color: var(--background);
}

.btn-primary,
.btn-primary a,
.btn-secondary,
.btn-secondary a {
  color: var(--text-inverse) !important;
}

.btn-outline-primary,
.btn-outline-primary a {
  color: var(--primary) !important;
}

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

.svg-gray {
  filter: invert(40%) sepia(34%) saturate(491%) hue-rotate(197deg) brightness(96%) contrast(91%);
}

.full-img-container {
  position: relative;
  max-height: 80vh;
}
.full-img-container > div {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 50px;
  margin-left: 2vw;
  max-width: 600px;
  max-height: 600px;
  color: var(--text-inverse);
}
@media (min-width: 1200px) {
  .full-img-container > div {
    top: 100px;
  }
}
.full-img-container a {
  margin-top: 2vh;
}
@media (min-width: 1200px) {
  .full-img-container a {
    margin-top: 6vh;
  }
}
@media (max-width: 800px) {
  .full-img-container p {
    display: none;
  }
}
.full-img-container img {
  width: 100%;
  object-fit: cover;
}

.image-stack {
  display: flex;
  row-gap: 10px;
  flex-wrap: wrap;
  padding: 5px 0px;
  width: 100%;
}
.image-stack .image {
  position: relative;
  max-height: 530px;
  overflow: hidden;
}
.image-stack .image > div {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 30px;
}
.image-stack .image > div h3 {
  font-weight: bold;
  color: var(--text-inverse);
  text-shadow: 3px 3px 10px var(--background-inverse);
  opacity: 0.85;
  text-transform: uppercase;
}
.image-stack .image img {
  height: 100%;
  filter: brightness(85%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-stack .text > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.image-stack.left .text > div {
  margin-right: 2rem;
}
.image-stack.right .text > div {
  margin-left: 2rem;
}
@media (min-width: 800px) {
  .image-stack {
    flex-wrap: nowrap;
  }
  .image-stack > :first-child {
    padding-right: 5px;
  }
  .image-stack > :nth-child(2) {
    padding-left: 5px;
  }
  .image-stack.left div:first-child {
    flex: 0 0 45%;
  }
  .image-stack.left div:nth-child(2) {
    flex: 0 0 55%;
  }
  .image-stack.right div:first-child {
    flex: 0 0 55%;
  }
  .image-stack.right div:nth-child(2) {
    flex: 0 0 45%;
  }
}
@media (min-width: 1900px) {
  .image-stack.left .text > div {
    margin-left: 200px;
  }
  .image-stack.right .text > div {
    margin-right: 200px;
  }
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  text-align: center;
  width: 100%;
}
.section.margin {
  margin: 6vh auto;
}
.section.slim {
  max-width: 900px;
}
.section > h3 {
  margin: 10px 0;
}
.section.background-secondary {
  padding: 50px;
}

.content {
  max-width: 1200px;
}
.content.full {
  width: 100%;
  max-width: unset;
  padding: 20px;
}
.content.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.product-category-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 900px) {
  .product-category-container {
    align-items: normal;
    flex-direction: row;
  }
}
.product-category-container .category-container {
  width: 100%;
  max-width: 220px;
}
.product-category-container .selection-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 900px) {
  .product-category-container .selection-panel {
    justify-content: normal;
    flex-wrap: nowrap;
  }
}
.product-category-container .main-container {
  width: 100%;
}
.product-category-container .main-container:has(#filter-button:not(:checked)) .filter-container {
  display: none;
}
.product-category-container .main-container .filter-container .filter-items {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}
.product-category-container .main-container .filter-container .filter-items .filter-item {
  width: max-content;
}
.product-category-container .main-container .filter-container .filter-items .filter-item ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
@media (min-width: 800px) {
  .product-category-container .main-container .filter-container .filter-items {
    justify-content: normal;
  }
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  text-align: left;
}
.product-container .product {
  width: 280px;
  min-height: 500px;
  position: relative;
}
.product-container .product .main-content {
  height: 384px;
  display: flex;
  flex-direction: column;
}
.product-container .product .expander {
  padding: 18px 0px 12px 0px;
  width: 100%;
}
.product-container .product .product-img {
  width: 220px;
  height: 220px;
  display: block;
  object-fit: cover;
  align-self: center;
  text-align: center;
  line-height: 220px;
  margin: 0px auto 0px auto;
}
.product-container .product .icons {
  margin-bottom: 2px;
  height: 25px;
  min-height: 25px;
}
.product-container .product .icons img {
  height: 25px;
}
.product-container .product h5 {
  margin: 5px 0px 14px 0px;
}
.product-container .product .icon {
  width: 30px;
  display: inline;
}
.product-container .product.hoverable {
  width: 280px;
  height: 400px;
}
.product-container .product.hoverable .product-content {
  max-height: 400px;
  overflow: hidden;
  transition: scale 300ms ease;
  transition: max-height 5ms ease;
  position: relative;
  padding: 16px 24px;
  position: relative;
  background-color: var(--background);
}
.product-container .product.hoverable .product-content .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-container .product.hoverable .product-content:hover {
  transform: scale(1.05);
  z-index: 1;
  max-height: 600px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.product-container .product.hoverable .product-content:hover .expander {
  display: unset;
}
.product-container .product.hoverable .product-content:not(:hover) {
  height: 400px;
}
.product-container .product.hoverable .hover-buffer {
  content: "";
  position: absolute;
  max-width: 100vw;
}
@media (min-width: 800px) {
  .product-container .product.hoverable .hover-buffer {
    top: -100px;
    bottom: -100px;
    left: -100px;
    right: -100px;
    z-index: 2;
  }
}
.product-container .product:not(.hoverable) {
  padding: 16px 24px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.product-container .product.selectable .product-content {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.product-container .product.selectable:has(input:checked) .product-content {
  opacity: 1;
}
.product-container .product.selectable:has(input:checked) .on-disabled {
  display: none;
}
.product-container .actions div {
  border: 4px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: #e10000;
}
.product-container .actions:has(input[type=checkbox]) div {
  height: 35px;
  width: 35px;
  border-radius: 5px;
}
.product-container .actions:has(input[type=radio]) div {
  height: 38px;
  width: 38px;
  border-radius: 50%;
}
.product-container .actions:has(input:checked) div {
  border-color: #38c638;
}
.product-container .actions input {
  opacity: 0;
  position: absolute;
}
.product-container .actions .icon {
  width: 20px;
}
.product-container .product.selectable:not(:has(input:checked)) .on-enabled {
  display: none;
}

.text-faint {
  color: var(--text-secondary) !important;
}

.text-large {
  font-size: large;
}

.text-larger {
  font-size: larger;
}

.text-x-large {
  font-size: x-large;
}

.text-small {
  font-size: small;
}

.text-tiny {
  font-size: x-small;
  color: var(--text-secondary);
  margin-top: 5px;
}

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

.line-through {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  color: var(--text-secondary);
}

input[type=text],
input[type=number],
input[type=password],
input[type=email],
input[type=date],
textarea {
  border: none;
  outline: 1px var(--background-inverse) solid;
  display: block;
}
input[type=text].dark,
input[type=number].dark,
input[type=password].dark,
input[type=email].dark,
input[type=date].dark,
textarea.dark {
  background-color: var(--background-secondary);
  outline: none;
}

input[type=text],
input[type=number],
input[type=password],
input[type=email] {
  padding: 19px;
  height: 16px;
}

input[type=checkbox],
input[type=radio] {
  accent-color: var(--primary);
}

input[type=date] {
  padding: 10px;
  height: 38px;
}

.arrow {
  transition: transform 0.04s linear;
}

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.carousel .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel .carousel-slide {
  min-width: 100%;
  transition: opacity 0.5s;
}
.carousel .carousel-slide img {
  width: 100%;
  display: block;
}
.carousel .buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.carousel .buttons button {
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-inverse);
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  pointer-events: all;
  display: flex;
}
.carousel .buttons button:hover {
  background: var(--background-inverse);
}
.carousel .buttons .arrow {
  width: 30px;
}
.carousel .buttons .prev img {
  transform: rotate(90deg);
}
.carousel .buttons .next img {
  transform: rotate(270deg);
}
.carousel .indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.carousel .indicators .indicator {
  width: 20px;
  height: 5px;
  background: var(--text-secondary);
  cursor: pointer;
  transition: background 0.3s;
}
.carousel .indicators .indicator.active {
  background: var(--primary);
}
@media (min-width: 800px) {
  .carousel .indicators .indicator {
    width: 80px;
  }
}

.color-primary {
  color: var(--primary) !important;
}

.color-text,
.color-text * {
  color: var(--text) !important;
}

.color-text-inverse {
  color: var(--text-inverse);
}

.color-danger,
.color-danger * {
  color: var(--danger) !important;
}

.border-danger {
  border-color: var(--danger) !important;
}

.text-upper {
  text-transform: uppercase;
}

.bold {
  font-weight: bold;
}

.hover-underline:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--primary);
}

h1, h2 {
  margin-top: 10px;
  font-size: 30px;
}
@media (min-width: 600px) {
  h1, h2 {
    font-size: 40px;
  }
}
@media (min-width: 800px) {
  h1, h2 {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  h1, h2 {
    font-size: 60px;
  }
}

h3 {
  font-size: 20px;
}
@media (min-width: 400px) {
  h3 {
    font-size: 30px;
  }
}
@media (min-width: 600px) {
  h3 {
    font-size: 40px;
  }
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 18px;
}

ul {
  list-style-type: disc;
  padding-left: 22px;
}
ul.unstyled {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

li {
  margin-bottom: 3px;
}
li.active {
  font-weight: bold;
}
.hover-underline-li li:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--primary);
}
.underline-li li {
  position: relative;
  min-width: max-content;
}
.underline-li li:not(:last-child) {
  margin-bottom: 12px;
}
.underline-li li:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: var(--background);
}
.underline-li.black li:after {
  background-color: var(--background-inverse);
}

.d-none {
  display: none;
}

.d-content {
  display: contents;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
  gap: 10px;
}
.d-flex.gap-0 {
  gap: 0px;
}
.d-flex.wrap {
  flex-wrap: wrap;
}
.d-flex.column {
  flex-direction: column;
}
.d-flex.align-items-end {
  align-items: end;
}
.d-flex.gap-tiny {
  gap: 5px;
}
.d-flex.gap-medium {
  gap: 15px;
}
@media (max-width: 800px) {
  .d-flex.responsive-justify-content-center {
    justify-content: center;
  }
  .d-flex.responsive-justify-content-end {
    justify-content: end;
  }
}
@media (min-width: 900px) {
  .d-flex.gap-1 {
    gap: 30px;
  }
  .d-flex.gap-2 {
    gap: 100px;
  }
  .d-flex.gap-3 {
    gap: 200px;
  }
}
.d-flex.center-v {
  align-items: center;
}
.d-flex.center-v * {
  display: inline-block;
}
.d-flex.direction-auto {
  flex-direction: column;
}
@media (min-width: 900px) {
  .d-flex.direction-auto {
    flex-direction: row;
  }
}
.d-flex .flex-3 {
  flex: 2.7;
}
.d-flex .flex-1 {
  flex: 1.3;
}

.justify-items-center {
  justify-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: end;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-space-between {
  justify-content: space-between;
}

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

.arrow {
  width: 30px;
}
.arrow.left {
  transform: rotate(90deg);
}
.arrow.right {
  transform: rotate(270deg);
}
.arrow.up {
  transform: rotate(180deg);
}

.checked-bold:has(input:checked) {
  font-weight: bold;
}

.range-slider {
  /* Remove Arrows/Spinners */
}
.range-slider input::-webkit-outer-spin-button,
.range-slider input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.range-slider input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}
.range-slider .price-input input {
  width: 55px;
  height: 26px;
  padding: 10px;
  text-align: right;
  display: inline;
}
.range-slider .slider {
  height: 5px;
  position: relative;
  background: var(--background-secondary);
  border-radius: 5px;
  min-width: 150px;
}
.range-slider .slider .progress {
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 5px;
  background: var(--text-secondary);
  filter: brightness(85%);
}
.range-slider .range-input {
  position: relative;
}
.range-slider .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  margin: 0;
  padding: 0;
  top: -5px;
  background: none;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-slider .range-input input[type=range]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--text-secondary);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.range-slider .range-input input[type=range]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border: none;
  border-radius: 50%;
  background: var(--text-secondary);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); /* Allow dynamic column generation */
  gap: 10px; /* Space between grid items */
}
.radio-group.grid-3 {
  grid-template-rows: repeat(3, auto); /* Max 3 rows */
  grid-auto-flow: column; /* Allow items to flow into new columns once rows are filled */
}
.radio-group label {
  width: max-content;
  display: flex;
  gap: 6px;
}
.radio-group input {
  accent-color: var(--text);
  height: 16px;
  width: 16px;
  vertical-align: middle;
  margin: 0px;
}

.color-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(24px, 1fr)); /* Allow dynamic column generation */
  grid-template-rows: repeat(2, auto); /* Max 3 rows */
  gap: 16px; /* Space between grid items */
  grid-auto-flow: column; /* Allow items to flow into new columns once rows are filled */
}
.color-picker input[type=radio],
.color-picker input[type=checkbox] {
  display: none;
}
.color-picker input[type=radio]:checked + label span,
.color-picker input[type=checkbox]:checked + label span {
  outline: 1px solid var(--background-inverse);
}
.color-picker label {
  display: inline-block;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.color-picker label span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 0.2s ease-in-out;
  outline-offset: 3px;
}

.main .dropdown {
  position: relative;
}
.main .dropdown .dropbtn {
  width: inherit;
  position: relative;
  padding: 6px 10px;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  background-color: var(--background);
  display: block;
  min-width: 200px;
}
.main .dropdown .dropbtn .icon {
  position: absolute;
  top: 0;
  right: 6px;
  width: 30px;
}
.main .dropdown:hover .dropbtn {
  z-index: 5;
}
.main .dropdown .dropdown-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  background-color: var(--background);
  padding: 12px 8px;
  padding-top: 30px;
  border: 1px solid var(--background-inverse);
  z-index: 4;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.main .dropdown .dropdown-content div {
  max-height: 400px;
  overflow-y: scroll;
}
.main .dropdown:not(:hover) .dropdown-content {
  display: none;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
}

.widgets {
  position: fixed;
  right: 0;
  top: 70%;
  z-index: 3;
}
.widgets .widget {
  width: auto;
  display: inline-flex;
  justify-content: flex-end;
}
.widgets .widget > * {
  background-color: var(--background-secondary);
}
.widgets .widget .start {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  align-items: center;
  padding: 10px;
  padding-right: 0px;
}
.widgets .widget .middle {
  width: 0;
  transition: 0.3s all ease;
}
.widgets .widget .middle .dynamic {
  overflow: hidden;
  white-space: nowrap;
  z-index: 2;
  height: 100%;
  padding: 10px;
}
.widgets .widget .end {
  padding: 10px;
  padding-left: 0px;
}
.widgets .widget .arrow {
  transform: rotate(90deg);
}
.widgets .widget:has(input:checked) .middle {
  width: 100%;
}
.widgets .widget:has(input:checked) .arrow {
  transform: rotate(270deg);
}

.tab-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 800px) {
  html.js .tab-container {
    min-height: 300px;
  }
}
.tab-container .nav {
  display: flex;
  gap: 20px;
}
html.no-js .tab-container .nav {
  display: none;
}
@media (max-width: 800px) {
  .tab-container .nav {
    display: none;
  }
}
.tab-container .nav > * {
  line-height: 34px;
  cursor: pointer;
  position: relative;
}
.tab-container .nav > *.active {
  -webkit-text-stroke-width: 0.05ex;
  text-decoration: underline;
  text-underline-offset: 12px;
  text-decoration-thickness: 2px;
}
.tab-container .nav > *:not(:last-child)::after {
  content: "";
  right: -10px;
  top: 0;
  bottom: 0;
  position: absolute;
  border-right: 1px solid var(--background-secondary);
  align-self: normal;
}
.tab-container .tab input[type=checkbox] {
  display: none;
}
.tab-container .tab label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--background-tertiary);
}
@media (min-width: 800px) {
  html.js .tab-container .tab label {
    display: none;
  }
}
.tab-container .tab input[type=checkbox]:checked ~ label .arrow {
  transform: rotate(90deg);
}
.tab-container .tab .tabcontent {
  padding: 10px;
  background: var(--background);
}
html.no-js .tab-container .tab input[type=checkbox]:not(:checked) ~ .tabcontent {
  display: none;
}
@media (max-width: 800px) {
  .tab-container .tab input[type=checkbox]:not(:checked) ~ .tabcontent {
    display: none;
  }
}
@media (min-width: 800px) {
  html.js .tab-container .tab:not(.active) {
    display: none;
  }
}

.full-product {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.full-product .product-img {
  width: 500px;
  height: 500px;
  object-fit: contain;
  max-width: 100%;
}
.full-product > div {
  position: relative;
}
.full-product > :first-child {
  max-width: 500px;
}
.full-product > :nth-child(2) {
  max-width: 350px;
}
.full-product select {
  width: 100%;
}
.full-product table {
  width: 100%;
}
.full-product table td {
  padding: 4px 0px;
}
@media (min-width: 1200px) {
  .full-product {
    flex-direction: row;
  }
}
@media (min-width: 1600px) {
  .full-product {
    gap: 150px;
  }
}
.full-product .price :first-child {
  font-size: x-large;
}
.full-product .price :nth-child(2) {
  font-size: larger;
  text-decoration-thickness: 2px;
}

.badges {
  position: absolute;
  top: 0px;
  left: 0px;
}
.badges p {
  background-color: var(--secondary);
  margin: 10px 0px;
  padding: 4px 8px 4px 6px;
  width: fit-content;
  color: var(--text-inverse);
  font-weight: bold;
  font-size: small;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.badges p.red {
  background-color: var(--accent);
}

.actions {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 5;
}

.picture-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.picture-options img {
  height: 40px;
  width: 40px;
  border: 1px solid var(--background-inverse);
  object-fit: contain;
}
.picture-options img.active {
  transform: scale(1.05);
}
.picture-options.big img {
  height: 80px;
  width: 80px;
}
.picture-options .overflow span {
  width: 40px;
  font-size: xx-large;
  text-align: center;
  color: var(--text-secondary);
}
.picture-options button {
  background: none;
  padding: 0px;
  margin: 0px;
  border: none;
  display: contents;
  cursor: pointer;
}

.price {
  white-space: nowrap;
}
.price :first-child {
  font-weight: bold;
  margin-right: 5px;
}
.price :nth-child(2) {
  font-size: small;
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  color: var(--text-secondary);
}

.spinner {
  border: 1px solid var(--background-secondary);
  border-radius: 10px;
  display: flex;
  width: max-content;
}
.spinner button {
  padding: 6px 12px;
}
html.no-js .spinner button {
  display: none;
}
.spinner input {
  width: 62px;
  text-align: center;
  padding: 7px;
  font-size: medium;
  height: auto;
}
html.js .spinner input {
  /* Remove Arrows/Spinners */
}
html.js .spinner input::-webkit-outer-spin-button, html.js .spinner input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html.js .spinner input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

select {
  padding: 6px;
  border: 1px solid var(--background-inverse);
  outline: none;
  background-color: var(--background);
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="6 6 12 12"><path d="M12,15a1,1,0,0,1-.707-.293l-4-4A1,1,0,1,1,8.707,9.293L12,12.586l3.293-3.293a1,1,0,0,1,1.414,1.414l-4,4A1,1,0,0,1,12,15Z" fill="%2314b2ca"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 1.2rem auto;
  padding-right: 36px;
}

.rounded {
  border-radius: 10px;
}

html.no-js .with-js {
  display: none;
}

html.js .without-js {
  display: none;
}

.text-circle {
  border: 1px solid var(--primary);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  line-height: 19px;
  display: inline-block;
  text-align: center;
}

.search {
  position: relative;
  border-radius: 10px;
  background-color: var(--background-secondary);
  max-width: 400px;
}
.search .inline-button {
  position: absolute;
  top: 0px;
  height: 100%;
  background-color: unset;
  border: none;
}
.search .search-button {
  left: 0px;
}
.search input {
  border: none;
  border-radius: 10px;
  padding: 16px;
  padding-left: 23px;
  background-color: transparent;
  margin-left: 0.5rem;
  width: -moz-available;
  width: -webkit-fill-available;
}
.search .reset-button {
  right: 0px;
}
.search .reset-button img {
  height: 16px;
  margin: 8px 0px;
}

.contact {
  margin-bottom: 10px;
}
.contact > img {
  width: 220px;
  height: 220px;
  margin-bottom: 10px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  object-fit: cover;
}
.contact h4 {
  margin: 0 0 10px 0;
}
.contact p {
  margin: 5px 0;
}

.accordion {
  display: flex;
  flex-direction: column;
}
.accordion hr {
  width: 100%;
  margin: 0;
}
.accordion .item input[type=checkbox] {
  display: none;
}
.accordion .item label {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}
.accordion .item input[type=checkbox]:checked ~ label .arrow {
  transform: rotate(-90deg);
}
.accordion .item .content {
  padding: 10px;
  background: var(--background);
}
.accordion .item input[type=checkbox]:not(:checked) ~ .content {
  display: none;
}
.accordion .item input[type=checkbox]:checked ~ label {
  color: var(--primary);
}

.width-large {
  max-width: 1200px;
  width: 100%;
}

.width-available {
  width: -moz-available;
  width: -webkit-fill-available;
}

.width-fit-content {
  width: fit-content;
}

.richtext h2 {
  font-size: 30px;
}
.richtext h3 {
  font-size: 20px;
}
.richtext h4 {
  font-size: 18px;
}

.background-secondary {
  background-color: var(--background-secondary);
}

.image-description-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .image-description-container {
    flex-direction: row;
    gap: 40px;
  }
}
.image-description-container img {
  width: 100%;
  max-width: 300px;
  align-self: center;
}
.image-description-container.image-right {
  flex-direction: row-reverse;
}

.input-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 600px;
}
.input-form > p {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.input-form > p {
  flex: 1 1 100%;
}
.input-form > p:has(.half) {
  flex: 1 1 calc(50% - 10px);
  min-width: 200px;
}
.input-form > p:has(.three-quarter) {
  flex: 1 1 calc(75% - 10px);
  min-width: 300px;
}
.input-form > p:has(.quarter) {
  flex: 1 1 calc(25% - 10px);
  min-width: 100px;
}
.input-form label:has(~ input[required], ~ select[required])::after {
  content: " *";
  color: var(--accent);
}
.input-form select {
  padding: 14px;
}

input[type=checkbox].conditional-div:not(:checked) ~ div.normally-closed {
  display: none;
}
input[type=checkbox].conditional-div:checked ~ div.normally-open {
  display: none;
}

.img {
  object-fit: contain;
}
.img.img-tiny {
  width: 100px;
  height: 100px;
}
.img.img-small {
  width: 150px;
  height: 150px;
}
.img.img-medium {
  max-width: 200px;
  max-height: 40px;
}

.border-none {
  border: none;
}

.no-animation {
  transition: none !important;
}

.coupon-input {
  display: flex;
}
.coupon-input input {
  outline: none;
  border: 1px solid var(--background-inverse);
  border-right: none;
}
.coupon-input button {
  border: 2px solid var(--primary);
  border-radius: 0px;
  color: var(--primary) !important;
  background-color: var(--background) !important;
}

@media (min-width: 1200px) {
  .min-width-large {
    display: none;
  }
}
.hr-message {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hr-message hr {
  width: -moz-available;
  width: -webkit-fill-available;
}
.hr-message span {
  white-space: nowrap;
}

.modal {
  display: none;
  padding: 10px;
}
.modal.open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.modal.open::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-inverse);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}
.modal .modal-container {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 10px;
  max-width: 2600px;
}
.modal .modal-container .modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-container .modal-content .modal-img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  object-fit: contain;
}
.modal .close-button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background-color: var(--background);
  width: 50px;
  height: 50px;
  border: 2px solid var(--background-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body:has(.modal.open) {
  overflow: hidden;
}

.account-side-menu {
  min-width: 160px;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.card-container .card {
  width: 250px;
  height: 250px;
  padding: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.card-container .card .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.invalid-message {
  display: none;
}

.invalid .invalid-message {
  display: block;
}

.cart-items > div {
  display: flow-root;
}
.cart-items .bundle-item {
  border-left: 4px solid var(--background-secondary);
  padding-left: 10px;
  margin-left: 45px;
  overflow: auto;
}
.cart-items .bundle-item hr {
  border-color: var(--background-secondary);
}

.messages {
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: center;
  margin: 10px;
  background-color: rgba(255, 255, 255, 0.7);
}

.h-inherit {
  height: inherit;
}

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