/*
Small (smaller than 640px)
Medium (641px to 1007px)
Large (1008px and larger)
*/


/*********************************************************** SMALL SCREEN */	
	#overlay-mobile-close-button {
		right: 20px;
	}

/*********************************************************** MEDIUM SCREEN */
@media screen and (min-width: 800px) {
	#overlay-mobile-close-button {
		right: 40px;
	}
}

/*********************************************************** LARGE SCREEN */
@media screen and (min-width: 1380px) {
	#overlay-mobile-close-button {
		right: 40px;
	}
}


/***************************************************************************************************************** MENU */


/***************************************************************************************************************** OVERLAY */
#overlay-wrapper {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	z-index: 19999;
	
	opacity: 0;
	display: none;
}

#overlay-inner {
	width: calc(100% - 60px);
	height: calc(100% - 100px);
}

.overlay-inner-image {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	
	margin: 0px;
	display: none;
	
	background: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.overlay-inner-about {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% - 60px);
	height: 100%;
	
	margin: 0px auto;
	display: none;
}

#overlay-mobile-close-button {
	position: absolute;
	top: calc((120px - 18px) / 2);
	width: 18px;
	height: 18px;
	
	background: transparent;
	cursor: pointer;
}
#overlay-mobile-close-button:hover #overlay-mobile-cross-line-0 {
	rotate: 30deg;
}
#overlay-mobile-close-button:hover #overlay-mobile-cross-line-1 {
	rotate: 150deg;
}

#overlay-mobile-close-icon {
	position: absolute;
	top: -2px;
	right: 0px;
	width: 18px;
	height: 18px;
	background: transparent;
}

#overlay-mobile-cross-line-0 {
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	height: 1px;
	background: rgb(223, 209, 167);
	rotate: 45deg;
	
	-webkit-transition: rotate 0.2s;
	transition: rotate 0.2s;
}
#overlay-mobile-cross-line-1 {
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	height: 1px;
	background: rgb(223, 209, 167);
	rotate: 135deg;
	
	-webkit-transition: rotate 0.2s;
	transition: rotate 0.2s;
}

/********************************************************************** ABOUT - STAFF */
.overlay-cuisine-info-title {
	position: relative;
	width: 100%;
	
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	color: rgb(223, 209, 167);
	letter-spacing: 2px;
	line-height: 30px;
	text-align: center;
}

.overlay-cuisine-info-subtitle {
	position: relative;
	width: 100%;
	
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	color: rgb(223, 209, 167);
	letter-spacing: 1px;
	line-height: 24px;
	text-align: center;
}

.overlay-cuisine-info-line {
	position: relative;
	width: 100%;
	height: 1px;
	
	background: rgb(223, 209, 167);
	margin: 0px;
}

.overlay-cuisine-info-text {
	position: relative;
	width: 100%;
	
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	color: white;
	letter-spacing: 1px;
	line-height: 30px;
	text-align: left;
}