/* modal */
.js-popup {
    cursor: pointer;
}
.c5-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 101;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.c5-modal-inner {
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.c5-modal-content {
  max-height: 700px;
  max-width: 100%;
  vertical-align: bottom;
}
.c5-modal-close {
  position: absolute;
  top: -50px;
  right: 20px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}
.c5-link {
  text-decoration: underline;
  &:visited {
    text-decoration: underline;
  }
  &:hover {
    text-decoration: none;
  }
}