/* CSS Document */

#contieni{
	opacity: 0;
}

#testatina{
	display: flex;
	flex-direction: row;
	justify-content:space-between;
	align-items: center;
}

#elenco-select{
	font-family: 'ArialMT Regular', Sans-Serif;
	text-align: center;
	width: 100%;
}

.icona-gialla{
	background-color: #f9a703;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: none;
	position:relative;
}

.icona-gialla a{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.icona-gialla::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transition: all 0.25s ease;
	border-radius: 30px;
	box-shadow: inset 0 0 0 50px #fbbc05;
}

.icona-gialla:not(.icona-gialla-disattivata):hover::before{
   box-shadow: inset 0 0 0 0 #fbbc05;
}

.icona-gialla-back .img{
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url("../../img/SVG_Back.svg");
	background-size: cover;	
	cursor: pointer;
}

.icona-gialla-forward .img{
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url("../../img/SVG_Forward.svg");
	background-size: cover;	
	cursor: pointer;
}

.icona-gialla-disattivata{
	opacity: .5;
}

.icona-gialla-disattivata a, .icona-gialla-disattivata .img{
	cursor: default;
}

.titolo{
	margin: 0 30px;
	width: 100%;
	border-bottom:1px solid #979797;
	font-size: 20px;
	line-height: 50px;
	font-weight: 600;
	font-family: 'Arial MT Bold', Serif;
}

.nome{
	font-size: 35px;
	line-height: 35px;
	margin-top: 30px;
	font-weight: 800;
	font-family: 'Arial MT Bold', Serif;
}

.nome + .nome{
	margin-top: auto;
}

.nascita{
	font-weight: 500;
	font-size: 16px;
	margin-top: 30px
}

.nascita + .nascita{
	margin-top: auto;
}

#curriculum-cnt{
		margin: 30px 0;
	/*
	display: flex;
	flex-direction: row;
	justify-content:space-between;
	align-items: center;
	*/
	display: grid;
	grid-template-columns: 50% 50%;
	grid-template-areas: ". .";
	margin-left: 80px;
    width: calc(100% - 160px);
}

.curriculum{
	margin-right: 20px;
	padding: 15px 10px 27px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
	background-color: #ffffff;

}

.curriculum:nth-child(2){
	margin-right: 0;
}

.curriculum div:nth-child(2){
	font-size: 18px;
	font-weight: 500px;
	line-height: 22px;
	margin-top: 10px;
	overflow-x: hidden;
}

.curriculum-titolo{
	color:rgba(0, 0, 0, 0.5);
	font-size: 12px;
	font-weight: normal;
	text-transform: uppercase;
}

#risultati{
	font-family: 'Arial MT Bold', Serif;
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 10px;
	  -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 */
}
:focus{
	outline: none;
}
#mandati-cnt{
	width: 100%;
}

.mandato{
	background: #ebe6df;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	width: calc(100% - 160px);
}
.mandato-titolo{
	font-size: 12px;
	color: rgba(0, 0, 0, 0.5);
	margin: 20px 0 10px 0;	
}
.mandato-testo{
	font-size: 18px;
	font-weight: 500;
	padding: 0 20px;
}

.mandato-icone{
	display: flex;
	margin-top: 20px;
	flex-direction: row;
	margin: 0 30px 20px 30px;
	justify-content: space-around;
	align-items: center;
}

.mandato-cnt{
	width: 33.33%;
}

.mandato-titolo{
	color: rgba(0, 0, 0, 0.5);
	font-size: 12px;
	text-transform: uppercase;
}

.mandato-blu .mandato-titolo{
	font-family: 'Arial MT Bold', Serif;	
	color:#3b78e7;
}

.mandato-icona{
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: solid 1px rgba(0, 0, 0, 0.2);
}

.mandato-icona .img{
	width: 55px;
	height: 55px;
}

.mandato-cnt:nth-child(1) .img{
	background-image: url("../../img/SVG_Poltrona.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.mandato-cnt:nth-child(2) .img{
	background-image: url("../../img/SVG_Portafoglio.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.mandato-cnt:nth-child(3) .img{
	background-image: url("../../img/SVG_Emiciclo.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.mandato-cnt:nth-child(1).mandato-blu  .img{
	background-image: url("../../img/SVG_Poltrona-blu.svg");
}
.mandato-cnt:nth-child(2).mandato-blu  .img{
	background-image: url("../../img/SVG_Portafoglio-blu.svg");
}
.mandato-cnt:nth-child(3).mandato-blu  .img{
	background-image: url("../../img/SVG_Emiciclo-blu.svg");
}

.mandato-icone .mandato-cnt:last-of-type .mandato-icona{
	border-right: none;
}

.swiper-slide {
  height: auto;
}

#testata{
	width: 100%;
}


.intro{
	font-size: 15px;
	line-height: 19px;
	text-align: center;
	margin-top: 30px;
}

#bt-titolo-cnt{
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

#bt-titolo{
	font-size: 14px;
    text-transform: uppercase;
    background-color: #245fb5;
    color: white;
    width: fit-content;
    padding: 3px 10px 3px 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
	cursor: pointer;
}

#bt-titolo::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transition: all 0.50s ease;
	border-radius: 38px;
	box-shadow: inset 0 0 0 80px #3b78e7;
}

#bt-titolo:hover::before{
   box-shadow: inset 0 0 0 0 #3b78e7;
}

#bt-titolo a {
	text-decoration: none;
	color: white;
    z-index: 1;
}

#bt-titolo .img{
	background-image: url(../../img/SVG_Return.svg);	
	background-size:cover;
    width: 30px;
    height: 30px;
	position: relative;
}

#bt-lista {
	display: none;
	position: fixed;
	width: 38px;
	height: 38px;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 2px 4px 0 rgb(0 0 0 / 50%);
    background-color: #245fb5;
	border-radius: 38px;
	bottom: 20px;
    right: 40px;
}

#bt-lista .img{
	background-image: url("../../img/SVG_Return.svg");	
	background-size:cover;
    width: 100%;
    height: 100%;
	position: absolute
}

#bt-lista::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transition: all 0.25s ease;
	border-radius: 38px;
	box-shadow: inset 0 0 0 80px #3b78e7;
}

#bt-lista:hover::before{
   box-shadow: inset 0 0 0 0 #3b78e7;
}

footer {
    z-index: 10!important
}

@media screen and (max-width: 480px) {
	#bt-titolo-cnt{
		display: none;
	}
	#bt-lista {
		display: block;
	}
	#apertura_body-mobile {
		left: 20px;
		width: calc(100% - 40px);
	}
	
	#testata{
		margin-left: 20px;
		width: calc(100% - 40px);
	}
	
	.apertura_body {
		width: 100%!important;
		margin-left: 0;
		max-width: initial;
	}
	
	.curriculum {
		margin-right: 5px;
	}
	.curriculum:nth-child(2) {
		margin-right: 0;
		margin-left: 5px;
	}
	#curriculum-cnt {
		margin-left: 0;
		width: 100%;
	}
	.mandato {
		width: calc(100% - 40px);
		min-width: 280px;
	}
	.mandato-icone{
		margin: 0 5px 20px 5px;
	}
	.swiper-button-prev, .swiper-button-next{
		display: none;
	}
	
	#bt-indietro{
		display: none;
	}
}