body {
  font-family: "Roboto", sans-serif;
}

:root {
  --negro: #272727;
  --morado: #652D90;
  --morado-dark: #4e2270;
  --amarillo: #FFC600;
  --amarillo-dark: #e6b200;
  --naranja: #ff5700;
  --verde: #00914e;
}

body.checkout-body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #f7f7f9;
  font-family: "Roboto", sans-serif;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}
body.checkout-body .checkout-topbar {
  background: #00914e;
  color: #fff;
  font-size: 13px;
  width: 100%;
}
body.checkout-body .checkout-topbar__inner {
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
body.checkout-body .checkout-topbar__inner a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition: border-color 0.15s;
}
body.checkout-body .checkout-topbar__inner a:hover {
  border-bottom-color: #fff;
}
body.checkout-body .checkout-header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  width: 100%;
}
body.checkout-body .checkout-header__inner {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
body.checkout-body .checkout-header__logo {
  display: block;
  line-height: 0;
}
body.checkout-body .checkout-header__logo img {
  width: 95px;
  height: auto;
  display: block;
}
body.checkout-body .checkout-main {
  flex: 1 0 auto;
  padding: 80px 0;
}
@media (max-width: 991px) {
  body.checkout-body .checkout-main {
    padding: 48px 0;
  }
}
body.checkout-body .checkout-section,
body.checkout-body .woocommerce-checkout-payment,
body.checkout-body .wc_payment_methods {
  padding: 0 !important;
}
body.checkout-body .woocommerce-checkout-review-order {
  padding: 10px;
}
body.checkout-body .payment_box.payment_method_custom_payment_webpay p {
  margin: 0;
}
body.checkout-body .checkout-footer {
  flex-shrink: 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}
body.checkout-body .checkout-footer__inner {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
@media (max-width: 576px) {
  body.checkout-body .checkout-topbar {
    font-size: 12px;
  }
  body.checkout-body .checkout-topbar__inner {
    justify-content: center;
  }
  body.checkout-body .checkout-header__logo img {
    width: 80px;
  }
  body.checkout-body form.checkout.woocommerce-checkout {
    gap: 0 !important;
  }
}
