
.blinking-cursor {
    position: absolute;
    /*font-weight: bolder;*/
    display: inline-block;
    margin-top: auto;
    /*margin-right: -2px;*/
    margin-left: -2px;
    /*border-left: #2E3D48 dotted;*/
    color: black;
}

[data-bs-theme=dark] .blinking-cursor {
    color: white;
}

.blinking-cursor-loop {
    -webkit-animation: 1.06s blink step-end infinite;
    -moz-animation: 1.06s blink step-end infinite;
    -ms-animation: 1.06s blink step-end infinite;
    -o-animation: 1.06s blink step-end infinite;
    animation: 1.06s blink step-end infinite;

    user-select: none;
}

[contenteditable] {
  outline: 0px solid transparent;
}

@keyframes blink {
    from, to {
        color: default;
    }
    50% {
        color: transparent;
    }
}

@-moz-keyframes blink {
    from, to {
        color: black;
    }
    50% {
        color: transparent;
    }
}

@-webkit-keyframes blink {
    from, to {
        color: black;
    }
    50% {
        color: transparent;
    }
}

@-ms-keyframes blink {
    from, to {
        color: black;
    }
    50% {
        color: transparent;
    }
}

@-o-keyframes blink {
    from, to {
        color: black;
    }
    50% {
        color: transparent;
    }
}

td.help_header {
    font-weight: bold;
    font-size: larger;
    padding-top: 1pt;
    padding-bottom: 1pt;
    border-top: black double;
    border-bottom: black thin solid;
    margin-top: 4pt;
}

._image {
    display: block;
}

.cursor-pointer {
    cursor: pointer;
}

.table-active {
    position: relative;
}

.table-data-row > td > .btn-delete-row {
    opacity: 0;
}

.table-data-row:hover > td > .btn-delete-row {
    opacity: 1;
}

.table-header {
    position: relative;
    padding-right: 30px;
}

.table-header-col .btn-delete-col {
    opacity: 0;
}

.table-header-col:hover .btn-delete-col {
    opacity: 1;
}

.btn-delete-col {
    position: absolute;
    top: 0;
    right: 0;
}

.frame-left {
    float: left;
}

.dropdown-item { cursor: pointer; }

.search-highlight {
    z-index: 0;
    background: #FFFF54;
}

.search-active {
    background: #F29B4A !important;
}

.mark-common {
    z-index: 0;
    position: absolute;
}

.mark-search {
    background: #bee594;
    border-radius: 2px;
}

[data-bs-theme=dark] .mark-search {
    background: #2b4136;
}

.mark-search-active {
    background: #91d44a !important;
    animation: pop 0.3s linear 1;
}

[data-bs-theme=dark] .mark-search-active {
    background: #395a35 !important;
}

@keyframes pop{
  50%  {transform: scale(1.2);}
}

.mark-spellchecker {
    border-bottom: 2px dotted #CB2B1D;
}

.mark-spellchecker-excluded {
    border: none;
}

.table-header-col {
    background: transparent !important;
}

.spell-button:hover {
    background: #f8f9fa;
}