/**
* CSS themes for simplePagination.js
* Author: Flavius Matis - http://flaviusmatis.github.com/
* URL: https://github.com/flaviusmatis/simplePagination.js
*/

#light-pagination li:last-child a,
#light-pagination li:last-child a span {

}

ul.simple-pagination {
    list-style: none;
}

.simple-pagination {
    display: block;
    overflow: hidden;
    padding: 0 5px 5px 0;
    margin: 0;
}

.simple-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-pagination li {
    list-style: none;
    padding: 0;
    margin: 0;
    float: left;
}
span.ellipse.clickable {
    cursor: pointer;
}

.ellipse input {
    width: 3em;
}
.page-link:hover {
    background-color: transparent !important;
}
/*------------------------------------*\
	Light Theme Styles
\*------------------------------------*/

.light-theme a, .light-theme span {
    float: left;
    color: #73758B;
    font-size:14px;
    line-height:24px;
    font-weight: normal;
    text-align: center;
    min-width: 14px;
    padding: 0 7px;
    margin: 0 5px 0 0;
    border-color: transparent !important;
}

.light-theme .current {
    background: var(--primary-color-1);
    color: #FFF;
    box-shadow: 0 1px 0 rgba(255,255,255,1), 0 0 2px rgba(0, 0, 0, 0.3) inset;
    cursor: default;
    border-radius: 50%;
    padding: 0px 10px;
}
.light-theme .current.prev, .light-theme .current.next {
    color: #73758B !important;
    background: transparent !important;
    box-shadow: none !important;
}
.light-theme .ellipse {
    background: none;
    border: none;
    /*border-radius: 0;*/
    box-shadow: none;
    font-weight: bold;
    cursor: default;
}

.arrow-pagination{
    color: var(--primary-color-1);
    display: inline-block;
    padding: 0 10px;
    font-size: 18px;
    font-weight: 800;
}
li.disabled{
    display: none;
}
@media only screen and (max-width: 600px) {
    .simple-pagination li:first-child, .simple-pagination li:last-child{
        width: 90px;
    }
    .arrow-pagination{
        padding: 0;
    }
    .light-theme a, .light-theme span {
        padding: 0 5px;
    }
    
}