/**
* 2021 Floa BANK
*
* THE MIT LICENSE
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
* to permit persons to whom the Software is furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*
* @author    FLOA Bank
* @copyright 2021 FLOA Bank
* @license   https://opensource.org/licenses/MIT The MIT License
*/
.floa-eligibility-form{
    display: flex;
    border: 1px solid #eee;
    width: 100%;
}
.floa-eligibility-form .floa-eligibility-form-left{
    flex: 40%;
    background: #F6F6F8;
    padding: 15px;
}
.floa-eligibility-form .floa-eligibility-form-left img{
    max-width: 70%;
}
.floa-eligibility-form .floa-eligibility-form-left .floa-eligibility-form-left-title {
    text-align: center;
    color: #009FFF;
    font-size: 1.2em;
    text-transform: uppercase;
    margin: 1rem;
}
.floa-eligibility-form .floa-eligibility-form-left .floa-eligibility-form-left-subtitle {
    text-align: center;
    color: #B9B6B6;
    text-transform: uppercase;
    font-size: 1.2rem;
}
.floa-eligibility-form .floa-eligibility-form-left .floa-eligibility-form-left-amount {
    text-align: center;
    color: #009FFF;
    font-size: 2em;
    margin: 0;
}
.floa-eligibility-form .floa-eligibility-form-left .floa-eligibility-form-left-fees {
    text-align: center;
    font-size: 1rem;
    color: #999 !important;
    display: block;
}
.floa-eligibility-form .floa-eligibility-form-left .floa-eligibility-form-left-plan {
    margin-top: 1.2rem;
}
.floa-eligibility-form .floa-eligibility-form-left .floa-eligibility-form-left-plan .floa-eligibility-form-left-plan-title {
    font-weight: bold;
}
.floa-eligibility-form .floa-eligibility-form-left .floa-eligibility-form-left-plan .floa-eligibility-form-left-plan-item {
    color: #B9B6B6;
    margin: 5px 0;
}
.floa-eligibility-form .floa-eligibility-form-left .floa-eligibility-form-left-plan .floa-eligibility-form-left-plan-item span.floa-eligibility-form-left-plan-item-amount {
    color: #009FFF;
}
.floa-eligibility-form .floa-eligibility-form-left .floa-eligibility-form-left-infos {
    text-align: justify;
    font-size: 1.2rem;
    margin-top: 1rem;
}
.floa-eligibility-form .floa-eligibility-form-right{
    flex: 60%;
    padding: 15px;
}
.floa-eligibility-form .floa-eligibility-form-right input[type="date"]{
    background: #ffffff;
    background-clip: border-box;
    background-clip: padding-box;
    border: 1px solid #c2c2c2;
    border-radius: 1px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    height: 32px;
    line-height: 1.42857143;
    padding: 0 9px;
    vertical-align: baseline;
    box-sizing: border-box;
}
.floa-eligibility-form .floa-eligibility-form-right .field .control.w50{
    width: 50%;
    float: left;
}
.floa-eligibility-form .floa-eligibility-form-right .field .birthdate{
    width: 90%;
}
@media screen and (max-width: 600px) {
    .floa-eligibility-form .floa-eligibility-form-left,
    .floa-eligibility-form .floa-eligibility-form-right {
        flex: 100%;
    }
}