﻿.valid_error {
    color: red !important;
    font-size: 13px;
    font-weight: normal !important;
}
.form-control.valid_error {
    border: 1px solid red
}
.recaptcha-error {
    color: red !important;
    font-size: 13px;
    font-weight: normal !important;
}
.mdl-textfield__label1 {
    /* bottom: 0; */
    color: rgba(0, 0, 0, 0.26);
    font-size: 16px;
    left: 0;
    right: 0;
    pointer-events: none;
    position: absolute;
    top: 0px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
}
.morecontent span {
    display: none;
}
.morelink {
    display: block;
}
.morelink {
    color: #edac15 !important;
}
.morelink:active,
.morelink:focus,
.morelink:hover {
    font-weight: 600;
    color: #ed488a !important;
    text-decoration: none;
}
.invalid-feedback {
    margin-top: 2.5rem !important;
}
.form-floating > .form-control:focus ~ label.invalid-feedback, .form-floating > .form-control:not(:placeholder-shown) ~ label.invalid-feedback, .form-floating > .form-select ~ label.invalid-feedback {
    margin-top: 3.2rem !important;
}
#cont_us_msg-error
{
    display:contents;
}
.alert button.close {
    float: right;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999999;
}
    /* Loader logo */
    #loader img {
        width: 120px;
        animation: pulse 1.5s infinite ease-in-out;
    }
/* Pulse effect */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}