.wow-top-leaderboard {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
  background-color: var(--secondary-600-text-light-primary);
}

/*Divisions block*/
.wow-top-leaderboard-div1,
.wow-top-leaderboard-div2,
.wow-top-leaderboard-div3 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
}

/*Header*/
.wow-top-leaderboard-div1 .wow-top-leaderboard-header,
.wow-top-leaderboard-div2 .wow-top-leaderboard-header,
.wow-top-leaderboard-div3 .wow-top-leaderboard-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.wow-top-leaderboard-header .wow-top-leaderboard-title {
  background-color: var(--main-400-main);
  padding: 4px 16px;
  border-radius: 4px;
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-style: normal;
  color: var(--secondary-600-text-light-primary);
}

.wow-top-leaderboard-header .wow-top-leaderboard-icon {
  display: flex;
  background-color: transparent;
  border: 1px solid var(--main-400-main);
  border-radius: 64px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.wow-top-leaderboard-header .wow-top-leaderboard-icon:hover {
  background-color: var(--main-400-main);
}

.wow-top-leaderboard-header .wow-top-leaderboard-icon svg {
  fill: var(--main-400-main);
  width: 32px !important;
  height: 32px !important;
  transition: all 0.3s ease-in-out;
}

.wow-top-leaderboard-header .wow-top-leaderboard-icon:hover svg {
  fill: var(--secondary-600-text-light-primary);
}

@media only screen and (min-width: 1025px) {
  .wow-top-leaderboard-header .wow-top-leaderboard-title {
    font-size: 20px;
    line-height: 1.6em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wow-top-leaderboard-header .wow-top-leaderboard-title {
    font-size: 16px;
    line-height: 1.5em;
  }
}

@media only screen and (max-width: 767px) {
  .wow-top-leaderboard-header .wow-top-leaderboard-title {
    font-size: 16px;
    line-height: 1.5em;
  }
}

/*Body*/
.wow-top-leaderboard-div1 .wow-top-leaderboard-body,
.wow-top-leaderboard-div2 .wow-top-leaderboard-body,
.wow-top-leaderboard-div3 .wow-top-leaderboard-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}

/*Line*/
.wow-top-leaderboard-body .wow-top-leaderboard-line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 8px;
}

.wow-top-leaderboard-body .wow-top-leaderboard-line a {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.wow-top-leaderboard-body .wow-top-leaderboard-line a:hover {
  opacity: 0.7;
}

/*Left*/
.wow-top-leaderboard-line .wow-top-leaderboard-line-left {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
/*Image*/
.wow-top-leaderboard-line-left img {
  width: 56px !important;
  height: 56px !important;
  border-radius: 56px !important;
  object-fit: contain;
  object-position: center;
  background-color: #fff;
}

/*Content*/
.wow-top-leaderboard-line-left .wow-top-leaderboard-line-left-content {
  display: flex;
  flex-direction: column;
  color: var(--support-200-background);
}

.wow-top-leaderboard-line-left
  .wow-top-leaderboard-line-left-content
  .wow-top-leaderboard-line-tite {
  font-family: Plus Jakarta Sans;
  font-weight: 600;
  font-style: normal;
}

.wow-top-leaderboard-line-left
  .wow-top-leaderboard-line-left-content
  .wow-top-leaderboard-line-quickInfo {
  display: flex;
  flex-direction: row;
  width: fit-content;
  gap: 24px;
}

.wow-top-leaderboard-line-left
  .wow-top-leaderboard-line-left-content
  .wow-top-leaderboard-line-quickInfo
  span {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5em;
  color: var(--support-400-main);
}

/*Right*/
.wow-top-leaderboard-line .wow-top-leaderboard-line-right {
  align-self: center;
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-style: normal;
  color: var(--support-200-background);
  width: 48px;
  text-align: center;
}

@media only screen and (min-width: 1025px) {
  /*Left*/
  .wow-top-leaderboard-line-left
    .wow-top-leaderboard-line-left-content
    .wow-top-leaderboard-line-tite {
    font-size: 20px;
    line-height: 1.6em;
  }

  /*Right*/
  .wow-top-leaderboard-line .wow-top-leaderboard-line-right {
    font-size: 20px;
    line-height: 1.6em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /*Left*/
  .wow-top-leaderboard-line-left
    .wow-top-leaderboard-line-left-content
    .wow-top-leaderboard-line-tite {
    font-size: 16px;
    line-height: 1.5em;
  }

  /*Right*/
  .wow-top-leaderboard-line .wow-top-leaderboard-line-right {
    font-size: 16px;
    line-height: 1.5em;
  }
}

@media only screen and (max-width: 767px) {
  /*Left*/
  .wow-top-leaderboard-line-left
    .wow-top-leaderboard-line-left-content
    .wow-top-leaderboard-line-tite {
    font-size: 16px;
    line-height: 1.5em;
  }

  /*Right*/
  .wow-top-leaderboard-line .wow-top-leaderboard-line-right {
    font-size: 16px;
    line-height: 1.5em;
  }
}
