#Parity-perspective .Parity-perspective-image {
    margin: 0;
}

#Parity-perspective .Parity-perspective-image > div {
    height: 100%;
}

.parity-subscribe-bg {
    background-position: center;
    background-repeat: no-repeat;
}

/* Top nominees list */
#Top-nominees > .row-bg-wrap > .inner-wrap.row-bg-layer > .row-bg {
    height: calc(100% - 500px);
}

#nominees-filter-form {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

#nominees-filter-form > div {
    display: flex;
    justify-content: center;
}

#nominees-filter-form .nominees-filter-form-bottom {
    gap: 20px;
    margin-top: 20px;
}

#nominees-filter-form .nominees-filter-form-bottom > div {
    flex: 0 0 33.33%;
}

.nominees-filter-form-input input[type="text"] {
    padding: 14px !important;
    background-color: #fff !important;
    border: none !important;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.nominees-filter-nominee-name {
    display: flex;
    position: relative;
}

.nominees-filter-nominee-name #clear-nominee-name {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    outline: 0;
    cursor: pointer;
}

.nominees-filter-nominee-name #clear-nominee-name img {
    margin: 0;
}

.nominees-filter-tabs-inner label {
    position: relative;
    background-color: #fff;
    color: #000;    padding: 10px;
    display: inline-block;
    padding: 10px;
    margin: 5px;
    border-radius: 6px;
    cursor: pointer;
}

.nominees-filter-tabs-inner label input[type="radio"] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.nominees-filter-tabs-inner label::before {
    content: "";
    display: none;
    position: absolute;
    top: 50%;
    left: 10px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.nominees-filter-tabs-inner label:has(input:checked) {
    background-color: #050829;
    color: #fff;
    padding: 10px 10px 10px 30px;
}

.nominees-filter-tabs-inner label:has(input:checked)::before {
    display: block;
    background: url(../assets/checkmark-light.svg) no-repeat center;
    background-size: contain;
}

.nominees-filter-dropdown {
    position: relative;
    height: 50px;
    overflow: visible;
}

.nominees-filter-dropdown.industries {
    z-index: 1;
}

.top-nominees:not(.year-2024) .nominees-filter-dropdown.sectors {
    display: none;
}

.nominees-filter-dropdown.sectors {
    z-index: 0;
}

.nominees-filter-dropdown,
.nominees-filter-dropdown-inner {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.nominees-filter-dropdown-inner {
    padding-bottom: 15px;
    clip-path: polygon(0 0, 100% 0, 100% 50px, 0 50px);
    transition: clip-path 0.4s ease-in-out;
    -webkit-transition: clip-path 0.4s ease-in-out;
    -moz-transition: clip-path 0.4s ease-in-out;
    -ms-transition: clip-path 0.4s ease-in-out;
    -o-transition: clip-path 0.4s ease-in-out;
}

.nominees-filter-dropdown:hover .nominees-filter-dropdown-inner {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nominees-filter-dropdown p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 0 25px;
    height: 50px;
    line-height: 50px;
}

.nominees-filter-dropdown p img {
    display: inline;
    margin: 0 !important;
}

.nominees-filter-dropdown-inner label {
    display: flex;
    justify-content: flex-start;
    padding: 5px 40px;
    position: relative;
    cursor: pointer;
}

.nominees-filter-dropdown-inner label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 15px;
    height: 15px;
    border: 1px solid #696969;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.nominees-filter-dropdown-inner label input[type='checkbox'] {
    position: absolute;
    opacity: 0;
}

.nominees-filter-dropdown-inner label:has(input:checked)::before {
    background: url(../assets/checkmark.svg) no-repeat center;
    background-size: contain;
}

.nominees-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.nominees-cards-wrapper .nominee-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    background-color: #fff;
    box-shadow: 7px 7px 0px 0px var(--dark-blue) !important;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    overflow: hidden;
}

.nominees-cards-wrapper .nominee-card .nominee-thumbnail {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.nominees-cards-wrapper .nominee-card .nominee-title > div:nth-child(2) {
    text-align: right;
}

.nominees-cards-wrapper .nominee-card .nominee-title .nominee-name {
    display: flex;
    justify-content: space-between;
}

.nominees-cards-wrapper .nominee-card .nominee-title .nominee-name strong {
    font-size: 15px;
}

.nominees-cards-wrapper .nominee-card .nominee-title .industry img {
    display: inline !important;
    margin: 0 10px 0 0;
}

.nominees-cards-wrapper .nominee-card .nominee-title p {
    padding: 0;
}

.nominees-cards-wrapper .nominee-card .nominee-content {
    padding: 10px 0;
}

.nominees-cards-wrapper .nominee-card .nominee-footer {
    display: flex;
    justify-content: space-between;
}

.nominees-cards-wrapper .nominee-card .nominee-footer > div {
    display: flex;
    align-items: center;
}

.nominees-cards-wrapper .nominee-card .nominee-footer img {
    display: inline;
    margin: 0 10px 0 0;
}

.nominees-count {
    padding: 20px 0;
    font-size: 12px;
    text-align: right;
}

.load-more-nominees #load-more-nominees {
    display: block;
    background-color: #315CFF;
    color: #fff;
    padding: 15px 40px;
    margin: 0px auto;
    border: none;
    outline: 0;
    cursor: pointer;
}

.loading-illustration {
    display: none;
    text-align: center;
}

.loading-illustration.show {
    display: block;
}

@media(max-width: 768px) {
    .nominees-cards-wrapper {
        grid-template-columns: 1fr;
    }

    #nominees-filter-form > div {
        display: block;
    }
    
    #nominees-filter-form > div> div {
        margin-top: 10px;
    }

    .parity-subscribe-bg {
        background-size: cover;
    }
}