.spenden{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.infoCard{
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: var(--main-background-karte);
    border-left: 4px solid var(--main-border-color);
    border-radius: var(--main-border-radius-big);
    margin-bottom: 30px;
    box-shadow: var(--main-box-shadow);
    width: 85%;
    padding-top: 0;
}

.infoCardHeader{
    display: flex;
    align-items: center;
    gap: 10px;
}

.infoCardHeader>span{
    font-weight: bold;
    font-size: 1.2em;
    background-color: var(--main-accent);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
}

.spendenMethoden{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

.spendenMethoden>section{
    border: 1px solid var(--main-accent);
    border-radius: var(--main-border-radius);
    box-shadow: var(--main-box-shadow);
    padding: 40px 10px;
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.spendenMethoden>section>h4{
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.spendenMethoden>section>ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.spendenMethoden>section>ul>li::before{
    content: "✅";
    margin-right: 5px;
    font-weight: lighter;
    font-size: 0.90em;
}

.info{
    width: 85%;
    font-weight: lighter;
    color: var(--main-text-color-light);
    font-size: 0.9em;
}

.spendeForm{
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.spendeForm>button{
    padding: 0;
    margin: 0 !important;
}

#paypalSection{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

#paypalSection>section{
    display: flex;
    flex-direction: row;
    background-color: black;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    border-radius: 10px;
    gap: 10px;
}

#paypalSection>section>span{
    height: fit-content;
    padding: 0;
    margin: 0;
}

#paypalSection>section>button{
    background: none;
    border: none;
    box-shadow: none;
}

#checkout-button {
    background-color: #635bff;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: var(--main-margin-m);
}

#checkout-button:hover {
    background-color: #4b45c0;
}

/*Large Desktop, TV, etc.*/
@media screen and (min-width: 1200px){

}

/*Tablet landscape, laptop, Desktop*/
@media screen and (min-width: 992px) and (max-width: 1199px){ 

}

/*Tablet portrait*/
@media screen and (min-width: 767px) and (max-width: 991px) { 

}

/*mobile landscape*/
@media screen and (min-width: 480px) and (max-width: 766px){

}

@media screen and (max-width: 479px){
    .spendenMethoden{
        gap: 20px;
    }
    .spendenMethoden>section{
        width: 100%;
    }
    #paypalSection>section>span{
        font-size: 0.8em;
    }
}