#compare-not-found {
    display: block;
    float: none;
    width: 94%;
    text-align: center;
    margin: 2%;
    background-color: #d13838;
    border-radius: 8px;
    padding: 1%;
    font-weight: bold;
    color: #FFF;
}

#compare-vehicle-container {
    display: block;
    float: none;
    clear: both;
    overflow: hidden;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

#saved-vehicle-container {
    display: block;
    float: none;
    clear: both;
    overflow: hidden;
    width: 100%;
    margin: 0 0 2% 0;
}

#saved-vehicle-count-container {
    display: block;
    border: 2px solid #DBDBDB;
    float: right;
    padding: 2px 5px 4px;
    overflow: hidden;
    font-size: 90%;
    height: 22px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0 1%;
    color: #000;
    background-color: #EFEFEF;
}

#saved-vehicle-count-container.empty {
    opacity: .5;
}

#saved-vehicle-count-container.saved {
    opacity: 1;
    cursor: pointer;
    border-color: #C50606;
}

#saved-vehicle-count-container.saved:hover {
    opacity: .6;
}

#compare-vehicle-inner-container {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;

    flex-flow: row nowrap;
    -webkit-flex-flow: row nowrap;

    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    overflow-y: scroll;

    border: 2px solid #4d9ec4;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 1%;
}

.compare-vehicle-item.static {
    flex: 0 0 15%;
    -webkit-box-flex: 0 0 15%;
    -moz-box-flex: 0 0 15%;
    -webkit-flex: 0 0 15%;
    -ms-flex: 0 0 15%;
}

.compare-vehicle-item {
    flex: 0 0 25%;
    -webkit-box-flex: 0 0 25%;
    -moz-box-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;

    border-right: 1px solid #4d9ec4;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.compare-vehicle-item:last-child {
    border-right: none;
}

.compare-top-content.static {
    width: 140px;
}

.compare-top-content {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #4d9ec4;
    border-left: none;

    padding: 2%;
    width: 232px;
    height: 180px;
    text-align: center;
}

.compare-top-image {
    display: block;
    height: 113px;
    width: 222px;
}

.compare-top-image img {
    width: 200px;
    height: 112px;
}

.compare-data-item.static {
    text-align: right;
    width: 100%;
    padding: 0 10% 0 0;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.compare-data-item {
    text-indent: 20px;
    border-bottom: 1px solid #4d9ec4;
    white-space: nowrap;
    width: 100%;
    max-width: 232px;
    overflow-y: scroll;
}

.compare-data-item:last-child {
    border-bottom: none;
}

.compare-detail-button {
    display: block;
    width: 90%;
    margin: 2% auto;
    text-align: center;
    background-color: #4d9ec4;
    padding: 1%;
    cursor: pointer;
    font-size: 14px;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.compare-detail-button:hover {
    opacity: .9;
}

.compare-detail-button a, .compare-detail-button a:hover, .compare-detail-button a:visited {
    display: block;
    width: 100%;
    color: #FFF;
    text-decoration: none;
}

.saved-vehicles-container {
    width: 90%;
    margin: 2% auto;
    background-color: #C50606;
    opacity: .8;
    padding: 1%;
    font-size: 14px;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.inventory-vehicle-save {
    display: block;
    overflow: hidden;
    float: none;
    clear: both;
    width: 100%;
    font-weight: bold;
    color: #FFF;
    cursor: pointer;
    position: relative;
}

.saved-vehicles-container:hover {
    opacity: .6;
}

.inventory-vehicle-save .save-text {
    display: block;
    overflow: hidden;
    float: left;
    text-indent: 10px;
}

.inventory-vehicle-save .save-checkbox {
    display: block;
    overflow: hidden;
    width: 15px;
    height: 15px;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    color: #000;
    text-align: center;
    line-height: normal;
}

span.not-available {
    opacity: .4;
}