/* Your custom styles below */

:root {
  --coral: #fc5b62;
}

/*
.secondary_nav {
	display: none;
}
*/

@media (max-width: 991px) {
	#logo img {
		margin: 8px 0 4px 0;
	}
}

.secondary_nav ul li a sup {
	padding-left: 4px;
	padding-right: 5px;
	background: #fc5b62;
	color: white;
	font-weight: bold;
	border-radius: 3px;
}

ul#top_menu {
	display: none;
}

.main-menu > ul > li span > a > sup {
	padding-left: 4px;
	padding-right: 5px;
	background: #fc5b62;
	color: white;
	font-weight: bold;
	border-radius: 3px;
}

.mm-listview > li span > a > sup {
	padding-left: 4px;
	padding-right: 5px;
	background: #fc5b62;
	color: white;
	font-weight: bold;
	border-radius: 3px;
}

.box_grid figure small {
	background-color: #fe1d27;
	color: white;
	font-size: 100%;
}

.box_grid figure small.city {
  background-color: #32a067;
  left: auto !important;
  right: 20px !important;
  font-size: 13px;
  font-weight: 400;
}

.box_grid a.wish_bt {
	background-color: rgba(252, 91, 98, 0.8);
	display: none;
}

.score strong {
	background-color: #32a067;
}

.location {
	font-size: 13px;
	font-weight: normal;
	text-transform: uppercase;
	float: right;
	padding: 4px 6px;
	color: white;
	background: #fc5b62;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}

.appbutton {
	display:inline-block;
	overflow:hidden;
	margin-right:10px;
}

.card-photo {
    background-position: 50% center;
    background-size: cover;
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

/* Custom CSS */

.tag {
	color: white;
	font-size: 14px;
	padding: 3px 5px;
	border-radius: 2px;
	background: #32a067;
	font-weight: 500;
}

.box_account {
  background: #fff;
  border: 1px solid #ededed;
  margin-bottom: 25px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}

/* Menu list */
.slide-sep {
	display: block;
	width: 135px;
	height: 30px;
	background:url("../img/slide-separator.png");
	background-repeat: no-repeat;
	margin:20px auto 0;
	content: " ";
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
	
.order {
    border: 1px solid #ccc;
    background: white;
    padding: 10px;
    overflow: hidden;
    color: #333;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.05);
}

.order img {
    clear: both;
    float: left;
    margin-right: 15px;
    border: 0 none;
    width: 80px;
	box-sizing: content-box;
}

.order .nowrap {
    display: block;
    overflow: hidden;
    white-space: normal;
    color: #666;
    height: 70px;
}

/* .order .nowrap .order-title */
.order .order-title {
    font-weight: 500;
    font-style: italic;
    font-size: 16px; 
    color: #444;
    /* titlu cu o singura linie */
    width:100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 8px;
}

.order .order-title a {
	color: #555;
}

.order .order-title a:hover {
	color: #333;
}

.order .order-price {
    text-align: right;
    margin-top: 5px;
    color: #666;
}

.order .order-price a {
    margin-right: 10px;
	font-weight: 400;
	color: #ffffff;
	background-color: #fc5b62;
	padding: 1px 6px;
	border-radius: 2px;
}

.order .order-price a:hover {
	background-color: #0054a6;
}

/* Balloon Message */
#balloon {
    background: #fc5b62;
    border: 0 none;
    color: white;
    font-size: 14px;
    line-height: 1.5;
    padding: 10px;
    width: 220px;
    border-radius: 3px;
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: none;
    /* opacity: 0.9;
    filter: alpha(opacity=90); */
}

#balloon a {
    color: white;
    text-decoration: underline;
}

/* Custom radio */
.radio-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
	border: 1px solid #d2d8dd;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
	background-color: #32a067;
	border-color: #32a067;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
	top: 7px;
	left: 7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: white;
}

.custom-select {
	font-size: 0.875rem;
	font-weight: 500;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	height: calc(2.0em + .75rem + 5px);
}

/* Stare Comenzi */
/* Comanda noua (btn-danger) */
.status0 {
	background: #dc3545;
}
/* Comanda in lucru (btn-warning) */
.status1 {
	background: #ffc107;
	color: #111;
}
/* Comanda anulata (btn-secondary) */
.status2 {
	background: #868e96;
}
/* Comanda livrata (btn-success) */
.status3 {
	background: #28a745;
}
.neworder {
	color: #555;
}

.btn_email {
	background-color: #0094ff !important;
}

.btn_email:hover {
	background-color: #0054a6 !important;
}

@media screen and (max-width: 767px) {
	.order img {
		width: 64px;
	}
	
	#balloon {
		left: 10px;
	}
	
	ul#top_menu {
		display: block;
	}
	.secondary_nav {
		display: block;
	}
}

/* Horizontal Scroll Menu */
.scrollmenu {
	padding: 15px 0;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-color: #999 transparent;
	scrollbar-width: thin;
}

.scrollmenu a {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-size: 15px;
	color: rgba(0, 0, 0, 0.5);
	font-weight: 500;
	margin-right: 20px;
}
		
.scrollmenu a.active {
	color: rgba(0, 0, 0, 0.9);
}
		
.scrollmenu a:hover {
	color: #fc5b62;
}
		
.scrollmenu::-webkit-scrollbar {
	height: 4px;
}
		
.scrollmenu::-webkit-scrollbar-track { 
	background: transparent;
	border-radius: 4px;
}
		
.scrollmenu::-webkit-scrollbar-thumb { 
	background: #999;
	border-radius: 4px;
}

/* Horizontal Scroll Nav Menu */
.scrollnav {
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-color: #999 transparent;
	scrollbar-width: thin;
}
		
.scrollnav::-webkit-scrollbar {
	height: 4px;
}
		
.scrollnav::-webkit-scrollbar-track { 
	background: transparent;
	border-radius: 4px;
}
		
.scrollnav::-webkit-scrollbar-thumb { 
	background: #999;
	border-radius: 4px;
}

/*  PureCookie */
.cookieConsentContainer {
	z-index: 9998;
	width: 350px;
	min-height: 20px;
	box-sizing: border-box;
	padding: 30px 30px 30px 30px;
	background: #121921;
	overflow: hidden;
	position: fixed;
    bottom: 30px;
	right: 30px;
	display: none;
	border: 1px solid #999;
}
.cookieConsentContainer .cookieTitle a {
	color: #fbfbfb;
	font-size: 22px;
	line-height: 20px;
	display: block;
}
.cookieConsentContainer .cookieDesc p {
	margin: 10px 0 20px;
	padding: 0;
	color: #fbfbfb;
	font-size: 12px;
	line-height: 20px;
	display: block;
} 
.cookieConsentContainer .cookieDesc a {
	color: #fc5b62;
	text-decoration: underline;
}
.cookieConsentContainer .cookieDesc a:hover {
	color: #fc5b62;
}
.cookieConsentContainer .cookieButton a {
	display: inline-block;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	margin-top: 14px;
	background: #000000;
	box-sizing: border-box; 
	padding: 15px 24px;
	text-align: center;
	transition: background 0.3s;
}
.cookieConsentContainer .cookieButton a:hover { 
	cursor: pointer;
	background: #3E9B67;
}

@media (max-width: 576px) {
	.cookieConsentContainer {
		bottom: 0px !important;
		left: 0px !important;
		width: 100%  !important;
		border: 0 none;
	}
}

/* Back to menu button */
#toMenu {
  position: fixed;
  right: 80px;
  bottom: 25px;
  z-index: 9997;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  text-align: center;
  font-size: 21px;
  color: #fff;
  cursor: pointer;
}
#toMenu:after {
  content: "\eadd";
  font-family: "fontello";
  position: relative;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}
#toMenu:hover {
  background-color: #fc5b62;
}

/* Custom CSS Infobox */
.marker_info {
	height: auto;
}

.marker_info span {
	padding-bottom: 10px;
}

.marker_info h3 {
	font-size: 0.875rem;
}

span.infobox_rate {
	background-color: #32a067;
}

/*
.marker_info img {
	width: 100%;
}
*/

.marker_info .hero-image {
  height: 120px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}