:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --dark-blue: #0F1531;
}

:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --dark-blue: #0F1531;
}

.main-header {
  height: 175px;
}
@media (max-width: 991px) {
  .main-header {
    height: 185px;
  }
}

:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --dark-blue: #0F1531;
}

.horizontal-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.vertical-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 484px;
  max-width: 335px;
  position: relative;
  box-shadow: 0 3px 6px var(--box-shadow);
  border-radius: 10px;
  justify-self: center;
}
.product-box:hover {
  cursor: pointer;
  box-shadow: 0 0 15px 5px var(--box-shadow);
  text-decoration: none;
}
.product-box .product-tile {
  padding: 25px 20px 0 25px;
}
.product-box .product-tile .top-labels {
  position: absolute;
}
.product-box .product-tile .top-labels .sale {
  width: fit-content;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 5px;
  color: white;
  background-color: var(--saleLabel);
}
.product-box .product-tile .top-labels .new {
  width: fit-content;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 5px;
  color: white;
  background-color: var(--newProduct);
}
.product-box .product-tile .product-thumbnail-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
}
.product-box .product-tile .product-thumbnail-wrapper .product-thumbnail {
  width: 100%;
  height: 160px;
  object-fit: contain;
  z-index: -1;
}
.product-box .product-tile .product-thumbnail-wrapper hr {
  border: 0;
  clear: both;
  display: block;
  width: 63%;
  background-color: #707070;
  height: 1px;
  opacity: 0.35;
}
.product-box .product-tile .product-info h4 {
  margin-bottom: 0;
}
.product-box .product-tile .product-info .description {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.product-box .product-tile .product-info .stock-container {
  justify-content: space-between;
  align-items: center;
  margin: 17px 0;
}
.product-box .product-tile .product-info .stock-container .indicator-container {
  display: flex;
  align-items: center;
}
.product-box .product-tile .product-info .stock-container .stock-indicator {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  margin-right: 8px;
}
.product-box .product-tile .product-info .stock-container .stock-indicator.in-stock {
  background-color: var(--custom-green);
}
.product-box .product-tile .product-info .stock-container .free-shipping-label {
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 33px;
  color: white;
  font-size: 15px;
  border-radius: 5px;
  text-align: center;
}
.product-box .price-info {
  padding: 0 25px 35px 25px;
}
.product-box .price-info .price-wrapper .old-price {
  display: inline-flex;
  color: var(--custom-red);
}
.product-box .price-info .price-wrapper .old-price h3 {
  margin: 0;
}
.product-box .price-info .price-wrapper .old-price.line-through {
  background-color: transparent;
  background-image: repeating-linear-gradient(163deg, transparent 0%, transparent 48%, var(--custom-red) 50%, transparent 52%, transparent 100%);
}
.product-box .price-info .price-wrapper .horizontal-between {
  align-items: center;
}
.product-box .price-info .price-wrapper .horizontal-between .effective-price {
  display: inline-flex;
  margin: 14px 0;
}
.product-box .price-info .price-wrapper .horizontal-between .effective-price h1 {
  margin: 0;
}
.product-box .price-info .price-wrapper .horizontal-between .wishlist-button-wrapper {
  cursor: pointer;
}
.product-box .price-info .small-text span {
  font-size: 12px;
}
.product-box .product-variants {
  width: fit-content;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--grey-bg);
  padding: 5px 20px;
  border-radius: 10px 0;
  font-size: 15px;
  text-align: center;
}

.category-grid-wrapper {
  margin-bottom: 100px;
}
.category-grid-wrapper h2 {
  margin-bottom: 40px;
}

:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --dark-blue: #0F1531;
}

.professional-equipment-wrapper .professional-equipment {
  height: 368px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
  padding: 0 60px;
}
.professional-equipment-wrapper .professional-equipment .data {
  z-index: 2;
}
.professional-equipment-wrapper .professional-equipment .data h1 {
  width: 50%;
  font-size: 50px;
  color: var(--background);
  margin-bottom: 20px;
  font-weight: bold;
}
.professional-equipment-wrapper .professional-equipment .data a {
  position: relative;
  display: block;
  width: fit-content;
  background-color: var(--background);
  padding: 15px 20px;
  font-weight: bold;
  z-index: 0;
}
.professional-equipment-wrapper .professional-equipment .data a:hover {
  text-decoration: none;
}
.professional-equipment-wrapper .professional-equipment .background {
  position: absolute;
  top: 0;
  left: 0;
}
.professional-equipment-wrapper .professional-equipment .background img {
  width: 100%;
  position: relative;
  z-index: -1;
}
.professional-equipment-wrapper .free-shipping {
  padding: 25px;
  background-color: var(--background2);
}
.professional-equipment-wrapper .free-shipping .shipping-label {
  display: flex;
  align-items: center;
}
.professional-equipment-wrapper .free-shipping .shipping-label h2 {
  margin-left: 20px;
  margin-bottom: 0;
}
.professional-equipment-wrapper .free-shipping .to-shop-container {
  display: flex;
  align-items: center;
}
.professional-equipment-wrapper .free-shipping .to-shop-container .to-shop-button {
  width: 100%;
  text-align: center;
  padding: 15px 20px;
  color: var(--background);
}
.professional-equipment-wrapper .free-shipping .to-shop-container a {
  display: block;
  font-weight: bold;
  font-size: 17px;
}
@media (max-width: 1200px) {
  .professional-equipment-wrapper .professional-equipment {
    background-image: url("/images/main/png/professional-equipment-2.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .professional-equipment-wrapper .professional-equipment .data h1 {
    font-size: 30px;
  }
  .professional-equipment-wrapper .professional-equipment .background {
    display: none;
  }
  .professional-equipment-wrapper .free-shipping .shipping-label h2 {
    font-size: 20px;
  }
  .professional-equipment-wrapper .free-shipping .to-shop-button {
    margin-top: 10px;
  }
  .professional-equipment-wrapper .free-shipping .not-member-link {
    margin-top: 10px;
  }
}

.news-list-container .news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 135px;
  row-gap: 10px;
  padding: 0 142px;
}
.news-list-container .news-grid .news-container .main-img {
  width: 100%;
  max-width: 500px;
  margin-bottom: 50px;
}
.news-list-container .news-grid .news-container h1 {
  color: var(--brandPrimary);
  text-transform: uppercase;
}
.news-list-container .news-grid .news-container p {
  margin-bottom: 32px;
}
.news-list-container .news-grid .news-container a {
  font-weight: bold;
}
.news-list-container .news-grid .news-container a img {
  margin-left: 10px;
}
@media (max-width: 990px) {
  .news-list-container .news-grid {
    grid-template-columns: 1fr;
    padding: 0;
    row-gap: 20px;
  }
}

:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --dark-blue: #0F1531;
}

.subscribe-business-account {
  position: relative;
}
.subscribe-business-account .background-image {
  position: absolute;
  width: 100%;
  height: 120%;
  background-image: var(--businessAccountBbImg);
  background-repeat: round;
  background-size: cover;
  z-index: -1;
}
.subscribe-business-account .data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0;
  row-gap: 0;
}
.subscribe-business-account .subscribe-left-container {
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.subscribe-business-account .subscribe-left-container h3, .subscribe-business-account .subscribe-left-container span {
  color: white;
}
.subscribe-business-account .subscribe-left-container .content img {
  margin-right: 12px;
}
.subscribe-business-account .business-right-container .content {
  padding: 40px;
}
.subscribe-business-account .business-right-container .content .business-account-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px 14px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--background);
}
.subscribe-business-account .business-right-container .content .business-account-image img {
  width: 100%;
  max-width: 100px;
}
.subscribe-business-account .business-right-container .content .about-account {
  width: 19vw;
  font-weight: lighter;
}
.subscribe-business-account .business-right-container .content .about-text {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 16px;
}
.subscribe-business-account .business-right-container .content .about-text h3 {
  margin-right: 10px;
  margin-bottom: 0;
}
.subscribe-business-account .business-right-container .content .about-text .right-arrow-image {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: var(--rightArrowImg);
}

@media (max-width: 990px) {
  .subscribe-business-account .data-grid {
    grid-template-columns: 1fr;
  }
  .subscribe-business-account .background-image {
    display: none;
  }
  .subscribe-business-account .subscribe-left-container {
    padding: 40px 10px;
    background-color: var(--brandSecondary);
  }
  .subscribe-business-account .business-right-container {
    background-color: var(--grey-bg-2);
    padding: 40px 10px;
  }
  .subscribe-business-account .business-right-container .content {
    width: fit-content;
    margin: 0 auto;
    padding: 0;
  }
  .subscribe-business-account .business-right-container .content .about-account {
    width: fit-content;
  }
}
@media (max-width: 400px) {
  .subscribe-business-account .subscribe-left-container, .subscribe-business-account .business-right-container {
    padding: 20px 10px;
  }
  .subscribe-business-account .subscribe-left-container .content .row, .subscribe-business-account .business-right-container .content .row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.company-advantages {
  margin-top: 100px;
}
.company-advantages .header {
  text-align: center;
  margin-bottom: 50px;
}
.company-advantages .advantage {
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-advantages .advantage span {
  max-width: 150px;
  overflow-wrap: break-word;
  margin-left: 10px;
}
.company-advantages .advantage .dynamic-image {
  width: 58px;
  height: 58px;
  background-repeat: no-repeat;
  background-size: contain;
}
.company-advantages .advantage .dynamic-image.padlock {
  background-image: var(--padlockImg);
}
.company-advantages .advantage .dynamic-image.product-return {
  background-image: var(--productReturnImg);
}
.company-advantages .advantage .dynamic-image.wheelbarrow {
  background-image: var(--wheelbarrowImg);
}
.company-advantages .advantage .dynamic-image.location {
  background-image: var(--locationImg);
}
@media (max-width: 991px) {
  .company-advantages .header {
    text-align: center;
    margin-bottom: 30px;
  }
  .company-advantages .advantage {
    margin-top: 20px;
  }
}

:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --dark-blue: #0F1531;
}

.footer {
  padding: 65px 0;
  background-color: var(--grey-bg-2);
  margin-top: 100px;
}
.footer .payment-grid {
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: 20px;
  row-gap: 10px;
}
.footer .information-links {
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.footer .information-links a:not(:last-child) {
  margin-bottom: 10px;
}
.footer .magazin {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer .magazin .how-works-text {
  font-weight: bold;
  cursor: pointer;
}
.footer .magazin .separator {
  width: 1px;
  height: 20px;
  background-color: var(--underline);
  margin: 0 15px;
}
.footer .separator {
  width: 100%;
  height: 1px;
  background-color: var(--underline-2);
  margin-top: 15px;
  margin-bottom: 30px;
  opacity: 0.41;
}
.footer .telephone {
  text-decoration: none;
  color: var(--dark-blue);
}
.footer .telephone:hover {
  text-decoration: underline;
}
.footer .opening-time {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}
.footer .opening-time span {
  font-size: 14px;
  font-weight: lighter;
}
.footer .mobile-charges {
  font-size: 11px;
  font-weight: lighter;
}
.footer .new-jobs-image {
  max-width: 164px;
  max-height: 164px;
}
.footer .social-grid {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  column-gap: 30px;
  row-gap: 10px;
}
.footer .social-grid img {
  cursor: pointer;
}
@media (max-width: 991px) {
  .footer h3 {
    margin: 20px 0;
  }
}

:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --dark-blue: #0F1531;
}

.license-footer {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.license-footer span {
  color: white;
}
.license-footer .right-side {
  text-align: end;
}
.license-footer .right-side a:not(:last-child) {
  margin-right: 47px;
}

@media (max-width: 992px) {
  .license-footer .row {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .license-footer .row .right-side {
    margin-bottom: 15px;
  }
  .license-footer .row .left-side, .license-footer .row .right-side {
    text-align: start;
  }
}
@media (max-width: 576px) {
  .license-footer {
    padding: 15px 0;
  }
}
:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --dark-blue: #0F1531;
}

/* Tenant 1 (Piqo) theme */
.tenant1 {
  --brandPrimary: #0F1531;
  --brandPrimaryHover: #00548d;
  --brandSecondary: #87B229;
  --brandSecondaryHover: #6c8f21;
  --brandTertiary: #F18C00;
  --brandTertiaryHover: #EE7C0D;
  --newAdvertiseBg: #414141;
  --newAdvertiseColor: white;
  --saleLabel: #E21313;
  --newProduct: #F18C00;
  --logoImg: url("/images/piqo/piqo-logo.png");
  --padlockImg: url("/images/piqo/padlock.png");
  --productReturnImg: url("/images/piqo/product-return.png");
  --wheelbarrowImg: url("/images/piqo/wheelbarrow.png");
  --locationImg: url("/images/piqo/location.png");
  --businessAccountBbImg: url("/images/piqo/piqo-business-account-bg.png");
  --rightArrowImg: url("/images/piqo/right-arrow.png");
}

/* Tenant 2 (Vecoplan) theme */
.tenant2 {
  --brandPrimary: #0F1531;
  --brandPrimaryHover: #00548d;
  --brandSecondary: #0F1531;
  --brandSecondaryHover: #0F1531;
  --brandTertiary: #4CB9C0;
  --brandTertiaryHover: #4CB9C0;
  --newAdvertiseBg: #414141;
  --newAdvertiseColor: white;
  --saleLabel: #0f1532;
  --newProduct: #4cb9c0;
  --logoImg: url("/images/vecoplan/vecoplan-logo.png");
  --padlockImg: url("/images/vecoplan/padlock.png");
  --productReturnImg: url("/images/vecoplan/product-return.png");
  --wheelbarrowImg: url("/images/vecoplan/wheelbarrow.png");
  --locationImg: url("/images/vecoplan/location.png");
  --businessAccountBbImg: url("/images/vecoplan/veco-business-account-bg.png");
  --rightArrowImg: url("/images/vecoplan/right-arrow.png");
}

/* Tenant 3 (Voest) theme */
.tenant3, .tenant4, .tenant5 {
  --brandPrimary: #1183B2;
  --brandPrimaryHover: #0f749b;
  --brandSecondary: #1183B2;
  --brandSecondaryHover: #0f749b;
  --brandTertiary: #1183B2;
  --brandTertiaryHover: #0f749b;
  --newAdvertiseBg: #C9E1EF;
  --newAdvertiseColor: #414141;
  --saleLabel: #E21313;
  --newProduct: #93C22B;
  --logoImg: url("/images/voestalpine/voestalpine-logo.png");
  --padlockImg: url("/images/voestalpine/padlock.png");
  --productReturnImg: url("/images/voestalpine/product-return.png");
  --wheelbarrowImg: url("/images/voestalpine/wheelbarrow.png");
  --locationImg: url("/images/voestalpine/location.png");
  --businessAccountBbImg: url("/images/voestalpine/voest-business-account-bg.png");
  --rightArrowImg: url("/images/voestalpine/right-arrow.png");
}

/* Tenant 6 (Schloss) theme */
.tenant6 {
  --brandPrimary: #213138;
  --brandPrimaryHover: #213138;
  --brandSecondary: #fbba00;
  --brandSecondaryHover: #d7a003;
  --brandTertiary: #fbba00;
  --brandTertiaryHover: #d7a003;
  --newAdvertiseBg: #C9E1EF;
  --newAdvertiseColor: #414141;
  --saleLabel: #E21313;
  --newProduct: #93C22B;
  --logoImg: url("/images/schloss/schloss-logo.jpeg");
  --padlockImg: url("/images/schloss/padlock.png");
  --productReturnImg: url("/images/schloss/product-return.png");
  --wheelbarrowImg: url("/images/schloss/wheelbarrow.png");
  --locationImg: url("/images/schloss/location.png");
  --businessAccountBbImg: url("/images/schloss/schloss-business-account-bg.png");
  --rightArrowImg: url("/images/schloss/right-arrow.png");
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Thin.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-ExtraLight.ttf") format("truetype");
  font-weight: 200;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-ExtraBold.ttf") format("truetype");
  font-weight: 900;
}
body {
  font-size: 16px !important;
  font-family: "Roboto", sans-serif !important;
  color: var(--dark-blue) !important;
  animation: fadeInAnimation ease 1s;
  scrollbar-gutter: stable;
}
body h1 {
  font-size: 30px;
  font-weight: 900;
}
body h2 {
  font-size: 25px;
  font-weight: bold;
}
body h3 {
  font-size: 20px;
  font-weight: 500;
}
body h4 {
  font-size: 16px;
  font-weight: 900;
}
body .small-text {
  font-size: 12px;
}
body a {
  cursor: pointer;
  color: var(--dark-blue);
}
body a:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}
body input[type=radio] {
  accent-color: var(--dark-blue);
}
body .primary-color {
  color: var(--brandPrimary);
}
body .primary-color-hover {
  color: var(--brandPrimaryHover);
}
body .primary-bg-color {
  background-color: var(--brandPrimary);
}
body .primary-bg-color-hover {
  background-color: var(--brandPrimaryHover);
}
body .secondary-color {
  color: var(--brandSecondary);
}
body .secondary-color-hover {
  color: var(--brandSecondaryHover);
}
body .secondary-bg-color {
  background-color: var(--brandSecondary);
}
body .secondary-bg-color-hover {
  background-color: var(--brandSecondaryHover);
}
body .tertiary-color {
  color: var(--brandTertiary);
}
body .tertiary-color-hover {
  color: var(--brandTertiaryHover);
}
body .tertiary-bg-color {
  background-color: var(--brandTertiary);
}
body .tertiary-bg-color-hover {
  background-color: var(--brandTertiaryHover);
}
body .tertiary-gradient {
  background-image: linear-gradient(90deg, var(--brandTertiary) 50%, rgba(109, 79, 45, 0) 100%);
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1450px !important;
  }
}
#wgt-landing-intro {
  min-height: 393px;
}

.shop-specials-container {
  margin-bottom: 60px;
}
.shop-specials-container h2 {
  margin-bottom: 35px;
}
.shop-specials-container .grid-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
  row-gap: 100px;
}

.shop-information-container {
  min-height: 600px;
  margin-bottom: 80px;
}
.shop-information-container .new-product-advertise-container {
  height: 100%;
  background-color: var(--newAdvertiseBg);
  padding: 40px 20px;
}
.shop-information-container .new-product-advertise-container .logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.shop-information-container .new-product-advertise-container .logo-container .logo {
  width: 12vw;
  height: 12vw;
  max-width: 208px;
  max-height: 208px;
  min-width: 150px;
  min-height: 150px;
  background-image: var(--logoImg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-origin: content-box;
  border-radius: 50%;
  padding: 30px;
  background-color: white;
}
.shop-information-container .new-product-advertise-container h2 {
  margin-bottom: 20px;
  color: var(--newAdvertiseColor);
}
.shop-information-container .new-product-advertise-container span {
  display: block;
  font-weight: 300;
  margin-bottom: 40px;
  color: var(--newAdvertiseColor);
}
.shop-information-container .new-product-advertise-container .button-like {
  color: var(--underline-2);
}
.shop-information-container .savings-assortiment-container {
  margin: 0 15px;
}
.shop-information-container .savings-assortiment-container .savings-container {
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/images/main/png/landing/landing-bg-1.png");
  padding-top: 50px;
}
.shop-information-container .savings-assortiment-container .assortiment-container {
  min-height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/images/main/png/landing/landing-bg-3.png");
  padding-top: 50px;
  margin-top: 15px;
}
.shop-information-container .savings-assortiment-container .data {
  width: 52%;
  min-width: 200px;
  padding: 20px 15% 14px 12px;
}
.shop-information-container .savings-assortiment-container .data span {
  color: white;
}
.shop-information-container .savings-assortiment-container .data .button-like {
  width: 140px;
  margin-top: 16px;
  padding: 10px 0;
  font-size: 11px;
  text-align: center;
}
.shop-information-container .planning-consulting-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  background-image: url("/images/main/png/landing/landing-bg-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.shop-information-container .planning-consulting-container h1 {
  font-size: 60px;
  color: white;
}

.data-landing-separator {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}
.data-landing-separator .separator {
  display: block;
  height: 1px;
  width: 50%;
  background-color: var(--underline-opacity);
}

.partner-slideshow {
  margin-top: 90px;
  margin-bottom: 130px;
}

.button-like {
  display: block;
  width: fit-content;
  font-weight: bold;
  background-color: var(--background);
  padding: 15px 20px;
}
.button-like:hover {
  text-decoration: none;
}

@media (max-width: 1200px) {
  .shop-specials-container .grid-body {
    grid-template-columns: 1fr 1fr;
    row-gap: 25px;
  }
}
@media (max-width: 991px) {
  .shop-specials-container .grid-body {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
  .shop-information-container .planning-consulting-container h1 {
    font-size: 30px;
  }
  .shop-information-container .savings-assortiment-container {
    margin: 15px 0;
  }
  .shop-information-container .savings-assortiment-container .savings-container .data, .shop-information-container .savings-assortiment-container .assortiment-container .data {
    width: 35%;
  }
}

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