/**
 * 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: #f4594f !important;
    color: #fff !important;
}

/**
 * Adding year to inventory result list 
 * on home page and inventory page
 */
.module-new-cars .module-new-cars-title,
.result-list .result-list-title {
    min-height: 22px !important;
    width: 65%;
}

.module-new-cars .module-new-cars-year,
.result-list .result-list-year {
    display: block;
    text-transform: uppercase;
    font-size: 24px;
    color: #f4594f;
    font-weight: bold;
    /*line-height: 22px;
    min-height: 44px;
    */
}

/**
 * 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: 7px;
    background: #f4594f;
}
.results-pagination-prev.disabled {
    opacity: .2;
}
.results-pagination-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    right: 0;
    top: 7px;
    background: #f4594f;
}
.results-pagination-next.disabled {
    opacity: .2;
}

.results-pagination-prev i, .results-pagination-next i { font-size: 40px; color: #fff; height: 50px; line-height: 50px; }

.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: 8px; }

/**
 * Detail page
 */
.module-intro h1 {
    height: 26px;
    overflow: hidden;
}