.text_font_color{
    color:#09396f;
}
.disable_form {
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    height: 1005 ;
    background-color: #fff;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.4;
}
.not-sumit {
    width: 100%;
    height: 50px;
    font-size: 20px;
    border: 0;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}
.not-sumit:hover {
    font-weight: bold;
    border: 1px solid;
    transition: all 0.2s ease;
}
@media  (min-width: 376px) and (max-width: 575.98px) { 
    .banner {
        height: 340px !important;
    }   
}
@media (min-width: 426px) and (max-width: 768px) { 
    .banner {
        height: 615px !important;
    } 
}
.padding-ip {
    margin-bottom : 5px;
    margin-top : 5px;
}
.inp {
    height: 52px;
    padding-left: 10px;
    padding-right: 5px;
    padding: 0px;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    position: relative;
    margin: auto;
    width: 100%;
}
.inp .label {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 22px;
    color: #9098a9;
    font-weight: 500;
    transform-origin: 0 0;
    transition: all 0.2s ease;
}
.inp .border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #07f;
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: all 0.15s ease;
}
.inp input {
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    padding: 20px 22px 0px 10px;
    height: 48px;
    font-size: 25px;
    font-weight: 500;
    /* border-bottom: 2px solid  #09396f; */
    background: none;
    border-radius: 0;
    color: #09396f !important;
    transition: all 0.15s ease;
}
.inp input:hover {
    background: rgba(34,50,84,0.03);
}
.inp input:focus + span + .border {
    transform: scaleX(1);
    border: 1px solid #09396f !important;
}
.inp input:not(:placeholder-shown)+ span + .border{
    transform: scaleX(1);
    border: 1px solid #09396f !important;
}
.inp input:not(:placeholder-shown)+ span {
    color: #09396f;
    transform: translateY(-11px) scale(0.9);
}
.inp input:focus {
    background: none;
    outline: none;
}
.inp input:focus + span {
    color: #09396f;
    transform: translateY(-11px) scale(0.75);
}

/*SPINNER*/
.lds-ring {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border: 6px solid #09396f;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #09396f transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* IS VALID */
.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + .75rem);
    background-image: url();
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url();
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}
.is-validspan {
    float: right;
    margin-right: 6px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    color: #28a745;
}

.is-valid-icon {
    background: url('/RegisterCampaign/images/checked.png');
    position:absolute;
    bottom:15px;
    right:5px;
    width:16px;
    height:16px;
}
.is-invalid-icon {
    background: url('/RegisterCampaign/images/error.png') !important;
    position:absolute !important;
    bottom:15px !important;
    right:5px !important;
    width:16px !important;
    height:16px !important;
}
.border-is-valid{
    border-color : #28a745;
}
.border-is-invalid{
    border-color : red;
}
.padding-zero{
    padding:0px;
}