body, h1, h2, p, ul, li, button, input, textarea {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

img {
    border: none;
}

html {
    background: #f5f5f5;
}

body {
    font-family: 'Avenir', Helvetica, Arial, sans-serif;
    color: #333;
    font-size: 14px;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#app {
    width: 100%;
    height: 100%;
}

input, textarea, select, button {
    font-family: 'Avenir', Helvetica, Arial, sans-serif;
    outline: none;
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

i {
    font-style: normal;
}

.f-l {
    float: left;
}

.f-r {
    float: right;
}

.f-h {
    flex-direction: row;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #e5e5e5;
}

::-webkit-scrollbar-thumb {
    background-color: #a6a6a6;
}

.loader {
    border-color: #333;
    border-width: 2px;
    border-style: solid;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: 1s loader linear infinite;
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
    box-sizing: border-box;
}
@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.toasted.primary{
    font-weight: normal !important;
}
.toasted-container.top-right{
    top: 5px !important;
    right: 15px !important;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(MaterialIcons-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'FZTANTI';
    font-style: normal;
    font-weight: 400;
    src: url(FZYANTI.ttf);
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.text-color-dark {
    color: #252424;
}

.text-color-light{
    color: white
}

.text-color-lightdark {
    color: #333333;
}

.text-color-green {
    color: #69e169;
}

.text-color-purple {
    color: #a138a1;
}

.text-color-danger {
    color: #c22704;
}

.text-color-orange {
    color: orange;
}


.bg-color-orange {
    background-color: orange;
}

.bg-color-danger {
    background-color: #c22704;
}

.bg-color-blue {
    background-color: cornflowerblue;
}

.border-color-blue {
    background-color: cornflowerblue;
}

.border-color-orange {
    border: 4px solid orange;
}

.border-color-danger {
    border: 4px solid red;
}

.bg-color-normal {
    background: linear-gradient(0deg, #FFFFFF, #F0ECF7);
}

.bg-color-danger {
    background: linear-gradient(90deg, #E43347, #FF5400);
}

.bg-color-warn {
    background: linear-gradient(90deg, #FFA22E, #FAC704);
}
