    .loading-bar {
        height: 4px;
        width: 100%;
        --c:no-repeat linear-gradient(#D8214E 0 0);
        background: var(--c),var(--c),#EEBDC9;
        background-size: 60% 100%;
        animation: l16 3s infinite;
        }
        @keyframes l16 {
        0%   {background-position:-150% 0,-150% 0}
        66%  {background-position: 250% 0,-150% 0}
        100% {background-position: 250% 0, 250% 0}
    }




    .loading-circle {
        border: 4px solid #f3f3f3;
        border-top: 3px solid #D8214E;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        animation: spin 1s linear infinite;
        display: inline-block;
        /*margin-left: 10px;*/
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

/**** */


.stage {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* position: relative; */
    /*padding: 32px 0;*/
    /* margin: 0 2%; */
    /*overflow: hidden;*/
}



/**************** */

    /* div {
        padding: 5px;
        text-align: center;
    } */

    .no-results {        
        color: red;
        display: block;
        background-color: #ffffff;
        padding: 25px;
        border-radius: 10px;        
        /*border: 1px solid #ebebeb;*/
        margin-top: 20px;
    }

    .outer-container {
        border-radius: 10vh;
        overflow: hidden;
    }

    .inner-container {
        display: flex;
        flex-wrap: nowrap;
        border: 1px solid #f0f0f0;
        /* border-radius: 10vh; */
        padding: 3px 5px;
        background-color: white;
        height: 50px;
        /*box-shadow: 0px 6px 9px #00000017;*/
    }

    form.search button#search-button {         
        /*display: grid;*/
        padding: 4px; 
        cursor: pointer; 
        background: none; 
        align-items: center; 
        border: none; 
    }

    form.search input#search-input {         
        border: none;
        outline: none;
        width: 100%;
        background-color: white;
        font-size: 18px;
    }
    
    p.search_title {
        margin: 10px 0px 0px 8px;
        line-height: normal;
        color: #676767;
        font-size: 0.9em;
        font-weight: normal;
        padding: 0;
    }
    
    form.show-more-result .show-more-result-btn, .clear-history-btn {
        text-align: center; 
        background: white; 
        width: 100%; 
        padding: 5px; 
        color: #666464; 
        cursor: pointer; 
        font-size: 0.95em;
        border: none;
    }
    #search-container ul {
        padding: 13px 0px 0px 0px !important;
        list-style: none;
        margin: auto;
    }

    

    #search-container ul#post-list a {
        display: flex;
        font-size: 1em;
        padding: 0;
        margin: 0;
        font-weight: bold;
    }
    #search-container ul li {
        padding: 5px;
        border-bottom: 1px solid #ccc;
        display: flex;
        font-weight: bold;
    }
    #search-container #search-result ul#post-list a li img {
        width: 50px;
        height: 50px;
    }

    .term-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
    }
    .term-list-item {
        display: block;
        color: #5a5a5a;
        padding: 4px 15px;
        border-radius: 10vh;
        border: 1px solid #5a5a5a;
    }
    .term-list-item:hover {
        background-color: #5a5a5a;
        color: white;
    }

    #search-history {
        background-color: #fbfbfb;
        /* border-radius: 0px 0px 15px 15px;
        border: solid 1px gray; */
    }