/* Box sizing */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

body {
  background-color: #000;
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
  overflow: hidden;
}

.eosTopBody {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.eosIframe {
  flex: 1;
  border: 0;
}

.eosRatingDialog {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.eosRatingDialog > div {
  position: relative;
  background-color: #c14a48;
  display: flex;
  flex-direction: column;
  width: 250px;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.eosRatingDialog > div > .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 24px;
  border-radius: 4px;
  opacity: 0.5;
}

.eosRatingDialog > div > .close:hover {
  opacity: 1;
}

.eosRatingDialog > div > .message {
  color: white;
  text-align: center;
  margin: 0;
}

.eosRatingDialog > div > .stars {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  margin-top: 12px;
}

.eosRatingDialog > div > .stars:hover > .star > polygon {
  fill: #ffd055 !important;
}

.eosRatingDialog > div > .stars > .star {
  float: left;
}

.eosRatingDialog > div > .stars > .star {
  fill: rgba(255, 255, 255, 0.3);
}

.eosRatingDialog > div > .stars > .star:hover ~ .star polygon {
  fill: rgba(255, 255, 255, 0.3) !important;
}

@media all and (max-width: 700px) {
  body {
    font-size: 80%;
  }
}

@media all and (max-width: 500px) {
  body {
    font-size: 60%;
  }
}
