
/*@font-face {
    font-family: "Roboto";
    src: url("/lib/fonts/Roboto-Regular.ttf");
}
*/
@font-face {
    font-family: "OnePlusSans";
    src: url("/lib/fonts/OnePlusSans-Regular.ttf");
}

@font-face {
    font-family: "OnePlusSansThin";
    src: url("/lib/fonts/OnePlusSans-Thin.ttf");
}

@font-face {
    font-family: "Impact";
    src: url("/lib/fonts/impact.ttf");
}

:root {
    --yellow: #d79e1a;
    --red: #ca2b2b;
    --green: #00cc00;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

h1, h2, h3 {
    font-family: Impact;
    /*text-shadow: black 0.1em 0.1em 0.2em;*/
    text-transform: uppercase;
    text-align: center;
}

h1 {
    font-size: 1.8em;
}

h2 {
    font-size: 1.4em;

}

h2.payment {
    color: #f1f1f1;
    font-size:4rem;
}


h3 {
    font-size: 1.2em;
}


* {
    box-sizing: border-box;
}

body, html {
    /*font-family: "Roboto";*/
    font-family: "OnePlusSans";
    font-size: 17px;
    height: 100%;
    background: black;
    color: white;
}

button, input[type="submit"], input[type="reset"] {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

input {
    all: unset;
}

input.copy-text {
    outline: none;
    border: none;
    background-image: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    display: inline-block;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: 1.8em;
    padding: 5px 0;
    /*text-shadow: 2px 2px 4px #000000;*/
    position: relative;
    text-align: center;
}

.copied-text {
    color: #ddd;
    text-shadow: none;
}

.background {
    background: transparent;
    background-image: url("/images/background3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    -webkit-filter: blur(4px);
    -moz-filter: blur(4px);
    filter: blur(4px);
    height: 100%;
    width: 100%;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}

/* ---------------------------------- ANIMATION ------------------------------------------ */

.animated {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeInBot {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutTop {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeOutTop {
    animation-name: fadeOutTop;
}

.fadeInBot {
    animation-name: fadeInBot;
}

.fadeOut {
    animation-name: fadeOut;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeIn {
    animation-name: fadeIn;
}

/* ----------------------------------- END OF ANIMATION ---------------------------------------------- */


a {
    text-decoration: none;
    cursor: pointer;
}

#status-container {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

#error-container {
    font-size: 20px;
    color: #f00;
    text-transform: uppercase;
    text-align: center;
}



#file-selector {
    display: none;
}

.white {
    background: white;
    color: black;
}

.grey {
    background: #aaa;
    color: white;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    text-align: center;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-flow: column nowrap;
    -webkit-flex-flow: column nowrap;
    flex-flow: column nowrap;

    margin: auto;

    -webkit-justify-content: center;
    justify-content: center;

    list-style-type: none;
}

.menu-content {
    position: relative;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
    background: #000;
    overflow: hidden;
    /*   background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 10px black;*/
    z-index: 50;
}

.body-content {
    position: relative;
    overflow: hidden;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-flow: column nowrap;
    -webkit-flex-flow: column nowrap;
    flex-flow: column nowrap;
  
/*    -webkit-justify-content: center;
    justify-content: center;*/

     -webkit-justify-content: flex-start;
    justify-content:  flex-start;

    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.bottom-content {
    position: absolute;
    overflow: hidden;
    bottom: 0;
    width: 100%;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-justify-content: center;
    justify-content: center;

    padding: 4px 0px;
}

.body-content > * {
    margin: auto;
}

.front-content {
    position: absolute;
    background: rgba(0, 0, 0, 1);
    color: white;

    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 51;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-grow: 1;
    flex-grow: 1;

    -ms-flex-flow: column nowrap;
    -webkit-flex-flow: column nowrap;
    flex-flow: column nowrap;

    -webkit-justify-content: center;
    justify-content: center;

    overflow: auto;   
}

.front-content > * {
    margin: 10px auto !important;
}


.progress {
    height: 30px;
    width: 250px;
    position: relative;
    border-radius: 3px;
    margin: 40px auto 0 auto;
}

.progress-background {
    height: 100%;
    overflow: hidden;
    width: 100%;
    display: inline-block;
    border-radius: inherit;
    font-size: 30px;
    background-size: 1em 1em;
    box-sizing: border-box;
    outline: 1px solid #333;
}

.progress-bar {
    position: absolute;
    /*left: 50%;*/
    left: 0;
    bottom: 0;
    /*transform: translateX(-50%);*/
    height: inherit;
    border-radius: inherit;
    background: #3c87d5;
    box-shadow: inset 0px 0px 10px -4px rgba(0,0,0,1);
    -webkit-box-shadow: inset 0px 0px 10px -4px rgba(0,0,0,1);
    -moz-box-shadow: inset 0px 0px 10px -4px rgba(0,0,0,1);
}

.progress-bar.green {
    background: #2ddd32;
}

.progress-bar.red {
    background: #dd2d2d;
}

.progress-bar.blue {
    background: #2d84dd;
}

.progress-bar.yellow {
    background: #ddbf2d;
}


.progress-percent {
    position: absolute;
    text-align: center;
    line-height: 30px;
    color: white;
    width: 100%;
    left: 0;
    bottom: 0;
    height: inherit;
}

.progress-info {
    position: absolute;
    text-align: left;
    width: 100%;
    top: -30px;
    bottom: 0;
    height: inherit;
    color: white;
    font-size: 18px;
    line-height: 30px;
}




.price-info-1 {
    padding: 0 3px 0 5px;
}

.button {
    display: inline-block;
    padding: 10px;
    cursor: pointer;
    background: white;
    color: black;
    border-radius: 4px;
    font-size: 18px;
    margin: 4px 8px;
    font-weight: normal;
    box-shadow: 2px 2px 4px 0px #0d0d0d;
    /*border: 0.5px solid rgba(255, 255, 255, 0.5);*/
    text-shadow: 2px 2px 4px #000000;
    min-width: 250px;
    line-height: 23px;
    position: relative;
    text-align: center;
    font-family: Impact;
    text-transform: uppercase;
    /*transition: all 0.2s ease 0s;*/
}

.button > i {
    line-height: 23px;
    float: left;
    padding: 0 10px 0 0;
}

.button-edit {
    margin: 10px auto;
}

.button-circle {
    border-radius: 50%;
    margin: 0;
    font-size: 18px;
    padding: 10px;
    box-shadow: 2px 2px 4px 0px #0d0d0d;
    /*text-shadow: 2px 2px 4px #000000;*/
}
.button-circle .fas {
    color: white;
}

.button-circle span {
    color: white;
}

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

.button.small {
    text-align: left;
    min-width: unset;
}

.button.blue {
    background: #1c80d7;
    color: white;
}
.button.blue:hover {
    background: #1c80d795;
}
.button.blue:checked {
    background: #1c80d795;
}

.button.yellow {
    background: #d79e1a;
    color:white;
}
.button.yellow:hover {
    background: #d79e1a95;
}
.button.yellow:checked {
    background: #d79e1a95;
}

.button.red {
    background: #ca2b2b;
    color: white;
}
.button.red:hover {
    background: #ca2b2b95;
}
.button.red:checked {
    background: #ca2b2b95;
}

.button.green {
    background: #00cc00;
    color: white;
}
.button.green:hover {
    background: #00cc0095
}
.button.green:checked {
    background: #00cc0095
}

.button.gray {
    background: #808080;
    color: white;
}
.button.gray:hover {
    background: #80808095
}
.button.gray:checked {
    background: #80808095
}

.button.btn-paper {
    padding: 5px 10px;
}

.button.btn-paper > i {
    position: absolute;
    left: 10px;
    margin: 0;
    top: 16px;
}

.button.btn-paper > span {
    display: block;
}

.button.btn-paper > .thin {
    font-family: "OnePlusSansThin";
    font-size: 14px;
}


.button.btn-format {
    padding: 5px 10px;
}

.button.btn-format > i {
    position: absolute;
    left: 10px;
    margin: 0;
    top: 16px;
}

.button.btn-format > span {
    display: block;
}

.button.btn-format > .thin {
    font-family: "OnePlusSansThin";
    font-size: 14px;
}

.button.btn-large {
    padding: 5px 10px;
    width: 280px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.button.btn-large > i {
    position: absolute;
    left: 10px;
    margin: 0;
    top: 38px;
}

.button.btn-large > span {
    display: block;
}

.button.btn-large > .thin {
    font-family: "OnePlusSansThin";
    font-size: 14px;
}

.info .blue {
    color: #59b2ff;
}

.info .yellow {
    color: #d79e1a;
}

.info .red {
    color: #ca2b2b;
}

.info.green {
    color: #00cc00;
}

.paper-name {
    float: left;
}

.paper-price {
    font-size: 14px;
    float: right;
    font-family: "OnePlusSansThin";
}

.format-name {
    float: left;
}

.hide {
    display: none !important;
}

.plus {
    position: absolute;
    cursor: pointer;
    bottom: -40px;
    right: 0;
    margin: 5px;
    font-size: 30px;
}

.plus-edit {
    position: unset;
}

.moin {
    position: absolute;
    cursor: pointer;
    bottom: -40px;
    left: 0;
    margin: 5px;
    font-size: 30px;
}

.moin-edit {
    position: unset;
}


.disabled {
    color: grey;
    cursor: default;
}

.edit {
    position: absolute;
    cursor: pointer;
    font-size: 45px;
    left: calc(50% - 16px);
    bottom: calc(50% - 16px);
    opacity: .70;
    text-shadow: 2px 2px 3px #333;
}

.paper {
    position: absolute;
    font-size: 16px;
    text-align: center;
    bottom: 0;
    left: 0;
    padding: 0px 4px;
    font-weight: normal;
    opacity: .80;
    text-shadow: 1px 1px 2px #000;
}

.paper-edit {
    position: unset;
    margin: 1em 0;
}

.format {
    position: absolute;
    font-size: 16px;
    text-align: center;
    top: 0;
    left: 0;
    padding: 0px 4px;
    font-weight: normal;
    opacity: .80;
    text-shadow: 1px 1px 2px #000;
}

.format-edit {
    position: unset;
    margin: 1em 0;
}


.close {
    position: absolute;
    cursor: pointer;
    margin: 3px;
    font-size: 25px;
    right: 0;
    opacity: .90;
    text-shadow: 2px 2px 3px #333;
}

.signout {
    cursor: pointer;
    right: 0;
    color: white;
}


.info {
    line-height: 24px;
    font-size: 18px;
    color: white;
    padding: 5px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: Impact;
    text-transform: uppercase;


}

.left, .right {
    -webkit-flex: 1;
    -ms-flex: 1;
    -moz-box-flex:1;
    flex: 1;
    letter-spacing: 0.1em;
}
.left {
    text-align: left;  
}
.right {
    text-align: right;
}

.right > i, .left > i {
    padding: 0px 1px;
    color: #c8c8c8;
}

.icon {
    height: 28px;
    width: 28px;
    margin: 3px 0 0 0;
}

.step-two {
    font-family: Impact;
    background: #919292;
    /*box-shadow: 2px 2px 4px 0px #0d0d0d;*/
    padding: 7px;
    border-radius: 20px;
    border: 5px solid #ddd;
    /*outline-offset: -5px;*/
    /*margin: 0 10px 0 10px;*/
}

.step-two #text {
    color: black;
    font-weight: normal;
    width: 100%;
}

.step-two-issue {
    color: #ccc;
    font-family: OnePlusSans;
    font-size: 14px;
}

.step-two-issue span {
    color: white;
}

.bigtext {
    font-size: 50px;
}

.amount {

}

.amount::after {
    content: " €";
}


.loader, .loader:before, .loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    animation-fill-mode: both;
    animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loader {
    color: #FFF;
    font-size: 7px;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
    margin-bottom: 20px !important;
    margin-top: -10px !important;
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.loader:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
}

@keyframes bblFadInOut {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em
    }

    40% {
        box-shadow: 0 2.5em 0 0
    }
}

