.arx-click-menu {
    background-color: white;
    padding: .5rem 0;
    border: 1px solid rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
    max-width: 400px;
    min-width: 250px;
}

.arx-click-menu .dropdown-item {
    white-space: nowrap;
	max-height: 4rem;
	overflow-y: scroll;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.context-menu-header {
    font-weight: bold;
}

.fasta-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

@media (max-width: 768px), (max-height: 600px) {
    .arx-click-menu > * {
        flex-shrink: 0;
    }

    .arx-click-menu {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        transform: none !important;
        width: 100vw;
        min-width: 0;
        max-height: 80vh;
        margin: 0 auto;
        overflow-y: auto;
        border-radius: .5rem .5rem 0 0;
    }

    .arx-click-menu .dropdown-menu.no-collapse {
        max-height: 60vh;
        overflow-y: auto;
    }
}