@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Splash Screen
5. Header
4. Menu
8. Signature Dish
9. The Menu



******************************/

/*********************************
1. Splash Screen
*********************************/
html,body {
    height: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#menu-app {
    height: 100%;
    width: 100%;
	overflow: auto;
}
#splash {
    color: white;
    opacity: 1;
    transform: scale(1);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background-color: #b59889;
    transition: all 500ms 1s ease-out;
}
#splash .logo-container {
    width: 50%;
    max-width: 15em;
    padding: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
}
#splash .logo-container img {
    width: 100%;
}
#splash.fadeout {
    opacity: 0;
    transform: scale(1.7);
/*    -webkit-animation: fadeout 4s ease-in alternate infinite;
    -moz-animation: fadeout 4s ease-in alternate infinite;
    animation: fadeout 4s ease-in alternate infinite;*/
}

@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to { opacity: 0; }
}

@-moz-keyframes fadeout {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes fadeout {
    from { opacity: 1; }
    to { opacity: 0; }
}
/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	
}
body
{
	font-family: 'Noto Sans Arabic', sans-serif;
	font-size: 12pt;
	line-height: 14pt;
	font-weight: 400;
	background: #363636;
	color: #a5a5a5;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
.vl {
	position: absolute;
	border-left: 1px solid #b49383;
	height:98%;
	left:50%;
	opacity:0.1;
  }

li span {
font-size: 1em;
}

p
{
	font-family: 'PT Sans Narrow', sans-serif;
	font-size: 1em;
	line-height: 1.875;
	font-weight: 400;
	color: #636363;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ffa07f;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
p:last-of-type
{
	margin-bottom: 0;
}
a
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
	position: relative;
	color: #FF6347;
}
p a:hover
{
	color: #FFFFFF;
	background: #ffa07f;
}
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	background: rgba(196, 171, 159, 0.5);
	color: #FFFFFF;
}
p::selection
{
	
}
h1{font-size: 3.0em;}
h2{font-size: 2.0em;}
h3{font-size: 1.4em;}
h4{font-size: 1.2em;}
h5{font-size: 1.0em;}
h1, h2, h3, h4, h5, h6
{
	font-family: 'PT Sans Narrow', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	line-height: 1.2;
	color: #232323;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	
}
.form-control
{
	color: #db5246;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: right;
}
.float_right
{
	float: left;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.trans_800
{
	-webkit-transition: all 800ms ease;
	-moz-transition: all 800ms ease;
	-ms-transition: all 800ms ease;
	-o-transition: all 800ms ease;
	transition: all 800ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.parallax-window
{
    min-height: 600px;
    background: transparent;
}
.parallax_background
{
	position:absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right:0;
}
.background_image
{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.nopadding
{
	padding: 0px !important;
}
.page_subtitle
{
	
	color: #b49383;
	line-height: 0.75;
}
.button
{
	width: 163px;
	height: 47px;
	background: transparent;
	border: solid 2px #a1897c;
	text-align: center;
}yt
.button a
{
	display: block;
	font-size: 1em;
	color: #b49383;
	line-height: 44px;
}
.button:hover
{
	background: #b59889;
}
.button:hover a
{
	color: #FFFFFF;
}



/*********************************
3. Header
*********************************/
.logo
{
	-webkit-transform: translateY(3px);
	-moz-transform: translateY(3px);
	-ms-transform: translateY(3px);
	-o-transform: translateY(3px);
	transform: translateY(3px);
}
.logo a
{
	display: block;
}
.logo a > div:first-child
{
	font-size: 1.5em;
	line-height: 0.75;
	color: #FFFFFF;
}
.logo a > div:last-child
{
	font-size: 1em;
	text-transform: uppercase;
	color: #FFFFFF;
/*	letter-spacing: 0.680em;*/
	line-height: 0.75;
	margin-top: 5px;
	margin-bottom: 5px;
	font-weight: bold;
}


#nav-menu .logo-container {
    width: 12em;
    padding: 0;
    margin: 10px auto;
}
#nav-menu .logo-container img {
    width: 100%;
}
.main_nav
{
	margin-right: 70px;
}
.main_nav ul li:not(:last-child)
{
	margin-left: 40px;
}
.main_nav ul li a
{
	font-size: 1em;
	font-weight: 700;
	color: #FFFFFF;
	text-transform: uppercase;
}
.main_nav ul li a:hover
{
	color: #b49383;
}
.reservations_phone
{
	height: 47px;
	line-height: 43px;
	padding-right: 25px;
	padding-left: 20px;
	text-align: center;
	border: solid 2px #FFFFFF;
	font-size: 1em;
	font-weight: 700;
	color: #FFFFFF;
}
.hamburger_bar
{
	position: fixed;
	top: 0;
	left: calc((100vw - 690px) / 2 - 15px);
	width: auto;
	height: 149px;
	z-index: 102;
}
.hamburger_bar.scrolled
{
	height: 80px;
}
.hamburger
{
	display: none;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0px;
	cursor: pointer;
	padding: 15px;
	z-index: 2;
}
.menu_toggle
{
	display: block;
}
.menu_hamburger
{
	display: block;
	position: relative;
	width: 12px;
	height: 12px;
}
.hamburger-menu {
	font-size: 1.2em;
}
.hamburger_lines
{
	display: block;
	position: absolute;
	right: 0px;
	width: 200%;
	height: 2px;
	background: #F7F7F7;
	-webkit-transition: all 800ms ease;
	-moz-transition: all 800ms ease;
	-ms-transition: all 800ms ease;
	-o-transition: all 800ms ease;
	transition: all 800ms ease;
	transform-origin: center center;
}
.line_1
{
	top: 0px;
}
.line_2
{
	top: 8px;
}
.line_3
{
	top: 16px;
}
.hamburger.active .line_1
{
	transform: translateY(8px) rotate(45deg) !important;
}
.hamburger.active .line_3
{
	transform: translateY(-8px) rotate(-45deg) !important;
}
.hamburger.active .line_2
{
	opacity: 0 !important;
}
.menu_toggle span
{
	display: block;
	position: relative;
	font-size: 1em;
	font-weight: 700;
	line-height: 12px;
/*	letter-spacing: 1px;*/
	text-transform: uppercase;
	color: #F7F7F7;
}

/*********************************
5. Menu
*********************************/

.menu
{
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: #b59889;
	z-index: 101;
	visibility: hidden;
	opacity: 0;
}

.menu.active
{
	visibility: visible;
	opacity: 1;
}
.menu_content
{
	width: 100%;
	height: 100%;
}
.menu_content ul li:not(:last-child)
{
	margin-bottom: 3px;
}
.menu_content ul li
{
	display: block;
}
@media only screen and (max-height: 400px) {
    .menu_content ul li {
        display: inline-block;
        padding: 0 2em;
        min-width: 7em;
    }
}
.menu_content ul li a
{
	display: block;
	font-size: 1em;
	text-transform: uppercase;
	color: rgba(255,255,255,1);
	font-weight: bold;
/*	letter-spacing: 0.075em;*/
}
.menu_content ul:hover li a
{
	color: rgba(255,255,255,0.5);
}
.menu_content ul li a:hover
{
	color: rgba(255,255,255,1);
}
.nav-btn-border
{
	line-height: 43px;
	padding-left: 25px;
	padding-right: 20px;
	text-align: center;
	border: solid 2px #FFFFFF;
	font-size: 1.2em;
	font-weight: 700;
	color: #FFFFFF;
	white-space: nowrap;
}
a.nav-btn-border:hover,
a.nav-btn-border:active {
    color: #333;
    border-color: #333;
}

/*********************************
5. Home
*********************************/

.home
{
	width: 100%;
	height:100vh;
}
.home_container
{
	position: absolute;
	top: 43%;
	right: 0;
	width: 100%;
}
.home_subtitle
{
	font-size: 3em;
	font-weight: bold;
	line-height: 0.75;
	text-decoration-line: underline;
}
.home_title
{
	margin-top: 10px;
}
.home_title h1
{
	color: #FFFFFF;
}
.home_text
{
	max-width: 875px;
	margin-top: 14px;
}
.home_text p
{
	color: #FFFFFF;
}
.scroll_icon
{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 25px;
	width: 14px;
	height: 28px;
	border: solid 2px #FFFFFF;
	border-radius: 7px;
}
.scroll_icon::after
{
	display: block;
	position: absolute;
	top: 5px;
	left: 3px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #FFFFFF;
	content: '';
	-webkit-animation-name: scroll;
	animation-name: scroll;
	-webkit-animation-duration: 1500ms;
	animation-duration: 1500ms;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
@-webkit-keyframes scroll
{
	0%
	{
		opacity: 1;
	}
	100%
	{
		opacity: 0;
		-webkit-transform: translateY(10px);
		-moz-transform: translateY(10px);
		-ms-transform: translateY(10px);
		-o-transform: translateY(10px);
		transform: translateY(10px);
	}
}
@keyframes scroll
{
	0%
	{
		opacity: 1;
	}
	100%
	{
		opacity: 0;
		-webkit-transform: translateY(10px);
		-moz-transform: translateY(10px);
		-ms-transform: translateY(10px);
		-o-transform: translateY(10px);
		transform: translateY(10px);
	}
}
/*********************************
9. The Menu
*********************************/

.themenu
{ 
	margin-top: 100px;
	width: 100%;
	background: #FFFFFF;
}
.themenu_title_bar_container
{
	width: 100%;
	background: #282828;
	padding-right: 23px;
	padding-top: 22px;
	padding-bottom: 24px;
	padding-left: 22px;

}
.themenu_title_bar
{
	width: 100%;
	height: 103px;
	border: solid 2px #8c7c74;
}
.header-logo 
{
    padding: 0.5em;
}
.header-logo img
{
    width: 2.6em
}
.header-title
{
	font-size: 2em;
	color: #FFFFFF;
}
.header-hamburger-icon
{
    padding: 0.5em;
}
.header-hamburger-icon .icon
{
    width: 2.6em
}
.header-close-icon
{
    position: fixed;
    top: 0;
    left: 0;
    padding: 0.5em;
}
.header-close-icon .icon
{
    width: 2.6em
}
.header-hamburger-icon.corner-icon {
    transform: rotate(360deg);
}
.corner-icon {
    cursor: pointer;
    transform: rotate(-90deg);
    transition: transform 400ms ease;
}
.corner-icon.active {
    transform: rotate(0deg) !important;
}

.themenu_stars
{
	position: absolute;
	top: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 244px;
	background: #282828;
	font-size: 1.7em;
	z-index: 1;
}
.themenu_rating
{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 15px;
	width: 95px;
	background: #282828;
	z-index: 1;
}
.themenu_col
{
	/*width: 100%;
	padding-left: 33px;
	padding-top: 39px;
	padding-right: 28px;
	padding-bottom: 44px;
	border: solid 1px #dadada;
	-ms-overflow-style: none;
    scrollbar-width: none;*/
	position: relative;
    -ms-overflow-style: none;
    margin: 20px 30px 10px;
    border: solid 7px #b59889;
    border-radius: 5px;
	max-height: 30em;
	overflow: hidden;
    padding: 0;
	transition: all 350ms ease-out;
}
.themenu_col.active {
	margin: 0;
	border-width: 0;
	max-height: 100%;
    border-radius: 0;
}
.cat_title {
	/*background-blend-mode: multiply;*/
	background-size: cover;
	text-indent: 0;
	padding: 3em 0 1em 0;
	transition: padding 350ms ease-out;
	cursor: pointer;
	min-height: 100%;
}
@media only screen and (min-height: 700px) {
    .cat_title {	padding: 5em 0 1em 0; }
}
@media only screen and (min-height: 900px) {
    .cat_title {	padding: 9em 0 1em 0; }
}
.themenu_col.active .cat_title {
	padding-right: 3em;
	cursor: default;
}
.themenu_col .btn_back {
    position: absolute;
    right: -4em;
    bottom: 1.5em;
	transition: right 350ms ease-out;
	cursor: pointer;
/*	display: none;*/
}
.themenu_col.active  .btn_back {
/*	display: block;*/
    right: 1em;
}


.menu_bg{
	background-color: #ffffff;
	background-image: linear-gradient(to right, #b59889, #b59889 20px, #ffffff 20px, #ffffff );
	background-size: 40px 100%;	
}

.themenu_row
{
	padding: 40px 0px 80px 0px;
	margin-bottom: 92px;

}
.themenu_col_title
{
	text-transform: uppercase;
	display: inline-block;
	height: auto;
	padding-right: 11px;
	padding: 2px 15px;
	border: 0;
	font-size: 1.8em;
	line-height: 1.5;
	color: #ffffff;
}
.themenu_col_subtitle
{
	text-transform: uppercase;
	padding-right: 11px;
	padding: 2px 15px;
	font-size: 1em;
	color: #ffffff;
}
.themenu_col_caption
{
    position: absolute;
    top: 1em;
    left: 1em;
}
.category_list
{
margin-top: 0px;
}
.dish_list
{
	/* margin-top: 20px; */
	height: 313px;
	overflow-y:scroll ;
	overflow-x:hidden ;
	-ms-overflow-style: none;
    scrollbar-width: none;
}
.dish_list::-webkit-scrollbar {
	display: none;
  }

.dish {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #CCC;
}
.dish.active {
    /*animation: pulse 1s ease-out normal 1;*/
}
@keyframes pulse {
  0% {
	background-color: #ddf4f9;
  }
  100% {
    background-color: #FFFFFF;
  }
}
.dish_title
{
	font-size: 1em;
	font-weight: bold;
	color: #232323;
	margin-right: 5px;
	padding: 4px 0;
}

.dish_price
{
	margin-right: 1em;
	font-size: 1em;
	width: 50px;
	color: #232323;
	white-space:nowrap;
	direction: ltr;
}
.dish_contents
{
	margin-top: 3px;
	margin-right: -20px;
}
.dish_contents ul
{
    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
    padding-right: 1.6rem;
}
.dish.active .dish_contents ul
{
    /*white-space: normal;
    overflow: visible;*/
}
.dish_contents ul li
{
    display: inline;
	font-size: 0.9em;
	color: #636363;
    line-height: 1.7;
}
.dish_contents ul li:not(:last-child)::after
{
	display: inline-block;
	content: '،\0020';
/*	margin-right: 3px;
	margin-left: 3px;*/
    font-size: 1em;
	color: #636363;
}


.accordion {
  width: 100%;
  background-color: #b59889;
  border-bottom: 1px solid #cfc0b8;
}

.accordion .headers {
  height: 48px;
  line-height: 40px;
  padding: 5px 8px 5px 40px;
  font-weight: bold; 
  font-size: 1.1em;
  position: relative;
  color: #fff;
  cursor: pointer;
  transition: background 150ms ease;
  text-transform: uppercase;
}
.accordion .headers.active {
    background: #1e8599;
}
.accordion .headers .chevron-icon {
  position: absolute;
  left: 10px;
  top: 15px;
  transform: rotate(0deg);
  transition-duration: 0.3s;
}
.accordion .headers.active .chevron-icon {
  transform: rotate(180deg);
  transition-duration: 0.3s;
}

.accordion .header-icon {
  position: absolute;
  top: 5px;
  left: 8px;
  transform: rotate(0deg);
  transition-duration: 0.3s;
}

.accordion .body {
/*   display: none; */
  overflow: hidden;
  background-color: #fff;
  /* border: 10px solid #ec5366; */
  /* border-top: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px; */
  transition: 250ms ease-out;
}

.accordion .body-inner {
  padding: 8px;
  /* overflow-wrap: break-word; */
/*   white-space: pre-wrap; */
}

.accordion .header-icon.rotate {
  transform: rotate(180deg);
  transition-duration: 0.3s;
}