.modal-scroll-lock {
  overflow: hidden;
}
aside.modal-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: -webkit-fill-available;
  width: -moz-available;
  height: -webkit-fill-available;
  height: -moz-available;
  z-index: 10;
  transform: translateZ(0);
  background-color: rgba(37, 43, 52, 0.5);
  .modal-area {
    position: fixed;
    background-color: #fff;
    top: 50%;
    left: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    width: 50%;
    min-height: 70%;
    max-height: calc(100% - 15em);
    overflow: hidden;
    > * {
      position: absolute;
      width: -webkit-fill-available;
      width: -moz-available;
    }
    .modal-header {
      display: flex;
      align-items: center;
      .close-button {
        margin-left: 24px;
        background-color: inherit;
        padding: 0;
        border: 0;
        cursor: pointer;
      }
      .modal-header-title {
        overflow: hidden;
        margin: 20px;
        font-weight: 500;
        font-size: 18px;
        color: #05053d;
        line-height: 24px;
        max-height: 50px;
      }
    }
    .modal-body {
      margin: 0px;
      top: 80px;
      max-height: 87%;
      overflow-y: auto;
    }
    .modal-footer {
      background-color: #f5f5f5;
      height: 30px;
      color: #101010;
      font-style: normal;
      font-weight: 500;
      font-size: 16px;
      text-align: center;
      padding: 5px 30px;
      bottom: 0;
      width: -webkit-fill-available;
      width: -moz-available;
    }
  }
}
@media screen and (max-width: 783px) {
  aside.modal-cover {
    .modal-area {
      min-width: 100%;
      min-height: 100%;
      width: 100%;
      height: 100%;
      max-width: 100%;
      max-height: 100%;
      top: 0;
      left: 0;
      transform: translate(0, 0);
      .modal-body {
        margin: 2%;
        top: 80px;
        overflow-y: auto;
      }
      .modal-footer {
        font-weight: 400;
        font-size: 14px;
        padding: 16px 30px;
        width: -webkit-fill-available;
        width: -moz-available;
        bottom: 0;
        height: 2%;
      }
    }
  }
}
