﻿/*Paging - Start*/
.paging {
    display: flex;
    justify-content: center;
    text-align: center;
    /*padding-bottom: 64px;*/
    padding-top: 32px;
    gap: 8px;
}

    .paging .page-item-container {
        display: flex;
        gap: 10px;
        direction: ltr;
    }

    .paging .page-item {
        background: #fff;
        color: #007284;
        width: 40px;
        border: 1px solid #048094;
        text-align: center;
        height: 40px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        gap: 5px;
        cursor:pointer;
    }

        .paging .page-item.selected {
            background-color: #007284;
            color: #fff;
        }

        .paging .page-item.disabled {
            opacity: 30%;
        }

        .paging .page-item a, .paging .page-item div {
            font-size: 14px;
            line-height: 18px;
            color: #048094;
            font-weight: bold;
        }
    /*
        .paging .page-item.disabled a, .paging .page-item.disabled div {
            color: #B7B7B7;
        }*/

    .paging select {
        border: none;
        font-size: 14px;
        font-weight: bold;
        color: #007284;
        -webkit-appearance: none;
        text-align: center;
        background: transparent;
    }

    .paging .page-item small {
        border-left: 1px solid #007284;
        border-bottom: 1px solid #007284;
        width: 6px;
        height: 6px;
        display: inline-block;
    }

    .paging .page-item.next small {
        transform: rotate(-134deg);
    }

    .paging .page-item.last small {
        transform: rotate(-134deg);
    }

    .paging .page-item.first small {
        transform: rotate(45deg);
    }

    .paging .page-item.prev small {
        transform: rotate(45deg);
    }

    .paging .page-item.last, .paging .page-item.first {
        width: 100px;
    }

    .paging .page-item.updown {
        width: 60px;
        height: 40px;
        display: block;
        color: #048094;
        line-height: 40px;
        direction: ltr;
        background-color: transparent;
    }

        .paging .page-item.updown small {
            border-left: 1px solid #377E91;
            border-bottom: 1px solid #377E91;
            width: 6px;
            height: 6px;
            display: inline-block;
            vertical-align: middle;
            position: absolute;
        }

        .paging .page-item.updown .up small {
            transform: rotate( 134deg );
            right: 11px;
            top: 13px;
        }

        .paging .page-item.updown .down small {
            transform: rotate( -45deg );
            right: 11px;
            top: 19px;
        }
/*Paging - End*/
