.votes_with_photos .vote_with_photo {
    position: relative;
    aspect-ratio: 10/16;
    box-shadow: 0px 3px 10px 1px rgb(var(--black-color), .1);
    margin: 20px 0;
}

.votes_with_photos .photo_vote_label {
    filter: saturate(85%);
    overflow: hidden;
    border-radius: 7px;
    background-color: rgb(var(--white-color), 1);
}

.votes_with_photos input[name="voteRadio"]:checked~.photo_vote_label {
    font-weight: 500;
    filter: saturate(100%);
    background-color: rgb(var(--gold-color), 1);
}

.votes_with_photos .photo_vote_label span {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: inherit;
    width: 100%;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    font-size: 14px;
}

.votes_with_photos .photo_vote_label a.glightbox {
    cursor: zoom-in;
}

.votes_with_photos .photo_vote_label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.votes_with_photos .photo_vote_current {
    position: absolute;
    top: -8px;
    right: 10px;
    z-index: 1;
    color: rgb(var(--gold-color), 1);
    font-size: 50px;
    text-shadow: 1px 3px 10px rgb(var(--black-color), .5);
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: .5s ease-in-out;
}

.votes_with_photos input[name="voteRadio"]:checked~.photo_vote_current {
    opacity: 1;
}