/home/moonrcjl/template.moontelict.com/attorix/assets/scss/components/_pagination.scss
@use '../utils' as *;
/*----------------------------------------*/
/*  2.9 Pagination
/*----------------------------------------*/

.mt-pagination {
    & ul {
        list-style: none;

        & li {
            display: inline-block;
            margin: 4px;

            & a {
                border: 1px solid #F8F8F8;
                text-align: center;
                font-size: 17px;
                font-weight: 500;
                color: #57595C;
                background: #F8F8F8;
                height: 50px;
                width: 50px;
                line-height: 50px;
                display: inline-block;
                @include transition(.4s);

                &.active {
                    background-color: var(--mt-theme-1);
                    border-color: var(--mt-theme-1);
                    color: #fff;
                }

                &:hover {
                    background-color: var(--mt-theme-1);
                    border-color: var(--mt-theme-1);
                    color: #fff;
                }

                & i {
                    font-size: 26px;
                    @include transform(translateY(3px));
                }
            }
        }
    }

}

.mtpagination {
    &__item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    &__btn {
        & a {
            width: 200px;
            height: 200px;
            line-height: 200px;
            border: 1px solid var(--mt-border-1);
            display: inline-block;
            text-align: center;
            border-radius: 100px;
            color: var(--mt-theme-2);
            transition: .3s;

            @media #{$xs} {
                width: 140px;
                height: 140px;
                line-height: 140px;
            }

            &:hover,
            &.active {
                background-color: var(--mt-theme-1);
                color: var(--mt-common-white);
            }

        }
    }
}