#content {
	width: 94%;
	max-width: 1200px;
	margin: auto;
	padding: 0 15px;
    box-sizing: border-box;	
    background: #fff;
}
/* =========================================================
   yost.technology | ELENCO ORDINI AREA RISERVATA
   ========================================================= */

.yost-ordini {
    width: 100%;
}

.yost-ordini-lista {
    width: 100%;
}

.yost-ordine {
    margin: 0 0 35px;
    padding: 0 0 25px;
    border-bottom: 1px solid #dddddd;
}

.yost-ordine-intesta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 18px;
    padding: 16px 18px;
    background: #f3f3f3;
    border: 1px solid #dddddd;
}

.yost-ordine-intesta span {
    display: block;
    margin-bottom: 3px;
    color: #777777;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.yost-ordine-intesta strong {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
}

.yost-ordine-data {
    text-align: right;
}

.yost-ordine-prodotti {
    margin-bottom: 18px;
}

.yost-ordine-prodotti table {
    width: 100%;
    border-collapse: collapse;
}

.yost-ordine-prodotti table td {
    padding: 12px 14px;
    border: 1px solid #dddddd;
    vertical-align: middle;
}

.yost-ordine-riepilogo {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.yost-ordine-dato {
    flex: 1 1 calc(20% - 10px);
    min-width: 160px;
    padding: 12px 14px;
    background: #f7f7f7;
    border: 1px solid #dddddd;
    box-sizing: border-box;
}

.yost-ordine-label {
    display: block;
    margin-bottom: 4px;
    color: #777777;
    font-size: 12px;
    font-weight: 500;
}

.yost-ordine-valore {
    display: block;
    color: #333333;
    font-size: 14px;
}

.yost-ordine-totale {
    background: #eeeeee;
}

.yost-ordine-totale .yost-ordine-valore {
    font-size: 16px;
}

.yost-ordine-azioni {
    margin-top: 12px;
}

.yost-ordine-reso,
.yost-ordine-vedi {
    display: inline-block;
    margin-right: 8px;
    padding: 10px 16px;
    border: 1px solid #777777;
    border-radius: 3px;
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.yost-ordine-reso:hover,
.yost-ordine-vedi:hover {
    background: #555555;
    color: #ffffff;
    text-decoration: none;
}

/* yost.technology / ordini-responsive */

@media screen and (max-width: 700px) {

    .yost-ordine-intesta {
        display: block;
    }

    .yost-ordine-data {
        margin-top: 12px;
        text-align: left;
    }

    .yost-ordine-riepilogo {
        display: block;
    }

    .yost-ordine-dato {
        width: 100%;
        margin-bottom: 8px;
    }

    .yost-ordine-prodotti {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .yost-ordine-reso,
    .yost-ordine-vedi {
        display: block;
        width: 100%;
        margin: 8px 0 0;
        box-sizing: border-box;
        text-align: center;
    }

}