.loaded.menu-open #modal-menu {
	display: block;
	pointer-events: auto;
	visibility: visible;
}

/*--------------------------------------------------------------------------------------------------------------------*/

#modal-menu > .menu-wrapper {
	position: relative;
	width: 100%; height: 100%; overflow: hidden;
}

#modal-menu > .menu-wrapper > .menu-content {
	position: absolute; top: 0; right: 0; bottom: 0; z-index: 1;
	display: flex; overflow: auto;
	flex-direction: column;
	
	margin-right: 0;
	margin-left: auto;
	
	background-color: #207175;
	clip-path: inset(0 0 0 100%);
	
	pointer-events: none;
	visibility: hidden;
}
@media (min-width: 1200px) { #modal-menu > .menu-wrapper > .menu-content { left: 40%; } }
@media (max-width: 1199.99px) { #modal-menu > .menu-wrapper > .menu-content { left: 20%; } }
.loaded #modal-menu > .menu-wrapper > .menu-content {
	transition:
		clip-path  .6s cubic-bezier(0.38, 0.005, 0.215, 1),
		visibility  0s cubic-bezier(0.38, 0.005, 0.215, 1) .6s;
}
.loaded.menu-open #modal-menu > .menu-wrapper > .menu-content {
	clip-path: inset(0 0 0 0);
	
	pointer-events: auto;
	visibility: visible;
	
	transition:
		clip-path  .6s cubic-bezier(0.38, 0.005, 0.215, 1),
		visibility  0s 0s;
}

#modal-menu > .menu-wrapper > .menu-content > .menu {
	clip-path: inset(0 0 0 100%);
}
.loaded #modal-menu > .menu-wrapper > .menu-content > .menu {
	transition: clip-path 0s linear .6s;
}
.loaded.menu-open #modal-menu > .menu-wrapper > .menu-content > .menu {
	clip-path: inset(0 0 0 0);
	transition: clip-path .6s cubic-bezier(0.38, 0.005, 0.215, 1) .1s;
}

#modal-menu > .menu-wrapper > .menu-content > .menu > * {
	position: relative; top: 50px;
	opacity: 0;
}
.loaded #modal-menu > .menu-wrapper > .menu-content > .menu > * {
	transition:
		top 	0s linear .6s,
		opacity 0s linear .6s;
}
.loaded.menu-open #modal-menu > .menu-wrapper > .menu-content > .menu > * {
	top: 0;
	opacity: 1;
	transition:
		top 	.6s cubic-bezier(0.38, 0.005, 0.215, 1) .1s,
		opcaity .6s cubic-bezier(0.38, 0.005, 0.215, 1) .1s;
}

/*--------------------------------------------------------------------------------------------------------------------*/

#modal-menu > .menu-underlay {
	position: absolute; top: 0; left: 0; bottom: 0; right: 0;

	background-color: #000;

	opacity: 0;
	visibility: hidden;
	
	pointer-events: none;
}
.loaded #modal-menu > .menu-underlay {
	transition:
		opacity    .6s cubic-bezier(0.215, 0.61, 0.355, 1),
		visibility  0s cubic-bezier(0.215, 0.61, 0.355, 1) .6s;
}
.loaded.menu-open #modal-menu > .menu-underlay {
	opacity: 0.75;
	visibility: visible;
	
	pointer-events: auto;
	cursor: pointer;
	
	transition:
		opacity    .6s cubic-bezier(0.215, 0.61, 0.355, 1),
		visibility  0s 0s;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/

#modal-menu > .menu-wrapper > .menu-content > .menu {}
@media (min-width: 700px) { #modal-menu > .menu-wrapper > .menu-content > .menu { padding: 80px; } }
@media (max-width: 699.99px) { #modal-menu > .menu-wrapper > .menu-content > .menu { padding: 60px 30px; } }

#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .menu-item.arrow-link {
	position: relative; padding-right: 35px;
}
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .menu-item.arrow-link:after {
	content: "";
	position: absolute; top: 50%; right: 0; transform: translateY(-50%);
	display: block; height: 23px; width: 23px;
	
	-webkit-mask: url("../../images/icons/arrow.link.svg") no-repeat 50% 50%;
	mask: url("../../images/icons/arrow.link.svg") no-repeat 50% 50%;
	-webkit-mask-size: contain;
	mask-size: contain;
}
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .menu-item,
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .submenu-item {
	display: block;
	cursor: pointer;
}
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .arrow-link,
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .submenu-btn { width: max-content; }
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .menu-item,
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .submenu-item { opacity: .5; transition: opacity .2s ease-out; }
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .current,
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .menu-item:hover,
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .submenu-item:hover { opacity: 1; }
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items > :not(:last-child) { margin-bottom: 15px; }
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .submenu { padding-top: 15px; }
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items .submenu > .submenu-item:not(:last-child) { margin-bottom: 15px; }
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items > .submenu-container > .menu-item {
	position: relative;
	padding-right: 35px;
}
#modal-menu > .menu-wrapper > .menu-content > .menu > .menu-items > .submenu-container > .menu-item:after {
	content: "";
	position: absolute; top: 50%; right: 0; transform: translateY(-50%) rotate(-90deg);
	display: block; height: 20px; width: 20px;
	
	background-color: #FFF;
	-webkit-mask: url("../../images/icons/arrow.simple.svg") no-repeat 50% 50%;
	mask: url("../../images/icons/arrow.simple.svg") no-repeat 50% 50%;
	-webkit-mask-size: contain;
	mask-size: contain;
}

/*--------------------------------------------------------------------------------------------------------------------*/

#modal-menu > .menu-wrapper > .menu-content > .menu.navigation {
	flex: 1;
	background-color: #E45C4A;
	
	color: #FFF;
}

#modal-menu > .menu-wrapper > .menu-content > .menu.navigation > .menu-items {}
#modal-menu > .menu-wrapper > .menu-content > .menu.navigation > .menu-items .menu-item {
	line-height: 120%;
	font-weight: 700;
}
#modal-menu > .menu-wrapper > .menu-content > .menu.navigation > .menu-items .submenu-item {
	font-weight: 300;
}
@media (min-width: 700px) {
	#modal-menu > .menu-wrapper > .menu-content > .menu.navigation > .menu-items .menu-item { font-size: 38px; }
	#modal-menu > .menu-wrapper > .menu-content > .menu.navigation > .menu-items .submenu-item {
		line-height: 100%;
		font-size: 22px;
	}
}
@media (max-width: 699.99px) {
	#modal-menu > .menu-wrapper > .menu-content > .menu.navigation > .menu-items .menu-item { font-size: 24px; }
	#modal-menu > .menu-wrapper > .menu-content > .menu.navigation > .menu-items .submenu-item {
		line-height: 120%;
		font-size: 22px;
	}
}
#modal-menu > .menu-wrapper > .menu-content > .menu.navigation > .menu-items .menu-item.arrow-link:after { background-color: #FFF; }

/*--------------------------------------------------------------------------------------------------------------------*/

#modal-menu > .menu-wrapper > .menu-content > .menu.talents {
	background-color: #FFF;
	color: #000;
}
#modal-menu > .menu-wrapper > .menu-content > .menu.talents > .title {
	margin-bottom: 45px;
	
	line-height: 100%;
	font-weight: 700;
}
#modal-menu > .menu-wrapper > .menu-content > .menu.talents > .menu-items {}
#modal-menu > .menu-wrapper > .menu-content > .menu.talents > .menu-items > .menu-item {
	line-height: 120%;
	font-weight: 300;
}
@media (min-width: 700px) {
	#modal-menu > .menu-wrapper > .menu-content > .menu.talents > .title { font-size: 42px; }
	#modal-menu > .menu-wrapper > .menu-content > .menu.talents > .menu-items > .menu-item { font-size: 32px; }
}
@media (max-width: 699.99px) {
	#modal-menu > .menu-wrapper > .menu-content > .menu.talents > .title { font-size: 32px; }
	#modal-menu > .menu-wrapper > .menu-content > .menu.talents > .menu-items > .menu-item { font-size: 22px; }
}
#modal-menu > .menu-wrapper > .menu-content > .menu.talents > .menu-items > .menu-item.arrow-link:after { background-color: #000; }