.searchbar-container {
    position: relative;
}

.form-control::placeholder {
    opacity: .25;
}

#search_result {
    width: 440px;
    position: absolute;
    height: auto;
    z-index: 1;
    margin-top: 2px;
    background-color: #fff;
    padding: 0 20px;
    border-radius: 5px;
    outline: 0;
    font-size: 16px;
    font-weight: 400;
    color: #666d73;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 2px rgb(149, 149, 149);
    max-height: 200px;
    overflow-y: scroll;
    list-style: none;
}

#search_result li {
    margin-top: 4px;
    margin-bottom: 6px;
}


.footer {
    position: fixed;
    bottom: 0px;
    display: flex;
    background-color: #f6f7f7;
    z-index: 1;
    right: 0px;
    width: calc(100vw - 400px);
    padding: 0px 50px;
}



.footer>.PageNavigation {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer>.PageNavigation a {
    height: 80px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    justify-content: center;
}

.footer>.PageNavigation p {
    display: block;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}


.footer>.PageNavigation a>p:first-child {
    font-size: 14px;
    color: #999999
}

.paginator_prev span {
    align-items: center;
    display: flex;
}

.paginator_next {
    display: flex;
    text-align: right;
}

.paginator_next span {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.PageNavigation_p {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media only screen and (max-width: 1200px) {
    .footer {
        width: calc(100vw - 100px)
    }
}