.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow-y: scroll;
  .modal-background {
    display: none;
    @include breakpoint(br-768 up) {
      display: block;
    }
    background-color: rgba(37, 39, 41, 0.8);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3290px;
    z-index: 2;
  }
  .modal-body {
    background-color: white;
    color: $charcoal;
    border-radius: 16px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 24px 32px;
    @include breakpoint(br-768 up) {
      width: 768px;
      padding: 59px 86px;
      right: unset;
      left: 50%;
      transform: translateX(-50%);
    }
    .modal-close {
      position: absolute;
      top: 30px;
      right: 30px;
      svg {
        color: $charcoal;
        width: 20px;
        height: 20px;
      }
    }
    .activity-item {
      display: block;
      color: $mint;
      font-size: 13px;
      text-align: left;
      line-height: normal;
      &:not(:last-child) {
        margin-bottom: 16px;
      }
    }
    .activity-heading {
      font-size: 24px;
      font-weight: bold;
      color: $charcoal;
      font-family: RT-Raleway;
    }
    .modal-title {
      font-size: 21px;
      line-height: 27px;
      @include breakpoint(br-768 up) {
        font-size: 34px;
        line-height: 41px;
      }
      color: $charcoal;
      font-weight: bold;
      margin-bottom: 8px;
      font-family: RT-Raleway;
    }
    .modal-subtitle {
      font-size: 16px;
      line-height: 21px;
      @include breakpoint(br-768 up) {
        font-size: 28px;
        line-height: 34px;
      }
      font-weight: 600;
      color: $light-grey;
      margin-bottom: 50px;
      font-family: RT-Raleway;
    }
  }
}