/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
.pointer{
    cursor: pointer;
}
.logo {
    background-color: rgb(255, 254, 254);
    width: 100%;
    height: 160px;
.logo-bbva{

img{

    height: 64px;
}
margin-left: 30px;
padding-top: 10px;
}
.switch-language{
    width: 64px;
    display: flex;
    height: 26px;
    padding: 6px;
    border-radius: 33px;
    justify-content: space-between;
    margin-left: 30px;
    margin-top: 8px;
.language-icon{
    height: 25px;
    width: 25px;
    border-radius: 25px;
    border: 2px solid white;
    cursor: pointer;
}

.active{
    border-radius: 50px;
    border-color: #02A5A5;
    box-shadow: 3px 3px 10px #000000C2;
}
}

}

.logo-bar {
    background-color: #004580;
    width: 100%;
    height: 30px;
}

.title-donation{
    margin-top: 60px;
}

.subtitle-donation{
    margin-top: 14px;
    margin-bottom: 36px;
}

.option.selected {
    background: #03cdff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 2px solid #007bff;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    height: 100%;
    width: 100%;
}

.container {
    margin: -60px auto 0;
    max-width: 90%;
    height: calc(100vh - 202px);
    background: white;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
.container-body{
    margin: 14px 120px 36px 120px;
}
}

h1 {
    text-align: left;
    font: normal normal medium 20px/24px BentonSans;
    letter-spacing: 0px;
    color: #121212;
    opacity: 1;
    font-size: 20px;
}

.subtitle{
    text-align: left;
    font: normal normal medium 14px/24px BentonSans;
    letter-spacing: 0px;
    color: #121212;
    font-size: 14px;
    opacity: 1;
}

.subtitle-modal {
    color: #666666;
    text-align: center;
    font-size: 15px;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(4, 148px);
    row-gap: 50px;
    column-gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
}

.option {
    background: #F4F4F4;
    width: 148px;
    padding: 1.2rem 0.5rem;
    /* border-radius: 8px; */
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 49px;
}

.option:hover {
    background: #03cdff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.buttons {
    display: flex;
    margin: 15vh 0 36px 0;
    justify-content: space-between;
}

.btn-next {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 180px;
    min-height: 60px;
    /* border-radius: 4px; */
    background: #007bff;
    color: white;
    transition: all 0.3s ease;
    font-weight: bold;
}
.cancel-button{

    color: #007bff;
    background: transparent;
}

.btn-cancel {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 180px;
    min-height: 60px;
    border-radius: 4px;
    background: transparent;
    color: #007bff;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-next:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.cancel-button:hover{
    color: white;
    background: #007bff;
}

/* Estilos para el modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 560px;
    height: 364px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.close-modal {
    color: #1973B8;
    float: right;
    font-size: 30px;
    cursor: pointer;
}

.close-modal:hover {
    color: black;
}

.modal-title {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    margin-bottom: 0;
    color: #121212;
    font-size: 22px;
    font-weight: normal;
}

.modal-input {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    height: 56px;
    border: none;
    border-bottom: 2px solid #6666;
    border-radius: 4px;
    background: #F4F4F4;
    font-size: 16px;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.modal-btn {
    padding: 8px 16px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.modal-btn-save {
    background-color: #007bff;
    color: white;
}

.modal-btn-save:hover {
    background-color: #0056b3;
}

.modal-btn-cancel {
    background-color: #f1f1f1;
    color: #333;
}

.modal-btn-cancel:hover {
    background-color: #ddd;
}

.elements-modal{
    display: grid;
    justify-content: center;
.image-container{
    justify-items: center;
.image-space{
img{

    height: 80px;
    width: 80px;
}
}
}
}
@media (min-width: 1600px) {
    .ammounts-container {
        justify-items: center;
    }
    .donation-options{
        width: 1200px;
    }
}

@media (max-width: 1000px) {
    .ammounts-container{
        justify-items: center;

    }
    .donation-options{
        grid-template-columns: repeat(2, 170px);
        column-gap: 40px;
        row-gap: 30px;
        max-width: 400px;
    }

    #customAmount {
        grid-column: 1 / -1;
        order: 99;
    }

    .buttons {
        position: static;
        justify-content: center;
        margin: 40px auto 0;
        right: auto;
        bottom: auto;
        margin: 15vh 0 36px 0;
        justify-content: space-between;
    }
    .cancel-button{
        font-size: 15px;
        color:#237ABA;
        height: 48px;
    }

    .container {
        padding-bottom: 40px;
    .container-body{
        margin:14px 80px 36px 80px
    }
}
.modal-content {
    width: 450px;
    height: 350px;
.modal-input{

    height: 40px;
    margin: 15px 0;
}
}
}

@media (max-width: 600px) {
    .title-donation{

        margin-top: 40px;

    }

    .donation-options {
        grid-template-columns: repeat(2, 150px);
        row-gap: 30px;
    }

    .btn-next, .btn-cancel {
        width: 148px;
        height: 49px;
        min-height: 49px;
    }

    .modal-content {
        width: 330px;
        margin: 30% auto;
        height: 300px;
    .modal-title{
        font-size: 20px;
        margin: 5px;
    }
    .subtitle-modal {
        margin: 10px;
    }
    .modal-input {
        height: 30px;
        margin: 10px 5%;
        width: 90%;
    }

    .btn-next, .btn-cancel {
        width: 120px;
        height: 45px;
        min-height: 45px;
    }
}

.container {
.container-body{
    margin:14px 30px 36px 30px
}
}
.buttons{
    margin: 10vh 0 36px 0;
}
}
@media (max-width: 400px) {
    .title-donation{

        margin-top: 20px;

    }
    h1 {
        font-size: 18px;
    }
    .subtitle{

    }

    .donation-options {

        grid-template-columns: repeat(2, 130px);
    .option{
        width: 120px;
    }
}

.btn-next {
    width: 130px;
    min-height: 50px;
    font-size: 0.825rem;
    padding: 0.75rem 1rem;
}

.modal-content {
    padding: 10px;
}

.container {
.container-body{
    margin:14px 0px 36px 0px
}
.buttons{
    margin: 20px 0 36px 0;
}
}
}

.language-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 5px 10px;
    border: 1px solid #007bff;
    background: white;
    color: #007bff;
    cursor: pointer;
    border-radius: 4px;
}

.lang-btn.active {
    background: #007bff;
    color: white;
}

.switch-language img {
    transition: all 0.3s ease; /* Suaviza la transición */
}

.switch-language img.active {
    border: 2px solid #0066ff;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

