.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;
  }
}
.tecnoplast-non-catalogue-product-dialog-panel {
  max-width: 690px !important;
  width: 90vw !important;
}
@media screen and (min-width: 900px) {
  .external-page .logo__wrapper {
    padding-top: var(--of-spacing-xxl-1) !important;
  }
}
.external-page .logo__wrapper .logo {
  max-width: 480px !important;
  width: 80% !important;
}
.multi-question.accessori_extra .checkbox-group {
  display: flex !important;
  flex-direction: column !important;
}
.multi-question.accessori_extra .checkbox-group .mat-checkbox-layout {
  width: unset !important;
}
.multi-question.accessori_extra .checkbox-group .info-container {
  flex-direction: row-reverse !important;
  grid-gap: var(--of-spacing-xxs);
  gap: var(--of-spacing-xxs);
}
.totals__wrapper .totals__rows .totals__subtotal {
  order: 0;
}
.totals__wrapper .totals__rows .totals__discount {
  order: 1;
}
.totals__wrapper .totals__rows .totals__tax {
  order: 2;
}
