/* 
###
BACKSTAGE 5.1 CSS > SEARCH OVERLAY
###
*/
#search {
    box-sizing: border-box;
    padding: 15px 20px;
    overflow-y: auto;
    display: block;
    z-index: 9;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: var(--background);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 30px 30px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform 600ms cubic-bezier(0.76, 0, 0.24, 1);    
}
#search.active {
    transform: translateX(0);
}
#search input {
    display: block;
    width: calc(100%);
    box-sizing: border-box;
    font-size: inherit;
    font-family: inherit;
    border: 0;
    appearance: none;
    background: var(--accents);
    padding: 10px 15px;
    margin-bottom: 15px;
}
#search ul.list {
    line-height: 1.5;
}
#search ul.list li {
    border-bottom: 1px solid #ddd;
}
#search ul.list li a {
    display: block;
    padding: 18px 0;
    color: var(--main);
}
#search ul.list li a:hover {
    color: var(--primarycta);
}
#search ul.list li strong {
    display: block;
    color: #32aaa1;
}
#search ul.list li span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}