/* device ctrl */
.smp-disp {
  display: none;

  @media screen and (max-width: 767px) {
    display: block;
  }
}

/* modal */
#modal {
  display: none;

  &.is-open {
    display: block;
  }

  .modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .modal__container {
    background-color: #fff;
    padding: 30px;
    margin-right: 5%;
    margin-left: 5%;
    max-width: 760px;
    min-width: 350px;
    max-height: 80vh;
    border-radius: 5px;
    overflow-y: auto;
    box-sizing: border-box;
  }
}
