:root {
    --color1: #e40808;
    --color2: #241818;
}

/*
****************************************************************************************
ENVIO
.pag-envio
****************************************************************************************
*/
.pag-envio {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}
.pag-envio .box {
    width: 49%;
    min-width: 300px;
}
.pag-envio .box-tit {
    font-size: 18px;
    background-color: #eeee;
    padding: 5px 10px;
}

.pag-envio .box-txt {
    padding: 5px 10px;
    border: 1px solid;
}
.pag-envio .medidas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    width: 100%;
}
.pag-envio .medidas .box {
    width: 22%;
    min-width: 300px;
}
.box.destinatario,
.box.direccion,
.box.observaciones {
    width: 100%;
    min-width: 300px;
}

#envioList thead tr th:nth-child(2){
    width: 30%;
}
#envioList thead tr th:nth-child(3){
    width: 25%;
}
#envioList thead tr th:nth-child(4){
    width: 15%
}




/*
****************************************************************************************
MEDIA QUERY
****************************************************************************************
*/
@media only screen and (max-width: 1400px) {
    .pag-envio .box {
        width: 100% !important;
    }
    .pag-envio .medidas .box {
        width: 48% !important;
    }
}

@media only screen and (max-width: 992px) {}

@media only screen and (max-width: 768px) {
    .pag-envio .box {
        width: 100% !important;
    }
    .pag-envio .medidas .box {
        width: 100% !important;
    }
}

@media only screen and (max-width: 576px) {}