* {
	box-sizing: border-box;
	letter-spacing: 0.01rem;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

*:not(div)::selection {
	background:rgb(68, 77, 83);
	color:#fff;
}

*:not(div)::-moz-selection {
	background:rgb(68, 77, 83);
	color:#fff;
}

*:not(div)::-webkit-selection {
	background:rgb(68, 77, 83);
	color:#fff;
}

body, html {
	height: 100%;
	width: 100%;
	margin: 0;
}

html {
	font-size: 16px;
	border-top-color: rgb(255, 255, 4);
}

body {
	display: block;
	outline: 0;
	border: 0;
	margin-bottom: 1px;
	overflow-x: hidden;
	overflow-y: auto;
	margin-bottom: 1px;
}

main {
	padding-top: 4.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: stretch;
	align-items: flex-start;
	height: 100%;
}

body.page main {
	min-height: 100%;
	height: auto;
}

.darkgray {
	background: rgb(68, 77, 83);
}

.darkgray * {
	color: #fff;
}

.onlyMobile{
	display:none;
}

.onlyDesktop{
	display:block;
}

/************************ HEADER ***********************/
header {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: center;
	-webkit-align-items: stretch;
	padding: 1.25rem 3rem;
	height: 4.5rem;
	z-index: 2;
}

body.home header {
	box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
}

header .logos {
	width: 22.5rem;
	height:100%;
	position: relative;
}

header .logos img {
	width: 100%;
	position: absolute;
	transition: opacity .2s ease-in-out;
}

header .logos img.claim {
	top: -6px;
	opacity: 0;
	width: 90%;
	margin-left: 5%;
}

header .search{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

header > ul {
	flex: 1 1 auto;
	text-align: center;
	padding: 0 2rem;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	margin: 0;
}

header > ul li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
}

header > ul li:before,
.megaDropdown .onlyMobile > ul:first-child li:before{
	content: '';
	opacity: 0;
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	transition: opacity .2s;
	border-bottom-width: 5px;
	border-bottom-style: solid;
}

header > ul li a {
	color: rgb(68, 77, 83);
	font-weight: 600;
	font-size: 1.125rem;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.6px;
}

header > ul li.selected:before,
header > ul li:hover:before{
	opacity: 1;
}



/************************ SEARCH ***********************/
.search {
	cursor: pointer;
}
.search i{
	position: relative;
	margin-top: 0.2rem;
	font-size: 1.5rem;
}
.search i span{
	color: rgb(68, 77, 83);
	font-family: museo-sans, Arial;
	font-size: 1.2rem;
	padding-left: 3.5rem;
}

.search i:first-child{
	padding-right: 1rem;
	margin-right: 0rem;
	border-right: 3px solid rgb(68, 77, 83);
}

.search a:last-child i{
	padding-left: 1rem;
	padding-right: 0;
	border:none;
}

.search a:last-child{
	color:#000;
}

/************************ SEARCH RESULTS ***********************/
div.searchResults {
	position: relative;
	width: 100%;
}

div.searchResults.show {
	max-height: 1000px;
}

div.searchResults div.searchResultsContent {
	padding: 2rem;
	margin-bottom: 2rem;
	display: none;
}

div.searchResults h1,
div.searchResults h2,
div.searchResults h3,
div.searchResults p,
div.searchResults a {
	color: #fff;
}

div.searchResults h1 {
	margin-bottom: 0;
}

div.searchResults h2 {
	margin-bottom: 1rem;
}

div.searchResults p {
	margin-bottom: .5rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

div.searchResults input {
	padding: .5rem;
	font-size: 2rem;
	background-color: rgba(255, 255, 255, .1);
	margin-bottom: 0;
	display: inline-block;
	width: calc(100% - 3.5rem);
	border:none;
}

div.searchResults ul {
	padding: 0;
	margin: 2rem 0 0 0;
}

div.searchResults ul:empty {
	margin: 0;
}

div.searchResults ul li {
	padding: .5rem 0;
	margin: .5rem 0;
	list-style-type: none;
	position: relative;
	display: block;
	border-bottom: 4px solid rgba(255, 255, 255, .1) !important;
}

div.searchResults ul li:before {
	content: '';
	border: 2px solid;
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 25%;
}

div.searchResults ul li:last-child {
	margin-bottom: 0;
}

div.searchResults h3.breadcrumb {
	opacity: .6;
	margin-bottom: 0;
}

h3.breadcrumb a:before {
	display: none;
}

div.searchResults ul li > a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

div.searchResults i.fa-times {
	padding: 0 0 0 1.5rem;
	font-size: 2.6rem;
	cursor: pointer;
	transform: translateY(.2rem);
	opacity: .6;
}


/************************ MOOD NAVI ***********************/
div.moodNavi {
	width: 100%;
	margin-bottom: 1rem;
	overflow: hidden;
	height: 11rem;
	flex: 0 0 11rem;
}

div.moodNaviContent {
	overflow: hidden;
	height: 100%;
	width: 100%;
}

div.moodNaviItemContainer {
	height: calc(100% + 25px);
	white-space: nowrap;
	overflow-x: scroll;
	overflow-y: hidden;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-content: stretch;
	align-items: flex-start;
}

div.moodNavi .item {
	/* min-width:18.75rem; */
	height: calc(100% - 25px);
	background-size: cover;
	position: relative;
	flex: 1 1 18.75rem;
	float: left;
	transition: border .2s ease-in-out;
	background-position: center center;
}

div.moodNavi .item:not(.moodBar):hover,
div.moodNavi .item.selected {
	border-bottom: 0.5rem solid #ecb300;
}

div.moodNavi .item h1 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	line-height: 3.2rem;
	padding: 5rem 0.5rem 0.1rem;
	text-align: center;
	font-size: 3rem;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.65) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
}

div.moodNavi .item a {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
}

/************************ MEGA DROPWDOWN ***********************/
div.megaDropdown {
	background: #fff;
	position: relative;
	transition: all 0.2s ease-in-out;
	margin-bottom: 10px;
	z-index: 1;
	box-shadow: 0 10px 5px 5px rgba(0, 0, 0, 0.2);
	max-height: 1px;
	height:1rem;
	width: 100%;
}

div.megaDropdown + .moodNavi {
	margin-top: -.8rem;
}

div.megaDropdown .grab {
	background: red;
	height: 0.875rem;
	width: 100%;
	position: absolute;
	top: calc(100% - 4px);
	left: 0;
	overflow: hidden;
	cursor: pointer;
}

div.megaDropdown .grab:before {
	box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 0;
	height: 1px;
	width: 100%;
	content: '';
}

div.megaDropdown .grabHandle {
	transition: margin .2s ease-in-out;
	margin-left: calc(50% - 2rem);
	cursor: pointer;
	background: red;
	bottom: -2.8rem;
	height: 2.2rem;
	padding: 0.2rem 1.8rem;
	border-radius: 0 0 1.2rem 1.2rem;
	z-index: 1;
	position: absolute;
	box-shadow:0 5px 5px 0px rgba(0, 0, 0, 0.1);
}

div.megaDropdown .grabHandle:before {
	font-family: 'Font Awesome 6 Sharp';
	content: "\f0c9";
	color: #fff;
	font-size: 1.5rem;
}

body.showMegeMenu div.megaDropdown .grabHandle:before {
	content: "\f077"
}

div.megaDropdown .content {
	padding: 0 3rem;
	position: relative;
	display: inline-block;
	width: 100%;
	overflow: hidden;
	max-height: 0;
	transition: all 0.2s ease-in-out;
}


div.megaDropdown .content ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

div.megaDropdown .content ul li {
	margin: 0;
	padding: 0;
}

div.megaDropdown .content ul li.selected a {
	font-weight: 600;
}

div.megaDropdown .content ul li a {
	color: rgb(68, 77, 83);
	text-decoration: none;
	font-size: 1.125rem;
	padding: 0.6rem 0;
	display: block;
}

div.megaDropdown a {
	pointer-events: none;
}

body.showMegeMenu div.megaDropdown a {
	pointer-events: all;
}

div.megaDropdown .content ul li a:hover {
	color: #000;
}

div.megaDropdown .content > ul,
div.megaDropdown .content .onlyMobile > ul{
	padding-bottom: 2rem;
	text-transform: uppercase;
	cursor: pointer;
}

div.megaDropdown .content > ul li{
	white-space: nowrap;
}

div.megaDropdown .children {
	flex: 1 1 auto;
	padding-left: 4em;
	padding-top: 0.3rem;
	padding-bottom: 2rem;
}

div.megaDropdown .content > ul,
div.megaDropdown .onlyMobile,
div.megaDropdown .children{
	margin-top:1rem;
}

div.megaDropdown .children > ul {
	column-count: 4;
	break-inside: avoid-column;
}

div.megaDropdown .children > ul {
	display: none;
}

div.megaDropdown .children > ul:first-child {
	display: block;
}

div.megaDropdown .children > ul > li {
	-webkit-column-break-inside: avoid; /* Chrome, Safari */
	page-break-inside: avoid; /* Theoretically FF 20+ */
	break-inside: avoid-column; /* IE 11 */
	display: table; /* Actually FF 20+ */
}

div.megaDropdown .children > ul > li.noChildren {
	font-weight: 500;
}

div.megaDropdown .children > ul > li > ul {
	padding-bottom: 2rem;
}

div.megaDropdown .children > ul > li > a {
	font-weight: 600;
	padding: 0.3rem 0;
}

div.megaDropdown .children > ul > li > ul > li a {
	text-transform: none;
	padding: 0.3rem 0;
}

body.animateMegeMenu div.megaDropdown {
	max-height: 20px;
}


body.showMegeMenu div.megaDropdown,
body.showMegeMenu div.megaDropdown .content {
	height: auto;
	max-height: 1000px;
}

body.showMegeMenu div.megaDropdown .content {
	display: flex;
	flex-wrap: nowrap;
	flex: 0 0 16%;
}

body.showMegeMenu div.megaDropdown:before {
	content: ' ';
	border-top: 1px solid #000;
	position: absolute;
	top: 1px;
	left: 3rem;
	right: 3rem;
}

div.megaDropdown span.meta{
	padding: .3rem 0;
	display:block;
	font-weight: normal;
	font-size: 1rem;
}


/************************ CONTENT ***********************/
section {
	flex: 1 1 auto;
	width: 100%;
}


/************************ FOOTER ***********************/
footer {
	position: fixed;
	bottom: -.2em;
	right: 0;
	display: flex;
	padding: .2em 0 .2em .6em;
	border-radius: 2em 0 0 2em;
	background: rgba(0, 0, 0, .3);
	backdrop-filter: blur(.5rem);
}

footer:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: .5;

}

footer ul {
	margin: 0;
	padding: 0;
	z-index: 1;
	display: inline-block;
}

ul.footerNavi li:nth-child(2):after {
	content: "\A";
	letter-spacing: 0;
	white-space: pre;
}

footer li {
	display: inline;
	list-style-type: none;
}

footer li a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	padding: .2em .6em;
	font-size: .8em;
	display: inline-block;
}


ul.social {
	margin-left: 1em;
}

ul.social img {
	width: 2.5rem;
}
