body{
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

small, .small{
    font-size: 70%;
}
a, a:focus{
    text-decoration: none;
    color: #888888;
}
a:active, a:hover{
    text-decoration: none;
    color: #888888;
}
button, button:focus{
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 1.1rem;
    margin-right: 2em;
    margin-left: 2em;
    text-align: center;
    border-radius: 0.4em;
    margin-top: 1em;
    margin-bottom: 1em;
    font-weight: 700;
}
button:hover, button:active{
    background-color: #fff;
    color: #000;
}
button:disabled{
    border-color: #888888;
    color: #888888;
    background-color: #1b1b1b;
}

.hyce{
    text-align: center;
    font-size: 0.7rem;
    margin-top: 2rem;
}
.error{
    font-size: 0.8rem;
    color: #eb1c26;
}

.date{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
    color: #000;
    border-style: none;
}
.date > p{
    margin: 0;
}
.date > select{
    margin: 0;
    text-align: center;
    border: none;
    background-color: transparent;
    color: #000;
    
    /* for Firefox */
    -moz-appearance: none;
    /* for Safari, Chrome, Opera */
    -webkit-appearance: none;
}
.date > select::-ms-expand {
    display: none;
}

#splashscreen{
    height: 100vh;
    width: 100vw;
    /*background-image: url("../src/entry.gif");*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
/*#canvas{
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    transform: translateY(calc(100vh - 88.8888vw));
}*/



#loader{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}

section#signin{
    display: flex;
    flex-direction: column;
    justify-content: start;
}
section#payment{
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.logo{
    height: 17vw;
    max-height: 15vh;
    width: 100%;
    background-image: url("../src/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.logoBig{
    margin-top: 5vh;
    height: 35vw;
    max-height: 20vh;
    width: 100%;
    background-image: url("../src/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.banner{
    height: 50vw;
    max-height: 50vh;
    width: 100%;
    /*background-image: url("../src/capodanno.jpeg");*/
    background-image: url("../src/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: opacity(0.6);
}

.form{
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 25rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}
.form > div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 1em;
}
input:not([type = "radio"]):not([type = "checkbox"]), select, .date{
    border: none;
    line-height: 2em;
    min-height: 2em;
    border-radius: 0.6em;
    padding-left: 1em;
    padding-right: 1em;
    margin-top: 0.5em;
    margin-bottom: 1.3em;
    font-size: 1rem;
}
.form > select{
    /* for Firefox */
    -moz-appearance: none;
    /* for Safari, Chrome, Opera */
    -webkit-appearance: none;
}
.date > select::-ms-expand {
    display: none;
}

.form > div.cardElemente{
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
    padding: 0.5em;
    border-radius: 0.6em;
}

.spinner{
    height: 2em;
    width: 2em;
    border-left: 2px solid #fff;
    border-right: none;
    border-top: none;
    border-bottom: none;
    border-radius: 1em;
    margin-left: auto;
    margin-right: auto;
    animation: spin 1s linear 0s infinite;
}
#loader > .spinner{
    height: 5rem;
    width: 5rem;
    border-radius: 10rem;
}
@keyframes spin {
    0%{
        transform: rotateZ(0);
    }
    100%{
        transform: rotateZ(360deg);
    }
}

#qrcode{
    display: flex;
    flex-direction: column;
    justify-content: start;
    background-image: linear-gradient(25deg, #550373 0%, #000 30%, #000 70%, #550373 100%);
    min-height: 100vh;
}
#qrcode > .form > h1{
    text-align: center;
    font-size: min(1rem , 4vw);
    margin-top: 0;
    margin-bottom: 0;
}
#qr{
    height: 65vw;
    max-height: 400px;
    width: 65vw;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    margin-bottom: 11%;
    object-fit: contain;
    text-align: center;
    border: 1px solid #fff;
    color: #eb1c26;
}

#include{
    width: min-content;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    margin-top: -0.7em;
    margin-bottom: 2em;
}