
.felice__header-pop {
	position: fixed;
	z-index: 30;
	top: 10%;
	left: 0;
	width: 50px;
	height: auto;
	border: none;
	border-radius: 0 5rem 5rem 0;
	padding: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	outline: none;
	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .25);
	box-shadow: 0 0 4px rgba(0, 0, 0, .25);
}

.felice__header-pop:hover {
	cursor: pointer;
}

.felice__header-pop:focus {
	outline: none;
	-webkit-animation-name: focusHeadPop;
	animation-name: focusHeadPop;
	-webkit-animation-duration: .05s;
	animation-duration: .05s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

@-webkit-keyframes focusHeadPop {
	0% {
		scale: 1;
	}
	
	50% {
		scale: .9;
	}
	
	100% {
		scale: 1;
	}
}

@keyframes focusHeadPop {
	0% {
		scale: 1;
	}
	
	50% {
		scale: .9;
	}
	
	100% {
		scale: 1;
	}
}

.felice__header-pop > img {
	width: 20px;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	color: #e73995;
}

.felice__header-hed {
	position: fixed;
	z-index: 40;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: none;
	background-color: rgba(0, 0, 0, .35);
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

.felice__header-hed-nav {
	position: absolute;
	z-index: 0;
	left: -100%;
	width: 30%;
	min-width: 200px;
	height: 100vh;
	padding-top: 2rem;
	padding: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 1rem;
	background-color: #fff;
	font-family: "Century Gothic", Sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.felice__header-hed-nav-back {
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.felice__header-hed-nav-back-button {
	border: none;
	background-color: transparent;
	outline: none;
}

.felice__header-hed-nav-back-button:hover {
	cursor: pointer;
}

.felice__header-hed-nav-back-button:focus {
	outline: none;
}

.felice__header-hed-nav-back-button > img {
	width: 15px;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

.felice__header-hed-nav-op {
	width: 100%;
	height: auto;
	color: #000;
	text-decoration: none;
	-webkit-transition: all .1s ease-in;
	transition: all .1s ease-in;
}

.felice__header-hed-nav-op:hover {
	color: #e73995;
	border-right: solid 5px #e73995;
}

.felice__header-hed-nav--show {
	left: 0;
}
