 /* order form */
/* .order-submit {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    gap: 10px;*/
/*    flex-wrap: wrap;*/
/*	margin-bottom: 0 !important;*/
/*}*/

/*.order-submit .form-field {*/
/*    width: 32.333%;*/
/*}*/

/*{*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.form-field {*/
/*    width: 48.333%;*/
/*}*/
.order-heading h2 {
    text-align: center;
    font-size: 42px;
}
.order-submit{
    padding:50px 0;
}
.order-submit .form-field{
    margin-bottom: 20px;
}
.order-submit .form-field label {
    margin-bottom: 10px;
}
.form-field .total-calculation{
	display: flex;
    align-items: center;
    gap: 10px;
	justify-content: space-between;
	margin-bottom: 10px;
}
.form-field .total-calculation > label {
    width: 48.333%;
    margin-bottom: 0;
}

.form-field .total-calculation .price-show,.form-field .total-calculation .discount-show,.form-field .total-calculation .final-show{
	display: flex;
    align-items: center;
    width: 100%;
}
.form-field .total-calculation .price-show > span,.form-field .total-calculation .final-show > span,.form-field .total-calculation .discount-show > span {
    width: 15%;
    text-align: center;
    background: #6c757d;
    color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 10px;
}

.form-field .total-calculation .discount-show .pound-discount{
	background: red
}
.form-field .total-calculation .final-show .pound-final{
	background: #28a745
}


.color-price {
    color: #6c757d;
}
.color-discount {
    color: red;
}
.color-final{
    color: #28a745;
}
input, select, textarea {
    padding: 12px !important;
    box-shadow: none !important;
    height: auto !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:focus, select:focus, textarea:focus {
    border: 1px solid #f1c24b !important;
}
input#price{
	font-size: 18px;
    font-weight: 700;
	color: #6c757d;
}
input#discount {
	font-size: 18px;
    font-weight: 700;
	color: red;
}
input#finalPrice {
	font-size: 18px;
    font-weight: 700;
	color: #28a745;
}

.btn-submit-form {
        /* background: #f1c24b !important; */
    padding: 12px 50px;
    /* width: 200px; */
    /* margin: 70px; */
    justify-self: center;
}