html {
    font-family: -apple-system, BlinkMacSystemFont, 'avenir next', avenir, 'helvetica neue', helvetica, ubuntu, roboto, noto, 'segoe ui', arial, sans-serif;
    font-size: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeSpeed;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

*:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

svg {
    max-height: 100%;
    pointer-events: none;
}

body {
    font-size: 1rem;
    padding: 5vw;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

input, textarea, button, select {
    font-family: inherit;
    border: none;
    background-color: transparent;
}

input[disabled], textarea[disabled], button[disabled], select[disabled] {
    cursor: not-allowed;
}

textarea {
    resize: vertical;
}

.bg-white, .bg-white-hover:hover, .bg-white-hover:focus { background-color: #fff }
.white, .white-hover:hover, .white-hover:focus { color: #fff }
.bg-white-90 { background-color: rgba(255, 255, 255, .9) }
.bg-black, .bg-black-hover:hover, .bg-black-hover:focus { background-color: #111 }
.black, .black-hover:hover, .black-hover:focus { color: #111 }
.bg-blue, .bg-blue-hover:hover, .bg-blue-hover:focus { background-color: #004e9b }
.blue, .blue-hover:hover, .blue-hover:focus { color: #004e9b }
.b--blue { border-color: #004e9b }
.bg-red, .bg-red-hover:hover, .bg-red-hover:focus { background-color: #e01c2f }
.bg-silver, .bg-silver-hover:hover, .bg-silver-hover:focus { background-color: #999999 }
.red, .red-hover:hover, .red-hover:focus { color: #e01c2f }
.green, .green-hover:hover, .green-hover:focus { color: #19A974 }
.bg-washed-red, .bg-washed-red-hover:hover, .bg-washed-red-hover:focus { background-color: #FFDFDF }
.bg-washed-green, .bg-washed-green-hover:hover, .bg-washed-green-hover:focus { background-color: #E8FDF5 }

.zoom {
    transition: transform .2s;
}

.zoom:hover {
    transform: scale(2);
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.text-small {
      font-size:13px;
   }
