body,
html {
	font-family: 'Ubuntu', sans-serif;
}

/*class for fontawsome placeholder*/
.fontAwesome {
	font-family: 'Helvetica', FontAwesome, sans-serif;
}



.cart-icon,
.cart-icon:hover {
	position: fixed;
	top: 300px;
	right: 0;
	background-color: white;
	color: firebrick;
	padding: 5px 8px;
	border-radius: 5px 0 0 5px;
	font-size: 18px;
	z-index: 999
}

.loader {
	background-color: firebrick;
	height: 100vh;
	min-width: 100%;
	overflow: hidden;
	position: fixed;
	z-index: 999
}

.loader h1 {
	position: relative;
	margin: 0 auto;
	top: 25vh;
	width: 50%;
	text-align: center;
	font-family: 'Amatic SC';
	font-size: 6vh;
	color: white;
	font-weight: bold
	opacity: .75;
	animation: pulse 2.5s linear infinite;
}

.loader #cooking {
	position: relative;
	margin: 0 auto;
	top: 0;
	width: 70vh;
	height: 70vh;
	overflow: hidden;
	right: 5%
}

.loader #cooking .bubble {
	position: absolute;
	border-radius: 100%;
	box-shadow: 0 0 0.25vh white;
	opacity: 0;
}

.loader #cooking .bubble:nth-child(1) {
	margin-top: 2.5vh;
	left: 58%;
	width: 2.5vh;
	height: 2.5vh;
	background-color: white;
	animation: bubble 2s cubic-bezier(0.53, 0.16, 0.39, 0.96) infinite;
}

.loader #cooking .bubble:nth-child(2) {
	margin-top: 3vh;
	left: 52%;
	width: 2vh;
	height: 2vh;
	background-color: white;
	animation: bubble 2s ease-in-out .35s infinite;
}

.loader #cooking .bubble:nth-child(3) {
	margin-top: 1.8vh;
	left: 50%;
	width: 1.5vh;
	height: 1.5vh;
	background-color: white;
	animation: bubble 1.5s cubic-bezier(0.53, 0.16, 0.39, 0.96) 0.55s infinite;
}

.loader #cooking .bubble:nth-child(4) {
	margin-top: 2.7vh;
	left: 56%;
	width: 1.2vh;
	height: 1.2vh;
	background-color: white;
	animation: bubble 1.8s cubic-bezier(0.53, 0.16, 0.39, 0.96) 0.9s infinite;
}

.loader #cooking .bubble:nth-child(5) {
	margin-top: 2.7vh;
	left: 63%;
	width: 1.1vh;
	height: 1.1vh;
	background-color: white;
	animation: bubble 1.6s ease-in-out 1s infinite;
}

.loader #cooking #area {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 50%;
	background-color: transparent;
	transform-origin: 15% 60%;
	animation: flip 2.1s ease-in-out infinite;
}

.loader #cooking #area #sides {
	position: absolute;
	width: 100%;
	height: 100%;
	transform-origin: 15% 60%;
	animation: switchSide 2.1s ease-in-out infinite;
}

.loader #cooking #area #sides #handle {
	position: absolute;
	bottom: 18%;
	right: 80%;
	width: 35%;
	height: 20%;
	background-color: transparent;
	border-top: 1vh solid white;
	border-left: 1vh solid transparent;
	border-radius: 100%;
	transform: rotate(20deg) rotateX(0deg) scale(1.3, 0.9);
}

.loader #cooking #area #sides #pan {
	position: absolute;
	bottom: 20%;
	right: 30%;
	width: 50%;
	height: 8%;
	background-color: white;
	border-radius: 0 0 1.4em 1.4em;
	transform-origin: -15% 0;
}

.loader #cooking #area #pancake {
	position: absolute;
	top: 24%;
	width: 100%;
	height: 100%;
	transform: rotateX(85deg);
	animation: jump 2.1s ease-in-out infinite;
}

.loader #cooking #area #pancake #pastry {
	position: absolute;
	bottom: 26%;
	right: 37%;
	width: 40%;
	height: 45%;
	background-color: #FFF;
	box-shadow: 0 0 3px 0 #FFF;
	border-radius: 100%;
	transform-origin: -20% 0;
	animation: fly 2.1s ease-in-out infinite;
}

@keyframes jump {
	0% {
		top: 24%;
		transform: rotateX(85deg);
	}

	25% {
		top: 10%;
		transform: rotateX(0deg);
	} 

	50% {
		top: 30%;
		transform: rotateX(85deg);
	}
 
	75% {
		transform: rotateX(0deg);
	}

	100% {
		transform: rotateX(85deg);
	}
}

@keyframes flip {
	0% {
		transform: rotate(0deg);
	}

	5% {
		transform: rotate(-27deg);
	}

	30%,
	50% {
		transform: rotate(0deg);
	}

	55% {
		transform: rotate(27deg);
	}

	83.3% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

@keyframes switchSide {
	0% {
		transform: rotateY(0deg);
	}

	50% {
		transform: rotateY(180deg);
	}

	100% {
		transform: rotateY(0deg);
	}
}

@keyframes fly {
	0% {
		bottom: 26%;
		transform: rotate(0deg);
	}

	10% {
		bottom: 40%;
	}

	50% {
		bottom: 26%;
		transform: rotate(-190deg);
	}

	80% {
		bottom: 40%;
	}

	100% {
		bottom: 26%;
		transform: rotate(0deg);
	}
}

@keyframes bubble {
	0% {
		transform: scale(0.15, 0.15);
		top: 80%;
		opacity: 0;
	}

	50% {
		transform: scale(1.1, 1.1);
		opacity: 1;
	}

	100% {
		transform: scale(0.33, 0.33);
		top: 60%;
		opacity: 0;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1, 1);
		opacity: .25;
	}

	50% {
		transform: scale(1.2, 1);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: .25;
	}
}


/* width */
body::-webkit-scrollbar {
	width: 15px;
}

/* Track */
body::-webkit-scrollbar-track {
	background: #FFF;
	border-top: none;
	border-right: none;
	border-bottom: none
}

/* Handle */
body::-webkit-scrollbar-thumb {
	background-color:firebrick;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
	background: firebrick;
}

::selection {
	background-color: firebrick;
	color: white
		/* WebKit/Blink Browsers */
}

/* Start Header SEction */

.header {
	padding: 10px 0 0px;
	background-color: #EEE
}

.header span {
	font-size: 11px
}

.header a {
	text-decoration: none;
	color: black
}

.header #mySidenav .closebtn {
	font-size: 40px
}

.header #mySidenav a {
	font-size: 17px;
	margin-bottom: 15px
}

.header .fa-align-left {
	cursor: pointer;
	margin-top: 10px;
	color: grey;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.header .register {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	right: 5px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	margin-top: 25px;
}

.header .word-register {
	font-size: 15px !important;
	padding-top: 20px
}

.header .fa-align-left:hover {
	cursor: pointer;
	color: black
}

/* The side navigation menu */
.header .sidenav {
	height: 100%;
	/* 100% Full-height */
	width: 0;
	/* 0 width - change this with JavaScript */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Stay on top */
	top: 0;
	/* Stay at the top */
	left: 0;
	background-color: #111;
	/* Black*/
	overflow-x: hidden;
	/* Disable horizontal scroll */
	padding-top: 60px;
	/* Place content 60px from the top */
	transition: 0.5s;
	/* 0.5 second transition effect to slide in the sidenav */
	z-index: 999
}

/* The navigation menu links */
.header .sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.header .sidenav a:hover {
	color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.header .sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
.header #main {
	transition: margin-left .5s;
	padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
	.header .sidenav {
		padding-top: 15px;
	}

	.header .sidenav a {
		font-size: 18px;
	}
}

.header .dropbtn {
	padding: 0px;
	font-size: 12px;
	border: none;
	cursor: pointer;
	font-weight: bold
}

/* The container <div> - needed to position the dropdown content */
.header .dropdown {
	position: relative;
	display: inline-block;
	top: 1px
}

/* Dropdown Content (Hidden by Default) */
.header .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 99 !important;
}

/* Links inside the dropdown */
.header .dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

/* Change color of dropdown links on hover */
.header .dropdown-content a:hover {
	background-color: #ddd
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.header .show {
	display: block;
}

.header .img-profile {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	box-shadow: 0 0 1px 1px black;
	margin-bottom: -10px
}

.list-inline {
	padding-left: 0;
	margin-left: -5px;
	list-style: none;
	margin-top: 2px;
	font-weight: bold
}

.header .count {
	background-color: red;
	color: white;
	border-radius: 50%;
	margin-left: 3px;
	font-weight: bold;
	font-size: 10px;
	width: 20px;
	height: 20px;
	display: inline-block;
	line-height: 20px;
	text-align: center
}

.header ul i {
	color: #AAA;
	margin-right: 2px
}

.header .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	margin-top: 25px;
}

/* End Header SEction */

/* Start sign-in-modal */


.sign-in-modal .modal-body img {
	width: 90px;
	height: 100px;
	margin-bottom: 20px
}

.sign-in-modal .modal-header {
	border: none
}

.sign-in-modal .modal-body input {
	margin-bottom: 10px
}

.sign-in-modal .modal-body button {
	margin-bottom: 10px;
	height: 50px
}

.sign-in-modal .modal-body label {
	margin-top: 10px;
	margin-bottom: 10px;
}

.sign-in-modal .modal-body a {
	font-weight: bold;
	color: black;
	text-decoration: none;
	font-size: 14px
}

/* End sign-in-modal */

/* Start Navbar Section */

.nav {
	background-color: white
}

.navbar-default {
	background-color: white;
	color: black;
	font-weight: bold
}

#search {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 999;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;

	-webkit-transform: translate(0px, -100%) scale(0, 0);
	-moz-transform: translate(0px, -100%) scale(0, 0);
	-o-transform: translate(0px, -100%) scale(0, 0);
	-ms-transform: translate(0px, -100%) scale(0, 0);
	transform: translate(0px, -100%) scale(0, 0);

	opacity: 0;
}

#search.open {
	-webkit-transform: translate(0px, 0px) scale(1, 1);
	-moz-transform: translate(0px, 0px) scale(1, 1);
	-o-transform: translate(0px, 0px) scale(1, 1);
	-ms-transform: translate(0px, 0px) scale(1, 1);
	transform: translate(0px, 0px) scale(1, 1);
	opacity: 1;
}

#search input[type="search"] {
	position: absolute;
	top: 50%;
	width: 100%;
	color: rgb(255, 255, 255);
	background: rgba(0, 0, 0, 0);
	font-size: 30px;
	font-weight: 300;
	text-align: center;
	border: 0px;
	margin: 0px auto;
	margin-top: -51px;
	padding-left: 30px;
	padding-right: 30px;
	outline: none;
}

#search .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 61px;
	margin-left: -45px;
}

#search .close {
	position: fixed;
	top: 15px;
	right: 15px;
	color: #fff;

	opacity: 1;
	padding: 10px 17px;
	font-size: 27px;
}

ul.nav.navbar-nav {
	margin: 0 auto;
	float: none;
	display: table;
}

.input-search {
	margin-top: -50px ! important;
	margin-left: 20px;
	font-size: 17px
}

.fa-bell {
	font-size: 19px
}

a.input-search.bell-ancor {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 16px;
	right: 50px;
}

.searching {
	margin-top: 10px
}

.navbar-default {
	height: 90px;
	margin: 0
}

.navbar-default .navbar-nav > li > a {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.navbar-default .navbar-nav > li > a:hover {
	color: red
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
	padding: 20px
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav a:hover {
	background-color: white;
	color: red
}

.navbar .img-logo {
	width: 70px;
	height: 70px;
	margin-top: -10px
}

.name-logo {
	margin-top: -10px
}

.navbar {
	position: relative;
	z-index:
}

.navbar .bell-ancor {
	position: absolute;
	top: -6px;
	right: 30px;
	color: black
}

.navbar h6 {
	font-size: 26px;
	font-weight: bold;
	position: absolute;
	top: 20px;
}

.nicescroll-cursors {
	z-index: 222
}

/* End Navbar Section */

/* Start Places Section */

.places {
	background-color: #EEE;
	padding: 20px 0
}

.places h5 {
	font-weight: bold;
	font-size: 16px
}

.places img {
	width: 40px;
	height: 40px;
	margin-top: 20px
}

.places h6 {
	font-weight: bold
}

.places a
{
	text-decoration: none;
	color:black
}

/* Start Places Section */

/* Start choose-orders Section */

.choose-orders {
	background: url("../images/burger.jpg") no-repeat center center;
	background-size: cover;
	height: 500px
}

.choose-orders .overlay {
	background: rgba(0, 0, 0, 0.7);
	height: 500px
}

.choose-orders h1 {
	margin-top: 145px;
	color: white;
	font-weight: bolder;
	font-size: 45px
}

.choose-orders h5 {
	color: white;
	font-size: 17px
}

.choose-orders h6 {
	color: white;
	font-size: 15px
}

.choose-orders .col-md-4 {
	background: rgba(230, 224, 224, 0.20);
	height: 500px
}

.choose-orders .col-md-4 select:first-of-type {
	margin-top: 150px;
	margin-bottom: 20px;
}

.choose-orders .col-md-4 select:last-of-type {
	margin-bottom: 20px
}

.choose-orders .col-md-4 select {
	padding-left: 30px;
	cursor: pointer
}

.choose-orders .col-md-4 .fa-map-marker-alt {
	position: absolute;
	top: 160px;
	left: 30px;
	color: grey
}

.choose-orders .col-md-4 .fa-utensils {
	position: absolute;
	top: 215px;
	left: 30px;
	color: grey
}

.choose-orders .btn-danger {
	padding: 12px 10px
}


/* End choose-orders Section */

/* Start about-garsoncom Section */

.about-garsoncom {
	margin: 50px 0
}

.about-garsoncom img {
	width: 60px;
	height: 60px;
	box-shadow: 0 0 1px 1px #DDD;
	margin: 5px;
	padding: 8px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.about-garsoncom .media:hover img {
	box-shadow: 0 0 1px 1px grey;
}

.about-garsoncom .media {
	margin-bottom: 20px
}

.about-garsoncom .media h4 {
	font-weight: bold
}

.about-garsoncom p {
	color: #ad9b9b;
	font-weight: bold
}

/* End about-garsoncom Section */

/* Start Discover Section */

.discover {
	margin: 20px 0;
	position: relative
}

.discover h3 {
	font-weight: bold;
	margin: 10px 0 40px;
	color: black;
	font-size: 20px
}

.discover button.owl-prev {
	position: absolute;
	left: -20px;
	top: 33%;
	border-radius: 50% !important;
	background-color: #EEE !important;
	color: grey !important;
	font-weight: bold !important;
	font-size: 18px !important;
	line-height: 5px !important
}

.discover button.owl-prev:hover,
.discover button.owl-prev:focus,
.discover button.owl-next:hover,
.discover button.owl-next:focus {
	background-color: #f9b827 !important;
	color: white !important;
	border: none !important;
	box-shadow: none !important
}

.discover button.owl-prev span {
	padding-top: 0 !important;
	position: absolute;
	top: 11px;
	right: 12px;
}

.discover button.owl-next span {
	padding-top: 0 !important;
	position: absolute;
	top: 0px;
	left: 13px;
}

.discover button.owl-next {
	position: absolute;
	right: -20px;
	top: 33%;
	border-radius: 50% !important;
	background-color: #EEE !important;
	color: grey !important;
	font-weight: bold !important;
	font-size: 20px !important;
}

.discover .owl-carousel {
	padding: 20px 15px 10px;
	border: 1px solid #DDD
}

.discover .owl-carousel .owl-nav button.owl-next,
.discover .owl-carousel .owl-nav button.owl-prev,
.discover .owl-carousel button.owl-dot,
.discover .owl-carousel .owl-nav button.owl-next:hover,
.discover .owl-carousel .owl-nav button.owl-prev:hover,
.discover .owl-carousel button.owl-dot:hover {
	background-color: orangered;
	color: white;
	width: 30px;
	height: 30px;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
	display: block;
}

.discover .owl-carousel a {
	text-decoration: none;
	color: black;
	font-weight: bold;

}

.discover .owl-carousel .item {
	background-color: #EEE;
	padding: 10px;
	border-radius: 2px;
	box-shadow: 0 0 1px 1px #DDD;
	margin: 5px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.discover .owl-carousel .item h4
{
	font-weight:bold;
	font-size:20px
}

.discover .owl-carousel .item h5
{
	font-weight:bold;
font-family: 'Tajawal', sans-serif;	
}

.discover .owl-carousel .media h4 {
	margin-top: 10px;
	color: black;
	font-weight: bold;
}

.discover .owl-carousel .item:hover {
	box-shadow: 1px 1px 7px 1px grey;
}

.discover .owl-carousel img {
	width: 40px;
	height: 40px;
	margin-left: 15px
}

/* End Discover Section */

/* Start Order-online Section */

.order-online {
	margin: 30px 0
}

.order-online h3 {
	font-weight: bold;
	font-size: 20px;
	color: black;
	font-size: 22px;
	margin-bottom: 30px;
}

.order-online h4 {
	margin-bottom: 30px;
	font-weight: bold;
}

.order-online h4 .span-one {
	color: #c79421;
}

.order-online h4 .span-two {
	color: #ad9b9b
}

.order-online ul li:first-of-type {
	width: 76%;
	position: relative
}

.order-online ul li:last-of-type {
	width: 22%;
	margin-left: -15px;
}

.order-online ul li .btn-danger {
	margin-top: -4px
}

.order-online .fa-compass {
	color: grey;
	font-weight: bold;
	position: absolute;
	right: 110px;
	top: 13px
}

.favourite-profile .media
{
	margin-bottom:20px
}

.favourite-profile .media h4
{
   margin-left:15px
}

/* End Order-online Section */

/* Start products Section */

.products {
	margin: 40px 0
}

.products .span-off {
	background-color:firebrick;
	color:white;
	position: absolute;
	top:5px;
	right:20px;
	z-index: 222;
	padding:5px 7px;
	font-weight:bold
}

.products .col-lg-3 {
	margin-bottom: 10px
}

.products img {
	width: 100%;
	height: 200px
}

.products h3 {
	color: white;
	font-size: 15px;
	font-weight: bold;
	position: absolute;
	bottom: 0;
	left: 35%
}

.products .content {
	position: relative;
	width: 100%;
	margin: auto;
	overflow: hidden;
	box-shadow: 0 0 2px 1px #DDD;
	margin-bottom: 20px;
	background-color: #fafafa;
	padding-bottom: 30px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.products .content .content-overlay {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	height: 200px;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	margin-bottom: 20px
}

.products .img-icon {
	width: 60px;
	height: 60px;
	border: 4px solid white;
	border-radius: 5px;
	position: absolute;
	top: 170px;
	left: 25px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.products .link-product:hover .img-icon {
	border: 4px solid #BE2121;
}

.products .content:hover {
	box-shadow: 0 0 5px 1px grey
}


.products h5 {
	font-weight: bold;
	color: black;
	position: absolute;
	top: 201px;
	left: 35%
}

.products h6 {
	font-weight: bold;
	color: #c79421;
	font-size: 14px;
	margin-right: 10px
}

.products .list-unstyled {
	margin-left: 10px;
}

.products .list-unstyled li {
	font-weight: bold;
	color: #ad9b9b;
	margin-top: 20px;
	margin-bottom: -10px
}

.products .list-unstyled i {
	margin-right: 5px
}

.products .fa-clock {
	margin-left: 2px;
}

.products .comments {
	font-size: 15px;
	font-weight: bold;
	position: absolute;
	bottom: 0;
	right: 20px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.products .comments:hover {
	color: #c79421
}

.products a {
	color: grey;
	text-decoration: none
}

.products .fa-comment-alt {
	margin-right: 1px;
}

/* End products Section */

/* Start membership Section */

.membership {
	margin: 40px 0
}

.membership .col-sm-6 {
	margin-bottom: 20px
}

.membership .col-sm-6 .img-mem-1 {
	background: url(../images/background-one.jpg) no-repeat center center;
	background-size: cover;
	height: 200px;
}

.membership .col-sm-6 .img-mem-2 {
	background: url(../images/background-two.jpg) no-repeat center center;
	background-size: cover;
	height: 200px;
}

.membership .overlay {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 200px;
	padding: 20px
}

.membership h2 {
	color: white;
	font-weight: bold
}

.membership h6 {
	color: white;
	font-size: 14px
}


/* End membership Section */

/* Start quick-search Section */

.quick-search {
	margin: 40px 0
}

.quick-search h3 {
	font-weight: bold;
	margin-bottom: 25px
}

.quick-search h5 {
	color: #ad9b9b;
	font-weight: bold;
	font-size: 15px;
	margin-bottom: 30px
}

.quick-search .col-sm-pull-2 {
	border: 1px solid #DDD;
	padding: 10px;
	margin-bottom: 40px
}

.quick-search img {
	width: 35px;
	height: 35px;
	margin-top: 5px
}

.quick-search h6 {
	color: #ad9b9b;
	font-weight: bold;
}

/* End quick-search Section */

/* Start Featured Section */

.featured {
	margin: 40px 0
}

.featured h5 {
	font-weight: bold;
	font-size: 18px;
	color: black;
	margin-top: 30px;
	margin-bottom: 30px;
}

.featured img {
	width: 30px;
	height: 30px;
}

.featured .data-featured {
	border: 1px solid #DDD;
	height: 400px;
	overflow: auto;
}

.featured .data-featured h6 {
	color: #ad9b9b;
	font-weight: bold;
	font-size: 13px
}

.featured .data-featured h6 i {
	color: #DDC080;
	font-weight: bold
}

.featured .data-featured .col-xs-12 {
	padding: 20px 25px 10px;
	border-bottom: 1px solid #DDD
}

.featured .data-featured .col-xs-12:hover {
	background-color: #fafafa
}

.featured .data-featured .col-xs-12:last-of-type {
	border: none
}

.featured .btn-default {
	border: 2px solid firebrick;
	color: firebrick;
	font-weight: bold
}

.featured .btn-default:hover,
.featured .btn-default:focus {
	background-color: firebrick;
	border: 2px solid firebrick;
	color: white
}

.featured .media h4 {
	font-weight: bold;
	color: black;
	font-size: 14px
}

.featured .media p {
	font-size: 12px;
	color: #ad9b9b;
	font-weight: bold
}

/* End Featured Section */

/* Start Explore Section */

.explore {
	margin: 40px 0
}

.explore h3 {
	font-weight: bold;
	margin-bottom: 40px;
	color: black
}



.explore img {
	width: 100%;
	height: 180px
}

/*
.explore .overlay
{
    background:rgba(0,0,0,0.7);
    color:white;
    position:absolute;
    top:50%;
    width:92%
}
*/

.hovereffect {
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	position: relative;
	text-align: center;
	cursor: default;
	margin-bottom: 30px
}

.hovereffect .overlay {
	width: 100%;
	height: 50%;
	position: absolute;
	top: 44px;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 1;

}

.explore h4 {
	margin-top: 20px;
	color: white;
	font-weight: bold;
	margin-bottom: -5px
}

.explore h5 {
	margin-top: 20px;
	color: #EEE;
}

.explore .btn-default {
	background: none;
	color: firebrick;
	border: 2px solid firebrick;
	font-weight: bold
}


.explore .btn-default:hover,
.explore .btn-default:focus {
	background-color: firebrick;
	color: white;
	font-weight: bold
}

/* End Explore Section */

/* Start Footeer Section */

footer {
	background-color: black;
	padding: 20px 0 10px;
	color: white
}

footer h5 {
	color: #DDD;
	font-weight: bold
}

footer .fa-globe {
	margin-right: 5px
}

footer .first-ul li:first-of-type {
	width: 59%
}

footer .first-ul li:last-of-type {
	width: 22%;
	margin-top: -5px
}

footer .first-ul li:last-of-type button {
	margin-top: -3px;
	margin-left: -14px;
}

footer span.msg,
footer span.choose {
	color: #555;
	padding: 5px 0 10px;
	display: inherit
}

/*Styling Selectbox*/
footer .dropdown {
	width: 190px;
	display: inline-block;
	background-color: #171616;
	border-radius: 5px;
	box-shadow: 0 0 2px rgb(204, 204, 204);
	transition: all .5s ease;
	position: relative;
	font-size: 14px;
	color: #FFF;
	height: 100%;
	text-align: left;
	margin-top: 30px;
	float: right
}

footer .dropdown .select {
	cursor: pointer;
	display: block;
	padding: 10px
}

footer .dropdown .select > i {
	font-size: 13px;
	color: #888;
	cursor: pointer;
	transition: all .3s ease-in-out;
	float: right;
	line-height: 20px
}

footer .dropdown:hover {
	box-shadow: 0 0 4px rgb(204, 204, 204)
}

footer .dropdown:active {
	background-color: #171616;
}

footer .dropdown.active:hover,
footer .dropdown.active {
	box-shadow: 0 0 4px rgb(204, 204, 204);
	border-radius: 5px 5px 0 0;
	background-color: #171616;
}

footer .dropdown.active .select > i {
	transform: rotate(-90deg)
}

footer .dropdown .dropdown-menu {
	position: absolute;
	background-color: #171616;
	width: 100%;
	left: 0;
	margin-top: 1px;
	box-shadow: 0 1px 2px rgb(204, 204, 204);
	border-radius: 0 1px 5px 5px;
	overflow: hidden;
	display: none;
	max-height: 144px;
	overflow-y: auto;
	z-index: 9
}

footer .dropdown .dropdown-menu li {
	padding: 10px;
	transition: all .2s ease-in-out;
	cursor: pointer
}

footer .dropdown .dropdown-menu {
	padding: 0;
	list-style: none
}

footer .dropdown .dropdown-menu li:hover {
	background-color: black;
}

footer .dropdown .dropdown-menu li:active {
	background-color: #171616;
}

footer .socend-piece h6 {
	font-weight: bold;
	font-size: 17px;
	margin-bottom: 25px
}

footer .socend-piece p {
	color: #AAA;
	font-weight: bold
}

footer .socend-piece ul li {
	color: #AAA;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-bottom: 5px
}

footer .socend-piece ul li a {
	text-decoration: none;
	color: #AAA;
	font-weight: bold;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

footer hr {
	border: 0.5px solid grey
}

footer .socend-piece ul li a:hover {
	color: white
}

footer .socend-piece .fonts li {
	background-color: #171616;
	margin-right: 5px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	line-height: 35px;
	text-align: center;
}

footer .third-piece ul li:hover a {
	color: white;
	cursor: pointer
}

footer .third-piece ul li {
	color: #AAA;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-top: 10px;

}

footer .third-piece .links li {
	margin-bottom: 5px;
	margin-top: 7px;

}

footer .third-piece .images {
	margin-top: -5px
}

footer .third-piece ul li a {
	text-decoration: none;
	color: #AAA;
	font-weight: bold;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

footer .third-piece img {
	width: 40px;
	height: 28px;
	border-radius: 5px;
	opacity: 0.7;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

footer .third-piece img:hover {
	opacity: 1
}

/* End Footeer Section */

/* Start big-title Section */

.big-title {
	padding: 20px 0;
	background-color: #EEE
}

.big-title h4 {
	font-weight: bold
}

.big-title ul {
	margin-top: 10px
}

.big-title ul li a {
	text-decoration: none;
	color: black
}

/* End big-title Section */

/* Start Restaurant-list Section */

.reataurant-list {
	margin: 40px 0;
}

.reataurant-list .data-left {
	box-shadow: 0 0 5px 2px #DDD;
}

.reataurant-list .data-left .filter-option
{
	padding-left:15px !important
}

.reataurant-list .data-left .search .fa-map-marker-alt
{
	position:absolute;
	top:133px;
	left:25px;
	z-index: 222;
	color:grey
}

.reataurant-list .data-left .search .fa-utensils
{
	position:absolute;
	top:169px;
	left:25px;
	z-index: 222;
	color:grey
}

.reataurant-list hr {
	border: 1px solid #DDD
}

.reataurant-list .data-left h4 {
	font-weight: bold;
	padding-left: 10px;
	padding-top: 18px;
	padding-bottom: -5px;
	color: black
}

.reataurant-list .data-left h5 {
	font-weight: bold;
	padding-left: 10px;
	padding-bottom: 11px
}

.data-left input {
	border-radius: 0;
	border-right: none;
	border-left: none;
	border-top: none;
	box-shadow: none
}

.reataurant-list .data-left .btn-default {
	position: relative;
	border-right: none;
	border-left: none;
	border-top: none;
	box-shadow: none
}

.reataurant-list .data-left .btn-default:hover,
.reataurant-list .data-left .btn-default:focus {
	background: none;
}

.reataurant-list .data-left button.btn.btn-default.form-control.open.text-left {
	text-align: left;
	font-weight: bold;
	border-radius: 0;

}

.reataurant-list .data-left .search-btn {
	margin-top: 10px;
}


/*
.reataurant-list i.fas.fa-map-marker-alt {
    margin-top: 5px
}
*/

.reataurant-list .data-left .drop i.fas.fa-angle-down {
	position: absolute;
	right: 15px;
	top: 9px;
	color: #BBB;
	font-weight: bold
}

.mobile-filter {
	margin-bottom: 8px;
	border-bottom: none
}


.restaurant-list .drop {
	position: relative;
}

.reataurant-list .data-left .locate {
	position: absolute;
	top: 133px;
	right: 30px;
	color: #BBB
}

.reataurant-list .data-left button.btn.btn-default.form-control.open.text-left {
	margin-top: 10px !important;
	color: black
}

.reataurant-list .data-left .choose li:first-of-type {
	margin-top: 15px
}

.reataurant-list .data-left .choose li {
	margin: 5px 5px 0px 12px;
}

.reataurant-list .data-left .fa-star {
	margin-left: 5px;
	color: orange
}

.reataurant-list .data-left .star {

	margin-right: 5px;
	-webkit-animation: spin 4s linear infinite;
	-moz-animation: spin 4s linear infinite;
	animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
	100% {
		-moz-transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/*
.data-left > .collapse ul li:last-of-type {
    padding-bottom: 10px
}*/

.reataurant-list .restaurant-detail {
	box-shadow: 0 0 5px 2px #DDD;
	margin-top: 10px;
	margin-bottom: 20px
}

.reataurant-list .restaurant-detail .media {
	padding: 20px 20px 0
}

.reataurant-list .restaurant-detail .media img {
	width: 100px;
	height: 80px;
}

.reataurant-list .restaurant-detail .media h4 {
	font-weight: bold;
	color: black
}

.reataurant-list .restaurant-detail .media h6 {
	color: #818181;
	font-size: 13px
}

.reataurant-list .restaurant-detail ul {
	margin-top: -10px;
	padding-left: 20px
}

.reataurant-list .restaurant-detail ul li {
	margin-bottom: 5px;
	font-weight: bold;
	color: #818181;
	font-size: 12px
}

.reataurant-list .restaurant-detail ul li:last-of-type {
	padding-bottom: 10px
}

.reataurant-list .restaurant-detail .fa-map-marker-alt,
.reataurant-list .restaurant-detail .fa-star {
	color: orange;
	margin-right: 2px
}

.reataurant-list .restaurant-detail .rate-result {
	background-color: red;
	color: white;
	padding: 2px 8px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: bold
}

.reataurant-list .restaurant-detail .pills {
	width: 95%;
	margin-left: 14px;
}

.reataurant-list .restaurant-detail .last-pill {

	box-shadow: 0 0 1px 1px #DDD;
	padding: 15px;
	color: black;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	font-weight: bold
}

.reataurant-list .restaurant-detail .last-pill:hover {
	color: orange
}

.reataurant-list .right-data {
	margin-top: 10px;
}

.reataurant-list .right-data button,
.reataurant-list .right-data button:focus {
	box-shadow: 0 0 7px 2px #DDD;
	background: none;
	border-radius: 0;
	height: 50px
}

.reataurant-list .right-data h5 {
	font-weight: bold;
	color: black;
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 16px
}

.reataurant-list .right-data .media {
	padding: 10px 10px 5px;
	box-shadow: 0 0 2px 1px #DDD;
	margin-bottom: 15px
}

.reataurant-list .right-data .media img {
	width: 70px;
	height: 50px;
}

.reataurant-list .right-data .media h4 {
	font-weight: bold;
	color: black;
	font-size: 14px
}

.reataurant-list .right-data .media h6 {
	color: #818181;
	font-size: 13px
}

.reataurant-list .right-data .media .fa-star {
	color: orange
}

.reataurant-list .right-data a {
	text-decoration: none
}

.restaurant-detail .data-event
{
    margin-top:20px;
	box-shadow:0 0 1px 1px grey;
	background-color:white;
	border-radius:20px
}

.restaurant-detail .data-event .row
{
padding:5px}

.restaurant-detail .data-event img
{
	width:100%;
	height:150px;
	border-radius:20px 20px 0 0
}

.restaurant-detail .data-event h6
{
	font-weight:bold
}

.restaurant-detail .data-event .btn-default,
.restaurant-detail .data-event .btn-default:hover
{
	background:none;
	color:red;
	margin-bottom:10px;
	font-weight:bold;
	border:1px solid red
}

.reataurant-list .right-data .img-right {
	width: 100%;
	height: 200px
}

.restaurant-detail .imgs-modal h5
{
    font-weight:bold;
	color:black;
	margin-top:20px
}

.restaurant-detail .imgs-modal .carousel
{
	width:70%;
	margin:0 auto;
}

.restaurant-detail .imgs-modal ul li
{
	width:49%
}

.restaurant-detail .book-modal .data-confirmation
{
	box-shadow:0 0 2px 1px grey;
	padding:10px;
	border-radius:10px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}

.restaurant-detail .book-modal .data-confirmation:hover,
.restaurant-detail .book-modal .data-confirmation:focus,
.restaurant-detail .book-modal .check
{
	background-color:forestgreen;
	color:white;
	cursor: pointer
}

.restaurant-detail .book-modal h4
{
	font-weight: bold;
	margin-top:20px
}

.restaurant-detail .imgs-modal ul li .cancel
{
	color:red;
	font-weight:bold
}

.restaurant-detail .imgs-modal ul li .confirm{
	color:green;
	font-weight:bold
}

.restaurant-detail .imgs-modal ul li .btn
{
	height:60px
}

.restaurant-detail .carousel-inner img
{
    width:100%;
	max-height:240px;
}

.restaurant-detail .book-modal ul li
{
	width:49%;
}

.for-imgs-carousel .owl-carousel .item
{
	cursor:pointer
}
	
.for-imgs-carousel .owl-carousel img
{
	max-width:50px;
	height:50px;
	margin:0 auto !important;
}

.restaurant-detail .book-modal ul li .cancel
{
	color:red;
	font-weight:bold
}

.restaurant-detail .book-modal ul li .confirm{
	color:green;
	font-weight:bold
}

.restaurant-detail .book-modal ul li .btn
{
	height:60px;
}

/* End Restaurant-list Section */

/* Start Pagination Section */

.pagination li a {
	color: black;
	font-weight: bold
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover,
.pagination li a:hover {
	background-color: firebrick;
	color: white;
	border-color: firebrick;
	font-weight: bold
}

/* End Pagination Section */

.amazingslider-arrow-right-1 {
	position: absolute;
	right: 13px !important
}

.amazingslider-nav-1 {
	margin-bottom: 300px !important
}


/* Start restaurant-detail Section */

.restaurant-detail .locate-btn {
	margin-top: 120px;
	padding: 7px 30px;
	border-radius: 20px
}


.restaurant-detail .media {
	padding: 10px 10px 5px;
	margin-bottom: 15px
}

.restaurant-detail .media img {
	width: 50px;
	height: 50px;
}

.restaurant-detail .media h4 {
	font-weight: bold;
	color: black;
	font-size: 14px
}

.restaurant-detail .media h6 {
	color: #818181;
	font-size: 13px
}

.restaurant-detail .media h6 i {
	color: orange
}

.restaurant-detail .fa-star {
	color: orange;
	margin-right: 3px
}

.restaurant-detail .tablet .fa-heart {
	font-size: 17px;
	padding-top: 20px;
	margin-right: 7px
}

.restaurant-detail .rate-result {
	background-color: red;
	color: white;
	padding: 2px 8px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: bold
}

.restaurant-detail .right-ul li h6,
.restaurant-detail .right-ul li i {
	font-weight: bold;
	color: grey;
	font-size: 12px;
	margin-top: 0
}

.restaurant-detail .left-ul li a {
	text-decoration: none;
	color: grey;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.restaurant-detail .left-ul li a:hover {
	color: orange
}

.restaurant-detail .hr-3 {
	margin: 0;
	margin-top: 5px
}

.restaurant-detail .nav-tabs {
	display: inline-flex;
	width: 100%;
	overflow-x: auto;
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
	margin-top: 5px;
	border-bottom: none;
	white-space: nowrap;
	padding: 5px
}



/*
.restaurant-detail .nav-tabs::-webkit-scrollbar {
	display: none;
}
*/

.tab-nav > li > a::after {
	background: #21527d none repeat scroll 0% 0%;
	color: #fff;
}

.restaurant-detail .nav-tabs > li > a {
	color: black;
	font-weight: bold;
	/*	width: max-content;	*/
}

.restaurant-detail .nav-tabs > li > a::after {
	background: #21527d none repeat scroll 0% 0%;
	color: #fff;
}

.restaurant-detail .nav-tabs > li.active > a,
.restaurant-detail .nav-tabs > li.active > a:focus,
.restaurant-detail .nav-tabs > li.active > a:hover,
.restaurant-detail .nav-tabs > li > a:hover {
	color: orange;
	font-weight: bold;
	background-color: none
}

.restaurant-detail .card {
	background: #FFF none repeat scroll 0% 0%;
	margin-bottom: 30px;
	width: 100%
}

.restaurant-detail .data-left-ul li h6 {
	font-weight: bold;
	color: black
}

.restaurant-detail .data-right-ul li h6 {
	font-weight: bold;
	color: grey
}

.restaurant-detail .data-review {
	box-shadow: 0 0 2px 1px #DDD;
	margin-top: 30px;
	padding-bottom: 10px
}

.restaurant-detail .data-description {
	box-shadow: 0 0 2px 1px #DDD;
	padding: 5px 10px 10px 15px;
	margin-top: 20px
}

.restaurant-detail .data-description h4 {
	font-weight: bold;
	color: black
}

.restaurant-detail .data-review h4 {
	font-weight: bold;
	color: black;
	padding: 15px 0 0px 15px
}

.restaurant-detail .off {
	background: url(../images/background-one.jpg) no-repeat center center;
	background-size: cover;
	margin-top: 20px;
	margin-bottom: 20px;
}

.restaurant-detail .off .overlay {
	background: rgba(0, 0, 0, 0.7);
	padding: 40px
}

.restaurant-detail .off .overlay h4 {
	font-weight: bold;
	color: white;
	font-size: 50px;
	font-family: 'Indie Flower', cursive;
}

.restaurant-detail .off .overlay h6 {
	color: white;
	font-size: 20px
}

.restaurant-detail .off .overlay .btn {
	margin-top: 30px;
	padding: 10px 30px
}

.restaurant-detail .owl-carousel h5 {
	color: #ad9b9b;
	font-weight: bold
}

.restaurant-detail label
{
	font-weight: bold
}

  .restaurant-detail label input[type='radio']:after {
        width: 15px;
        height: 15px;
        border-radius: 15px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #d1d3d1;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }

  .restaurant-detail label  input[type='radio']:checked:after {
        width: 15px;
        height: 15px;
        border-radius: 15px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #ffa500;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }

.restaurant-detail label:last-of-type
{
	margin-bottom:20px
}

.restaurant-detail .owl-carousel .active > h5 {
	color: orange
}

.restaurant-detail .data-order-online {
	box-shadow: 0 0 2px 1px #DDD;
	padding: 20px;
	margin-top: 30px
}

.restaurant-detail .data-order-online .title,
.restaurant-detail .data-order-online .meals {
	color: black;
	font-weight: bold
}

.restaurant-detail .data-order-online .meals {
	margin-bottom: 15px
}

.restaurant-detail .data-order-online .media {
	box-shadow: 0 0 1px 1px #DDD;
	padding: 0
}

.restaurant-detail .data-order-online .media-body {
	padding: 10px
}

.restaurant-detail .data-order-online .media .fa-star {
	margin-bottom: 20px
}

.restaurant-detail .data-order-online .media img {
	width: 120px;
	height: 120px;
	margin: 0;
	padding: 0
}

.restaurant-detail .data-order-online .media .count {
	font-weight: bold;
	color: orange;
	font-size: 18px
}

.restaurant-detail .data-order-online .media .btn-default {
	background: none;
	border-radius: 20px;
	font-weight: bold;
	color: #ad9b9b;
	margin-top: 5px
}

.restaurant-detail .data-order-online .media .btn-default:hover {
	color: grey
}

.restaurant-detail .data-reviews {
	box-shadow: 0 0 2px 1px grey;
	padding: 15px;
	margin-top: 30px;
}

.restaurant-detail .data-reviews .title {
	color: black;
	font-weight: bold;
	padding-bottom: 10px
}


.restaurant-detail .data-reviews .add-post {
	box-shadow: 0 0 2px 1px grey;
	padding: 10px;
	background-color: #f4f3ef36
}

.restaurant-detail .data-reviews .add-post .media .media-left img {
	width: 50px;
	height: 50px;
	border-radius: 50%
}

.restaurant-detail .data-reviews .add-post .media .media-heading {
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 20px;
}

.restaurant-detail .data-reviews .add-post textarea {
	resize: none;
	height: 100px;
	margin-bottom:15px
}

.restaurant-detail .data-reviews .add-post .add {
	background: none;
	margin-top: 10px
}



.restaurant-detail .data-reviews .item img {
	margin: 0;
	width: 80px;
	height: 70px;
	margin-bottom: 10px
}

.restaurant-detail .data-reviews .item .img-post {
	width: 70%;
	height: 250px;
	margin: 10px auto
}

.restaurant-detail .data-reviews ul li {
	position: relative
}

.restaurant-detail .data-reviews .item {
	padding: 10px;
}

.restaurant-detail .data-reviews ul li > i.fas.fa-times {
	position: absolute;
	top: -5px;
	right: 100px;
	color: white;
	background-color: black;
	font-size: 7px;
	padding: 2px;
	margin-right: -100px
}

.restaurant-detail .data-reviews .old-post {
	box-shadow: 0 0 2px 1px grey;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 10px;
	background-color: #f4f3ef36
}

.restaurant-detail .data-reviews .old-post i.fa.fa-clock {
	color: orange
}

.restaurant-detail .data-reviews .old-post .media img {
	border-radius: 50%;
	width: 40px;
	height: 40px
}

.restaurant-detail .data-reviews .old-post h6 {
	color: grey;
	font-weight: bold
}

.restaurant-detail .data-reviews .old-post h6 {
	color: grey;
	font-weight: bold
}


.restaurant-detail .data-reviews .all-comments h6 {
	margin-top: 0
}

.restaurant-detail .data-reviews .all-comments .data-comment {
	margin-top: -4px;

}

.restaurant-detail .data-reviews .old-post strong {
	color: black
}

.restaurant-detail .data-reviews .old-post p span {
	color: dodgerblue
}

.restaurant-detail .data-reviews .old-post .hr-1 {
	margin: 0;
	margin-bottom: 10px
}

.restaurant-detail .data-reviews .old-post a {
	color: black;
	text-decoration: none;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	font-size: 12px;
	font-weight: bold
}

.restaurant-detail .data-reviews .old-post a:hover {
	color: orange;
	text-decoration: none;

}

.restaurant-detail .data-reviews .old-post .like {
	padding: 0 10px
}

.restaurant-detail .data-reviews .old-post .like ul {
	margin-top: -2px;
	margin-bottom: 10px
}

.restaurant-detail .like-comment {
	margin-left: 5px
}

.restaurant-detail .data-reviews .old-post .share {
	margin-top: -5px
}

.restaurant-detail .data-reviews .img-writing {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-bottom: -21px
}

.restaurant-detail .for-send-comment .input-comment {
	margin-top: -15px
}

.restaurant-detail .write-comment {
	width: 590px
}

.restaurant-detail .for-send-comment {
	width: 100%
}

.restaurant-detail .data-book-tsble {
	box-shadow: 0 0 2px 1px grey;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 10px;
	background-color: #f4f3ef36
}

.restaurant-detail .data-book-tsble h4 {
	font-weight: bold
}

.restaurant-detail .data-book-tsble h5 {
	font-weight: bold;
}

.restaurant-detail .data-book-tsble input {
	margin-bottom: 10px
}

.restaurant-detail .data-book-tsble .data-table {
	box-shadow: 0 0 1px 1px #CCC;
	padding: 5px 5px 0 5px;
	border-radius: 3px
}

.restaurant-detail .data-book-tsble .data-table img {
	width: 30px;
	height: 30px;
}

.restaurant-detail .data-book-tsble .data-table button {
	padding: 5px 20px;
	margin-bottom: 20px
}

.restaurant-detail #menu4 .row {
	margin-top: 30px
}

.restaurant-detail #menu4 img {
	margin-bottom: 25px;
	width: 300px;
	height: 180px
}

.restaurant-detail .wizard .nav-tabs{
    display:none
}

#timepicker:before {
	content: 'Time:';
	margin-right: .6em;
	color: #9d9d9d;
}

.imgs-modal #datepicker:before {
	content: 'Date:';
	margin-right: .6em;
	color: #9d9d9d;
}

.imgs-modal .inputs
{
    margin-bottom:20px
}

/* End restaurant-detail Section */

/* Start Profile Section */

.profile-background {
	background: url("../images/Miami-Real-Estate%20(1).jpg") no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 300px
}

.profile-name {
	background-color: #EEEEEE;
	padding: 10px
}

.profile-name img {
	position: absolute;
	min-width: 130px;
	height: 130px;
	top: -90px;
	right: 0px;
	border: 3px solid white;
	border-radius: 3px;
	box-shadow: 0 0 3px 1px grey
}

.profile-name h4 {
	font-weight: bold;
	font-size: 16px;
	margin: 0;
	padding: 0;
	margin-bottom: 5px
}

.profile-name h6 {
	font-weight: bold;
	font-size: 11px;
	margin: 0;
	padding: 0
}

.data-profile {
	margin: 30px 0
}

.data-profile .links {
	border: 1px solid #DDD;
	margin-bottom: 20px
}

.data-profile .links span {
	position: absolute;
	right: 40px;
	font-weight: bold;
	background-color: red;
	color: white;
	width: 20px;
	height: 20px;
	text-align: center;
	line-height: 20px;
	font-size: 12px
}

.data-profile .links a {
	display: block;
	padding: 15px;
	border-bottom: 1px solid #DDD;
	color: black;
	font-weight: bold;
	text-decoration: none;
}

.data-profile .links .active,
.data-profile .links a:hover {
	color: red
}

.data-profile .links a:last-of-type {
	border: none;
}

.data-profile .media select {
	margin-top: 2px;
	border-radius: 0
}

.data-profile .data-restaurant {
	border: 1px solid #DDD;
	margin: 20px 0
}

.data-profile .data-restaurant .media {
	border-bottom: 1px solid #DDD
}

.data-profile .data-restaurant .media:first-of-type
{
	padding-top:15px
}

.data-profile .data-restaurant .media-left {
	padding: 10px
}

.data-profile .data-restaurant .media-body {
	padding: 10px 
}

.data-profile .data-restaurant .media .media-left img {
	width: 50px;
	height: 50px;
	border-radius: 50%
}

.data-profile .data-restaurant .media h4 {
	font-weight: bold;
	color: black;
	font-size: 15px;
	margin-top: 5px
}

.data-profile .data-restaurant .media p {
	font-weight: bold;
	font-size: 13px
}

.data-profile .data-restaurant .bottom-img {
	width: 100%;
	height: 200px;
	margin-bottom: 10px;
	padding: 20px
}

.data-profile .img-advertise {
	width: 100%;
	height: 550px
}

/* End Profile Section */

/* Start Edit-Profile Section */

.data-profile .edit-profile h4 {
	font-weight: bold;
	margin-bottom: 20px
}

.data-profile .data-edit {
	box-shadow: 0 0 1px 1px #DDD;
	padding: 10px
}

.data-profile .edit-descripe h5:first-of-type {
	color: black;
	font-weight: bold
}

.data-profile .edit-descripe h5:last-of-type {
	color: grey;
	font-weight: bold;
	font-size: 13px
}

.data-profile .edit-descripe {
	margin-bottom: 20px;
	border-bottom: 1px solid #DDD;
	padding-bottom: 10px
}

.data-profile .edit-descripe:last-of-type {
	border: none
}

.data-profile .edit-descripe textarea
{
	height:200px;
	resize: none
}

/* End Edit-Profile Section */

/* Start Order-Profile Section */

.data-profile .order-profile table {
	margin-top: 30px
}

.data-profile h4 {
	font-weight: bold
}

.data-profile .order-profile table th,
.data-profile .order-profile table td {
	font-weight: bold;
	vertical-align: inherit;
}

.data-profile .order-profile .media .logo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	box-shadow: 0 0 1px 1px grey
}

.data-profile .order-profile .media img {
	width: 40px;
	height: 40px;
	box-shadow: 0 0 1px 1px grey
}

.data-profile .order-profile .media .media-heading {
	font-weight: bold;
	margin: 0;
	font-size: 14px
}

.data-profile .order-profile .media .descripe {
	font-weight: bold;
	color: grey
}

.data-profile .data-favourite {
	box-shadow: 0 0 1px 1px grey;
	margin-bottom: 20px
}

.data-profile .data-favourite img {
	width: 100%;
	height: 150px
}

.data-profile .data-favourite h5 {
	padding: 10px;
	font-weight: bold;
	color: black;
	margin: 0;
	margin-bottom: -10px
}


.data-profile .data-favourite h6 {
	padding: 10px;
	font-weight: bold;
	color: grey;
	margin: 0
}

.data-profile .data-favourite a {
	text-decoration: none
}

.noti-setting .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.noti-setting .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.noti-setting .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.noti-setting .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.noti-setting input:checked + .slider {
  background-color: #2196F3;
}

.noti-setting input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.noti-setting input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.noti-setting .slider.round {
  border-radius: 34px;
}

.noti-setting .slider.round:before {
  border-radius: 50%;
}

.noti-setting h5
{
	font-weight:bold;
	font-size:15px
}

.noti-setting .all-notif-setting
{
	border:1px solid #DDD;
	padding: 5px 15px;
	margin-bottom:20px
}

.noti-setting .all-notif-setting .row
{
	border-bottom:1px solid #DDD;
	padding-top:8px;
	padding: 8px 5px 3px
}

.noti-setting .all-notif-setting .row:last-of-type
{
	border:none
}

.noti-setting .btn-danger
{
	margin-bottom:20px
}

/* End Order-Profile Section */

/* Start Cart Section */

.cart {
	margin-bottom: 20px
}

.cart img {
	width: 50px;
	height: 50px;
	border-radius: none;
}

.cart .media-left {
	vertical-align: middle !important
}

.cart .locate {
	margin: 20px 0;
	font-weight: bold
}

.cart .hr {
	margin-top: 20px
}

.cart hr {
	margin: 5px;
	padding: 0
}

.cart .locate i {
	color: orange
}

.cart .media .media-heading {
	font-weight: bold;
	margin-top: 5px;
	text-align: left
}

.cart .media .descripe {
	color: black;
	text-align: left;
}

.cart .rating {
	text-align: left;
	font-size: 10px
}

.cart .rating .fa-star {
	color: orange
}

.cart .rating .rate-result {
	background-color: red;
	color: white;
	padding: 3px 5px;
	border-radius: 30px;
	font-size: 8px;
	margin-bottom: 10px
}

.cart table {
	box-shadow: 0 0 1px 1px #DDD;
	margin-top: 50px;
	margin-bottom: 30px
}

.cart table th {
	vertical-align: middle !important;
	font-weight: bold;
	text-align: center !important
}

.cart table .btn-default,
.cart table .btn-default:hover,
.cart table .btn-default:focus {
	background: none
}

.cart table td {
	text-align: center;
	font-weight: bold;
	vertical-align: middle !important;
	text-align: center !important
}

.cart table .total-cart {
	font-size: 18px;
	font-weight: bolder;
	color: black
}

.cart .info-cart .col-sm-6 {
	margin-bottom: 20px
}

.cart .info-cart h4 {
	font-weight: bold
}

.cart .info-cart h6 {
	font-weight: bold;
	color: grey
}

.cart .address-info {
	margin-top: 50px
}

.cart .address-info h5 {
	font-weight: bold
}

.cart .address-info input,
.cart .address-info select {
	margin-top: 10px
}

.cart .address-info .btn-danger {
	margin-top: 10px
}

.cart .for-total h4 {
	font-weight: bold;
	font-size: 15px
}

.cart .btn-confirm {
	margin-bottom: 20px
}

.cart .quant li:nth-of-type(2)
{
	font-size:17px
}

.cart .fa-plus-circle
{
   color:green;
	font-size:18px
}

.cart .fa-minus-circle
{
	color:firebrick;
	font-size:18px
	
}

/* End Cart Section */

/* Start Finish-order Section */

.finish-order {
	margin: 40px 0
}

.finish-order .data-finish {
	border: 2px dashed grey;
	padding: 20px
}

.finish-order .data-finish h4 {
	font-weight: bold
}

.finish-order .data-finish h6 {
	font-weight: bold;
	color: orange
}

.finish-order .data-finish h5 {
	font-weight: bold;
	color: grey
}

.finish-order .data-finish img {
	width: 120px;
	height: 120px;
}

.finish-order .data-finish ul {
	margin: 0
}


/* End Finish-order Section */

/* Start Promocodes Section */

.promocodes h4 {
	font-weight: bold
}

.promocodes table {
	margin-top: 30px
}

.promocodes table th {
	color: red
}

.promocodes table td {
	padding-top: 20px !important
}

.promocodes table th,
.promocodes table td {
	border: none !important;
	text-align: center
}

/* End Promocodes Section */

/* Start Freemeals Section */

.freemeals h4 {
	font-weight: bold;
	color: black;
	margin-bottom: 20px
}

.freemeals .ur-code {
	border: 1px solid grey;
	width: 80%;
	margin: 10px auto
}

.freemeals .ur-code h5:first-of-type {
	color: black;
	font-size: 18px;
	font-weight: bold;
	padding-top: 10px
}

.freemeals .ur-code hr {
	border: 0.5px solid grey
}

.freemeals .ur-code h5:last-of-type {
	color: red;
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px
}

.freemeals .btn {
	background-color: red;
	padding: 10px 20px;
	font-weight: bold;
	border-radius: 17px;
	margin-bottom: 20px
}

.freemeals .share {
	color: grey
}

.freemeals .share h4 {
	color: grey
}


.freemeals .share .media .media-left h5 {
	border: 1px solid grey;
	color: red;
	font-weight: bold;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	font-size: 20px
}

.freemeals .share .media .media-body h5 {
	margin-top: 20px
}

/* End Freemeals Section */

/* Start Monsters Section */

.monsters {
	margin: 30px 0
}

.monsters .media {
	margin-bottom: 20px
}

.monsters img {
	width: 60px;
	height: 60px
}

.monsters .h5-1 {
	font-weight: bold;
	color: green
}

.monsters .h5-2 {
	font-weight: bold;
	color: blacks
}

/* End Monsters Section */

/* Start Support Section */


.support .data-chat {
	background-color: #EEE;
	padding: 10px;
	background-size:cover;
	height:500px;
	overflow: auto;
	margin:30px 0 0;
}

.support .data-chat h5 {
	color: #AAA;
	margin-bottom:30px
}

.support .chat-another
{
	background-color: green;
	color:white;
	width: 75%;
	position: relative;
	margin-left:30px;
	border-radius:10px;
	margin-bottom:30px;
	
}

.support .chat-another .media-left
{
	position: absolute;
	top:-20px;
	left:-20px
}

.support .chat-another img
{
	width:40px;
	height:40px;
	border:4px solid white;
	border-radius:5px
}

.support .chat-another .media-body
{
	padding:20px
}

.support .my-chat
{
	background-color: dodgerblue;
	color:white;
	width: 75%;
	position: relative;
	border-radius:10px;
	margin-bottom:30px;
	margin-left:105px
}

.support .my-chat .media-right
{
	position: absolute;
	top:-20px;
	right:-20px
}

.support .my-chat img
{
	width:40px;
	height:40px;
	border:4px solid white;
	border-radius:5px
}

.support .my-chat .media-body
{
	padding:20px
}

.support input
{
	margin-bottom:30px;
	position: relative
}

.support .btn-default
{
	background: white;
	color:black;
	border:none;
	position: absolute;
	top:560px;
	right:16px;
	font-weight:bold
}

/* End Support Section */

/* Start how-to-order Section */

.how-to-order
{
	margin:40px 0
}

.how-to-order .h4
{
	font-weight: bold;
	font-size:20px
}

.how-to-order .pra
{
	width:50%;
	margin:20px auto 40px;
	color:grey;
	font-weight:bold;
	
}

.how-to-order li
{
   border-right:2px solid #888
}

.how-to-order li:last-of-type
{
	border:none
}

.how-to-order li:first-of-type:before
{
	content: "";
	width:4px;
	height:5px;
	position: absolute;
	right:13.8px;
	top:-7px;
	color:#888;
	background-color:#888
}

.how-to-order li:first-of-type:after
{
	content: "";
	width:4px;
	height:5px;
	background-color:#888;	
	position: absolute;
	right:13.8px;
	top:152.5px
}

.how-to-order li:nth-of-type(2):after
{
	content: "";
	width:4px;
	height:5px;
	background-color:#888;
	position: absolute;
	right:13.8px;
	top:313px
}

.how-to-order li:nth-of-type(3):after
{
	content: "";
	width:4px;
	height:5px;
	background-color:#888;
	position: absolute;
	right:13.8px;
	top:472.5px
}


.how-to-order li:nth-of-type(4):after
{
	content: "";
	width:4px;
	height:5px;
	background-color:#888;
	position: absolute;
	right:13.8px;
	top:632px
}

.how-to-order .for-background	
{
	background-color:#EEE;
	margin-bottom:10px;
	padding:30px;
	width:80%;
}

.how-to-order .for-img
{
	background-color:white;
	border-radius:50%;
	box-shadow: 0 0 1px 1px grey;
	width:70px;
	height:70px;
	margin:10px auto;
}

.how-to-order img
{
	width:30px;
	height:50px;
	padding-top:20px
}

.how-to-order .data-how
{
	width:70%;
	margin-bottom:73px
}

.how-to-order .data-how h6
{
	font-weight:bold;
	color:grey;
	margin-top:-10px
}

.how-to-order .data-how h4
{
	font-weight:bold;
	color:black;
	margin:0
}

.how-to-order .data-how h5
{
	color:grey
}

/* End how-to-order Section */

.modal-contact .modal-content
{
	padding:15px;
	border-radius:30px
}

.modal-contact .modal-content h4
{
	font-weight:bold
}

.modal-contact .modal-content .data-contact
{
	box-shadow:0 0 1px 1px #DDD;
	padding:20px;
	margin-bottom:20px
}

.modal-contact .modal-content .data-contact .icons
{
	margin:17px 0 10px
}

.modal-contact .modal-content .data-contact .icons i
{
	margin-right:5px
}

.modal-contact .modal-content .data-contact .icons .fa-facebook
{
	color:#393990
}

.modal-contact .modal-content .data-contact .icons .fa-twitter
{
	color:#6f8de6
}

.modal-contact .modal-content .data-contact .icons .fa-instagram
{
	color:saddlebrown
}

.modal-contact .modal-content .data-contact h6
{
	font-weight:bold;
	color:grey
}

.restaurant-detail .sizes 
{
	margin:10px 0
}

.restaurant-detail .sizes > li.active > a, .restaurant-detail .sizes > li.active > a:focus, .restaurant-detail .sizes > li.active > a:hover, .restaurant-detail .sizes > li > a:hover {
    color: #efeeec;
    font-weight: bold;
    background-color: firebrick;
    background-color: none;
    width: 45px;
    height: 40px;
    text-align: center;
}

.restaurant-detail .sizes > li > a
{
	text-align:center;
    width: 45px;
    height: 40px;	
}

.discover .modal-location .modal-content
{
	padding:20px;
	border-radius:30px
}

.discover .modal-location .modal-content .btn-group.bootstrap-select.form-control
{
	margin-bottom:20px
}

.discover .modal-location .modal-content .btn-danger
{
	padding:15px;
	border-radius:30px
}

.discover .modal-location .modal-content span.filter-option.pull-left {
    padding-left: 15px;
}

.discover .modal-location .modal-content .fa-map-marker-alt
{
	position: absolute;
	top:102px;
	left:30px;
	z-index: 222;
	color:grey
}

.discover .modal-location .modal-content .fa-utensils
{
	position: absolute;
	top:158px;
	left:30px;
	z-index: 222;
	color:grey
	
}

   .modal-cart input[type='radio']:after {
        width: 20px;
        height: 20px;
        border-radius: 15px;
        top: -4px;
        left: -1px;
        position: relative;
        background-color: #d1d3d1;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }

   .modal-cart input[type='radio']:checked:after {
        width: 20px;
        height: 20px;
        border-radius: 15px;
        top: -4px;
        left: -1px;
        position: relative;
        background-color: #ffa500;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }

.modal-cart .modal-content .list-inline
{
	margin-bottom:0
}

.modal-cart .modal-content .list-inline li:first-of-type h4
{
	color:black;
	font-weight:bold
}

.modal-cart .modal-content .list-inline li:last-of-type h4
{
	color:firebrick;
	font-weight:bold
}

.modal-cart .modal-content .close
{
	margin-top:-8px
}


.modal-cart .modal-title {
    margin: 0;
    line-height: 2.1;
}

.modal-cart .modal-body .num-step
{
	width:50px;
	height:50px;
	line-height:50px;
	background-color:#fafafa;
	margin:0 auto;
	border-radius:50%;
	box-shadow:0 0 1px 1px #CCC
}

.modal-cart .modal-body .desc-step
{
	font-weight:bold;
    color:black
}

.rating-container .caption .label
{
	display:none
}

i.glyphicon.glyphicon-minus-sign
{
	display:none
}

.rating-sm {
    font-size: 24px;
    margin-top: 9px;
}


.rating-container .filled-stars
{
	color:orange;
	border:none;
    -webkit-text-stroke: 1px orange	
}


