.igz-pagination {
    .pagination-color-set();

    float: right;
    padding: 24px 36px 5px 30px;

    > div {
        vertical-align: top;
    }

    .rows-title, .per-page, .jump-to-page, .to-page-prev, .to-page-next {
        display: inline-block;
        vertical-align: baseline;
    }

    .rows-title {
        font-size: 13px;
        color: @rows-title-color;
        font-family: @font-family-sans-serif;
    }

    .per-page {
        width: 66px;

        .default-dropdown-field {
            background: none;
            border: none;
            box-shadow: none;
            font-size: 14px;
            height: 36px;

            .dropdown-selected-item {
                font-size: 14px;
            }

            .dropdown-arrow {
                margin-top: 5px;

                span {
                    font-size: 12px;
                }
            }

            .dropdown-arrow {
                border: none;

                &:hover, &:active {
                    border: none;
                    background: none;
                    box-shadow: none;
                }
            }

            &:focus {
                .dropdown-selected-item {
                    border: none;
                }
            }
        }

        .default-dropdown-container {
            width: 66px;

            .list-item {
                padding-left: 15px;

                .list-item-label {
                    margin-right: 10px;
                }
            }
        }
    }

    .jump-to-page {
        margin-left: 7px;

        & > div, .jump-to-page-input {
            display: inline-block;
            vertical-align: baseline;
        }

        .to-page-prev, .to-page-next {
            width: 41px;
            line-height: 34px;
            height: 36px;
            vertical-align: top;
            position: relative;

            &:not(:active) {
                background-color: transparent;
            }

            &:not(:hover):not(:active):not(:disabled):not(.disabled) {
                color: @page-prev-next-color;
            }

            &:before {
                line-height: 34px;
            }
        }

        .to-page-prev {
            border-radius: 2px 0 0 2px;

            &::before {
                margin-left: -2px;
            }
        }

        .to-page-next {
            border-radius: 0 2px 2px 0;
        }

        .title {
            margin: 0 0 0 14px;
        }

        .page-number {
            min-width: 30px;
            height: 36px;
            line-height: 36px;
            text-align: center;
        }

        .validating-input-field {
            background-color: @input-field-bg-color;

            .input-field {
                width: 43px;
                height: 36px;
                border-radius: 0;
                box-shadow: @input-field-box-shadow;
                border: 1px solid @input-field-border-color;
                border-left: 0 none transparent;
                border-right: 0 none transparent;
                font-family: @font-family-sans-serif;
                font-size: 14px;
                font-weight: 500;
                color: @input-field-color;
                text-align: center;

                &:hover {
                    border: @input-field-hover-border;
                }
            }
        }
    }
}