/*******
    Author PIXTA
*********/
#result_pagination {
    position: relative;
    display: block;
}
#result_pagination:after {
    display: table;
    content: " ";
    clear: both;
}
.ajax_pagination {
    margin-bottom: 20px;
    position: relative;
}
.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
    border-radius: 4px;
}
.pagination li {
    list-style: none;
    float: left;
    margin: 0 5px;
    padding: 0;
}
.pagination li span,
.pagination li a {
    font-weight: 600;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    width: 40px;
    color: #444444;
    background-color: #e9ecef !important;
    border-color: #dee2e6 !important;
    border-radius: 5px;
}

.pagination li a:hover,
.pagination li.active span {
    color: #FFF;
    text-decoration: none;
    background-color: #0873BB !important;
    border-color: #0873BB !important;
}

/*CSS load*/
.loading_pagination {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    z-index: 999;
}
.animation_loading {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.animation_loading .sk-cube {
    width: 33%;
    height: 33%;
    background-color: #0873BB;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
            animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
}
.animation_loading .sk-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s; }
.animation_loading .sk-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s; }
.animation_loading .sk-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s; }
.animation_loading .sk-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s; }
.animation_loading .sk-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s; }
.animation_loading .sk-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s; }
.animation_loading .sk-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s; }
.animation_loading .sk-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s; }
.animation_loading .sk-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
    } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1); 
    }
}
@keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
    } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1);
    } 
}