﻿.fhf-results-form-section .fhf-formtitle {
    color: #0F529F;
    font-size: 32px;
}

@media screen and (max-width:992px) {
    .fhf-results-form-section .fhf-formtitle {
        color: #0F529F;
        font-size: 24px;
    }
}

.fhf-results-form-section .form-select {
    text-transform: capitalize;
}

.fhf-results-form-section #FacilityProviderForm {

}

@media screen and (max-width:992px) {
    .fhf-results-form-section #FacilityProviderSection {
        padding: 2rem;
    }
}

.fhf-results-form-section #FacilityProviderSection select {
    border-radius: 0 !important;
    border-color: #1B3966 !important;
    border-width: 2px !important;
}

.fhf-results-form-section #FacilityProviderSection input {
    border-radius: 0 !important;
    border-color: #1B3966 !important;
    border-width: 2px !important;
}

.fhf-results-form-section #allFacilities select {
    border-radius: 0 !important;
    border-color: #1B3966 !important;
    border-width: 2px !important;
}

.fhf-results-form-section #allFacilities input {
    border-radius: 0 !important;
    border-color: #1B3966 !important;
    border-width: 2px !important;
}
.fhf-results-form-section .form-text {
    color: #1B3966;
    font-weight: 500;
}

.fhf-results-form-section .form-label {
    color: #1B3966;
    font-weight: 500;
}

.fhf-results-form-section #FacilityProviderSection #submitBtn {
    background-color: #013e7f;
    border-color: #013e7f;
    color: white;
    text-decoration: none;
}

.fhf-results-form-section #submitBtn:hover {
    background: #383838 !important;
    border-color: #cccccc !important;
    color: rgba(255,255,255,1) !important;
}


.fhf-results-form-section .additionalOptions {
    margin-top: 0rem;
    margin-bottom: 1.5rem;
}
.fhf-results-form-section .isDisabled {
    pointer-events: none;
    text-decoration: none;
}
.fhf-results-form-section #submitBtnforAllFacilities {
    background-color: #1B3966;
    border-color: #1B3966;
    color: white;
    text-decoration: none;
}
.fhf-datatable th:nth-child(n+2), .fhf-datatable td:nth-child(n+2) {
    text-align: center !important;
}

/* Preloder */

#preloder {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: transparent;
}

.loader {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #CA0042;
        /* border: 4px solid #f44336; */
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #CA0042;
        /* border: 4px solid #673ab7; */
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #CA0042;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #CA0042;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #CA0042;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #CA0042;
        border-left-color: transparent;
    }
}