﻿/* store-front.css */

div.prodGrid {
    text-align: center;
    margin: 0 auto;
}

a.prodItem {
    display: inline-flex;
    width: 300px;
    height: 225px;
    max-width: calc(100% - 20px);
    border-radius: 10px;
    background-color: #0d0e12;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 10px;
    margin: 10px;
    justify-content: center;
    align-items: center;
    vertical-align: top;
    outline: 4px solid transparent;
    transition: 1.0s;
    text-decoration: none;
    color: #a7a7e6 !important;
    border: 2px solid #222230;
}

    a.prodItem span.prodLabel {
        font-size: 38px;
        font-weight: bold;
        text-align: center;
        text-shadow: 0 2px 10px #0c0c10, 0 2px 10px #0c0c10, 0 2px 10px #0c0c10;
        cursor: pointer;
    }

    a.prodItem:hover {
        background-color: #222230;
        outline: 4px solid #a7a7e6;
        transition: 0.2s;
    }

a.prodSet {
    background-image: url('/img/store/zip.png');
}

a.prodSpc {
    background-image: url('/img/store/spc.png');
}

a.prodMsg {
    background-image: url('/img/store/msg.png');
}

a.prodYear {
    background-image: url('/img/store/year-green.png');
    border: 2px solid #2b2f23;
}

    a.prodYear span.prodLabel {
        font-size: 70px;
        color: #9ac256;
    }

    a.prodYear:hover {
        background-color: #222230;
        outline: 4px solid #9ac256;
        transition: 0.2s;
    }

a.prodBig {
    width: 400px;
    height: 300px;
}

h2 {
    display: inline-block;
    text-align: center;
    font-variant: small-caps;
    background-color: #1c1c28;
    padding: 10px 60px;
    border-radius: 100px;
    width: 100%;
    border-radius: 7px;
    margin-bottom: 10px;
}

    h2:nth-child(n+2) {
        margin-top: 50px;
    }

    h2 img.icon {
        width: 48px;
        margin-top: 10px;
    }