body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}
input{
    font-family: 'Quicksand', sans-serif;
    font-weight: 600!important;
}
button{
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}
.card-custom{
    max-width: 1080px; border-radius: 15px;
}
.tittle-card-custom{
    color: #1C67D2;
    font-size: 48px;
    font-family: 'Quicksand';
    line-height: 1.34;
    font-weight: 600;
}
.tittle-card-custom-payment{
    font-size: clamp(26px, 4vw, 36px);
    font-family: 'Quicksand';
    line-height: 1.34;
    font-weight: 600;
}
.give-amount-input{
    background: #fff; box-shadow: 10px 13px 38px rgba(0, 0, 0, 0.1);
}
.input-amount-style {
    min-width: 142px;
    font-size: 20px;
    height: 46px;
    line-height: 46px;
    outline: none;
}
.icon-input-custom{
    width: 46px; height: 46px; background-color: #F4A339; font-weight: bold;
}
.btn-donation {
    font-size: 14px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.btn-donation:hover {
    background-color: #ffffff;
    color: #f2aa49;
    border-color: #797979;
}
.fade {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: none; /* Oculto por defecto */
}

.fade.show {
    display: block; /* Ocupa espacio solo cuando está visible */
    opacity: 1;
}
