.highlighted {
    background-color: #ffff78;
}

.founded {
    font-weight: bold;
    background-color: #ffff78;
}
mark.active {
    background-color: #ff9632;
}




/** Search form activator **/
.finder-activator {
    position: fixed;
    bottom: 2em;
    right: 2em;
    border-radius: 100px;
    border: none;
    /* opacity: .6; */
    transition: all ease 240ms;
    width: 68px;
    height: 68px;
    overflow: hidden;
    text-align: center;
    background-color: #749fc5;
    box-shadow: 4px 2px 6px rgba(0,0,0,.4);
    cursor: pointer;
    z-index: 200;
}
.finder-activator:hover {
    opacity: 1;
    box-shadow: 4px 2px 12px rgba(0,0,0,.6);
}


.finder-activator span {
    display: none;
    opacity: 0;
}













/** Search form **/
#search-js-form {
    position: sticky;
    display: flex;
    top: 0;
    padding: .6em;
    padding-right: 60px;
    background-color: #97bedd;
    border-bottom: #749fc5 solid 4px;
    font-family: sans-serif;
    z-index: 1;
}


#search-js-form #term {
    border-radius: 4px 0 0 4px;
    border: solid 1px transparent;
    border-right-width: 0;
    padding: 6px;
    width: 100%;
    min-width: 180px;
}


#search-js-form #search-js-submit {
    border-radius: 0 4px 4px 0;
    border: solid 1px transparent;
    height: 42px;
    /* padding: 0 1em;  */
    display: none;
}

.search-js-submit-ico {
    width: 38px;
    padding: 8px;
    display: block;
    background: #749fc5;
    height: 100%;
    color: white;
    border-radius: 0 4px 4px 0;
}

.search-area {
    display: flex;
    flex-wrap: wrap;
    width: 85%;
}
.search-form {
    display: flex;
    width: 100%;
}

#results-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 12px;
}


@media screen and (min-width: 599px) {
    .search-form {
        width: calc(50% - 18px);
    }
    #results-navigation {
        width: 50%;
        margin-top: 0;
    }
}





.switch-result {
    border-color: transparent;
    /* background-color: transparent;  */
    background-color: #749fc5;
    color: #fff;
    border-radius: 4px;
    margin-left: 6px;
    padding: 6px;
}
.switch-result:active {
    background-color: #c9e7ff;
}

.switch-result svg {
    /* width: 36px;
    height: 36px; */
}









#search-js-scroll-overview {
    position: fixed;
    height: 100vh;
    width: 60px;
    right: 0;
    bottom: 0;
    background-color: #00000014;
    cursor: pointer;
    z-index: 1;
}

#search-js-scroll-overview #cursor {
    width: 100%;
    height: 0vh;
    background-color: #ff963291;
    position: absolute;
    top: 0;
    transition: all ease 120ms;
    border-radius: 4px;
}
#search-js-scroll-overview .scrollbar-point {
    position: absolute;
    top: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background-color: #ffff78;
    border-radius: 100px;
}






#close-search-form-button {
    border-radius: 120px;
    border-radius: 120px;
    border: none;
    background-color: #404040;
    color: #fff;
    width: 42px;
    height: 42px;
    text-align: center;
    cursor: pointer;
    margin-left: auto;
    margin-right: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}
