.vyper-loader-div.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(0.7px);
}

.vyper-loader {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105px;
    height: 105px;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

.vyper-loader img {
    height: 100%;
    width: 100%;
    padding: 10px;
    background: white;
    border-radius: 50%;
    object-fit: contain;
    /* Maintain aspect ratio */
}

.vyper-loader:before,
.vyper-loader:after {
    content: '';
    border-radius: 50%;
    position: absolute;
    inset: 0;
    box-shadow: 0 0 1px 4px rgb(0 175 87) inset
}

.vyper-loader:after {
    box-shadow: 0 2px 1px 1px #ffffff inset;
    animation: rotate 2s linear infinite;
}

.vyper-loader.show {
    opacity: 1;
    visibility: visible;
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }

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