/**
 * Пагинация
 */


.ls-pagination {
    overflow: hidden;
    color: #adadad;
    font-size: 13px;
    line-height: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Список */
.ls-pagination-list {
    display: block;
    overflow: hidden;
    margin-top: 10px;
}

.ls-pagination-list:last-child {
    margin-left: 0;
}


/* Элемент пагинации */
.ls-pagination-item {
    float: left;
    margin-right: 5px;
}

.ls-pagination-item-inner {
    display: block;
    padding: 6px 8px;
    border: 1px solid transparent;
}

.ls-pagination-item-link {
    cursor: pointer;
    text-decoration: underline;
}


/* Текущая страница */
.ls-pagination-item.active .ls-pagination-item-inner {
    color: #333;
    border-color: #eee;
    cursor: default;
}


/**
 * @modifier small
 */
.ls-pagination--small {
    font-size: 11px;
}

.ls-pagination--small .ls-pagination-item-inner {
    padding: 4px 6px;
}


/**
 * Media Queries
 */

/**
 * >= 768px
 */

@media screen and (min-width: 768px) {
    .ls-pagination-list {
        display: inline-block;
        margin-right: 50px;
    }
}


/**
 * >= 992px
 */

@media screen and (min-width: 992px) {
    .ls-pagination {
        text-align: left;
    }
}
