.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #294298;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 20%;
    margin-top: -10px;
    margin-left: -10px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

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

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


.revealX {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s, transform 0.5s;
}

.revealX.active {
    opacity: 1;
    transform: translateX(0px);
}

.revealY {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.revealY.active {
    opacity: 1;
    transform: translateY(0);
}

.cola {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.collab_text {
    width: 85%;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
}

.container {
    width: 100% !important;

}

.contact_box {
    padding-left: 0px;
    padding-right: 0px;
    background-color: #ffffff;
}

#andaahLogo {
    border-radius: 3px;
}

.cont_img {
    width: 100%;
    height: 100%;
}

.mt-8 {
    margin-top: 8rem;
}

.mb-8 {
    margin-bottom: 8rem;
}

.mb-6 {
    margin-bottom: 6rem;
}

p {
    font-size: 12px;
}

input {
    border: 1px solid #d1c7c7;
}



.bg-primary {
    background-color: #d9232d !important;
    /* font-family:Verdana, Geneva, Tahoma, sans-serif!important; */

}

#result {
    display: none;
}

.form-control {
    height: 36px;
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    border-radius: 2px;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contactForm .form-control {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);

}

#inputSearch {
    padding: 23px;
}

.form-control:focus,
.form-control:active {
    border-color: #2a4397 !important;
}



.btn.btn-primary {
    background: #2a4397 !important;
    border-color: #2a4397 !important;
    color: #fff;
    width: 100px;
    border-radius: 2px !important;
    margin-top: 0px !important;
    padding: 11px;

}

.btn.btn-primary:hover {
    background-color: #455899 !important;
}

.p75 {
    padding: 0.75rem;
}

.clear-btn {
    border: 1px solid #2a4397;
    border-radius: 2px;

    /* margin-top: 4px; */
    color: #2a4397;
    background-color: #f8f9fa;
    padding: 11px;
}

.cursor-pointer {
    cursor: pointer;
}

.clear-btn:hover {
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background-color: #f3f6f9;
}

/* bnm */
.contactForm {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

label {
    position: absolute;
    top: 50%;
    left: 10px;
    padding-left: 10px;
    transform: translateY(-50%);
    transition: top 0.3s, font-size 0.3s;
}

input:focus+label,
input:not(:placeholder-shown)+label {
    top: 23px;
    font-size: 12px;
}

input {
    padding: 10px;
    border-radius: 3px;
}

.btn-primary {
    margin-top: 15px;
}

.output {
    position: relative;
    box-shadow: 0px 2px 15px rgba(85, 98, 112, 0.08);
    padding: 30px;
    border-radius: 4px;
    background: #f3f6f9;
    color: #294298;
    font-size: larger;
    font-weight: bold;
}

#debugSql {
    padding: 8px;
    padding-left: 30px;
}

#sqlCont {
    display: none;
}

#explanationCont {
    display: none;
}

.gap-10 {
    gap: 10px;
}

.suggestion {


    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    border-color: rgba(41, 66, 152);
    border-width: 1px;
    color: #294298;
    font-size: 12px;
    line-height: 1.25rem;
    border-style: solid;
    border-radius: 5px;
}

.mrgLeft {
    margin-left: -9px;
}

.mrgLeft12 {
    margin-left: -12px;
}

/* .fcaiLogo {
    background: #feeee7;
    border-radius: 5px;
    padding: 0 4px;
} */

.powered {
    padding-top: 10px;
}

td,
th {
    border: 1px solid #2a4397;
    padding: 10px;
}

th,
td {
    text-align: center;
}

td {
    font-weight: 500;
}

#fetchSQLQuery {
    overflow: auto;
}

.resultText {
    font-weight: bold;
    position: sticky;
    left: 0;
}

#fetchSQLQuery,
#explanation {
    font-weight: 500;
    font-size: medium;
}

.loading-container {
    display: flex;
    align-items: center;
}



.dot {
    width: 5px;
    height: 5px;
    background-color: #2a4397;
    border-radius: 50%;
    margin: 0 2px;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-top: 6px;
}

.dot-1 {
    animation: loadingAnimation 1.5s infinite ease-in-out;
}

.dot-2 {
    animation: loadingAnimation 1.5s infinite ease-in-out 0.5s;
    /* Delay the animation for the second dot */
}

.dot-3 {
    animation: loadingAnimation 1.5s infinite ease-in-out 0.1s;
    /* Delay the animation for the third dot */
}

@keyframes loadingAnimation {

    0%,
    100% {
        transform: translateY(0);
    }

    25%,
    75% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(-2px);
    }
}

.api_progress_cont {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #294298;
    justify-content: center;
    display: flex;
}

.hoz-line {
    width: 20%;
    height: 1px;
    background: #2a439795;
}

.api_check {
    display: flex;
    gap: 5px;
    align-items: center;
}

.api_check>img {
    border-radius: 5px;
}

#run-query-line {
    display: none;
}

#generate-query-line {
    display: none;
}

/* fixed state */


@media (max-width: 522px) {
    .api_progress_cont {
        flex-direction: column;
    }

    .hoz-line {
        display: none;
    }
}