﻿html {
    box-sizing: border-box;
}

* {
    user-select: none;
    -webkit-tap-highlight-color: rgba(255,255,255,0);
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

input[type],
[contenteditable] {
	user-select: text;
}

body,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-size: 100%;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

b {
    font-weight: 400;
}

em,
i {
    font-style: normal;
}

div:focus {
    outline: 0;
}

a:focus {
    outline: 0;
}

input,
fieldset {    
    border: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
    font-size: 1rem;
    font-family: inherit;
}

fieldset {
    appearance: none;
}

input::-ms-clear {
    display: none;
}

input:focus {
    outline: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
}

svg {
    display: inline-flex;
}

    svg text {
        color: #333333;
        font-family: 'Open Sans', 'sans-serif';
        font-style: normal;
        font-weight:600;
    }

img {
    max-width: 100%;
    display: block;
}