.export-button-container {
  .popper-options {
    border: none !important;
  }

  .export-button-options {
    min-width: 240px;
    background-color: $white;
    border-radius: 6px;
    padding: 0;
    z-index: 300;
    box-shadow: $select-shadow;
    border: 1px solid $light-grey;
    margin-top: 4px;

    & > div {
      border-bottom: 1px solid $light-grey;

      &:last-child {
        border-bottom: 0;
      }
    }

    &__title {
      padding: 16px;
    }

    li {
      padding: 8px 16px;
      color: $black;
      cursor: pointer;
      transition: all ease-in-out 0.3s;
      white-space: nowrap;
      @include display-flex(initial, center);
      font-size: 14px;
      line-height: 24px;
      letter-spacing: -0.01px;

      &:hover,
      &.active {
        background-color: $light;
      }

      &:last-child {
        margin-bottom: 8px;
      }
    }

    &__footer {
      @include display-flex(flex-end, center);
      padding: 16px;
    }
  }
}
