body, html { 
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
}
canvas { width: 100%; height: 100%; }

.character-ui {
  position: absolute;
  color: white;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.character-ui .icon-wrapper {
  width: 36px;
  height: 36px;
  overflow: hidden;
  margin-bottom: 12px;
  align-self: center;
  display: none;
}

.character-ui.call .icon-wrapper {
  display: flex;
}

.character-ui section {
  background-color: burlywood;
  width: 36px;
  height: 36px;
  position: absolute;
  border-radius: 50%;
  align-self: center;
}

.character-ui label {    
  top: 48px;
  max-width: 120px;
  text-align: center;
  background-color: #00000022;
  padding-left: 6px;
  padding-right: 6px;
}

.character-ui .meter {
  background-color: #ffffff3d;
  transition: transform 200ms;
}

.standText {
  position: absolute;
}

.hidden {
  display: none;
}

.icon {
  width: 35px;
  height: 35px;
  padding: 12px;

  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000AA;
  border-radius: 70px;
  margin-left: 12px;

  background: rgb(236,56,13);
  background: linear-gradient(104deg, rgba(236,56,13,1) 0%, rgba(255,200,2,1) 100%);

  position: absolute;
}

#crosshair {
  position: absolute;

  width: 10px;
  height: 10px;

  left: 50vw;
  margin-left: -5px;

  top: 50vh;
  margin-top: -5px;

  background-color: transparent;
  border: solid 2px white;
  border-radius: 50%;

}

.uiOVerlayText {
  position: absolute;
  color: white;
  background-color: #00000022;
  padding-left: 6px;
  padding-right: 6px;
}