:root {
    --bolder: 500;
    --extra-bold: 700;
    --pad: 1rem;
}
/* @charset "utf-8"; */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
html {
    overflow-y: scroll;
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
}
notification {
    display: flex;
    align-items: stretch;
    background-color: #fff;
    border: 1px solid #e4e8ea;
    padding: var(--pad);
    margin: var(--pad);
    color: #444;
    border: 2px solid;
    border-radius: 4px;
}
notificaton .content {
    flex-grow: 1;
}
notification:before {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--pad);
    height: var(--pad);
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid;
    margin-right: calc(var(--pad) * 1.6);
    flex-shrink: 0;
}
notification.warning {
    background-color: #fffcf3;
    border-color: #fae5a9;
    color: #5c4813;
}
notification.warning:before {
    font-size: 90%;
    font-weight: var(--bolder);
    content: '!';
    border-color: #f4ca64;
    box-shadow: 0 0 0 4px #fae29f;
}
notification.confirm {
    border-color: #a8eec0;
    background-color: #e3fcec;
    color: #1e5339;
}
notification.confirm:before {
    content: '✓';
    border-color: #53c272;
    box-shadow: 0 0 0 4px #a8eec0;
}
notification.error {
    background-color: #fce7e8;
    border-color: #f4aaaa;
    color: #5f1717;
}
notification.error:before {
    font-size: 90%;
    font-weight: var(--bolder);
    content: '!';
    border-color: #e36363;
    box-shadow: 0 0 0 4px #f4aaaa;
}
.red {
    color: red;
}
.blue {
    color: blue;
}
.green {
    color: green;
}

@media (min-width: 375px) {

html {
    font-size: 15.6px;
}

}

@media (min-width: 1024px) {

notification {
    margin-left: 0;
    margin-right: 0;
}
}