  /* General Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

#payment-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

#payment-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 540px;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.payment-text{
    font-weight: 700;
    font-size: 22px;
}

.payment-popup-content {
    text-align: center;
    position: relative;
    padding-top: 16px;
}

.payment-image-div {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  
}

.payment-image-div img {
    max-width: 50%;
}

.payment-form-div {
    margin-top: 10px;
    text-align: left;
}


.payment-card-details img {
    width: 100px;
    margin-bottom: 10px;
}

.payment-card-details input,
.payment-upi-section input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 60px;
}

.payment-card-details select {
    padding: 10px;
    width: 48%;
    border: 1px solid #ccc;
    border-radius: 60px;
}

#payment-start-trial {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;

}

#payment-start-trial:hover {
    background-color: #0056b3;
}



.payment-align-div {
    display: flex;
    justify-content: space-between;
    gap: 20px;

}


.payment-right{
    width: 209px;
   
}

.payment-left{
    width: 319px;
   
}

.card-expiry{
    border-radius: 60px;
}

.payment-label  {
    display: block; /* Makes the label occupy its own line */
    margin-bottom: 8px; /* Adds space below the label */
}

.payment-card-images , .UPI-images{
    display: flex;
    gap: 5px;
    margin-bottom: 2px;
    height: 36px;
}

.close-btn-payment {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
  }


  .payment-hr{
    margin-top: 1px;
    margin-bottom: 1px;
  }


  /* Hide the radio button itself */
.radio-btn {
    display: none;
  }
  
  /* Style the label (where the images are shown) */
  .radio-label {
    display: inline-block;
    cursor: pointer;
    position: relative;
  }
  
  /* Hide the active image by default */
  .active-img {
    display: none;
  }
  
  /* Style for the inactive image */
  .inactive-img {
    filter: grayscale(100%);
  }
  
  /* When the radio button is checked, show the active image */
  .radio-btn:checked + .radio-label .active-img {
    display: block;
  }
  
  .radio-btn:checked + .radio-label .inactive-img {
    display: none;
    filter: none; /* Remove grayscale effect */
  }
