#profile {
	background-color: #FF640B;
	
	text-align: center;
	color: #FFF;
}
@media (min-width: 900px) {
	#profile {
		padding: 50px 30px 30px;
		border-radius: 40px;
	}
}
@media (max-width: 899.99px) {
	#profile {
		padding: 40px 25px 25px;
		border-radius: 30px;
	}
}

/*----------------------------------------------------------------------------------------------------*/

#profile:before {
	content: '';
	display: block; height: 100px; width: 100px;
	margin: 0 auto 30px;
	
	background-color: #FFF;
	
	-webkit-mask-image: url("../../images/logo.png");
	mask-image: url("../../images/logo.png");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

/*----------------------------------------------------------------------------------------------------*/

#profile > .level {
	max-width: 300px;
	margin: 0 auto 30px;

	text-transform: uppercase;
	line-height: normal;
	font-family: 'Stretch Pro';
	font-size: 24px;
}

/*----------------------------------------------------------------------------------------------------*/

#profile > .criteria {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	row-gap: 20px;
	margin-bottom: 30px;
}
#profile > .criteria > .criterium { flex: 0 0 80px; }
#profile > .criteria > .criterium > .icon {
	height: 50px; width: 50px;
	padding: 12px;
	margin: 0 auto 20px;
	
	background-color: #E2E2E2;
	background-origin: content-box;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
}
#profile > .criteria > .criterium.location > .icon { background-image: url("../../images/emojis/location.png"); }
#profile > .criteria > .criterium.attendance > .icon { background-image: url("../../images/emojis/attendance.png"); }
#profile > .criteria > .criterium > .icon > img {
	height: 100%; width: 100%;
	
	object-fit: contain;
	object-position: center;
}
#profile > .criteria > .criterium > .label {
	line-height: 18px;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
}

/*----------------------------------------------------------------------------------------------------*/

#profile > .summary { margin-bottom: 30px; }

/*----------------------------------------------------------------------------------------------------*/

#profile > .cta-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#profile > .cta-wrapper > .application-btn {
	position: relative;
	display: block; overflow: hidden;
	padding: 0 30px 0 65px;
	
	background-color: #FFF;
	border-radius: 25px;
	
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 50px;
	font-size: 14px;
	font-weight: 700;
	font-style: italic;
	color: #000;
	
	cursor: pointer;
	transition:
		background-color .2s ease-out,
		color			 .2s ease-out;
}
#profile > .cta-wrapper > .application-btn:hover {
	background-color: #000;
	color: #FFF;
}
#profile > .cta-wrapper > .application-btn:before {
    content: '';
    position: absolute; top: 50%; left: 30px; transform: translateY(-50%);
	display: block; height: 20px; width: 20px;
	
	background-image: url("../../images/emojis/submit.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
	
	pointer-events: none;
}