:root {
    --ms-ring-color: transparent;
    --ms-option-bg-selected: grey;
    --ms-option-bg-selected-pointed: grey;
    --ms-font-size: 15px;
    --ms-tag-font-size: 15px;
    --ms-option-font-size: 15px;
}

.loading {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%);
    display: flex;
}

.dot {
    position: relative;
    width: 20px;
    height: 20px;
    background: linear-gradient(to bottom, #FF284E, #FF4E9A);
    margin: 5px;
    border-radius: 50%;
}

.dot::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(242, 14, 59, 0.4);
    border-radius: inherit;
    animation: wave 1.6s ease-out infinite;
}

@keyframes wave {
    from {
        width: 200%;
        height: 200%;
        opacity: 1;
    }

    to {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}


.dot:nth-child(1)::before {
    animation-delay: 0s;
}

.dot:nth-child(2)::before {
    animation-delay: 0.3s;
}

.dot:nth-child(3)::before {
    animation-delay: 0.6s;
}

.dot:nth-child(4)::before {
    animation-delay: 0.9s;
}

.dot:nth-child(5)::before {
    animation-delay: 1.3s;
}