.line {
    width: 90%;
    margin-left: 5%;
    background-color: #d4d4d4;
    min-height: 2px;
}
.steps {
    margin-top: -35px;
    text-align: center;
    direction: rtl;
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: space-between;
}
.steps img {
    width: 70px;
    padding-bottom: 4px;
}
.steps span {
    font-family: Sahel-Light;
    color: #404040;
}
.step {
    margin-top: 30px;
    direction: rtl;
    display: flex;
}
.products {
    margin-right: 5%;
    margin-left: 1%;
    width: 59%;
}
.cart-forms {
    display: flex;
    align-items: center;
    margin-top: 6px;
}
.products-box {
    display: flex;
    align-items: center;
    border: 2px solid #ededed;
    border-radius: 10px;
    margin-bottom: 20px;
}
.products-box1 {
    width: 20%;
}
.products-box1 img {
    width: 90%;
    margin: 5%;
}
.products-box2 {
    width: 60%;
    margin-right: 15px;
}
.products-box2 span {
    font-family: Sahel-Bold;
    font-size: 20px;
}
.products-box2 p {
    font-family: Sahel-Light;
    font-size: 14px;
    padding: 5px 2px;
    color: #4a4a4a;
}
.products-box2 .weight {
    font-family: Sahel-Light;
    font-size: 14px;
    padding-right: 3px;
}
.products-box2 input[type="number"] {
    width: 70px;
    text-align: center;
    margin: 0 4px;
}
.products-box2 input[type="submit"] {
    padding: 3px 14px;
    margin: 0 3px
}
.products-box2 button {
    border-radius: 10px;
    background-color: #a5a5a5;
    color: #fff;
    border: none;
    width: 25px;
}
.products-box2 .cart-del {
    margin-right: 5px;
}
.products-box3 {
    display: flex;
    flex-direction: column;
    width: 20%;
    background-color: #ededed;
    border-radius: 0 10px 10px 0;
    padding: 10px;
}
.pay {
    width: 30%;
}
.payin {
    border-radius: 10px;
    background-color: #00987921;
    padding: 25px 0 15px 0;
}
.payin h2 {
    text-align: center;
    font-size: 28px;
    font-family: Sahel-Black;
    color: #71a99e;
    margin: 0;
}
.pay span:nth-child(odd) {
    margin-right: 30px;
}
.pay span:nth-child(even) {
    left: 7%;
    position: absolute;
}
.pay hr {
    width: 96%;
    margin-right: 2%;
    color: #105648;
}
.pay a:nth-child(odd) {
    border-radius: 0 8px 8px 0;
    width: 15%;
    left: 5%;
    position: absolute;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 6px 0;
}
.pay a:nth-child(even) {
    border-radius: 8px 0 0 8px;
    width: 48%;
}
@media screen and (max-width: 600px) {
    .steps {
        margin-top: -29px;
    }
    .steps img {
        width: 55px;
    }
    .step {
        display: block;
    }
    .products {
        width: 90%;
    }
    .pay {
        width: 90%;
        margin-right: 5%;
        margin-bottom: 20px;
    }
    .pay a:nth-child(odd) {
        width: 45%;
    }
    .pay span:nth-child(even) {
        left: 12%;
    }
    .products-box {
        flex-direction: column;
    }
    .products-box1 {
        width: 40%;
    }
    .products-box2 {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    .products-box2 span {
        font-size: 18px;
    }
    .cart-forms {
        justify-content: center;
    }
    .products-box3 {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        border-radius: 0;
    }
}