.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;
}

.paymentMethod-type{
    font-size: 16px;
    font-weight: 600;
    color: black;    
}

.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;
}

.btn-show-payment{
  display: flex;
  justify-content: center;
  height: 40px;
  align-items: center;
  background-color: var(--main-theme-color);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
}

.btn-show-payment:focus{
  outline: none;
  border: none;
  box-shadow: none;
}

.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: 18px;
  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); }
}

.remove-coupon{
    background-color: transparent;
    border: none;
    font-size: 16px;
}

.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;
}