html, body {
    height: 100%;
    padding: 0px;
    margin: 0px;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.3335;
    hyphens: none;
    position: initial;
}
body {
    overflow-y: scroll;
    overflow-x: hidden;
}
#app {
    position: relative;
}
a {
    -webkit-tap-highlight-color: transparent;
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
}

/* UI */
.button_primary {
    z-index: 1000;
    min-width: 120px;
    margin: 0;
    border-radius: 0.5em;
    transition: 0.2s;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    line-height: 1.33333333em;
    outline: none;
    font-weight: 500;
    color: #212121;
    font-size: 1.5rem;
    padding: .5em 1.5em;
    background-color: #A5CD38;
    box-shadow: 0px 1px 2px rgba(0, 95, 16, 0.1),
                0px 1px 8px rgba(0, 95, 16, 0.1);
    border-style: none;
    border-width: 0;
}

.button_primary:hover {
    background-color: #B2E724;
    /*background: linear-gradient(180deg, #FFD280 0%, #FFB735 100%);*/
    box-shadow: 0px 1.22278px 1.9021px rgba(0, 95, 16, 0.0243888),
                0px 3.38082px 5.25905px rgba(0, 95, 16, 0.035),
                0px 8.13971px 12.6618px rgba(0, 95, 16, 0.0456112),
                0px 27px 42px rgba(0, 95, 16, 0.07);
}

.button_secondary {
    z-index: 1000;
    min-width: 120px;
    margin: 0;
    border-radius: 0.5em;
    transition: 0.2s;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5em;
    outline: none;
    font-weight: 400;
    color: #212121;
    font-size: 1rem;
    padding: .375em 1em;
    background-color: #A5CD38;
    box-shadow: 0px 1px 2px rgba(0, 95, 16, 0.1),
                0px 1px 8px rgba(0, 95, 16, 0.1);
    border-style: none;
    border-width: 0;
}

.button_secondary:hover {
    background-color: #B2E724;
    /*background: linear-gradient(180deg, #FFD280 0%, #FFB735 100%);*/
    box-shadow: 0px 1.22278px 1.9021px rgba(0, 95, 16, 0.0243888),
                0px 3.38082px 5.25905px rgba(0, 95, 16, 0.035),
                0px 8.13971px 12.6618px rgba(0, 95, 16, 0.0456112),
                0px 27px 42px rgba(0, 95, 16, 0.07);
}