/* FORM.CSS */
:root {
    --ancho-web:1400px;
    --input-height:3.2em;

    /* colores */
    --bg-light:#f2f2f3;
    --corp:#8f3237;
    --text-color:#353536;
    --correct:#13c115;

    --roboto:'Roboto',sans-serif;
    --input-size:13px;
    --fundido:all .12s ease-in-out;
}
.material-icons{
    font-size: inherit !important;
}

/* previo al formulario */
form {
    margin: 0 auto;
    width: unset;
    text-align: left;
}
.footer {
    background: #b4c8f3 !important;
    text-align: center;
}
.gris {
    background: rgba(50,60,70,.7);
    backdrop-filter: blur(64px) saturate(2);
    -webkit-backdrop-filter: blur(64px) saturate(2);
}
.contenido-formulario.popup {
    z-index: 20;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    margin-left: unset;
    max-width: var(--ancho-web);
    max-height: 100%;
    padding: 1em;
    background: #b4c8f3;
    border-radius: .3em;
    box-shadow: 0 4em 3em -3em;
    overflow-y: auto;
}
.salir {
    z-index: 9;
    position: sticky;
    position: -webkit-sticky;
    display: none;
    top: 0;
    right: 0;
    margin: 0 0 0 auto;
    width: 1em;
    height: 1em;
    background: transparent;
    font-size: 3em;
    color: rgba(255,255,255,0);
    border-radius: 1em;
    cursor: pointer;
    transition: all .1s ease-in-out;
    will-change: background;
}
.salir::after {
    position: absolute;
    left: .24em;
    top: -.1em;
    content: '×';
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,.166);
}
.salir:hover,
.salir:focus {
    background: rgba(0,0,0,.4);
}
.salir:active {
    background: #000;
}
h1.texto-formulario {
    margin: 0 auto;
    width: calc(100% - 80px);
    max-width: 310px;
    text-align: center;
    font-size: 1.3em;
    line-height: 1.35;
    font-weight: 500;
    color: var(--text-color);
    text-shadow: unset;
}
/* estructura cobertura formulario */
#form_contactar_multilanding .hide {
    display:none;
}
#condiciones_cbx, #condiciones_chbx {
    display: block;
}
#form_contactar_multilanding h2 {
    width: 245px;
    margin-bottom: .2em;
    font-size: 24px;
}
/*≈≈≈≈ Start ≈≈≈≈≈*/

.envoltorio-titulares-form {
    float: left;
    max-width: 245px;
}
.contenido-formulario-multilanding {
    width: calc(100% - 80px);
    margin: 0 auto;
    font-size: 16px;
}
.formcol__container {
    margin: 4em auto 0;
    display: flex;
    max-width: 850px;
    flex-wrap: wrap;
    flex: 1 1 0;
    gap: 2em;
    justify-content: space-evenly;
}
@media screen and (max-width: 745px) {
    .formcol__container {
        flex-direction: column;
        align-items: center;
    }
}
.formcol__container>div{
    flex-basis: 290px;
    max-width: 290px;
}

/**  Avales  **/
.formcol__avales {
    max-width: 210px !important;
    order: -1;
    margin-bottom: 3em
}
@media screen and (max-width: 745px) {
    .formcol__avales {
        order: 1;
    }
}


.formcol__avales-cab {
    margin: 1em auto .5em;
    text-align: center;
    font-size: 1.2em !important;
    line-height: 1.35;
    font-weight: 500;
}
.formcol {
    padding-top: 16px;
}

.formcol__input-text .iti--allow-dropdown input[type="tel"] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0;
}
.formcol__input-text input {
    display: block;
    margin: 0;
    min-width: 100%;
    height: var(--input-height);
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 11px;
    font-family: var(--roboto);
    font-size: var(--input-size);
    vertical-align: middle;
    letter-spacing: .166px;
    background: #fff;
    color: var(--text-color);
    border: 0;
    border-bottom: 2px solid #bbb;
    border-radius: 5px 5px 0 0;
}
.field-form.--input-correct input, .field-form.--input-correct #telefono, .field-form.--input-correct textarea {
    border-bottom: 2px solid var(--correct) !important;
}
.field-form.--input-error input, .field-form.--input-error #telefono, .field-form.--input-error textarea {
    border-bottom: 2px solid #ff4545 !important;
}
.landing-form .field-form input:focus, .landing-form .field-form #telefono:focus, .landing-form .field-form textarea:focus {
    outline: none;
    border-bottom: 2px solid #39acef !important;
}
/* animaciones borde select */
.select2-container--default .select2-selection--single, .contenido-landing .contenido-formulario-multilanding .iti__selected-flag {
    position: relative;
}
.select2-container--default .select2-selection--single:focus, .contenido-formulario-multilanding .iti__selected-flag:focus {
    outline: none;
    border-color: #fff;
}
.select2-container--default .select2-selection--single:after, .contenido-landing .contenido-formulario-multilanding .iti__selected-flag:after {
    content: '';
    position: absolute;
    bottom: -1px;
    Left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 2px;
    background: #39acef;
    transition: var(--fundido)
}
.--input-correct .select2-container--default .select2-selection--single:after {
    background: var(--correct);
    width: 100%;
}
.landing-form .field-form input:focus:after, .select2-container--default .select2-selection--single:focus:after, .contenido-landing .contenido-formulario-multilanding .iti__selected-flag:focus:after {
    width: 100%;
}
/*cierre de animaciones */
.formcol__input-text .iti {
    width: 100%;
}
.iti__selected-flag:focus {
    box-shadow: none;
    outline: 0;
}
.iti__flag {
    transform: scale(.6) !important;
}
.formcol__input-text .iti .iti__country-list {
    z-index: 999;
    top: 40px;
    max-height: 170px;
    max-width: 210px;
    border: 0;
    border-radius:5px;
    overflow-x: hidden;
    box-shadow: 0 1em 1em -1em rgba(70,0,0,.3);
}
.formcol__input-text .iti .iti__country-list li {
    display: block;
    width: 100%;
    margin: 0;
}
.formcol__input-text .iti .iti__country-list::-webkit-scrollbar {
    width: 4px;
}
.formcol__input-text .iti__country:nth-child(odd) {
    background: var(--bg-light);
}
.formcol__input-text .iti__highlight {
    background: #2883b8 !important;
    color: #fff;
}
.formcol__select, .formcol__input-text{
    width: 100%;
    height: calc( var( --input-height ) + 2.2em );
}
.formcol__select.field-curso {
    width: 100%;
}
.formcol__select .select2-container .select2-selection {
    border: 0;
    border-bottom: 1px solid #bbb;
    border-radius: 5px 5px 0 0 !important;
    padding: 6px 8px;
    height: var(--input-height);
    font-size: var(--input-size);
    color: var(--text-color)
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 4px !important;
    font-size: var(--input-size);
    color: var(--text-color)
}
.select2-container--default .select2-results > .select2-results__options {
    max-height: 245px !important;
}
.select2-results__options li:nth-of-type(even) {
    background: var(--bg-light);
}
.formcol__select .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px;
    right: 10px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder, .formcol input, .formcol input::placeholder {
    font-size: var(--input-size);
    color: var(--text-color) !important;
}
.select2-dropdown {
    z-index: 999999!important;
    top: 4px;
    border: 0 !important;
    border-radius: 5px !important;
    overflow: hidden;
    box-shadow: 0 1em 1em -.5em rgba(70,0,0,.3);
}
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 4px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 0 !important;
    border-bottom: thin solid #bbb !important;
    border-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    box-shadow: none;
    outline: var(--corp);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    color: var(--text-color) !important;
}
.select2-results__option {
    padding: 0;
}
.select2-container--default .select2-results__option[role=group] {
    background: #f8f8f9;
}
#select2-curso-results .select2-results__option li:nth-child(even){
    background: #fff;
}
.select2-container--default .select2-results__group {
    background: #e8e8e9;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #2883b8 !important;
    color: #fff !important;
}
.formcol__row-switch {
    display: flex;
    clear: both;
    margin: 1em 0 0;
}
.formcol__row-switch input {
    display: inline-block;
    width: 1.5em;
    margin: -.25em 1em 0 0;
    background: var(--bg-light);
}
.formcol__row-switch label {
    display: inline-block;
    width: calc(100% - 4em);
    margin: 0;
}
.formcol__row-switch p {
    font-size: .8em !important;
    line-height: 1.3;
    letter-spacing: .166px;
}
.formcol__row-switch a {
    font-weight: 500;
    letter-spacing: .333px;
    color: inherit;
    text-decoration: none !important;
}
.formcol__row-switch a:hover {
    text-decoration: underline !important;
}
.formcol__submit.disabled, .formcol__submit:hover.disabled {
    background: #3162d6;
    filter: contrast(0.6);
}
.formcol__submit {
    display: inline-block;
    float: right;
    margin: 1.2em 0 3em;
    min-width: 50%;
    width: calc(100% - 2em);
    height: var(--input-height);
    padding: .9em 1.5em;
    background: #3162d6;
    vertical-align: middle;
    text-align: center;
    letter-spacing: .333px;
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    font-weight: 500!important;
    border-radius: 5px;
    transition: var(--fundido);
    text-decoration: none;
    box-shadow: 0 .5em .5em -.4em rgba(0,0,0,.3);
}
.formcol .formcol__submit:hover {
    filter: brightness(1.2);
}
.formcol .formcol__submit:active {
    filter: brightness(1.4);
    transition: none;
}
.formcol .formcol__submit .text-button-send i {
    vertical-align: bottom;
}

/*≈≈≈≈ formcol  ≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈*/
.landing-form {
    position: relative;
    top: -1.5em;
    font-size: 12px;
    font-family: var(--roboto);
}
.landing-form .field-form {
    position: relative;
    margin: 0;
    padding: 0;
    border-radius: 5px 5px 0 0;
}
.landing-form .field-form .field-error {
    top: -4.4em !important;
    left: 1em;
    font-size: .8em;
    line-height: 1;
    letter-spacing: .6666px;
    color: #870000;
    cursor: help;
}
.landing-form .field-form .select2 + .field-error {
    right: 30px;
}
.landing-form .field-form .select2 + .field-error {
    right: 2em;
}
.landing-form .field-form .field-correct.date, i#correct_fecha_nacimiento {
    right: 4em
}
::-webkit-datetime-edit {
    font-family: var(--roboto);
    color: var(--text-color);
}
.ui-datepicker {
    margin: -6px 1px 2px;
    width: 244px;
    padding: .2em .2em 0;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 8px 16px -8px rgba(0,0,0,.3);
}
.ui-datepicker .ui-datepicker-prev {
    left: 8px;
    transform: rotate(-90deg);
}
.ui-datepicker .ui-datepicker-next {
    right: 8px;
    transform: rotate(90deg);
}
.ui-datepicker .ui-datepicker-title select {
    font-size: .8em;
    margin: 0 2px;
    padding: .4em;
    border: unset;
    color: #000;
    background: #ddd;
    border-radius: 3px;
}
table.ui-datepicker-calendar thead {
    display: none;
}
.ui-button, .ui-state-default, html .ui-button.ui-state-disabled:active, html .ui-button.ui-state-disabled:hover {
    border: unset;
    background: #eee;
    font-weight: 400;
    color: var(--text-color);
}
.landing-form .linea-checkbox label p {
    font-size: 10px;
    padding-left: 38px;
    font-weight: 400;
    line-height: 1.4;
    cursor: default;
}
.linea-checkbox {
    padding: 0.4em 0;
    margin: 0;
}
.landing-form .linea-checkbox label p strong {
    font-weight: inherit;
    letter-spacing: inherit;
}
.landing-form .linea-checkbox label p a {
    text-decoration: none;
    font-weight: 700;
    color: inherit;
    letter-spacing: .16px;
    mix-blend-mode: multiply;
    cursor: pointer;
}
.landing-form .linea-checkbox label p a:hover {
    text-decoration: underline;
}
.landing-form .field-form .field-correct {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.7em !important;
    color: var(--correct);
}
.landing-form label {
    width: auto;
}
.landing-form .linea-checkbox {
    clear: both;
}
.landing-form .field-form .field-label {
    z-index: 100 !important;
    position: absolute;
    top: -12px !important;
    left: 1.3em !important;
    font-size: 0.75em;
    font-weight: 500;
    letter-spacing: .6666px;
    color: rgba(0,0,0,.75);
    *text-shadow: 0 0 6px #fff;
    transition: all .18s ease-out;
    text-transform: uppercase;
}



/*Switchbox*/
.cbx{
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
}
.cbx span, .cbx label.box {
    display: inline-block;
    vertical-align: middle;
    cursor: text;
}
.cbx span:first-child, .cbx label.box:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    vertical-align: middle;
    border: 0;
    transition: var(--fundido);
    background-color: #656570;
    cursor: pointer;
}

.cbx label.box:first-child svg, .cbx span:first-child svg {
    position: absolute;
    top: -1px;
    left: -1px;
    fill: #fff;
    stroke-width: 0;
    transition: var(--fundido);
    transition-delay: .1s;
    transform: translate3d(0,0,0);
}

.cbx label.box:first-child:before, .rdb label.box:first-child:before, .cbx span:first-child:before, .rdb span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.cbx label.box:last-child, .cbx span:last-child {
    padding-left: 8px;
}
.cbx:hover label.box:first-child, .cbx:hover span:first-child {
    border-color: #666666;
}
.inp-cbx:checked + .cbx label.box:first-child, .inp-cbx:checked + .cbx span:first-child {
    background: var(--correct);
    animation: wave 0.4s ease;
    width: 26px !important;
}

.inp-cbx:checked + .cbx label.box svg, .inp-cbx:checked + .cbx span svg {
    left: 11px;
    fill: #fff;
    animation: wave 0.2s ease;
}

.inp-cbx:checked + .cbx label.box:first-child:before, .inp-cbx:checked + .cbx span:first-child:before {
    opacity: 0;
    transition: all .6s ease;
}

/* Checkbox */
.chbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
}
.chbx span, .chbx label.box {
    display: inline-block;
    vertical-align: middle;
    cursor: text;
}

.chbx span:first-child, .chbx label.box:first-child {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    vertical-align: middle;
    border: 1px solid #222222;
    transition: var(--fundido);
    background-color: #ffffff;
    cursor: pointer;
}

.chbx label.box:first-child:before, .chbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.chbx label.box:last-child, .chbx span:last-child {
    padding-left: 8px;
}
.chbx label.box:first-child svg, .chbx span:first-child svg {
    display:none;
    position: absolute;
    top: -2px;
    left: -2px;
    fill: #fff;
    stroke-width: 0;
    transition: var(--fundido);
    transition-delay: .1s;
    transform: translate3d(0,0,0);
}

.chbx:hover label.box:first-child, .chbx:hover span:first-child {
    border-color: #666666;
}

.inp-chbx:checked + .chbx label.box:first-child, .inp-chbx:checked + .chbx span:first-child {
    background: var(--correct);
    animation: wave 0.4s ease;
}

.inp-chbx:checked + .chbx label.box svg, .inp-chbx:checked + .chbx span svg {
    display: block;
    fill: #fff;
    animation: wave 0.2s ease;
}

.inp-chbx:checked + .chbx label.box:first-child:before, .inp-chbx:checked + .chbx span:first-child:before {
    opacity: 0;
    transition: all .6s ease;
}
/* Radiobutton*/
.rdb {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}
.inp-rdb:checked + .rdb label.box:first-child:before, .inp-rdb:checked + .rdb span:first-child:before {
    opacity: 0;
    transition: all 0.6s ease;
}
.rdb span {
    display: inline-block;
    vertical-align: middle;
}
.rdb label.box:last-child, .rdb span:last-child {
    padding-left: 8px;
}
.rdb span:first-child, .rdb label.box:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid var(--corp);
    transition: var(--fundido);
}
.rdb label.box:first-child svg, .rdb span:first-child svg {
    position: absolute;
    top: -2px;
    left: -2px;
    fill: #353536;
    stroke-width: 0;
    transition: var(--fundido);
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}
.inp-rdb:checked + .rdb label.box:first-child, .inp-rdb:checked + .rdb span:first-child {
    background: #009900;
    border-color: #002200;
    animation: wave 0.4s ease;
}
.inp-rdb:checked + .rdb label.box:first-child:before, .inp-rdb:checked + .rdb span:first-child:before {
    opacity: 0;
    transition: all 0.6s ease;
}
.rdb:hover label.box:first-child, .rdb:hover span:first-child {
    border-color: #666;
}
@keyframes wave {
    50% {
        transform: scale(0.9);
    }
}
span.error {
    color: #9f0009;
    padding-left: 38px;
    font-size: 10px;
    letter-spacing: .166px;
}
span.error:empty {
    display: none;
}
.lity-close, .lity-inline .lity-close:active {
    right: 1em;
    top: 1em;
}
.include-privacidad-new {
    width: 90%;
    max-width: 750px;
    max-height: 70vh;
    padding: 3em 4em 3em 3em;
    background-color: var(--bg-light);
    line-height: 1.4;
    border-radius: 5px;
    overflow-y: auto;
}
.include-privacidad-new p {
    margin-bottom: .5em;
}
.include-privacidad-new a {
    color: inherit;
}
.include-privacidad-new a:hover {
    color: var(--corp);
}
.iti__selected-flag {
    padding: 0 8px !important;
}
@media screen and (max-width: 818px) {
    .formcol .formcol__submit {
        width: 100%;
    }
    .include-privacidad-new, .include-privacidad-new p {
        font-size: 12px !important;
    }
    .include-privacidad-new {
        width: 100%;
        border-radius: 0;
    }
    .include-privacidad-new a {
        color: var(--corp);
    }
}