﻿.tag-chip {
    display: inline-block;
    background: #e0e0e0;
    border-radius: 10px;
    padding: 2px 8px;
    margin: 2px;
    font-size: 12px;
}

.tag-x {
    margin-left: 6px;
    cursor: pointer;
    color: #666;
}

    .tag-x:hover {
        color: #c00;
    }


.phone-scroll-host {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    touch-action: pan-y pinch-zoom;
    overscroll-behavior: contain;
}

    .phone-scroll-host::-webkit-scrollbar,
    .phone-scroll-host *::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
        display: none !important;
        background: transparent !important;
    }

.phone-splitter-grip {
    touch-action: none;
    -ms-touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: ns-resize;
}

[title],
[data-tooltip],
[data-ntd-tooltip],
.tooltip-source {
    cursor: inherit;
}

.tooltip {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2147483000;
    max-width: min(27.5em, calc(100vw - 1.5em));
    padding: .7em .9em;
    border: .08em solid #5f6368;
    border-radius: .45em;
    background: #f5f6f7;
    color: #202428;
    box-shadow: 0 0 0 .08em rgba(255, 255, 255, .75) inset, 0 .75em 2.4em rgba(31, 35, 40, .18), 0 0 1.8em rgba(255, 255, 255, .88);
    font: .75rem/1.45 Arial, sans-serif;
    white-space: pre-line;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, .25em, 0);
    transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
}

.tooltip.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.tooltip-tail {
    position: absolute;
    width: .8em;
    height: .8em;
    background: #f5f6f7;
    border: .08em solid #5f6368;
    transform: rotate(45deg);
    box-shadow: -.15em -.15em .65em rgba(255, 255, 255, .45);
}

.tooltip[data-placement="below"] .tooltip-tail {
    left: var(--tooltip-tail-left, 1.2em);
    top: -.48em;
    border-right: 0;
    border-bottom: 0;
}

.tooltip[data-placement="above"] .tooltip-tail {
    left: var(--tooltip-tail-left, 1.2em);
    bottom: -.48em;
    border-left: 0;
    border-top: 0;
}

.ntd-command-menu-overlay {
    touch-action: none;
    overscroll-behavior: contain;
}

html.ntd-command-menu-open .ntd-shell-scroll,
html.ntd-command-menu-open .phone-scroll-host {
    overflow: hidden !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    touch-action: none !important;
    -webkit-overflow-scrolling: auto !important;
}

.ntd-command-menu-surface {
    overflow: hidden !important;
    touch-action: none;
    overscroll-behavior: contain;
    contain: layout paint;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .26);
}

.ntd-command-menu-scroll {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior: contain;
    overscroll-behavior-y: contain;
}

.ntd-command-menu-row:hover {
    background: rgba(0, 0, 0, .06) !important;
}

.ntd-command-menu-row-disabled:hover {
    background: #fff !important;
}


