/* Resets margins and paddings */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form,label, legend, table, caption, tbody, tfoot,thead, tr, th, td, article, aside, canvas,details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}

/*  Resets box-sizing setting   */
/* ---------------------------- */

*, *:before, *:after {
    /* Chrome 9-, Safari 5-, iOS 4.2-, Android  3-, Blackberry 7- */
    -webkit-box-sizing: border-box;
    /* Firefox (desktop or Android) 28- */
    -moz-box-sizing: border-box;    
    /* Firefox 29+, IE 8+, Chrome 10+, Safari 5.1+, Opera 9.5+, iOS 5+, Opera Mini   Anything, Blackberry 10+, Android 4+ */
    box-sizing: border-box;
}

/* Completely resets form items */
/* ---------------------------- */
/* Super hard reset that removes all borders */
/* and radius of all form items. */
/* ============================ */
input,
textarea,
button, 
button:focus,
button:active {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
    outline: none;
    /* appearance: none; */
    background-color: transparent;
    cursor: none;
}
