novo-dropdown {
    display: block;
    position: relative;
    button {
        position: relative;
        z-index: 0;
    }
    novo-dropdown-container {
        margin-top: 10px;
    }
    &[side=left] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    &[side=right] {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        novo-dropdown-container {
            top: 50px;
            right: 0;
            margin-top: 0;
        }
    }
}

novo-dropdown-container {
    background-color: $white;
    list-style: none;
    line-height: 26px;
    display: none;
    margin: 0;
    margin-bottom: 20px;
    position: absolute;
    padding: 0;
    min-width: 180px;
    z-index: 1000;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    list {
        item {
            cursor: pointer;
            height: 48px;
            width: 100%;
            margin: 0;
            padding: 10px 16px;
            box-sizing: border-box;
            display: flex !important;
            align-items: center;
            justify-content: space-between;
            color: darken($light, 45%);
            white-space: nowrap;
            text-align: left;
            span {
                display: inline-block;
            }
            a {
                color: inherit;
                font-weight: inherit;
                cursor: pointer;
                flex: 1;
                display: flex;
                align-items: center;
                height: 48px;
                &:focus,
                &:visited,
                &:active,
                &:hover {
                    color: inherit;
                    font-weight: inherit;
                }
            }
            i {
                height: 30px !important;
                width: 15px !important;
                border-radius: 0;
                margin: 0 !important;
                color: $positive;
            }
            &:focus,
            &:hover {
                background: lighten($light, 10%);
                color: darken($light, 55%);
            }
            &.active {
                background: lighten($light, 10%);
                color: darken($light, 55%);
            }
            &.disabled {
                color: $light;
                cursor: not-allowed;
            }
        }
        dropdown-item-header {
            color: #9e9e9e;
            font-size: 0.8em;
            flex: 1;
            font-weight: 500;
            text-transform: uppercase;
            padding: 5px 10px;
            display: block;
        }
        hr {
            border: none;
            height: 1px;
            background: $light;
        }
    }
}
