
/*	-------------------------------------------------------------------------- */
/*	Mobile  
/*	-------------------------------------------------------------------------- */
	@media screen and (max-width: 440px) {

		.Container {
			display: flex;
			max-width: none;
			max-height: none;
		    width: 100%;
		    height: auto;
		    margin-left: 0rem;
		    margin-right: 0rem;
		    margin-top:8.5rem;
		    margin-bottom: 3rem;
		    background-image: url("/images/rolli_mobile_back2.jpg");
		    background-attachment: fixed;
		    background-size: cover;
		    flex-direction: column;
    		align-items: center;
    		padding-top: 3rem;
		}
		.Container > .PageTitle {
			background: var(--Palette1) !important;
		    color: var(--Palette3) !important;
		    padding: 0.8rem 1.5rem !important;
		    box-shadow: 5px 5px 23px rgba(0.4, 9.8, 9.2, 1.5) !important;
		    margin-top: 2rem !important;
		    border-radius: 0.5rem !important;
		    font-family: var(--Font_Title);
		    font-size: 2.5rem !important;
		}
		.Container > .ElencoEventi {
			width: 95%;
    		height: auto;
    		display: flex;
		    flex-direction: column;
		    align-items: center;
		    margin-bottom: 2rem; 
		}
		.Evento {
			width: 100%;
			display: flex;
		    padding: 0;
		    margin: 0;
		    box-sizing: border-box;
		    position: relative;
		    background: rgba(0, 0, 0, 0.89);
		    padding: 0.3rem;
		    margin-bottom: 1rem;
		    border-radius: 0.5rem;
		    backdrop-filter: blur(5px);
		    flex-direction: row;
		    justify-content: space-between;
		}
		.Evento A {
			text-decoration: none;
		    display: flex;
		    width: 100%;
		    min-height: 7rem;
		    position: relative;
		    padding-right: 0.5rem;
		    box-sizing: border-box;
		    flex-direction: row;
		    flex-wrap: wrap;
		    justify-content: space-between;
		    align-items: flex-start;
		}
		.Evento > a > .imgBox {
			width: 35%;
			padding: 0.2rem;
		}
		.Evento .Image {
			display: block;
			height:9rem;
			width: 9rem;
			position: static;
			border-radius: 0.3rem;
		}
		.Evento .Titles {
			display: flex;
		    width: 61%;
		    line-height: 1.8em;
		    color: var(--Palette3);
		    padding-top: 0.4rem;
		    flex-direction: column;
		    align-items: flex-start;
		}
		.Evento .Titles .Title {
		    font-size: 1.45rem;
		    font-weight: 300;
		    display: block;
		    padding-bottom: 0.5rem;
		    font-family: var(--Font_Condensed);
		    line-height: 1.4rem;
		}
		.Evento .Titles .SubTitle {
			display: none;
			margin-top:-0.2rem;
			padding-bottom:0.7rem;
			font-size: 1rem;
			font-weight: 100;
			line-height: 1rem;
		}
		.Evento .Authors {
			display: block;
			font-weight: normal;
			font-style: normal;
			line-height:1.2em;
			color: var(--Box_Evento_Authors_Color);
			padding-bottom:0.2rem;
			font-family: var(--Box_Evento_Authors_Font);
		}
		.Evento .Authors:last-of-type {
			padding-bottom:0.7rem;
		}

		.Evento > a > .EventLocation {
			width: 50%;
		    margin: 0rem;
		    position: absolute;
		    left: 10rem;
		    bottom: 1.8rem;
		    font-size: 0.9rem;
		    line-height: 0.8rem;
		    font-weight: 300;
		    color: var(--Palette3);
		}
		.Evento > a > .EventLocation > i {
			display: none;
		}
		.Evento .Date {
			display: block;
			font-weight: normal;
			line-height:1.2em;
			color: var(--Box_Evento_Date_Color);
			font-family: var(--Box_Evento_Date_Font);
			font-size: var(--Box_Evento_Date_FontSize);
			font-weight: bold;
			position: absolute;
		    bottom: 0.3rem;
		    left: 10rem;
		    color: var(--Palette3);
		}
		.Evento .Abstract {
			display: none;
			font-weight: normal;
			line-height:1.4em;
			color: var(--Box_Evento_Abstract_Color);
			font-style: italic;
			font-family: var(--Box_Evento_Abstract_Font);
			font-size: var(--Box_Evento_Abstract_FontSize);
			padding-bottom:0.7rem;
		}

		.Evento .FakeButton {
			display: none;
			position: absolute;
			right:1rem;
			bottom:0;
			width:8rem;
			text-align: center;
			font-size:1.2rem;
			line-height: 2em;
			margin-left: auto;
			margin-right: auto;
			margin-bottom: 1rem;
			background-color: var(--Box_Evento_Button_Background);
			color: var(--Box_Evento_Button_Text_Color);
			border:0.07em solid var(--Box_Evento_Button_Text_Color);
			font-family: var(--Box_Evento_Button_Font);
		}
		.Evento A:HOVER .FakeButton {
			background-color: var(--Box_Evento_Button_Text_Color);
			color: var(--Box_Evento_Button_Background);
			border:0.07em solid var(--Box_Evento_Button_Text_Color);
		}
	}

/*	-------------------------------------------------------------------------- */
/*	Desktop  
/*	-------------------------------------------------------------------------- */
	@media screen and (min-width: 441px) {

		.Container {
			display: flex;
			max-width: none;
			max-height: none;
		    width: 100%;
		    height: auto;
		    margin-left: 0rem;
		    margin-right: 0rem;
		    margin-top:7.5rem;
		    margin-bottom: 0rem;
		    padding-bottom: 2rem;
		    background-image: url("/images/background3.jpg");
		    background-attachment: fixed;
		    background-size: cover;
		    flex-direction: column;
    		align-items: center;
    		padding-top: 5rem;
		}
		.Container > .PageTitle {
			display: none !important;
			background: var(--Palette1) !important;
		    color: var(--Palette3) !important;
		    padding: 1rem 2rem !important;
		    box-shadow: 5px 5px 23px rgba(0.4, 9.8, 9.2, 1.5) !important;
		    margin-top: 2rem !important;
		    margin-bottom: 1rem !important;
		    border-radius: 0.5rem !important;
		    font-family: var(--Font_Title) !important;
		}
		.Container > .ElencoEventi {
			width: 80%;
    		height: auto;
    		display: flex;
		    flex-direction: column;
		    align-items: center;
		}
		.Evento {
			display: block;
			width: 100%;
			padding: 0;
			margin: 0;
			box-sizing: border-box;
			position: relative;
			background: rgba(0, 0, 0, 0.89);
			padding: 1rem;
			margin-bottom: 2rem;
			border-radius: 0.5rem;
			backdrop-filter: blur(5px);
			transition: box-shadow 0.3s ease;
		}
		.Evento:hover {
			box-shadow: 5px 5px 23px rgba(0.4, 9.8, 9.2, 1.5);
		}
		.Evento A {
			text-decoration:none;
			display: block;
			width: 100%;
			min-height: 12rem;
			position: relative;
			padding-left: 14rem;
			padding-right: 1rem;
			box-sizing: border-box;
		}
		.Evento .imgBox {
			display: block;
			height:12rem;
			width: 12rem;
			position: absolute;
			left:0;
			top:0;
			border-radius: 0.2rem;
			overflow: hidden;
		}
		.Evento .Image {
			display: block;
			width: 100%;
			height: auto;
			position: absolute;
			left:0;
			top:0;
			border-radius: 0.2rem;
			transition: transform 0.3s ease;
		}
		.Evento:hover .Image {
			transform: scale(1.1);
		}
		.Evento .Titles {
			display: block;
			line-height:1.6em;
			color: var(--Palette3);
			padding-top:0.5rem;
		}
		.Evento .Titles .Title {
			font-size:1.9vw;
			font-weight:bold;
			display: block;
			padding-bottom:0.4rem;
			font-family: var(--Font_Title);
		}
		.Evento .Titles .SubTitle {
			display: block;
			margin-top: 0rem;
			padding-bottom: 0.3rem;
			font-size:1.2vw;
		}
		.Evento > a > .EventLocation {
			color: var(--Palette3);
			display: flex;
    		align-items: center;
		}
		.Evento > a > .EventLocation > i {
			color: var(--Palette1);
		    margin-right: 0.4rem;
		    font-size: 1.2rem;
		}
		.Evento .Authors {
			display: block;
			font-weight: normal;
			font-style: normal;
			line-height:1.2em;
			color: var(--Palette3);
			padding-bottom:0.2rem;
			font-family: var(--Box_Evento_Authors_Font);
		}
		.Evento .Authors:last-of-type {
			padding-bottom:0.7rem;
			color: var(--Palette3);
		}
		.Evento .Abstract {
			display: block;
			font-weight: normal;
			line-height:1.4em;
			color: #919191;
			font-style: italic;
			font-family: var(--Box_Evento_Abstract_Font);
			font-size: var(--Box_Evento_Abstract_FontSize);
			padding-bottom:0.7rem;
			font-size: medium;
		}
		.Evento .Date {
			display: block;
			font-weight: normal;
			line-height:1.2em;
			color: var(--Palette3);
			font-family: var(--Box_Evento_Date_Font);
			font-size: var(--Box_Evento_Date_FontSize);
			padding-bottom:0.7rem;
			font-weight: bold;
			position: absolute;
    		bottom: 0;
		}
		.Evento .FakeButton {
			display: inline-block;
			position: absolute;
			right: -0.4rem;
			top: 9.7rem;
			font-weight: 600;
			width:8rem;
			text-transform: uppercase;
			text-align: center;
			font-size:1.2rem;
			line-height: 2em;
			margin-left: auto;
			margin-right: auto;
			margin-bottom: 1rem;
			background-color: var(--Palette1);
			color: var(--Palette3);
			transition: color 0.3s ease;
			transition: background-color 0.3s ease;
			border-radius: 0.3rem;
			border: 3px solid var(--Palette1);
			transition: border 0.3s ease;
		}
		.Evento A:HOVER .FakeButton {
			background-color: var(--Box_Evento_Button_Text_Color);
			color: var(--Box_Evento_Button_Background);
			border:3px solid var(--Palette3);
		}
	}