/* Overlay styles */
   .overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(15px);
    z-index: 1001;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;   
    flex-direction: column;
}
.overlay__content p {margin-top: 20px;}
 .overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    display: inline-block;
    border-width: 5px;
    border-color: yellow;
    border-top-color: #00f;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
    background: #fff;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.chip {
    background: #b5e0f6;
    display: table;
    padding: 0px 0 0px 15px;
    border-radius: 25px;
    color: #000;
}
    .chip a {
        padding: 10px 15px;
        background: #222222;
        margin: 0;
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
        color: #fff;
    }