@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

:root {
    --gruascolor: #8d1517;
    --whatscolor: #25D366;
    --bg: #f4f4f4;
    --fonttext: #6c6c6c;
    --white: #fff;
    --dark: #000;
    --fluorescentBlueColor: #00CBCE;
    --mainFont: #FFFFFF;
    --text-color-light: hsl(228, 12%, 75%);
    --black-color-lighten: hsl(220, 20%, 18%);
}

* {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

body {
    background-image: url("../img/fondo.jpg");
    /* background-repeat: no-repeat; */
    background-attachment: fixed;
    /* background-size: auto auto; */
    /* background-size: auto; */
    background-size: auto;
    /* position: absolute; */
    /* background: var(--white);
	position: relative; */
}

/* CONTAINER USUARIO */
.container_usuario {
    /* position: absolute; */
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.wrapper_user {
    position: relative;
    /* height: 500px; */
    width: 1000px;
    /* max-width: 850px; */
    /* height: auto; */
    background-color: transparent;
    border-radius: 10px;
    /* z-index: 1000; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
    padding: 2rem 1rem;
}

.usuario_1 {
    position: relative;
    background-color: var(--white);
    padding: 1.5rem 1.5rem;
    border-radius: 2.5rem 0rem 0rem 0rem;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
}

.title {
    font-weight: 600;
    font-size: 1.2rem;
}

.subtitle {
    font-size: 0.8rem;
}

.usuario_1 .title {
    color: var(--dark);
}

.container_img {
    width: inherit;
    height: 400px;
}

.imgBusqueda {
    width: 100%;
    height: 100%;
}

.text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.icon {
    font-size: 1.2rem;
    margin-right: 0.7rem;
    color: #fff;
}


/* Empieza estilos de form para buscar vehículo */
.usuario_2 {
    position: relative;
    background-color: var(--gruascolor);
    color: var(--white);
    padding: 1.5rem 1.5rem;
    border-radius: 0rem 2.5rem 2.5rem 0rem;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
}

.input-container {
    position: relative;
    margin: 1rem 0;
}

/* label {
    display: none;
} */

.input,
select {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

select option {
    color: var(--dark);
    font-size: 0.8rem;
}

.lblSelect {
    text-align: left;
    display: block;
    margin-bottom: 8px;
}

.input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 600;
    transition: 0.5s;
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
    /* background-color: red; */
}

.input-container span:before,
.input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: var(--gruascolor);
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.pInvalid {
    font-size: 0.8rem;
    color: var(--white);
}

.btnBuscarVehiculo {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: var(--dark);
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3;
    line-height: 1;
    /* margin-top: 1rem; */
    /* margin: 0; */
}

.btnBuscarVehiculo:hover {
    background-color: transparent;
    color: #fff;
}

.coincidencia_eco {
    width: inherit;
    /* height: 300px; */
    text-align: center;
}

.coincidencia_eco img {
    margin: 1rem 0rem;
    border-radius: 2rem;
    width: 50%;
    /* height: 100%; */
}

/* Responsive */
@media (max-width: 850px) {
    .wrapper_user{
        width: 600px;
        grid-template-columns: 1fr;
    }

    .container_img {
        height: 480px;
    }

    .usuario_2 {
        border-radius: 0rem 0rem 2.5rem 2.5rem;
    }

    .text {
        margin: 1rem 0 1.5rem 0;
    }
}

/* FOR RESPONSIVE SMARTPHONE */
@media screen and (max-width: 570px) {
    .wrapper_user {
        margin-top: 5rem;
    }

    .container_img {
        height: 280px;
    }

    /* .g-recaptcha:first-child {
        width: 100px;
    }

    iframe {
        position: relative;
        width: 75%;
    } */
}

@media (max-width: 480px) {
    form,
    .usuario_1 {
        padding: 1.7rem 1.6rem;
    }

    .title {
        font-size: 1.15rem;
    }

    .icon {
        width: 23px;
    }

    .input {
        padding: 0.45rem 1.2rem;
    }

    .btnBuscarVehiculo {
        padding: 0.45rem 1.2rem;
    }
}

/* STYLES INFO DEPOSITO */
.title_deposito {
    font-weight: 600;
    font-size: 1.2rem;
}

.card_deposito {
    margin-top: 2rem;
	width: inherit;
    /* width: 345px; */
	background-color: var(--bg);
	text-align: center;
    border: 4px solid var(--dark);
	border-radius: 30px;
}

.card_header {
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    background-color: var(--gruascolor);
    color: var(--white);
    border-radius: 25px 25px 0rem 0rem;
}

.card_header span {
    font-size: 1.2rem;
}

.nombre_deposito {
	font-weight: 600;
}

.card_body {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
	padding: 1rem 0rem;
    color: var(--dark);
}

.desc_deposito {
	padding: 0rem 1rem;
	text-align: justify;
}

.card_deposito h3 {
	color: var(--dark);
	font-weight: 600;
    margin-top: 1rem;
	margin-bottom: .5rem;
	text-align: start;
	margin-left: 1rem;
}

.card_deposito .turno {
    padding: 0.5rem;
    border: 2px solid var(--gruascolor);
	color: var(--dark);
	font-weight: 600;
    font-size: 1.8rem;
	margin-bottom: 1rem;
}

.card_deposito .fecha, 
.card_deposito .usuario {
	color: var(--dark);
	font-weight: 600;
    font-size: 1rem;
	margin-bottom: 1rem;
}

.btnActualizarnombre_depositos {
	display: none;
}

@media only screen and (max-width:480px) {

	.card_deposito {
		/* width: 345px; */
	}
}