.participant-list {
  padding: 0;
}

.participant-list * {
  user-select: none;
  text-decoration: none;
  color: var(--light-text-color);
  transition: 0.3s;
}

.participant-item {
  list-style: none;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3),
    inset 500px 500px 500px rgba(22, 21, 21, 0.3);

  height: 250px;
  max-width: 650px;
  border-radius: 5px;

  background-size: cover;
  background-repeat: no-repeat;
  position: relative;

  margin: 20px auto;
  padding: 10px 20px 10px 80px;
  transition: 0.3s;
  /* overflow: hidden; */
}

.participant-item:nth-child(1) {
  height: 300px;
  max-width: 750px;
}

/* .participant-item:nth-child(2) {
  height: 320px;
  max-width: 750px;
}

.participant-item:nth-child(3) {
  height: 280px;
  max-width: 700px;
} */

.participant-item:hover {
  cursor: pointer;
  box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.5);

  transform: translateY(-3px);
}

.participant-item .user-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  left: 0;
  top: 0;
}

.par-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
}

.participant-item:hover .par-overlay {
  background-color: rgba(122, 122, 122, 0.1);
}

.participant-item .rank-logo {
  position: absolute;
  left: 0;
  top: 0%;

  transform: translate(-50%, -15%) scale(0.9);
}

.participant-item .ranking { 
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;

}

.participant-item .ranking-number {
  font-size: 150px;
  line-height: 110px;
  font-weight: 700;
  opacity: 0.7;
}

.participant-item .ranking i {
  font-size: 50px;
}

.participant-item .rank-down {
  color: var(--danger)
}

.participant-item .rank-up {
  color: var(--success)
}

.participant-item .user-name {
  font-size: 26px;
  font-weight: 600;
  position: relative;
}

.participant-item .solved,
.participant-item .user-progress {
  font-size: 18px;
  position: relative;
}

.rank-participant-detail {
  text-shadow: 2px 2px #2b2b2b;
}
.rank-participant-detail:hover {
  color: #fff;
  text-decoration: none;
}

.par-overlay:hover{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  animation: blink 2.0s linear infinite;
}
@keyframes blink {
  0% { box-shadow: 0 0 15px 2px #fff; }
  50% { box-shadow: 0 0 15px 2px rgb(172, 168, 168); }
  100% { box-shadow: 0 0 15px 2px #fff; }
}