.spin {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid #D1D4D9;
    border-top-color: #0077FF;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0turn);
    }
    100% {
        transform: rotate(1turn);
    }
}

.modal-content {
    margin: auto;
    width: 200px;
    height: 200px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-body h5 {
    font-size: 16px;
    margin-top: 20px;
}

.check {
    font-size: 48px;
    color: #0077FF !important;
    margin-bottom: -15px;
}

@media screen and (min-width: 0) and (max-width: 576px) {
    .modal-content {
        width: 150px;
        height: 150px;
    }

    .spin {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 3px solid #D1D4D9;
        border-top-color: #0077FF;
        animation: spin 1s infinite linear;
    }

    .modal-body h5 {
        font-size: 12px;
        margin-top: 10px;
    }

    .modal-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .check {
        font-size: 32px;
        color: #0077FF !important;
        margin-bottom: -5px;
    }
}