

.application {
    position: relative;
    padding: 24px 0px;
    padding-top: 8px;
    background-color: #efe8da;
    background: linear-gradient(#ffffff, #efe8da);
    border-bottom: 2px solid #ac9449;
}
.application.active {
    border-top: 1px solid #ac9449;
}


/* FORM */

.application .application-form-box h2.application-header{
    text-align: center !important;
    display: inline-block !important;
}
.application .application-form-box{
    max-height: 0px;
    -webkit-transition: max-height 0.0s ease-in-out;
    -moz-transition:    max-height 0.0s ease-in-out;
    -ms-transition:     max-height 0.0s ease-in-out;
    -o-transition:      max-height 0.0s ease-in-out;
    transition:         max-height 0.0s ease-in-out; 
    overflow: hidden;
    text-align: center;
}
.application.active .application-form-box{
    max-height: 1000px;
    -webkit-transition: max-height 0.9s ease-in-out;
    -moz-transition:    max-height 0.9s ease-in-out;
    -ms-transition:     max-height 0.9s ease-in-out;
    -o-transition:      max-height 0.9s ease-in-out;
    transition:         max-height 0.9s ease-in-out; 
}


/* CLOSE */

.application .application-close{
    display: none;
    position: absolute;
    top: 8px;
    right: 16px;
    color: #005ea8;
    font-size: 120%;
    cursor: pointer;
}
.application .application-close:hover{
    color: #000;
}

.application.active .application-close{
    display: block;
}




/* BTN */

.application .application-btn-box{
    text-align: center;
}
.application .application-header{
    margin-top:0px;
}
.application.active .application-btn-box{
    display: none;
    text-align: center;
}
.application .application-btn{
    margin: auto;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: #d6c7a2;
    border: 1px solid #005ea8;
    font-size: 150%;
    color: #e32119;
    cursor: pointer;
    box-shadow: 0px 8px 12px -6px #444;
}
.application .application-btn *{
    margin: 0px;
    padding: 0px;
    font-size: inherit;
    color: inherit;
    display: inline;
}
.hovercover{
    position: relative;
    z-index: 0;   
    overflow: hidden;
}
.hovercover:before{
    content:'';
    position: absolute;
    left:0px;
    top:0px;
    width:100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    z-index: 1;
}
.hovercover:hover:before{
    opacity: .15;   
}