.rossa-modal-payment-method{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    gap: 16px;
}

.rossa-modal-payment-method__header{
    display: flex;
    justify-content: center;
    align-items: center;
}

.rossa-modal-payment-method__header-img{
    all: unset;
    width: 100%;
    height: 100%;
    max-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 16/9;
    object-fit: contain;
}

.rossa-modal-payment-method__body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rossa-modal-payment-method__title{
    all: unset;
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
    padding: 0;
}

.rossa-modal-payment-method__description{
    all: unset;
    display: block;
    font-size: 16px;
    color: #000;
    margin: 0;
    padding: 0;
}

.rossa-modal-payment-method__footer{
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.rossa-modal-payment-method__button{
    all: unset;
    display: flex;
    padding: 4px 16px;
    border-radius: 8px;
    background-color: #e7004c;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #e7004c;
}

.rossa-modal-payment-method__button:focus,
.rossa-modal-payment-method__button:focus-visible{
    background-color: #ae0341;
    border-color: #ae0341;
    color: white;
}


@media (hover: hover) {
    .rossa-modal-payment-method__button:hover{
        background-color: #ae0341;
        color: white;
        border-color: #ae0341;
    }
}

.rossa-modal-payment-method__button.rossa-modal-payment-method__button--white{
    background-color: white;
    color: #000;
    border: 1px solid #eeeeee;
}

.rossa-modal-payment-method__button.rossa-modal-payment-method__button--white:focus,
.rossa-modal-payment-method__button.rossa-modal-payment-method__button--white:focus-visible{
    background-color: #eeeeee;
    color: #000;
    border-color: #eeeeee;
}

@media (hover: hover) {
    .rossa-modal-payment-method__button.rossa-modal-payment-method__button--white:hover{
        background-color: #eeeeee;
        color: #000;
        border-color: #eeeeee;
    }
}





