*, *:before, *:after {
    box-sizing: border-box;
}
html {
    height: 100%;
    width: 100%;
  }
html{
    font-size: 62.5%;
}
img{
    max-width: 100%;
}
body{
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    font-family: "Quicksand", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #222;
    background-color: #fafafa;
    display: grid;
    min-height: 100%;
    grid-template-rows: auto 1fr auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: uppercase;
}
h1{
    font-family: "Lato";
    font-size: 4.0rem;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.1rem;
}
h2{
    font-family: "Quicksand";
    font-size: 3.6rem;
    line-height: 1.25;
    letter-spacing: -.1rem;
}
h3{
    font-family: "Quicksand";
    font-size: 3.0rem;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -.1rem;
}
h4{
    font-family: "Quicksand";
    font-size: 2.4rem;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -.08rem;
}
h5{
    font-family: "Quicksand";
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: -.05rem;
}
h6{
    font-family: "Quicksand";
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0;
}

h6 span{
    font-style: italic;
}
h6 span.faq-answer{
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}
  
@media (min-width: 550px) {
    h1 { font-size: 5.0rem; }
    h2 { font-size: 4.2rem; }
    h3 { font-size: 3.6rem; }
    h4 { font-size: 3.0rem; }
    h5 { font-size: 2.4rem; }
    h6 { font-size: 1.5rem; }
}
  
p{
    margin-top: 0;
}
section p + p, section p + h5{
    margin-top: 20px;
}
section.paragraph-close p + p{
    margin-top: 10px;
}
section.paragraph-close h5{
    margin-bottom: 10px;
}
a:hover{
    color:#cc0000;
}
a{
    color: #222;
    text-decoration: none;
    font-weight: 700;
}
input{
    width: 100%;
    padding: 10px;
    font-size: 1.2rem;
    font-family: "Quicksand";
    letter-spacing: 0.1rem;
    border:1px solid #929292;
    border-radius: 2px;
    font-weight: 500;
}
input:focus {
    border: 1px solid #000;
    background-color: rgba(200, 200, 200,0.1);
    outline: 0;
}
input:hover {
    background-color: rgba(200, 200, 200,0.1);
}
input.alert{
    border: 1px solid rgb(248, 3, 3);
    background-color: rgba(255, 0, 0, 0.4);
}

header{
    padding-top: 20px;
    text-align: center;
}
header nav{
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav div{
    width: 50px;
}
footer{
    text-align: center;
    margin-bottom: 10px;
}
footer nav{
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 5px;
}
footer nav p{
    margin: 0 10px;
    font-size: 0.85em;
    font-weight: 500;
}
footer p{
    font-size: 0.8em;
}
strong{
    font-weight: 600;
}
li{
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 1.5em;
}

/*
    BASE
*/
.base{
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}
.base.standard{
    max-width: 960px;
}
.base.narrow{
    max-width: 500px;
}
.base.wide{
    max-width: 1600px;
}

/*
    ROW
*/
.row{
    display: grid;
    grid-template-columns: 4fr 1fr 2fr;
    align-items:center;
    justify-items:start;
    padding:0 20px;
}
.row .right {
    justify-self: end;
}
* + .row, .row + hr{
    margin-top:20px;
}

/*
    ALIGN
*/
.left{
    text-align: left;
}
.center{
    text-align: center;
}

/*
    SPACING
*/
.above{
    margin-top: 20px;
}
.above-more{
    margin-top: 40px;
}
.below{
    margin-bottom: 20px;
}
.below-more{
    margin-bottom: 60px;
}


.grid{
    display: grid;
}
.grid.mono{
    grid-template-columns: 1fr;
    column-gap: 1%;
}
.grid.di{
    grid-template-columns: 1fr 1fr;
    column-gap: 1%;
}

/*
    TEXT
*/
.upper{
    text-transform: uppercase;
}
.text-red{
    color:#cc0000;
}

/*
    BUTTONS
*/
.header-logo:hover{
    -webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.header-logo{
    max-width: 90%; 
}
.button:hover{
    background-color: #fff;
    border:1px solid #929292;
}
.button{
    display: block;
    margin:0 auto;
    max-width: 300px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 5px;
    color:#fff;
    background-color: #f70000;
    border:1px solid #000000;
}
.button.above{
    margin-top:40px;
}


.image-button:hover{
    -webkit-filter: invert(.9);
    filter: invert(.9);

    -webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.image-button{
    -webkit-filter: grayscale(0);
	filter: grayscale(0);
    display: block;
    margin:0 auto;
    margin-top:55px;
    width: 184px;
    height: 62px;
    background-image: url("gfx/repro.png");
}



/*
    ICONS
*/
.icon-cart{
    right: 0;
    display: block;
    background-image: url("gfx/cart-empty.png");
    width: 50px;
    height: 50px;
}
.icon-cart.full{
    background-image: url("gfx/cart-empty.png");
}