.ajax-loading {
    text-align: top;
    margin-top: 3px;
}

.xxa{
    color: green;
    text-align: center;
}

.flex-form-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.aa {
    margin-top: 10px;
    width: 100%;

}

.bb {
    width: 100%;
    text-align: center;
}

.dd {
    width: 100%;
    margin-bottom: 10px;
}

.cc {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.ee {
    width: 100%;
}

.hidex {
    display: none;
}

@media (max-width: 991px) {
    .banner-sec {
        display: none;
    }
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin-top: 10px;
}

.error {
    color: red;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}