﻿.form-control:focus,
.form-select:focus,
.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.myspinner {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3498db;
    animation: bounce 0.5s infinite alternate;
}

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

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

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@media print {
    .noprint {
        display: none !important;
    }
}
