.short_form{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.short_form .input-field input[type="text"],
.short_form .input-field input
{
    width: 100%;
}
.short_form  .input-field.small{
    width: 50%;
    margin: 0 0 12px;
}
.short_form select{
    height: 40px;
    line-height: 40px;
    border: 1px solid #bdbdbd;
    padding-left: 15px;
    color: #000;
    font-family: 'Open Sans',sans-serif;
    font-weight: 300;
    font-size: 16px;
    -webkit-transition: all 0.3s ease-in-out;
}
.short_form button.apply_now{
    width: 50%;
    height: 60px;
    line-height: 60px;
    text-transform: uppercase;
    font-family: 'Open Sans',sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    padding: 0;
    text-align: center;
    color: #fff;
}


.loader_continer{
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99;
    opacity: 0.8;
}
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 300px;
    left: 50%;
    z-index: 999;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
