/**
 * General styles
 */
.is-hidden {
    display: none !important;
}

/**
 * Adding form-related styles
 */
.invalid-field {
    border: 2px solid red !important;
}
.ui-datepicker-current-day, .ui-datepicker-current-day a {
    background: #ed1c24 !important;
    color: #fff !important;
}

/**
 * Adding pagination components:
 *   - arrows (next and prev)
 *   - making the space bigger
 *   - fixing pagination labeling
 */
.result-list .bottom-navigation {
    min-height: 60px;
}
.results-pagination-prev, .results-pagination-next {
    width: 19px;
    height: 20px;
    overflow: hidden;
    /*float: right;*/
}
.results-pagination-prev {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    left: 0;
    top: 12px;
}
.results-pagination-prev.disabled {
    opacity: .2;
}
.results-pagination-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    right: 0;
    top: 12px;
}
.results-pagination-next.disabled {
    opacity: .2;
}

.results-pagination-prev i, .results-pagination-next i { font-size: 30px; color: #fff; height: 50px; line-height: 50px; display: block; background-color: rgba(0, 0, 0, 0.5); }

.bottom-navigation .text {
    width: 180px;
    left: 50%;
    margin: 0 0 0 -90px;
    position: absolute;
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    /*line-height: 50px;*/
}
.bottom-navigation .text strong {
    font-weight: bold;
    font-size: 20px;
}
.result-list .results-pagination-prev { top: 12px; }
