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

/* Layout */
.restaurant-written-menu:after{
	display: none;
}
/*.restaurant-written-menu{
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}*/
.restaurant-written-menu .restaurant-menu-category {
    width: 45%;
   	float: left;
}
.restaurant-written-menu .restaurant-menu-category.right{
	float: right;
}
/*.restaurant-written-menu .restaurant-menu-category + .restaurant-menu-category:not(.right){
	float: none;
}
*/

.restaurant-menu-category > .title {
    margin-left: 2rem;
    margin-bottom: -15px;
}

.restaurant-written-menu .restaurant-menu-section {
    padding: 2rem 4rem;
}

.restaurant-written-menu .restaurant-menu-section + .restaurant-menu-section {
    padding-top: 0;
}

.restaurant-written-menu .restaurant-menu-section > .title {
    line-height: 1;
    margin-top: 0;
    margin-bottom: .4rem;
}

.restaurant-written-menu .restaurant-menu-section > .subtitle {
    margin-bottom: 1.2rem;
}

.restaurant-written-menu ul li.restaurant-menu-item:last-child {
    margin-bottom: 0;
}

/* Responsive */

@media screen and (max-width: 767px) {
	.restaurant-written-menu { margin: 0; }
	.restaurant-written-menu .restaurant-menu-category { width: 100%; }
	.restaurant-menu-category.right {
		float: none;
		clear: none;
	}
}
@media screen and (max-width: 479px) {
	.restaurant-menu-category > .title {
		margin-left: 0;
		margin-bottom: -13px;
	}
}

/* Style */

/*.restaurant-written-menu:before {
	content: "";
	display: block;
	width: 2px;
	height: calc(100% - 2rem);
	position: absolute;
	left: calc(50% - 1px);
	top: 2rem;
	border: 1px solid #CB2727;
}*/
.restaurant-written-menu{
	/*padding-top: 60px;*/
	padding-bottom: 30px;
}

.restaurant-menu-category > .title {
	color: #991a1e;
}

.restaurant-menu-category > .title:after {
	display: none;
}

.restaurant-menu-item .title, 
.restaurant-menu-item .title a {
	color: rgba(255, 255, 255, 0.9);
}

.restaurant-menu-section > .title, 
.restaurant-menu-section > .subtitle, 
.restaurant-menu-item .title a:hover {
	color: white;
}

.restaurant-written-menu .restaurant-menu-section {
	background-color: #991a1e;
}

.restaurant-menu-category > .title {
    /*font-family: "OAF-300";*/
	/*font-family: 'billboard_collegecollege';*/
	font-family: 'Cocogoose Pro-trial';
    font-size: 32px;
    letter-spacing: 2px;
    line-height: 0.9;
}
.restaurant-menu-category > .title > b{
	font-family: "Brandon Grotesque",sans-serif;
    font-weight: 900;
}

.restaurant-menu-section > .title {
	font-family: Franchise, sans-serif;
    font-size: 44px;
	font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

.restaurant-menu-item .title {
	font-family: "Brandon Grotesque", sans-serif;
	font-size: 22px;
	font-weight: 600;
}
.restaurant-menu-item .title .sub{
	font-size: 18px;
	font-weight: normal;
	display: block;

}

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

/* Responsive */

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

@media screen and (max-width: 479px) {
	.restaurant-menu-category > .title { font-size: 36px; }
	.restaurant-menu-section > .title { font-size: 30px; }
	.restaurant-menu-section > .subtitle { font-size: 15px; }
	.restaurant-menu-item .title { font-size: 19px; }
}

/***********************************/
/**  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: Franchise, sans-serif;
	font-size: 56px;
	font-weight: 700;
	text-align: center;
	text-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
}

.restaurant-menu-photo .back {
	background-color: #181818;
	font-size: 17px;
}

.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: white;
    background-color: #CB2727;
    border-radius: 50%;
}

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

/* Responsive */
