@import url(https://fonts.cosmobile.cloud/css2?family=Manrope:ital,wght@0,400;family=Manrope:ital,wght@0,700&display=swap);
:root {
  --of-max-page-width: 1400px;
}
:root {
  --of-font-weight-bold: bold;
  --of-font-weight-regular: normal;
  --of-font-family: "Mulish", sans-serif;
  --of-font-size-xl: 40px;
  --of-font-weight-xl: var(--of-font-weight-bold);
  --of-font-size-l: 32px;
  --of-font-weight-l: var(--of-font-weight-bold);
  --of-font-size-m: 22px;
  --of-font-weight-m: var(--of-font-weight-bold);
  --of-font-size-body: 17px;
  --of-font-weight-body: var(--of-font-weight-regular);
  --of-font-size-s: 14px;
  --of-font-weight-s: var(--of-font-weight-regular);
  --of-font-size-xs: 12px;
  --of-font-weight-xs: var(--of-font-weight-regular);
  --of-font-size-xxs: 10px;
  --of-font-weight-xxs: var(--of-font-weight-regular);
}
@media screen and (max-width: 599px) {
  :root {
    --of-font-size-xl: 32px;
    --of-font-size-l: 26px;
    --of-font-size-m: 20px;
  }
}
.font-xl {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-xl);
  font-weight: var(--of-font-weight-xl);
  line-height: normal;
}
.font-l {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-l);
  font-weight: var(--of-font-weight-l);
  line-height: normal;
}
.font-m {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-m);
  font-weight: var(--of-font-weight-m);
  line-height: normal;
}
body {
  font-family: var(--of-font-family) !important;
  font-size: var(--of-font-size-body) !important;
  font-weight: var(--of-font-weight-body) !important;
  line-height: normal !important;
}
.font-s {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-s);
  font-weight: var(--of-font-weight-s);
  line-height: normal;
}
.font-xs {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-xs);
  font-weight: var(--of-font-weight-xs);
  line-height: normal;
}
.font-xxs {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-xxs);
  font-weight: var(--of-font-weight-xxs);
  line-height: normal;
}
.section-title {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-body);
  font-weight: bold;
  padding-bottom: var(--of-spacing-xs);
  border-bottom: 1px solid var(--of-color-details);
}
h1 {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-l);
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  h1 {
    font-size: var(--of-font-size-xl);
  }
}
h2 {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-m);
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  h2 {
    font-size: var(--of-font-size-l);
  }
}
h3,
section {
  font-family: var(--of-font-family);
  font-size: var(--of-font-size-body);
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  h3,
section {
    font-size: var(--of-font-size-m);
  }
}
:root {
  --of-transition-duration: 250ms;
  --of-transition-effect: ease;
}
.initial-loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000000000;
  overflow: hidden;
  opacity: 1;
}
.initial-loader.hide {
  bottom: 100%;
  opacity: 0;
  transition: opacity linear 1s, bottom 0ms linear 1s;
}
.initial-loader img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: pulse 2s infinite;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  70% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(0.95);
    opacity: 1;
  }
}
.bucchi .header__desktop {
  grid-gap: var(--of-spacing-s);
  gap: var(--of-spacing-s);
}
.bucchi .header__left {
  flex: unset !important;
}
.bucchi .header__right {
  flex: 1 0 auto !important;
}
.bucchi .header__logo {
  min-width: 150px !important;
  max-width: 300px !important;
  width: 100% !important;
}
.bucchi body {
  --bucchi-color-dark-blue: #34506A;
  --bucchi-color-dark-blue-transparent: #34506A80;
  --bucchi-color-light-blue: #A0B2C2;
  --bucchi-color-dark-grey: #595959;
  --of-font-family: "Manrope", sans-serif !important;
  --of-color-primary: var(--bucchi-color-dark-blue) !important;
  --of-color-brand: var(--bucchi-color-dark-grey) !important;
  --of-color-text: var(--bucchi-color-dark-grey) !important;
  --of-cta-color-background: var(--bucchi-color-dark-blue) !important;
  --of-cta-color-text: var(--of-color-text-light) !important;
  --of-addtocart-color-background: var(--bucchi-color-dark-blue) !important;
  --of-addtocart-color-text: var(--of-color-text-light) !important;
  --of-font-size-body: 15px !important;
  --of-font-size-m: 18px !important;
  --of-font-size-l: 24px !important;
  --of-font-size-xl: 32px !important;
}
.bucchi .mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator {
  margin: 0 var(--of-spacing-xs);
}
.bucchi .listing__content__sidemenu__desktop-filters {
  order: 1;
}
.bucchi .listing__content__sidemenu__categories {
  order: 2;
}
.bucchi .listing__content__sidemenu__user-block {
  order: 3;
}
.bucchi .products-grid .product__brand {
  order: 3;
  color: var(--of-color-text);
}
.bucchi .products-grid .product__name {
  order: 2;
  font-weight: bold;
}
.bucchi .product-details-block h1,
.bucchi .product-details-block h3 {
  color: var(--of-color-primary) !important;
}
@media screen and (min-width: 600px) {
  .bucchi .product-details-block h3 {
    font-size: var(--of-font-size-l) !important;
  }
}
.bucchi .product-details-block h1.product-details-name {
  color: var(--of-color-dark-grey) !important;
  font-size: var(--of-font-size-body);
}
.bucchi of-product-details .product__brand {
  color: var(--of-color-primary) !important;
  font-size: var(--of-font-size-xl);
}
.bucchi of-product-details .product__brand:hover {
  cursor: auto;
  text-decoration: none !important;
}
.bucchi .news__wrapper h1 {
  color: var(--of-color-primary) !important;
}
.bucchi .news-preview__title, .bucchi .news-detail__title {
  color: var(--of-color-primary) !important;
}
@media screen and (min-width: 600px) {
  .bucchi .news-grid {
    grid-row-gap: var(--of-spacing-xxl-1) !important;
    row-gap: var(--of-spacing-xxl-1) !important;
  }
}
.bucchi .user__title {
  color: var(--of-color-primary) !important;
}
.bucchi .static-page {
  max-width: var(--of-max-page-width) !important;
  margin: 0 !important;
}
.bucchi .static-page h1 {
  width: var(--of-full-width);
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: calc(var(--of-full-width) / -2);
  margin-right: calc(var(--of-full-width) / -2);
  margin-top: calc(var(--of-spacing-m) * -1);
  background-color: var(--bucchi-color-dark-blue);
  color: var(--of-color-text-light);
  text-transform: uppercase;
  font-weight: normal !important;
  font-size: var(--of-font-size-xl);
  letter-spacing: 12px;
  padding: var(--of-spacing-s) 0;
}
@media screen and (min-width: 600px) {
  .bucchi .static-page h1 {
    margin-top: calc(var(--of-spacing-xl) * -1);
  }
}
.bucchi .static-page h2 {
  font-size: var(--of-font-size-xl) !important;
  font-weight: bold !important;
  margin-bottom: 0 !important;
}
.bucchi .static-page page-builder-renderer {
  grid-gap: var(--of-spacing-xxl) !important;
  gap: var(--of-spacing-xxl) !important;
  width: 100%;
}
.bucchi .static-page page-builder-renderer > * {
  width: 100%;
}
.bucchi .static-page .image-text-block .title {
  font-size: var(--of-font-size-xl);
  color: var(--bucchi-color-dark-blue);
}
.bucchi .static-page .image-text-block .title:empty {
  display: none;
}
.bucchi .static-page .image-text-block.left, .bucchi .static-page .image-text-block.right {
  grid-gap: var(--of-spacing-m) !important;
  gap: var(--of-spacing-m) !important;
}
@media screen and (min-width: 900px) {
  .bucchi .static-page .image-text-block.left, .bucchi .static-page .image-text-block.right {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-gap: var(--of-spacing-xxl-2) !important;
    gap: var(--of-spacing-xxl-2) !important;
  }
}
.bucchi .static-page .image-text-block.left .text-content, .bucchi .static-page .image-text-block.right .text-content {
  width: unset !important;
  grid-area: text;
  align-self: center;
}
.bucchi .static-page .image-text-block.left .image-content, .bucchi .static-page .image-text-block.right .image-content {
  width: unset !important;
  grid-area: image;
  align-self: flex-start;
}
.bucchi .static-page .image-text-block.left {
  grid-template-areas: "image text";
}
.bucchi .static-page .image-text-block.right {
  grid-template-areas: "text image";
}
.bucchi .static-page p {
  font-size: var(--of-font-size-m) !important;
  line-height: 1.5;
}
.bucchi of-product-variants-table .product__code {
  font-size: var(--of-font-size-s) !important;
  opacity: 0.7 !important;
}
.header__desktop .header__right .header__right-bottom {
  grid-gap: var(--of-spacing-m) !important;
  gap: var(--of-spacing-m) !important;
}
.header__desktop .header__right .header__right-bottom of-header-categories .navigation {
  grid-gap: var(--of-spacing-l) !important;
  gap: var(--of-spacing-l) !important;
}
of-checkout-shipping-methods mat-radio-button .mat-radio-container {
  align-self: flex-start;
  margin-top: 10px;
}
@media print {
  #CookiebotWidget {
    display: none !important;
  }

  .attachment__info .button {
    display: none !important;
  }

  .product-details-block__info__product-info .print-btn {
    display: none !important;
  }
}
