/* Page Loader */

.content__item {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	pointer-events: none;
}

.button {
	pointer-events: auto;
	cursor: pointer;
	background: #fff;
	border: none;
    color: #ff2dab;
	padding: 1rem 2rem;
	margin: 0;
	font-size: inherit;
	position: relative;
	display: inline-block;
}

.button::before,
.button::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.button--pallene {
	font-family: 'Parkinsans', sans-serif;
	font-weight: 600;
    font-size: 14pt;
	border-radius: 25px;
	border: 2px solid #ff2dab;
	box-shadow: inset 0 0 0 0px #ff2dab;
	transition: border-radius 0.4s, box-shadow 0.4s, color 0.4s;
	transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}

.button--pallene:hover {
	color: #fff;
    font-size: 14pt;
    border: 2px solid #ff2dab;
	border-radius: 70%;
	box-shadow: inset 0 0 0 40px #ff2dab;
	transition-delay: 0s, 0s, 0.2s;
}
