.popper-container {
  position: relative;
  display: inline-block;

  .popper-options {
    position: absolute;
    top: calc(100% + 10px);

    background-color: $white;
    border-radius: 6px;
    padding: 0;
    z-index: 100;
    box-shadow: $popper-shadow;
    border: 1px solid $light-grey;
    margin-top: 4px;

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

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