/*** CUSTOM CSS ***/
body {
	height: calc(100vh - 56px);
	background: #000 !important;
}
#playerAudio {
	display: none;
	visibility: hidden;
}

/* HEADER */
.navbar {
	height: 56px;
}

/* HOMEPAGE */
.main {
  width: auto;
  max-width: 100vw;
  height: 100%;
  max-height: calc(100vh - 56px);
  background: #000 url(../images/bg_gjamms.jpg) no-repeat center center / auto calc(100vh - 56px);
}
.main .container {
	position: absolute;
	top: 0px;
	left: 0px;
}
.video {
	position: relative;
	/*top: 0px;
	left: 0px;
	width: 100vw;
	height: calc(100vh - 56px);*/
	overflow: hidden;
	
	padding-bottom: calc(100vh - 56px);
	height: 0;
}
.video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh - 56px);
	object-fit: cover;
	object-position: center;
}

/* FORM */
#richiestaPart {
	position: absolute;
	top: 100px;
	left: calc(50% - 275px);
    width: 550px;
    background: rgba(255,255,255,.7);
    padding: 30px;
}