html {
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}

#gi-navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 39px;
	border-bottom: 1px solid #ddd;
	font-size: 1.3em;
}

#gi-navbar a:hover, a:focus {
	text-decoration: none;
}

#gi-navbar .gi-panel {
	margin-top: 4px;
	padding: 0 5px;
}

#gi-navbar .gi-offline {
	display: none;
	margin-top: 5px;
}

.gi-page {
	display: none;
	z-index: 0;
	position: fixed;
	top: 39px;
	left: 0;
	width: 100%;
	bottom: 0;
	background: white;
	overflow: auto;
}

.gi-panel {
	max-width: 480px;
	margin: 0 auto;
	padding: 0 15px; /* il padding left e right serve per annullare il margin left, right di -15px che imposta la classe .row esattamente come fa la classe .container */
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

#page-loading-bg {
	top: 0 !important;
	z-index: 1;
	opacity: 0.5;
	background: #fff;
}

#page-loading-fg {
	top: 0 !important;
	z-index: 2;
	opacity: 1;
	background: transparent;
}

#page-loading-fg .msg {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	/*margin-top: 64px;*/
	font-size: 2em;
	font-weight: bold;
	color: #000;
}

.spinner {
	width: 128px;
	height: 128px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -64px; /* width / 2 */
	margin-top: -128px; /* height / 2 */
}

@media (min-width: 480px) {
	.gi-panel {
		padding: 0;
	}
}

.gi-page-name {
	font-weight: bold;
	text-align: center;
}

.gi-page-body {
	position: absolute;
	left: 0;
	right: 0;
	overflow: auto;
	top: 0;
}

.gi-page-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding-top:15px;
}

#page-login .logo {
	display: block;
	height: 128px;
	width: 128px;
	margin-bottom: 5px;
	margin-top: 10px;
}

.logo {
	display: inline-block;
	height: 64px;
	width: 64px;
	margin-bottom: 5px;
	margin-top: 10px;
}

.gi-utente {
	font-size: 1.3em;
	font-weight: bold;
	margin-left: 10px;
}

/* Non cambio il colore sul focus o sull'hover, altrimenti per qualche motivo quando torno indietro dopo un click resta evidenziato e crea ambiguità!*/
.list-group-item:focus,
.list-group-item:hover {
	background-color: #fff;
}

.list-group-item {
	padding: 10px 15px;
	overflow-wrap: break-word;
}

.list-group-item-heading {
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 10px;
}

.list-group-item-text {
	color: #555;
	font-size: 16px;
}

.list-group-item-text a, .list-group-item-text p {
	display: block;
	margin-top: 10px;
}

a.list-group-item {
	color: #2196f3;
	font-weight: bold;
	font-size: 16px;
}

.form-group-lg > .input-group > input.form-control {
	padding: 10px 16px;
}

.form-group-lg > select.form-control[disabled] {
	color: #666;
}

.form-group-lg label {
	font-size: large;
}

.obbligatorio {
	color: #ff0000;
}

.align-center {
	text-align: center;
}

.input-group {
	width: 100%;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
	from {
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rotating {
	from {
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.rotating {
	-webkit-animation: rotating 2s linear infinite;
	-moz-animation: rotating 2s linear infinite;
	-ms-animation: rotating 2s linear infinite;
	-o-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;
}

@-webkit-keyframes pulsating /* Safari and Chrome */ {
	0% {opacity: 0;}
	50% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes pulsating {
	0% {opacity: 0;}
	50% {opacity: 1;}
	100% {opacity: 0;}
}
.pulsating {
	-webkit-animation: pulsating 0.5s linear infinite;
	-moz-animation: pulsating 0.5s linear infinite;
	-ms-animation: pulsating 0.5s linear infinite;
	-o-animation: pulsating 0.5s linear infinite;
	animation: pulsating 0.5s linear infinite;
}

@-webkit-keyframes slide-in {
	from {left: 100%;}
	to {left: 0;}
}
@keyframes slide-in {
	from {left: 100%;}
	to {left: 0;}
}
.slide-in {
	-webkit-animation: slide-in 150ms linear;
	animation: slide-in 150ms linear;
}
@-webkit-keyframes slide-out {
	from {left: 0;}
	to {left: 100%;}
}
@keyframes slide-out {
	from {left: 0;}
	to {left: 100%;}
}
.slide-out {
	-webkit-animation: slide-out 150ms linear;
	animation: slide-out 150ms linear;
}
.totali > .row.colonne {
	margin-bottom: 0;
}
.totali > .row {
	margin-bottom: 15px;
}
.totali > .row > .col-prodotto {
	text-align: right;
	padding-right: 15px;
}
.totali > .row > .col-prodotto > .lbl-prodotto {
	margin-bottom: 0;
	margin-top: 10px;
	font-size: 14px;
}
#page-prenotazione-chiamata-successo .titolo {
	text-align: center;
	font-size: 5em;
	border-radius: 50%;
	border: 2px solid green;
	width: 150px;
	height: 150px;
	line-height: 150px;
	margin-bottom: 50px;
	margin-top: 50px;
}
#page-prenotazione-chiamata-successo .messaggio {
	text-align: center;
	font-size: 1.1em;
}
input[type=file] {
	display: none;
}
#page-home .logo {
	cursor: pointer;
}

#page-classifica .posizione {
	font-size: 1.5em;
	color: #2196f3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#page-classifica .contratti {
	text-align: right;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#page-classifica .badge {
	font-size: 1.5em;
	min-width: 27.2px;
	margin-top: 4px;
}

.btn-yellow {
	color: #333;
	background-color: #FFEB3B;
	border-color: transparent;
}
.btn-yellow:focus,
.btn-yellow.focus {
	color: #333;
	background-color: #ffe608;
	border-color: rgba(0, 0, 0, 0);
}
.btn-yellow:hover {
	color: #333;
	background-color: #ffe608;
	border-color: rgba(0, 0, 0, 0);
}
.btn-yellow:active,
.btn-yellow.active,
.open > .dropdown-toggle.btn-yellow {
	color: #333;
	background-color: #ffe608;
	background-image: none;
	border-color: rgba(0, 0, 0, 0);
}
.btn-yellow:active:hover,
.btn-yellow.active:hover,
.open > .dropdown-toggle.btn-yellow:hover,
.btn-yellow:active:focus,
.btn-yellow.active:focus,
.open > .dropdown-toggle.btn-yellow:focus,
.btn-yellow:active.focus,
.btn-yellow.active.focus,
.open > .dropdown-toggle.btn-yellow.focus {
	color: #333;
	background-color: #e3cc00;
	border-color: rgba(0, 0, 0, 0);
}
.btn-yellow.disabled:hover,
.btn-yellow[disabled]:hover,
fieldset[disabled] .btn-yellow:hover,
.btn-yellow.disabled:focus,
.btn-yellow[disabled]:focus,
fieldset[disabled] .btn-yellow:focus,
.btn-yellow.disabled.focus,
.btn-yellow[disabled].focus,
fieldset[disabled] .btn-yellow.focus {
	background-color: #FFEB3B;
	border-color: transparent;
}
.btn-yellow .badge {
	color: #FFEB3B;
	background-color: #333;
}
.btn-black {
	color: #fff;
	background-color: #333;
	border-color: transparent;
}
.btn-black:focus,
.btn-black.focus {
	color: #fff;
	background-color: #1a1a1a;
	border-color: rgba(0, 0, 0, 0);
}
.btn-black:hover {
	color: #fff;
	background-color: #1a1a1a;
	border-color: rgba(0, 0, 0, 0);
}
.btn-black:active,
.btn-black.active,
.open > .dropdown-toggle.btn-black {
	color: #fff;
	background-color: #1a1a1a;
	background-image: none;
	border-color: rgba(0, 0, 0, 0);
}
.btn-black:active:hover,
.btn-black.active:hover,
.open > .dropdown-toggle.btn-black:hover,
.btn-black:active:focus,
.btn-black.active:focus,
.open > .dropdown-toggle.btn-black:focus,
.btn-black:active.focus,
.btn-black.active.focus,
.open > .dropdown-toggle.btn-black.focus {
	color: #fff;
	background-color: #080808;
	border-color: rgba(0, 0, 0, 0);
}
.btn-black.disabled:hover,
.btn-black[disabled]:hover,
fieldset[disabled] .btn-black:hover,
.btn-black.disabled:focus,
.btn-black[disabled]:focus,
fieldset[disabled] .btn-black:focus,
.btn-black.disabled.focus,
.btn-black[disabled].focus,
fieldset[disabled] .btn-black.focus {
	background-color: #333;
	border-color: transparent;
}
.btn-black .badge {
	color: #333;
	background-color: #fff;
}
.btn-rose {
	color: #fff;
	background-color: #E250C2;
	border-color: transparent;
}
.btn-rose:focus,
.btn-rose.focus {
	color: #fff;
	background-color: #db24b3;
	border-color: rgba(0, 0, 0, 0);
}
.btn-rose:hover {
	color: #fff;
	background-color: #db24b3;
	border-color: rgba(0, 0, 0, 0);
}
.btn-rose:active,
.btn-rose.active,
.open > .dropdown-toggle.btn-rose {
	color: #fff;
	background-color: #db24b3;
	background-image: none;
	border-color: rgba(0, 0, 0, 0);
}
.btn-rose:active:hover,
.btn-rose.active:hover,
.open > .dropdown-toggle.btn-rose:hover,
.btn-rose:active:focus,
.btn-rose.active:focus,
.open > .dropdown-toggle.btn-rose:focus,
.btn-rose:active.focus,
.btn-rose.active.focus,
.open > .dropdown-toggle.btn-rose.focus {
	color: #fff;
	background-color: #bc1f9a;
	border-color: rgba(0, 0, 0, 0);
}
.btn-rose.disabled:hover,
.btn-rose[disabled]:hover,
fieldset[disabled] .btn-rose:hover,
.btn-rose.disabled:focus,
.btn-rose[disabled]:focus,
fieldset[disabled] .btn-rose:focus,
.btn-rose.disabled.focus,
.btn-rose[disabled].focus,
fieldset[disabled] .btn-rose.focus {
	background-color: #E250C2;
	border-color: transparent;
}
.btn-rose .badge {
	color: #E250C2;
	background-color: #fff;
}

.form-control {
	background: #eef8ff;
	color: #333;
}
.form-control[disabled] {
	background: #f7f7f7;
}
.data-creazione {
	position: absolute;
	top: 5px;
	right: 10px;
}
.gi-text-overflow {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.errori .alert {
	font-weight: bold;
	font-size: 1.4em;
	margin-bottom: 15px;
}
.panel-heading .close {
	color: white;
	opacity: 1;
}
#page-prenotazione-chiamata-cat .loghi,
#page-prenotazione-instant .loghi {
	background-color: white;
	padding: 10px 0;
	border-radius: 5px;
	margin-top: 10px;
	position: relative;
	width: 100%;
	line-height: 50px;
	white-space: normal;
}
#page-prenotazione-chiamata-cat .loghi img,
#page-prenotazione-instant .loghi img {
	max-width: 80px;
	max-height: 46px;
	margin: 2px 4px;
	display: inline-block;
}
#page-cte-tariffe .allegati li {
	font-size: 1.2em;
	display: table-row;
}
#page-cte-tariffe .allegati li img,
#page-cte-tariffe .allegati li a {
	display: table-cell;
	vertical-align: middle;
	padding-bottom: 10px;
}
/*
#page-cte-tariffe .btn-info {
	background-color: #e250c2;
}
*/
input[type="file"] {
	display: none;
}
