.fondo-lista-container
{
    background-image: url(../img/fondo/fondo-contacto.jpg);
    background-size: cover;
    background-position-y: 50%;
    height: 300px;
    position: relative;
}
input{
    cursor: pointer;
}
.fondo-lista-container::before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: .5;
}


.title-lista-container
{
    padding: 50px 0;
    display: flex;
    position: relative;
}

.title-lista-container h1 
{
    text-align: center;
    color: #FF2B25;
}

.title-lista
{
    margin: 0 auto;
}

.btn-cotizar-container
{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 10%;
    width: 100px;
    height: 50px;
}

.btn-cotizar
{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 3px 40px;
    background-color: #FF2B25;
    border: none;
    outline: none;
    border-radius: 7px;
    color: #fff;
}

/******************************************************/

.lista-productos-main
{
    width: 100%;
    padding: 0 80px;
    display: flex;
    /*background-color: forestgreen;*/
}

.lista-productos
{
    width: 100%;
    /*background-color: blue;*/
    padding: 0 100px;
    padding-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 80px 0;
    grid-auto-rows: 1fr;
}

.prod-lista-container
{
    width: 100%;
    background-color: cornsilk;
    padding: 10px 40px;
    display: flex;
}

.tabla-lista-productos
{
    width: 80%;
    margin: 0 auto;
}

.fila-producto
{
    -webkit-box-shadow: 3px 3px 8px -4px rgba(0,0,0,0.81);
    -moz-box-shadow: 3px 3px 8px -4px rgba(0,0,0,0.81);
    box-shadow: 3px 3px 8px -4px rgba(0,0,0,0.81);
    padding: 10px 0;
    border-radius: 9px;
}

.separacion
{
    height: 20px;
}

.img-prod-lista-container
{
    position: relative;
}

.foto
{
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

.super{
    position: absolute;
    width: 90px !important;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
}


.linea1, .linea2
{
    position: relative;
}


.linea1::before, .linea2::before
{
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #FF2B25;
}

.eliminar span
{
    cursor: pointer;
    padding-right: 20px;
    transition: all .2s;
}

.eliminar span:hover
{
    transform: scale(1.1);
}

.modal{
    display: block;
    background: white;
    color: #000000;
    position: fixed;
    height: 600px;
    width: 800px;
    transition: all .5s;
    z-index: 10;
    border-radius: 8px 0px 0px 8px;
    box-shadow: 3px 3px 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .inactive{
    display: none;
  }

  
  input{
    cursor: pointer;
}

.fondo-contacto-container
{
    background-image: url(../img/fondo/fondo-contacto.jpg);
    background-size: cover;
    background-position-y: 50%;
    height: 300px;
    position: relative;
}

.fondo-contacto-container::before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: .5;
}


.title-contacto-container
{
    padding: 50px 0;
}

.title-contacto-container h1 
{
    text-align: center;
    color: #FF2B25;
}

.formulario-contacto-container
{   
    padding: 30px;
    display: flex;
    padding-bottom: -15px;
}

.form
{
    margin: 0 auto;
}

.fila
{
    display: flex;
    position:relative; 
}

input 				
{
    font-size:18px;
    padding:10px 10px 10px 5px;
    display:block;
    width:300px;
    border:none;
    border-bottom:1px solid #757575;
}
  
.left
{
    margin-left: 10px;
}

.inputs
{
    border: 1px solid #FF2B25;
    outline: none;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    width: 100%;
}


.inputs2
{
    width: 100%;
    border: 1px solid #FF2B25;
    outline: none;
    padding: 10px;
    border-radius: 6px;
    width: 100%;
}

.social-media
{
    padding: 40px 60px;
}

.social-media>div
{
    margin-bottom: 20px;
}

.title-movil h3, .title-email h3
{
    color: #FF2B25;
}

.links
{
    text-decoration: none;
    color: #000;
}
*
#textarea
{
    min-height: 200px;
    max-height: 200px;
}

.links:hover
{
    color: #000;
    text-decoration: underline;
}

.btn-contactar
{
    border: none;
    background: #FF2B25;
    padding: 10px 30px;
    color: #fff;
    border-radius: 7px;
    display: block;
    margin: 40px auto;

}

.cerrarModal{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10px;
}

.title-prod-lista-container h3{
    font-size: 22px;
}
.title-prod-lista-container{
    padding: 30px;
}


@media(max-width: 992px)
{
    .formulario-contacto-container
    {
        flex-direction: column;
    }

    .modal {
        width: 80%;
    }
}

@media(max-width: 768px)
{
    .formulario-contacto-container
    {
        padding: 0 40px;
    }

    .title-lista-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .btn-cotizar-container{
        margin-left: 40px !important;
        left: 0;
        position: absolute;
        /* top: 0; */
        bottom: 0;
        margin: auto;
        right: 10%;
        margin-top: 100px !important;
        /* width: 100px; */
        height: 50px;
    }

    .lista-productos {
        padding: 30px 0px;
    }
    .tabla-lista-productos {
        width: 100%;
    }

    .modal{
        width: 90%;
    }

    .modal tr td:first-child {
        background: #f0f0f0;
        font-weight: 400;
        font-size: 1em;
    }

}

@media(max-width: 576px)
{
    .formulario-contacto-container
    {
        padding: 0 20px;
    }

    .fila
    {
        flex-direction: column;
    }
    .modal{
        width: 90% !important ;
    }

    .left
    {
        margin-left: 0;
    }

    .social-media
    {
        padding: 40px 0;
    }
    .btn-cotizar-container{
        margin-left: 20px !important;}
    .lista-productos-main {
        padding: 0 20px;
    }

    .fila-producto {
        display: flex;
        flex-direction: column;
    }
    .columna-2, .btn_eliminar3{
        text-align: center;
    }
    .imagen_btn a{
        display: flex;
        justify-content: space-between;
    }

    .img-prod-lista-container{
        width: 100% !important;
    }
    .title-prod-lista-container h3 {
        font-size: 18px;
    }
}

/* NUEVO */
.stock{
    display: flex;
    align-items: center;
    justify-content: center;
}

.stock input    {
    width: 50%;
    text-align: center;
}

.container{
    max-width: 90% !important;
}

@media screen and (max-width: 700px) {
    table {
        width:100%;
    }
    thead {
        display: none;
    }
    tr:nth-of-type(2n) {
        background-color: inherit;
    }
    tr td:first-child {
        background: #f0f0f0;
        font-weight:bold;
        font-size:1.3em;
    }
    tbody{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    tbody td {
        display: block;
        text-align:center;
    }
    tbody td:before {
        content: attr(data-th);
        display: block;
        text-align:center;
    }

    .stock{
        padding: 0;
    }
    .stock input{
        padding: 0;
    }
}

@media screen and (max-width: 550px) {
    tbody{
        display: grid;
        grid-template-columns: 1fr;
    }
}