.loading-spinner {
    width: 48px;
    height: 48px;
    margin-left: calc(50% - 24px);
    border: 5px solid black;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*.sarno-custom-logo-container {
    position: relative;
    width: 250px;
    height: 63px;
}*/

.sarno-custom-logo-container {
    position: relative;
    width: 315px;
    height: 80px;
}

.sarno-custom-logo-container img {
    width: 315px;
    height: 80px;
    position: absolute; /* Stack the images on top of each other */
    top: 0;
    left: 0;
}

/* Default logo appears behind the custom one */
.custom-logo-default {
    z-index: 1;
    opacity: 1;
    transition: opacity 2s ease; /* Smooth transition for opacity to Fade-out */
}

/* Custom logo starts transparent */
.custom-logo {
    z-index: 2;
    opacity: 0;
    transition: opacity 2s ease; /* Smooth transition for opacity to Fade-in */
}

.sarno-custom-address-container {
    border-bottom-width: 3px;
    border-bottom-color: #eaeaea;
    border-bottom-style: solid;
    padding: 5px;
    position: sticky;
    top:83px;
    z-index:5;
    background: white;
}

.sarno-custom-address-container a {
    color: black;
}