* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    min-height: -webkit-fill-available;
}

.contenitore_pagina {
    float: left;
    width: 100%;
    display: flex;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    flex-direction: column;
    overflow-y: auto;
}

.pagina {
    flex-grow: 1;
    width: 100%;
    padding: 25px;
}

/* ------------------------- TASTI ----------------------------- */
.tasto_default {
    display: inline-block;
    background: #0090c3;
    font-size: 14px;
    line-height: 14px;
    color: #FFF;
    font-weight: 700;
    padding: 14px 22px 14px 22px;
    transition: background 200ms linear;
    margin: 0 6px;
    border-radius: 6px;
    text-decoration: none;
    min-width: 120px;
    text-align: center;
}

.tasto_default:active {
    background: #053260;
}

.tasto_large_all {
    width: 100%;
    margin: 0;
}

/* --------------------------- ELEMENTI ------------------------ */
.contenitore_logo {
    display: block;
    width: 100%;
    text-align: center;
}

.contenitore_logo img {
    width: 100%;
    max-width: 240px;
    display: inline-block;
}

.titolo_pagamento {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    color: #2e364e;
}

.valore_ricarica {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    margin: 10px 0;
    color: #093c71;
}

/* ------------------------- FOOTER -------------------------*/
.footer {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
}

.tasto_store {
    display: inline-block;
    width: 220px;
    transition: transform 400ms cubic-bezier(.17,.67,.51,1.11);
    margin-bottom: 20px;
}

.tasto_store:active {
    transform:scale(0.8);
}

.tasto_store svg {
    width: 100%;
    display: block;
    fill:#888;
}
