/* CSS Document */

/* ------- Global styles ------- */

body
{
    color: #6b6b6b;
}

body,
input, 
button
{
    font-family: 'Maven Pro', sans-serif;
}

h1,
h2,
h3
{
    color: #2A2A2A;
}

h1
{
    font-size: 3.2em;
    line-height: 1.4;
    padding: 0 10%;
    margin-bottom: 20px;
}

h2
{
    font-size: 2.4em;
    line-height: 1.3;
}

p
{
    font-size: 1.7em;
    line-height: 1.6;
    margin-bottom: 8px;
}

button
{
    background: #45a1e8;
    color: #fff;
    padding: 10px 20px;
    -webkit-appearance: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1.6em;   
    display: inline-block;
}

button:hover
{
    background: #009ee3;
}

.confirmation button 
{
    margin-top: 20px;
}

/* ------- Layout ------- */

.page-wrap
{
    width: calc(100% - 30px);
    max-width: 96em;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0;
}


/* ------- Product selection page ------- */

h2.choose-product
{
    margin-top: 30px;
}

.product-list
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 15px;
}

.product-list li
{
    padding: 20px;
    background: #f7f7f7;
    margin: 10px;
    border: 1px solid #eaeae8;
    width: 200px;
    height: 220px;
}

.product-list li:hover
{
    cursor: pointer;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
    border-color: #d0d0d0;
}

.product-list h3
{
    font-size: 1.85em;
    margin: 10px 0;
}

.product-list img
{
    width: 128px;
    height: auto;
}


/* ------- Form styles ------- */

form
{
    max-width: 540px;
    margin: 0 auto;
    margin-top: 20px;
}

label
{
    display: block;
    margin-bottom: 20px;
    text-align: left;
    font-size: 1.6em;
    line-height: 1.4;
}

input[type="text"]
{
    width: 100%;
    font-size: 1.1em;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid lightgrey;
}

.opt-in-checkbox
{    
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
}

.opt-in-checkbox input
{
    position: absolute;
    top: 1px;
    left: 0;
}

.highlight
{
    display: inline-block;
    background: #BFE9AC;
    padding: 20px 30px;
    border-radius: 5px;
    margin: 10px 0 15px;
}

.highlight p
{
    font-style: italic;
    margin: 10px 0 0;
}

.highlight_order-number
{
    display: inline-block;
}


/* ------- Footer logos ------- */

.footer-logos
{
    margin-top: 50px;
}

.footer-logos li 
{
    display: inline-block;
    max-width: 100px;
    margin: 0 10px;
}

.footer-logos li img
{
    width: 100%;
    height: auto;
}


/* ------- Responsive styles ------- */

@media only screen and (max-width: 850px) {
    
    h1
    {
        font-size: 2.8em;
    }
}

@media only screen and (max-width: 750px) {

.product-list h3
    {
        font-size: 1.8em;
    }
}

@media only screen and (max-width: 540px) {
    
    h1
    {
        font-size: 2.2em;
    }

    p
    {
        font-size: 1.5em;
    }
    
    .product-list
    {
        flex-direction: column;
        max-width: 300px;
        margin: 20px auto 0;
    }

.thumb
{
	height: 64px;
}

