/*Loading animation*/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: #ffffff;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #333;
    animation: zoom 1s ease-in-out infinite;
}

@keyframes zoom {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}