.loader {
  position: relative;
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid var(--main-theme-color);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

.loadertiny {
  position: relative;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--main-theme-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  margin-left: 50%;
  top: 166px;
  display: none;
}

.payment-method-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.payment-method-header__img {
  width: 110px;
  max-height: 30px;
}

.Lytex,
.MercadoPago,
.Pagarme,
.Pickup-store,
.Default-store,
.Getnet {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px;
  border-bottom: 1px solid lightgray;
}

.payment-method-body {
  margin-top: 1.3rem;
  display: none;
  width: 100%;
}

.payment-method-body label {
  display: flex;
  gap: 10px;
}

.payment-type-title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.discount-message {
  font-size: 15px;
  color: #28a745;
}

.div-cardNumber {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.Default-icon,
.Pickup-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.Default-title,
.Pickup-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: black;
  margin-bottom: 0;
  margin-top: 0.55rem;
}

.installments-fontSize {
  font-size: 0.9rem !important;
}

.expiry-CVC-div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.expiry-CVC-div .col {
  padding: 0;
}


@media screen and (max-width: 450px) {
  .expiry-CVC-div {
    display: block;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cod-method-body {
  padding: 0px 15px;
  margin-bottom: 10px;
}

#cod-need-change:checked~.custom-control-label::before {
  background-color: var(--main-theme-color);
  border-color: var(--main-theme-color);
}

#cod-need-change:checked~.custom-control-label::after {
  background-color: white;
}

.cod-details {
  margin-bottom: 1.3rem;
}

.cod-details .cod-instructions-title {
  color: black;
}

.cod-cash-icon {
  font-size: 1rem;
}

.shipping_area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.shipping_area .local-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.checkout-step-email .input-text--primary-style {
  border-radius: 6px;
}

.checkout-step-email .basicbtn {
  padding: 16px;
}

.checkout-step-email .route-box__link {
  padding: 0;
}

.checkout-step-email .btn-reset {
  background: none;
  border: none;
}

/*
  CHECKOUT E-MAIL STEP
*/
.checkout-email-locked {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 12px 14px;
  background: #f9fafb;
  margin-bottom: 0;
}

.checkout-email-locked__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.checkout-email-locked__header .label {
  color: #6b7280;
}

.checkout-email-locked__value {
  font-weight: 500;
  color: #111827;
  word-break: break-word;
  overflow-wrap: break-word;
}

.change-email {
  background: none;
  border: none;
  color: var(--main-theme-color);
  font-weight: bold;
  cursor: pointer;
}

.checkout-login-actions__row {
  display: flex;
  gap: 12px;
}

.checkout-btn-back {
  flex: 0 0 140px;
}

.checkout-btn-login {
  flex: 1;
}

/* Mobile */
@media (max-width: 575.98px) {

  .checkout-email-locked__value,
  .change-email {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .checkout-login-actions__row {
    flex-direction: column;
  }

  .checkout-btn-login {
    order: 1;
    width: 100%;
  }

  .checkout-btn-back {
    order: 2;
    width: 100%;
    flex: unset;
  }
}

.checkout-terms {
  color: #666;
}

.btn-show-payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: var(--main-theme-color);
  color: #fff;
  line-height: 0;          
  box-sizing: border-box;
  vertical-align: middle;
}

.btn-show-payment svg {
  display: block;
  width: 26px;
  height: 26px;
}

.btn-show-payment:active,
.btn-show-payment:focus,
.btn-show-payment:active:focus {
  outline: none;
  box-shadow: none;
  transform: none;
}

.btn-show-payment svg {
  transform: translateY(-1px);
}

.btn-show-payment .bi-caret-down-fill {
  transform: translateY(0.05px);
}
