#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;

    border-radius: 5px;
    margin: 0 auto;
    font-size: 12px;
    padding: 2% 0 3%;
}

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

    border: 4px solid #000000;
    border-radius: 5px;
    padding: 0 5px;
    margin: 10px auto;
    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: 300px;
}

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

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

.sc-item-inner {
    border-radius: 5px;
}

.sc-title-wrapper {
    overflow: hidden;
    font-size: 1.3em;
}

.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;
    border-radius: 5px;
}

.sc-img-wrapper img {
    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: #6c6a6a;*/
}

.vehicle-information-attributes {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    margin: 5px auto;
}

.vehicle-information-attributes .info-item {
    margin: 3px auto 0;
    width: 80%;
}

.info-item .info-value {
    padding: 0;
    float: right;
    display: block;
}

.info-item .info-label {
    margin-left: 0;
}

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

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

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

.vehicle-information-attributes .info-item.desktop-hide {
    display: none;
}

.vdp-button {
    font-size: 1.3em;
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 5px auto;
    border: 2px solid #000000;
}

.vdp-button:hover {
    border: 2px solid #888888;
}

@media (max-width: 476px) and (orientation: portrait) {
    div.vehicle-information-attributes .info-item.mobile-hide {
        display: none;
    }

    div.vehicle-information-attributes .info-item.desktop-hide {
        display: block;
    }
}