html {
  font-size: 16px;
}
@media (max-width: 330px) {
  html {
    font-size: 13px;
  }
}
@media (min-width: 550px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 620px) {
  html {
    font-size: 24px;
  }
}
@media (min-width: 760px) {
  html {
    font-size: 28px;
  }
}

body {
  margin: 0px;
  overflow-x: hidden;
}

.no-event {
  pointer-events: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0px;
  border-style: none;
}

.abs {
  position: absolute;
}

.fixed {
  position: fixed;
}

.transparent {
  opacity: 0;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.with-interactive-effect {
  transition: ease-out 0.3s;
  cursor: pointer;
}
.with-interactive-effect.hover {
  transform: scale(1.05, 1.05) !important;
  -webkit-transform: scale(1.05, 1.05) !important;
  -moz-transform: scale(1.05, 1.05) !important;
  -ms-transform: scale(1.05, 1.05) !important;
}
.with-interactive-effect:active {
  transform: translate(1px, 1px) !important;
  -webkit-transform: translate(1px, 1px) !important;
  -moz-transform: translate(1px, 1px) !important;
  -ms-transform: translate(1px, 1px) !important;
}
#landscape, #desktop {
  text-align: center;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
}

.mask-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
}/*# sourceMappingURL=common.css.map */