﻿.vitacura-loading-overlay {
   position: fixed;
   inset: 0;
   background: rgba(235, 238, 240, .85);
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 99999;
}

.vitacura-loading-overlay.hidden {
   display: none;
}

.vitacura-loading-container {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   transform: translateX(-8%);
}

.vitacura-loading-logo {
   vertical-align:text-top;
   width: 100px;
   display: block;
   position: absolute;
   height: auto;
   pointer-events: none;
   transform: translateY(-15px);
}

.vitacura-loading-spinner {
   --bs-spinner-animation-speed: 1.5s;
}

.vitacura-loading-text {
   color: var(--vitacura-dark);
   font-size: 1rem;
   font-weight: 600;
   line-height: 1.4;
   margin: 0;
}

@media (max-width: 991px) {

   .vitacura-loading-container {
      transform: none;
   }

   .vitacura-loading-logo {
      width: 100px;
   }

   .vitacura-loading-spinner {
      transform: scale(1.15);
   }

   .vitacura-loading-text {
      font-size: .95rem;
   }
}
