html,body {
    padding: 0;
    margin: 0;
}
.side-bar {
    position: sticky;
    top: 12px;
}

.side-bar .filter-section {
    padding: 25px 0 0 0;
    height: 330px;
    border-radius: 20px;
    background: #F5F8FA;
    border: 0.5px solid #BBC2D8;
    overflow: hidden;
    transition: .3s height;
}

.filter-section.close {
    height: 75px;
}

.side-bar .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px 25px 25px;
    border: 0;
    border-bottom: 1px solid #BBC2D8;
    background-color: transparent;
    width: 100%;
}

.search-resault-toolbar {
    padding: 8px 20px;
    border-radius: 20px;
    background: #F5F8FA;
    border: 0.5px solid #BBC2D8;
    overflow: hidden;
    transition: .3s height;
}

.filters {
    padding: 25px;
}

.filters ul {
    gap: 20px;
}

.filters ul li {
    display: flex;
    
}

.filters ul li {
    font-size: 14px;
    color: #3C5164;
    line-height: 21px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.filters ul li .tik {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #DCE0E8;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all;
}

.filters ul li .tik svg {
    display: none;
    transition: .3s all;
}

.filters ul li span:last-child {
    line-height: 20px;
    padding-right: 8px;
}

.filters ul li.selected .tik {
    background: #00C2DC;
}

.filters ul li.selected .tik svg {
    display: block;
}

.blog-item {
    box-shadow: none;
}

.blog-image {
    height: 223px;
}

.blog-item .title a {
    font-size: 18px;
}

.paginations-blog-items {
    display: flex;
    justify-content: center;
}

.paginations-blog-items ul {
    gap: 10px;
    align-items: center;
    direction: ltr;
    display: flex;
}

.paginations-blog-items ul li {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 0.5px solid #C9D2E5;
    text-align: center;
    color: #3C5164;
    line-height: 40px;
    font-size: 17px;
    font-weight: 700;
    overflow: hidden;
}

.paginations-blog-items ul li a {
    display: block;
    color: #3C5164;
    line-height: 40px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'IranYekanNumber' !important;
    width: 100%;
    height: 100%;
}

.paginations-blog-items ul li span.current {
    display: block;
    height: 100%;
    color: #fff;
    background-color: #0163a9;
}

.paginations-blog-items ul li.prev-page,
.paginations-blog-items ul li.next-page {
    background: #E8ECF3;
}

.paginations-blog-items ul li.prev-page button,
.paginations-blog-items ul li.next-page button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
    width: 100%;
    height: 100%;
}

.search-box {
    width: 100%;
    height: 80px;
    border-radius: 20px;
    background: #F5F8FA;
    border: 0.5px solid #BBC2D8;
    padding: 15px;
    position: relative;
}

.search-box input {
    width: 100%;
    height: 46px;
    border: 1px solid #CAD7EB;
    background-color: #FFF;
    border-radius: 15px;
    padding: 5px;
    outline: 0;
}

.search-box input::placeholder {
    font-size: 12px;
    color: #CAD7EB;
}

.search-box svg {
    position: absolute;
    left: 25px;
    top: 30px;
}