.bg__classification-selector {
    position: absolute;
    left: 5px;
    width: calc(100% - 10px);
    top: 5px;
    box-shadow: 0 3px 10px rgba($clDark, 0.8);
    z-index: 900;
    background: white;
    padding: 5px;
    max-height: calc(100% - 10px);
    overflow-x: hidden;
    overflow-y: auto;
    user-select: none;

    .bg__classification-type {
        font-size: 11px;
        padding: 2px 5px;
        cursor: pointer;
        transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        opacity: 1;
        margin-top: 2px;
        margin-bottom: 2px;

        &:hover {
            opacity: 0.8;
            transform: scale(0.95);
        }

        &.active {
            opacity: 0.75;
            transform: scale(0.88);
        }
    }
}
