.location-overlay {
  @include breakpoint(medium up) {
    position: relative;
  }
  .overlay {
    position: fixed;
    top: 144px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(37, 39, 41, 0.5);
    @include breakpoint(medium up) {
      top: 74px;
      z-index: 0;
    }
  }

  .content {
    position: fixed;
    top: 144px;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: white;
    width: 75%;
    @include breakpoint(medium up) {
      position: absolute;
      top: 8px;
      left: 12px;
      width: 390px;
      background-color: white;
      padding-top: 16px;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
    }
    .title-bar {
      position: relative;
      .reset-button {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
      }
      span {
        display: inline-block;
        &.show-for-medium {
          display: none;
          @include breakpoint(medium up) {
            display: inline-block;
          }
        }
      }
    }
    .content-padding {
      padding: 15px 0;
      background-color: white;
      @include breakpoint(medium up) {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
        .form-group {
          &:last-child {
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
          }
        }
      }
    }
    input {
      display: none !important;
    }
    .checkbox {
      width: 100%;

      label {
        padding: 12px;
        width: 100%;
        cursor: pointer;
        color: $charcoal;
        font-size: 16px;
        font-weight: 600;
        span {
          line-height: 17px !important;
          vertical-align: middle;
        }
        i {
          color: $mint;
          margin-right: 8px;
          font-size: 26px;
        }
        &:hover {
          background-color: $mint;
          color: white;
          i {
            color: white;
          }
        }
      }
    }

    .submit-button-container {
      margin-top: 12px;
      padding-left: 12px;
      padding-right: 12px;
    }

  }
}
