.chargement_contain {
    position: fixed;
    inset: 0 0 0 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 500;
}

.chargement_content {
    position: relative;
    width: fit-content;
    height: fit-content;
    inset: 50% 50%;
    transform: translate(-50%, -50%);
}

.chargement_dots_contain {
    width: 150px;
    display: flex;
    height: 20px;
    justify-content: center;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-blue-light);
    animation: dot 1s ease-in-out infinite;
}

.chargement_dots_contain .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.chargement_dots_contain .dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dot {
    0% {
        width: 10px;
        height: 10px;
        background-color: var(--color-blue-light);
    }
    50% {
        width: 20px;
        height: 20px;
        background-color: var(--color-blue-dark);
    }
    100% {
        width: 10px;
        height: 10px;
        background-color: var(--color-blue-light);
    }
}