.judge-list {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}
.judge-list--image-card {
  justify-content: center;
}
@media (min-width: 576px) {
  .judge-list--image-card {
    justify-content: space-between;
  }
}
.judge-list--image-card .judge-list__item {
  border-radius: 0;
  width: 340px;
  height: 450px;
  margin: 40px 0;
  position: relative;
  transition: all 0.3s;
  list-style-type: none;
}
.judge-list--image-card .judge-list__item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.judge-list__item::after {
  content: "";
  display: block;
  position: absolute;
  top: -12px;
  height: calc(100% + 24px);
  width: 87%;
  z-index: 0;
  left: -12px;
  transition: width 0.2s, border-radius 0.2s;
}
.judge-list__item:hover::after {
  width: calc(100% + 24px);
  border-radius: 8px;
}
.judge-list__item--primary::after {
  background-color: #f46246;
}
.judge-list__item--accent::after {
  background-color: #ba5a87;
}
.judge-list__item--dark::after {
  background-color: #172243;
}
.judge-list__item--secondary::after {
  background-color: #172243;
}
.judge-list__item--white::after {
  background-color: #fff;
}
.judge-list__item--accent-3::after {
  background-color: #095d40;
}
.judge-list__item--accent-4::after {
  background-color: #ece5de;
}
.judge-list__item--light-gray::after {
  background-color: #F5F3F5;
}
.judge-list__item--accent-2::after {
  background-color: #ffde21;
}

a.judge-card {
  text-decoration: none;
  color: #fff;
}

.judge-card {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-weight: 400;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 0;
  z-index: 1;
}
.judge-card::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 25%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  transition: opacity 0.3s;
}
.judge-card:hover::after {
  opacity: 1;
}
.judge-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.judge-card__info {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  padding: 15px 0 15px 15px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  transition: all 0.5s;
}
.judge-card__info--with-links {
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .judge-card__info--with-links {
    padding-bottom: 20px;
  }
}
.judge-card__name {
  font-weight: 700;
  font-size: 20px;
  color: #fff !important;
  text-decoration: none;
  position: relative;
}
.judge-card__title {
  font-style: italic;
  font-size: 14px;
}
.judge-card__company {
  font-size: 14px;
}
.judge-card__links {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  transition: transform 0.3s, -webkit-transform 0.3s;
  will-change: transform;
  transform: translateY(0);
  height: 50px;
  align-items: center;
  justify-content: space-evenly;
  font-size: 22px;
  padding: 0 20px;
  background: linear-gradient(0, rgba(0, 0, 0, 0.2), transparent);
}
@media (min-width: 576px) {
  .judge-card__links {
    transform: translateY(100%);
  }
}
.judge-card__links > a {
  color: #fff;
}
@media (min-width: 576px) {
  .judge-card:hover .judge-card__info--with-links {
    padding-bottom: 60px;
  }
}
.judge-card:hover .judge-card__links {
  transform: translateY(0);
}
.judge-card__link {
  position: relative;
  z-index: 1;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: text-shadow 0.3s;
}
.judge-card__link:hover {
  text-shadow: 0 5px 3px rgba(0, 0, 0, 0.4);
}
.judge-card__link::after {
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
.judge-card__link:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

@media (min-width: 992px) {
  .judge-popup {
    top: 60px;
  }
}
.judge-popup__content {
  display: grid;
  align-items: center;
  overflow-y: auto;
}
@media (min-width: 992px) {
  .judge-popup__content {
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .judge-popup__content::-webkit-scrollbar {
    width: 8px;
  }
  .judge-popup__content::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .judge-popup__content::-webkit-scrollbar-thumb {
    background: rgba(23, 34, 67, 0.3);
    border-radius: 3px;
  }
  .judge-popup__content::-webkit-scrollbar-thumb:hover {
    background: #f46246;
  }
}
.scrollbar--primary .judge-popup__content::-webkit-scrollbar-thumb:hover {
  background: #f46246;
}
.scrollbar--accent .judge-popup__content::-webkit-scrollbar-thumb:hover {
  background: #ba5a87;
}
.scrollbar--dark .judge-popup__content::-webkit-scrollbar-thumb:hover {
  background: #172243;
}
.scrollbar--secondary .judge-popup__content::-webkit-scrollbar-thumb:hover {
  background: #172243;
}
.scrollbar--campaign-primary .judge-popup__content::-webkit-scrollbar-thumb:hover {
  background: #ba5a87;
}
.scrollbar--white .judge-popup__content::-webkit-scrollbar-thumb:hover {
  background: #fff;
}
.scrollbar--accent-3 .judge-popup__content::-webkit-scrollbar-thumb:hover {
  background: #095d40;
}
.scrollbar--accent-4 .judge-popup__content::-webkit-scrollbar-thumb:hover {
  background: #ece5de;
}
.scrollbar--light-gray .judge-popup__content::-webkit-scrollbar-thumb:hover {
  background: #F5F3F5;
}
.scrollbar--accent-2 .judge-popup__content::-webkit-scrollbar-thumb:hover {
  background: #ffde21;
}
.scrollbar--campaign-secondary .judge-popup__content::-webkit-scrollbar-thumb:hover {
  background: #172243;
}

/*# sourceMappingURL=judges.css.map */
