#stc-add-money-form { max-width:400px; padding:1.5rem; background:#fff; border-radius:8px; }
#stc-add-money-form .field { margin-bottom:1rem; }
#stc-add-money-form .field label { display:flex; align-items: center; font-weight:500; margin-bottom:.3rem; padding: 10px 0 5px 0; color: #4f008c;}
#stc-add-money-form .field input, .field select { width:100%; padding:.6rem; border:1px solid #d0d5dd !important; border-radius:5px; }
#stc-add-money-form .response { margin-top:1rem; color:#d93025; }

#stc-add-money-form .payment-options {
  display: block; /* stack vertically */
  gap: 0.75rem;
}
#stc-add-money-form .payment-options .radio-label{
	min-height: 42px;
	padding: 0 !important;
}

#stc-add-money-form .radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem;
  border: 1px solid #d0d5dd;
  border-radius: 5px;
  margin-bottom: 0.75rem;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  color: #777777 !important;
  font-weight: 400 !important;
}

#stc-add-money-form .radio-label input[type="radio"] {
  	cursor: pointer;
  	flex-shrink: 0;
	width: 50px !important;
}

#stc-add-money-form .radio-label input[type="radio"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

#stc-add-money-form .radio-label input[type="radio"]:checked + span {
  color: #000 !important;
  font-weight: 500 !important;
}

#stc-add-money-form .submit-field{
	text-align: end;
}
#stc-add-money-form .submit-field button{
	background-color: #4f008c;
	color: white;
	padding: 10px 30px;
	border: none;
    border-radius: 8px;
}

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

.rtl #stc-add-money-form input{
	text-align: right;
}