/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* BALLOON CSS */
:root {
  --balloon-color: rgba(16, 16, 16, 0.95);
  --balloon-font-size: 12px;
  --balloon-move: 4px;
}

button[aria-label][data-balloon-pos] {
  overflow: visible;
}

.btn {
  min-width: 180px;
}

[aria-label][data-balloon-pos] {
  position: relative;
  cursor: pointer;
}

[aria-label][data-balloon-pos]:after {
  opacity: 0;
  pointer-events: none;
  transition: all 0.18s ease-out 0.18s;
  text-indent: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: normal;
  font-style: normal;
  text-shadow: none;
  font-size: var(--balloon-font-size);
  background: var(--balloon-color);
  border-radius: 2px;
  color: #fff;
  content: attr(aria-label);
  padding: 0.5em 1em;
  position: absolute;
  white-space: nowrap;
  z-index: 10;
}

[aria-label][data-balloon-pos]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: var(--balloon-color);
  opacity: 0;
  pointer-events: none;
  transition: all 0.18s ease-out 0.18s;
  content: "";
  position: absolute;
  z-index: 10;
}

[aria-label][data-balloon-pos]:hover:before,
[aria-label][data-balloon-pos]:hover:after,
[aria-label][data-balloon-pos][data-balloon-visible]:before,
[aria-label][data-balloon-pos][data-balloon-visible]:after,
[aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:before,
[aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:after {
  opacity: 1;
  pointer-events: none;
}

[aria-label][data-balloon-pos].font-awesome:after {
  font-family: FontAwesome, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

[aria-label][data-balloon-pos][data-balloon-break]:after {
  white-space: pre;
}

[aria-label][data-balloon-pos][data-balloon-break][data-balloon-length]:after {
  white-space: pre-line;
  word-break: break-word;
}

[aria-label][data-balloon-pos][data-balloon-blunt]:before,
[aria-label][data-balloon-pos][data-balloon-blunt]:after {
  transition: none;
}

[aria-label][data-balloon-pos][data-balloon-pos="up"]:after {
  bottom: 100%;
  left: 50%;
  margin-bottom: 10px;
  transform: translate(-50%, var(--balloon-move));
  transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up"]:before {
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, var(--balloon-move));
  transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:after,
[aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:after {
  transform: translate(-50%, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:before,
[aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:before {
  transform: translate(-50%, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="up-left"]:after {
  bottom: 100%;
  left: 0;
  margin-bottom: 10px;
  transform: translate(0, var(--balloon-move));
  transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up-left"]:before {
  bottom: 100%;
  left: 5px;
  transform: translate(0, var(--balloon-move));
  transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up-left"]:hover:after,
[aria-label][data-balloon-pos][data-balloon-pos="up-left"][data-balloon-visible]:after {
  transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="up-left"]:hover:before,
[aria-label][data-balloon-pos][data-balloon-pos="up-left"][data-balloon-visible]:before {
  transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="up-right"]:after {
  bottom: 100%;
  right: 0;
  margin-bottom: 10px;
  transform: translate(0, var(--balloon-move));
  transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up-right"]:before {
  bottom: 100%;
  right: 5px;
  transform: translate(0, var(--balloon-move));
  transform-origin: top;
}

[aria-label][data-balloon-pos][data-balloon-pos="up-right"]:hover:after,
[aria-label][data-balloon-pos][data-balloon-pos="up-right"][data-balloon-visible]:after {
  transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="up-right"]:hover:before,
[aria-label][data-balloon-pos][data-balloon-pos="up-right"][data-balloon-visible]:before {
  transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down"]:after {
  left: 50%;
  margin-top: 10px;
  top: 100%;
  transform: translate(-50%, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down"]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-bottom-color: var(--balloon-color);
  left: 50%;
  top: 100%;
  transform: translate(-50%, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:after,
[aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:after {
  transform: translate(-50%, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:before,
[aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:before {
  transform: translate(-50%, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down-left"]:after {
  left: 0;
  margin-top: 10px;
  top: 100%;
  transform: translate(0, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down-left"]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-bottom-color: var(--balloon-color);
  left: 5px;
  top: 100%;
  transform: translate(0, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down-left"]:hover:after,
[aria-label][data-balloon-pos][data-balloon-pos="down-left"][data-balloon-visible]:after {
  transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down-left"]:hover:before,
[aria-label][data-balloon-pos][data-balloon-pos="down-left"][data-balloon-visible]:before {
  transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down-right"]:after {
  right: 0;
  margin-top: 10px;
  top: 100%;
  transform: translate(0, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down-right"]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-bottom-color: var(--balloon-color);
  right: 5px;
  top: 100%;
  transform: translate(0, calc(var(--balloon-move) * -1));
}

[aria-label][data-balloon-pos][data-balloon-pos="down-right"]:hover:after,
[aria-label][data-balloon-pos][data-balloon-pos="down-right"][data-balloon-visible]:after {
  transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="down-right"]:hover:before,
[aria-label][data-balloon-pos][data-balloon-pos="down-right"][data-balloon-visible]:before {
  transform: translate(0, 0);
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:after {
  margin-right: 10px;
  right: 100%;
  top: 50%;
  transform: translate(var(--balloon-move), -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: var(--balloon-color);
  right: 100%;
  top: 50%;
  transform: translate(var(--balloon-move), -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:after,
[aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:after {
  transform: translate(0, -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:before,
[aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:before {
  transform: translate(0, -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="right"]:after {
  left: 100%;
  margin-left: 10px;
  top: 50%;
  transform: translate(calc(var(--balloon-move) * -1), -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="right"]:before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-right-color: var(--balloon-color);
  left: 100%;
  top: 50%;
  transform: translate(calc(var(--balloon-move) * -1), -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:after,
[aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:after {
  transform: translate(0, -50%);
}

[aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:before,
[aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:before {
  transform: translate(0, -50%);
}

[aria-label][data-balloon-pos][data-balloon-length="small"]:after {
  white-space: normal;
  width: 80px;
}

[aria-label][data-balloon-pos][data-balloon-length="medium"]:after {
  white-space: normal;
  width: 150px;
}

[aria-label][data-balloon-pos][data-balloon-length="large"]:after {
  white-space: normal;
  width: 260px;
}

[aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
  white-space: normal;
  width: 380px;
}

@media screen and (max-width: 768px) {
  [aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
    white-space: normal;
    width: 90vw;
  }
}

[aria-label][data-balloon-pos][data-balloon-length="fit"]:after {
  white-space: normal;
  width: 100%;
}

/* TEMP fix for svgs */
.btb-product-image svg {
  background: -webkit-linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
  background: -moz-linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
  background: linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
}

#thumbnail svg {
  background: -webkit-linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
  background: -moz-linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
  background: linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
}

.product-list-image svg {
  background: -webkit-linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
  background: -moz-linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
  background: linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
}

.btb-product-grid-image svg {
  background: -webkit-linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
  background: -moz-linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
  background: linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
  width: 100%;
}

.search-results-content svg {
  background: -webkit-linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
  background: -moz-linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
  background: linear-gradient(rgb(170, 175, 178), rgb(198, 199, 201));
}

/* ------------------------------------------------------------ */
/* Breadcrumb */
/* ------------------------------------------------------------ */

.btb-breadcrumb {
  margin-left: -15px !important;
  padding-top: 35px;
}

.btb-breadcrumb p {
  line-height: 0;
}

#breadcrumb .wpb_content_element {
  /* Override Builder Stylings */
  margin-bottom: 0 !important;
}

/* ------------------------------------------------------------ */
/* Products List */
/* ------------------------------------------------------------ */

.product-headline {
  display: flex;
  align-items: center;
  width: 30%;
  margin-bottom: 30px;
}

.product-headline a {
  padding-left: 10px;
  padding-right: 10px;
}

.product-headline a i {
  font-size: 18px;
  color: rgb(221, 221, 221);
}

.product-headline a.active i {
  color: rgb(0, 0, 0);
}

.form-control {
  padding: 15px;
  max-width: 100%;
  position: relative;
  width: 100%;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 6px;
  box-sizing: border-box;
}

.product-col {
  display: flex;
  flex-direction: column;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
}

.product-grid-item {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  transition: all 200ms ease-in-out;
  padding: 0 0 20px 0px;
  border: 3px solid rgb(235, 235, 235);
}

.product-grid-item:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
}

.product-list-item {
  position: relative;
  display: flex;
  align-content: space-between;
  border: 3px solid rgb(235, 235, 235);
  border-radius: 12px;
  transition: all 200ms ease-in-out;
  max-height: calc(150px + 5vw);
}

.product-list-item:hover {
  transform: scale(1.005);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
}

.product-list-image {
  position: relative;
  max-width: calc(150px + 5vw);
  text-align: center;
  overflow: hidden;
  background: rgb(232, 232, 232);
}

.product-list-image a {
  width: 0;
  height: 0;
}

.product-list-image img {
  max-width: calc(150px + 5vw);
  object-fit: cover;
  height: 100%;
  max-height: calc(150px + 5vw);
}

.product-list-image svg {
  max-width: calc(150px + 5vw);
  object-fit: cover;
  height: 100%;
  max-height: calc(150px + 5vw);
}

.product-list-detail {
  display: flex;
  flex-direction: column;
  flex: 3;
  padding: 10px 20px 10px 20px;
}

.product-description {
  min-height: 100px;
}

.product-list-price {
  display: flex;
  flex-direction: column;
  flex: 2;
  padding-left: 23px;
  padding-right: 23px;
}

.price-label {
  font-weight: 700;
  padding-bottom: 10px;
}

.price-volume-unit {
  font-weight: 200;
}

.price-vat {
  font-size: 12px;
  padding-top: 10px;
  font-weight: 200;
  display: block;
}

.product-title {
  font-weight: 600;
  width: 70%;
  padding-bottom: 10px;
  width: 100%;
}

.product-category {
  font-size: 12px;
}

.pagination {
  list-style-type: none;
  padding: 10px 0;
  display: inline-flex;
  justify-content: space-between;
  box-sizing: border-box;
}

.pagination li {
  box-sizing: border-box;
  padding-right: 10px;
}

.pagination li a {
  box-sizing: border-box;
  background-color: rgb(226, 230, 230);
  padding: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  color: rgb(97, 104, 114);
  border-radius: 4px;
}

.pagination li a:hover {
  background-color: rgb(212, 218, 218);
}

.pagination .next a,
.pagination .prev a {
  text-transform: uppercase;
  font-size: 12px;
}

.pagination .currentpage a {
  background-color: #f07f1f;
  color: #ffffff;
}

.pagination .currentpage a:hover {
  background-color: rgb(81, 138, 203);
}

/* ------------------------------------------------------------ */
/* Products */
/* ------------------------------------------------------------ */

.btb-product-item {
  text-align: center;
  margin: calc(12px + 0.1vw);
  margin-bottom: calc(20px + 0.1vw);
  padding: calc(10px + 0.1vw);
  transition: 100ms ease-in-out;
  border-radius: 10px;
}

.btb-product-item:hover {
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.2), 0 5px 5px rgba(0, 0, 0, 0.2);
}

.btb-product-item p {
  height: calc(70px + 0.1vw);
  font-weight: 500;
  color: rgb(69, 69, 69);
  padding: 5px 2% 0 2%;
  overflow: hidden;
}

.btb-product-image {
  display: flex;
  flex-direction: column;
  position: relative;
}

.btb-product-image svg {
  width: 100%;
  height: 100%;
}

.product-img {
  min-width: 100px;
  min-height: 100px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btb-product-grid-image {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.btb-product-grid-image img {
  height: 200px;
  width: 100%;
  object-fit: contain;
}

.btb-product-grid-image svg {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.price-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.product-price {
  font-weight: 600;
  font-size: calc(16px + 0.1vw);
}

.disabled-price {
  color: #f07f1f;
  position: relative;
}

.disabled-price:after {
  height: 3px;
  background: #f07f1f;
  display: block;
  position: absolute;
  content: "";
  width: 120%;
  bottom: 0;
  left: -10%;
  margin-bottom: calc(8px + 0.1vw);
}

.btb-product-item button.btb-btn {
  width: 100%;
  margin-top: 10px;
}

.btb-product-item button.btb-btn i {
  font-size: calc(15px + 0.1vw);
}

.empty-products-container {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.empty-products-container i {
  font-size: calc(30px + 0.1vw);
}

.scale-price-table {
  display: none;
  background: #ffffff;
  border: 2px solid #ebebeb;
  border-radius: 6px;
  position: absolute;
}

.scale-price-table.visible {
  display: block;
  top: 25px;
  left: 0;
}

.scaleprice-text {
  cursor: pointer;
  transition: color 200ms ease-in-out;
}

.scaleprice-text:hover {
  color: rgba(240, 127, 31, 0.6);
}

/* ------------------------------------------------------------ */
/* Categories */
/* ------------------------------------------------------------ */

.btb-category-row {
  display: flex;
  flex-wrap: wrap;
}

.btb-category {
  max-width: 47%;
  flex-basis: 47%;
  padding-bottom: 5%;
}

.btb-category:nth-child(2n + 1) {
  padding-right: 3%;
}

.btb-category:nth-child(2n + 2) {
  padding-left: 3%;
}

.btb-category-inner-top {
  display: flex;
  flex: 1;
  border: 2px solid rgb(200, 200, 200);
  border-radius: 20px;
  height: calc(140px + 0.1vw);
  padding: 20px;
  transition-property: box, transform, border, background;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

.btb-category-inner {
  display: flex;
  flex: 1;
  position: relative;
  border: 2px solid rgb(200, 200, 200);
  border-radius: 20px;
  height: calc(140px + 0.1vw);
  padding: 20px;
  transition-property: background, border, box, transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1280px) {
  .btb-category-inner:hover {
    color: #ffffff;
    -webkit-box-shadow: 3px 6px 16px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 3px 6px 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 6px 16px 0px rgba(0, 0, 0, 0.2);
    background: -webkit-linear-gradient(-45deg, rgb(241, 57, 31), #f07f1f);
    background: -moz-linear-gradient(-45deg, rgb(241, 57, 31), #f07f1f);
    background: linear-gradient(-45deg, rgb(241, 57, 31), #f07f1f);
    border: none;
  }

  .btb-category-inner-top:hover {
    color: #ffffff;
    -webkit-box-shadow: 3px 6px 16px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 3px 6px 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 6px 16px 0px rgba(0, 0, 0, 0.2);
    background: -webkit-linear-gradient(-45deg, rgb(241, 57, 31), #f07f1f);
    background: -moz-linear-gradient(-45deg, rgb(241, 57, 31), #f07f1f);
    background: linear-gradient(-45deg, rgb(241, 57, 31), #f07f1f);
    border: 2px solid transparent;
    transform: scale(1.01);
  }

  .btb-category-inner-top:hover .btb-category-top {
    position: absolute;
    height: calc(140px + 0.5vh);
    z-index: 100;
    bottom: 120px;
  }

  .btb-category-inner:hover p {
    display: block;
    opacity: 1;
  }

  .btb-category-inner:hover p,
  .btb-category-inner-top:hover p {
    display: block;
    opacity: 1;
  }

  .btb-category-inner-top:hover .btb-category-title-container {
    height: 80%;
  }

  .btb-category-inner:hover .btb-category-title-container {
    height: 100%;
    margin-bottom: 20px;
  }

  .btb-category-inner:hover .category-img-wrapper {
    position: absolute;
    top: -50px;
  }
}

.btb-category-inner .category-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.btb-category-top {
  width: 30%;
  height: 60%;
  transition: all 500ms ease-in-out;
  align-self: flex-end;
  object-fit: contain;
}

.category-img-wrapper {
  position: relative;
  width: 30%;
  height: 60%;
  transition: all 500ms ease-in-out;
  align-self: flex-end;
  border-radius: 12px;
  overflow: hidden;
  min-height: 90px;
  bottom: 0px;
}

.btb-category-inner svg {
  width: 30%;
  height: auto;
  align-self: flex-end;
  object-fit: contain;
  object-position: center;
  height: 60%;
  border-radius: 12px;
  min-height: 90px;
}

.btb-category-title-container {
  height: 40%;
  transition-property: height;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
}

.btb-category-title-container h4 {
  font-weight: 600;
}

.btb-category-inner-top p {
  color: #ffffff;
  opacity: 0;
  display: none;
}

.btb-category-inner p {
  color: #ffffff;
  opacity: 0;
  display: none;
}

.categories-search-shortlink {
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 12px;
  border: #ebebeb 3px solid;
}

.search-list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ------------------------------------------------------------ */
/* Product Profile */
/* ------------------------------------------------------------ */

#thumbnail {
  position: relative;
}

.product-profile {
  display: flex;
}

.btb-profile-carousel {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
}

.profile-info {
  flex-basis: 50%;
  padding-left: 40px;
}

.profile-info h3 {
  top: -100px;
}

.profile-info h1 {
  padding-top: 0 !important;
  line-height: calc(30px + 0.1vw);
  margin-top: 0 !important;
}

.btb-profile-carousel {
  width: 30vw;
  max-width: 417px;
  overflow: hidden;
}

.btb-profile-carousel .btb-img {
  min-width: 200px;
  min-height: 200px;
  max-width: 417px;
  max-height: 417px;
  object-fit: cover;
}

.btb-image-selection {
  display: grid;
  max-width: 417px;
  overflow-x: hidden;
  grid-template-columns: repeat(auto-fit, minmax(30%, 30%));
  grid-gap: 5%;
  margin-bottom: 30px !important;
}

.btb-image-selection .btb-selection-item {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.btb-image-selection .btb-selection-item svg {
  width: 100%;
  height: 100%;
}

.btb-selection-item img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}

/* Tabs */

.btb-tab-labels {
  width: 70%;
  display: flex;
}

.btb-tab-labels span {
  position: relative;
  cursor: pointer;
}

.btb-tab-labels span:after {
  content: "";
  background: #f07f1f;
  width: 0;
  height: 3px;
  margin-top: 10px;
  transition: width 200ms ease-in-out;
  display: block;
}

.btb-tab-labels span.active:after {
  position: relative;
  width: 100%;
}

.tab-item {
  display: none;
  opacity: 0;
  transition: all 200ms ease-in-out;
  width: 100%;
}

.tab-item.active {
  display: block;
  opacity: 1;
}

.btb-product-tec-label {
  width: 40%;
  font-weight: 500;
}

/* Wishlist Button */

@keyframes heart {
  0%,
  17.5% {
    font-size: 0;
  }
}

.btb-wishlist-heart {
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
}

.btb-wishlist-heart.heart-small {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 2em;
  z-index: 9;
}

.btb-wishlist-heart.heart-medium {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  z-index: 9;
}

.btb-wishlist-heart.heart-large {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2em;
}

.toggle-heart,
.toggle-heart-list,
.toggle-hear-grid {
  position: absolute;
  opacity: 0;
}

.toggle-heart-label {
  color: #f07f1f;
  cursor: pointer;
  align-self: center;
}

.detail-files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 10px;
}

.test-item {
  border: 1px solid #ebebeb;
}

/* ------------------------------------------------------------ */
/* Cart */
/* ------------------------------------------------------------ */

.btb-btn-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.border-none {
  border-top: 1px solid rgb(238, 238, 238);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 30px;
}

.border-none tbody tr td {
  border: none !important;
}

.cart {
  width: 100%;
}

.cart table {
  width: 100%;
}

.cart * {
  flex-wrap: nowrap;
}

.cart-img {
  width: 100%;
  min-width: 250px;
  max-width: 250px;
  height: 250px;
  object-fit: cover;
}

.cart table thead {
  padding-bottom: 50px;
}

.cart table th {
  padding: 15px;
  font-weight: 700;
}

.cart table tbody tr td {
  padding: 15px;
  border-top: 2px solid rgb(221, 221, 221);
  border-bottom: 0;
  background-color: #ffffff;
  vertical-align: middle;
}

.cart input {
  padding: 15px 10px;
  border: 1px solid rgb(221, 221, 221);
  text-align: center;
  width: 80px;
}

.remove {
  color: #f07f1f;
  font-weight: 700;
}

.border-top-light {
  border-top: 1px solid rgb(246, 246, 246) !important;
}

.border-top-none {
  border-top: none !important;
}

#btb-table-payments {
  width: 50%;
  float: right;
}

.cart-checkout-buttons button {
  margin-left: 10px;
}

/* ------------------------------------------------------------ */
/* Checkout */
/* ------------------------------------------------------------ */

.checkout-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
}

.checkout-wrapper h4 {
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.shipping-wrapper {
  padding: 10px 0px 10px 0px;
  margin-right: 5px;
}

.shipping-wrapper label {
  margin-right: 20px;
}

.form-row {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 10px;
}

.btb-form-row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  max-width: 100%;
}
.btb-form-row.cropped {
  max-width: 95%;
}

.btb-form-col {
  display: flex;
  padding-bottom: 18px;
  flex-direction: column;
  width: 50%;
}

.btb-form-col.full {
  width: 95%;
}

.btb-form-col.col-third {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.btb-form-col.col-third > div {
  width: 100%;
}

.btb-form-col.col-third:nth-child(2) {
  align-items: center;
}

.btb-form-col.col-third:last-child {
  align-items: flex-end;
}

.btb-form-col input {
  max-height: 50px;
  width: 90%;
}

.btb-form-col select {
  max-height: 50px;
  width: 90%;
}

.btb-form-col textarea {
  width: 100%;
  height: 100px;
}

.btb-form-col label {
  padding: 5px;
  font-weight: 500;
  font-size: 14px;
}

.form-col {
  display: flex;
  padding-bottom: 18px;
  flex-direction: column;
}

.form-col input {
  max-height: 50px;
}

.form-col label {
  padding: 5px;
  font-weight: 500;
  font-size: 14px;
}

.form-row label {
  padding: 20px 0px 20px 0px;
  flex: 1;
}

.form-row input {
  flex: 2;
}

.form-row select {
  flex: 2;
  padding-left: 20px;
  background: #ffffff;
}

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 1ex;
  background-origin: content-box;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICBpZD0ic3ZnMiIKICAgdmlld0JveD0iMCAwIDM1Ljk3MDk4MyAyMy4wOTE1MTgiCiAgIGhlaWdodD0iNi41MTY5Mzk2bW0iCiAgIHdpZHRoPSIxMC4xNTE4MTFtbSI+CiAgPGRlZnMKICAgICBpZD0iZGVmczQiIC8+CiAgPG1ldGFkYXRhCiAgICAgaWQ9Im1ldGFkYXRhNyI+CiAgICA8cmRmOlJERj4KICAgICAgPGNjOldvcmsKICAgICAgICAgcmRmOmFib3V0PSIiPgogICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2Uvc3ZnK3htbDwvZGM6Zm9ybWF0PgogICAgICAgIDxkYzp0eXBlCiAgICAgICAgICAgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIgLz4KICAgICAgICA8ZGM6dGl0bGU+PC9kYzp0aXRsZT4KICAgICAgPC9jYzpXb3JrPgogICAgPC9yZGY6UkRGPgogIDwvbWV0YWRhdGE+CiAgPGcKICAgICB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjAyLjAxNDUxLC00MDcuMTIyMjUpIgogICAgIGlkPSJsYXllcjEiPgogICAgPHRleHQKICAgICAgIGlkPSJ0ZXh0MzMzNiIKICAgICAgIHk9IjYyOS41MDUwNyIKICAgICAgIHg9IjI5MS40Mjg1NiIKICAgICAgIHN0eWxlPSJmb250LXN0eWxlOm5vcm1hbDtmb250LXdlaWdodDpub3JtYWw7Zm9udC1zaXplOjQwcHg7bGluZS1oZWlnaHQ6MTI1JTtmb250LWZhbWlseTpzYW5zLXNlcmlmO2xldHRlci1zcGFjaW5nOjBweDt3b3JkLXNwYWNpbmc6MHB4O2ZpbGw6IzAwMDAwMDtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZTtzdHJva2Utd2lkdGg6MXB4O3N0cm9rZS1saW5lY2FwOmJ1dHQ7c3Ryb2tlLWxpbmVqb2luOm1pdGVyO3N0cm9rZS1vcGFjaXR5OjEiCiAgICAgICB4bWw6c3BhY2U9InByZXNlcnZlIj48dHNwYW4KICAgICAgICAgeT0iNjI5LjUwNTA3IgogICAgICAgICB4PSIyOTEuNDI4NTYiCiAgICAgICAgIGlkPSJ0c3BhbjMzMzgiPjwvdHNwYW4+PC90ZXh0PgogICAgPGcKICAgICAgIGlkPSJ0ZXh0MzM0MCIKICAgICAgIHN0eWxlPSJmb250LXN0eWxlOm5vcm1hbDtmb250LXZhcmlhbnQ6bm9ybWFsO2ZvbnQtd2VpZ2h0Om5vcm1hbDtmb250LXN0cmV0Y2g6bm9ybWFsO2ZvbnQtc2l6ZTo0MHB4O2xpbmUtaGVpZ2h0OjEyNSU7Zm9udC1mYW1pbHk6Rm9udEF3ZXNvbWU7LWlua3NjYXBlLWZvbnQtc3BlY2lmaWNhdGlvbjpGb250QXdlc29tZTtsZXR0ZXItc3BhY2luZzowcHg7d29yZC1zcGFjaW5nOjBweDtmaWxsOiMwMDAwMDA7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjFweDtzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjptaXRlcjtzdHJva2Utb3BhY2l0eToxIj4KICAgICAgPHBhdGgKICAgICAgICAgaWQ9InBhdGgzMzQ1IgogICAgICAgICBzdHlsZT0iZmlsbDojMzMzMzMzO2ZpbGwtb3BhY2l0eToxIgogICAgICAgICBkPSJtIDIzNy41NjY5Niw0MTMuMjU1MDcgYyAwLjU1ODA0LC0wLjU1ODA0IDAuNTU4MDQsLTEuNDczMjIgMCwtMi4wMzEyNSBsIC0zLjcwNTM1LC0zLjY4MzA0IGMgLTAuNTU4MDQsLTAuNTU4MDQgLTEuNDUwOSwtMC41NTgwNCAtMi4wMDg5MywwIEwgMjIwLDQxOS4zOTM0NiAyMDguMTQ3MzIsNDA3LjU0MDc4IGMgLTAuNTU4MDMsLTAuNTU4MDQgLTEuNDUwODksLTAuNTU4MDQgLTIuMDA4OTMsMCBsIC0zLjcwNTM1LDMuNjgzMDQgYyAtMC41NTgwNCwwLjU1ODAzIC0wLjU1ODA0LDEuNDczMjEgMCwyLjAzMTI1IGwgMTYuNTYyNSwxNi41NDAxNyBjIDAuNTU4MDMsMC41NTgwNCAxLjQ1MDg5LDAuNTU4MDQgMi4wMDg5MiwwIGwgMTYuNTYyNSwtMTYuNTQwMTcgeiIgLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPgo=");
}

.form-row-radio {
  padding-bottom: 20px;
}

.shipping-wrapper .form-control {
  padding: 15px !important;
}

.item-wrapper {
  background-color: rgb(249, 249, 249);
  padding: 20px;
  border: 2px solid rgb(235, 235, 235);
  border-radius: 12px;
}

.item-wrapper table td {
  border-top: 1px solid rgb(221, 221, 221);
  padding-top: 30px;
  padding-bottom: 30px;
}

/* #payment {
  border-bottom: 1px solid rgb(221, 221, 221);
  padding-top: 20px;
  margin-bottom: 20px;
} */

.delivery-info-checkout {
  display: none;
  padding-top: 10px;
  font-size: 12px;
}

.btb-accordion-btn {
  background-color: #ffffff;
  cursor: pointer;
  padding: 18px;
  text-align: left;
  outline: none;
  transition: 0.4s;
  border: 2px solid rgb(235, 235, 235);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btb-acccordion-btn-inner {
  display: flex;
  flex-direction: column;
}

.btb-accordion-btn:hover {
  background-color: rgb(244, 244, 244);
}

.btb-accordion-panel {
  transition: max-height 0.2s ease-out;
  padding: 0 20px;
  max-width: 100%;
  max-height: 0;
  overflow: hidden;
}

.btb-accordion-btn:after {
  content: "\02795";
  font-size: 13px;
  color: rgb(119, 119, 119);
  margin-left: 5px;
}

.btb-accordion-btn.active:after {
  content: "\2796";
}

.btb-billing-accordion {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow: hidden;
}

#payment-check-fields {
  max-height: 0;
  overflow: hidden;
  transition: all 200ms ease-in-out;
}

#shipping-form {
  display: none;
}

/* ------------------------------------------------------------ */
/* Checkout Options */
/* ------------------------------------------------------------ */

.btb-separator {
  width: 100%;
  background: #ebebeb;
  height: 2px;
}

#checkout-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 10px;
}

.checkout-option {
  display: flex;
  flex: 1;
  flex-direction: column;
  background: #ffffff;
  min-height: 100px;
  border: 2px solid #ebebeb;
  border-radius: 12px;
  transition: 100ms all linear;
  align-items: center;
  text-align: center;
}

.checkout-option-title {
  font-size: calc(0.95rem + 0.1vw);
  font-weight: 600;
  line-height: calc(1.1rem + 0.1vw);
}

.checkout-option i {
  font-size: calc(1.5rem + 0.1vw);
}

.checkout-option-inner {
  min-height: 150px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: "hidden";
}

.checkout-option form {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.checkout-option-inner input {
  width: 250px;
  position: relative;
}

.checkout-option-inner span {
  font-size: calc(0.7rem + 0.1vw);
  font-weight: 400;
}

.checkout-btn-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}

#delivery-menu {
  max-height: 0;
  overflow: hidden;
}

/* ------------------------------------------------------------ */
/* CheckOut */
/* ------------------------------------------------------------ */

.btb-checkout-steps {
  display: flex;
  background-color: #eaeaea;
  padding: 5px 0;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  position: relative;
}

.btb-checkout-step {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  text-align: center;
  font-weight: 300;
}

.btb-checkout-step a {
  color: #4e4e4e;
}

.btb-checkout-step {
  color: #4e4e4e !important;
}

.step-active {
  content: "";
  width: 90%;
  position: absolute;
  background-color: #f07f1f;
  left: 0;
  top: 0;
  border-radius: 5px 0 0 5px;
  transform: translateY(-50%);
  padding: 10px;
  height: 20px;
  text-align: center;
}

.step-active {
  color: #ffffff !important;
}

.step-active a {
  color: #ffffff !important;
}

.step-active.arrow:after,
.step-active-arrow:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.step-active.arrow:after {
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #f07f1f;
  border-width: 20px;
  margin-top: -20px;
}
.step-active.arrow:before {
  border-color: rgba(194, 225, 245, 0);
  border-left-color: transparent;
  border-width: 25px;
  margin-top: -25px;
}

.step-active.rounded {
  width: 100%;
  border-radius: 5px;
}

.step-headline {
  padding: 20px 0;
}

/* #bank-fields {
  display: none;
} */

.left-icon {
  position: absolute;
  left: -10px;
}

.overview-infos {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  position: relative;
  flex-direction: row;
}

.overview-info {
  display: flex;
  width: 50%;
  position: relative;
  flex-direction: column;
  margin-bottom: 10px;
}

.overview-info label {
  color: #999999;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  padding: 0;
}

.btb-order-details {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 17px;
  display: flex;
  max-width: 100%;
  overflow-x: hidden;
}

.btb-order-details-products-list {
  width: 50%;
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow-y: scroll;
  border-right: 2px solid #ebebeb;
}

.btb-order-details-product {
  display: flex;
  flex-direction: row;
  padding: 10px 0;
}

.btb-order-details-product span.text-small {
  color: #4e4e4e;
}

.checkout-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 10px;
}

.checkout-image-placeholder {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}

.btb-order-details-summary {
  padding: 0 20px;
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: space-between;
}

.btb-summary-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid #ebebeb; */
  padding: 10px;
}

.btb-summary-row:last-child {
  border-bottom: none;
}

.btb-order-details-product-price {
  justify-content: flex-end;
  display: flex;
  flex: 1;
  margin-right: 20px;
}

@media (min-width: 300px) and (max-width: 767px) {
  .btb-checkout-steps {
    height: unset;
    flex-direction: column;
  }

  .step-active {
    margin: unset;
    background-color: unset;
    color: #f07f1f !important;
    padding: 10px;
    position: relative;
    transform: unset;
  }

  .step-active.arrow::after,
  .step-active-arrow::before {
    display: none;
    border: none !important;
    margin: unset;
    background-color: transparent;
  }

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

  .btb-form-col {
    width: 100%;
  }

  .btb-form-col input,
  .btb-form-col select,
  .btb-form-col textarea {
    width: 100%;
  }

  .btb-form-col.full {
    width: 100%;
  }

  .btb-form-row button {
    margin: 5px 0;
  }

  .btb-order-details {
    flex-direction: column;
  }

  .btb-order-details-products-list {
    width: 100%;
    max-height: 600px;
    border-right: none;
    border-bottom: 2px solid #ebebeb;
  }

  .btb-order-details-summary {
    padding: 5px 0;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .btb-checkout-step span {
    font-size: calc(0.8rem + 0.2vw);
  }
}

/* TOOLTIP */

.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  background-color: black;
  color: #fff;
  /* text-align: center; */
  padding: 10px;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  top: -30px;
  left: 105%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* ------------------------------------------------------------ */
/* Badge */
/* ------------------------------------------------------------ */

.badge-row {
  position: absolute;
  left: 8px;
  top: 8px;
  display: flex;
  align-items: baseline;
  pointer-events: none;
}

.btb-image-badge {
  border-radius: 5px;
  overflow: hidden;
  padding: 2px 6px;
  text-transform: uppercase;
  min-width: 20px;
  text-align: center;
  position: relative;
}

/* ------------------------------------------------------------ */
/* Counter */
/* ------------------------------------------------------------ */

.btb-amount-btns span {
  display: flex;
  flex: 2;
  max-width: 300px;
}

.btb-counter-btn {
  background: white;
  display: flex;
  border: 2px solid rgb(222, 222, 222);
  border-radius: 6px;
  padding: calc(5px + 0.1vw) calc(2px + 0.1vw);
  overflow: hidden;
}

.btb-counter-btn input {
  position: relative;
  border: none;
  text-align: center;
  display: flex;
  flex: 1;
  max-width: 40px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  -webkit-touch-callout: none;
  font-weight: 600;
  font-size: calc(16px + 0.1vw);
}

.btb-counter-btn input:focus {
  outline: none !important;
}

.btb-counter-btn input:disabled {
  background: transparent !important;
  color: #000000 !important;
}

.btb-counter-btn input[type="number"]::-webkit-inner-spin-button,
.btb-counter-btn input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.btb-counter-btn .spinner-button {
  position: relative;
  display: flex;
  flex: 1;
  text-align: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ------------------------------------------------------------ */
/* Image Magnifier */
/* ------------------------------------------------------------ */

.btb-img-zoom-container {
  position: relative;
}

.btb-img-zoom-container * {
  box-sizing: border-box;
}

.btb-lightbox-outer {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btb-lightbox-inner {
  position: relative;
  display: block;
  width: 50vw;
  overflow: hidden;
  transition: all 200ms ease-in-out;
  opacity: 0;
}

.btb-lightbox-inner .fas {
  font-size: 2rem;
  text-align: right;
  width: 100%;
  color: #ffffff;
  cursor: pointer;
}

.btb-lightbox-img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ------------------------------------------------------------ */
/* Mobile Search */
/* ------------------------------------------------------------ */

.btb-mobile-search-button {
  position: fixed;
  width: 50px;
  height: 50px;
  top: 90%;
  right: -200px;
  z-index: 3;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #ebebeb;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 200ms all ease-in-out;
}

.btb-mobile-search-button.active {
  right: 20px;
}

.btb-mobile-search {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 10;
  transition: 200ms all linear;
  overflow: hidden;
}

.btb-mobile-search.active {
  overflow: visible;
}

.search-icon-close {
  width: 40px;
  background: #ffffff;
  height: 59.5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------------------------------------------------ */
/* Client Area */
/* ------------------------------------------------------------ */

/* ------------------------------------------------------------ */
/* Responsive */
/* ------------------------------------------------------------ */

/* All responsive Stylings belong down here */

/* Smartphones (portrait and landscape) ----------- */
@media (min-width: 320px) and (max-width: 768px) {
  /* .cart form {
    width: 100%;
  } */

  /* .cart td {
    width: 100% !important;
  } */

  * .btb-tab-labels {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .product-list-item {
    flex-direction: column;
    max-height: calc(500px + 5vw);
  }

  .product-list-image {
    position: relative;
    max-width: 100%;
    text-align: center;
    overflow: hidden;
    background: rgb(232, 232, 232);
    max-height: calc(150px + 5vw);
  }

  .product-list-image img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    max-height: calc(150px + 5vw);
  }

  .product-list-image svg {
    max-width: 100%;
    height: 100%;
    width: 100%;
    max-height: calc(150px + 5vw);
  }

  #btb-table-payments {
    width: 100%;
  }

  .btb-lightbox-inner {
    width: 80vw;
  }

  .cart-img {
    max-width: unset !important;
    max-height: unset !important;
    width: 100%;
    height: 100%;
  }

  td .btb-btn-row {
    flex-direction: column;
  }

  td .btb-btn-row a:nth-child(2) {
    margin-left: unset;
    margin-top: 20px;
  }

  .cart-checkout-buttons a,
  .cart-checkout-buttons button {
    padding: 10px 0;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px),
  (min-device-width: 768px) and (max-device-width: 1024px) {
  .btb-disable-mobile {
    display: none !important;
  }

  /* Force table to not be like tables anymore */
  .cart form table,
  .cart form thead,
  .cart form tbody,
  .cart form th,
  .cart form td,
  .cart form tr {
    display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  .cart form thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .cart form table tbody tr td {
    padding: 10px;
  }

  .cart form tr {
    border: 2px solid rgb(235, 235, 235);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
  }

  .cart form td {
    border: none !important;
    position: relative;
    text-align: center !important;
    overflow: hidden;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .cart form td:before {
    position: absolute;
    display: block;
    top: 0px;
    width: 100%;
    left: 0;
    white-space: nowrap;
    text-align: center;
    background: rgb(235, 235, 235);
    padding: 5px;
  }

  .cart form td div {
    text-align: center;
  }

  #cart-product-head {
    min-width: 300px;
  }

  #cart-product-head .btb-row-static.btb-align-base {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  td:nth-of-type(3) {
    padding-top: 40px !important;
  }

  td:nth-of-type(3):before {
    content: "Einzelpreis";
  }

  td:nth-of-type(5) {
    padding-top: 40px !important;
  }

  td:nth-of-type(5):before {
    content: "Stückzahl";
  }

  td:nth-of-type(6) {
    padding-top: 40px !important;
  }

  td:nth-of-type(6):before {
    content: "Rabatt / Gesamtpreis";
  }

  .cart .btb-btn.text-white {
    width: 100%;
  }
}

@media (min-device-width: 768px) and (max-device-width: 1025px) {
  .cart form tbody {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
  }

  .cart .cart-thumbnail {
    padding: 0 !important;
  }

  .cart .cart-thumbnail .btb-product-image {
    max-height: 200px;
  }

  .cart .cart-thumbnail .btb-product-image img,
  .cart .cart-thumbnail .btb-product-image svg {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }

  .cart-img {
    max-width: unset !important;
    max-height: unset !important;
    width: 100%;
    height: 250px;
  }

  .cart-checkout-buttons a,
  .cart-checkout-buttons button {
    padding: 10px 5px !important;
  }

  .cart-checkout-buttons a {
    width: 100% !important;
  }

  .cart-checkout-buttons button {
    width: 100% !important;
  }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
}

/* iPad */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .container {
    width: 80%;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
}

/* Desktops and laptops ----------- */
@media only screen and (min-width: 1024px) {
  .img-magnifier-glass {
    position: absolute;
    border: 2px solid rgb(51, 51, 51);
    border-radius: 50%;
    cursor: none;
    /*Set the size of the magnifier glass:*/
    width: calc(50px + 5vw);
    height: calc(50px + 5vw);
    max-width: 120px;
    max-height: 120px;
    pointer-events: none;
    z-index: 2;
  }
}

/* Large screens ----------- */
@media only screen and (min-width: 1280px) {
}

/* ------------------------------------------------------------ */
/* DEBUG */
/* ------------------------------------------------------------ */

.debug-window {
  position: absolute;
  width: 20%;
  height: 5%;
  background: yellow;
  color: #000;
  top: 40%;
  margin: 0 auto;
}
