﻿/* ReSharper disable Html.AttributeNotResolved */
/* ReSharper disable RequiresFallbackColor */


.annotation-editor {
    width: 337px;
    background: #283040;
    box-shadow: 0 2px 14px -4px #283040;
    border-radius: 4px;
    padding: 15px 16px 16px 16px;
    display: flex;
    flex-direction: column;
}

    .annotation-editor .tageditor {
        background: #181D27;
    }

    .annotation-editor .annotation-editor-btn {
        border-radius: 4px;
        border: 1px solid #FFFFFF;
    }

        .annotation-editor .annotation-editor-btn:hover {
            color: white !important;
        }


    .annotation-editor .annotation-editor-input {
        border-radius: 4px;
        border: none;
        height: 32px;
        background: #181D27;
        color: #ffffff;
        padding: 0 50px 0 6px;
        outline: none;
        width: 100%;
    }

        .annotation-editor .annotation-editor-input:focus {
            box-shadow: 0 0 4px 0 #409AFF;
        }


        .annotation-editor .annotation-editor-input::-webkit-input-placeholder {
            color: rgba(255, 255, 255, 0.38) !important;
            font-size: unset !important;
            margin-right: 6px;
        }

    .annotation-editor .dropdown-menu {
        top: 100%;
        left: 0;
        position: absolute;
    }


    .annotation-editor .tagview {
        color: white;
        height: 24px;
        font-size: 12px;
    }

        .annotation-editor .tagview:hover {
            cursor: pointer;
        }

            .annotation-editor .tagview:hover .tagview-bg {
                border-color: rgba(var(--tag-color-rgb));
            }

            .annotation-editor .tagview:hover .tagview-remove {
                visibility: visible;
            }

            .annotation-editor .tagview:hover .tagview-inner {
                filter: blur(2px);
            }


    .annotation-editor .tagview-inner {
        max-width: 200px;
    }

    .annotation-editor .tagview-bg {
        left: 0;
        top: 0;
        border-radius: 16px;
        border-style: solid;
        border-width: 1px;
        background: #171C27;
        border-color: rgba(var(--tag-color-rgb),0.5);
    }

    .annotation-editor .tagview-highlight-bg {
        left: 0;
        top: 0;
        border-radius: 16px;
        border-style: solid;
        border-width: 1px;
        background: rgba(var(--tag-color-rgb));
        border-color: rgba(var(--tag-color-rgb));
    }



    .annotation-editor .tagview-remove {
        left: 0;
        top: 0;
        visibility: collapse;
    }


    .annotation-editor .tageditor-dropdownitem-new {
        background: var(--hover);
    }


    .annotation-editor .tageditor-dropdownitem[isSelected] {
        background: var(--hover);
    }


    .annotation-editor .tageditor-dropdownmenu {
        /*background: var(--card-bg);*/
    }


    .annotation-editor .annotation-dropdown-btn {
        box-shadow: 0 2px 14px -4px rgb(0 0 0 / 50%);
        border-radius: 4px;
        width: 90px;
        background: #181D27;
        height: 100%;
    }

        .annotation-editor .annotation-dropdown-btn:hover {
            box-shadow: 0 0 4px 0 #409AFF;
        }

        .annotation-editor .annotation-dropdown-btn:active {
            box-shadow: 0 0 4px 0 #409AFF !important;
        }

        .annotation-editor .annotation-dropdown-btn:focus {
            box-shadow: 0 0 4px 0 #409AFF;
        }


    .annotation-editor .annotation-label {
        white-space: nowrap;
        font-size: 12px;
    }

    .annotation-editor .annotation-word-count {
        position: absolute;
        right: 8px;
        top: 10px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.38);
        line-height: 12px;
    }


    .annotation-editor .btn mdi {
        height: 20px;
        width: 20px;
        font-size: 20px;
    }


    .annotation-editor .dropdown-menu {
        background: #171c27;
    }


    .annotation-editor .tageditor-dropdownmenu {
        margin-top: 1px;
    }
