 .form-control {
  display: block;
  width: 100%;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  font-family: Cairo;

}

.checkout_details_area  .form-control {
  height: 60px;
  border: none;
  border-radius: 0;
  background-color: #f5f7fa;
  padding: 30px;
  color: #6b6b6b;
  font-size: 14px;
  font-family: Cairo;
  font-weight: 600;
}

.checkout_details_area  .nice-select {
  border-radius: 0;
  height: 60px;
  line-height: 60px;
  background-color: #f5f7fa;
  border: none;
  color: #6b6b6b;
  font-size: 14px;
  font-family: Cairo;

}

 .cart-table-area .cart-summary {
  background-color: #f5f7fa;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  font-family: Cairo;
}
 .cart-table-area .cart-summary h5 {
  font-size: 18px;
  margin-bottom: 0;
  font-family: Cairo;

}
.cart-table-area .cart-summary .summary-table {
  margin-top: 30px;
  font-family: Cairo;

}
.cart-table-area .cart-summary .summary-table li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  text-transform: capitalize;
  font-family: Cairo;

}
.cart-table-area .cart-summary .summary-table li span {
  color: #6b6b6b;
  font-size: 14px;
  font-family: Cairo;

}
 
.container-radio {
  display: block;
  position: relative;
  line-height:28px;
  font-family: Cairo;

 }

/* Hide the browser's default radio button */
.container-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  font-family: Cairo;

  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container-radio input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container-radio .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
 

 