@charset "UTF-8";

/**
 * Store: Nosso Burguer
 * CSS base template that styles the homepage according to Store settings
 * Variables:
 *     font_color = #FFFFFF
 *     background_color = #EEEEEE
 *     background_img = 
 *     background_btn_color = #333333
 *     btn_text_color = #FFFFFF
 */

/*===================*\
 * CSS Helper        *
\*===================*/
:root{
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
}

html {
    height: 100%;
}

/*===================*\
 * Site background   *
\*===================*/

body {
    background-attachment: fixed;
    background-color: #EEEEEE;
    background-image: url("");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/*==============================*\
 * Buttons                      *
\*==============================*/

/**
 * Important!
 * This class only purpose is to add backgroud color and text color
 * Do not use to add extra css
 */

.container {
    height: 100%;
    width: auto;
    margin-left: 24px;
    margin-right: 24px;
    padding: 0;
}

.js-links {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
}

a.btn {
    background: #333333;
    color: #FFFFFF;
    height: 48px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}

a.btn:hover {
    color: #FFFFFF;
}

.ftr {
    color: #777777;
    flex-shrink: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-bottom: 24px;
    margin-top: 24px;
}

.ftr a {
    color: #777777;
    text-decoration: underline;
}

h3 {
    text-align: center;
    font-size: 21px;
    font-weight: 700;
}

.is-hidden {
    display: none;
}