/*******************************************************
 *
 * General
 *
 *******************************************************/

.listing-module-page #inner-page-wrapper .container:not(.container-theme-filter) {
    width: 100%;
}

.listing-module-page .container-theme-filter {
	margin-top: 25px;
}

/*pagination */
#listings-results .listings-pagination {
    position: relative;
    margin-top: 81px;
}

#listings-results .listings-pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
}

#listings-results .listings-pagination ul li {
    display: block;
    margin: 2px;
    padding: 0;
}

#listings-results .listings-pagination ul li a,
#listings-results .listings-pagination ul li.active span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--aios-listing-primary-color);
    text-decoration: none;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #cecece;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#listings-results .listings-pagination ul li.active a,
#listings-results .listings-pagination ul li a.active,
#listings-results .listings-pagination ul li a:hover,
#listings-results .listings-pagination ul li.active span {
    color: #fff;
    border-color: var(--aios-listing-primary-color);
    background: var(--aios-listing-primary-color);
}

#listings-results .listings-pagination ul li.active{
    margin-top: 4px;
}

#listings-results .listings-pagination ul li.active a,
#listings-results .listings-pagination ul li a.active,
#listings-results .listings-pagination ul li.active span {
    cursor: not-allowed;
}

#listings-results .listings-pagination ul li.ellipsis a {
    pointer-events: none;
    cursor: text;
}


