/*MAIN SETTINGS*/

html,body {
	margin:0;
	padding:0;
	font: 100% 'Roboto', sans-serif;
	color: #000;
	background-color:#f1f1f1;
	font-size: 18px;
}

#main-container {
	min-height:100%;
	position: absolute;
	width: 100%;
}

#body-container .container{
	position:relative;
	margin:0 auto;
	width:1400px;
	overflow:hidden;
	padding:140px 30px 90px;
}

@media only screen and (max-width: 1400px) {
	#body-container .container{
		width:100%;
		padding:140px 30px 90px;
	}
}

@media only screen and (max-width: 960px) {
	#body-container .container{
		padding:80px 20px 90px;
		transition: 0.3s ease;
	}
}


/* GENERAL SETTINGS */
*, *::before, *::after {
    box-sizing: border-box;
}

a {
	text-decoration:none;
	outline:none;
}

img {
	border:0;
}

p {
	padding:0;
	margin:0 0 20px 0;
}

h1 {
	margin: 0 0 40px;
	padding: 0;
	letter-spacing: 0.05em;
	display: block;
	width: 100%;
	font-size: 1.2em;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.1em;
}

h2 {
	margin: 0 0 40px;
	padding: 0;
	letter-spacing: 0.05em;
	display: block;
	width: 100%;
	font-size: 1.0em;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.1em;
}

h3 {
	margin: 0 0 20px;
	padding: 0;
	letter-spacing: 0.05em;
	display: block;
	width: 100%;
	font-size: 0.9em;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	line-height: 1.1em;
}

h4, h5, h6 {
	padding:0;
	margin:0 0 20px 0;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0.05em;
	display: block;
	width: 100%;
	font-weight: 700;
}

.text-center {
	text-align: center !important;
}

/* INPUTS AND BUTTONS */
.input-group {
	display: block;
	margin-bottom: 40px;
	width: 100%;
	position: relative;
}

.input-group input{
	border:0;
	background:#e1e1e1;
	width:100%;
	font-size: 1.0em;
	letter-spacing: 0.05em;
	color: rgba(0,0,0,0.5);
	outline: none;
	text-align: center;
	height: 50px;
	line-height: 50px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	padding: 0 20px;
}

.input-group input:focus{
	border:none;
	outline:none;
	color: rgba(0,0,0,1.0);
}

.input-group input:placeholder{
	color: rgba(0,0,0,0.5);
}

textarea {
	display:block;
	width: 100%;
	font-family: 'Roboto', sans-serif;
	padding: 20px;
	margin-bottom: 40px;
	border: solid 1px #000;
	min-height: 140px;
	font-size: 0.9em;
	color: #000;
	outline: none;
}

textarea::placeholder {
	color: #999;
}

.input-group select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(../img/icon-arrow-down.svg);
	background-repeat: no-repeat;
	background-position: right center;
	color: #000;
	border: 0 none;
	height: 50px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
	line-height: 50px;
	font-size: 1.0em;
	padding:0 36px 0 20px;
    outline: none;
    background-color: #e1e1e1;
    width: 100%;
}

.input-group select:hover {
	opacity:0.8;
}

.input-group select option {
	border: 0;
}

.checkbox-style {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	cursor: pointer;
	vertical-align:middle;
	background-color: #ccc;
	outline: none;
	margin-right: 10px;
	margin-left: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.checkbox-style:checked {
	background-image: url(../img/icon-checkbox-checked.svg);
}

.alert {
	display: block;
	color: #000;
	padding: 20px 20px 20px 76px;
	background-position: 20px center;
	background-size: 36px 36px;
	background-repeat: no-repeat;
	text-align: left;
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.alert.error {
	background-image: url(../img/icon-alert-error.svg);
	background-color: #FFCF40;
}

.alert.valid {
	background-image: url(../img/icon-alert-valid.svg);
	background-color: #00BE9D;
}

.button {
	background-color: #ed1e79;
	color: #fff;
    text-transform: uppercase;
    padding: 0 30px;
    font-size: 1.0em;
    letter-spacing: 0.3em;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    margin-bottom: 40px;
	transition: all 0.2s ease;
	font-weight: 300 !important;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}

.button:hover {
	background-color: #fc5ba8;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(237,30,121,1);
	-moz-box-shadow: 0px 0px 10px 0px rgba(237,30,121,1);
	box-shadow: 0px 0px 10px 0px rgba(237,30,121,1);
}


/* ---------------------- LOGIN + CREDITS---------------------- */

#main-container.login {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

#main-container.credits {
	color: #fff;
	background-color:#000;
	padding-bottom: 80px;
	transition:height 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

#main-container.credits footer .signature.white  {
	display: inline-block;
}

#main-container.credits footer .signature.black {
	display: none;
}

.login .login-box {
	width: 400px;
	text-align: center;
    margin: 0 auto 40px;
}

.login .login-box .login-img{
	height: 100px;
	width: 100%;
	margin-bottom: 50px;
	transition: 0.3s ease;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../custom/fit-logo.svg);
}

.login .login-box .input-group input:focus ~ label, .login .login-box .input-group input:valid ~ label {
	color:#999;
}

.login .login-box .input-group.not-valid input:focus ~ label, .input-group.not-valid input:valid ~ label {
	color:#ed1e79;
}

.login .login-box .actions-box {
	display:flex;
	width: 100%;margin-bottom: 20px;
}

.login .login-box .actions-box.jtf-center {
	justify-content: center;
}

.login .login-box .actions-box .half {
	float: left;
	width: 50%;
	transition: 0.3s ease;
}

.login .login-box .actions-box .half.links {
	color:#999;
	font-size: 0.9em;
	text-align: left;
	border-left: solid 1px #ccc;
    padding-left: 20px;
}

.login .login-box .actions-box .half.links a {
	color:#999;
	display: block;
	margin-bottom: 10px;
}

.login .login-box .actions-box .half.links a:hover {
	opacity: 0.8;
}

.login .login-box .actions-box .half.links a:last-child {
	margin-bottom:0;
}

.login .login-box .actions-box .input-box {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}


@media only screen and (max-width: 960px) {
	.login .login-box .login-img{
		height: 60px;
		margin-bottom: 40px;
	}
}

@media only screen and (max-width: 480px) {
	.login .login-box {
		width: 100%;
		padding: 0 30px 0px;
	}

	.login .login-box .actions-box {
		display:inline-block;
	}

	.login .login-box .actions-box .half {
		width: 100%;
	}

	.login .login-box .actions-box .half.links {
		text-align: center;
		margin-bottom: 40px;
		border-left: 0;
		padding-left: 0;
	}

	.login .login-box .actions-box .input-box {
		justify-content: center;
	}
}

.credits .credit-box {
	width: 800px;
	text-align: center;
}

.credits .credit-box .credit-img {
	height: 50px;
	margin-bottom: 40px;
	transition: 0.3s ease;
	margin-top: 40px;
}

.credits .credit-box h1 {
	margin-bottom: 10px;
	color:#999;
}

.credits .credit-box h2 {
	color:#999;
	font-weight: 300;
}

.credits .credit-box p {
	font-size: 0.9em;
	text-align: left;
}

.credits .credit-box ul {
	font-size: 0.9em;
	text-align: left;
}

.credits .credit-box a {
	font-weight: bold;
	color: #fff;
}

.credits .credit-box a:hover {
	opacity: 0.8;
}

.credits .credit-box hr {
	border: 0 none;
	border-bottom: solid 1px #fff;
	margin-bottom: 40px;
}

@media only screen and (max-width: 960px) {
	.credits .credit-box {
		width: 100%;
		margin: 0 30px;
	}

	.credits .credit-box .credit-img {
		height: 30px;
	}
}


/* ---------------------- FOOTER ---------------------- */
footer {
	position:absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
}

footer .footer-nav {
	list-style: none;
	margin:0 0 30px;
	padding: 0;
}

footer .footer-nav li {
	display: inline-block;
	margin: 0 15px;
}

footer .footer-nav li a {
	display: block;
	color: #999;
	font-size: 0.8em;
}

footer .footer-nav li a:hover {
	opacity:0.8;
}

footer .signature {
	display: inline-block;
	margin-bottom: 15px;
	height: 18px;
	width: 200px;
	transition: 0.3s ease;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url(../img/fitupp-logo-black.svg)
}

footer .signature.white {
	display: none;
	background-image: url(../img/fitupp-logo-white.svg)
}

footer .signature:hover {
	opacity:0.8;
}

@media only screen and (max-width: 960px) {
	footer .signature {
		height: 18px;
		margin-bottom: 20px;
	}
}

/* ---------------------- HEADER ---------------------- */
header {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 0 30px;
	background-color: rgba(255,255,255,1.0);
	z-index: 100;
	transition:all 0.3s ease;
}

header .head-container {
	position: relative;
	display: flow-root;
	justify-content: center;
	width: 100%;
	height: 100%;
}

header .head-logo {
	max-height: 60px;
	height: 60px;
	/*width: 60px;*/
	width: 250px;
    display: inline-block;
    margin: 20px 0;
    transition: 0.2s ease;
	float: left;
	background-image: url(../custom/fit-logo.svg);
	background-position: center left;
	background-repeat: no-repeat;
	background-size: contain;
}

.sticky {
	max-height: 60px !important;
	transition: all 0.3s ease;
}

.sticky .head-logo {
	max-height: 36px;
	margin: 12px 0;
}

.sticky .nav li a {
	line-height: 66px;
}

header .nav {
	list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    right: 0;
    top: 0;
    right: 0;
    position: absolute;
}

header .nav li {
	display: inline-block;
	height: 100%;
}

header .nav li a {
	font-family: 'Poppins', sans-serif;
	color:#000;
	text-transform: uppercase;
	font-weight: 700;
    font-size: 0.9em;
	letter-spacing: 0.05em;
	margin-left: 30px;
	height: 100%;
	display: block;
	line-height: 100px;
	transition: 0.2s ease;
}

header .nav li a:hover {
	opacity:0.8;
}

header .nav li a.active {
	border-bottom:solid 5px #ed1e79;
}

header .nav li a.logout {
	color:#999;
	font-weight: 300;
}

#toggle, .toggle {
	background-image: url(../img/icon-nav-mobile.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size:100%;
	display: none;
	z-index: 100;
}

@media only screen and (max-width: 960px) {
	header {
		height:60px;
		padding: 0 20px;
	}

	header .head-logo {
		max-height: 36px;
		margin: 12px 0;
		max-width: 100px;
	}

	header .nav li a {
		line-height: 66px;
		font-size: 0.8em;
		margin-left: 15px;
	}
}

@media only screen and (max-width: 720px) {
	header .nav {
		position:fixed;
		top: 0;
		left: 0;
		z-index:120;
		float:left;
		overflow:hidden;
		height:0px;
		margin:0;
		width:100%;
		background-color:#000;
		background-image: url(../custom/fit-logo-white.svg);
		background-repeat: no-repeat;
		background-position: 20px 12px;
		background-size: auto 36px;
		transition:height 0.3s ease;
	}

	header .nav li {
		width:100%;
		float:left;
		height: auto;
	}

	header .nav li:first-child {
		margin-top: 120px;
	}

	header .nav li a {
		text-align:center;
		font-size: 1.0em;
	}

	header .nav li a.logout {
		color: rgba(255,255,255,0.6);
	}

	header .nav li a.active {
		border-bottom: 0 !important;
		color: #ed1e79;
	}

	header .nav li a{
		width:100%;
		margin:0;
		line-height:60px;
		height:60px;
		float:left;
		color:#fff;
	}

	.toggle {
		cursor: pointer;
		display: block;
		height: 24px;
		position: relative;
		float:right;
		z-index: 150;
		margin-top: 18px;
		cursor: pointer;
		display: flex;
		/* float: left; */
		position: relative;
		width: 24px;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		user-select: none;
		/* right: 0px; */
		/* top: 50%; */
		background-image: linear-gradient( #000 0, #000 100%);
		background-size: 100% 2px;
		background-position: right bottom;
		background-repeat: no-repeat;
		align-self: center;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;

	}

	.toggle::before {
		background-color: #000;
		content: "";
		display: block;
		height: 2px;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		-webkit-backface-visibility: hidden;
	  }

	.toggle::after {
		background-color: #000;
		content: "";
		display: block;
		float: left;
		height: 2px;
		right: 0;
		position: absolute;
		bottom: calc(50% - 1px);
		width: 50%;
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		-webkit-backface-visibility: hidden;
	}

	#toggle:checked ~ .nav {
		opacity: 1;
		width: 100%;
		height:100%;
	}

	#toggle:checked ~ .nav li {
		opacity: 1;
	}

	.toggle:hover::after {
		width: 100%;
	}

	#toggle:checked ~ .toggle:before {
		width: 100%;
		background-color: #fff;
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		top: 50%;
		left: 50%;
		margin-top: -2px;
		margin-left: calc(-50% + 0.5px);
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	#toggle:checked ~ .toggle:after {
		width: 100%;
		background-color: #fff;
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		bottom: 50%;
		margin-right: -1px;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

		#toggle:checked ~ .toggle {
			background-image: linear-gradient( transparent 0, transparent 100%);
			-webkit-transition: all 0.2s ease-in-out;
			-moz-transition: all 0.2s ease-in-out;
			-ms-transition: all 0.2s ease-in-out;
			-o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
			background-position: right center;
			background-size: 0% 2px;
		}
}


/*  ---------------------- COLONNE ---------------------- */
.columns {
	display: flex;
	position: relative;
	width: 100%;
}

.columns .col-sx {
	border-right: solid 1px #ccc;
	padding-right: 30px;
	transition: all 0.3s ease;

}

.columns .col-dx {
	padding-left: 40px;
	transition: all 0.3s ease;
}

.columns.full {
	margin-bottom: 40px;
}

.columns.text-center {
	text-align: center;
}

.columns.half .col-sx, .columns.half .col-dx {
	width: 50%;
	margin-bottom: 40px;
}

.columns.half-qtr .col-sx {
	width: 70%;
	margin-bottom: 40px;
}

.columns.half-qtr .col-dx {
	width: 30%;
	margin-bottom: 40px;
}

@media only screen and (max-width: 960px) {
	.columns {
		display:block;
	}

	.columns .col-sx {
		border-right: 0;
		padding-right: 0;
		padding-bottom: 20px;
		border-bottom: solid 1px #ccc;
	}

	.columns .col-dx {
		padding-left: 0;
	}

	.columns.half .col-sx, .columns.half .col-dx {
		width: 100%;
	}

	.columns.half-qtr .col-sx, .columns.half-qtr .col-dx {
		width: 100%;
	}
}


/* PAGINAZIONE */
.paginazione {
	list-style:none;
	padding: 0;
	margin-bottom: 20px;
	display: block;
	width: 100%;
	position: relative;
	text-align: center;
}

.paginazione li {
	display: inline-block;
	margin: 0 10px;
}

.paginazione li a {
	color: #000;
	line-height: 24px;
	height: 24px;
	display: table-cell;
	vertical-align: middle;
}

.paginazione li a.active {
	color: #999;
	font-size: 0.8em;
}

.paginazione li a:hover {
	opacity: 0.8;
}

.paginazione li a.arrow {
	width:24px;
	height: 24px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

.paginazione li a.arrow.left {
	background-image: url(../img/icon-arrow-blue-left.svg);
}

.paginazione li a.arrow.right {
	background-image: url(../img/icon-arrow-blue-right.svg);
}


/*  ---------------------- DASHBOARD ---------------------- */
.ar-nav {
	display:block;
	width: 100%;
	margin: 0 0 40px 0;
	padding: 0;
	border-bottom: solid 1px #ccc;
	text-align: center;
}

.ar-nav li {
	display: inline-block;
	margin: 0 12px;
}

.ar-nav li a {
	display: block;
	color: #999;
	line-height: 40px;
	text-transform: uppercase;
	font-size: 0.8em;
	font-weight: 300;
	letter-spacing: 0.05em;
}

.ar-nav li a:hover {
	opacity: 0.8;
}

.ar-nav li a.active {
	border-bottom: solid 3px #ccc;
	font-weight: 700;
	color: #000;
}

#ar-menu, .ar-menu {
	display: none;
	z-index: 100;
	outline: none;
}

@media only screen and (max-width: 960px) {
	.ar-nav {
		position:relative;
		float:left;
		overflow:hidden;
		max-height:0;
		margin:0;
		width:100%;
		transition:all 0.3s ease;
		margin-bottom: 40px;
		padding: 0 0 20px;
	}

	.ar-nav li {
		width: 100%;
		margin: 0;
		padding: 15px 0px;
		display: block;
	}

	.ar-nav li:first-child {
		margin-top: 20px;
	}

	.ar-nav li a {
		text-align:center;
	}

	.ar-nav li a.active {
		border-bottom: 0;
	}

	.ar-nav li a{
		width:100%;
		line-height:1.1em;
		display: inline-block;
		outline: none;
	}

	.ar-menu {
		cursor: pointer;
		display: inline-block;
		justify-content: center;
		height: 24px;
		position: relative;
		display: flex;
		position: relative;
		margin: 20px 0 0;
		z-index: 10;
		transition:all 0.3s ease;
		outline: none;
	}

	.ar-menu img {
		display: inline;
		transition:all 0.3s ease;
	}

	.ar-menu span {
		color: #999;
		margin-right: 5px;
		text-transform: uppercase;
		letter-spacing: 0.2em;
		font-size: 0.9em;
		line-height: 24px;
		display: inline;
	}

	#ar-menu:checked ~ .ar-menu img{
		transform: rotate(180deg);
		transition:all 0.3s ease;
	}

	#ar-menu:checked ~ .ar-nav {
		opacity: 1;
		width: 100%;
		max-height:2000px;
	}


	#ar-menu:checked ~ .ar-nav li {
		opacity: 1;
	}

	.ar-menu:hover::after {
		width: 100%;
	}
}

.ar-notifica {
	display: block;
    width: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #ebebeb;
    padding: 20px 20px 20px 74px;
    margin-bottom: 40px;
    font-size: 0.9em;
	background-image: url(../img/icon-ar-notifica.svg);
	background-repeat: no-repeat;
	background-position: 20px center;
	background-size: 36px;
}

.ar-notifica a {
	color: #000;
}

.ar-notifica a:hover {
	opacity:0.8;
}

.ar-notifica ul {
	padding:0;
	margin: 10px 0 0 0;
	list-style: inside;
}

.ar-notifica ul li {
	margin-bottom: 5px;
}

.ar-notifica ul li:last-child {
	margin-bottom: 0px;
}

@media only screen and (max-width: 680px) {
	.ar-notifica {
		font-size: 0.8em;
	}
}

.tiles-container {
	padding: 0;
	margin:0;
	width: 100%;
	flex-wrap: wrap;
	list-style: none;
	display: flex;
}

.tiles-container li {
	float: left;
	width: 33.33%;
	padding: 0 10px 20px;
	transition: 0.3s ease;
	display: flex;
}

.tiles-container li a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	color: #fff;
	background-color: #999;
	padding: 20px;
	transition: 0.2s ease;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.tiles-container li a.color-green {
	background-color: #23b766;
}

.tiles-container li a.color-magenta {
	background-color: #e54c95;
}

.tiles-container li a.color-alizarin {
	background-color: #E94B35;
}

.tiles-container li a.color-turquoise {
	background-color: #00BE9D;
}

.tiles-container li a.color-amethyst {
	background-color: #8F40AF;
}

.tiles-container li a:hover {
	opacity: 0.85;
}

.tiles-container li a .tile-icon {
	float:left;
	height: 48px;
	margin-bottom: 20px;
}

.tiles-container li a .tile-title {
	float:left;
	width: 100%;
	border-bottom: solid 1px #fff;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	font-size: 1.1em;
	line-height: 1.1em;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.tiles-container li a .tile-info {
	float:left;
	width: 100%;
	font-size: 0.7em;
}

.tiles-container li a .tile-notify {
	background-color: #FFCF40;
	color: #000;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	top: -10px;
	right: -10px;
	font-size: 1.0em;
	font-weight: bold;
}

@media only screen and (max-width: 960px) {
	.tiles-container li {
		width: 33.33%;
	}
}

@media only screen and (max-width: 680px) {
	.tiles-container li {
		width: 50%;
	}
}

@media only screen and (max-width: 420px) {
	.tiles-container li {
		width: 100%;
	}
}

/*  ---------------------- COMUNICAZIONI ---------------------- */
.backlink {
	display: block;
	background-image: url(../img/icon-arrow-left.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
	position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
}

.title-container {
	display: block;
	padding-left: 35px;
	position: relative;
}

.comunicazioni {
	padding: 0;
	width: 100%;
	margin: 0;
}

.comunicazioni li {
	display: block;
	width: 100%;
	margin-bottom: 20px;
	border-bottom:solid 1px #ccc;
	position: relative;
}

.comunicazioni li a {
	color:#000;
	display: block;
}

.comunicazioni li a:hover {
	opacity: 0.8;
}

.comunicazioni li:first-child a img{
	display: block;
}

.comunicazioni a.link {
	display:block;
	width: 100%;
	color: #999;
	text-align: center;
	text-transform: uppercase;
    font-size: 0.8em;
	margin-bottom: 20px;
}

.comunicazioni a.link:hover {
	opacity:0.8;
}

.comunicazioni li a img{
	display: none;
	width: 100%;
	margin-bottom: 20px;
}

.comunicazioni li a time {
	color: #999;
	font-size: 0.8em;
	margin-bottom: 5px;
	display: block;
}

.comunicazioni li a.new .notify{
	display: block;
}

.comunicazioni li a .notify{
	position: absolute;
    right: -10px;
    top: -10px;
    background-color: #ed1e79;
	color: #fff;
    line-height: 24px;
    padding: 0 10px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8em;
	display: none;
}

.comunicazioni.full {
	flex-wrap: wrap;
	display: flex;
}

.comunicazioni.full li {
	width: 25%;
	float: left;
	padding: 0 10px;
	display: flex;
}

.comunicazioni.full li a img{
	display: block;
}

.comunicazioni.full li a .notify {
	right: 0;
}

@media only screen and (max-width: 960px) {
	.comunicazioni.full li {
		width: 33.33%;
	}
}

@media only screen and (max-width: 720px) {
	.comunicazioni.full li {
		width: 50%;
	}
}

@media only screen and (max-width: 480px) {
	.comunicazioni.full li {
		width: 100%;
	}
}

.messaggio {
	display: block;
	position: relative;
	padding: 0 10px;
}

.messaggio time {
	display: block;
	color: #999;
    font-size: 0.8em;
    margin-bottom: 5px;
}

.messaggio title {
	display: block;
	font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1em;
	margin-bottom: 40px;
	font-size: 2.0em;
}

.messaggio img {
	display: block;
	width: 100%;
	margin-bottom: 40px;
}

.messaggio a {
	font-weight: 700;
	color:#000;
}

.messaggio a:hover {
	opacity:0.8;
}

.messaggio .video-container {
	display: block;
	margin-bottom: 20px;
}

.messaggio .video-container iframe,
.messaggio .video-container object,
.messaggio .video-container embed {
	height: 450px;
    left: 0;
    position: relative;
    top: 0;
    width: 100%;
}

@media only screen and (max-width: 1080px) {
	.messaggio .video-container iframe,
	.messaggio .video-container object,
	.messaggio .video-container embed {
		height: 350px;
	}
}

@media only screen and (max-width: 768px) {
	.messaggio .video-container iframe,
	.messaggio .video-container object,
	.messaggio .video-container embed {
		height: 250px;
	}
}

@media only screen and (max-width: 680px) {
	.messaggio title {
		font-size: 1.4em;
	}
}


/*  ---------------------- PROGRESSI ---------------------- */
.progressi-container {
	padding: 0;
	margin:0;
	width: 100%;
	flex-wrap: wrap;
	list-style: none;
	display: flex;
}

.progressi-container .fit-test {
	float: left;
	width: 50%;
	padding: 0 10px 20px;
	transition: 0.3s ease;
	display: inline-block;
}

@media only screen and (max-width: 640px) {
	.progressi-container .fit-test {
		width: 100%;
	}
}

table.ar-table {
	margin-bottom: 10px;
	width: 100%;
}

table.ar-table td {
	padding: 5px 10px;
	font-size: 0.9em;
	border: solid 1px #f1f1f1;
}

table.ar-table tr:nth-child(odd) {
	background-color: #e3e3e3;
}

table.ar-table td:last-child {
	background-color: #d9d9d9;
	text-align: right;
	font-weight: 700;
}

table.ar-table thead td, table.ar-table thead td {
	background-color: #ed1e79 !important;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
    line-height: 1.1em;
	font-size: 0.8em;
	letter-spacing: 0.05em;
	border:0;
	padding: 10px;
}

.progressi-container .fit-test .link {
	display: block;
	width:100%;
	color: #999;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8em;
    margin-bottom: 20px;
}

.progressi-container .fit-test .link:hover {
	opacity: 0.8;
}

.progressi-container .fit-test.dettaglio {
	width: 100%;
	padding-bottom: 0;
}

.progressi-container .fit-test.dettaglio title {
	display: block;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1em;
    margin-bottom: 40px;
    font-size: 2.0em;
}

.progressi-container .fit-test.dettaglio table.ar-table {
	margin-bottom: 40px;
}

@media only screen and (max-width: 680px) {
	.progressi-container .fit-test.dettaglio title {
		font-size: 1.4em;
	}
}

.progressi-container .fit-test.dettaglio .label {
	margin-left: 10px;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
	width: 10px;
	height: 10px;
	background-color: #ccc;
	display: inline-block;
}

.progressi-container .fit-test.dettaglio .label.red {
	background-color: #f44056;
}

.progressi-container .fit-test.dettaglio .label.yellow {
	background-color: #fbb03b;
}

.progressi-container .fit-test.dettaglio .label.green {
	background-color: #39b54a;
}

.fit-test-img {
    display: block;
    width: 100%;
}

/* NOTES */
.ar-notes {
	display: block;
	margin-bottom: 40px;
	border-bottom: solid 1px #ccc;
}

.ar-notes .title {
	text-transform: uppercase;
	text-align: center;
	display: block;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1em;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.ar-notes .no-notes {
	color: #999;
	font-style: italic;
	text-align: center;
}


/*  ---------------------- DATI PERSONALI ---------------------- */
.anagrafica-container table.ar-table {
	margin-bottom: 40px;
}

.anagrafica-container table.ar-table td:last-child {
	text-align: left;
	background-color: transparent;
}

.anagrafica-container table.ar-table td:first-child {
	background-color: #ebebeb;
}


/*  ---------------------- ALLENAMENTO ---------------------- */
.allenamento-container table.ar-table {
	margin-bottom: 40px;
}

.workout {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 20px;
}

.workout title {
	display: block;
	width: 100%;
	font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1em;
    margin-bottom: 40px;
    font-size: 1.0em;
	background-color: #ed1e79;
	padding: 10px;
	color: #fff;
}

.workout .exercise {
	width: 50%;
	padding: 0 10px 20px;
	font-size: 0.9em;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
	color: #000;
}

@media only screen and (max-width: 640px) {
	.workout .exercise {
		width: 100%;
	}
}

.workout .exercise .img-container {
	float: left;
	border-right: solid 1px #ccc;
	width: 30%;
	padding-right: 20px;
}

.workout .exercise .img-container img {
	width: 100%;
	display: inline;
}

.workout .exercise .text {
	float: left;
	padding-left: 20px;
	width: 70%;
}

.workout .exercise .text span {
	display: block;
	width: 100%;
}

.workout .exercise .text span.type {
	color: #fff;
	background-color: #000;
	padding: 5px 10px;
	text-transform: uppercase;
	font-size: 0.7em;
	display: inline-block;
	width: auto;
	letter-spacing: 0.08em;
	margin-bottom: 10px;-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.workout .exercise .text span.exercise-name {
	font-size: 1.2em;
	font-weight: 700;
	margin-bottom: 10px;
}

.workout .exercise .text span.exercise-list {
	margin-bottom: 0px;
}

.allenamento-container .link {
	display: block;
	width:100%;
	color: #999;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8em;
    margin-bottom: 20px;
}

.allenamento-container .link:hover {
	opacity: 0.8;
}

/*  ---------------------- ALIMENTAZIONE ---------------------- */
@media only screen and (max-width: 720px) {
	.alimentazione-container .table-container {
		overflow: scroll;
	}
}

.alimentazione-container table.ar-table {
	margin-bottom: 20px;
}

.alimentazione-container table.ar-table thead td {
	text-align: center !important;
	background-color: #f1f1f1 !important;
	color: #000;
	font-weight: 700 !important;
	font-size: 1.0em;
}

.alimentazione-container table.ar-table.alimentazione td {
	text-align: right;
}

.alimentazione-container table.ar-table.alimentazione td:last-child {
	background-color: transparent;
	font-weight: 300;
}

.alimentazione-container table.ar-table.alimentazione td:first-child {
	text-align: left;
	font-weight: 700;
}

.alimentazione-container table.ar-table .alimentazione-index {
	background-color: #d3d3d3 !important;
	color: #666;
	font-size: 0.8em;text-transform: uppercase;
	letter-spacing: 0.05em;
}

.alimentazione-container table.ar-table .alimentazione-index td {
	padding-bottom: 10px;
	font-weight: 300 !important;
}

.alimentazione-container table.ar-table .alimentazione-result, .alimentazione-container table.ar-table .alimentazione-result td {
	font-weight: 700 !important;
}

.alimentazione-day {
	display: block;
	width: 100%;
	margin-bottom: 20px;
}

.alimentazione-container table.ar-table.resoconto td {
	text-align: center !important;
	padding: 10px 0;
}

.alimentazione-container table.ar-table.resoconto td strong {
	font-size: 1.2em;
}

.alimentazione-container table.ar-table.resoconto td:first-child {
	font-weight: 300;
}

.alimentazione-container .day-select {
	list-style: none;
    display: block;
    width: 100%;
    margin: 40px 0 20px;
    text-align: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.alimentazione-container .day-select li {
	display: inline;
	width: 14.28%;
	float: left;
	padding: 0 1px;
}

.alimentazione-container .day-select li a {
	text-transform: uppercase;
	color: #000;
	font-size: 0.9em;
	display: block;
	width: 100%;
	font-family: 'Poppins', sans-serif;
	padding: 10px 0;
	background-color: #e3e3e3;
}

@media only screen and (max-width: 640px) {
	.alimentazione-container .day-select li a {
		font-size: 0.7em;
	}
}


.alimentazione-container .day-select li a:hover {
	opacity: 0.8;
}

.alimentazione-container .day-select li a.today {
	font-weight: 700;
	background-color: #000;
	color: #fff;
}

.alimentazione-day .title {
	display: block;
	width: 100%;
	font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1em;
    margin-bottom: 20px;
    font-size: 1.0em;
	background-color: #ed1e79;
	padding: 10px;
	color: #fff;
	text-align: center;
	position: relative;
}

.alimentazione-day .title .arrow {
	position: absolute;
	height: 36px;
	width: 28px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-size:  18px 18px;
	top: 50%;
	margin-top: -18px;
	transition:all 0.3s ease;
}

.alimentazione-day .title .arrow.left {
	left: 5px;
	background-image: url(../img/icon-arrow-left.svg);
}

.alimentazione-day .title .arrow.left:hover {
	background-position: center left;
}

.alimentazione-day .title .arrow.right {
	right: 5px;
	background-image: url(../img/icon-arrow-right.svg);
}

.alimentazione-day .title .arrow.right:hover {
	background-position: center right;
}

.alimentazione-container .ar-notes {
	margin-top: 40px;
}

.alimentazione-container .link {
	display: block;
	width:100%;
	color: #999;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8em;
    margin-bottom: 20px;
}

.alimentazione-container .link:hover {
	opacity: 0.8;
}

/*  ---------------------- CORSI (Area Riservata) ---------------------- */
@media only screen and (max-width: 720px) {
	.corsi-container .table-container {
		overflow: scroll;
	}
}

.corsi-container table.ar-table {
	margin-bottom: 40px;
	text-align: center;
}

.corsi-container table.ar-table td {
	width:12.5%;
}

.corsi-container table.ar-table thead td {
	text-align: center !important;
	background-color: #f1f1f1 !important;
	color: #000;
	font-weight: 700 !important;
	font-size: 1.0em;
}

.corsi-container table.ar-table.corsi td:last-child {
	background-color: transparent;
	font-weight: 300;
	text-align: center;
}

.corsi-container table.ar-table.corsi tr td:first-child {
	background-color: #ebebeb;
}

.corsi-container table.ar-table.corsi tr.days {
	background-color: #000;
	color: #fff;font-size: 0.8em;
    letter-spacing: 0.2em;
}

.corsi-container table.ar-table.corsi tr.days td:first-child {
	background-color: #fff;
}

.corsi-container table.ar-table .link-prenotazione {
	color: #fff;
    background-color: #ed1e79;
	padding: 2px 6px;
	position: relative;
	display: block;
}

.corsi-container table.ar-table .link-prenotazione span {
	position:absolute;
	width: 8px;
	height: 8px;
	top: -3px;
	right: -4px;
	background-color: #000;
	webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;

	animation-direction: normal;

	animation-duration:8s;
	animation-iteration-count: infinite;
	animation-name: pulse;
	animation-play-state: running;
	animation-fill-mode: forwards;
	animation-timing-function: ease;

	-webkit-animation-direction: normal;
	-webkit-animation-duration:1s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-name: pulse;
	-webkit-animation-play-state: running;
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
}

@-webkit-keyframes  pulse{
	0% { background-color:#000 }
	50% { background-color:#999 }
	100% { background-color:#000 }
}

.corsi-container table.ar-table .link-prenotazione:hover {
	opacity:0.8;
}

.corsi-container .prenotazioni {
	padding: 0;
	margin:0;
	width: 100%;
	flex-wrap: wrap;
	list-style: none;
	display: flex;
}

.corsi-container .title {
	display: block;
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
	text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1em;
	font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.05em;
}

.corsi-container .prenotazioni li {
	float: left;
	width: 33.33%;
	padding: 0 10px 20px;
	transition: 0.3s ease;
	display: flex;
}

.corsi-container .prenotazioni li a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	color: #000;
    background-color: #ebebeb;
	padding: 20px;
	transition: 0.2s ease;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.corsi-container .prenotazioni li a:hover {
	opacity: 0.8;
}

.corsi-container .prenotazioni li a .tile-title {
	float:left;
	width: 100%;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
	font-size: 0.9em;
	line-height: 1.1em;
	margin-bottom: 20px;

}

.corsi-container .prenotazioni li a .tile-img {
    display: block;
    height: 80px;
    width: 80px;
        margin: 0 auto 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.corsi-container .prenotazioni li a .tile-info {
	float:left;
	width: 100%;
	font-size: 0.7em;
	border-bottom: solid 1px #ccc;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.corsi-container .prenotazioni li a .disponibilita {
	float:left;
	width: 100%;
	font-size: 0.7em;
}

.corsi-container .prenotazioni li a .disponibilita strong {
	font-size: 1.2em;
	font-weight: 700;
}

.corsi-container .prenotazioni li a .tile-notify {
	background-color: #FFCF40;
	color: #000;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	top: -10px;
	right: -10px;
	font-size: 1.0em;
	font-weight: bold;
}

@media only screen and (max-width: 960px) {
	.corsi-container .prenotazioni li {
		width: 33.33%;
	}
}

@media only screen and (max-width: 680px) {
	.corsi-container .prenotazioni li {
		width: 50%;
	}
}

@media only screen and (max-width: 420px) {
	.corsi-container .prenotazioni li {
		width: 100%;
	}
}

.corsi-container table.ar-table.prenotazione-corsi td {
	width:auto;;
}

.corsi-container table.ar-table.prenotazione-corsi td:last-child {
	background-color: transparent;
}

.corsi-container table.ar-table.prenotazione-corsi td:first-child {
	background-color: transparent;
	text-align: left;
}

.corsi-container table.ar-table.prenotazione-corsi td:first-child strong {
	font-size: 1.1em;
}

@media only screen and (max-width: 680px) {
	.corsi-container table.ar-table.prenotazione-corsi td:first-child {
		font-size: 0.8em;
	}
}

.corsi-container table.ar-table.prenotazione-corsi .button {
	margin-bottom: 0;
    letter-spacing: 0.1em;
    padding: 0 15px;
    line-height: 35px;
    height: 35px;
	float: right;
}

.corsi-container table.ar-table.prenotazione-corsi .button.prenota:after {
	content: "Prenotami";
}

.corsi-container table.ar-table.prenotazione-corsi .button.delete {
	background-color: #ddd !important;
	color: #000 !important;
}

.corsi-container table.ar-table.prenotazione-corsi .button.delete:hover {
	background-color: #eee !important;
	-webkit-box-shadow: 0px 0px 10px 0px #ddd !important;
	-moz-box-shadow: 0px 0px 10px 0px #ddd !important;
	box-shadow: 0px 0px 10px 0px #ddd !important;
}

.corsi-container table.ar-table.prenotazione-corsi .button.delete:after {
	content: "Cancellami";
}

.corsi-container table.ar-table.prenotazione-corsi .button.personal-trainer-new2 {
	background-image: url(../img/icon-whistle-white-new.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px;
	width: 35px;
	padding: 0;
	margin-left: 15px;
}


/* INFO & CONTATTI */
.info-contatti .col-sx {
	padding-right: 40px;
	text-align: right;
}

.info-contatti .col-sx h2 {
	text-align: right;
	margin-bottom: 20px;
}

.info-contatti .col-sx ul li {
	margin-bottom: 20px;
	align-items: center;
    display: block;
}

@media only screen and (max-width: 960px) {
	.info-contatti .col-sx {
		padding-right: 0px;
		text-align: left;
	}

	.info-contatti .col-sx h2 {
		text-align: left;
	}
}

.info-contatti h3 {
	text-transform: uppercase;
	color:#ccc;
}

.info-contatti hr {
	border: 0 none;
	border-bottom: solid 1px #ccc;
	margin-bottom: 20px;
}

.info-contatti ul {
	list-style: none;
	padding: 0;
}

.info-contatti ul li {
	margin-bottom: 20px;
	align-items: center;
    display: flex;
}

.info-contatti ul li a {
	color: #000;
}

.info-contatti ul li a:hover {
	opacity: 0.8;
}

.info-contatti ul li img{
	margin-right: 10px;
	height: 24px;
}

.info-contatti ul, .info-contatti p {
	font-size: 0.9em;
}

.info-contatti .map-container {
	display: inline-block;
	width: 100%;
	height: 500px;
	margin-bottom: 40px;
}

.info-contatti .google-maps {
	position: relative;
	padding-bottom: 500px;
	height: 0;
	overflow: hidden;
	transform: all 0.3s ease;
}

.info-contatti .google-maps > iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.info-contatti form {
	display:block;
	width: 100%;
}

.info-contatti .columns.half .col-sx,  .info-contatti .columns.half .col-dx {
	float:left;
}

.info-contatti .actions-box {
    display: flex;
    width: 100%;
	justify-content: center;
	color: #999;
	margin-bottom: 60px;
}

.info-contatti .actions-box.privacy {
    margin-bottom: 40px;
	align-items: center;
	font-size: 0.9em;
}

.info-contatti .actions-box.privacy .checkbox-style{
	display: flex;
	flex: none;
}

.info-contatti .actions-box.privacy .privacy-text {
	width: auto;
}

.info-contatti .actions-box.privacy a {
	color: #999;
	font-weight: bold;
}

@media only screen and (max-width: 960px) {
	.info-contatti .columns.half .col-sx {
		float:left;
		border-bottom: 0 none;
		margin-bottom:0;
		padding-bottom: 0;
	}

	.info-contatti .columns.half .col-dx {
		margin-bottom:0;
	}
}

@media only screen and (max-width: 560px) {
	.info-contatti .map-container {
		height: 350px;
	}

	.info-contatti .google-maps {
	  padding-bottom: 350px;
	}
}


/* PROMO */
.promo .col-sx {
	padding-right: 40px;
	text-align: right;
}

@media only screen and (max-width: 960px) {
	.promo .columns.half .col-sx {
		float:left;
		border-bottom: 0 none;
		margin-bottom:0;
		padding-bottom: 0;
        padding-right: 0;
	}

	.promo .columns.half .col-dx {
		margin-bottom:0;
	}
}

.promo .promo-img {
    display: block;
    width: 100%;
    margin-bottom: 40px;
}

.promo .acquisto {
    text-align: center;
}

.promo h2 {
    text-align: left;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.promo .acquisto h2 {
    text-align: center;
    color: #ed1e79;
}

.promo h3 {
    text-transform: uppercase;
    font-size: 1.1em;
    color: #ed1e79;
    margin-bottom: 10px;
}

.promo .subtitle {
    font-size: 0.8em;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: solid 1px #ccc;
}

.promo .promo-pack {
    margin-bottom: 40px;
    border-bottom: solid 1px #ccc;
}

.promo .promo-pack:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.promo .promo-pack:last-child .button {
    margin-bottom: 0;
}

.promo .promo-pack .promo-price {
    font-weight: bold;
    font-size: 1.1em;
}

.promo .promo-pack .promo-price-old {
    text-decoration: line-through;
    font-size: 0.8em;
    opacity: 0.7;
}

.promo .input-box {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    justify-content: center;
    color: #999;
    font-size: 0.9em;
}


/* HOME PAGE */
#body-container .container.home-hero {
	background-color: #000;
	width: 100%;
	padding: 90px 0 0 0;
}

#body-container .container.homepage {
	padding-top: 64px;
}

.home-top {
	width: 100%;
	height: 500px;
	/* margin-bottom: 40px; */
	position: relative;
	color: #fff;
	text-align: left;
	transition: 0.3s ease;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	font-size: 1.5em;
}

.home-top .text {
	padding: 50px 30px 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.5);
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.7) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 30%,rgba(0,0,0,0.7) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 30%,rgba(0,0,0,0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b3000000',GradientType=0 ); /* IE6-9 */
}

.home-top .text .center {
	width: 1400px;
	margin: 0 auto;
}

.home-top .text h1 {
	margin-bottom: 0.2em;
	font-size: 2.0em;
	line-height: 0.9em;
	text-align: left;
}

.home-top .text h2 {
	margin-bottom: 20px;
	font-size: 1.4em;
	line-height: 0.9em;
	text-align: left;
}

.home-top .text p {
	font-size: 1.0em;
	margin-bottom: 0;
	color: #ed1e79;
}

@media only screen and (max-width: 1400px) {
	.home-top .text .center {
		width: 100%;
	}
}

@media only screen and (max-width: 1200px) {
	.home-top {
		height: 350px;
		font-size: 1.2em;
	}
}

@media only screen and (max-width: 960px) {
	.home-top {
		height: 300px;
		font-size: 1.0em;
	}

	#body-container .container.home-hero {
		padding: 40px 0 0 0;
	}
}

@media only screen and (max-width: 680px) {
	.home-top {
		height: 250px;
		font-size: 0.7em;
	}
}

@media only screen and (max-width: 480px) {
	.home-top {
		height: 200px;
		font-size: 0.55em;
	}
}

.home-top.video-block{
    position: relative;
    overflow: hidden;
    background-color: transparent !important;
}

.video-block .video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.video-block .video-content video {
	position:absolute;
	z-index:0;
}

.video-block .video-content video.fillWidth {
	width: 100%;
}

@media only screen and (max-width: 720px) {
    .video-block .video-content {
        width: 130%;
    }
}

.homepage .columns .col-sx, .homepage .columns .col-dx {
	text-align: center;
}

.homepage .columns img {
	margin-bottom: 20px;
}

.homepage h3 {
	text-align: center;
	font-size: 1.2em;
}

.homepage h4 {
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 40px;
}

.homepage p {
	text-align: left;
}

.homepage .button {
	margin-bottom: 20px;
}

.homepage .input-box {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	justify-content: center;
	color: #999;
    font-size: 0.9em;
}

.homepage .fit-description {
	display: block;
	width: 100%;
	border-top: solid 1px #ccc;
	padding-top: 40px;
}

.homepage .fit-description .text {
	column-count: 2;
    column-gap: 40px;
    padding: 0 80px;
	margin-bottom: 40px;
}


.homepage .fit-description .img-container {
	column-count: 3;
    column-gap: 40px;
	transition: all 0.3s ease;
}

.homepage .fit-description .img-container img {
	width: 100%;
	margin-bottom: 40px;
}

@media only screen and (max-width: 960px) {
	.homepage .fit-description .text {
		column-count: 1;
		padding: 0 0;
	}

	.homepage .fit-description .img-container {
		column-count: 2;
		column-gap: 20px;
	}

	.homepage .fit-description .img-container img {
		margin-bottom: 20px;
	}

	.homepage .fit-description .img-container img:last-child {
		margin-bottom: 40px;
	}
}

@media only screen and (max-width: 460px) {
	.homepage .fit-description .text {
		column-count: 1;
		padding: 0 0;
	}

	.homepage .fit-description .img-container {
		column-count: 1;
	}
}


/*  ---------------------- CORSI ---------------------- */
.corsi-list {
	padding: 0;
    margin: 0;
    width: 100%;
    flex-wrap: wrap;
    list-style: none;
    display: flex;
}

.corsi-list li {
	float: left;
    width: 33.33%;
    padding: 0 20px 20px;
    transition: 0.3s ease;
    display: inline;
    border-bottom: solid 1px #ccc;
    margin-bottom: 40px;
}

.corsi-list li .corso-img {
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #ebebeb;
	background-size: cover;
	height: 200px;
	width: 100%;
	margin-bottom: 20px;
}

.corsi-list li h2 {
	display: block;
	margin-bottom: 10px;
	text-align: left;
}

.corsi-list li p {
	font-size: 0.9em;
}

@media only screen and (max-width: 960px) {
	.corsi-list li {
		width: 50%;
	}
}

@media only screen and (max-width: 640px) {
	.corsi-list li {
		width: 100%;
	}
}

/* PROVA IL CLUB */
.provaclub .provaclub-head {
	text-align:center;
	width: 100%;
	display: inline-block;
	margin-bottom: 40px;
}

.provaclub .provaclub-head img, .provaclub .provaclub-head h1 {
	margin-bottom: 20px;
}

.provaclub .provaclub-head p {
	color: #999;
}

.provaclub .provaclub-form {
	text-align:center;
	width: 100%;
	display: block;
	margin-bottom: 40px;
}

.provaclub .provaclub-form .input-group {
	width: 50%;
    float: left;
    padding: 0 20px;
}

.provaclub .provaclub-form .form-info {
	display: block;
	width: 100%;
	margin-bottom: 40px;
	font-size: 0.7em;
	padding: 0 20px;
}

.provaclub .provaclub-form .form-info a{
	font-weight: bold;
	color: #000;
}

.provaclub .provaclub-form .form-info a:hover {
	opacity: 0.8;
}

.provaclub .provaclub-form .input-box {
	margin-bottom: 40px;
	display: block;
}

.provaclub .provaclub-form .input-box label a {
	color: #000;
}

.provaclub .provaclub-form .input-box.alert-container {
	width: 100%;
    float: left;
}

.provaclub .alert {
	margin: 0 25% 0;
	transition: all ease 0.3s;
}

.provaclub .provaclub-form hr.full {
    float: left;
    width: 100%;
    margin-bottom: 40px;
    border: 0 none;
    border-bottom: solid 1px #ccc;
}

.provaclub .actions-box.privacy {
    margin-bottom: 40px;
	align-items: center;
	float: left;
    width: 100%;
}

@media only screen and (max-width: 960px) {
	.provaclub .provaclub-form .input-group {
		width: 100%;
	}

	.provaclub .alert {
		margin: 0 0 0;
	}
}


/*  ---------------------- PAGINE TESTUALI ---------------------- */
.text-page h2 {
	margin-bottom:20px;
}

.text-page a {
	color:#000;
	font-weight: 700;
}

.text-page a:hover {
	opacity:0.8;
}

.text-page table th {
	background-color: #f1f1f1;
    color: #999;
    padding: 5px 10px;
    font-weight: normal;
	font-size: 0.9em;
}

.text-page table tbody td {
	padding: 10px;
	font-size: 0.9em;
}

.text-page table tbody tr:nth-child(even) {
	background-color: #e9e9e9;
}

.text-page table tbody tr:nth-child(odd) {
	background-color: #e1e1e1;
}


/*  ---------------------- 404 ---------------------- */
.not-found {
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	display: flex;
}

.not-found-content {
	padding: 0 30px;
	text-align: center;
}

.not-found-content img {
	width: 100%;
	max-width: 350px;
	margin-bottom: 40px;
}

.not-found-content a {
	color: #000;
	font-weight: 700;
}

.not-found-content a:hover {
	opacity: 0.8;
}


/*  ---------------------- POPUP ---------------------- */
.jconfirm-bg {
    background-color: #000 !important;
    opacity: 0.6 !important;
}

.jconfirm .jconfirm-holder {
    width: 320px;
    margin: 0 auto;
}

.jconfirm-box {
    background-color: #ebebeb !important;
	-webkit-border-radius: 10px !important;
	-moz-border-radius: 10px !important;
	border-radius: 10px !important;
	color: #000 !important;
	padding: 20px 20px 0 !important;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title {
    font-weight: 700;
    font-size: 0.8em !important;
	text-transform: uppercase;
}

.jconfirm .jconfirm-box div.jconfirm-title-c {
	text-align: center !important;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane {
	font-size: 0.9em !important;
}

.jconfirm-buttons {
    padding-bottom: 0 !important;
	padding-top: 20px;
    width: 100%;
    text-align: center;
    border-top: solid 1px #ccc;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
	display: inline-block;
    margin: 0 10px !important;
	background-color: #ed1e79 !important;
	color: #fff !important;
    text-transform: uppercase;
    padding: 0 25px !important;
    font-size: 1.0em;
    letter-spacing: 0.3em;
    height: 50px;
    line-height: 50px;
	transition: all 0.2s ease;
	font-weight: 300 !important;
	-webkit-border-radius: 25px !important;
	-moz-border-radius: 25px !important;
	border-radius: 25px !important;
	margin-bottom: 20px !important;
	outline: none !important;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button:hover {
	background-color: #fc5ba8 !important;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(237,30,121,1);
	-moz-box-shadow: 0px 0px 10px 0px rgba(237,30,121,1);
	box-shadow: 0px 0px 10px 0px rgba(237,30,121,1);
}
