.form {
    width: 80%;
padding: 20px;
box-shadow: 2px 1px 12px #00000078;
border-radius: 22px;
margin-right: auto;
margin-left: auto;
margin-top: 22px;
margin-bottom: 22px;
font-family: arial;
display: flex;
flex-direction: column;
gap: 30px;
}

ul {
    list-style: none;
}
.box {
    padding: 30px 10px;
    margin-bottom: 20px;
    background: #d1dae7;
    height: auto;
}
.infos {
    display: flex;
    padding: 10px;
}
.label {
    font-weight: bold;
}
.left {
    width: 20%;
    display: flex;
    align-items: start;
    flex-direction: column;

}
.left .icon {
    border: 1px solid red;
   padding: 2px;

}
.middle { 
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    width: 100%;
}

.middle-top .cover-box, .middle-top .log-box, .middle-top .qte-box{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cover-text , .log-type , .qte ,.date-start, .price-box,.discount ,.discount-price {
    font-family: Arial;
    font-size: 13pt;
    color: #144089;
}
.right {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
}
.promo {
    display: flex;
    flex-direction: column;
    align-items: end;
}
.middle-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.middle-bottom{
    width: 100%;
    justify-items: start;
    display: flex;
    gap: 10px;
}
.marathon-infos {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0px;
}
.marathon-infos em , em {
    font-style:normal;
    font-weight: normal;
    font-family: Arial;
    font-size: 13pt;
    color: #144089;
}
.total {
    display: flex;
        align-items: end;
        justify-content: end;
}
.box-total {
        display: flex ;
        flex-direction: column;
        align-items: end;
        gap: 6px;
}
.box-total p {
    display: flex;
    gap: 10px;
}

.card-infos {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.form-input-btn button{
    padding: 5px 20px;
    background-color: #3d6aae;
    font-size: 15px;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 15px;
}

.text-label {
    width: 40%;
    font-weight: bold;
    text-align: start;
}
.text-input {
    padding: 10px;
    width: 60%;
}
.order-number {
    color: #3d6aae;
    font-weight: bold;
}

.hidden {
    display: none !important;
}

@media screen and (max-width: 780px){
    .box {
        padding: 5px 5px;
        margin-bottom: 20px;
        background: #d1dae7;
        height: auto;
    }
    .form {
        width: 100%;
        padding: 5px;
        box-shadow: 2px 1px 12px #00000078;
        border-radius: 22px;
        /* margin-right: auto; */
        /* margin-left: auto; */
        margin-top: 22px;
        margin-bottom: 22px;
        font-family: arial;
    }
    .infos {
        flex-direction: column;
        gap: 20px;
    }
    .middle {flex-direction: column;}
    .middle-bottom {
        justify-content: start;
    }
    .left {
        width: 100%;
        align-items: center;
    }
    .right {
        width: 100%;
        flex-direction: row;
        justify-content: start;
    }
    .promo {
        flex-direction: row;
        gap: 10px;
    }
    .marathon-infos {
        flex-wrap: wrap;
    }
    .marathon-infos .label{
        width: 45%;
        
    }
    span {
        text-align: start;
        .label{
            text-align: start;
        }
    }
    .form-input-group {
        /* flex-direction: column; */
        flex-wrap: wrap;
    }
    .icon img {
        width: 200px;
        height: 200px;
    }
}