#stockist-app-embed {
    display: none;
}

/* Spinner Loading Styles */
.scasl-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.3s ease-in-out;
}

.scasl-loading-overlay.show {
    display: flex;
}

.scasl-spinner-container {
    text-align: center;
    /* background: #fff; */
    /* padding: 30px; */
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

.scasl-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2b66a1;
    border-radius: 50%;
    animation: scasl-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes scasl-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.scasl-loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Mobile responsive spinner */
@media screen and (max-width: 768px) {
    .scasl-spinner-container {
        padding: 20px;
        margin: 20px;
    }

    .scasl-spinner {
        width: 40px;
        height: 40px;
    }
}
.scasl-spinner-container div:empty {
    display: block !important;
}
/* End */

gmp-place-autocomplete {
  --gmpx-color-on-surface: #333;
  --gmpx-color-surface: #f0f0f0;
  --gmpx-font-size-body-1: 16px;
  --gmpx-spacing-small: 8px;
  --gmpx-border-radius-large: 10px;
  color-scheme: light;
  float: left;
  clear: both;
  width: 77% !important;
  height: 46px;
  border: 1px solid #c8c8c8;
}