@charset 'utf-8';

/*  ========================================================================
    JUICE -> FRAMEWORK -> RESET
    ========================================================================  */

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

body {
    -webkit-tap-highlight-color: transparent;
    min-width: 300px;
    overflow-x: hidden;
    width: 100%;
}

* {
    border: 0;
    box-sizing: inherit;
    margin: 0;
    padding: 0;

    // Pseudo elements
    &::before,
    &::after {
        box-sizing: inherit;
    }
}

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

b, strong {
    font-weight: 700;
}

blockquote, q {
    quotes: none;

    // Pseudo elements
    &::before,
    &::after {
        content: '';
        content: none;
    }
}

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

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

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