.quick-buy-box {
	
	
    border: 1px solid #e5e5e5;
    padding: 25px;
    background: #ffffff;
}


/* Labels */

.quick-buy-box label {
	color:black;
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 15px;

}



/* Inputs */

.quick-buy-box input,
.quick-buy-box textarea {

    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 15px;
	color:black;
	

}


.quick-buy-box textarea {

    height: 100px;
    resize: none;

}

.quick-buy-box select {

    width:100%;
    padding:12px 15px;
    border:1px solid #ddd;
    font-size:15px;
    background:white;
    cursor:pointer;
	color:black;

}


/* Quantity */

.quantity-box {

    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;

}


.quantity-box button {

    width: 40px;
    height: 40px;
    border: none;
    background: #111827;
    color: white;
    font-size: 22px;
    cursor: pointer;

}


.quantity-box input {

    width: 70px;
    text-align: center;

}



/* Summary */

.order-summary {

    background: #f8f8f8;
    padding: 15px;
    margin: 20px 0;
	color: black;

}


.order-summary p {

    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin: 8px 0;

}


.order-summary strong {

    font-size: 18px;

}
.order-line{
	display:flex;
	align-items:center;
	justify-content:space-between;
}



/* Buy button */

.quick-buy-box button[type="submit"] {

    width: 100%;
    background: #EE1D23;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
	

}


.quick-buy-box button[type="submit"]:hover {

    background: #EE1D23;

}