.footer{
  position: relative;
  display: block;
  border-top: 2px solid $light-mint;
  border-bottom: 4px solid $mint;
  padding: 1.85714em 0 0 0;
  @include breakpoint(medium up) {
    padding: (32em / 14) 0 0 0;
  }
  line-height: 1.1;
  background-color: white;
  //background-image: url("/images/footer-watermark.svg");
  background-repeat: no-repeat;
  background-position: 83% 100%;
  background-size: auto;
  .grid-container{
    padding: 0 2em 2.5em 2em ;
  }
  .copyright{
    font-size: 13px;
    font-weight: 600;
    color: $grey;
    text-align: center;
    @include breakpoint(large up) {
      text-align: right;
    }
  }

  .show-footer-button {
    position: fixed;
    right: 16px;
    bottom: 8px;
    @include breakpoint(large up) {
      left: unset;
      right: 62px;
    }
    &:hover {
      background-color: $off-white;
    }
    &.mint {
      i {
        color: $dark-mint;
      }
      &:hover {
        background-color: $dark-mint;
      }
    }
  }

  &.footer-off-canvas {
    position: fixed;
    bottom: -533px;
    overflow-y: scroll;
    max-height: 500px;
    width: 100%;
    transition: bottom 0.4s ease;
    z-index: 100;
    .show-footer-button {
      display: none;
    }
    @include breakpoint(large up) {
      bottom: -355px;
      max-height: unset;
      overflow-y: unset;
      .show-footer-button {
        display: block;
        width: unset;
      }
    }

    &.visible {
      bottom: 0;
      .show-footer-button {
        display: block;
        position: unset;
        width: 100%;
        margin-top: 16px;
        @include breakpoint(large up) {
          float: right;
          width: unset;
        }
        @include breakpoint(xxxlarge up) {
          position: fixed;
        }
      }
    }
  }
}
.footer-links{
  margin-top: 36px;
  h4{
    color: $mint;
    font-size: 16px;
  }
}
.filmspace-listing-detail-page {
  .show-footer-button {
    display: none;
    @include breakpoint(br-768 up){
      display: block;
    }
  }
}

.show-footer-button {
  z-index: 49;
  position: relative;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  @include breakpoint(medium up) {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: unset;
  }
  @include breakpoint(large up) {
    display: none;
  }
}
.footer-nav-link{
  list-style: none;
  margin: 0;
  li{
    a, span{
      color: black;
      line-height: 2.31;
      font-weight: 700;
      font-size: 13px;
      &.disabled{
        color: $light-grey;
      }
    }
  }
}
.footer-social-media {
  text-align: right;
  @include breakpoint(medium down){
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  a{
    margin: 0 9px 9px 0;
  }
  span{
      font-size: 28px;
  }
  h4{
    color: black;
  }
  .facebook{
    color: $facebook-blue;
    margin-right: (10em / 28);
  }
  .twitter{
    color: #55acee;
    margin-right: (10em / 28);
  }
  .instagram{
    color: #ef4955;
    margin-right: (10em / 28);
  }
  .linkedin{
    color: #0077b5;
  }
}
.hide-for-large-down {
  display: none;
  @include breakpoint(large up) {
    display: block;
  }
}
.footer-accordion-tab {
  @include breakpoint(br-768 down) {
    background-color: $mint;
    border-radius: 4px;
    padding: 16px 20px 15px 20px;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 8px;
    &.open {
      margin-bottom: 0;
      background-color: $charcoal;
      .expand-accordion {
        .expand-icon {
          color: $dark-mint;
        }
      }

      & ~ .footer-nav-link {
        background-color: $off-white;
        margin-bottom: 8px;
        li {
          padding: 16px 15px 16px 48px;
          position: relative;
          display: block;
          border-bottom: 1px solid white;
          a {
            color: $dark-mint;
            font-size: 16px;
            line-height: 19px;
            font-weight: bold;
          }
          .footer-icon {
            position: absolute;
            left: 20px;
            top: 15px;
            color: $honey;
          }
        }
      }

    }
    .expand-accordion {
      color: white;
      font-size: 16px;
      line-height: 19px;
      font-weight: bold;
      width: 100%;
      text-align: left;
      position: relative;
      &:focus {
        outline: none;
      }
      .expand-icon {
        position: absolute;
        right: 0;
        top: 0;
        height: 20px;
        width: 20px;
      }
    }
  }
}