html {
    height: 100vh;
}

body {
    margin: 0;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
}

/* CLASSI COMUNI */
/***********************************************************/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.nascosto {
    display: none;
}
.pointer {
    cursor: pointer;
}
.btn {
    cursor: pointer;
}
.ico {
    margin-right: 5px;
    text-align: center;
    min-width: 20px;
}

img {
    width: 100%;
    display: block;
}
/***********************************************************/


/* ELEMENTI */
/***********************************************************/
.main-loader {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    height: 100%;
    z-index: 20;
    top: 0;
    left: 0;
}
.main-loader img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100px;
}
.main-loader .info {
    position: absolute;
    top: 200px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: fit-content;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #e2001a;
}
/***********************************************************/
