.nd-form-container{
    display: flex;
    flex-direction: column;
}

.nd-form-container input{
    outline: none;
}

.nd-form-label{
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    display: block;
}
.nd-currency-indicator{
    background: #e40938;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    height: 40px;
    width: 40px;
    border-radius: 10px 0px 0px 10px;
    font-weight: 600;
    box-sizing: border-box;
    font-size: 16px;
}
.nd-input-amount-to-donate{
    padding: 5px 10px;
    border-left: 0;
    border-top: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
    height: 40px;
    border-radius: 0 10px 10px 0;
    font-weight: 600;
    width: calc(100% - 40px);
    font-size: 18px;
    box-sizing: border-box;
}
.nd-amount-input{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
}
.nd-amount-input-button{
    display: flex;
    align-items: center;
    width: 100%;
}
.nd-from-select-option{
    display: flex;
    gap: 0.75rem;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.nd-amount-option{
    padding: 6px 10px;
    background: #f7f4f4;
    color: #000000;
    box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    gap: 0.35rem;
    align-items: center;
}
.nd-content-inputs{
    display: flex;
    justify-content: space-between;
}
.nd-w-48p{
    width: 48%;
}
input[type='radio'].nd-form-donar {
    accent-color: #e40938;
    margin: 0;
}
.nd-currency-switch {
    display: flex;
    background: #f7f4f4;
    border-radius: 12px;
    padding: 5px;
    width: 180px;
    justify-content: space-between;
    margin-bottom: 20px;
}
.nd-currency-option {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
    font-size: 16px;
}
.nd-currency-option.active {
    background: #e40938;
    color: white;
}
.nd-form-user-data{
    display: flex;
    gap: 1rem;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.nd-user-input{
    padding: 5px 10px;
    border: 1px solid #c9c9c9;
    height: 40px;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 14px;
    min-width: 192px;
}
.nd-button-container{
    display: flex;
    justify-content: center;
}
.nd-send-donation{
    display: block;
    width: 225px;
    background: #e40938;
    color: white;
    border: 0;
    padding: 8px 10px;
    border-radius: 10px;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
}
.nd-send-donation:hover{
    background: #ad1637;
}

.nd-custom-tooltip {
  position: relative;
  display: inline-block;
}

.nd-custom-tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.nd-custom-tooltip:hover .tooltiptext {
  visibility: visible;
}

.nd-input-amount-to-donate.disabled {
    pointer-events: none;
    background-color: #d7d7d773;
    color: #484848;
    border: 1px solid #ccc;
}

@media only screen and (max-width: 600px) {
  .nd-input-amount-to-donate {
        padding: 5px 10px;
        border-left: 0;
        border-top: 1px solid #c9c9c9;
        border-right: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        height: 40px;
        font-weight: 600;
        border-radius: 0 10px 10px 0;
        width: calc(100% - 40px);
    }
    
    .nd-form-user-data {
        display: flex;
        gap: 1rem;
        margin-bottom: 20px;
        flex-direction: column;
    }
}


/* CUSTOM SPINER */
.nd-load_container{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.nd-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid rgb(219, 52, 52);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* PAGINA RESPUESTA */
.nd-response_container{
    border-radius: 20px;
    background-color:rgb(248, 248, 248);
    box-shadow: 0px 10px 10px -8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.nd-response_status{
    padding: 10px; 
    border-radius: 16px; 
    font-size: 18px;
    column-count: 2;
    column-gap: 20px;
    margin-bottom: 20px;
}

.nd-response_title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.nd-response_title p{
    margin: 0;
    font-size: 18px;
}
.nd-response_title h3{
    margin: 0;
    font-weight: 600;
    font-size: 24px;
}

.nd-response_separator{
    margin: 20px 0;
    border-top: 1px solid rgb(206, 206, 206);
}
.nd-response_info{
    column-count: 2;
    column-gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nd-response_info li{
    display: block;
    padding: 10px;
    font-size: 18px;
}


select:focus{
    outline: none;
}

select{
    background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
    background-position: calc(100% - 0.75rem) center !important;
    -moz-appearance:none !important;
    -webkit-appearance: none !important; 
    appearance: none !important;
}

.nd-terms-container{
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
}

#terminosCheckbox {
    accent-color: rgb(219, 52, 52);
}

a.link-term{
    color: rgb(219, 52, 52);
    text-decoration: none;

}

a.link-term:focus{
    outline-width: 0px;
    outline-style: none;
}

.nd-send-donation:disabled {
    background-color: #b5b5b5 !important;
    cursor: not-allowed;
    opacity: 0.6;
}