@import 'src/assets/variables';

$muncher-input-dropdown-content-color: $primary-color !default;
$muncher-input-dropdown-content-background-color: $secondary-background-color !default;
.muncher-input-drop-down {
  position: relative;

  .muncher-input-drop-down--content {
    width: 100%;
    display: block;
    position: absolute;
    white-space: nowrap;
    background: $muncher-input-dropdown-content-background-color;
    box-shadow: 0 .25rem 1rem 0 rgba(0, 0, 0, 0.2);
    z-index: 10;
    padding: .25rem;
    color: $muncher-input-dropdown-content-color;
    font-size: .8rem;
    overflow: scroll;
    max-height: 10rem;
  }


}