/*************************************/
/**  Restaurant Written Menu Theme  **/
/*************************************/

.restaurant-written-menu:before {
	content: "";
	display: block;
	width: 2px;
	height: calc(100% - 2rem);
	position: absolute;
	left: calc(50% - 1px);
	top: 2rem;
	border: 1px dashed;
}

.restaurant-menu-category > .title {
	color: yellow;
}

.restaurant-menu-category > .title:after {
	background-color: yellow;
}

.restaurant-menu-section > .title, 
.restaurant-menu-item .title .price {
	color: red;
}

.restaurant-menu-category > .title {
	font-family: sans-serif;
	font-size: 34px;
	font-weight: 700;
	letter-spacing: 2px;
}

.restaurant-menu-section > .title {
	font-family: sans-serif;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 4px;
}

.restaurant-menu-section > .subtitle {
	font-family: serif;
	font-style: italic;
	line-height: 1.5;
}

.restaurant-menu-link:hover {
	text-decoration: underline;
}

.restaurant-menu-item .title {
	font-family: sans-serif;
	font-size: 22px;
	font-weight: 600;
}

.restaurant-menu-item .title .price:before {
	content: "— ";
}

/* Responsive */

@media screen and (max-width: 767px) {
	.restaurant-written-menu:before { border: none; }
}

/***********************************/
/**  Restaurant Photo Menu Theme  **/
/***********************************/

.restaurant-menu-photo .front {
	-webkit-transition: -webkit-transform 0.4s ease-out;
	-moz-transition: -moz-transform 0.4s ease-out;
	transition: transform 0.4s ease-out;
}

.restaurant-menu-photo:hover .front {
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}

.restaurant-menu-photo .front .title {
	color: white;
	font-family: sans-serif;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

.restaurant-menu-photo .back {
	background-color: #181818;
}

.restaurant-menu-photo .back .title {
	color: white;
	font-weight: 700;
}

.restaurant-menu-photo .back .description {
	color: #DDDDDD;
}

.restaurant-menu-featured-icon {
    top: -28px;
    right: -28px;
    width: 80px;
    height: 80px;
    color: #181818;
    background-color: yellow;
    border-radius: 50%;
}

.restaurant-menu-featured-icon .fa {
    font-size: 50px;
}

/* Responsive */
