






:root {
    --black-color: #000;
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    /*========== Colors ==========*/
    /* Color mode HSL & RGB */
    --first-color: hsl(79, 100%, 49%);
    --normal-font-size: 16px;
    --tiny-font-size: .663rem;
    --white-color: #fff;
}





/*=============== MODERN INPUT ===============*/



.form__content .estado {
    position: relative;
    top: 58px;
    z-index: 10;

    display: inline;
    padding: 3px 5px;

    font-size: 11px;

    opacity: 0;
    color: white;
    border-radius: 7px;
    background: #b4292d;
}

.form__content .estado-check {
    position: relative;
    top: unset;
    left: 0;
}





.select {
    position: relative;

    margin-bottom: 60px !important;
    height:59px;
}
select {
    width: 100%;
    padding: 10px 18px;
   height:59px;
    font-family: var(--body-font);
    font-size: 16px;

    transition: transform .3s;

    border: 2.5px solid var(--black-color);
    border-radius: 0;
    border-radius: 7px;
    outline: 0;
    background-color: var(--white-color);
}

select:focus {
    transform: translate(-8px, -8px);
    animation: input-animation .5s;
}



select.seleccionado {
    transform: translate(-8px, -8px);
    animation: input-animation .5s;
}

select {
    position: relative;
    z-index:1;
}


.select .form__shadow {
    top: 0px;
    z-index: 0;
}





/*.form__content {
    display: grid;

    row-gap: 1.5rem;
}
*/
.form__input,
.form__label,
.form__submit {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);

    border: 0;
    border-radius: 7px;
    outline: none;
}

.form__box {
    position: relative;

    width: 100%;
    height: 59px;
    margin-bottom: 50px;
}

.form__shadow {
    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 7px;
    background-color: var(--black-color);
}




.form__sobre_negro .form__shadow {
    border-radius: 7px;
    background: white;
}

.form__sobre_negro .form__input {
    color: white;
    border: 2.5px solid white;
    background: #262626;
}

.form__sobre_negro .form-check-input:checked {
    filter: invert(100%);
}


.form__sobre_negro .form__input::placeholder {
    color: white;
}

.form__sobre_negro .form__button {
    border-radius: 7px;
    background: white;
}

.form__sobre_negro input:autofill {
    background: #373737 !important;
}

/* Change Autocomplete styles in Chrome*/
.form__sobre_negro input:-webkit-autofill,
.form__sobre_negro input:-webkit-autofill:hover,
.form__sobre_negro input:-webkit-autofill:focus {
    transition: background-color 5000s ease-in-out 0s;

    border: 1px solid white;
    -webkit-box-shadow: 0 0 0 1000px #000 inset;

    -webkit-text-fill-color: white;
}


.form__input {
    position: absolute;
    z-index: 10;

    width: 100%;
    height: 100%;
    padding: 18px;

    transition: transform .3s;

    border: 2.5px solid var(--black-color);
    outline: none;
    background-color: var(--white-color);
}

.form__input:focus {
    outline: none;
}
.form-select:focus {
    transform: translate(-8px, -8px);
    animation: input-animation .5s;
}

.form__input::placeholder {
    transition: opacity .5s;

    color: var(--black-color);
}


.form__label {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 100;

    font-size: var(--tiny-font-size);
    font-weight: 600;

    transition: .2s;
    pointer-events: none;

    opacity: 0;
}

.form__button {
    border-radius: 7px;
    background-color: var(--black-color);

    justify-self: flex-start;
}

.form__submit {
    padding: .875rem 1.5rem;

    cursor: pointer;
    transition: transform .3s;

    color: var(--black-color);
    background-color: var(--first-color);
}

.form__submit:hover {
    transform: translate(-6px, -6px);
}

/* Opaque placeholder */
.form__input:focus::placeholder {
    transition: .3s;

    opacity: 0;
}

/* Move input and sticky input up */
.form__input:focus,
.form__input:not(:placeholder-shown).form__input:not(:focus) {
    padding: 28px 18px 18px;

    transform: translate(-8px, -8px);
    animation: input-animation .5s;
}



select.form__input {
    transform: none;
}
select.form__input:focus,
select.form__input:not(:placeholder-shown).form__input:not(:focus) {
    padding: 0 18px;
}

select.form__input:not(:placeholder-shown).form__input:not(:focus) {
    /*    transform: none;*/
}


/* Move label and sticky label up */
.form__input:focus + .form__label,
.form__input:not(:placeholder-shown).form__input:not(:focus) + .form__label {
    top: -6px;
    left: 12px;

    transition: .3s;

    opacity: 1;
    outline: none;
}

/* Input bounce animation */
@keyframes input-animation {
    0% {
        transform: translate(0);
    }
    40% {
        transform: translate(-9px, -9px);
    }
    60% {
        transform: translate(-7px, -7px);
    }
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
/*@media screen and (max-width: 340px) {
    .form__content,
    .form__box {
        width: 100%;
    }
}*/

/* For large devices */
@media screen and (min-width: 968px) {
    .form__content {
        /*        zoom: 1.1;*/
    }
}

.select-negro select {

background-color:#262626;
color:white;
border: 2.5px solid white;
}


.select-negro .form__shadow {
    background:white;
}


.form__input.invalid,
select.invalid {
    border: 2px solid #b4292d !important;
}


.form__input.invalid ~ .form__shadow,
select.invalid ~ .form__shadow {
    background: #b4292d !important;
}


.form__input.valid ~ .form__shadow,
select.valid ~ .form__shadow {
    background: var(--black-color);
}

.form__sobre_negro .form__input.valid ~ .form__shadow,
.form__sobre_negro select.valid ~ .form__shadow {
    background: white;
}














button.boton {
    position: relative;

    height: 50px;
    padding: .875rem 1.5rem;

    font-size: 12.5px;
    font-weight: bold;
    font-weight: bold;

    cursor: pointer;
    -webkit-user-select: none; /* Safari */
        -ms-user-select: none; /* IE 10 and IE 11 */
            user-select: none; /* Standard syntax */
    transition: transform .3s;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--black-color);
    border: 0;
    border-radius: 7px;
    outline: none;
    background-color: var(--first-color);
}


button.boton:hover {
    transform: translate(-6px, -6px);
}


button.boton.boton-sin-animar:hover {
    transform: none;
}

button.boton-borde {
    border: 2px solid var(--color-oscuro) !important;
}


button img.iconos {
    width: 20px;
    margin-right: 15px;
}


.boton-contenedor {
    border-radius: 7px;
    background: black;

    justify-self: flex-start;
}

.boton-contenedor.blanco {
    background: grey;
}

.boton-contenedor.sobre-blanco {
    background: grey;
}


button.sobre-blanco {
    color: var(--color-oscuro);
    border-color: black;
    border-radius: 7px;
    background: white;
}


button.transparente {
    color: white;
    border-color: white;
    background: transparent;
}

button.blanco {
    color: var(--color-oscuro);
    border-color: white;
    background: white;
}





button.rojo {
    color: white;
    background: var(--color-rojo);
}








button.boton-medio {
    display: flex;
    width: 130px;

    align-items: center;
    justify-content: center;
}

button.boton-grande {
    display: flex;
    width: 250px;

    align-items: center;
    justify-content: center;
}

button.libre {
    height: unset;
}

button.enviar {
    color: white;
    border: 0 solid white;
    background: var(--color-rojo);
}


button span {
    display: flex;

    align-items: center;
    justify-content: center;
}


button.enviar.material-bubble:disabled::before {
    border-color: #595959;
}

button.enviar:disabled {
    pointer-events: none;

    color: #887a7a;
    background: #bdbdbd;
}
button.enviar:disabled:hover {
    cursor: not-allowed;
}





button:disabled span.cargando {
    width: 40px;

    transition: all .5s;
}

button:disabled span.cargando svg path {
    fill: #887a7a;
}

.boton-contenedor.swiper-pagination-bullet {
    width: unset;
    height: unset;

    opacity: unset;
    opacity: .5;
    border-radius: unset;
    background: unset;
}

.boton-contenedor.swiper-pagination-bullet-active {
    opacity: 1;
}

.slides-botones button {
    transform: none !important;
}



/* Checkbox */


.form-check-input {
    width: 35px;
    max-width: 35px;
    min-width: 35px;
    margin-top: 10px;
}
.form-check label {
    padding: 0 15px;

    font-size: 12px;
}


.form-check-input {
    margin-top: 0!important;
}
.form-check-input:checked {
    border-color: black;
    background-color: black;
}
.avisos-legales p {
    margin: 0;
}

.avisos-legales a {
    text-decoration: underline !important;
}

.avisos-legales a:hover {
    cursor: pointer;
}


/* Lista de proyectos seleccionables */

.texto-select-proyectos {
    font-size: 13px;
    margin-bottom: 15px;
    color: #555;
}

.lista-proyectos {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.proyecto-item {
    position: relative;
    z-index: 1;
    padding: 14px 18px;
    margin-bottom: 8px;
    font-size: 15px;
    cursor: pointer;
    user-select: none;
    border: 2.5px solid var(--black-color);
    border-radius: 7px;
    background: white;
    transition: transform .2s, background .2s, color .2s;
}

.proyecto-item:last-child {
    margin-bottom: 0;
}

.proyecto-item:hover:not(.deshabilitado) {
    transform: translate(-4px, -4px);
}

.proyecto-item.seleccionado {
    background: var(--black-color);
    color: white;
    transform: translate(-4px, -4px);
}

.proyecto-item.deshabilitado {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.contador-proyectos {
    font-size: 12px;
    color: #777;
    margin: 10px 0 4px 0;
}

.estado-proyectos {
    position: relative !important;
    top: 0 !important;
    display: inline-block;
    margin-top: 4px;
}
