#card {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

#immagine_fidelity_card {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

#immagine_fidelity_card img {
    max-width: 350px;
    max-height: 200px;
    object-fit: fill;
    margin-bottom: 1rem;
}

.sp-card-fidelity {
    width: 350px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-color: #ccc;
}

.error_fidelity {
    color: red;
    padding-left: 10px;
}

.fidelity-link {
    color: inherit;
}
.fidelity-text {
    font-weight: bolder;
    /*font-size: 1em;*/
    text-decoration: underline;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    #card {
        flex-direction: column;
        align-items: center;
    }

    .sp-card-fidelity {
        transform: rotate(-90deg) translateX(-20%);
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 50%;
    }
}