.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;
}
.product__other-details {
  max-height: unset !important;
}
@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;
  }
}
.no-srp {
  color: var(--of-color-brand);
}
of-product-grid .product {
  display: flex;
  flex-direction: column;
  grid-gap: var(--of-spacing-xs) !important;
  gap: var(--of-spacing-xs) !important;
}
of-product-grid .product .product__image {
  display: flex;
  flex-direction: column;
  grid-gap: var(--of-spacing-s);
  gap: var(--of-spacing-s);
}
of-product-grid .product .product__image .flags.top-left {
  flex-direction: row !important;
  flex-wrap: wrap;
  position: static !important;
  transform-origin: left;
  transform: scale(0.8);
}
of-product-grid .product .product__image .flags.top-left .flags__flag {
  padding: 4px;
}
of-product-grid .product .product__code__availability {
  flex-direction: row-reverse;
  justify-content: flex-end !important;
  grid-gap: var(--of-spacing-xs) !important;
  gap: var(--of-spacing-xs) !important;
}
