/***simulador fiscal*********************************************/

.simulador-fiscal {
    margin: 10rem auto 3rem;
}

.simulador-fiscal fieldset,
.simulador-fiscal legend {
    border: none;
	margin-top: 30px;
}

.simulador-fiscal legend,
.simulador-fiscal label {
    text-align: left;

}

@media (min-width: 768px) {
    .simulador-fiscal legend,
    .simulador-fiscal label {
        font-size: 14px;
        font-weight: 600;
    }
}

@media (min-width: 991px) {
    .simulador-fiscal legend,
    .simulador-fiscal label {
        text-align: center;

    }

}

.plazo label,
.plazo legend {
    margin-bottom: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 992px) {
    .plazo label,
    .plazo legend {
        height: 50px;
    }
}

.rs-tooltip.rs-edit{
    font-size: 27px;
}
.plazo .subtitle {
    font-size: 10px;
    color: #767676;
    display: block;
    margin-bottom: 18px;
    text-align: left;
}
@media (min-width: 768px) {
    .plazo .subtitle {
        text-align: center;
    }
}
@media (min-width: 992px) {
    .plazo .subtitle {
        text-align: center;
    }
}
.box-input.number,
.box-input.range {
    width: 100%;
}
.select-wrapper.plazo-movil {
    display: block;
}
@media (min-width: 768px) {
    .select-wrapper.plazo-movil {
        display: none
    }
    .box-input.number.plazo-movil {
        display: block;
    }
}

@media (min-width: 768px) {
    .box-input.number {
        width: 35%;
        float: right;
    }
    .box-input.range {
        width: 55%;
        float: left;
        display: block;
    }
}
@media (min-width: 992px) {
    .box-input.number,
    .box-input.range {
        float: none;
        width: 100%;
    }
}
.box-input.number {
    padding: 0 2px;
	text-align: center;
}
.box-input.range {
    position: relative;
    z-index: 0;
}
.box-input.number input {
    background: #f8f8f8;
    border: 1px solid #f8f8f8;
    font-size: 26px;
    color: #0C83B1;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    height: 50px;
}
@media (min-width: 768px) {
    .box-input.number input {
        background: #f8f8f8;
        border: 1px solid #f8f8f8;
        font-size: 26px;
        text-align: center;
        margin-bottom: 15px;
        height: 50px;
    }
}
@media (min-width: 992px) {
    .box-input.number input {
        height: 40px;
    }
}
.wrap-cifras .cifra {
    font-size: 13px;
    color: #767676;
	font-style: italic;
}
.wrap-cifras {
    margin-top: 12px;
    overflow: hidden;
}
@media (min-width: 992px) {
    .wrap-cifras {
        margin-top: 19px;
    }
}
.select-wrapper.plazo > span {
    background: #fff;
    border: 1px solid #d0d0d0;
    color: #767676;
    font-size: 12px;
    text-align: right;
    padding-right: 40px;
}
@media (min-width: 992px) {
    .select-wrapper.plazo > span {
        color: #007eae;
        background: #f8f8f8;
        border: 1px solid #f8f8f8;
        font-size: 26px;
        text-align: center;
    }
}
.simulador-fiscal input[type=submit],
#popup-email input[type=submit] {
    background: #007eae;
    color: #fff;
    height: 100%;
    font-size: 14px;
    -webkit-appearance: none;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
}
#popup-email .button.submit a {
    background: #007eae;
    color: #fff;
    height: 100%;
    font-size: 14px;
    -webkit-appearance: none;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
    line-height: 16px;
    padding: 20px 0;
}
#popup-email a:after {
    content: none;
}

.simulador-fiscal .row.plazo-mobile {
    display: block;
    margin-top: 5rem;
}

.rs-chrome span.rs-tooltip.rs-tooltip-text.rs-edit {
    font-size: 27px;
}

@media (min-width: 768px) {
    .simulador-fiscal .row.plazo {
        display:block;
        margin-top: 6rem;
    }
    .simulador-fiscal .row.plazo-mobile {
        display: none;
    }
}

@media (min-width: 992px) {
    .simulador-fiscal .row.plazo {
        margin: 0 auto;
        width: 602px;
    }
}

/***disabled ***********************************************************/

.plazo.disabled {
    opacity: 0.4;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    filter: alpha(opacity=40);
}

.plazo-mobile.disabled {
    opacity: 0.4;
    filter: alpha(opacity=40);
}

/***error message************************************************/

.error-message {
    min-height: 15px;
    margin: 1rem 0;
}
@media (min-width: 768px) {
    .error-message {
        min-height: 22px;
    }
}
@media (min-width: 992px) {
    .error-message {}
}
.error-message .error {
    color: #fd0b0b;
    display: none;
    font-size: 0.9em;
    margin: 0;
}
.error-message .error span {
    color: #fd0b0b;
}

/***custom range**********************************************************/

input[type=range] {
    display: none;
    -webkit-appearance: none;
    /* Hides the slider so that custom slider can be made */
    width: 100%;
    /* Specific width is required for Firefox. */
    background: transparent;
    /* Otherwise white in Chrome */
    padding: 0;
}
@media (min-width: 768px) {
    input[type=range] {
        display: block;
    }
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 18px;
    cursor: pointer;
    background: #3071a9;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #3071a9;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 18px;
    cursor: pointer;
    background: #3071a9;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 18px;
    cursor: pointer;
    background: #3071a9;
}
input[type=range]::-ms-fill-lower {
    background: #2a6495;
}
input[type=range]:focus::-ms-fill-lower {
    background: #3071a9;
}
input[type=range]::-ms-fill-upper {
    background: #3071a9;
}
input[type=range]:focus::-ms-fill-upper {
    background: #367ebd;
}

/* Special styling for WebKit/Blink */

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #000;
    position: relative;
    top: 7px;
    z-index: 2;
}

/* All the same stuff for Firefox */

input[type=range]::-moz-range-thumb {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #000;
    border-top: 1px solid #fff;
    border-radius: 0;
    background: transparent;
    position: relative;
    padding-top: 18px;
    z-index: 2;
}

/* All the same stuff for IE */

input[type=range]::-ms-thumb {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 0;
    background: url("../images/triangle.png") 0 15px no-repeat transparent;
    position: relative;
    z-index: 2;
}


/* Estilos sobreescritos slider range */
.simulador-fiscal .box-input.range .ui-slider-horizontal .ui-slider-handle {
    width: 26px;
    height: 26px;
    background: #15536A;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 1px 5px rgba(64, 75, 80, 0.5);
    border-radius: 94px;
    top: -4px;
}

.simulador-fiscal .box-input.range .ui-widget.ui-widget-content {
    background: linear-gradient(270deg, #007EAE 0%, #2FBAEE 100%);
    border-radius: 7px;
}

.simulador-fiscal .box-input.number input[type=text] {
    width: 176px;
    font-size: 13px;
    text-align: center;
    color: #000;
	margin: 10px 0 30px;
}

.simulador-fiscal input[type=text] {
    background: #FFF;
    border: 1px solid #C8D2DD;
}

.simulador-fiscal .contentPlazo {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

@media (min-width: 992px) {
    .simulador-fiscal .contentPlazo {
        flex-direction: row;
		flex-wrap: wrap;
    }
}

.simulador-fiscal .contentPlazo .simulacion {
    background-color: #EFF8FB;
    padding: 20px 30px;
    border-radius: 20px;
}

.simulador-fiscal .contentPlazo .simulacion p {
    font-size: 56px;
    margin: 40px 0;
}

.simulador-fiscal .contentPlazo .simulacion p .azul_turquesa {
    color: #007eae;
}

.simulador-fiscal .contentPlazo .simulacion p:last-child {
    font-size: 24px;
    font-weight: 700;
}

.simulador-fiscal .contentPlazo > div.textoMarginal {
	width: 100%;
	font-size: 12px;
	margin-bottom: 20px;
	color: #333;
	font-style: italic;
}

@media (min-width: 992px) {
	.simulador-fiscal .contentPlazo > div {
		width: 258px;
	}
    .simulador-fiscal .contentPlazo#resultado > div {
		width: auto;
	}
}

@charset "UTF-8";

.underline {
    text-decoration: underline;
}

/*START - Sim. Hipotecas - Banner menos alto*/

@media (min-width: 1200px) {
    .page-banner {
        height: 250px;
    }
    .page-banner,
    .banner-image-group,
    .banner-media.bg-video .banner-image-group {
        height: 250px;
    }
    .banner-image-group > picture img {
        height: 360px;
    }
}
@media (min-width: 1440px) {
    .page-banner {
        height: 300px;
    }
    .page-banner,select.cform
    .banner-image-group,
    .banner-media.bg-video .banner-image-group {
        height: 300px;
    }
    .banner-image-group > picture img {
        height: 480px;
    }
}

/*FIN - Sim. Hipotecas - Banner menos alto*/

.simulador-hipotecas-form .button {
    display: block;
    margin: 0 auto;
    text-align: center;
}
.simulador-hipotecas-form .button.submit {
    height: 56px;
    width: 100%;
    max-width: 275px;
    margin-top: 20px;
    position: relative;
}
@media (min-width: 992px) {
    .simulador-hipotecas-form .button.submit {
        margin-top: 25px;
    }
}
.simulador-hipotecas-form .button a {
    display: block;
    font-weight: normal;
    font-family: 'OpenSans-Bold', Helvetica, Arial, sans-serif;
    text-decoration: none;
    height: 100%;
    padding-left: 5px;
    position: relative;
	border-radius: 30px;
}
.simulador-hipotecas-form .button.solicitar a {
	/* background-color: #f4c53d; */
	color: #000;
}
.simulador-hipotecas-form .button.solicitar-2 a {
	background-color: #007eae;
    color: #fff;
}
.simulador-hipotecas-form .button_wrap.solicitar {
	display: block;
}

/*
.simulador-hipotecas-form .button a:after {
    font-family: "fontello";
    font-style: normal;
    content: '\e900';
    font-size: 2rem;
    line-height: 2.5rem;
    top: 10px;
    left: 15px;
    position: absolute;
}
@media screen\0 {
    .simulador-hipotecas-form .button a:after {
        font-family: "fontello";
        font-style: normal;
        content: '\e900';
        font-size: 2rem;
        line-height: 2.5rem;
        top: 10px;
        padding-top: 10px;
        left: 15px;
        position: absolute;
    }
}
.simulador-hipotecas-form .button a:hover {
    -webkit-box-shadow: inset 500px -1px 5px 0px rgba(219, 177, 55, 1);
    -moz-box-shadow: inset 500px -1px 5px 0px rgba(219, 177, 55, 1);
    box-shadow: inset 500px -1px 5px 0px rgba(219, 177, 55, 1);
    transition: 1s all ease-out;
}
*/
.simulador-hipotecas-form .button.la {
    width: 190px;
    height: 44px;
    line-height: 44px;
}
legend,
label,
.wrap-cifras,
.subtitle {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/***simulador de hipotecas**********************************************/

.simulador-hipotecas h2 span {
    display: inline;
    font-family: inherit;
    color: inherit;
}

.simulador-hipotecas .legal div {
    margin: 0 auto !important;
    padding-bottom: 0;
}

.simulador-hipotecas .container {
    padding-bottom: 20px;
}
@media (min-width: 1200px) {
    .simulador-hipotecas h2 span {
        display: block;
    }
}
.simulador-hipotecas-form {
    padding-top: 34px;
    /*padding-bottom: 50px;*/
    position: relative;
}
.simulador-hipotecas-form form {
    display: block !important;
}
@media (min-width: 768px) {
    .simulador-hipotecas-form form {
        display: block !important;
    }
}
@media (min-width: 768px) {
    .simulador-hipotecas-form {
        padding-top: 50px;
    }
}
.simulador-hipotecas-form fieldset,
.simulador-hipotecas-form legend {
    border: none;
}
.simulador-hipotecas-form legend,
.simulador-hipotecas-form label {
    font-size: 18px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}
@media (min-width: 768px) {
    .simulador-hipotecas-form legend,
    .simulador-hipotecas-form label {
        text-align: left;
    }
}
@media (min-width: 992px) {
    .simulador-hipotecas-form legend,
    .simulador-hipotecas-form label {
        text-align: center;
    }
}
.simulador-hipotecas-form h3 {
    font-size: 14px;
    font-family: 'OpenSans', Arial, serif;
    color: #4a4a4a;
    margin-bottom: 15px;
    padding-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #979797;
    /*display: none;*/
}
@media (min-width: 992px) {
    .simulador-hipotecas-form h3 {
        font-size: 20px;
        padding: 40px 0;
        /*margin-top: 40px;*/
    }
}
@media (min-width: 992px) {
    .inputs-container {margin-bottom: 25px}
}
/* reset NEO-R2016.css*/
.simulador-hipotecas .slider:before {
    position: inherit;
    content: none;
    height: initial;
    width: initial;
    background-color: inherit;
}

.inputs-container fieldset {
    display: block;
    flex-wrap:nowrap;
}

/*
.inputs-container fieldset .box-input.radio {
    display: flex;
}
*/

@media (min-width:768px) {
    .inputs-container fieldset {
        width: 50%;
        margin: 0 auto;
    }
}

@media (min-width:992px) {
    .inputs-container fieldset {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: auto;
    }

    .inputs-container fieldset .box-input.radio {
        display: flex;
    }
}

.box-input.radio {
    position: relative;
    margin: 0 0 15px;
    width: 100%;
}
@media (min-width: 768px) {
    .box-input.radio {
        width: 50%;
    }
}
span.separate {
    display: none;
    border-bottom: 1px solid #979797;
}
@media (min-width: 992px) {
    span.separate {
        display: block;
        margin: 0 15px 40px;
        clear: both;
        padding-top: 30px;
    }
}
@media (min-width: 1200px) {
    span.separate {
        margin: 0 45px 40px;
    }
}
.plazo label,
.plazo legend {
    margin-bottom: 7px;
}
.plazo .subtitle {
    /*font-size: 10px;*/
    font-size: 12px;
    color: #767676;
    display: block;
    margin-bottom: 18px;
    text-align: center;
}
.plazo .subtitle span {
    /*font-size: 10px;*/
    font-size: 12px;
    color: #767676;
}
@media (min-width: 768px) {
    .plazo .subtitle {
        text-align: left;
    }
}
@media (min-width: 992px) {
    .plazo .subtitle {
        text-align: center;
    }
}
.box-input.number,
.box-input.range {
    width: 100%;
}
.box-input.range .ui-slider-handle:focus{
    outline: 2px dotted;
}

.select-wrapper.plazo-movil {
    display: block;
}
/*
.box-input.number.plazo-movil {
    display: none;
}
*/
@media (min-width: 768px) {
    .select-wrapper.plazo-movil {
        display: none
    }
    .box-input.number.plazo-movil {
        display: block;
    }
}
/*
.box-input.range {
    display: none;
}
*/
@media (min-width: 768px) {
    .box-input.number {
        width: 35%;
        float: right;
    }
    .box-input.range {
        width: 55%;
        float: left;
        display: block;
    }
}
@media (min-width: 768px) {
    .box-input.number,
    .box-input.range {
        float: none;
        width: 100%;
    }
}
.box-input.number {
    padding: 0 2px;
}
.box-input.range {
    position: relative;
    z-index: 0;
}
.box-input.number input {
    background: #fff;
    border: 1px solid #d0d0d0;
    width: 100%;
    text-align: right;
    color: #007eae;
    font-size: 18px;
    height: 40px;
    padding: 3px 5px;
    position: relative;
}
@media (min-width: 768px) {
    .box-input.number input {
        background: #f8f8f8;
        border: 1px solid #f8f8f8;
        font-size: 18px;
        text-align: center;
        margin-bottom: 15px;
        height: 50px;
    }
}
@media (min-width: 992px) {
    .box-input.number input {
        height: 40px;
    }
}
.wrap-cifras .cifra {
    font-size: 14px;
    color: #767676;
}
.wrap-cifras {
    margin-top: 12px;
    overflow: hidden;
}
.wrap-cifras.euro-value {
    font-weight: bold;
}
@media (min-width: 992px) {
    .wrap-cifras {
        margin-top: 19px;
    }
}
.select-wrapper.plazo > span {
    background: #fff;
    border: 1px solid #d0d0d0;
    color: #767676;
    font-size: 12px;
    text-align: right;
    padding-right: 40px;
}
@media (min-width: 992px) {
    .select-wrapper.plazo > span {
        color: #007eae;
        background: #f8f8f8;
        border: 1px solid #f8f8f8;
        font-size: 26px;
        text-align: center;
    }
}
.simulador-hipotecas-form input[type=submit],
#popup-email input[type=submit] {
    background: #007eae;
    color: #fff;
    height: 100%;
    font-size: 14px;
    -webkit-appearance: none;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
}
#popup-email .button.submit a {
    background: #007eae;
    color: #fff;
    height: 100%;
    font-size: 14px;
    -webkit-appearance: none;
    width: 157px;
    border-radius: 0;
    box-shadow: none;
    border-radius: 2px;
    border: none;
    text-align: center;
    /* line-height: 16px; */
    padding: 10px 35px;
    margin: auto;
    /* display: flex; */
}
#popup-email a:after {
    content: none;
}
@media (min-width: 992px) {
    .simulador-hipotecas-form .row.plazo {
        margin-top: 40px;
    }
}

/***disabled ***********************************************************/

.plazo.disabled {
    opacity: 0.4;
    filter: alpha(opacity=40);
}
.submit input[disabled='disabled'] {
    opacity: 0.3;
    filter: alpha(opacity=30);
}
.buttons-results.disabled {
    opacity: 0.4;
    filter: alpha(opacity=50);
    display: block;
}
.buttons-results.disabled li {
    cursor: default;
}
.rangeslider--disabled {
    opacity: 0.4;
    filter: alpha(opacity: 40);
}

/***custom range**********************************************************/

input[type=range] {
    display: none;
    -webkit-appearance: none;
    /* Hides the slider so that custom slider can be made */
    width: 100%;
    /* Specific width is required for Firefox. */
    background: transparent;
    /* Otherwise white in Chrome */
    padding: 0;
}
@media (min-width: 768px) {
    input[type=range] {
        display: block;
    }
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 18px;
    cursor: pointer;
    background: #3071a9;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #3071a9;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 18px;
    cursor: pointer;
    background: #3071a9;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 18px;
    cursor: pointer;
    background: #3071a9;
}
input[type=range]::-ms-fill-lower {
    background: #2a6495;
}
input[type=range]:focus::-ms-fill-lower {
    background: #3071a9;
}
input[type=range]::-ms-fill-upper {
    background: #3071a9;
}
input[type=range]:focus::-ms-fill-upper {
    background: #367ebd;
}

/***custom range para rangeSlider.js***/

.rangeSlider,
.rangeSlider__fill {
    background: #d8d8d8;
    display: block;
    height: 18px;
    width: 100%;
}
.rangeSlider {
    position: relative;
}
.rangeSlider__fill {
    background: #007eae;
    position: absolute;
    top: 0;
    z-index: 2;
}
.rangeSlider__handle {
    background: transparent;
    cursor: pointer;
    display: inline-block;
    width: 1px;
    height: 10px;
    position: absolute;
    top: -7px;
    z-index: 3;
}
.rangeSlider__handle:after {
    content: "";
    display: block;
    width: 30px;
    height: 20px;
    position: absolute;
    top: 18px;
    right: -14px;
    background-image: url(../images/triangle.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Special styling for WebKit/Blink */

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #000;
    position: relative;
    top: 7px;
    z-index: 2;
}

/* All the same stuff for Firefox */

input[type=range]::-moz-range-thumb {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #000;
    border-top: 1px solid #fff;
    border-radius: 0;
    background: transparent;
    position: relative;
    padding-top: 18px;
    z-index: 2;
}

/* All the same stuff for IE */

input[type=range]::-ms-thumb {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 0;
    background: url("../images/triangle.png") 0 15px no-repeat transparent;
    position: relative;
    z-index: 2;
}

/***input type number****************************************************/

.number input[type="number"]::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.number input[type=number] {
    -moz-appearance: textfield;
}

/***custom form**********************************************************/

.custom-form-radio + input + label {
    border: 1px solid #d0d0d0;
    height: auto;
    width: 100%;
    color: #767676;
    /*font-size: 12px;*/
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    margin: 0;
    max-height: 60px;
    min-height: 40px;
    padding: 7px;
    display: flex;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .box-input.radio + .box-input.radio .custom-form-radio + input + label {
        margin-left: -1px;
    }
}

@media only screen and (min-width: 991px) and (max-width: 1200px) {
    .box-input.radio + .box-input.radio .custom-form-radio + input + label {
        text-align: left;
        padding-left: 8px;
    }
}
@media (min-width: 1200px) {
    .box-input.radio + .box-input.radio .custom-form-radio + input + label {
        text-align: center;
        display: block;
        padding-top: 9px;

    }
    .custom-form-radio + input + label {
        text-align: center;
        display: block;
        padding-top: 9px;
        border-radius: 4px;
    }
}
.custom-form-radio.custom-form-checked.custom-form-focused + input + label,
.custom-form-radio.custom-form-checked + input + label {
    /*background: url("../images/ok-radio.png") no-repeat scroll 93% center transparent;*/
    border: 2px solid #007eae;
    border-radius: 3px;
    color: #000;
    background: #FFF;
    position: relative;
    z-index: 1;
    font-weight: bold;
}
.select-wrapper {
    position: relative;
    width: 100%;
    height: 40px;
    overflow: hidden;
    margin-bottom: 25px;
}
select.cform {
    width: 100%!important;
    cursor: pointer;
}
select.cform option {
    font-size: 1.4rem;
}
.custom-form-select {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow:hidden;
    line-height: 38px;
    color: #767676;
    border: 1px solid #d0d0d0;
    padding-left: 20px;
    padding-right: 15px;
    /*font-size: 12px;*/
    font-size: 14px;
    border-radius: 4px;
}

.custom-form-select.custom-form-focused {
    border: 1px solid #007eae;
}
.custom-form-select:after {
    background: url("../images/arrow-down-blue-select.png") no-repeat scroll 0 0 transparent;
    content: "";
    display: block;
    height: 40px;
    position: absolute;
    right: 5px;
    top: 16px;
    width: 20px;
}

/***buttons-results**********************************************************/
/*
#resultSimulacion .buttons-results {
    display: block !important;
}
*/

.buttons-results {
    display: none;
}
@media (min-width: 1200px) {
    .buttons-results {
        padding: 0 30px;
    }
}
.buttons-results ul li {
    list-style: none;
    background: #fff;
    padding: 0;
    margin-bottom: 16px;
}
.buttons-results ul li > div {
    border: 1px solid #f2f2f2;
    position: relative;
}
.buttons-results ul li + li > div {
    border: 1px solid #007eae;
}
@media (min-width: 768px) {
    .buttons-results ul li + li > div {
        border: 1px solid #f2f2f2;
    }
}
.box-results .title span {
    background: #f2f2f2;
    color: #1a1a1a;
    margin: 0 0 30px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    display: block;
    line-height: 32px;
    letter-spacing: 0.05em;
}
.box-results .content-m {
    overflow: hidden;
}
.box-results .content-m .content-t-d.link-group {
    width: 100%;
    padding-top: 0;
    overflow: hidden;
}
@media (min-width: 1200px) {
    .box-results .content-m .content-t-d.link-group {
        padding-top: 20px;
    }
}
.box-results .content-m .content-t-d.link-group span {
    width: 100%;
    text-align: center;
    font-size: 12px;
}
@media (min-width: 1200px) {
    .box-results .content-m .content-t-d.link-group span {
        width: 50%;
    }
    .box-results .content-m .content-t-d.link-group span a {
        float: left;
        margin-left: 10px;
        font-size: 10px;
    }
    .box-results .content-m .content-t-d.link-group span + span a {
        float: right;
        margin-right: 10px;
    }
}
@media (min-width: 768px) {
    .box-results .title span {
        line-height: 60px;
        font-size: 20px;
        margin: 0 0 40px;
    }
}
.buttons-results ul li + li > .box-results .title span {
    background: #007eae;
    color: #fff;
}
@media (min-width: 768px) {
    .buttons-results ul li + li > .box-results .title span {
        background: #f2f2f2;
        color: #000;
    }
}
@media (min-width: 768px) {
    .buttons-results ul li {
        float: left;
        width: 50%;
        cursor: pointer;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        transition: all 0.2s;
        position: relative;
        z-index: 1;
    }
    .buttons-results ul li:hover,
    .buttons-results ul li.hover {
        box-shadow: 0 10px 20px rgba(48, 81, 102, 0.2);
        -webkit-transform: scale(1.05, 1.05);
        -moz-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05);
        z-index: 2;
    }
    .buttons-results.disabled ul li:hover,
    .buttons-results.disabled ul li.hover {
        box-shadow: none;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
    .buttons-results ul li:hover .title span,
    .buttons-results ul li.hover .title span,
    .buttons-results ul li + li.hover .title span {
        background: #007eae;
        color: #fff;
    }
    .buttons-results.disabled li:hover .title span {
        background: #f2f2f2;
        color: inherit;
    }
    .buttons-results.disabled li.hover:hover .title span {
        background: #007eae;
        color: #fff;
    }
    .box-results .title p {
        line-height: 60px;
        font-size: 20px;
    }
}
.box-results span {
    display: block;
    text-align: center;
    font-size: 14px;
}
.box-results .content-m .link > a {
    text-decoration: none;
    font-weight: normal;
    display: block;
    background: url("../images/arrow-right-blue.png") no-repeat 95% center transparent;
    padding: 0 0 35px;
}
@media (min-width: 768px) {
    .box-results .content-m .link > a {
        background: none;
        padding: 0 0 0;
    }
}
@media (min-width: 1200px) {
    .box-results .content-m .link > a {
        padding: 0 0 0;
    }
}
.box-results .percent span {
    display: inline;
    text-align: center;
    width: 50%;
    color: #767676;
}
.box-results .price,
.box-results .price strong {
    color: #007eae;
}
.box-results .price strong {
    font-size: 25px;
    padding: 12px 0;
    display: inline-block;
}
@media (min-width: 768px) {
    .box-results .price {
        font-size: 20px;
        padding: 15px 0;
    }
    .box-results .price strong {
        font-size: 50px;
    }
}
.box-results .percent span {
    font-size: 12px;
    padding-right: 8px;
}
@media (min-width: 768px) {
    .box-results .percent span {
        font-size: 14px;
    }
}
.box-results .content-t-d span.link > span {
    text-decoration: underline;
    font-size: 14px;
    color: #007eae;
}
.box-results .content-t-d span {
    margin: 7px auto;
}
@media (min-width: 1200px) {
    .box-results .content-t-d span {
        margin: 10px auto;
    }
}
.box-results .content-t-d span a {
    font-size: 13px;
}
.buttons-results .return {
    text-align: center;
}
.buttons-results .return a {
    text-decoration: none;
    background: url("../images/back.png") no-repeat 0 5px transparent;
    padding-left: 18px;
}

/***Marked inputs***/

.simulador-hipotecas-form .custom-form-select.marked {
    border: 1px solid #007eae;
}
.simulador-hipotecas-form .box-input input.marked {
    border: 1px solid #007eae;
}

/***container-results**********************************************************/

.wrap-results {
    padding-bottom: 15px;
}
.wrap-results:after {
    content: "";
    clear: both;
    overflow: hidden;
    display: block;
}
.container-results {
    margin: 0 auto;
    clear: both;
    background: #fff;
    position: relative;
}
.dropdown-box + .close-results {
    text-align: center;
    padding: 15px 0;
}
.dropdown-box + .close-results a {
    background: url(../images/back.png) no-repeat 0 5px;
    padding-left: 18px;
}
@media (min-width: 768px) {
    .container-results {
        border: 1px solid #007eae;
        padding: 20px 0 20px;
        max-width: none;
    }
    .container-results .close-results {
        position: absolute;
        top: 12px;
        right: 10px;
    }
    .container-results .close-results a {
        background: url("../images/close_b.png") no-repeat 0 0 transparent;
        display: block;
        height: 22px;
        width: 22px;
    }
}
@media (min-width: 1200px) {
    .container-results {
        margin: 0 30px;
    }
}

/***carrousel slides***********************************************************/

.slide-1,
.slide-2,
.slide-3 {
    padding: 20px 10px;
}
.slide-2 .table tbody > tr > td:first-child + td {
    width: 35%;
}
.slide-2 {
    background: #eaf7fc;
}
.slide-2 p {
    color: #000;
    padding: 0 0 30px;
    margin-top: 0;
    text-align: center;
}
.slide-2 p strong {
    display: block;
}
.two-columns .slide-2 p strong {
    display: inline;
}
.slide-3 > p:first-child {
    color: #000;
    font-weight: bold;
    margin-top: 0;
    padding-bottom: 12px;
    font-size: 16px;
}
.slide-3 p {
    color: #888;
    margin-top: 0;
    font-size: 12px;
    line-height: 14px;
}
.slide-3 .box-border {
    /* padding: 15px 13px 18px; */
    padding: 15px 0 18px;
}
.slide-3 .table-wrapper {
    padding-bottom: 20px;
}
@media (min-width: 768px) {
    .responsive-slider .slick-track {
        width: 100%!important;
    }
    .slide-2 p {
        text-align: left;
    }
    .slide-1,
    .slide-2,
    .slide-3 {
        width: 33.3% !important;
    }
    .two-columns .slide-1,
    .two-columns .slide-2 {
        width: 50% !important;
    }
    .two-columns .slide-1 {
        padding-left: 0;
    }
    .responsive-slider.two-columns {
        padding: 0 18px;
    }
    .slide-2 {
        padding: 20px 10px;
    }
}
@media (min-width: 992px) {
    .slide-1,
    .slide-2,
    .slide-3 {
        position: static;
        /* height: 347px!important; */
        height: 385px!important;
    }
    .slide-1,
    .slide-2,
    .slide-3 {
        padding: 20px 25px;
    }
    .slide-2 {
        padding: 20px 15px 0;
        margin: 0;
    }
    .slide-2 p {
        font-size: 16px!important;
    }
    .two-columns .slide-1,
    .two-columns .slide-2 {
        width: 46% !important;
        margin: 0 2%;
    }
    .responsive-slider.two-columns {
        padding: 0 50px;
    }
}
@media (min-width: 768px) {
    .slide-2 .table tbody > tr > td:first-child + td {
        width: 35%;
    }
}
@media (min-width: 992px) {
    .slide-2 .table tbody > tr > td:first-child + td {
        width: 35%;
    }
}
@media (min-width: 1200px) {
    .slide-1,
    .slide-2,
    .slide-3 {
        padding: 20px 50px;
    }
    .slide-2 {
        padding: 20px 15px 0;
    }
}
html[lang="ca"] .slide-3 .table-wrapper {
    padding-bottom: 8px;
}

/***controles slider***/

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 27px;
    height: 27px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    z-index: 1;
}
.slick-prev {
    left: -13px;
    background: url("../images/move_left.png") no-repeat 0 0 transparent;
}
.slick-next {
    right: -13px;
    background: url("../images/move_right.png") no-repeat 0 0 transparent;
}
.slick-dots {
    display: table;
    margin: 15px auto 20px;
}
.slick-dots li {
    display: table-cell!important;
    padding: 0!important;
    background: transparent!important;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #d8d8d8;
    margin: 0 5px;
    padding: 0;
}
.slick-dots li.slick-active button {
    background: #4a4a4a;
}

/***tablas del slider***/

.responsive-slider table > thead > tr > th {
    font-size: 16px;
    padding: 0 0 13px;
    color: #000;
}
.responsive-slider .table > tbody > tr > td {
    padding: 10px 0;
    color: #000;
    border-bottom: solid 1px #d0d0d0!important;
}
.responsive-slider .slide-2 .table > tbody > tr > td {
    border-bottom: none!important;
    padding: 0 3px;
}
.responsive-slider .slide-3 .table > tbody > tr > td {
    padding: 15px 0;
    border-bottom: solid 2px #d0d0d0!important;
}
@media (min-width: 768px) {
    .responsive-slider .slide-3 .table > tbody > tr > td {
        padding: 12px 0;
    }
}
.responsive-slider .table > tbody > tr > td +td {
    text-align: right!important;
    vertical-align: middle!important;
}
.responsive-slider .slide-2 .table > tbody > tr > td +td {
    vertical-align: top!important;
}
.responsive-slider .table > tbody > tr.resultado > td {
    border-bottom: none!important;
    padding-top: 21px;
    font-size: 18px;
    font-weight: bold;
}
@media (min-width: 768px) {
    .responsive-slider .table > tbody > tr.resultado > td {
        padding-top: 25px;










    }
}
.responsive-slider .table > tbody > tr.resultado > td + td {
    color: #007eae;
}
.responsive-slider .table-wrapper {
    margin-top: 0;
}
.box-border {
    border: 1px solid #ccc;
}
.slide-2 table span {
    display: block;
    width: 17px;
    height: 17px;
    float: left;
    margin-right: 10px;
    margin-bottom: 20px;
}
table .v-align-top {
    vertical-align: top!important;
}
.slide-2 table tr td {
    border: none!important;
}
.slide-2 .grafica .text {
    font-weight: bold;
    font-size: 18px;
}
.slide-2 .grafica .text span + span {
    font-size: 28px;
    line-height: 22px;
}
@media (min-width: 992px) {
    .slide-2 .table-wrapper,
    .slide-2 .grafica {
        width: 100%;
    }
}

/***grÃ¡fica***/

.grafica {
    padding-top: 18px;
}
.grafica .line {
    clear: both;
    padding-top: 30px;
}
.grafica .line span {
    display: block;
    height: 15px;
    float: left;
}
.slide-2 .frst {
    background: #00a1df;
}
.slide-2 .snd {
    background: #007bc6;
}
.slide-2 .thrd {
    background: #00568b;
}

/***links-container*************************/

.link-group span {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.link-group span a {
    background: url("../images/download.png") no-repeat 0 2px transparent;
    padding-left: 25px;
}
.link-group span + span a {
    background: url("../images/send.png") no-repeat 0 3px transparent;
    padding-left: 35px;
}
.container-results {
    visibility: hidden;
    z-index: -1;
    position: absolute;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -webkit-transition: opacity 1s 0.05s;
    -moz-transition: opacity 1s 0.05s;
    transition: opacity 1s 0.05s;
}
@media (min-width: 768px) {
    .container-results {
        width: 100%;
        margin: 0 auto;
    }
}
@media (min-width: 992px) {
    .container-results {
        width: 90%;
    }
}
.container-results.visible-popup {
    visibility: visible;
    z-index: 0;
    position: relative;
    opacity: 1;
    filter: alpha(opacity=100);
}
.container-results .title {
    margin-bottom: 20px;
}
.container-results .title p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 5px;
}
.container-results .title p strong {
    display: block;
}
.container-results .title span {
    text-align: center;
    display: block;
    color: #007eae;
    font-weight: bold;
    font-size: 22px;
}
.container-results .title span > span {
    display: inline;
    font-size: 14px;
}
.container-results .link,
.container-results .link3,
.container-results .link4 {
    display: block;
    text-align: center;
}
.container-results .link span,
.container-results .link3 span,
.container-results .link4 span {
    display: block;
    width: 100%;
}
.container-results .link span a,
.container-results .link3 span a,
.container-results .link4 span a {
    padding-right: 20px;
    background: url("../images/arrow-down-blue.png") no-repeat right 7px transparent;
}
.container-results .link span a.selected,
.container-results .link3 span a.selected,
.container-results .link4 span a.selected {
    background: url("../images/arrow-up-blue.png") no-repeat right 7px transparent;
}
.links-container {
    margin-top: 22px;
    position: relative;
    z-index: 1;
}
.link-group {
    overflow: hidden;
}
.links-container .close-results {
    display: none;
}
.container-results .link,
.container-results .link3,
.container-results .link4 {
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
}
@media (min-width: 768px) {
    .container-results {
        overflow: hidden;
    }
    .container-results .title {
        margin-bottom: 30px;
    }
    .container-results .button {
        margin-top: 40px;
    }
    .links-container {
        width: 88%;
        margin: 10px 6% 0;
    }
    .link-group {
        overflow: visible;
    }
    .link-group span {
        float: left;
        width: 50%;
        text-align: left;
    }
    .link-group span + span {
        text-align: right;
    }
    .container-results .link,
    .container-results .link3,
    .container-results .link4 {
        text-align: left;
        margin-top: 0;
        padding: 0;
        border: none;
    }
    .container-results .title p {
        font-size: 20px;
    }
    .container-results .title p strong {
        display: inline;
    }
    .container-results .title p span {
        display: inline;
        font-size: 25px;
    }
}
@media (min-width: 992px) {
    .links-container {
        width: 100%;
        margin: 0;
        padding: 0 25px;
    }
    .link-group {
        float: right;
        width: 50%;
    }
    .link-group span {
        width: 100%;
        text-align: right;
    }
}
@media (min-width: 1200px) {
    .links-container {
        padding: 0 50px;
    }
}
.dropdown-box {
    display: none;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.dropdown-box .scroll {
    padding: 10px 0;
}
.dropdown-box .title p {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    text-align: left;
}
.dropdown-box .scroll {
    background: #f8f8f8;
    height: 200px;
    margin-top: 10px;
}
.dropdown-box .scroll .info_legal {
    padding: 10px 25px 0 15px;
}
.dropdown-box .scroll .info_legal p {
    font-size: 14px;
}
.dropdown-box .text p {
    font-size: 14px;
}
.dropdown-box .text p a {
    text-decoration: none;
}
@media (min-width: 768px) {
    .dropdown-box {
        width: 88%;
        margin: 0 6%;
    }
    .dropdown-box .scroll {
        padding: 10px 0;
    }
}
@media (min-width: 992px) {
    .dropdown-box {
        width: 100%;
        margin: 0;
        padding: 0 25px;
    }
    .dropdown-box .scroll {
        padding: 10px 0;
    }
    .dropdown-box .text p {
        float: right;
        margin-top: 0;
    }
}
@media (min-width: 1200px) {
    .dropdown-box {
        padding: 0 50px;
    }
}

/***error message***/

.error-message {
    min-height: 15px;
    margin: 1rem 0;
}
@media (min-width: 768px) {
    .error-message {
        min-height: 22px;
    }
}
@media (min-width: 992px) {
    .error-message {}
}
.error-message .error {
    color: #fd0b0b;
    display: none;
    font-size: 0.9em;
    margin: 0;
}
.error-message .error span {
    color: #fd0b0b;
}
.emailval {
    text-align: center;
}
.error-b {
    border: 1px solid #fd0b0b!important;
}

/***Colorbox e-mail***/

#emailForm.mceVisualAid.hidde {
    display: none!important;
}
#popup-email {
    height: 100%;
    background: #f1f1f1;
    padding-bottom: 1rem;
    width: 100%;
}
#popup-email label {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding-top: 50px;
    margin-bottom: 12px;
}
#popup-email .ok-message {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding-top: 50px;
    margin-bottom: 12px;
    font-weight: bold;
    display: none;
}
#popup-email .ok-message.visible {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
}
#popup-email .email {
    width: 80%;
    height: 60px;
    margin: 0 auto;
    max-width: 415px;
}
@media (min-width: 240px) and (max-width: 480px) {
    #popup-email .email {
        height: 35px;
    }
}
#popup-email .email input {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    border: none;
    font-size: 18px;
}
#popup-email .email::-webkit-input-placeholder {
    color: #007eae;
    opacity: 0.3;
    filter: alpha(opacity=40);
}
#popup-email .email:-moz-placeholder {
    color: #007eae;
    opacity: 0.3;
    filter: alpha(opacity=40);
}
#popup-email .email::-moz-placeholder {
    color: #007eae;
    opacity: 0.3;
    filter: alpha(opacity=40);
}
#popup-email .email:-ms-input-placeholder {
    color: #007eae;
    opacity: 0.3;
    filter: alpha(opacity=40);
}
#popup-email .button.submit {
    margin: 20px auto;
    width: 200px !important;
    max-width: none;
    text-align: center;
    display: block;
    cursor: pointer;
}
@media (min-width: 240px) and (max-width: 480px) {
    #popup-email .button.submit {
        height: 42px;
    }
    #popup-email .button.submit a {
        padding: 13px 0;
    }
}
#cboxClose {
    background: url("../images/cross_black.png")no-repeat center center transparent!important;
    right: 0!important;
    display: block!important;
    z-index: 1000!important;
}
.calculaHipoteca .sh-tabs.tabs-group:after,
.calculaHipoteca .sh-tabs.tabs-group:before,
.calculaHipoteca .sh-tabs.tabs-group .tabs-items-list {
    border-bottom: none;
}

/**Checkbox aceptar politica**/

.combo-check {
    width: 73%;
    margin: 2rem auto 0;
}
@media (min-width: 240px) and (max-width: 480px) {
    .combo-check {
        width: 90%;
    }
}
.combo-check p {
    font-size: 1.25rem;
    text-align: justify;
}
.combo-check .custom-form-checkbox {
    background: transparent url("../images/spritesimulador.png") no-repeat scroll -268px -46px;
    display: inline-block;
    height: 13px;
    width: 13px;
    float: left;
    margin-top: 5px;
    margin-right: 7px;
}
.combo-check .custom-form-checkbox.custom-form-checked {
    background-position: -268px -11px;
}
.combo-check input[type=checkbox] {
    float: left;
    width: auto;
    height: auto;
}
#popup-email .combo-check label {
    padding-top: 0;
    width: auto;
    color: #4a4a4a;
    float: left;
}
#popup-email .error-message {
    min-height: 0;
}
@media (max-width:768px) {
    #popup-email .combo-check p {
        font-size: 1.25rem;
    }
}
@media (min-width: 240px) and (max-width: 480px) {
    #popup-email .combo-check p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
.loader {
    text-align: center;
}
.invisible {
    visibility: hidden;
}
/*********  v2.1 *****************/

#fija table td:first-child {
    width: 70%;
}

/***************************/
/* RediseÃ±o Simulador 2019 */
/***************************/
h3 strong {
    font-family: 'OpenSans-ExtraboldItalic', Arial, sans-serif;
    color: #004f70;
}

.simulador-hipotecas-form .contenedor_tres_columnas {
    text-align: center;
}

.simulador-hipotecas-form .contenedor_tres_columnas .estilo_col_derecha a {
    display: flex;
    display: -ms-flex;
    justify-content: center;
    justify-content: -ms-center;
    align-items: center;
    align-items: -ms-center;
    text-decoration: none;
}

.simulador-hipotecas-form .contenedor_tres_columnas .estilo_col_derecha a img {
    margin: 0 0 0 10px;
}

.simulador-hipotecas-form .tabla-gastos {
    background: #f2f2f2;
    margin: 10px 0;
    display: none;
}

.simulador-hipotecas-form .tabla-gastos .table-wrapper {
    margin-top: 0;
}

.simulador-hipotecas-form .tabla-gastos tr td,
.simulador-hipotecas-form .tabla-coste tr td {
    border-bottom: 1px solid #ccc;
}

.simulador-hipotecas-form .tabla-gastos tr td,
.simulador-hipotecas-form .tabla-coste tr td {
    padding: 1rem 0.8rem;
}

.simulador-hipotecas-form tr.resultado td {
    font-weight: bold;
    border: none;
}

.simulador-hipotecas-form .tabla-gastos tr td:last-child,
.simulador-hipotecas-form .tabla-coste tr td:last-child {
    text-align: right;
    width: 120px;
}

.simulador-hipotecas-form .tabla-gastos p.gastos-aclarativo,
.simulador-hipotecas-form .content-a {
    border-top: 1px solid #ccc;
    padding: 10px 0;
    font-size: 1.1rem;
}

.simulador-hipotecas-form .tabla-coste,
.simulador-hipotecas-form .content-a {
    padding: 0 20px;
    margin-top: 0;
}

.simulador-hipotecas-form .tabla-coste .titulo-costes {
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
}

.simulador-hipotecas-form .tabla-coste .table-wrapper {
    margin-top: 0;
}

.simulador-hipotecas-form .tabla-coste tr.desglose .bloque-desglose {
    margin-top: 10px;
    display: none;
}

.simulador-hipotecas-form .tabla-coste tr.desglose .bloque-desglose p {
    width: 100%;
    margin-top: 0;
}

.simulador-hipotecas-form .tabla-coste tr.desglose .bloque-desglose p .bonificador {
    float: left;
}

.simulador-hipotecas-form .tabla-coste tr.desglose .bloque-desglose p .bonificador img {
    margin-right: 5px;
}

.simulador-hipotecas-form .tabla-coste tr.desglose .bloque-desglose p .coste {
    float: right;
}

.simulador-hipotecas-form .tabla-coste tr.desglose td {
    text-align: left;
}

.simulador-hipotecas-form .tabla-coste tr.desglose td a {
    display: block;
    text-decoration: none;
    color: #000;
}

.simulador-hipotecas-form .tabla-coste tr.desglose td a img {
    margin-top: 0;
    float: right;
}

.simulador-hipotecas-form .tabla-coste tr.desglose td .bloque-desglose .bonificador {
    float: left;
}

.simulador-hipotecas-form .tabla-coste tr.desglose td .bloque-desglose .coste {
    float: right;
}

.simulador-hipotecas-form .tabla-coste tr.desglose td .bloque-desglose .detalle {
    float: left;
    width: 70%;
    text-align: left;
    padding-left: 2.5rem;
}

.simulador-hipotecas-form .wrap-results li {
    background: none;
    padding: 0;
    float: left;
    margin: 0 1%;
    width: 100%;
}

.simulador-hipotecas-form .box-results {
    border: 1px solid #ccc;
}

.simulador-hipotecas-form .box-results .content-g {
    background: #f2f2f2;
}

.simulador-hipotecas-form .content-a {
    border-top: none;
    margin-top: 5px;
}

.simulador-hipotecas-form .box-results .title span {
    background: #007eae;
    color: #fff;
    margin: 0 0 15px;
}

.simulador-hipotecas-form .table-responsive.n-table[data-pattern="priority-columns"] thead,
.simulador-hipotecas-form .tabla-coste thead td {
    border: none !important;
}

.simulador-hipotecas-form .tabla-coste .coin_type {
    display: inline-block;
}

.simulador-hipotecas-form .enlaces-simulacion {
    text-align: center;
    margin-bottom: 20px;
}

.simulador-hipotecas-form .enlaces-simulacion a {
    font-weight: bold;
    margin: 0 6px;
}

@media(min-width: 992px) {
    .simulador-hipotecas-form .wrap-results li {
        width: 48%;
    }
}

.month_conditions {
    width: 85%;
    margin: 3rem auto 0rem;
    text-align: center;
}

span.fija-bonificada_small-text {
    text-align: center;
    font-style: italic;
    font-size: 11px;
    padding: 1rem;
}

.euribor_text {
    text-align: center;
}

.legal .article_text {
    margin: 3rem 0;
}

.container-box-results .price .coin_type {
    font-size: 20px;
    display: inline-block;
}

/* Ticket #93932 - Plantillas simulador hipotecas holabank - comentario #190 */
/*Estilos componente dos botones fijo variable*/
#simulador-hipotecas p.titleCuotaMensual {
    margin-top: 5rem;
    margin-bottom: 2rem;
    font-size: 15px;
    font-weight: 900;
    color: #555555;
}
#simulador-hipotecas .contenedor_exterior_columnas.botonesFijoVariable {
    width: 85%;
    margin: 1rem auto;
}
#simulador-hipotecas .contenedor_exterior_columnas.botonesFijoVariable .estilo_col_derecha,
#simulador-hipotecas .contenedor_exterior_columnas.botonesFijoVariable .estilo_col_izquierda {
    display: flex;
    min-height: 120px;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #d0d0d0;
}
#simulador-hipotecas .contenedor_exterior_columnas.botonesFijoVariable .estilo_col_derecha:hover,
#simulador-hipotecas .contenedor_exterior_columnas.botonesFijoVariable .estilo_col_izquierda:hover {
    cursor: pointer;
    border: 1px solid #007eae;
}
#simulador-hipotecas .botonesFijoVariable_ico {
    padding-right: 2rem;
}

#simulador-hipotecas .botonesFijoVariable_text p {font-size: 1.4rem;margin-top: 0;}

#simulador-hipotecas .botonesFijoVariable_ico p {
    margin-top: 0;
}
#simulador-hipotecas #cuota_Mensual .text_euribor{
    width:75%;
    margin:3rem auto;
    text-align: center;
}
@media (max-width: 991px) {
    #simulador-hipotecas .contenedor_exterior_columnas.botonesFijoVariable {
        width: 95%;
        margin: 3rem auto 0rem auto;
    }
    #simulador-hipotecas  .contenedor_exterior_columnas.botonesFijoVariable .estilo_col_derecha,
    #simulador-hipotecas  .contenedor_exterior_columnas.botonesFijoVariable .estilo_col_izquierda{
        padding: 1rem 2rem;
    }
    #simulador-hipotecas #cuota_Mensual .text_euribor{
        width:95%;
    }
}

/*Rangos con valores en Libras*/
#simulador-hipotecas .inputs-container .subtitle.hide{
    display:block !important;
    opacity: 0;
    margin-bottom: 18px;
    height: 40px;
}
#simulador-hipotecas .containerPrice .range p,
#simulador-hipotecas .containerAmount .range p {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
#simulador-hipotecas .containerYears p.years {
    height: 32px;
}
#simulador-hipotecas .containerYears p.years.hide {
    display:none;
}
#simulador-hipotecas .wrap-cifras-no-euro {
    margin-top: 0;
}

@media (max-width: 768px) {
    #simulador-hipotecas .box-input.range {
        display: block;
    }

    /*
    #simulador-hipotecas div#rangeInputPrecio,
    #simulador-hipotecas div#rangeInputDinero,
    #simulador-hipotecas div#rangeInputPlazo {
        display: none;
    }
    */

    #simulador-hipotecas .wrap-cifras {
        display: none;
    }

    #simulador-hipotecas .wrap-cifras.wrap-cifras-no-euro.show {
        display: none !important;
    }
    #simulador-hipotecas .containerYears p.years {
        height: 0;
    }
}
/* FIN Ticket #93932 - Plantillas simulador hipotecas holabank - comentario #190 */

/* DetecciÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬ ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬ ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬ ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n del zoom en Firefox */
.text-zoomx3 #simulador-hipotecas .box-input > label {
    font-size: 12px;
}
.text-zoomx3 #simulador-hipotecas .select-wrapper > span {
    margin-top: -12px;
}

/* Ticket #106581 - Simulador hipotecas Holabank comentario #21 */

.container-box-results .price .coin_type {
    font-weight: 700;
}
span.month {
    display: inline;
    color: #007EAE;
    font-weight: 700;
    font-size: 20px;
}
.box-results .price strong {
    font-size: 25px;
}
@media (min-width: 991px) {
    .box-results .price strong {
        font-size: 45px;
    }
}
span.coin_euro {
    display: inline-block;
}
.costeEuros {
    display: block;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
p.costeEurosTitle {
    width: 100%;
    display: inline !important;
    font-weight: 700;
}
.price span.normalStrong {
    display: inline;
    color: #007eae;
    font-weight: 700;
    font-size: 2rem;
}
span.coin-blue {
    display: inline !important;
    color: #007eae;
}
span.ageNumber {
    display: inline;
}
a.porqueEuros {
    display: block;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.4rem;
}
.costeEuros table {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.costeEuros table td {
    border-bottom: 0 !important;
}

.title span.coin_type {
    display: initial
}

span.price-small {}

.price  span.price-cents {
    color: #007EAE;
    display: inline;
    font-size: 25px;
    font-weight: 700 !important;
}

.box-results .price {
    padding: 15px 0 0 0;
}

.simulator_links .link-group {
    justify-content: center;
    display: flex;
    flex-flow: column;
}
.enlaces-simulacion.fija a,
.enlaces-simulacion.bonificada a {
    color: #007eae !important;
    font-size: 1.3rem;
    padding-left: 0;
    margin: 0;
}
.simulator_links .link-group span.first_link {
    text-align: center !important;
}
.simulator_links .link-group span.second_link{
    text-align: center !important;
}
.simulator_links .link-group .first_link:after {
    display: none !important;
}
@media (min-width: 768px){
    .simulator_links .link-group span.first_link {
        text-align: right !important;
    }
    .simulator_links .link-group span.second_link{
        text-align: left !important;
    }
}
/* FIN Ticket #106581 - Simulador hipotecas Holabank comentario #21 */

/*Estilos propios colorbox simulador de hipotecas porque en euros*/

#colorbox {
    background: #fff;
    border-radius: 10px;
    min-height:400px;
    height: 93vh !important;
    top: 3% !important;
    width: 90% !important;
    left:5% !important;
    overflow: auto !important;
}
#cboxLoadedContent {
    padding: 4rem;
    width: auto !important;
    height: 100% !important;
}
#cboxWrapper {
    height: 100% !important;
    width: 100% !important;
}
#cboxContent {
    height: 100% !important;
    width: 100% !important;
}
#popupWhyInEuros .buttons_group {
    margin-top: 2rem;
}
#popupWhyInEuros h2{
    color: #004f70 !important;
    font-family: 'OpenSans-ExtraboldItalic', Arial, sans-serif;
    margin-bottom: 3rem;
}
@media (min-width: 768px){
    #colorbox {
        min-height:350px;
        height: 54vh !important;
        top: 20% !important;
        width: 70% !important;
        left:15% !important;
    }
}
@media (min-width: 991px){
    #colorbox {
        top: 25% !important;
        width: 50% !important;
        left:25% !important;
        height: 380px !important;
    }
}
/*FIN Estilos propios colorbox simulador de hipotecas porque en euros*/

/* estilo sobrescrito de UI Range */
.ui-widget.ui-widget-content {
    border: .5px solid #e9e9e9 !important;
}

/* Estilos`propios simulador 2023 */
#currency_dropdown .dropdown-menu {
    display: flex;
    justify-content: space-around;
    box-shadow: none;
    border: none;
    flex-wrap: wrap;
    background-color: transparent;
    position: relative;
}

#currency_dropdown .dropdown-menu a {
    width: 169px;
    height: 48px;
    border-radius: 8px;
    box-shadow: 0px 0px 24px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

#currency_dropdown > span,
#currency_dropdown > a {
    display: none;
}

.simulador-hipotecas-form #resultSimulacion {
    display: none;
}

#currency_dropdown .dropdown-menu a.active {
    border: 1.5px solid #027EAE;
}

.visual-steps {
    display: flex;
    justify-content: center;
    margin: 40px;
}

/*
.simulador-hipotecas-2023 #simulador-hipotecas #currency_input--selector .simulator_legend,
.simulador-hipotecas-2023 #simulador-hipotecas #second_step > .row > .center-block > fieldset > .simulator_legend {
    font-size: 20px;
    font-weight: 700;
    color: #0E86B5;
    height: 57px;
}

.simulador-hipotecas-2023 #currency_input--selector a {
    padding: 5px 12px;
}

.simulador-hipotecas-2023 #simulador-hipotecas #currency_input--selector > p {
    text-align: center;
}

.simulador-hipotecas-2023 .custom-form-radio.custom-form-checked + input + label {
    border: 2px solid #007EAE !important;
    color: #007EAE !important;
    background: none;
}

.simulador-hipotecas-2023 #second_step .box-input.range .ui-widget.ui-widget-content {
    background: linear-gradient(270deg, #007EAE 0%, #2FBAEE 100%);
    border-radius: 7px;
}

.simulador-hipotecas-2023 #second_step .box-input.range .ui-slider-horizontal .ui-slider-handle {
    width: 26px;
    height: 26px;
    background: #15536A;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 1px 5px rgba(64, 75, 80, 0.5);
    border-radius: 94px;
    top: -3px;
}

.simulador-hipotecas-2023 #second_step .box-input.range .ui-slider-horizontal .ui-slider-range-max {
    border-radius: 5px;
}

.simulador-hipotecas-2023.simulador-hipotecas-form input[type=submit] {
    border-radius: 999px;
}

@media (min-width: 768px) {
    .simulador-hipotecas-2023 #second_step .box-input.number {
        text-align: center;
    }
    .simulador-hipotecas-2023 #second_step .box-input.number input {
        font-size: 13px;
        background: #FFF;
        border: 1px solid #505050;
        width: 176px;
        height: 40px;
        border-radius: 4px;
    }
}
*/

.simulador-hipotecas h2 {
    font-size: 24px;
    font-weight: 700;
    color: #027EAE;
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .simulador-hipotecas .main-component .article-content.article-text h2 {
        margin-top: 0;
    }
}

.simulador-hipotecas h3 {
    border: 0;
    font-size: 16px;
    font-weight: 700;
}
.simulador-hipotecas h3 span {
    color: #007eae;
}
.simulador-hipotecas .box-input.radio {
    display: flex;
    align-items: baseline;
    width: 50%;
    height: 50px;
}
.simulador-hipotecas .box-input.radio label {
    font-size: 16px;
    text-align: center;
    padding-left: 20px;
    border: 1px solid #C8D2DD;
    background: #F6F6F6;
}
.simulador-hipotecas .box-input.radio .custom-form-checked + input + label {
    background: #FFF;
    border: 2px solid #007eae;
}

.simulador-hipotecas .titulares {
    overflow: hidden;
    margin-bottom: 2rem;
	display: flex;
    justify-content: center;
}

.simulador-hipotecas .titulares .col-xs-4 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.simulador-hipotecas .col-md-4.contrato {
    overflow: hidden;
}
.simulador-hipotecas .titulares .col-xs-4 input {
    margin: 0 10px;
}
.simulador-hipotecas .titulares .col-xs-4 label {
    margin: 0;
    width: auto;
}
.simulador-hipotecas .box-input.number {
    text-align: center;
    margin: 2rem 0;
}
.simulador-hipotecas .box-input.number input[type=text] {
    width: 176px;
    font-size: 13px;
    text-align: center;
    color: #000;
}
.simulador-hipotecas .box-input.range {
    display: block;
    margin: 4rem 0;
}
.simulador-hipotecas .box-input.range .ui-widget.ui-widget-content {
    background: linear-gradient(270deg, #007EAE 0%, #2FBAEE 100%);
    border-radius: 7px;
}
.simulador-hipotecas .box-input.range .ui-slider-horizontal .ui-slider-handle {
    width: 26px;
    height: 26px;
    background: #15536A;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 1px 5px rgba(64, 75, 80, 0.5);
    border-radius: 94px;
    top: -4px;
}
.simulador-hipotecas .subtitle {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    height: 45px;
}
.simulador-hipotecas .main-component {
    margin-bottom: 2rem;
}
.simulador-hipotecas fieldset p {
    text-align: center;
    font-size: 18px;
    width: 100%;
}
@media(min-width: 992px) {
    .simulador-hipotecas fieldset p {
        height: 45px;
    }
}
.simulador-hipotecas .inputs-container legend {
    font-weight: 400;
    margin-bottom: 3rem;
}
.simulador-hipotecas .inputs-container label {
    font-size: 18px;
    font-weight: 400;
}
.simulador-hipotecas input[type=text] {
    background: #FFF;
    border: 1px solid #C8D2DD;
}
.simulador-hipotecas .submit input {
    width: 200px;
    height: 50px;
    font-weight: 700;
    border-radius: 31px;
    font-size: 16px;
    font-weight: 600;
}
.simulador-hipotecas .btn-blue a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    pointer-events: none;
    cursor: auto;
    /* opacity: 0.5; */
    margin: 0 auto;
}
.simulador-hipotecas .btn-blue a.active,
.simulador-hipotecas .btn-blue input.active {
    pointer-events: auto;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
.simulador-hipotecas .link {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 35px;
}
.simulador-hipotecas .step-1 {
    /* revisar si sirve para todos y no solo para step-1*/
}
.simulador-hipotecas .step-1 legend {
    font-size: 18px;
    font-weight: 400;
    color: #333333;
}

.simulador-hipotecas .step-10 .button_wrap {
    margin-top: 3rem;
}

.simulador-hipotecas .step-3 input[type=radio] {
    margin: 0 5px;
    width: 20px;
    height: 20px;
}
.simulador-hipotecas .step-3 input[type=radio] + label {
    margin-bottom: 0;
    width: auto;
    font-size: 16px;
}
.simulador-hipotecas .step-3 .col-xs-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 20px;
}
.simulador-hipotecas .step-3 .select-wrapper {
    margin-bottom: 35px;
}
.simulador-hipotecas .step-4 .box-input.number input[type=text] {
    width: 250px;
}
/*}
.simulador-hipotecas .step-4 label {
    font-weight: 700;
}
*/
.simulador-hipotecas .step-4 fieldset input {
    width: 100% !important;
}

.simulador-hipotecas .step-4 .select-wrapper {
	margin-bottom: 15px;
}

.simulador-hipotecas .step-4 .pie {
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
}

.simulador-hipotecas .title-range {
    font-size: 18px;
    font-weight: 400;
    color: #333;
}
@media(min-width: 992px) {
    .simulador-hipotecas .title-range {
        height: 45px;
    }
}
/* FIN Estilos`propios simulador 2023 */
.simulador-fiscal form {
	margin-top: 40px;
}

.article-content.article-text .texto-centrado {
	
}

.simulador-fiscal .box-input.radio .custom-form-checked + input + label {
    background: #FFF;
    border: 2px solid #007eae;
}
.simulador-fiscal .box-input.radio {
    display: flex;
    align-items: baseline;
    width: 50%;
    height: 50px;
}
.simulador-fiscal .box-input.radio label {
    font-size: 16px;
    text-align: center;
    padding-left: 20px;
    border: 1px solid #C8D2DD;
    background: #F6F6F6;
}
.simulador-fiscal .textoMax, .simulador-fiscal .textoMax2 {
    background: #E8F4FB;
    padding: 16px 24px;
    text-align: center;
	font-size: 18px;
}
.simulador-fiscal .button_wrap .btn-blue a {
    padding: 16px;
    width: 200px;
    font-size: 16px;
    font-weight: 600;
}

.simulador-fiscal .step-6 {
    margin-top: 60px;
    /* display: block !important;  PRVISIONSL */
}