/* FONTS */


/*css calculadora oferta*/
@font-face {
    font-family: 'FiraSansLight';
    src: url('fonts/fira-sans/FiraSansLight.eot');
    src: url('fonts/fira-sans/FiraSansLight.eot') format('embedded-opentype'), url('fonts/fira-sans/FiraSansLight.woff2') format('woff2'), url('fonts/fira-sans/FiraSansLight.woff') format('woff'), url('fonts/fira-sans/FiraSansLight.ttf') format('truetype'), url('fonts/fira-sans/FiraSansLight.svg#FiraSansLight') format('svg');
}

@font-face {
    font-family: 'FiraSansBold';
    src: url('fonts/fira-sans/FiraSansBold.eot');
    src: url('fonts/fira-sans/FiraSansBold.eot') format('embedded-opentype'), url('fonts/fira-sans/FiraSansBold.woff2') format('woff2'), url('fonts/fira-sans/FiraSansBold.woff') format('woff'), url('fonts/fira-sans/FiraSansBold.ttf') format('truetype'), url('fonts/fira-sans/FiraSansBold.svg#FiraSansBold') format('svg');
}

@font-face {
    font-family: 'FiraSansMedium';
    src: url('fonts/fira-sans/FiraSansMedium.eot');
    src: url('fonts/fira-sans/FiraSansMedium.eot') format('embedded-opentype'), url('fonts/fira-sans/FiraSansMedium.woff2') format('woff2'), url('fonts/fira-sans/FiraSansMedium.woff') format('woff'), url('fonts/fira-sans/FiraSansMedium.ttf') format('truetype'), url('fonts/fira-sans/FiraSansMedium.svg#FiraSansMedium') format('svg');
}

@font-face {
    font-family: 'FiraSansRegular';
    src: url('fonts/fira-sans/FiraSansRegular.eot');
    src: url('fonts/fira-sans/FiraSansRegular.eot') format('embedded-opentype'), url('fonts/fira-sans/FiraSansRegular.woff2') format('woff2'), url('fonts/fira-sans/FiraSansRegular.woff') format('woff'), url('fonts/fira-sans/FiraSansRegular.ttf') format('truetype'), url('fonts/fira-sans/FiraSansRegular.svg#FiraSansRegular') format('svg');
}

/* RESET */

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*:focus {
    outline: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
}

input:-internal-autofill-previewed, input:-internal-autofill-selected, textarea:-internal-autofill-previewed, textarea:-internal-autofill-selected, select:-internal-autofill-previewed, select:-internal-autofill-selected {
    background-color: #fff !important;
}

*::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #c5c5c5;
}

*::-moz-placeholder {
    /* Firefox 19+ */
    color: #c5c5c5;
}

*:-ms-input-placeholder {
    /* IE 10+ */
    color: #c5c5c5;
}

*:-moz-placeholder {
    /* Firefox 18- */
    color: #c5c5c5;
}

a {
    color: inherit;
    text-decoration: none;
}

/* BASE */

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    font-family: 'FiraSansLight', sans-serif;
    font-size: 18px;
    color: #333333;
}

#app-container {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-image: url(../images/chalet-verano-fondo.jpg);
    background-position: 20% 120%;
    background-repeat: no-repeat;
    background-size: 60%;
    overflow-x: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wrapper {
    width: 100%;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px;
}

@media screen and (max-width: 1340px) {
    #app-container {
        background-position: 20% 110%;
    }

    .wrapper {
        padding: 30px 60px;
    }
}

@media screen and (max-width: 768px) {
    #app-container {
        background-position: center bottom;
        background-size: 80%;
    }

    .wrapper {
        padding: 30px 40px;
    }
}

@media screen and (max-width: 480px) {
    .wrapper {
        padding: 30px 24px;
    }
}

/* HEADER */
/*
header {
    border-bottom: 1.5px solid rgba(179, 179, 179, 0.20);
    -webkit-box-shadow: 0px -2px 10px rgba(179, 179, 179, 0.30);
    box-shadow: 0px -2px 10px rgba(179, 179, 179, 0.30);
}*/

header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.logo {
    height: 70px;
    margin-right: 30px;
}

#slogan {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#slogan h1 {
    font-size: 30px;
    font-family: 'FiraSansRegular', sans-serif;
    color: #6C6C6C;
}

#slogan h2 {
    font-family: 'FiraSansLight', sans-serif;
    font-weight: 100;
    font-size: 1.17rem;
}

@media screen and (max-width: 768px) {
    header .wrapper {
        padding: 20px 40px;
    }

    .logo {
        height: 45px;
    }

    #slogan {
        height: 45px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #slogan h1 {
        font-size: 20px;
    }

    #slogan h2 {
        display: none;
    }
}

.llamanos.desktop {
    display: none;
}

@media screen and (max-width: 580px) {
    #slogan h1 span {
        display: block;
    }
}

/* TIME BAR */

#time {
    margin-left: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.time__segundos {
    font-size: 50px;
    font-weight: 600;
    margin-right: 10px;
    min-width: 80px;
    text-align: right;
}

#time-text .minified {
    display: none
}

#time-final {
    display: none;
}

#time-final .minified {
    display: none;
}

.time-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 12.5px;
}

.time-bar__bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    margin-bottom: 40px;
}

.time-bar__bar nav {
    margin-bottom: 15px;
}

.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tabs__timebar {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: #EAEAEA;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tabs__timebar-increment {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
    width: 0%;
    height: 100%;
    border-radius: 20px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 0;
    background-color: #ff0033;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.tabs__timebar--end .tabs__timebar-increment {
    width: 100%;
}

.tabs__timebar--end .tabs__timebar-point {
    background-color: #ff0033;
}

.tabs__timebar-point {
    width: 25px;
    height: 25px;
    background-color: #EAEAEA;
    border-radius: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tabs__timebar-point.point-1 {
    -webkit-transform: translateX(-12.5px);
    -ms-transform: translateX(-12.5px);
    transform: translateX(-12.5px);
}

.tabs__timebar-point.point-4 {
    -webkit-transform: translateX(12.5px);
    -ms-transform: translateX(12.5px);
    transform: translateX(12.5px);
}

.tabs__timebar-point:after {
    content: '';
    position: absolute;
    width: 10%;
    height: 10%;
    border-radius: 100%;
    opacity: 0;
    background: #ff0033;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.current.tabs__timebar-point:after {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.tabs a {
    cursor: default;
    pointer-events: none;
}

.tabs li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    width: calc(100% / 3);
}

.tabs li .tabs__title {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 18px;
    font-weight: 100;
}

.tabs li .tabs__title span {
    display: block;
    font-weight: 600;
}

.tabs .order {
    display: none;
}

@media screen and (max-width: 1024px) {
    #time {
        max-width: 110px;
    }
}

@media screen and (max-width: 768px) {
    #time-text .complete {
        display: none;
    }

    #time-text .minified {
        display: block;
    }

    #time-final .complete {
        display: none;
    }

    #time-final .minified {
        display: block;
    }

    #time {
        display: none;
    }

    .time-bar__bar {
        margin-bottom: 20px;
    }

    .tabs__timebar-point {
        width: 20px;
        height: 20px;
    }
}

/* SLIDES */

.tabs .minified {
    display: none
}

#slides {
    position: relative;
    min-height: 370px;
}

#slides article {
    display: none;
    opacity: 0;
    /* transform: translateX(50%); */
}

#slides article.appear {
    opacity: 1;
    transform: translateX(0);
    /* -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease; */
}

#slides article.disappear {
    opacity: 0;
    /* transform: translateX(-50%); */
    /* -webkit-transition: all .3s ease .5s;
    -o-transition: all .3s ease .5s;
    transition: all .3s ease .5s; */
}

#slides article h3 {
    font-size: 28px;
    font-family: 'FiraSansRegular', sans-serif;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 15px;
}

#slides .input.radio label {
    min-width: 450px;
    line-height: 24px;
    border: 1px solid #ff0033;
    border-radius: 43px;
    color: #ff0033;
    font-size: 22px;
    font-weight: 300;
    padding: 30px 80px 30px 40px;
    margin: 0 2% 1vw 0;
    display: inline-block;
    position: relative;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    cursor: pointer;
}

#slides .input.radio label:after {
    content: "";
    width: 25px;
    height: 25px;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    background-image: url(../images/icono-red.svg);
    margin-left: 20px;
    position: absolute;
    right: 30px;
    top: calc(50% - 12.5px);
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

#slides .input.radio label:hover:after {
    content: "";
    background-image: url(../images/icono-bl.svg);
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

#slides .input.radio label.active:after {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all ease-in .1s;
    -o-transition: all ease-in .1s;
    transition: all ease-in .1s;
}

#slides .input.radio label:hover {
    color: #ffffff;
    background-color: #ff0033;
    border-radius: 0px 43px 0px 43px;
}

#slides .input.radio label.active {
    color: #ffffff;
    background-color: #D4002A;
    border: 1px solid #D4002A;
    border-radius: 0px 43px 0px 43px;
}

#slides .input.radio input {
    display: none;
}

#preg9, #preg13, #preg16 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#preg9 .input.radio, #preg13 .input.radio, #preg16 .input.radio {
    margin-right: 1vw;
}

#preg9 .input.radio label, #preg13 .input.radio label, #preg16 .input.radio label {
    margin-bottom: 1vw;
}

.telf-cp {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 550px;
    position: relative;
    height: 92px;
}

.telf-cp .input.text {
    width: 65%;
    position: absolute;
    top: 0;
}

.telf-cp .input.text input {
    width: 100%;
    height: 92px;
    padding: 0px 40px 0px 50px;
    margin: 0;
    background-color: #fff;
    border: 1px solid #ff0033 !important;
    font-size: 22px;
    color: #555555;
    z-index: 1;
    border-radius: 50px;
    -webkit-transition: all ease-in .2s;
    -o-transition: all ease-in .2s;
    transition: all ease-in .2s;
    font-family: 'FiraSansLight', sans-serif;
}

.telf-cp .submit {
    width: 100%;
    height: 100%;
}

.telf-cp .submit:after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    top: calc(50% - 12.5px);
    width: 25px;
    height: 25px;
    background-image: url(../images/icono-bl.svg);
    -webkit-transition: all ease-in .2s;
    -o-transition: all ease-in .2s;
    transition: all ease-in .2s;
    pointer-events: none;
}

.telf-cp .submit:hover:after {
    right: calc(30px - 5%);
    transform: scale(1.25);
}

.telf-cp .submit input {
    width: 100%;
    height: 92px;
    border: 1px solid #ff0033;
    border-radius: 100px;
    background-color: #ff0033;
    font-size: 22px;
    color: #fff;
    -webkit-transition: all ease-in .2s;
    -o-transition: all ease-in .2s;
    transition: all ease-in .2s;
    text-align: right;
    padding-right: 70px;
    cursor: pointer;
    font-family: 'FiraSansLight', sans-serif;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: unset;
}

.telf-cp.active .submit input {
    border: 1px solid #D4002A;
    background-color: #D4002A;
}

.telf-cp.active .input.text input {
    border: 1px solid #D4002A !important;
}

.telf-cp .submit:hover input {
    width: 105%;
}

.telf-cp .error-message {
    position: absolute;
    bottom: -60px;
    margin-bottom: 30px;
    color: #ff0033;
    width: calc(100vw - 120px);
    max-width: 1280px;
}

.negocio-last .telf-cp .error-message {
    bottom: -110px;
}

.vivienda-last .telf-cp .error-message {
    bottom: -110px;
}

#privacidad2 {
    font-size: 0.8em;
    margin-top: 10px;
}

#privacidad2 a {
    color: #ff0033;
    text-decoration: underline;
}

@media screen and (max-width: 1057px) {
    #slides {
        min-height: 555px;
    }
}

@media screen and (max-width: 768px) {
    .tabs .complete {
        display: none;
    }

    .tabs .minified {
        display: block;
    }

    #slides {
        min-height: 300px;
    }

    #slides article h3 {
        font-size: 18px;
        line-height: 25px;
        text-align: center;
    }

    #slides .input.radio label {
        min-width: auto;
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
        padding: 20px 30px 20px 30px;
        font-size: 20px;
        border-radius: 33px;
        text-align: center;
    }

    #slides .input.radio label:after {
        display: none;
    }

    #slides .input.radio label:hover {
        border-radius: 33px 33px 33px 33px;
    }

    #preg9 .input.radio, #preg13 .input.radio, #preg16 .input.radio {
        width: 100%;
    }

    .telf-cp {
        display: block;
        max-width: 100%;
        width: 100%;
        height: 72px;
    }

    telf-cp .input.text {
        width: 65%;
        display: block;
        position: unset;
    }

    .telf-cp .input.text input {
        height: 72px;
        padding: 0px 30px 0px 50px;
    }

    .telf-cp .submit input {
        height: 72px;
    }

    .telf-cp .submit:hover input {
        width: 100%;
    }

    .telf-cp .submit:hover:after {
        right: 30px;
    }
}

@media screen and (max-width: 580px) {
    #tlf-submit {
        margin-top: 50px;
    }

    #tlf-err-1, #tlf-err-2 {
        bottom: -204px;
    }

    #submit-negocio {
        margin-top: 48px;
    }

    #preg21 .error-message {
        bottom: -202px;
    }

    .telf-cp .submit:after {
        content: '';
        display: none;
    }

    .telf-cp .input.text {
        width: 100%;
        height: 72px;
        position: unset;
    }

    .telf-cp .submit {
        margin-top: 30px;
    }

    #slide-11 .telf-cp .submit {
        margin-top: 48px;
    }

    .telf-cp .submit input {
        width: 100%;
        height: 72px;
        border: 1px solid #fff;
        padding: 0px 30px 0px 30px;
        border-radius: 100px;
        background-color: #ff0033;
        font-size: 22px;
        color: #fff;
        -webkit-transition: all ease-in .2s;
        -o-transition: all ease-in .2s;
        transition: all ease-in .2s;
        text-align: center;
        cursor: pointer;
        font-family: 'FiraSansLight', sans-serif;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-appearance: unset;
    }

    .telf-cp .submit input.active, .telf-submit .submit input.active {
        color: #ffffff;
        background-color: #D4002A;
        border: 1px solid #D4002A;
        content: "";
    }

    .telf-cp .submit.active:after, .telf-submit .submit.active:after {
        background-image: url(../images/icono-bl.svg);
        -webkit-transform: scale(1.25);
        -ms-transform: scale(1.25);
        transform: scale(1.25);
    }

    .telf-cp .error-message {
        bottom: -205px;
    }

    .negocio-last .telf-cp .error-message {
        bottom: -204px;
    }

    .vivienda-last .telf-cp .error-message {
        bottom: -204px;
        width: 100%;
    }
}

@media screen and (max-width: 460px) {
    #slides .line-2 {
        display: block;
    }
}

@media screen and (max-width: 355px) {
    #tlf-submit, #submit-negocio {
        margin-top: 60px;
    }
}

/* FOOTER */

footer {
    height: auto;
    color: #ffffff;
    font-size: 14px;
    background-color: #75787B;
}

footer .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 30px 50px;
}

#copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.logo-footer {
    height: 45px;
    margin-right: 20px;
}

.footer__item {
    margin-right: 20px;
}

.footer__item.popup-link {
    text-decoration: underline;
}

.legal-mobile {
    display: none;
}

.legal-desk {
    display: block;
}

a.leer-legal {
    background-color: #666666;
    border-color: #666666;
    padding: 5px 15px;
    text-transform: initial;
    padding-right: 20px;
    font-size: 11px;
    border-radius: 25px;
    text-decoration: none !important;
    text-align: center;
    font-weight: 400;
}

img.flecha-legal {
    margin-left: 5px;
    width: 8px;
    height: auto;
    position: absolute;
    margin-top: -2px;
}



.popup-covid__btn {
    display: inline-block;
    background-color: #ff0033;
    color: #FFF;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    text-decoration: none;
    border-radius: 30px;
    padding: 0 40px;
    margin: 15px 0;
    width: 100%;

}

@media screen and (max-width: 768px) {
    .legal-mobile {
        display: block;
    }

    .legal-desk {
        display: none;
    }

    footer {
        height: auto;
    }

    .logo-footer {
        height: 40px;
    }
}

@media screen and (max-width: 580px) {
    footer .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #copyright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .logo-footer {
        margin-right: 0;
        margin-bottom: 5px;
        height: 35px;
    }

    .footer__item {
        margin-right: 0;
        margin-top: 8px;
    }
}

/* POPUP */

.popupOferta {
    max-width: 600px;
    background-color: white;
    padding: 60px 80px;
    border-bottom-right-radius: 100px;
    border-top-left-radius: 100px;
    color: #6c6c6c;
    margin: 0 auto;
}

.popupOferta.white-popup .black {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.popupOferta .black {
    width: 100% !important;
    max-width: auto !important;
}

.popupOferta .black .red {
    color: #ff0033;
}

.popupOferta h3.demi {
    font-size: 36px;
    font-family: 'FiraSansRegular', sans-serif;
    margin-bottom: 10px;
}

.popupOferta h4.ventajas {
    margin-top: 30px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ff0033;
}

.popupOferta li {
    font-size: 18px;
    font-family: 'FiraSansLight', sans-serif;
    height: 38px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.popupOferta li .check {
    position: relative;
    display: inline-block;
    left: 0;
    width: 10px;
    height: 18px;
    margin-right: 24px;
}

.popupOferta li .check:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 3px;
    height: 100%;
    width: 3px;
    background: #ff0033;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
}

.popupOferta li .check:before {
    content: '';
    position: absolute;
    bottom: 3px;
    width: 100%;
    height: 3px;
    background-color: #ff0033;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
}

.popupOferta .right {
    text-align: right;
    margin-bottom: 30px;
    margin-top: 1em;
}

.popupOferta button {
    border: none;
    color: #fff;
    background-color: #ff0033;
    cursor: pointer;
    line-height: 36px;
    padding: 0 40px;
    font-size: 14px;
    font-family: 'FiraSansRegular', sans-serif;
    border-radius: 18px;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.popupOferta button:hover {
    background-color: #D4002A;
}

.popupOferta .small {
    font-size: 11px;
}

@media screen and (max-width: 640px) {
    .mfp-container {
        padding: 20px !important;
    }

    .popupOferta {
        padding: 50px;
        border-bottom-right-radius: 60px;
        border-top-left-radius: 60px;
    }

    .popupOferta h3.demi {
        font-size: 30px;
    }

    .popupOferta .right {
        text-align: left;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 0;
        margin-top: 2em;
    }

    .popupOferta .black .red {
        color: #ff0033;
        display: block;
    }

    .popupOferta .small {
        margin-top: 1em;
    }
}

/* COOKIES */
.calcula {
    position: unset;
    overflow: unset;
    background-color: #75787b;
    display: block;
    font-size: .65em;
    width: 100%;
    bottom: 0;
    padding: 10px 15px;
    text-align: center;
    color: #fff;
    z-index: 100;

}

.cookies {
    display: block;
    font-size: .65em;
    width: 100%;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    padding: 5px 0;
    text-align: center;
    background-color: #000;
    color: #fff;
    z-index: 10000000000;
}

.cookies .cookies-content {
    padding: 0 2%;
    max-width: 1200px;
    margin: 0 auto;
}

.cookies .cookies-text {
    float: left;
    text-align: left;
    padding: 4px 0px 4px 0px;
}

.cookies .cookies-text p {
    padding: 0 !important;
}

.cookies .cookies-buttons button {
    border: 0;
    color: #000;
    padding: 4px;
    background-color: #FFF;
}

.cookies .cookies-buttons button:before {
    content: "Cerrar";
}

@media screen and (max-width: 479px) {
    .cookies {
        font-size: .65em;
    }

    .cookies .cookies-content {
        position: relative;
        overflow: hidden;
    }

    .cookies .cookies-text {
        float: left;
        text-align: left;
        padding: 4px 30px 4px 0px;
    }

    .cookies .cookies-buttons button {
        position: absolute;
        top: 0;
        right: 4px;
        cursor: pointer;
        padding: 10px;
    }

    .cookies .cookies-buttons button:before {
        content: "X";
    }

    #preg11 span {
        font-size: 18px;
    }

    .plus-56 {
        top: 28px;
    }
}

/*tooltip*/

#promo-tooltip {
    position: absolute;
    width: 80%;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0c5847;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    z-index: 9999;
    font-family: 'FiraSansRegular', sans-serif !important;
    display: none;
    font-size: 14px;
}

#promo-tooltip .tooltip1 {
    color: #fff !important;
    font-size: 18px;
    font-family: 'FiraSansBold', sans-serif !important;
}

#promo-tooltip .close-btn {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

@media screen and (min-width: 1024px) {
    #promo-tooltip {
        position: absolute;
        width: 100%;
        top: 120px;
        left: 42%;
        transform: translateX(-50%);
        color: white;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        max-width: 400px;
        font-size: 19px;
    }

    #promo-tooltip .tooltip1 {
        font-size: 24px;
    }

}

#preg11 span {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
}

.plus-56-glass {
    left: 106px;
}

.plus-56 {
    position: absolute;
    width: 30px !important;
    left: 5px;
    top: 34px;
    font-family: 'FiraSansBold', sans-serif;
}

.plus-56:after {
    content: '+56';
}

@media screen and (max-width: 879px) {
    #preg11 span, #preg21 span {
        font-size: 18px;
    }

    .plus-56 {
        top: 28px;
    }
}