/* Form */

.f-pd-t {
    padding-top: 2%;
}

.form-holder {
    border: none;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 18px 45px 0px rgba(0, 0, 0, .14);
    transition: transform .6s cubic-bezier(.165, .84, .44, 1);
    animation-duration: 1.4s;
    animation-delay: .3s;
    animation-timing-function: cubic-bezier(.19, 1, .22, 1);
    color: #202020;
}

.form-body {
    padding: 30px 15px 30px 15px;
}

.form-header {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 20px 15px 20px 15px;
    background-color: #09aeb8;
    color: #ffffff;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6em;
}

.cta-holder .sub {
    margin-top: 25px;
    position: relative;
    clear: both;
}

.titref {
    color: #acacac;
    text-align: justify;
    line-height: 1.5em!important;
    font: 700 11px Roboto, sans-serif;
    padding: 20px 3% 10px
}

select.custom {
    background-image: url(../../img/drop.png);
    padding-right: 20px;
    background-repeat: no-repeat;
    background-position: 95% center;
    -webkit-appearance: none;
    -moz-appearance: none
}

select.custom::-ms-expand {
    display: none
}

::placeholder {
    /* Firefox, Chrome, Opera */
    color: #111111!important;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #111111!important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #111111!important;
}

.form-control {
    height: 49px;
    margin-bottom: 10px;
    color: #111111;
    background-color: #ffffff;
    border: 1px solid #e6eaf0;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #09aeb8;
    background-color: #fbfbfb;
    border-width: 2px;
    color: #222222;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.sub {
    width: 270px;
    background-image: linear-gradient(to right, #ffd763, #09aeb8, #09aeb8, #ffd763);
    box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.2);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 14px 20px;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.sub:hover {
    background-position: 100% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.sub:focus,
.sub:hover {
    color: #fff;
    border: none
}

.mention-form {
    color: #1860de;
}

.vcenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.sub:focus {
    background-color: #888;
    outline-width: 0!important
}

.inline-radio {
    display: flex;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #b6b6b6;
}

.inline-radio div {
    position: relative;
    flex: 1;
}

.inline-radio input {
    width: 100%;
    height: 49px;
    opacity: 0;
    border-radius: 5px;
    font-weight: 400;
}

.inline-radio label {
    position: absolute;
    top: 0;
    left: 0;
    color: #333;
    font-weight:normal;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-right: 1px solid #b6b6b6;
}

.inline-radio div:last-child label {
    border-right: 0;
    
}

.inline-radio input:checked + label {
    background: #ffd763;
    font-weight: 400;
    color: #fff;
}

.lbl {
    font-weight: normal;
    font-size: 12.5px;
}