#sc-inventory-wrapper {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;

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

    justify-content: space-around;
    -webkit-justify-content: space-around;

    background-color: #E6E6E6;
    border-radius: 4px;
    margin: 0 auto;
    font-size: 12px;
    padding: 2% 0 3%;
}

.sc-item-wrapper {
    -webkit-box-flex: 1 1 auto;
    -moz-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;

    border: 4px solid #FFFFFF;
    border-radius: 4px;
    padding: 1%;
    margin: 1% 1% 2%;
    box-shadow: 6px 6px 4px #888888;
    font-size: 100%;
    font-weight: bold;

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

    flex-flow: column nowrap;
    -webkit-flex-flow: column nowrap;

    align-items: center;
    -webkit-align-items: center;

    justify-content: center;
    -webkit-justify-content: center;

    max-width: 160px;
}

.sc-item-wrapper:hover {
    border: 4px solid #888888;
    box-shadow: none;
}

.sc-item-wrapper a {
    color: #FFF;
    text-decoration: none;
    display: block;
    text-align: center;
}

.sc-item-wrapper a:hover {
    color: #FFF;
}

.sc-item-inner {
    background-color: #888888;
    border-radius: 4px;
}

.sc-title-wrapper {
    overflow: hidden;
}

.sc-title-wrapper span {
    margin: 0 1%;
    display: inline-block;
}

.sc-title-wrapper .sc-model {
    font-size: 1.2em;
    font-style: italic;
}

.sc-img-wrapper {
    display: block;
    overflow: hidden;
}

.sc-img-wrapper img {
    width: 94%;
    margin: 0 auto;
}

.sc-price-wrapper {
    font-size: 1.8em;
    line-height: 1.4em;
}

.sc-price-wrapper .sc-price-symbol {
    font-size: .7em;
    vertical-align: top
}

.sc-not-found {
    margin: 0 0 0 5%;
    color: #FE0000;
}

.sc-item-wrapper a:visited {
    color: #d1d1d1;
}

.vehicle-information-attributes {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;

    order: 1;
    -webkit-order: 1;

    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;

    align-items: center;
    -webkit-align-items: center;
}
.vehicle-information-attributes .info-item {
    padding: 1% 1%;
}
.vehicle-information-attributes .info-label {
    padding: 1% 1%;
    text-align: left;

}

.info-item.info-mobile.info-vin.row-plain {
    overflow-wrap: break-word;
}

#inventory-detail .vehicle-information-attributes {
    width: 100%;
    order: 1;
    -webkit-order: 1;
    border:none;
}

.info-item.row-color {
    background-color: pink;
}

.info-item .info-label {
    float: left;
    line-height: normal;
}

.info-item .info-label:after {
    content: '\003A';
}

.info-item .info-value {
    float: left;
    font-size: 85%;
    text-align: left;
    line-height: normal;
    margin-left: 10px;
}
.vehicle-information-attributes .info-item.desktop-hide {
    display: none;
}