/* ==========================================================================
buttons
========================================================================== */
.button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    height: 50px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 0 10px;
    margin: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
.button:hover {
    color: var(--color-white);
    text-decoration: none;
}
.button.primary {
    background-color: var(--color-black-1);
    cursor:pointer;
}
.button.primary:hover {
    background-color: var(--color-primary-dark);
}
/*  */
.button.secondary {
    background-color: var(--color-secondary);
}
.button.secondary:hover {
    background-color: var(--color-primary-dark);
}

/* ==========================================================================
inputs y selects
========================================================================== */
.form-group input::-webkit-input-placeholder {color: var(--color-grey);}/* Chrome/Opera/Safari */
.form-group input ::-moz-placeholder {color: var(--color-grey);}/* Firefox 19+ */
.form-group input :-ms-input-placeholder {color: var(--color-grey);}/* IE 10+ */
.form-group input :-moz-placeholder {color: var(--color-grey);}/* Firefox 18- */
/* */
.form-group.light input::-webkit-input-placeholder {color: #fff;}/* Chrome/Opera/Safari */
.form-group.light input ::-moz-placeholder {color: #fff;}/* Firefox 19+ */
.form-group.light input :-ms-input-placeholder {color: #fff;}/* IE 10+ */
.form-group.light input :-moz-placeholder {color: #fff;}/* Firefox 18- */

.form-group {
    background-color: var(--color-white);
    margin-bottom: 1rem;
}
.form-group input {
    display: block;
    width: 100%;
    height: 50px;
    color: var(--color-grey-1);
    font-size: 16px;
    line-height: 1;
    background-color: var(--color-white);
    background-clip: padding-box;
    padding: 8px 15px;
    border: 1px solid var(--color-grey-1);
    border-radius: 8PX;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.form-group .form-select {
    width:100%;
    height: 50px;
    border-radius: 8px;
    border: 1px solid var(--color-grey-1);
    color: var(--color-grey-1);
}

/* */
.form-group textarea {
    width: 100%;
    font-size: 16px;
    border: 1px solid var(--color-grey-1);
    border-radius: 8px;
    color: var(--color-grey-1);
}

/* selects */
.slc {
    position: relative;
    height: 40px;
	margin-bottom: 1rem;
	border: 1px solid var(--color-grey-1);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.slc::before {
    position: absolute;
    content: "";
    top: 12px;
    right: 20px;
    z-index: 1;
    width: 0;
    height: 0;
    color: var(--color-primary);
    /* font-family: "icomoon"; */
    font-size: 12px;
    line-height: 1.2;
    pointer-events: none;
}
.slc select {
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--color-secondary);
    text-indent: 0.01px;
    padding: 0px 25px 0 15px;
    background: #fff;
    border: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    /*  */
    background-image: url(../img/svg/icon-arrow-down.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 5px);
}
.slc select::-ms-expand {
    display: none;
}

.linea-blanca {
    /*width: 20%;*/
    height: 1px;
    background-color: #a0a0a0;
    margin: 8px 0; /* Ajusta los márgenes superior e inferior */
}


@media screen and (min-width: 1400px) {
    #salto {
        display:block !important;
    }
}

/* ==========================================================================
checkboxes y radios
========================================================================== */
/* checkbox */
.checkbox {
    display: inline-flex;
    align-items: center;
    height: 34px;
}
.checkbox input[type="checkbox"] {
    position: absolute;
    left: -9999px;
    margin: 0;
}
.checkbox input[type="checkbox"] + label {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    line-height: 1.4;
    padding-left: 35px;
    margin: 0px;
    cursor: pointer;
}
.checkbox input[type="checkbox"]:checked + label {
    /* color: var(--color-primary); */
    font-style: normal;
}
    .checkbox input[type="checkbox"] + label:before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 22px;
        height: 22px;
        border: 1px solid var(--color-grey);
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 5px!important;  
    }
.checkbox input[type="checkbox"] + label:after {
    position: absolute;
    content: '';
    top: 4px;
    left: 4px;
    width: 14px;
    height: 14px;
    color: var(--color-primary);
    /* font-family: "icomoon";
    font-size: 16px; */
    background: var(--color-grey);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.checkbox input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.checkbox a {
    color: var(--color-grey);
}
/* */
.checkbox.light input[type="checkbox"] + label:before {
    border-color: #fff;
}
.checkbox.light input[type="checkbox"] + label:after {
    background: var(--color-white);
}
.checkbox.light a {
    color: var(--color-white);
}

/* radio */
.radio {
    display: inline-flex;
    align-items: center;
    height: 34px;
    margin-right: 10px;
}
.radio input[type="radio"] {
    position: absolute;
    left: -9999px;
    margin: 0;
}
.radio input[type="radio"] + label {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    line-height: 1.4;
    padding-left: 35px;
    margin: 0px;
    cursor: pointer;
}

.radio input[type="radio"]:checked + label {
    /*color: var(--color-primary);*/
    font-style: normal;
}
.radio input[type="radio"] + label:before {
    position: absolute;
    content: '';
    top: calc(50% - 11px);
    left: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.radio input[type="radio"] + label:after {
    position: absolute;
    content: '';
    top: calc(50% - 7px);
    left: 4px;
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    border-radius: 50%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.radio input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/*COLORES*/

.info-version-auto p{
    color: #323232;
    font-size: 25px;
}

.info-version-auto p span{
    font-family: 'Proxima Nova SB';
}

.head-interior p {
    font-family: 'Suzuki-Regular';
}

.imgTitleColors {
    width: 285px;
    margin: 0 auto;
    display: block;
}

.colores {
    position: relative;
    width: 100%;
}

.contImgColores {
    position: relative;
    width: 30%;
    margin: 0px auto;
}

.infoColores {
    padding: 15px 25px;
    box-shadow: 0px 4px 16.1px 0px #00000040;
    border-radius: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

    .infoColores p {
        text-align: center;
        margin: 0;
        color: #323232;
        text-transform: uppercase;
        font-size: 24px;
        font-family: 'Proxima Nova SB';
        /*max-width: 30%;*/
    }

.info-version-auto .button{
    height: 40px;
}

.content-color a {
    cursor: pointer !important;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 0 10px;
    border: 2px solid #d5d5d5;
    transition: all 0.3s linear;
}

    .content-color a.icoSelec {
        border-style: solid;
        border-color: #000;
        border-width: 2px!important;  

    }

.content-color a.icoSelec:after {
    content: "\e913";
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    color: #fff;
    font-size: 16px;
    opacity: 0.7;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sinMagin {
    margin: 0 !important;
}

.coloresthubs {
    justify-content: space-between;
}

.pLegal {
    font-size: 13px!important;
}

.coloresthubs a {
    cursor: pointer !important;
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: contain;
    border: 3px solid #e9ecef;
    border-radius: 100%;
    position: relative;
}

.content-color a img {
    width: 40px;
    height: 40px;
}

.content-color {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}

.content-color small {
    color: #323232;
    font-size: 18px;
    margin-right: 10px;
}

.icoSelec img {
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    border-radius: 50%;
    transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.content-img .ncolor {
    position: absolute;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    text-align: center;
}

    .content-img .ncolor img {
        position: inherit;
        opacity: 1;
        width: 100%;
    }

    .content-img .ncolor.imgSelec {
        opacity: 1;
    }

    .content-img .ncolor.hidden-car {
        position: inherit;
        opacity: 0;
    }

.content-color a span {
    font-size: 12px;
    text-align: center;
    display: block;
    padding-bottom: 5px;
    font-family: 'Suzuki-Regular';
}

.bg-colores {
    background-image: url(/assets/img/autos-nuevos/modelo-nuevo/fronx-bg-colores.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 0;
    background-position-y: bottom;
    position: relative;
    width: 100%;
    padding: 50px 0;
}

.head-interior {
    text-align: center;
    padding: 75px 0;
}

    .head-interior h2 {
        font-size: 48px;
        font-weight: bold;
        font-family: 'SuzukiPROBold';
    }

.txt-color {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    padding: 0 10px;
    font-family: 'Suzuki-Regular';
}

#gris {
    background-color: #515151;
}

#rojo {
    background-color: #CB253D;
}

#blanco {
    background-color: #F5F5F5;
}

#azul {
    background-color: #295DAB;
}

#plata {
    background-color: #AEB1B4;
}


.mostrar-specs {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.line-specs {
    width: 100%;
    height: 1px;
    background-color: #555;
    opacity: 0.2;
}

.mostrar-specs i {
    position: absolute;
    color: #fff;
    background-color: #003690;
    font-size: 25px;
    padding: 10px;
    border-radius: 30px;
    cursor: pointer;
}

.head-version.pos-fix {
    position: fixed;
    top: 0;
}

.container{
    padding: 0 20px;
}


.gj-datepicker-bootstrap [role=right-icon] button {
    border: 1px solid var(--color-grey-1) !important;
    height: 50px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.gj-datepicker-bootstrap [role=right-icon] button .gj-icon,
.gj-datepicker-bootstrap [role=right-icon] button .material-icons {
    top: 14px !important;
}

.form-pm .form-group {
    background-color: var(--color-white);
    margin-bottom: 1rem;
    width: 48%;
}

.form-pm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.form-pm .form-datos{
    width: 65%;
}

.form-pm .form-datos:last-child{
    margin-left: 35%;
}

.logo-alfa{
    width: 30%;
}

.div-pm {
    width: 65%;
}

/*CONTACTO*/

.form-con .form-group{
    width: 48%;
}

    .form-con .form-group.margin-form {
        margin-left: 52%;
        margin-bottom: 29px;
    }

.contacto-end {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info-dist {
    width: 50%;
    padding: 50px;
}

.mapa-contacto {
    height: auto;
    position: relative;
    overflow: hidden;
    width: 50%;
}

.block-contacto{
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.block-contacto h2{
    font-family: 'Proxima Nova SB';
    color: #323232;
    font-size: 24px;
}

.tel-contacto {
    width: 30%;
}

.block-contacto h4,
.dir-contacto h4{
    color: #323232;
    font-size: 16px;
    text-align: left;
    margin-bottom: 10px;
    font-family: 'Proxima Nova SB';
    text-transform: unset;
}

.tel-contacto a{
    display: flex;
    align-items: center;
    color: #323232;
}

.tel-contacto a i{
    margin-right: 6px;
    font-size: 20px;
}

.list-horario {
    max-width: 70%;
    width: 300px;
    margin-bottom: 20px;
}

.list-hora {
    margin: 0;
    color: #323232;
    padding: 0;
}

.list-hora li{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.block-contacto:last-child {
    border-bottom: 1px solid #C0C0C0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.ubi-contacto {
    border-bottom: 1px solid #C0C0C0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.ubi-contacto h2 {
    font-family: 'Proxima Nova SB';
    color: #323232;
    font-size: 24px;
    margin-bottom: 15px;
}

.ubi-contacto p{
    display: flex;
    align-items: center;
    color: #323232;
}

.ubi-contacto p i{
    font-size: 18px;
    margin-right: 5px;
}

.ubi-contacto .button{
    margin: 0;
    height: 40px;
    width: auto;
    border-radius: 22px;
    text-transform: unset;
    max-width: max-content;
    padding: 0 20px;
}

.ubi-contacto .button i{
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}

.dir-contacto {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}


@media (max-width: 768px) {
    .logo-cont {
        display: none;
    }
}
.logo-cont {
    width: 25%;
    
}

.datos-directorio {
    width: 70%;
}

.item-directorio {
    margin-bottom: 10px;
    color: #323232;
}

.item-directorio span{
    color: #323232;
    font-family: 'Proxima Nova SB';
}

.item-directorio p{
    margin-bottom: 0;
    font-family: 'Proxima Nova Lt';
    color: #323232;
}

.item-directorio a{
    display: block;
    color: #323232;
    font-family: 'Proxima Nova Lt';
}

.radio label {
    font-family: 'Proxima Nova Rg' !important;
}

.modelo-cot {
    font-size: 50px;
    color: #323232;
    line-height: 50px;
}

.modelo-cot span{
    display: inline-block;
    margin: 0 10px;
    font-family: 'Proxima Nova SB';
}

.modelo-cot font{
    font-family: 'Proxima Nova Lt';
}

.legColor {
    font-family: 'Proxima Nova Lt';
    text-align: center;
    color: #fff;
    font-size: 20px;
    display: flex;
    position: absolute;
    justify-content: center;
    left: 0;
    margin-top: 15%; 
}

/*CITA DE SERVICIO*/
.form-cs .form-group.margin-form {
    margin-left: 52%;
}

@media (max-width: 993px) {
    .contImgColores {
        width: 40%;
    }

    .form-group label {
        font-size: 16px;
    }

}

@media (max-width: 768px) {

    .form-datos h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .infoColores {
        width: 100%;
        flex-direction: column;
    }

    .infoColores p {
        max-width: 100%;
    }

    .content-color {
        max-width: 100%;
        margin-top: 15px;
        width: 90%;
    }

    .content-color small {
        font-size: 14px;
    }

    .contImgColores {
        width: 60%;
        margin-top: 0px;
        /*display: none*/
    }

    .select-auto {
        width: 100%;
    }

    .content-color a {
        margin: 0 5px;
    }

    .logo-alfa {
        width: 80%;
        margin: 24px auto 0;
    }

    .form-pm .form-datos {
        width: 100%;
    }

    .form-pm .form-datos.top {
        order: -1 !important;
    }

    .logo-alfa {
        margin: 0 auto 50px;
    }

    .form-pm .form-datos:last-child {
        margin-left: 0;
    }
    /*contacto*/

    .info-dist {
        width: 100%;
        padding: 20px;
    }

    .form-con .form-group {
        width: 100%;
    }

    .form-con .form-group.margin-form {
        margin-left: 0;
    }

    .mapa-contacto {
        width: 100%;
        height: 300px;
    }

    .tel-contacto {
        width: 100%;
        margin-bottom: 15px;
    }

    .modelo-cot {
        font-size: 34px;
        line-height: 40px;
    }

    .form-cs .form-group.margin-form {
        margin-left: 0;
    }
}

@media (max-width: 565px) {

    .contImgColores {
        width: 90%;
    }

    .form-cot .form-group {
        width: 100%;
    }

    .form-pm .form-group {
        width: 100%;
    }

    .form-left {
        width: 100%;
    }

    .content-color small {
        display: none;
    }

    .header-secciones p {
        font-size: 14px;
    }

    .radio {
        margin-right: 0 !important;
    }

}