/* == Florida Lottery CSS Reset ===================================================================================== */

/* The text within hyperlinks is unstyled by default */
a {
    color: inherit;
    text-decoration: none;
}

/* Use border-box box-sizing by default. Still, allow other elements to opt-in to other box-sizing schemes if they want. */

html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

input {
    font-size: inherit;
    border: none;
}

form {
    margin: 0;
}

select {
    font-size: inherit;
    font-weight: inherit;
}

table {
    /* At least Chrome and Safari specifically set the table font-size in their user agent stylesheet. */
    /* A better default is to inherit the font-size of the container element. */
    font-size: inherit;
}

/* end */