@charset "utf-8";
/* CSS Document */
body {
	position: relative;
	font-family: 'Lato', sans-serif;
	font-weight:normal;
	font-style:normal;
	font-size:14px;
	
	box-sizing: border-box;
	width: 100vw;
	min-width:320px !important;
	height: 100vh;
	left:0;
	top:0;
	padding: 0;
	margin: 0;
	color:#262b3f;
	background-color: #212121;
	
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-y: none;
	overscroll-behavior-x: none;
	overscroll-behavior: none;
	/*overscroll-behavior: contain;*/

	overflow: hidden;

}
	body.isMobile {
		/*padding-bottom: calc(env(safe-area-inset-top) + env(safe-area-inset-bottom));*/
	}

	body.in_app {
		/*margin-top: env(safe-area-inset-top);
		-webkit-overflow-scrolling: none !important;
		/*padding: env(safe-area-inset-top) env(safe-area-inset-right) 10px env(safe-area-inset-left);*/
	}
	body.avoidScroll {
		overflow: hidden;
	}

#log_container {
    display: block;
    position: fixed;
	opacity: 0.9;
    bottom: 46px;
    right: 10px;
    width: 200px;
    background-color: #f5f5f5;
    z-index: 100000;
    border: 1px solid #fff;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 30%);
}
		#log_container.active {
			width: 80vw;
		}
	#log_header {
		background-color: #eee;
		line-height: 40px;
		font-weight: bold;
		padding: 0 10px;
	}
	#log {
		display: none;
		height: calc(80vh - 26px);
		overflow-y: auto;
	}
		#log_container.active #log {
			display: block;
		}
		#log>span {
			display: block;
			padding: 5px 8px;
			border-bottom: 1px solid #ddd;
			word-break: break-word;
		}
#custom_dev_action {
    position: fixed;
    left: 10px;
    bottom: 20px;
}

#call_demo {
    display: block;
    position: fixed;
    opacity: 0.9;
    bottom: 10px;
    left: 10px;
    background-color: #f5f5f5;
    z-index: 100000;
}

#punteggio_container>span {
    display: block;
    font-size: 48px;
    font-weight: bold;
}

.blur {
	filter: blur(15px);
	transition: all 0.3s linear;
}

input, textarea, select, button {
	font-family: 'Lato', sans-serif;
}
input[type="text"],input[type="password"] {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

a {
	color: #008daa;
	text-decoration: none;
	transition: all 0.2s linear;
}
	a:hover {
		text-decoration: underline;
	}
.no_anim {
	transition: none;
}
.pull-left {
	float: left;
}
.pull-right {
	float: right;
}

.single_line {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
*:focus {
    outline: none;
}
::selection {
  background-color: #ff9900;
  color: rgba(225, 255, 255, 0.99);
}
::-moz-selection {
  background-color: #ff9900;
  /*color: #e1007a; /* Gecko Browsers */
  color: rgba(225, 255, 255, 0.99);
}
.hide {
	display: none !important;
}
.text-center {
	text-align: center;
}
body.in_app .hide-in-app {
	display: none !important;
}

body.isMobile  .hide-mobile {
	display: none !important;
}

body:not(.in_app) .show-in-app {
	display: none !important;
}
label {
	cursor: pointer;
}
.noselect, .button, label {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.noscroll {
	overflow: hidden !important;
}
.notransition {
	transition: none !important;
}
.pull-right {
	float: right;
}
.pull-left {
	float: left;
}

/* MAIN COLOR */
.text-white {
	color: #fff;
}
.text-black {
	color: #212121;
}
.text-gray {
	color: #666;
}
.text-yellow {
	color: #fad03b;	
}
.text-blue {
	color: #0062aa;	
}
.text-orange {
	color: #ff9900;
}

.bg_white {
	background-color: #fff;
}
.bg_black {
	background-color: #212121;
}
.bg_gray {
	background-color: #666;
}
.bg_lightgray {
	background-color: #f3f3f3;
}
.bg_yellow {
	background-color: #fad03b;	
}
.bg_blue {
	background-color: #0062aa;	
}

form {
	position: relative;
}
	.loader {
		display: none;
		position: absolute;
		z-index: 1001;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(255,255,255,0.7);
		color: rgb(34 34 34 / 75%);
		font-size: 32px;
		text-align: center;
	}
		.loader>i {
			position: relative;
			top: calc(50% - 16px);
		}

.button>i {
	margin-right: 8px;
}

.button {
    display: inline-block;
	width: fit-content;
    margin: 0 auto;
    line-height: 36px;
    padding: 0 30px;
    font-size: 14px;
	font-weight: 400;
    cursor: pointer;
    border-radius: 6px;
	transition: all 0.15s linear;
	border: 1px solid transparent;
}
		.button:disabled {
			cursor: no-drop !important;
		}
			.button.fullw {
				display: block;
				width: 100%;
			}
		.button:hover {
			cursor: pointer;
			opacity: 0.9;
			text-decoration: none;
		}
		.button.large {
			line-height: 42px;
			padding: 0 30px;
			font-size: 16px;
			font-weight: bold;
			cursor: pointer;
		}
		.button.small {
			line-height: 24px;
			padding: 0 10px;
		}
	.button.round-button {
		border-radius: 32px;
	}
		.button.green {
			background-color: #71be44;
			color: #fff;
		}
		.button.yellow {
			background-color: #fad03b;
			color: #fff;
		}
		.button.blue {
			background-color: #0062aa;
			color: #fff;
		}
		.button.orange {
			background-color: #ff9900;
			color: #fff;
		}
		.button.gray {
			border: 1px solid #999;
			background-color: #f9f9f9;
			color: #666;
		}
		.button.red {
			background-color: #c10000;
			color: #fff;
		}

h1 {
    font-size: 48px;
    font-weight: 200;
	margin: 0;
}
h2 {
	font-weight: 200;
    font-size: 32px;
	margin: 0;
}
h3 {
    font-size: 24px;
    font-weight: 200;
	margin: 0;
}
.strong {
	font-weight: bold;
}
.main_title {
	font-family: 'Lato', sans-serif;
	font-weight: bold;
    font-size: 22px;
}

/* MAIN ELEMENT */
.container {
	position: relative;
	z-index: 2;
	display: block;
	clear: both;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 10px 20px;
	max-width: 900px;
}
	.container.disabled {
		display: none !important;
	}
	.container.fullwidth {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 100% !important;
	}
	.container.fit {
		padding: 0 !important;
	}

/* HEADER */
#main-header {
	position: fixed;
    z-index: 1001;
    width: 100%;
    top: 0;
    height: 68px;
    min-width: 320px;
    background-color: #fff;
    transition: box-shadow 0.6s cubic-bezier(0.71, 0, 0.31, 0.99);
}
	#main-header.loggedIn {
		box-shadow: 0 0 4px 0px rgb(0 0 0 / 20%);
	}
		body.footer-nav #main-header {
			top: auto;
			/*padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
			bottom: env(safe-area-inset-bottom);*/
			bottom: 0;
		}
	header .logo-container {
		display: inline-block;
		vertical-align: middle;
	}
	header .logo_top {
		display: block;
		width: 194px;
		height: 48px;
		background-image: url(/images/logo-2024.svg);
		background-size: contain;
		background-position: left center;
		background-repeat: no-repeat;
		transition: none;
	}
	#main_menu_container {
		display: inline-block;
		vertical-align: middle;
		width: 0;
		text-align: right;
		transition: all 0.3s cubic-bezier(0.71, 0, 0.31, 0.99);
	}
		.loggedIn #main_menu_container {
			width: calc(100% - 198px);
		}
		#main-header.loggedIn>.container {
			text-align: left;
		}
			#main-header.loggedIn>.container .logo_top {
				opacity: 0;
			}

	ul#main_menu {
		margin: 0;
		padding: 0;
	}
		ul#main_menu>li {
			display: inline-block;
			vertical-align: middle;
			text-align: center;
		}
			ul#main_menu>li>span, ul#main_menu>li>a {
				display: inline-block;
				vertical-align: middle;
				line-height: 48px;
				cursor: pointer;
				padding: 0 18px;
				color: #71be44;
				text-transform: uppercase;
				text-decoration: none;
				transition: background-color 0.15s linear;
			}
				ul#main_menu>li>span:hover, ul#main_menu>li>a {
					background-color: rgba(0,0,0,0.1);
				}

/* CONTENT */
#main-content-wrapper {
	position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
	background-color: #fff;
}
	#main-content-wrapper .body_content {
		position: relative;
		width: 100%;
		background-color: #fff;
		padding-top: 68px;
	}
		body.footer-nav #main-content-wrapper .body_content {
			padding-top: 0;
			padding-bottom: 68px;
		}

	.isMobile #main-content-wrapper {
		
	}
	.in_app #main-content-wrapper {
		
	}

/* FOOTER */


/* FINE FOOTER */


/* INPUT RANGE */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  max-width: 100% !important;
  margin: 11.8px 0;
  padding: 19px 16px !important;
  box-sizing: border-box;
  background-color: #2a2a2a;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #f0f0f0;
  border-radius: 5px;
  border: 0.2px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 0px solid #000000;
  height: 32px;
  width: 32px;
  border-radius: 16px;
  background: #008daa;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -12px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #f0f0f0;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #f0f0f0;
  border-radius: 5px;
  border: 0.2px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 0px solid #000000;
  height: 32px;
  width: 32px;
  border-radius: 16px;
  background: #008daa;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 5px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #f0f0f0;
  border: 0.2px solid #010101;
  border-radius: 5px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 0px solid #000000;
  width: 32px;
  border-radius: 16px;
  background: #008daa;
  cursor: pointer;
  height: 8.4px;
}
input[type=range]:focus::-ms-fill-lower {
  background: #f0f0f0;
}
input[type=range]:focus::-ms-fill-upper {
  background: #f0f0f0;
}
/* FINE INPUT RANGE */

/* INPUT CONTAINER */
/* placeholder to label */
.form-label-group {
  position: relative;
  margin-bottom: 10px;
}

	.form-label-group > input,
	.form-label-group > label {
	  
	}

	.form-label-group > label {
		position: absolute;
		cursor: text;
		top: 8px;
		left: 12px;
		display: block;
		width: 100%;
		margin-bottom: 0;
		line-height: 1.5;
		color: #aaa;
		border: 1px solid transparent;
		border-radius: .25rem;
		transition: all .1s ease-in-out;
	}

	.form-label-group input::-webkit-input-placeholder {
	  color: transparent;
	}

	.form-label-group input:-ms-input-placeholder {
	  color: transparent;
	}

	.form-label-group input::-ms-input-placeholder {
	  color: transparent;
	}

	.form-label-group input::-moz-placeholder {
	  color: transparent;
	}

	.form-label-group input::placeholder {
	  color: transparent;
	}

	.form-label-group input:not(:placeholder-shown) {
		padding-top: 18px;
		padding-bottom: 6px;
	}

	.form-label-group input:not(:placeholder-shown) ~ label {
		font-size: 11px;
		color: #777;
		top: 3px;
	}
/* fine placeholder to label */

/* FINE INPUT CONTAINER */

/* SOCIAL BUTTON */





/* FINE SOCIAL BUTTON */


/* OVERRIDE VARIO */
.m-0 {margin: 0;}
.m-10 {margin: 10px;}
.m-20 {margin: 20px;}
.m-30 {margin: 30px;}
.m-40 {margin: 40px;}
.m-50 {margin: 50px;}
.m-60 {margin: 60px;}
.m-70 {margin: 70px;}
.m-80 {margin: 80px;}
.m-90 {margin: 90px;}

.mb-0 {margin-bottom: 0;}
.mb-10 {margin-bottom: 10px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}
.mb-60 {margin-bottom: 60px;}
.mb-70 {margin-bottom: 70px;}
.mb-80 {margin-bottom: 80px;}
.mb-90 {margin-bottom: 90px;}

.mt-0 {margin-top: 0;}
.mt-10 {margin-top: 10px;}
.mt-20 {margin-top: 20px;}
.mt-30 {margin-top: 30px;}
.mt-40 {margin-top: 40px;}
.mt-50 {margin-top: 50px;}
.mt-60 {margin-top: 60px;}
.mt-70 {margin-top: 70px;}
.mt-80 {margin-top: 80px;}
.mt-90 {margin-top: 90px;}

.ml-0 {margin-left: 0;}
.ml-10 {margin-left: 10px;}
.ml-20 {margin-left: 20px;}
.ml-30 {margin-left: 30px;}
.ml-40 {margin-left: 40px;}
.ml-50 {margin-left: 50px;}
.ml-60 {margin-left: 60px;}
.ml-70 {margin-left: 70px;}
.ml-80 {margin-left: 80px;}
.ml-90 {margin-left: 90px;}

.mr-0 {margin-right: 0 !important;}
.mr-10 {margin-right: 10px;}
.mr-20 {margin-right: 20px;}
.mr-30 {margin-right: 30px;}
.mr-40 {margin-right: 40px;}
.mr-50 {margin-right: 50px;}
.mr-60 {margin-right: 60px;}
.mr-70 {margin-right: 70px;}
.mr-80 {margin-right: 80px;}
.mr-90 {margin-right: 90px;}

.p-0 {padding: 0;}
.p-10 {padding: 10px;}
.p-20 {padding: 20px;}
.p-30 {padding: 30px;}
.p-40 {padding: 40px;}
.p-50 {padding: 50px;}
.p-60 {padding: 60px;}
.p-70 {padding: 70px;}
.p-80 {padding: 80px;}
.p-90 {padding: 90px;}

.pb-0 {padding-bottom: 0;}
.pb-10 {padding-bottom: 10px;}
.pb-20 {padding-bottom: 20px;}
.pb-30 {padding-bottom: 30px;}
.pb-40 {padding-bottom: 40px;}
.pb-50 {padding-bottom: 50px;}
.pb-60 {padding-bottom: 60px;}
.pb-70 {padding-bottom: 70px;}
.pb-80 {padding-bottom: 80px;}
.pb-90 {padding-bottom: 90px;}

.pt-0 {padding-top: 0;}
.pt-10 {padding-top: 10px;}
.pt-20 {padding-top: 20px;}
.pt-30 {padding-top: 30px;}
.pt-40 {padding-top: 40px;}
.pt-50 {padding-top: 50px;}
.pt-60 {padding-top: 60px;}
.pt-70 {padding-top: 70px;}
.pt-80 {padding-top: 80px;}
.pt-90 {padding-top: 90px;}

.pl-0 {padding-left: 0;}
.pl-10 {padding-left: 10px;}
.pl-20 {padding-left: 20px;}
.pl-30 {padding-left: 30px;}
.pl-40 {padding-left: 40px;}
.pl-50 {padding-left: 50px;}
.pl-60 {padding-left: 60px;}
.pl-70 {padding-left: 70px;}
.pl-80 {padding-left: 80px;}
.pl-90 {padding-left: 90px;}

.pr-0 {padding-right: 0 !important;}
.pr-10 {padding-right: 10px;}
.pr-20 {padding-right: 20px;}
.pr-30 {padding-right: 30px;}
.pr-40 {padding-right: 40px;}
.pr-50 {padding-right: 50px;}
.pr-60 {padding-right: 60px;}
.pr-70 {padding-right: 70px;}
.pr-80 {padding-right: 80px;}
.pr-90 {padding-right: 90px;}

.rotate0 {transform: rotate(0deg);}
.rotate90 {transform: rotate(90deg);}
.rotate180 {transform: rotate(180deg);}
.rotate270 {transform: rotate(270deg);}

/* GRID SYSTEM */
.col-inline {
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	width: 100%;
	float: none;
}
	.col-inline.v-top {
		vertical-align: top;
	}
	.col-inline.v-bottom {
		vertical-align: bottom;
	}
		.col-inline.fix {
			margin-right: -4px;
		}
			/* GRID DIMENSION - 12COL - DESKTOP */
			.col-inline.col-d1 {
				width: 8.33%;
			}
			.col-inline.col-d2 {
				width: 16.66%;
			}
			.col-inline.col-d3 {
				width: 25%;
			}
			.col-inline.col-d4 {
				width: 33.33%;
			}
			.col-inline.col-d5 {
				width: 41.66%;
			}
			.col-inline.col-d6 {
				width: 50%;
			}
			.col-inline.col-d7 {
				width: 58.33%;
			}
			.col-inline.col-d8 {
				width: 66.66%;
			}
			.col-inline.col-d9 {
				width: 75%;
			}
			.col-inline.col-d10 {
				width: 83.33%;
			}
			.col-inline.col-d11 {
				width: 91.66%;
			}
			.col-inline.col-d12 {
				width: 100%;
			}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE10+ CSS */
	.scrolling-wrapper{
		overflow-x: hidden;
		overflow-y: hidden;
		white-space: normal;
	}
}