
/***************************
		PROFILE OPTIONS
*****************************/
.account-options {
	height: 100%;
}

.account-options a {
	padding: 16px;
	height: 270px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.account-options a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--grey-4);
	z-index: 1;
	opacity: 1;
	transition: opacity .3s ease;
}

.account-options a:hover::after {
	opacity: 0;
}

.account-options a .option-text {
	z-index: 2;
	color: var(--black);
	transition: color .3s ease;
	gap: 10px;
	max-width: 370px;
	text-align: center;
}

.account-options a:hover .option-text > * {
	color: var(--black);
	transition: color .3s ease;
}

.account-options a:hover .option-text > * {
	color: var(--white);
}

.account-options a:hover .option-icon svg {
	fill: var(--white);
}

.option-arrow-icon {
	position: absolute;
	color: var(--white);
	bottom: 24px;
	right: 30%;
	opacity: 0;
	font-size: 32px;
	transition: right .3s ease, opacity .3s ease;
}

.account-options a:hover .option-arrow-icon {
	right: 34px;
	opacity: 1;
}


@media (min-width: 768px) {
	.account-options {
		height: calc(100vh - 161px);
	}
}

@media (min-width: 992px) {
	.account-options {
		height: calc(100vh - 181px);
	}
}

@media (min-width: 1200px) {
	.account-options {
		height: calc(100vh - 205px);
	}
}

