html.remodal-is-locked {
  overflow: hidden;
  touch-action: none; }

#overlay {
  position: fixed;
  top: 66px;
  z-index: 1002;
  width: 100%;
  background-color: #f0f0f0;
  display: none;
  padding: 28px 0;
  text-align: center;
  margin-left: -10px; }

.icn-humberger {
  position: fixed;
  right: 12px;
  top: 16px;
  width: 30px;
  height: 30px;
  display: none;
  cursor: pointer;
  z-index: 1003;
  box-sizing: border-box;
  padding-top: 10px; }
  @media only screen and (max-width: 769px) {
    .icn-humberger {
      display: block; } }

.icn-humberger span {
  height: 2px;
  display: block;
  position: absolute;
  margin-top: 5px; }

.icn-humberger span {
  transition: all 0.3s;
  transform: rotate(0deg); }
.icn-humberger .bar-top {
  width: 28px;
  transform: translateY(-8px);
  background-color: #8272ff; }
.icn-humberger .bar-middle {
  width: 28px;
  background-color: #db6b36; }
.icn-humberger .bar-bottom {
  width: 28px;
  transform: translateY(8px);
  background-color: #6cb72c; }

.icn-humberger.is-open .bar-top {
  transform: rotate(-50deg) translateY(0px);
  width: 28px;
  margin-left: 0;
  background-color: #db6b36; }
.icn-humberger.is-open .bar-middle {
  background: rgba(255, 255, 255, 0); }
.icn-humberger.is-open .bar-bottom {
  transform: rotate(50deg) translateY(0px);
  width: 28px;
  margin-left: 0;
  background-color: #8272ff; }
