.RouteWebshopProduct {
    position: relative;
    margin: 3em auto;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    border-top: 4px solid #e2001a;
    overflow: hidden;
    background-color: #fff;
}

.RouteWebshopProduct__info {
    padding: 1em;
    text-align: center;
}

.RouteWebshopProduct__text {
    display: none;
}

.RouteWebshopProduct__imageWrapper {
    padding: 1rem;
}

.RouteWebshopProduct__image {
    display: block;
    margin: 0 auto;
}

.RouteWebshopProduct:hover .RouteWebshopProduct__link {
    text-decoration: none;
    border-color: #368c23;
    color: #fff;
    background-color: #368c23;
}

.RouteWebshopProduct__linkOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-decoration: none;
}

/** Fallback for ie9 **/
.no-flexbox .RouteWebshopProduct__info {
    float: left;
    width: calc(100% - 240px);
}

.no-flexbox .RouteWebshopProduct__imageWrapper {
    float: right;
    width: 240px;
}

@media screen and (min-width: 600px) {
    .RouteWebshopProduct {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .RouteWebshopProduct__imageWrapper {
        -ms-flex-preferred-size: 240px;
        flex-basis: 240px;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .RouteWebshopProduct__info {
        -ms-flex-preferred-size: 320px;
        flex-basis: 320px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        text-align: left;
    }

    .RouteWebshopProduct__text {
        display: block;
    }
}
