:root * {
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'num';
    src: url('num.ttf') format('truetype');
    font-style: normal;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    line-height: 1.5;
    color: #333;
    background: #fff;
}

a, input, textarea, select, button {
    outline: 0;
}

fieldset,
img {
    border: 0;
    vertical-align: middle;
}

ol, ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: #333;
    text-decoration: none;
}


input, select, button {
    vertical-align: baseline;
    border-radius: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
}

i {
    font-style: normal;
}

button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: none;
}

input[type=checkbox], input[type=radio] {
    vertical-align: middle;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    margin: 0;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
}

textarea {
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    overflow: auto;
    resize: none;
}


img {
    vertical-align: middle;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}


@keyframes animate-dropdown {
    0% {
        transform: translate3d(0, 30px, 0);
        opacity: 0.3;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes animate-dropup {
    0% {
        transform: translate3d(0, -30px, 0);
        opacity: 0.3;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes animate-flop {
    0% {
        transform: rotateX(270deg);
    }

    100% {
        transform: rotateX(360deg);
    }
}

@keyframes animate-up {
    0% {
        opacity: 0;
        transform: translateY(100vh)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes animate-left {
    0% {
        opacity: 0;
        transform: translateX(100vw)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes animate-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}