.card {
    max-width: 50rem;
}

.card:hover {
    background-color: var(--card-color) !important;
}

.card.card-details {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.card.card-info {
    width: 100%;
}

.card-info:hover a {
    text-decoration: underline;
    color: var(--text-color);
}

.title-section span {
    font-size: 2rem;
    font-weight: 200;
    text-transform: uppercase;
}

.closed {
    display: flex;
    align-items: center;
}

.title-section.closed span {
    text-transform: none;
    margin-left: 1rem;
    margin-bottom: -0.5rem;
}

.title-section img {
    width: 3rem;
}

.providers {
    display: flex;
    gap: 1rem;
}

.providers img {
    width: 3rem;
    border: 3px solid #151515C4;
    border-radius: 0.5rem;
    box-shadow: 1px 1px 1px 1px #0B0B0B57;
}

.plot {
    margin-top: 1rem;
    font-size: 2rem;
    line-height: 1.7rem;
    font-weight: 300;
}

.inner-card {
    text-align: center;
}

/* VOTI */

.card.card-votes {
    justify-content: space-around;
    font-weight: 100;
    font-size: 2rem;
}


.voto {
    position: relative;
    text-transform: uppercase;
    text-align: center;
}

.voto span {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-bottom: 2px solid #60606038;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.voto:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 10%;
    height: 80%;
    width: 2px;
    background-color: #60606038;
}

.delivery.voto:not(:last-child)::after {
    right: -4rem;
}

.voto img {
    width: 3rem;
    margin: 0 auto;
    margin-bottom: 0.3rem;
}

.voto-numero {
    font-weight: 400;
    font-size: 4rem;
}

/* IMAGES */

.card.card-images {
    display: block;
}

.plot.images {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 1rem;
}

.plot.images img {
    width: 100%;
    flex: 1 1 20rem;
    height: 100%;
    border-radius: 1rem;
    box-shadow: 5px 5px 10px 0 #00000069;
}