@import '~riotclient-lol-asset-csslib/styles/color-palette';
@import '~riotclient-lol-asset-csslib/styles/colors';
@import '~riotclient-lol-asset-csslib/styles/typekit';

.prompted-voting-player-component {
  position: relative;
  background-color: transparent;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: table-cell;
  opacity: 0.999;
  transition: opacity 0.2s ease-in;
}

.prompted-voting-player-component.dimmed {
  transition: opacity 0.2s linear;
  opacity: 0.8;
}

.prompted-voting-player-component.active {
  transition: opacity 0s ease;
  opacity: 1;
}

.prompted-voting-player-dimmer {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 67%, rgba(0, 0, 0, 0.33))
}

.prompted-voting-candidate-profile-icon-container {
  height: 56px;
  width: 56px;
  position: absolute;
  top: -35px
  right: 0;
  left: 0;
  margin: 0 auto;
  background: linear-gradient(to bottom, $color_palette_gold4, $color_palette_gold5)
  border-radius: 50%;
  box-shadow: 0 0 4px #000;
  display: none;
}

.prompted-voting-candidate-profile-icon {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .75);
}

.prompted-voting-candidate-name {
  @extend $typekit_h4_preserve_case;
  position: absolute;
  bottom: 65px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  pointer-events: none;
}

.prompted-voting-candidate-club {
  position: absolute;
  bottom: 43px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  pointer-events: none;
}

.prompted-voting-candidate-club-mark {
  position: absolute;
  height: 10px;
  width: 58px;
  bottom: 29px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  pointer-events: none;
}

.prompted-voting-selection-video {
  position: absolute;
  top: -99px;
  left: -190px;
}

.prompted-voting-selection-video.stretch3 {
  left: -136px;
  transform: scaleX(1.33334);
}

.prompted-voting-selection-video.stretch2 {
  left: -31px;
  transform: scaleX(2);
}

.prompted-voting-selection-video.stretch1 {
  left: 288px;
  transform: scaleX(4);
}

.prompted-voting-candidate-overlay {
  background-color: black;
  opacity: 0.0001;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease-in;
}

.prompted-voting-candidate-overlay.dimmed {
  transition: opacity 0.2s;
  opacity: 0.45;
}

.prompted-voting-candidate-overlay.active {
  transition: opacity 0s;
  opacity: 0;
}

.prompted-voting-candidate-overlay.rejected {
  transition: opacity 1s;
  opacity: 0.75;
}