.round_border {
  border-radius: 3px;
}

#debug_stats {
  position: absolute;
  top: 0;
  left: 0;

  color: white;
  font-size: 0.75vw;
  font-family: sans-serif;
  text-shadow: 1px 1px #000000;

  white-space: pre;
}

.skin_select_button {
  display: inline-block;
  width: 40%;
  font-size: 12px;
  margin: auto;
  background-color: rgb(52, 73, 90);

  margin-top: 20px;
}

.player_selected_skins_display {
  position: relative;
  height: 55%;
  width: 55%;
  border-radius: 3px;

  margin: auto;
  margin-top: 10px;
  background-color: rgba(169, 213, 255, 0.555);
}

#player_skin_display {
  position: absolute;
  height: 70%;

  top: 50%;
  left: 60%;
  transform: translateX(-50%) translateY(-50%);

}

#player_gun_display {
  position: absolute;
  width: 60%;

  top: 55%;
  left: 45%;
  transform: translateX(-50%) translateY(-50%);
}

#leaderboard_container {
  position: absolute;
  top: 3%;
  right: 3%;
  width: 10vw;
  height: 4vw;

  background-color: rgba(0, 0, 0, 0.5);

  pointer-events: none;
}

#player_alive_count_text {
  position: absolute;
  color: white;
  text-align: center;
  font-size: 1.5vw;

  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.ui_indicator {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
}

.sound_volume_selector_container {
  position: absolute;
  left: 110%;

  width: 12vw;
  height: 2vw;
}

.sound_volume_selector_container.music {
  top: 20%;
  z-index: 1;
}

.sound_volume_selector_container input {
  display: none;
}

.sound_volume_selector_container:hover input {
  display: inline;
}

.volume_selector_image {
  position: relative;
  width: 2vw;
  height: 2vw;

  border: none !important;
}

.volume_slider {
  width: 8vw;
  height: 2vw;
  margin: 0;
  padding: 0;
  border-radius: 0;
  transition: none;

  border: none !important;
}

#minimap_area_container {
  position: absolute;
  top: 3%;
  left: 3%;

  width: 12vw;
  height: 12vw;

  border: 3px solid rgba(0, 0, 0, 0.0);
  border-radius: 3px;

  background-color: rgba(0, 0, 0, 0.6);

}

#minimap_container {
  position: absolute;

  width: 12vw;
  height: 12vw;
  overflow: hidden;

  image-rendering: auto;                 
}

#minimap_zoom {
  position: absolute; 
  width: 200%;
  height: 200%;
  margin: 0;
  top: 0; 
  left: 0; 
}

#minimap_image {
  position: absolute; 
  width: 100%;
  top: 0; 
  left: 0; 
  margin: auto;
}

.minimap_circle {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  stroke: white;
  stroke-width: 1.25;
  fill: rgba(0, 0, 255, 0);
  fill-opacity: 0;
}

.minimap_circle_red {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#player_map_icon {
  position: absolute;
  width: 1.25vw;
  height: 1.5vw;
  transform: translate(-50%, -50%); 

}

#health_bar {
  position: absolute;
  width: 50%;
  height: 60%;
  left: 3%;

  top: 50%;
  transform: translateY(-50%);

  background-color: rgb(255, 255, 255);
}

#health_indicator_container {
  position: absolute;
  bottom: 3%;
  left: 50%;

  width: 24vw;
  height: 2.5vw;

  transform: translateX(-50%);
  overflow: hidden;

  pointer-events: none;
}

#health_indicator_text {
  position: relative;
  font-size: 1.5vw;
  color: white;
  text-align: center;

  top: 50%;
  transform: translateY(-50%);
}

#health_image {
  position: relative;
  top: 50%;
  float: left;
  margin-left: 10%;
  width: 2vw;
  height: 2vw;
  transform: translateY(-50%);
}

#ammo_indicator {
  bottom: 9%;
  left: 50%;

  width: 10vw;
  height: 2.5vw;

  transform: translateX(-50%);

  pointer-events: none;
}

#ammo_indicator_text {
  position: relative;
  font-size: 1.25vw;
  color: white;
  text-align: left;
  margin-left: 10%;

  white-space: pre;

  top: 50%;
  transform: translateY(-50%);
}

#ammo_indicator_image {
  position: relative;
  top: 50%;
  float: right;
  margin-right: 7%;
  width: 1.25vw;
  height: 1.25vw;
  transform: translateY(-50%);
}

.item_button {
  position: relative;
  float: right;

  pointer-events: auto;   

  margin: 2%;
  border: none;
  background: transparent;
  color: #FFFFFF;
  width: 5vw;
  height: 3vw;
  cursor: pointer;
  text-align: left;

  -webkit-filter: grayscale(20%); /* Chrome, Safari, Opera */
  filter: grayscale(20%);
  background-color: rgba(0, 0, 0, 0.4);

}

.item_button:hover {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-filter: grayscale(10%); /* Chrome, Safari, Opera */
  filter: grayscale(10%);
}

.item_button_text {
  text-align: left;
  position: relative;
  float: left;
  left: 10%;
  top: 50%;
  font-size: 1vw;
  transform: translateY(-50%);
}

.item_button_image {
  position: absolute;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  width: 40%;

  left: 70%;

  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.weapon_button_image {
  position: absolute;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 70%;
  width: auto;

  left: 50%;

  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.weapon_button {
  position: relative;
  float: right;

  pointer-events: auto;   

  padding: 5px 5px;
  margin: 2%;
  border: none;
  background: transparent;
  color: #FFFFFF;
  width: 8vw;
  height: 3.25vw;
  cursor: pointer;
  text-align: right;
  font-size: 1vw;

  background-color: rgba(0, 0, 0, 0.4);

  -webkit-filter: grayscale(60%); /* Chrome, Safari, Opera */
  filter: grayscale(60%);

  opacity: 0.5;
}

.hovered {
  opacity: 1.0;
}

.weapon_button:hover,
.weapon_button.hovered {
  background-color: rgba(0, 0, 0, 0.5);

  -webkit-filter: grayscale(20%); /* Chrome, Safari, Opera */
  filter: grayscale(20%);
}
