#unsupported-box {
  display: none;
  font-size: 16px;
}
#unsupported-box:last-child {
  margin-bottom: 0;
}
#unsupported-overlay,
#unsupported-modal {
  display: block;
  position: absolute;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #181818;
  color: white;
}
#unsupported-overlay {
  top: 0;
  bottom: 0;
  opacity: 0.7;
}
#unsupported-modal {
  top: 80px;
  margin: auto;
  width: 90%;
  max-width: 320px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px #000;
  text-align: left;
  overflow-y: auto;
  border: solid 7px #ffff33;
}
#unsupported-icon {
  font-size: 28px;
  padding-bottom: 20px;
}
#unsupported-title {
  font-size: 18px;
  padding-bottom: 20px;
}
@media (max-width: 380px) {
  #unsupported-modal {
    position: absolute;
    top: 5px;
    width: initial;
    margin: 5px;
  }
}
