.awards-results h3 {
    margin-bottom: var(--gap)
}
.awards-results h4 {
    text-transform: uppercase;
    font-size: 1.3rem;
    margin: var(--gap) 0 calc(var(--gap) / 2)
}
.results-grid {
    display: grid;
    justify-items: center;
    align-items: stretch;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap)
}
.winner {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative
}
.content-body .winner>h5 {
    font-weight: 400;
    margin-top: 0
}
.winner img {
    border-radius: var(--border-radius)
}
h2.category-name:not(:first-of-type) {
    margin-top: calc(var(--gap) * 2)
}
@media screen and (max-width: 767px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}
.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}
.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease
}
.explainer {
    padding: var(--gap);
    border-radius: var(--border-radius);
    background-color: var(--bcg-yellow)
}
.nominees tbody tr:nth-of-type(even) {
    background-color: var(--light-bg)
}
.nominees th:first-of-type {
    text-align: left
}
.nominees tr td:not(:first-of-type) {
    text-align: center
}
button.vote {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease-in-out;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
    outline: 0;
    white-space: nowrap;
    color: #2163e8;
    background-color: rgba(33, 99, 232, 0.1);
    margin-top: var(--gap)
}
button.vote:hover {
    color: #fff;
    background-color: #2163e8
}
.category-votes,
.category-nominees {
    display: grid;
    gap: var(--gap)
}
.chosen .wrapper {
    position: relative;
    max-width: 300px;
    max-height: 200px
}
.chosen .wrapper .place {
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--bcg-red);
    color: #fff;
    padding: calc(var(--gap) / 3) var(--gap);
    border-bottom-left-radius: var(--border-radius)
}
a.edit-button {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease-in-out;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
    outline: 0;
    white-space: nowrap;
    color: #fff;
    background-color: var(--bcg-blue)
}
@media screen and (min-width: 768px) {
    .category-votes,
    .category-nominees {
        grid-template-columns: repeat(3, 1fr)
    }
}
.nominee {
    text-align: center
}
input[type="radio"][name="nominee"] {
    position: absolute;
    left: -9999px
}
input[type="radio"][name="nominee"] + label > img {
    transition: 500ms all;
    border: 8px solid transparent
}
input[type="radio"][name="nominee"] + label > img:hover {
    cursor: pointer
}
input[type="radio"][name="nominee"]:checked + label > img {
    border-color: var(--bcg-red)
}
.nominee span {
    text-align: center;
    display: block;
    margin-top: calc(var(--gap-inverse) / 2);
    font-weight: 600
}
table.nominees {
    width: 100%
}
