/***
	Save Vehicles
***/
#saved-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;
}

#saved-vehicle-container {
    display: block;
    overflow: hidden;
    float: none;
    clear: both;

    width: 100%;
    max-width: 960px;
    margin: 0 auto;

    position: relative;
}

.saved-vehicle-item {
    display: block;

    border: 2px solid #4d9ec4;
    box-sizing: border-box;
    width: 98%;
    padding: 2%;
    margin: 1%;
    position: relative;
}

.saved-vehicle-content {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;

    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;

    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.saved-vehicle-content:hover {
    opacity: .9;
    background-color: #f1f1f1;
}

.saved-left-content {
    flex: 0 1 30%;
    -webkit-box-flex: 0 1 30%;
    -moz-box-flex: 0 1 30%;
    -webkit-flex: 0 1 30%;
    -ms-flex: 0 1 30%;

    order: 1;
    -webkit-order: 1;
}

.saved-right-content {
    flex: 0 1 68%;
    -webkit-box-flex: 0 1 68%;
    -moz-box-flex: 0 1 68%;
    -webkit-flex: 0 1 68%;
    -ms-flex: 0 1 68%;

    order: 2;
    -webkit-order: 2;

    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;

    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;

    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.saved-remove {
    display: block;
    width: 14%;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    color: #FFF;
    background-color: #dd0000;
    font-size: 12px;
    border-radius: 0 0 0 8px;
    cursor: pointer;
}

.saved-headline {
    flex: 1 1 100%;
    -webkit-box-flex: 1 1 100%;
    -moz-box-flex: 1 1 100%;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;

    order: 1;
    -webkit-order: 1;

    color: #4d9ec4;
}

.saved-headline span {
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
    margin: 0 4px 0 0;
    display: inline-block;
}

.saved-headline span.trim {
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    display: block;
}

.saved-buttons {
    flex: 1 1 50%;
    -webkit-box-flex: 1 1 50%;
    -moz-box-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
    -ms-flex: 1 1 50%;

    order: 2;
    -webkit-order: 2;
}

.saved-prices {
    flex: 1 1 50%;
    -webkit-box-flex: 1 1 50%;
    -moz-box-flex: 1 1 50%;
    -webkit-flex: 1 1 50%;
    -ms-flex: 1 1 50%;

    order: 3;
    -webkit-order: 3;
}

.saved-more-details {
    display: block;
    width: 80%;
    margin: 2% auto;
    text-align: center;
    background-color: #4d9ec4;
    padding: 1%;
    cursor: pointer;
}

.saved-more-details:hover {
    opacity: .9;
}

.saved-more-details a, .saved-more-details a:hover, .saved-more-details a:visited {
    display: block;
    width: 100%;
    color: #FFF;
    text-decoration: none;
}

.saved-form-action {
    display: block;
    width: 80%;
    margin: 4% auto 0;
    text-align: center;
    background-color: #39a322;
    padding: 1%;
    cursor: pointer;
    color: #FFF;
}

.saved-form-action:hover {
    opacity: .9;
}

.saved-vehicle-pricing {
    display: block;
    text-align: center;
}

.price-msrp {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 12px;
}

.price-primary {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    margin: 2% 0 0;
}

.removed-saved-vehicle-content {
    display: block;
    width: 100%;
    float: none;
    clear: both;
    overflow: hidden;
}

.removed-vehicle-headline {
    display: block;
    width: 96%;
    border-radius: 8px;
    background-color: #dd0000;
    color: #FFF;
    padding: 1% 2%;
}

.removed-vehicle-headline:hover {
    opacity: .8;
}

.removed-vehicle-headline span {
    display: inline-block;
    margin: 0 4px 0 0;
}

.restore-saved-vehicle {
    display: block;
    float: right;
    border: 1px solid #000;
    color: #000;
    background-color: #FFF;
    padding: 0 1%;
    box-sizing: border-box;
    cursor: pointer;
}

.restore-saved-vehicle:hover {
    opacity: .9;
}

.saved-vehicle-form-holder {
    flex: 0 1 90%;
    -webkit-box-flex: 0 1 90%;
    -moz-box-flex: 0 1 90%;
    -webkit-flex: 0 1 90%;
    -ms-flex: 0 1 90%;

    order: 4;
    -webkit-order: 4;

    margin: 15px auto;
    padding: 2%;
    background-color: #adadad;
    border-radius: 8px;
    position: relative;
}

.cancel-form {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    color: #FFF;
    font-size: 13px;
    background-color: #dd0000;
    padding: 0 4px;
    cursor: pointer;
}

.cancel-form:hover {
    opacity: .8;
}

.saved-vehicle-form div.gform_footer {
    text-align: center;
    margin: 15px 0 0 0;
}

.saved-vehicle-form div.gform_footer input.button {
    background-color: #39a322;
    border: 2px solid #FFF;
    color: #FFF;
    font-weight: bold;
}

.saved-vehicle-form div.gform_footer input.button:hover {
    opacity: .8;
}

/***
	Compare Vehicles
***/

.saved-compare-vehicles-container {
    display: block;
    overflow: hidden;
    float: none;
    clear: both;
    width: 100%;
    color: #FFF;
    cursor: pointer;
    position: relative;
    margin: 4% auto 0;
    background-color: #0074AA;
    opacity: .8;
    width: 80%;
    padding: 1%;
    text-indent: 10px;
}

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

.saved-compare-vehicles-container .compare-text {
    display: block;
    overflow: hidden;
    float: left;
}

.saved-compare-vehicles-container .compare-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;
    text-indent: 0px;
    font-weight: bold;
}


#compare-vehicle-container.empty {
    display: none;
}

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

    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;

    justify-content: space-between;
    -webkit-justify-content: space-between;

    width: 96%;
    padding: 12px;
    background-color: #0174aa;
    color: #FFF;
    z-index: 8;
    margin: 0 auto;

    max-width: 920px;
    max-height: 118px;

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

.compare-item {
    flex: 0 1 16%;
    -webkit-box-flex: 0 1 16%;
    -moz-box-flex: 0 1 16%;
    -webkit-flex: 0 1 16%;
    -ms-flex: 0 1 16%;

    display: block;
    width: 100%;
    overflow: hidden;
    height: auto;

    position: relative;
}

.compare-item.empty {
    background-color: #7a7979;
}

.compare-item img {
    max-width: 100%;
    height: auto;
    border: 0;
}

.compare-main {
    display: block;
    float: none;
    clear: both;
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    max-width: 142px;
    max-height: 80px;
}

.compare-sub {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: #e8e6e0;
    color: #000;
    opacity: .8;
    font-size: 14px;
    line-height: normal;
}

.compare-sub span {
    display: inline-block;
    margin: 0 4px 0 4px;
}

.compare-remove {
    display: block;
    width: 50%;
    font-size: 10px;
    line-height: normal;
    text-align: center;
    background-color: #D13838;
    border-radius: 0 0 8px 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.compare-remove:hover {
    opacity: .9;
}

#compare-vehicle-count-container {
    text-align: center;
    line-height: normal;
    background-color: #7a7979;;
}

#compare-button {
    padding: 4% 0%;
    font-size: 16px;
    border: 2px solid #FFF;
    cursor: pointer;
    width: 90%;
    margin: 4% auto;
    box-sizing: border-box;
}

#compare-button:hover {
    opacity: .8;
    border-color: #000;
}

#compare-under-count, #compare-over-count {
    position: absolute;
    top: 0;
    left: 0;
    width: 98%;
    text-align: center;
    background-color: #d13838;
    z-index: 9;
    padding: 1%;
    border-radius: 0 0 8px 8px;
    font-size: 20px;
}
