﻿@font-face {
    font-family: "Roboto Condensed";
    src: url(../fonts/RobotoCondensed-Regular.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url(../fonts/RobotoCondensed-Bold.ttf) format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url(../fonts/RobotoCondensed-BoldItalic.ttf) format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url(../fonts/RobotoCondensed-Italic.ttf) format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url(../fonts/RobotoCondensed-Light.ttf) format("truetype");
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url(../fonts/RobotoCondensed-LightItalic.ttf) format("truetype");
    font-weight: lighter;
    font-style: italic;
}

/* stile generico al tag html per rimuovere i bordi e il padding */
html {
    margin: 0px;
    padding: 0px;
    border: 0px;
    height: 100%;
    width: 100%;
    overflow-y: hidden;
    box-shadow: inset 0 0 0 2000px rgba(0, 144, 255, 0.45); /* #0090ff */
}

/* stile principale del body */
body {
    margin: auto;
    padding: 0px;
    border: 0px;
    background-color: #05b6dd;
    color: white;
    font-size: 18px;
    font-family: "Roboto Condensed", sans-serif;
    width: 95%;
    height: 100%;
    text-align: center;
    overflow-y: hidden;
    position: relative;
    background-image: url(../images/background.png?v=1.2);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    -webkit-user-select: none; /* Chrome/Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */

    /* Rules below not implemented in browsers yet */
    -o-user-select: none;
    user-select: none;
}

/* Stile dei links */
a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 2px 2px 1px #555555;
}

/* Colori, bordi e allineamenti */
.ft_center {
    text-align: center;
}

/* stile elementi principali */
.ft_title {
    color: white;
    font-size: 38px;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    /*text-shadow: 2px 2px 1px #555555;*/
    font-weight: bold;
    text-transform: uppercase;
    /*padding-top: 50px;*/
}

/* stile elementi principali */
.ft_subtitle {
    color: white;
    font-size: 26px;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    /*text-shadow: 2px 2px 1px #555555;*/
    /*padding-top: 50px;*/
}

.ft_padding {
    margin-top: 20px;
    margin-bottom: 20px;
}

.load {
    display: none;
    padding-top: 20px;
}

.hide_input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    border: solid transparent;
    border-width: 0 0 100px 200px;
    opacity: 0.0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 0%;
}

.hide_input2 {
    position: relative;
    cursor: pointer;
    text-align: center;
    overflow: visible;
    background-color: red;
    overflow: hidden;
}

#ft_input_file {
    display: none;
}

#ft_form {
    height: 90%;
}
/* impostazione altezza della form rispetto al body */

.hide {
    display: none;
}

#progress-bars {
    padding: 10px;
    font-size: 30px;
}

.bar-container {
    margin: 5px;
}

.bar-header {
    margin: 5px;
}

progress {
    -webkit-appearance: none; /*necessario per cambiare lo stile della progress bar*/
    background-color: aliceblue;
    border: solid;
    border-radius: 5px;
    border-color: #ffffff;
}

/*stile sfondo progress bar chrome/safari*/
progress::-webkit-progress-bar {
    background-color: aliceblue;
}

/*stile riempimento progress bar Chrome/Safari*/
progress::-webkit-progress-value {
    background-color: deepskyblue;
}

/*stile riempimento progress bar Firefox*/
progress::-moz-progress-bar {
    background-color: deepskyblue;
}

/*stile riempimento progress bar IE/Edge*/
progress::-ms-fill {
    background-color: deepskyblue;
    height: 30px;
}

.center-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

input[type=text], select {
    width: 60%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    text-align: center;
    font-size: 24px;
}

input[type=button] {
    min-width: 60%;
    background-color: #ffffff;
    color: #1451ac;
    padding: 8px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 28px;
    text-transform: uppercase;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
    -webkit-appearance: none;
}

.uppercase {
    text-transform: uppercase;
}

.order-button {
    min-width: auto !important;
    flex: 1 1 0px !important;
    margin: 5px !important;
    
}
