﻿.popout-list {
    display: block;
    position: relative;
}

.popout-list__content {
    position: absolute;
    display: none;
    background: #fff;
    z-index: 11;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    overflow: hidden;
    right: 0;
    top: 100%;
}

    .popout-list__content > ul {
        list-style: none;
    }

        .popout-list__content > ul > li.popout-list__divider {
            height: 0.5em;
            background: #eee;
        }

        .popout-list__content > ul > li > a {
            white-space: nowrap;
            padding: 10px;
            display: block;
            text-decoration: none;
            color: #222;
        }

.popout-list.active > .popout-list__content {
    display: block;
}

a.popout-list__toggle {
    user-select: none;
    cursor: pointer;
}

.popout-list__content > ul > li > a:hover {
    background: #eee;
}

.popout-list__abyss {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}

.popout-list.active .popout-list__abyss {
    display: block;
}
