/*================================================
Checkout Area CSS
=================================================*/
.mf-checkout-information .contact-information {
  margin-bottom: 40px;
}
.mf-checkout-information .contact-information h3 {
  font-size: 22px;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.mf-checkout-information .form-group {
  margin-bottom: 25px;
  position: relative;
}
.mf-checkout-information .form-group label {
  color: var(--optional-black-color);
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.mf-checkout-information .form-group .form-control {
  display: inline-block;
  width: 100%;
  height: 55px;
  border: none;
  background: #F9F9F9;
  border-radius: 0;
  padding: 15px 20px;
  outline: 0;
  box-shadow: unset;
  letter-spacing: 0.02em;
  color: var(--paragraph-color);
  transition: var(--transition);
}
.mf-checkout-information .form-group .form-control::-moz-placeholder {
  color: var(--paragraph-color);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.mf-checkout-information .form-group .form-control::placeholder {
  color: var(--paragraph-color);
  transition: var(--transition);
}
.mf-checkout-information .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.mf-checkout-information .form-group .form-control:focus::placeholder {
  color: transparent;
}
.mf-checkout-information .form-group .form-select {
  display: inline-block;
  width: 100%;
  height: 55px;
  border: none;
  background-color: #F9F9F9;
  border-radius: 0;
  padding: 15px 20px;
  outline: 0;
  box-shadow: unset;
  letter-spacing: 0.02em;
  color: var(--paragraph-color);
  transition: var(--transition);
}
.mf-checkout-information .form-group option {
  color: var(--paragraph-color);
}
.mf-checkout-information .shipping-address h3 {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--optional-black-color);
}
.mf-checkout-information .shipping-address .cart-btn {
  font-size: 14px;
  font-weight: bold;
  color: var(--black-color);
}
.mf-checkout-information .shipping-address .cart-btn:hover {
  color: var(--main-color);
}
.mf-checkout-information .form-cookies-consent {
  margin-bottom: 0;
}
.mf-checkout-information .form-cookies-consent [type=checkbox]:checked, .mf-checkout-information .form-cookies-consent [type=checkbox]:not(:checked) {
  display: none;
}
.mf-checkout-information .form-cookies-consent [type=checkbox]:checked + label, .mf-checkout-information .form-cookies-consent [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  color: var(--paragraph-color);
  font-size: 15px;
}
.mf-checkout-information .form-cookies-consent [type=checkbox]:checked + label:before, .mf-checkout-information .form-cookies-consent [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
  background: #D9D9D9;
  border-radius: 5px;
}
.mf-checkout-information .form-cookies-consent [type=checkbox]:checked + label:after, .mf-checkout-information .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--black-color);
  border-radius: 50px;
  position: absolute;
  top: 8.5px;
  left: 5px;
  transition: all 0.2s ease;
}
.mf-checkout-information .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.mf-checkout-information .form-cookies-consent [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.mf-checkout-totals-box {
  background: #F9F9F9;
  padding: 35px;
  margin-left: 30px;
}
.mf-checkout-totals-box h2 {
  font-size: 18px;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.mf-checkout-totals-box .list {
  padding-left: 0;
  margin-bottom: 0;
}
.mf-checkout-totals-box .list li {
  list-style-type: none;
  margin-bottom: 20px;
}
.mf-checkout-totals-box .list li:last-child {
  margin-bottom: 0;
}
.mf-checkout-totals-box .list li span {
  color: var(--paragraph-color);
}
.mf-checkout-totals-box .list li .semi-bold {
  font-weight: 600;
  color: var(--black-color);
}
.mf-checkout-totals-box .list li .bold {
  font-weight: 700;
  font-size: 20px;
  color: var(--black-color);
}
.mf-checkout-totals-box h3 {
  font-size: 18px;
  border-top: 1px solid #E5E5E5;
  padding-top: 25px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.mf-checkout-totals-box .payment-list {
  padding-left: 0;
  margin-bottom: 0;
}
.mf-checkout-totals-box .payment-list li {
  list-style-type: none;
  margin-bottom: 15px;
}
.mf-checkout-totals-box .payment-list li:last-child {
  margin-bottom: 0;
}
.mf-checkout-totals-box .payment-list li .form-cookies-consent {
  margin-bottom: 0;
}
.mf-checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:checked, .mf-checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:not(:checked) {
  display: none;
}
.mf-checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:checked + label, .mf-checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  color: var(--black-color);
}
.mf-checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:checked + label:before, .mf-checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
  background: #D9D9D9;
  border-radius: 30px;
}
.mf-checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:checked + label:after, .mf-checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--black-color);
  border-radius: 50px;
  position: absolute;
  top: 8.5px;
  left: 5px;
  transition: all 0.2s ease;
}
.mf-checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.mf-checkout-totals-box .payment-list li .form-cookies-consent [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.mf-checkout-totals-box .checkout-btn {
  margin-top: 30px;
  text-align: center;
}
.mf-checkout-totals-box .checkout-btn .mf-default-btn {
  width: 100%;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .mf-checkout-information .shipping-address .cart-btn {
    display: none;
  }
  .mf-checkout-totals-box {
    padding: 25px;
    margin-left: 0;
    margin-top: 30px;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mf-checkout-totals-box {
    margin-left: 0;
    margin-top: 30px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mf-checkout-totals-box {
    margin-left: 0;
    margin-top: 30px;
  }
}/*# sourceMappingURL=checkout.css.map */