@import "../Styles/styles.scss";

MapSelectorUI {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  font-weight: bold;
  padding: 20px;
  font-family: $font-secondary;
  color: $text-primary-color;
  justify-content: flex-end;

  &.align_right {
    align-items: flex-end;
  }

&.selected {
  .title {
    color: deepskyblue;
  }
}

.header {
  gap: 50px;
  text-stroke: 12px black;

  .title {
    font-size: 128px;
  }

.rating {
  background-color: rgba(0, 0, 0, 0.8);
  width: 240px;
  height: 140px;
  padding: 20px;
  justify-content: space-between;
  border-radius: 16px;
  flex-direction: column;
  margin-bottom: 15px;

  .rating_title {
    color: $text-primary-color;
    font-size: 32px;
    text-stroke: 8px black;
  }

.stars {
  justify-content: space-between;

  .star {
    font-family: 'Material Icons';
    font-size: 54px;
    text-stroke: 8px black;

    &.grey {
      color: #424242;
    }
}
}
}
}

.players {
  flex-direction: row;
  text-stroke: 8px black;

  .player_count, .player_required {
    font-family: 'Material Icons';
    font-size: 96px;
  }

.player_required {
  color: #424242;
}
}

.countdown {
  font-size: 92px;
  text-stroke: 8px black;
}

.window-prompt {
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.75);
  font-size: 32px;
  text-stroke: 6px black;

  .glyph-icon {
    width: 44px;
    height: 44px;
  }

i {
  font-family: 'Material Icons';
  font-size: 38px;
  color: deepskyblue;
  text-stroke: 6px black;
}

&.voted {
  color: deepskyblue;
}
}
}
