* {
    box-sizing: border-box;
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}

article,aside,details,figcaption,figure,hgroup,menu,nav,section {
    display: block;
}

ol,ul,li {
    list-style: none;
}

blockquote,q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

html,body {
    scroll-behavior: smooth;
    background: #ffffff;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    -moz-user-select: none;
    /* Firefox all */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
    line-height: 1;
    color: #212121;
    font-family: 'Roboto', sans-serif;
}
main {
    display: flex;
    flex-direction: column;
    flex: 1;
}


h1{
    font-size: 6rem;
    letter-spacing: -1.5px;
    font-weight: lighter;
}
    h2{
        font-size: 3.75rem;
        letter-spacing: -0.5px;
        font-weight: lighter;
    }
        h3{
            font-size: 3rem;
            letter-spacing: 0px;
            font-weight: normal;
        }
            h4{
                font-size: 2.125rem;
                letter-spacing: 0.25px;
                font-weight: normal;
            }
                h5{
                    font-size: 1.5rem;
                    letter-spacing: 0px;
                }
                    h6{
                        font-size: 1.25rem;
                        letter-spacing: 0.15px;
                        font-weight:bold;
                        
                    }
p{
    font-size: 1rem;
    letter-spacing: .5px;
}
caption{
    font-size: .75rem;
    letter-spacing: .4px;
    text-transform: uppercase;
}
button{
    font-size: 0.875rem;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

    table tbody > .material-icons {
        display: block;
    }

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

    fieldset > label {
        width: 100%;
        margin: 1rem 0;
    }

    fieldset > select {
        width: 100%;
    }

legend {
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: 400;
}

li, a {
    list-style: none;
    text-decoration: none;
}

button {
    background: none;
    border: 0;
    font-size: 1rem;
}

input {
    border: 0 none;
    outline: 0;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
}

    input[type=checkbox] {
        width: 12px !important;
        padding: 0;
    }

    input[type="number"] {
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
    }

        input[type=number]::-webkit-inner-spin-button,
        input[type=number]::-webkit-outer-spin-button {
            -webkit-appearance: none;
        }

.hidden {
    display: none!important;
}

/*
** Display Flex 
*/

.flex {
    display: flex;
}

.flex-1 {
    display: flex;
    flex: 1;
}
    .flex-2 {
        display: flex;
        flex: 2;
    }
        .flex-3 {
            display: flex;
            flex: 3;
        }
            .flex-4 {
                display: flex;
                flex: 4;
            }
                .flex-5 {
                    display: flex;
                    flex: 5;
                }
                    .flex-6 {
                        display: flex;
                        flex: 6;
                    }

.flex-row {
    display: flex;
    flex-direction: row;
}

    .flex-row--reverse {
        display: flex;
        flex-direction: row-reverse;
    }

.flex-column {
    display: flex;
    flex-direction: column;
}

    .flex-column--reverse {
        display: flex;
        flex-direction: column-reverse;
    }

.flex-wrap {
    flex-wrap: wrap;
}

.flex-flow--row {
    display: flex;
    flex-flow: row wrap;
}

.flex-flow--column {
    display: flex;
    flex-flow: column wrap;
}

.justify-content--start {
    display: flex;
    justify-content: flex-start;
}

.justify-content--center {
    display: flex;
    justify-content: center;
}

.justify-content--end {
    display: flex;
    justify-content: flex-end;
}
.align-self--start {
    display: flex;
    align-self: flex-start;
}
.align-self--center {
    display: flex;
    align-self: center;
}

.alignself--end {
    display: flex;
    align-self: flex-end;
}
.content-start {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    align-content: flex-start;
}
.content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.content-end {
    display: flex;
    justify-content: end;
    align-items: flex-end;
    align-content: flex-end;
}

/*
** Texto
*/

.text-small {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.8rem;
    font-style: normal;
}

.text-bold {
    font-weight: bold;
}

.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

/*
** Sombras do sistema de elevação do Google Material Design
*/
.box-box-shadow--0dp{
    box-shadow: none;
}

.box-box-shadow--1dp{
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.14), 0 2px 1px -1px rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.20);
}

.box-box-shadow--2dp{
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.20);
}

.box-box-shadow--3dp{
    box-shadow: 0 3px 4px 0 rgba(0,0,0,0.14), 0 3px 3px -2px rgba(0,0,0,0.12), 0 1px 8px 0 rgba(0,0,0,0.20);
}

.box-box-shadow--4dp{
    box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.20);
}
.box-box-shadow--6dp{
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.14), 0 1px 18px 0 rgba(0,0,0,0.12), 0 3px 5px -1px rgba(0,0,0,0.20);
}
.box-box-shadow--8dp{
    box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.20);
}
.box-box-shadow--9dp{
    box-shadow: 0 9px 12px 1px rgba(0,0,0,0.14), 0 3px 16px 2px rgba(0,0,0,0.12), 0 5px 6px -3px rgba(0,0,0,0.20);
}
.box-box-shadow--12dp{
    box-shadow: 0 12px 17px 2px rgba(0,0,0,0.14), 0 5px 22px 4px rgba(0,0,0,0.12), 0 7px 8px -4px rgba(0,0,0,0.20);
}
.box-box-shadow--16dp{
    box-shadow: 0 16px 24px 2px rgba(0,0,0,0.14), 0 6px 30px 5px rgba(0,0,0,0.12), 0 8px 10px -5px rgba(0,0,0,0.20);
}
.box-box-shadow--24dp{
    box-shadow: 0 24px 38px 3px rgba(0,0,0,0.14), 0 9px 46px 8px rgba(0,0,0,0.12), 0 11px 15px -7px rgba(0,0,0,0.20);
}

/*
** Media Queries 
** Mobile
*/
@media all and (min-width:640px) {
    .only-mobile {
        display: none !important;
    }
}

@media all and (max-width:640px) {
    .flex-column--mobile {
        display: flex;
        flex-direction: column !important;
    }
    .flex-column--mobile>[class^="flex-"] {
        flex: 1 !important;
    }
}