@import "../variables";
@import "~cosmoUiVariables";
@import "../mixins/paddings";

.container {
    @include padding-x(0);
    list-style: none;
    //height: 200px;
    z-index: 2;
}

.item {
    cursor: pointer;
    @include padding-x($padding-xs);
    @include padding-y($padding-sm);
    &:hover {
        background-color: $gray-light;
    }
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
