@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
	box-sizing: border-box;
}

body {
	background: #f6f5f7;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: 'Montserrat', sans-serif;
	/*height: 100vh;
	margin: -20px 0 50px;*/
}

p {
	font-size: 14px;
	font-weight: 100;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

@media only screen and (max-width: 600px) {
	h1 {
		font-size: 14px;
	}
}

span {
	font-size: 12px;
}

a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 1rem 0;
}


#fotoMsg {
	width: 500px;
	max-width: 100%;
}


.buttonlogin {
	border-radius: 1rem;
	border: 1px solid #79706e;
	/*background-color: #007bff;
	*/
	background: -webkit-linear-gradient(to right, #f6c700, #e28b00);
	background: linear-gradient(to right, #f6c700, #e28b00);
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

.buttonlogout {
	border-radius: 1rem;
	border: 1px solid #ffffff;
	background: transparent;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 3px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

.buttonlogout:hover {
	background: #ffffff;
	color: #e28b00
}

.buttonlogin:active {
	transform: scale(0.95);
}

.buttonlogin:focus {
	outline: none;
}

.buttonlogin.ghost {
	background-color: transparent;
	border-color: #FFFFFF;
}


.pannello {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.input-login {
	font-size: 150%;
	background-color: #eee;
	border: 1px;
	padding: 12px 1rem;
	margin: 8px 0;
	width: 40%;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 18px;
	border-image-source: linear-gradient(#f6c700, #e28b00);
	border-width: 5pt;
	border-image-slice: 1;
}

.input-login::placeholder {
	letter-spacing: 3px;
}

.input-login:focus {
	animation: enlargeInput ease 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}


.containerlog {
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
		0 10px 10px rgba(0, 0, 0, 0.22);
	position: relative;
	overflow: hidden;
	width: 60%;
	min-height: 480px;
	max-height: 50%;
	align-items: center;
	justify-content: center;
	display: contents;

}

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

.containerlog.right-panel-active .sign-in-container {
	transform: translateX(100%);
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.containerlog.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {

	0%,
	49.99% {
		opacity: 0;
		z-index: 1;
	}

	50%,
	100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.containerlog.right-panel-active .overlay-container {
	transform: translateX(-100%);
}

.overlay {
	background: #1f6bc2;
	background: -webkit-linear-gradient(to right, #f6c700, #e28b00);
	background: linear-gradient(to right, #f6c700, #e28b00);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.containerlog.right-panel-active .overlay {
	transform: translateX(50%);
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.overlay-panel img {
	animation: enlargeAnimation ease 3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

.overlay-panel p {
	letter-spacing: 3px;
	animation: fadeInAnimation ease 2s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

.overlay-left {
	transform: translateX(-20%);
}

.overlay-panel .header {
	padding-bottom: 60%;
}

.containerlog.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

.containerlog.right-panel-active .overlay-right {
	transform: translateX(20%);
}

.social-container {
	margin: 20px 0;
}

.social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}

/******************************************/

.left-panel {
	width: 100%;
	display: flex;
}

.left-header {
	height: 10%;
	flex-direction: column;
	justify-content: end;
	align-items: center;
}

.left-body {
	height: 80%;
	flex-direction: column;
	margin-top: 6rem;
	justify-content: start;
	align-items: start;
}

.left-footer {
	height: 10%;
	flex-direction: column;
	justify-content: start;
	align-items: center;
}

operatore {
	font-weight: bold;
}

filtro {
	font-weight: bold;
}

/******************************************/

/*.carousel-control-prev,
    .carousel-control-next{
        height: 50px;
        width: 50px;
        outline: $color-white;
        background-size: 100%, 100%;
        border-radius: 50%;
        border: 1px solid $color-white;
        background-color: $color-white;
    }
*/
.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23009be1' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
	width: 30px;
	height: 48px;
}

.carousel-control-next-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23009be1' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
	width: 30px;
	height: 48px;
}


@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes enlargeAnimation {
	0% {
		font-size: 100%;
	}

	100% {
		font-size: 500%;
	}
}

@keyframes enlargeInput {
	0% {
		width: 40%;
	}

	100% {
		width: 60%;
	}
}

.loader {
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.bgloader {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0, 0.4);
	z-index: 999;
	overflow: hidden;
}

.bodyloader {
	top: 50%;
	position: fixed;
	z-index: 1000;
	overflow: hidden;
}

.pannello.destra{
	padding: 1rem;
}

.pannello.destra > .event-card{
	width: 100%;
	height: 100%;
	border: 1px solid #e28b00;
	border-radius: 1.1rem;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.event-footer{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.event-dates {
	flex-direction: column;
	align-items: start;
	justify-content: center;
	width: fit-content;
}

.event-dates div{
	display: flex;
	justify-content: space-between;
}

#locandina-evento{
	width: 100%;
	border-radius: 0.9rem;
}