.checkout-row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;  
   margin: initial;
}

.col-25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
}

.col-30 {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
}

.col-50 {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
}
.col-70 {
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
}

.col-30,
.col-70,
.col-25,
.col-50,
.col-75 {
  padding: 0 5px;
}

.checkout-container {
  background-color: #f2f2f2;
  padding: 5px 20px 15px 20px;
  border: 1px solid lightgrey;
  border-radius: 3px;
}
.checkout-row select,
.checkout-row input[type=number],
.checkout-row input[type=text] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;

}

.checkout-row label {
  margin-bottom: 10px;
  display: block;
}

.icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}

.checkout-row.btn {
  background-color: #04AA6D;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border: none;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}

.checkout-row.btn:hover {
  background-color: #45a049;
}

.item-checkout {  
  font-size: 13px;
  font-family: 'Open Sans',"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.checkout-row hr {
  border: 1px solid lightgrey;
}

.checkout-row span.price {
  float: right;
  color: grey;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */
@media (max-width: 800px) {
  .checkout-row {
    flex-direction: column;
  }
  .col-30,
  .col-25 {
    margin-bottom: 20px;
  }

 .item-checkout { 
  font-size: 10px; 
}
}

input.has-error {
    border-color: #a94442 !important;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.table-cart > tbody{
font-size: 14px;
}

