:root {
    --em-color-white: #FFF;
    --em-color-black: #000;
    --em-color-extra-accent: #58656F;
    --em-color-lgray: #ececec;
    --em-color-silver: #f3f3f3;
    --em-color-gray: #777;
    --em-color-darkgray: #333;
    --em-color-darkgray-hover: #556170;
    --em-color-bg: #f1f1f1;
    --em-color-footer: #353535;
    --em-color-accent: #FF7630;
    --em-color-accent-hover: #E66B2C;
    --em-color-extra-accent-hover: #075180;
    --em-border-radius: 10px;
    --em-button-height: 40px;

    --em-font: 'Montserrat', sans-serif;

    --em-03-seconds: all .3s cubic-bezier(.5,0,.5,1);
    --em-02-seconds: all .2s cubic-bezier(.5,0,.5,1);
    --em-01-seconds: all .1s cubic-bezier(.5,0,.5,1);
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    height: 100%;
    overflow-y: scroll;
}
html.lock {
    overflow: hidden;
}
body, html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--em-color-white);
}
div {
    display: block;
}
a {
    color: var(--em-color-black);
    text-decoration: none;
}
p {
    margin: 0;
}
.main {
    width: 100%;
}
ul {
    list-style-type: "—  ";
}
.notificationContainer {
    position: fixed;
    display: flex;
    flex-direction: column;
    right: 0;
    bottom: 0;
    margin: 0 30px 10px 0;
    z-index: 999;
}
.notification {
    position: relative;
    font-family: var(--em-font);
    font-size: 16px;
    width: 500px;
    color: var(--em-color-white);
    padding: 30px 25px;
    background: var(--em-color-extra-accent);
    border-radius: 24px;
    margin: 0 0 10px;
}