.spinner-border {
    width: 20px;
    height: 20px;
}

.required-label:after {
    content: "*";
    color: red;
    margin-left: 5px;
}

.choices__list--dropdown {
    z-index: 9999;
}

.form-check-info {
    font-size: large;
}

.is-normal {
    font-size: large;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px 12px;
    justify-items: center;
}

.image-card {
    width: 110px;
    text-align: center;
    transition: transform 0.2s;
    cursor: pointer;
}

    .image-card:hover {
        transform: scale(1.05);
    }

.progress-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: #f8f9fa;
}


.rotate-img {
    animation-name: spinner;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 6s;
    transform-style: preserve-3d;
}

@keyframes spinner {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}




