﻿h1 {
    font-size: 28px;
}

.header-lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.store-title {
    font-family: 'PorscheNextRegular', arial, sans-serif;
    margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 40px;
    }
}

@media screen and (min-width: 1001px) {
    .header-lower {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .store-title {
        margin-bottom: 0;
    }

    .search-box.store-search-box {
        max-width: 365px;
    }
}

.item-box .product-rating-box {
	display: none !important;
}