/*--------------------------------------------------------------------------*\
	Base CSS behaviour all tags
\*--------------------------------------------------------------------------*/

*,
*:before,
*:after {
    /*box*/
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    /*border*/
    outline: none;

    /*other*/
    -webkit-appearance: none;
    appearance: none;
}