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;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers 
*/
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    margin: 0;
    padding: 0
}

body {
    letter-spacing: .01em;
    font-size: 1.5em
}

h1,
h2,
h3 {
    letter-spacing: -.1rem
}

a {
    transition: all .1s ease
}

.row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between
}

.row>:first-child {
    margin-left: 0
}

.row>:last-child {
    margin-right: 0
}

.col {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.col,
[class*=" col-"],
[class^=col-] {
    margin: 1rem
}

.col-1 {
    flex: 1
}

.col-2 {
    flex: 2
}

.col-3 {
    flex: 3
}

.col-4 {
    flex: 4
}

.col-5 {
    flex: 5
}

.col-6 {
    flex: 6
}

.col-7 {
    flex: 7
}

.col-8 {
    flex: 8
}

.col-9 {
    flex: 9
}

.col-10 {
    flex: 10
}

.col-11 {
    flex: 11
}

.col-12 {
    flex: 12
}

@media screen and (max-width:480px) {
    .col,
    [class*=" col-"],
    [class^=col-] {
        margin: 2em 0;
        flex: 0 0 100%
    }
    .table.responsive {
        position: relative;
        display: block
    }
    .table.responsive td,
    .table.responsive th {
        margin: 0
    }
    .table.responsive thead {
        display: block;
        float: left;
        border: 0
    }
    .table.responsive thead tr {
        display: block;
        padding: 0 10px 0 0;
        border-right: 2px solid #333030
    }
    .table.responsive th {
        display: block;
        text-align: right
    }
    .table.responsive tbody {
        display: block;
        overflow-x: auto;
        white-space: nowrap
    }
    .table.responsive tbody tr {
        display: inline-block
    }
    .table.responsive td {
        display: block;
        min-height: 16px;
        text-align: left
    }
    .table.responsive tr {
        padding: 0 10px
    }
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.text-center {
    text-align: center
}

.full-screen {
    width: 100%;
    min-height: 100vh
}

.vertical-align {
    display: flex;
    align-items: center
}

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

.center {
    align-items: center;
    display: flex
}

.center {
    justify-content: center
}

.left {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.fixed {
    position: fixed;
    width: 100%
}

@media screen and (max-width:400px) {
    .hide-phone {
        display: none
    }
}

@media screen and (max-width:480px) {
    .hide-tablet {
        display: none
    }
}
