.lista-condiciones{
    margin-top: 20px;
    padding-left: 25px;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
}

.acciones-bajo-boton{
    margin-top: 20px;
}

.opciones-pago{ 

    padding-bottom: 80px;

    .titulo1{
        margin-top: 40px;
    }

    .cont-botones{
        margin-bottom: 65px;
    }

    .text-center {
        font-family: 'Nunito Sans', sans-serif;
    }
}

.cont-contacto-telefonos{
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.calculadora{
    font-size: 16px; 

    .cont-label{
        display: flex;
        justify-content: space-between;
        margin-bottom: 3px;
    }

    .num{
        font-weight: bold;
    }

    .cont-slide{
        margin-bottom: 10px; 
    }
}

.cont-ofertas{
    margin-top: 25px;

    #error-oferta{
        margin-bottom: 10px;
        text-align: center;
    }
    
    .oferta{
        display: flex;
        justify-content: space-between;
        border: 2px solid #ddd;
        border-radius: var(--radius);
        padding: 10px 15px 5px 15px;
        margin-bottom: 10px;
        cursor: pointer;

        &.active{
            border-color: var(--color-primario);
        }

        &.disabled{
            opacity: 0.3;
            cursor: default;
        }
        .cont-precio {
            width: 30%;
        }

        .caracteristicas {
            width: 60%;
        }
    }

    .titulo {
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 3px;
        font-family: 'Roboto', sans-serif;
    }

    .precio{
        font-weight: 600;
        font-family: 'Roboto', sans-serif;
    }

    .small{
        font-size: 11px;
        font-weight: 300;
    }

    .offer-label{
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        margin-top: 3px;
        padding: 3px 7px;
        text-transform: uppercase;
        min-height: 15px;
    }

    .caracteristicas{
        margin-left: 20px;

        .caracteristica > img {
            margin-right: 5px;
        }
    }
    .caracteristicas > div{
        margin-bottom: 5px;
    }
}

.cambio-pago{
    display: block;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 30px;
}

.resumen-pago{
    border-radius: 5px;
    border: 1px solid #1D7BC9;
    padding: 15px 0;

    .fila{
        display: flex;

        &.separacion {
            padding: 5px;
        }
    }
    .texto,
    .valor {
        width: 50%;
        font-family: 'Barlow Condensed', sans-serif;

        &.negrita {
            font-weight: 700;
        }

        &.bajar {
            padding-top: 5px;
        }

        &.precioFinal {
            font-size: 25px;
            font-weight: 500;
        }
    }
    .texto {
        text-align: right;
        padding-right: 12px;
        font-family: 'Nunito Sans', sans-serif;
    }
}

.dato-transferecia {
    margin: 24px 0;
    font-family: 'Nunito Sans', sans-serif;

    .texto,
    .cuenta {
        width: 100%;
        margin-bottom: 10px;
        display: block;
    }

    .texto {
        text-align: center;
    }

    .cuenta {
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        font-family: 'Roboto', sans-serif;
    }
}

.comprobante {
    width: 100%;
    max-width: 318px;
    height: 69px;
    border: 1px dashed #ABABAB;
    background: #F5F5F5;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    #adjuntar {
        display: none;
    }

    .texto {
        display: flex;
        line-height: 19px;

        .upload {
            margin-left: 10px;
        }
    }
}

#form-transferencia {
    .error {
        width: 100%;
        max-width: 318px;
        margin: 10px auto 0 auto;
        color: red;
    }

    .adjunto {
        width: 100%;
        max-width: 318px;
        margin: 10px auto 0 auto;
    }

    .boton {
        margin-top: 30px;
    }
    .boton:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
}

.permitidos {
    margin: 10px auto 0 auto;
    width: 100%;
    max-width: 318px;

    .text {
        width: 100%;
        display: block;
        margin-bottom: 5px;
    }
}

.text-center.fin {
    font-family: 'Nunito Sans', sans-serif;
}

.pasos-fin {
    width: 100%;
    max-width: 338px;
    border: 1px solid #CCC;
    margin: 28px auto 25px auto;
    padding: 19px 25px;
    border-radius: 5px;

    & .titulo {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 12px;
        text-transform: uppercase;
        font-family: 'Roboto', sans-serif;
    }

    & .paso {
        font-size: 16px;
        padding-right: 0;
        display: flex;
        margin-bottom: 5px;
        font-family: 'Nunito Sans', sans-serif;
    }

    & .paso img {
        margin-right: 10px;
    }
}

.footer-pago-cont{
    height: 85px;
}

.footer-pago{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding:10px 15px;
    z-index: 50;

    .precio-principal {
        .label,
        .texto {
            font-family: 'Nunito Sans', sans-serif;         
        }
        .valor {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 500;
        }
    }
}

.ver-detalle{
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--color-primario);
}

.cont-ocultar-detalle {
    .ver-detalle {
        color: #FFF;
    }
}

#backdrop{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(220,220,220,0.75);
    z-index: 20;
}

#detalle-pago{
    border-top-right-radius: var(--radius);
    border-top-left-radius: var(--radius);
    padding: 35px 0px 15px;
    background-color: var(--color-primario);
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    z-index: 60;
    color: #fff;
    transform: translateY(100%);

    &.visible{
        transform: translateY(0%);
    }

    .titulo1{
        color: #fff;
        text-align: center;
    }

    .desglose-cont{
        margin:30px 60px 60px 60px;
    }

    .desglose-pago{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 7px 0;

        .label{
            font-size: 13px;
            font-family: 'Nunito Sans', sans-serif;
        }

        .precio{
            font-size: 30px;
            font-family: 'Barlow Condensed', sans-serif;
        }   
        
        .precio small{
            display: flex;
            justify-content: flex-end;
        }

        .finalPrice,
        .subIva {
            width: 100%;
            display: block;
            text-align: right;
        }

        .subIva {
            font-size: 11px;
            font-family: 'Nunito Sans', sans-serif;
        }        
    }

    .desglose-pago small{
        font-size: 11px;
        font-weight: 300;
    }

    .cont-ocultar-detalle{
        display: flex;
        justify-content: flex-end;
        padding-right: 15px;
    }
}

.fin.container{
    padding-right: 60px;
    padding-left: 60px;
    padding-top: 60px;
}
.fin {
    .precio-principal{
        border-top: 1px solid #ddd;
        padding-top: 20px;
    }
    
    
}
:root{
    --color-primario: #1D7BC9;
    --gris-fondo: #EFEFEF;
    --color-gris: #818181;
    --radius: 5px;
}

body{
    font-size: 14px;
    margin: 0;
    font-family: 'Encode Sans Condensed', sans-serif;
    line-height: normal;
}

input{
    font-family: 'Encode Sans Condensed', sans-serif;
}

a{
    color: var(--color-primario);
    display: inline-block;
    cursor: pointer;
}

.color-primario{
    color: var(--color-primario);
}

.color-gris{
    color: var(--color-gris);
}

.text-error{
    color: red;
}

.text-warning{
    color: orange;
}

.hidden{
    display: none;
}

.invisible{
    width: 0;
    height: 0;
    border: none;

    &:focus{
        outline: none;
        border: none;
    }
}

.elipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.img-cover{
    background-size: cover;
    background-position: center center;
}

.flex-between{
    display: flex;
    justify-content: space-between;
}

.container{
    padding-left: 15px;
    padding-right: 15px;
}

.text-center{
    text-align: center;
}

.no-scroll {
    overflow: hidden
}

.rotate180{
    transform: rotate(180deg);
}

.alert.alert-danger{color: #f00;}
.alert ul{
    text-align: center;
    padding:0;   
    list-style: none; 

    li{
        margin: 10px 0;
    }
}

.slide {
    -webkit-appearance: none;
    appearance: none;
    width: 100%; 
    height: 7px; 
    background: #d9d9d9;
    outline: none;
    -webkit-transition: .2s; 
    border-radius: 5px;

    &:focus{outline: none;}


    &::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 25px; 
        height: 25px;
        background: var(--color-primario);
        cursor: pointer;
        border-radius: 50%;
    }
    
    &::-moz-range-thumb {
        width: 25px; 
        height: 25px;
        background: var(--color-primario);
        cursor: pointer;
        border-radius: 50%;
    }
}

.titulo1{
    color: #000;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
}

.titulo2{
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.titulo3{
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
}

.subtitulo{
    text-align: center;
}

.precio-primario{
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primario);
}

.form-input{
    box-sizing: border-box;
    width: 100%;
    padding: 18px 15px;
    border:none;
    border-radius: var(--radius);    
    background-color: var(--gris-fondo);    
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 15px;
}

.form-input::placeholder{
    color: #000;
}

.checkbox{
    display: flex;
    align-items: center;
    margin-bottom: 25px;

    & input{margin-right: 10px;}
}

.boton{
    border:1px solid  var(--color-primario);
    background: var(--color-primario);
    color: #fff;
    border-radius: var(--radius);    
    padding: 18px 15px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;

    &.invertido{
        background-color: #fff;
        color: var(--color-primario);
    }

    &.disabled{
        opacity: 0.3;
    }
}

.cont-botones{
    display: flex;
    margin-bottom: 65px;

    .boton{
        flex-grow: 1;

        &:first-child{
            margin-right: 10px;
        }
    }
}

.precio-principal .label{
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
}

.precio-principal .valor{
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.precio-principal .valor.primario{
    color: var(--color-primario);
}

.precio-principal .valor small{
    font-size: 15px; 
    font-weight: 600;
    margin-left: 3px;
}

.precio-principal .texto{    
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    color: var(--color-gris);
}

.fixed-footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.form-datos{
    margin-top: 30px;
}
.form-datos .boton{
    width: 100%;
}

@media(min-width:768px){
    .container{
        padding-left: 40px;
    }
}

.side-panel{display: none;}
.main-panel{background-color: #fff;}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 1px 1px 5px #aaa;
    padding: 10px 15px;   
    >div{
        display: flex;
        align-items: center;
    }
    .back{
        padding: 3px;
        margin-right: 7px;
    }
    .logo-cliente{height: 45px;}
    .logo-inventario{width: 135px;}
}

.header-opciones{
    display: flex;
    padding: 15px 15px 0px 15px;

    & > *{
        width: 45%;
        justify-content: space-between;
    }
}

.paso{
    padding-right: 15px;
    &:last-child{
        padding-right: 0;
    }

    & > div:first-child{
        font-size: 11px;    
        font-weight: 300;
    }
    
    .barra{
        margin-top: 1px;
        width: 100%;
        height: 4px;
        background-color: var(--gris-fondo);
        border-radius: 2px;
    }
    
    .barra.activa{background-color:  var(--color-primario)}
}

.datos-coche{
    padding-bottom: 25px;
    padding-top: 30px;

    .img{
        height: 80px;
        width: 110px;
        border-radius: var(--radius);
        flex-shrink: 0;
    }
    
    .datos{
        flex-grow: 1;
        padding-left: 15px;
    }
    
    .modelo{
        font-size: 26px;
        font-weight: 500;
        text-transform: uppercase;
    }
    
    .version{
        font-size: 20px;
        font-weight: 300;
        line-height: 1;
    }
    
    .caracteristicas{
        margin-top: 5px;
        font-size: 11px;
        font-weight: 300;
        color: var(--color-gris);
        font-family: 'Nunito Sans', sans-serif;
    }
}


@media(min-width:768px){   
    .header,
    .header-opciones{padding-left: 40px;}

    .general-container{
        display: flex;
        justify-content: space-between;     
        height: 100vh;   
    }

    .side-panel,
    .main-panel {
        overflow: auto;
    }

    .side-panel{
        display: block;
        width: 33.33%;
        text-align: center;
        padding: 140px 30px 0 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #EFEFEF;

        .logo-cliente{height: 100px;}

        .titulo2{
            margin-top: 40px;
        }

        .texto{
            max-width: 300px;
        }
    }
    .main-panel{        
        flex-grow: 1;

        > *{
            max-width:600px;
        }
    }

    .header{
        box-shadow: none;
        padding-top: 20px;

        .logo-cliente{display: none;}
    }
}