/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
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,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,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,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:none}table{border-collapse:collapse;border-spacing:0}

button {
    font:inherit;
    color: #515152
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@supports (-webkit-overflow-scrolling: touch) {
    /* CSS specific to iOS devices */
    * {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }

    body {
        -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
        -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
        -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    }
}

html {
    /* Required in order to put the footer at the bottom */
    position: relative;
    min-height: 100%;
}

svg {
    display: block;
}

/* Hide outline when clicking anchors and buttons */
a:active,
button:active {  outline: none; }

a {color: inherit; text-decoration: none;}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #333;
    background: #000;
}

/* IE locks up when it sees pages with USE tags in SVG */
use { pointer-events: none; }

/* Remove the arrow on dropdowns in IE */
select::-ms-expand { display: none; }

/* Remove the numerical stepper on input elements */
input[type=number] {-moz-appearance: textfield;}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hide-scrollbar::-webkit-scrollbar { display: none; }
