.load-more-btn {
    border: 1px solid #9D9D9D;
    box-sizing: border-box;
    border-radius: 50px;
    padding: 11px 30px;
    color: #9D9D9D;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    transition: all 0.2s ease-in-out;
}

.load-more-btn:hover {
    background: #1fc3b0;
    color: #191919;
    border-color: #1fc3b0;
}

.flex-navi {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

.with-load-more #wp_page_numbers {
    justify-content: flex-end;
    width: calc(50% - 95px);
}

.pagination .active_page {
    border: unset;
    color: #1FC3B0;
    font-weight: 600;
}

.pagination div {
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #A0A0A0;
    margin: 5px;
    height: 30px;
    width: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pagination div.space {
    margin-left: 20px;
    margin-right: 20px;
}

.pagination div:hover {
    text-decoration: none;
    color: #1FC3B0;
    border: unset;
    padding-bottom: 8px;
}

.pagination div:hover svg {
    fill: #1FC3B0;
}

.pagination .next li,
.pagination .prev li {
    padding: 0;
}

@media (max-width: 800px) {
    .flex-navi {
        flex-direction: column;
    }

    .with-load-more #wp_page_numbers {
        justify-content: center;
        margin-top: 20px;
    }
}

.pagination{
    display: flex;
}

@media (max-width:420px) {
    .pagination div {
        width: 30px;
        height: 30px
    }

}