@charset "UTF-8";




html {
	font-size: 20px !important;
}



main > div {
	max-width: 9000px;
}

#cookiesdirective {
	display: none !important;
}
.audioguida {
	position:relative;
	z-index:3;
	background:#0B0D11;
}
.audio-player {
	margin-top: 100px;
	height: 50px;
	width: 100%;
	background: #444;
	box-shadow: 0 0 20px 0 #000;
	font-family: arial;
	color: white;
	font-size: 0.75em;
	overflow: hidden;
	display: grid;
	grid-template-rows: 6px auto;
}

.audio-player .timeline {
	background: white;
	width: 100%;
	position: relative;
	cursor: pointer;
	box-shadow: 0 2px 10px 0 #000;
}

.audio-player .timeline .progress {
	background: rgb(80, 214, 255);
	width: 0%;
	height: 100%;
	transition: 0.25s;
}

.audio-player .controls {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	padding: 0 20px;
}

.audio-player .controls>* {
	display: flex;
	justify-content: center;
	align-items: center;
}

.audio-player .controls .toggle-play.play {
	cursor: pointer;
	position: relative;
	left: 0;
	height: 0;
	width: 0;
	border: 7px solid #000;
	border-left: 13px solid white;
}

.audio-player .controls .toggle-play.play:hover {
	transform: scale(1.1);
}

.audio-player .controls .toggle-play.pause {
	height: 15px;
	width: 20px;
	cursor: pointer;
	position: relative;
}

.audio-player .controls .toggle-play.pause:before {
	position: absolute;
	top: 0;
	left: 0px;
	background: white;
	content: "";
	height: 15px;
	width: 3px;
}

.audio-player .controls .toggle-play.pause:after {
	position: absolute;
	top: 0;
	right: 8px;
	background: white;
	content: "";
	height: 15px;
	width: 3px;
}

.audio-player .controls .toggle-play.pause:hover {
	transform: scale(1.1);
}

.audio-player .controls .time {
	display: flex;
}

.audio-player .controls .time>* {
	padding: 2px;
}

.audio-player .controls .volume-container {
	cursor: pointer;
	position: relative;
	z-index: 2;
}

.audio-player .controls .volume-container .volume-button {
	height: 26px;
	display: flex;
	align-items: center;
}

.audio-player .controls .volume-container .volume-button .volume {
	transform: scale(0.7);
}

.audio-player .controls .volume-container .volume-slider {
	position: absolute;
	left: -3px;
	top: 15px;
	z-index: -1;
	width: 0;
	height: 15px;
	background: white;
	box-shadow: 0 0 20px #000;
	transition: 0.25s;
}

.audio-player .controls .volume-container .volume-slider .volume-percentage {
	background: coral;
	height: 100%;
	width: 75%;
}

.audio-player .controls .volume-container:hover .volume-slider {
	left: -123px;
	width: 120px;
}








#player {
	position: fixed;
  height: 8vh;
  bottom: 10vh;
  left: 6vw;
  right: 6vw;
  z-index: 10;
  opacity: 25%;
  background: none;
  pointer-events: none;
  filter: blur(0px);
}

#canvas {
	height: 100%;
	width: 100%;
}

.playpause-control,
.prev-control,
.next-control {
	position:absolute;
	z-index:30;
	width: 20vw;
	height: 20vw;
	border:1px solid #fff;
	border-radius: 50vw;
	bottom: 35vw;
	left:50%;
	margin-left:-10vw;
	cursor: pointer;
}
.prev-control {
	left: 10vw;
	margin-left:0;
}
.next-control {
	left: auto;
	right: 10vw;
	margin-left:0;
}
.playpause-control.playpause-paused {
	background:#0f0;
}

.museo-item.aperto,
.museo-item.aperto .contenuto,
.museo-item.aperto .museo-img {
	height: 68vh;
	background-color: #0B0D11;
}
.museo-item.aperto .museo-img {
	/* height: 58vh;
	margin-top: 10vh; */
	background-color: #1E3649;
}
.museo-img,
.museo-img-fade {
	background:no-repeat center center;
	background-size:cover;
  overflow: hidden;
  margin-bottom: 0;
	max-height: 100vh;
	position:relative;
}
.museo-img::after {
	content:"";
	display:block;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	width: 100%;
  height: 100%;
	background: radial-gradient(100% 60% at 50% 70%, rgba(17, 17, 20, 0) 0%, rgba(17, 17, 20, 0.6) 100%);
	opacity:1;
	z-index:2;
}
.museo-img-fade {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	width: 100%;
  height: 100%;
	z-index:1;
	transition:all 5s cubic-bezier(0.000, 0.005, 0.000, 1);
	opacity:0.2;
	background-color:#0B0D11;
	background-position: center top;
	transform: scale(1.3);
}
.aperto .museo-img-fade {
	transform: scale(1);
	opacity:1;
}
.museo-img-fade-empty {
	background-image:url("../img/policlinico.svg");
	background-size: 80% auto;
	background-position: center center;
	background-color: #1E3649;
}
.aperto .museo-img-fade.museo-img-fade-empty  {
	opacity:0.3;
	transform: scale(1.4);
}
.bottone-menu {
  border-top: 1px solid var(--gv-terra);
}
.bottone-menu svg {
  height: 2.4em;
	width: auto;
}
.bottone-menu svg path {
  fill: var(--gv-gold);
}
.bottone-menu .bottone-titolo {
	color: var(--gv-bianco-caldo);
}
.bottone-menu .aperto .museo-img-fade.museo-img-fade-empty {
  opacity: 0.3;
  background-color: var(--gv-terra);
}

.bottone {
	display:none;
}

.contenuto-overlay {
	position: absolute;
	top:10vw;
	left:5vw;
	right:5vw;
	z-index:5;
	background: none;
	width: 90vw;
	opacity:0;
	transform: translateY(2vh);
	transition: all 1s ease;
}
.aperto .contenuto-overlay {
	opacity:1;
	transform: translateY(0);
}
.contenuto-overlay,
body .plyr--audio {
	font-size: 4.5vw;
}

.museo-autore,
.museo-data {
  padding: 0;
  color: #fff;
	/* opacity: 0.5; */
	font-size:1em;
	text-align:center;
	line-height: 1.3em;
}
.museo-titolo {
  border-left: none;
  padding: 0 3vw;
  color: #fff;
  font-size: 2.2em;
  text-align: center;
  line-height: 1.1em;
  margin: 0.7em 0;
	font-weight: normal;
}
.museo-header .museo-titolo {
	font-size: 2.5rem;
  font-weight: normal;
}
.museo-header .contenuto-overlay {
	opacity: 1;
}

#audio-samples {
	position:fixed; 
	width:100%; 
	left:0; 
	right: 0; 
	bottom:0; 
	z-index:4; 
	background: #111114;
	color: #fff;
	padding-top: 3vh;
	height: 32vh;
	display:none; 
	opacity:1;
	transition: all .5s ease;
}

/* @media (max-width:767px) {
	#player {
		opacity: 20%;
	}
} */




.plyr--audio {
	display: block;
	height: auto;
}


/* Setup
 ================================================== */

.column {
	width: inherit;
}



*/
/* Misc.
 ================================================== */

.add-bottom {
	margin-bottom: 2rem !important;
}

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	text-align: center;
}

.hidden {
	display: none;
}

.no-support {
	margin: 2rem auto;
	text-align: center;
	width: 90%;
}


/* Audio Player Styles
 ================================================== */

audio {
	display: none;
}

#audiowrap,
#plwrap {
	margin: 0 auto;
}

#tracks {
	font-size: 0;
	position: relative;
	text-align: center;
	z-index:10;
}

#plList li {
	cursor: pointer;
	display: block;
	margin: 0;
	padding: 21px 0;
}

#plList li:hover {
	background-color: rgba(0, 0, 0, .2);
}

.plItem {
	position: relative;
	display: flex;
	width: 100%;
}

.plItem span {
	display: block;
}

.plTitle {
	width: 30%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.plProject {
	width: 50%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.plNum {
	width: 10%;
}

.plLength {
	width: 10%;
	text-align:right;
}

.plSel,
.plSel:hover {
	/* color: #fff; */
	cursor: default !important;
}

#tracks a {
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: 1rem;
	padding: 0;
	transition: background .3s ease;
	position:absolute;
	top: 5vw;
	left: 12vw;
	width: 15vw;
}
#tracks a:last-child {
	left: auto;
  right: 12vw;
}

#tracks a:hover,
#tracks a:active {
	color: #fff;
}

#tracks a.btn_disattivato {
	opacity: 0.2;
	pointer-events: none;
}

#tracks a::-moz-focus-inner {
	border: 0;
	padding: 0;
}
#tracks a svg {
	width: 8vw;
  height: 10vw;
}
#tracks a path {
	fill:#fff;
}
#tracks a:hover path {
	fill:#ddd;
}

body.museo_home {
	padding-bottom:0;
	min-height:100vh;
	background:#0B0D11;
}
header {
	display:none;
}

.museo-header {
	height: 100vh;
	position:relative;
}
.museo-header-image {
	position: fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:url("../img/audioguida-home.jpg") no-repeat center center;
	background-size: cover;
	opacity:0;
	transform: scale(1.4);
	transition: all 5s cubic-bezier(0.000, 0.005, 0.000, 1);
}
.header-audioguida-aperto .museo-header-image {
	transform: scale(1);
	opacity:1;
}
.museo-header-image::after {
	content:"";
	display:block;
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background: radial-gradient(73.44% 47.36% at 50% 40%, rgba(11, 13, 17, 0) 0%, rgba(11, 13, 17, 0.5) 100%);
	z-index:1;
}
#museo-titolo {
	width: 70%;
  left: 15%;
	top: 7vh;
	height: auto;
	position:absolute; 
	z-index:2;
	opacity:0;
	transition: all 2s cubic-bezier(0.000, 0.005, 0.000, 1) .5s;
}
.btn-header-museo {
	position:fixed;
	height: 35vh;
	bottom:0;
	left:0;
	right:0;
	width: 100%;
	z-index:2;
	text-align:center;
	opacity:0;
	transition: all 2s cubic-bezier(0.000, 0.005, 0.000, 1);
}
.header-audioguida-aperto #museo-titolo,
.header-audioguida-aperto .btn-header-museo {
	opacity:1;
}


.bottone-titolo {
	line-height: 1.5em;
}
/* .museo-item-menu .bottone-menu img {
	transition: all 3s ease;
	transform: translateY(2vh);
	opacity: 0;
}
.menu-audioguida-aperto .museo-item-menu .bottone-menu img {
	transition: all 3s ease;
	transform: translateY(0);
	opacity:1;
} */
#audioguida-menu {
  padding-bottom:37vh;
  display:none;
	background: var(--gv-terra-scuro);
	background-attachment: fixed;
}
.museo-item-menu.menu-corrente .bottone-menu {
	background: var(--gv-nero);
}
.museo-item-menu.menu-corrente .bottone-titolo {
  color:#fff;
}
.museo-item-menu.menu-corrente .bottone-menu > img {
	opacity:0;
}
.stanza {
	height: 100%;
	width: 100%;
}
.stanza_nome_menu {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 5vw;
  border: none;
  margin-bottom: -1px;
  text-align: left;
  background: var(--gv-terra);
  font-size: 1em;
  text-transform: uppercase;
	font-weight: normal;
}

.apri-menu,
.btn-inizia,
.btn-prosegui {
	position:fixed; 
	bottom: calc(3vh + 2em);
	width: 14em;
  left: calc(50% - 7em);
	background: #20242B; 
	border-radius:30vw; 
	text-align:center; 
	padding:1.8vh 0; 
	font-size: 0.8em; 
}
.apri-menu:hover,
.apri-menu:focus,
.btn-inizia:hover,
.btn-inizia:focus {
	text-decoration:none;
	color:#fff;
}
.apri-menu svg,
.btn-inizia svg {
	width:auto; 
	height: 2.1vh; 
	display:inline-block; 
	vertical-align: middle;
}
.btn-inizia span {
	overflow:visible;
}
.apri-menu span span,
.btn-inizia span span {
	display:inline-block; 
	vertical-align: middle;
}
.apri-menu-aperto {
	display:none;
}
.menu-audioguida-aperto .apri-menu-chiuso {
	display:none;
}
.menu-audioguida-aperto .apri-menu-aperto {
	display:block;
}
.museo-header .apri-menu,
.museo-header .btn-inizia {
	bottom: auto;
  width: auto;
  left: auto;
  /* padding: 2.5vh 7vw; */
  font-size: 1em;
  display: inline-block;
  position: relative;
  margin: 0 auto 1.5em;
}
/* .museo-header .btn-inizia {
	background:#fff;
	color:#20242B;
}
.museo-header .apri-menu {
	background: rgba(50, 54, 60, 0.7);
	color:#A7A9AB;
} */
/* .museo-header .btn-inizia {
	bottom:30vh; 
} */
.museo-header .apri-menu svg {
	height: 3vh; 
}
.museo-header .btn-inizia svg {
	height: 3vh; 
}

#cambio-traccia {
	text-align:center;
	width: 90%;
	max-width: 600px;
	padding: 5vw;
	border-radius: 3vw;
	background: #f4f6f9;
}
#cambio-traccia .apri-menu,
#cambio-traccia .btn-prosegui {
	position: relative; 
	bottom: auto; 
  left: 0;
	display: inline-block;
	margin-top: 0.5em;
	border: 1px solid #20242B;
	max-width: 100%;
}
#cambio-traccia .apri-menu {
	color: #20242B;
	background: none;
}
#cambio-traccia .prossima-titolo {
	font-size: 1.5em;
	padding-bottom: 0.75em;
}
#cambio-traccia .bottone-menu {
	background: rgba(0,24,30,0.06);
	border-top: none;
	padding: 5vw;
	align-items: center;
	margin-bottom: 1em;
	border-radius: 2vw;
}
#cambio-traccia .bottone-titolo {
	padding-left: 0.5em;
	color: #545c65;
	width: 55vw;
}
#cambio-traccia .fancybox-close-small:after {
	background: #f4f6f9;
}
#cambio-traccia .bottone-menu .museo-img-fade.museo-img-fade-empty {
  background-color: transparent;
}

.pagina-audioguida footer {
	background:none;
}

#plList {
	margin: 0;
	padding: 0;
}

body .plyr--audio {
  width: 90vw;
  left: 5vw;
  right: 5vw;
}

body .plyr--audio .plyr__controls {
	background:transparent;
	padding:0;
	height: 25vh;
	color:#fff;
	font-family: var(--gv-font-body);
}
body .plyr--audio .plyr__control:hover {
	background: transparent;
}
body .plyr__controls .plyr__controls__item.plyr__control {
  margin-left: -10vw;
  margin-right: auto;
  top: 0;
  position: absolute;
  top: 0;
  left: 50%;
  width: 20vw;
  height: 20vw;
  border: 1.5px solid #fff;
  border-radius: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
	box-shadow: 0 0 12vh 0 rgba(185,215,235,0.2);
	background: rgba(185,215,235,0.06);
}
body .plyr__controls .plyr__controls__item.plyr__control .icon--not-pressed {
	margin-left: 1vw;
  transform: scaleY(.9);
}
body .plyr--audio .plyr__progress__container {
	position: absolute;
	bottom: 10vh;
	left: 0;
	width: 100%;
	right: 0;
	margin: 0;
	padding: 0;
}
body .plyr__progress input[type="range"] {
	height:2px;
  background: transparent; 
  border-color: transparent;
}
body .plyr--full-ui input[type="range"] {
	color: #fff;
	/* background: #000; */
	background: transparent; 
  border-color: transparent;
}
body .plyr__progress input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 0.2px solid #010101;
}

body .plyr__progress input[type="range"]::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 0.2px solid #010101;
}

body .plyr__progress input[type="range"]::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 2px 0;
  color: transparent;
}
body .plyr__progress input[type="range"]::-ms-fill-lower {
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
body .plyr__progress input[type="range"]::-ms-fill-upper {
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
body .plyr--audio .plyr__progress__buffer {
	color: rgba(255, 255, 255, 0.30);
	height: 2px;
}
body .plyr__control svg {
	height:2rem;
	width:2rem;
}
body .plyr__controls .plyr__controls__item.plyr__time,
body .plyr__controls .plyr__controls__item.plyr__time.plyr__time--current,
body .plyr__controls .plyr__controls__item.plyr__time.plyr__time--duration {
	padding:0;
	position: absolute;
	bottom: 4vh;
}
body .plyr__controls .plyr__controls__item.plyr__time.plyr__time--current {
	left: 0;
}
body .plyr__controls .plyr__controls__item.plyr__time.plyr__time--duration {
	right: 0;
}
body .plyr__time + .plyr__time::before {
	display: none;
}
#npAction {
	font-size:1rem;
	font-weight:300;
	font-style: italic;
}
#npTitle {
	display:none !important; /* policlinico */
	position:absolute;
	top: 2.25em;
	left: 10%;
	width:65%;
	/* font-weight:bold; */
	/* color: var(--bianco); */
	z-index: 3;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
#npProject {
	position:absolute;
	top: 2.25em;
	left: 40%;
	width:50%;
	color: var(--bianco);
	z-index: 3;
}
#audio0 {
	position:relative;
	/* margin:3em 0; */
}
#audiowrap,
#plwrap {
	position:relative;
}



body.menu-audioguida-aperto .plyr__controls .plyr__controls__item.plyr__control {
	display:none;
}
body.menu-audioguida-aperto #tracks {
	display:none;
}
body.menu-audioguida-aperto .plyr--audio .plyr__controls {
  height: 11vh;
}
body.menu-audioguida-aperto #audio-samples {
  height: 15vh;
	/* opacity:0; */
}
#audio-samples #tracks,
#audio-samples button {
	transition: all .7s ease;
}
body.menu-audioguida-aperto #audio-samples #tracks,
body.menu-audioguida-aperto #audio-samples button,
body.menu-audioguida-aperto .contenuto-overlay {
	opacity:0;
}



@media (min-width:600px) {
	.contenuto-overlay, body .plyr--audio {
		font-size: 3vh;
	}
	body .plyr__controls .plyr__controls__item.plyr__control {
    margin-left: -6vh;
    width: 12vh;
    height: 12vh;
  }
	#tracks a svg {
		width: 5vh;
		height: 5vh;
	}
	#tracks a {
		top: 3.5vh;
	}
	.bottone-menu .bottone-titolo {
		font-size: 3vh;
		width: 68%;
	}
	#cambio-traccia .bottone-titolo {
		width: 80%;
		font-size: 2.5vh;
	}
	.bottone-menu .museo-img {
    width: 16%;
    height: 16%;
    aspect-ratio: 1;
  }
	.bottone-menu img {
		width: 8%;
	}
	body .plyr__controls .plyr__controls__item.plyr__time, body .plyr__controls .plyr__controls__item.plyr__time.plyr__time--current, body .plyr__controls .plyr__controls__item.plyr__time.plyr__time--duration {
		font-size: 2vh;
	}
	body .plyr__controls .plyr__controls__item.plyr__control .icon--not-pressed {
		margin-left: 1vh;
	}
	body .plyr__control svg {
		height: 5vh;
		width: 5vh;
	}
	/* .museo-header .apri-menu, .museo-header .btn-inizia {
		bottom: 10vh;
		width: 40vw;
		left: 30vw;
	}
	.museo-header .btn-inizia {
		bottom: 20vh;
	} */
	.apri-menu, .btn-inizia, .btn-prosegui {
		font-size: 1.75vh;
		width: 26vw;
		left: 37vw;
	}
	.museo-item.aperto .museo-img {
		height: 61vh;
	}
	/* .museo-img::after {
		background: radial-gradient(100% 50% at 50% 44%, rgba(11, 13, 17, 0.20) 0%, rgb(11, 13, 17) 100%);
	} */
	.stanza_nome, .stanza_nome_menu {
		font-size: 3vh;
	}
	.contenuto-overlay {
		top: 7vh;
	}
	#cambio-traccia .bottone-menu {
		padding: 2vh;
	}
	#museo-titolo {
		width: 50vh;
		left: 50%;
		margin-left: -25vh;
	}
}

@media (min-width:1024px) {
	.museo-item.aperto .museo-img {
    height: 61vh;
    width: 60vh;
    margin-left: -30vh;
    left: 50%;
  }
	/* .museo-img::after {
    background: radial-gradient(50% 50% at 50% 44%, rgba(11, 13, 17, 0.20) 0%, rgb(11, 13, 17) 100%);
  } */
	/* .museo-header .apri-menu, .museo-header .btn-inizia {
    width: 28vw;
    left: 36vw;
  } */
	.bottone-menu,
	.stanza_nome_menu {
		padding: 2vw 5vw;
	}
	.bottone-menu .museo-img {
    width: 10%;
    height: 10%;
  }
	#cambio-traccia .bottone-menu .museo-img {
    width: 20%;
    height: 20%;
  }
	/* .bottone-menu img {
		width: 5vw;
	} */
}