/*START PAGINATION BLOG*/
.watch-more {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.show-more {
    display: block !important;
    border-radius: 4px !important;
    padding: 17px 26px !important;
    text-align: center;
    margin-bottom: 10px !important;
}

.watch-more .pagination {
    position: relative;
    display: flex;
    border: 1px solid #3a3a3a;
    justify-content: center;
    align-items: center;
}

.pagination__wrap {
    display: inline-flex;
}

.nav_dots,
.nav_prev,
.nav_next,
.nav_num {
    display: inline-block;
    width: 56px;
    height: 62px;
    text-align: center;
    line-height: 62px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    color: #333;
    color: var(--white_text_black);
}

.nav_num.active::after {
    content: "";
    display: block;
    height: 2px;
    background-color: #9e9e9e;
    background-color: var(--theme-base-color);
    bottom: -1px;
    position: absolute;
    width: 100%;
}

.nav_prev[href='#'],
.nav_next[href='#'] {
    display: none;
}


/*END PAGINATION BLOG*/