* {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    color: #000;
    text-decoration: none;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    background-image: url("/static/img/grass-4433605.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

h1 {
    font-size: 2em;
    margin-bottom: 1em;
}

h2 {
    font-size: 1.2em;
    margin-bottom: .6em;
}

p {
    margin-bottom: .6em;
    margin-left: 10px;
}

li {
    margin-left: 20px;
    list-style-type: circle;
}

a {
    color: #906425;
    text-decoration: underline;
    cursor: pointer;
}

a:hover {
    color: #BA8130;
}

table {
    width: 100%;
}

td {
    padding: 10px;
}

input[type="file"] {
    display: none;
}

input[type="number"] {
    text-align: right;
}

input[type="radio"] {
    display: none;
}

input[type="checkbox"] {
    display: none;
}

input:disabled {
    pointer-events: none;
    background: none;
}

.armel-input {
    background-color: #fff6;
    border: none;
    width: 100%;
    padding: 6px;
    margin: 3px 0 20px;
    border-radius: 1px;
    cursor: text;
}

.armel-input:hover, .armel-input:focus {
    background-color: #fffa;
}

.armel-radio-container {
    display: inline-block;
    margin-right: 15px;
}

.armel-radio-container input:checked~.armel-radio {
    background-color: #DB9839;
}

.armel-radio-container:hover .armel-radio {
    background-color: #BA8130;
}

.armel-radio {
    background-color: #906425;
    display: inline-block;
    margin-right: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* Create the indicator (the dot/circle - hidden when not checked) */

.armel-radio::after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */

.armel-radio-container input:checked~.armel-radio::after {
    display: block;
}

/* Style the indicator (dot/circle) */

.armel-radio-container .armel-radio::after {
    width: 8px;
    height: 8px;
    margin: 4px;
    border-radius: 50%;
    background: #fffe;
}

/* checkbox */

.armel-checkbox-container {
    display: inline-block;
    margin-right: 15px;
}

.armel-checkbox-container input:checked~.armel-checkbox {
    background-color: #DB9839;
}

.armel-checkbox-container:hover .armel-checkbox {
    background-color: #BA8130;
}

.armel-checkbox {
    background-color: #906425;
    display: inline-block;
    margin-right: 5px;
    width: 16px;
    height: 16px;
    border-radius: 1px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */

.armel-checkbox::after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */

.armel-checkbox-container input:checked~.armel-checkbox::after {
    display: block;
}

/* Style the indicator (dot/circle) */

.armel-checkbox-container .armel-checkbox::after {
    width: 8px;
    height: 8px;
    margin: 4px;
    border-radius: 1px;
    background: #fffe;
}

#save {
    position: absolute;
    right: 0;
}

.armel-button {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background-color: #906425;
    padding: 6px 11px;
    margin: 5px 0;
    border-radius: 1px;
    text-decoration: none;
    cursor: pointer;
}

.armel-button:disabled {
    color: #fff;
    background-color: #c7ab83;
    text-decoration: none;
}

.armel-button:disabled:hover {
    color: #fff;
    background-color: #c7ab83;
    cursor: not-allowed;
    text-decoration: none;
}

.armel-button:hover {
    color: #fff;
    background-color: #BA8130;
    text-decoration: none;
}

.armel-button:active {
    color: #fff;
    background-color: #DB9839;
    text-decoration: none;
}

.hidden {
    display: none;
}

.background {
    background-image: linear-gradient(#ffff, #fff8 40%);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
}

.whiteness {
    z-index: 999;
    background-color: #fff8;
    position: fixed;
    width: 100%;
    height: 100%;
}

.hopper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 128px;
    height: 128px;
    background-image: url("/static/favicon/android-chrome-512x512.png");
    background-size: contain;
    animation: hop .3s ease-out infinite alternate;
}

@keyframes hop {
    100% {
        transform: translate(-50%, -70%);
    }
}

.big-logo {
    margin-bottom: 40px;
}

.dialog {
    position: absolute;
    margin: 0;
    top: 18%;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.header {
    background-image: linear-gradient(#ffff 50%, #fff0);
    height: 100px;
    width: 100%;
    z-index: 1;
    top: 0;
    position: fixed;
    text-align: right;
    pointer-events: none;
}

.header-logo {
    position: absolute;
    left: 10px;
    top: 10px;
    pointer-events: all;
}

.header-content {
    margin: 20px;
    pointer-events: all;
}

.content {
    display: inline-block;
    position: absolute;
    width: 800px;
    max-width: 90%;
    top: 100px;
    /* center */
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-bottom: 30px;
}

.big-number {
    display: inline-block;
    width: 50%;
    margin-bottom: 80px;
}

.transaction {
    position: relative;
    background-color: #fff6;
    margin: 10px 0;
    border-radius: 1px;
    height: 80px;
}

.transaction:hover {
    background-color: #fffa;
}

.transaction-icon {
    position: absolute;
    font-size: 1.2em;
    left: 10px;
    top: 10px;
}

.transaction-content {
    position: absolute;
    left: 60px;
    top: 10px;
    max-width: 80%;
    padding-right: 100px;
}

.transaction-content h2 {
    white-space: nowrap;
    overflow: hidden;
}

.transaction-content span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
}

.transaction-right {
    position: absolute;
    text-align: right;
    right: 15px;
    top: 10px;
}

.receipt {
    width: 100%;
    height: 100px;
    padding: 20px;
    text-align: center;
}

.receiptLarge {
    height: auto;
}

.receipt img {
    max-width: 100%;
    max-height: 100%;
}

.transaction-title {
    margin-top: 40px;
}

#gdpr-footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: #fffa;
    padding: 16px;
}

.close-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

@media only screen and (orientation: portrait) {
    body {
        background-image: url("/static/img/grass-4433605-small.jpg");
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.5em;
        font-weight: 300;
        margin-bottom: 1em;
    }
}

@media only screen and (max-height: 480px) {
    .big-logo {
        display: none;
    }
}