﻿.hightlightButtonActive {
    background-color: rgba(255, 237, 0, 0.5) !important;
}

.searchword {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.searchwordMarkiert {
    padding-left: 2px;
    padding-right: 2px;
    border-color: Black;
    border-width: 3px;
    border-style: groove;
}

.search-bgpausch0 {
    background-color: rgba(255, 193, 7, 0.5) !important;
}

.search-bgpausch1 {
    background-color: rgba(13, 202, 240, 0.2) !important;
}

.search-bgpausch2 {
    background-color: rgba(111, 66, 193, 0.2) !important;
}

#debuggoutputWindow {
    font-size: 12px;
    position: absolute;
    z-index: 9000;
    background-color: white;
    border: 1px solid gray;
    left: 10px;
    top: 10px;
    padding: 0;
    margin: 0;
    box-shadow: 10px 10px 15px silver;
    min-width: 230px;
}

#debuggoutput, #debugsieheauch {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 10px;
    margin: 0;
    white-space: normal;
    max-width: 250px;
}

#debugsieheauch {
    font-size: 10px;
}

#closeDebugNProfiling {
    display: block;
    text-align: right;
    cursor: pointer;
}

.debugFormularLink {
    margin: 10px;
    display: block;
    color: darkblue;
}

#debuggoutputTitle {
    display: block;
    text-align: left;
    float: left;
}

#debuggoutputTitleBar {
    padding: 3px;
    margin: 1px 2px 1px 1px;
    background-color: #ffee00;
    border-bottom: lightgray;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

#jump-to-differences {
    cursor: pointer;
}


/* scroll target pulse animate */

:root {
    --scrollPulseColor: lightgrey;
}

.scrollPulse:before {
    position: absolute;
    z-index: -1;
    margin-top: -0.5em;
    margin-left: -0.5em;
    content: "";
    opacity: 0;
    border-color: var(--scrollPulseColor);
    background-color: var(--scrollPulseColor);
    border-width: 0.5em;
    border-style: solid;
    padding: 0.5em;
    border-radius: 50%;
    -webkit-animation: scrollPulse 1s 0.5s forwards 2;
    animation: scrollPulse 1s 0.5s forwards 2;
}


@keyframes scrollPulse {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        opacity: 0.1;
    }

    100% {
        transform: scale(2.25);
        opacity: 0;
    }
}
