/*
Styling by Ryan Jobson
RocketDesigns.co.uk
*/
/*Fonts*/
@font-face {
    font-family: Generation;
    src: url(../fonts/Generation_September.ttf);
}

.home_page:before {
	content: " ";
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	background-image: url(../img/bg.jpeg);
	background-size: 100% auto;
	background-position: center;
	opacity: .5;
	z-index: 0;
}
.home_page {
	position: relative;
	height: 100vh;
	background: #000;
}
.home_page .welcome {
	margin-top: 50px;
	position: relative;
	z-index: 1;
}
.home_page .welcome h2 {
	font-family: Generation;
	text-align: center;
	color: gold;
	font-size: 70px;
	margin-bottom: 0;
}
.home_page .welcome h1 {
	margin-top: 0;
	text-align: center;
	font-size: 40px;
	text-transform: uppercase;
	color: #fff;
}
.home_page .welcome h4 {
	font-size: 20px;
	color: #fff;
	text-align: center;
	position: relative;
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
}
/* Orders */
.order {
	margin-top: 20px;
	margin-bottom: 20px;
}
.box {
	padding: 20px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(232,232,232,1);
	-moz-box-shadow: 0px 0px 20px 0px rgba(232,232,232,1);
	box-shadow: 0px 0px 20px 0px rgba(232,232,232,1);
}
.box h2 {
	margin-top: 0;
	margin-bottom: 20px;
	padding-bottom: 10px;
	padding-top: 0;
	border-bottom: 1px solid #e1dcdc;
	font-size: 23px;
}
.box ul.cart_list {
	list-style: none;
	padding: 0;
	border-bottom: 1px solid #e1dcdc;
}
.cart_list li {
	font-size: 15px;
	margin-bottom: 20px;
	display: flex;
}
.float_right {
	width: 60px;
	display: inline-block;
	text-align: center;
}
.left_text {
	display: inline-block;
	width: calc(100% - 60px);
	padding-right: 5px;
}
.small_buttons span {
	border-radius: 50%;
    border: 1px solid;
    width: 25px;
    height: 25px;
    display: inline-block;
    line-height: 21px;
    cursor: pointer;
}
.small_buttons span.add_more {
	background-color: #e65832;
	border-color: #e65832;
	color: white;
}
.total {
	display: flex;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 10px;
}
.button {
	background-color: #e65832;
	color: white;
	text-align: center;
	padding: 10px;
	border-radius: 21px;
	position: relative;
}
.button p {
	margin-bottom: 0;
}
.button .q_item {
	position: absolute;
    right: -5px;
    top: -5px;
    width: 25px;
    height: 24px;
    background: black;
    border-radius: 20px;
    padding-top: 2px;
}
.favourite .image {
    width: 100%;
    height: 170px;
    border-radius: 60px;
    overflow: hidden;
    margin-bottom: 20px;
}
.favourite .image img {
	min-width: 100%;
    min-height: 100%;
    width: 100%;
}
.order h3 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 28px;
}
.dis_info {
	text-align: center;
}
.dis_info h5 {
	font-weight: bold;
	font-size: 17px;
}
.allergies {
	padding-left: 0;
	list-style: none;
}
.allergies li {
	display: inline-block;
}
.allergies img {
	height: 20px;
	padding-right: 3px;
	position: relative;
	top: -2px;
}
.dis_price {
	text-align: center;
}
.fixed {
        position: fixed;
        width: 25%;
}
.scrollit {
        float: left;
        width: 71%
}
.meal_list ul {
	padding-left: 0;
	list-style: none;
}
.meal_list h5 {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: bold;
	font-size: 19px;
}
.meal_list .price {
	font-weight: bold;
}
.meal_list .left_side {
	width: calc(100% - 160px);
}
.meal_list .right_side {
	width: 140px;
}
.list .box {
	display: flex;
	transition: 0.2s;
}
.list .box:hover {
	background: #d9d9d9;
	cursor: pointer;
}
.image_box {

}
.right_side img {
	max-width: 140px;
	height: 100px;
	border-radius: 15px;
}
.meal_list .list li {
	margin-bottom: 15px;
}
.meal_list .list .box {
	position: relative;
}
.meal_list .list .box .add_button {
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 100%;
	text-align: center;
	color: #fff;
	background: #e65832;
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.2s;
}
.meal_list .list .box:hover .add_button {
	background: #a73618;
}
.left_side_boxs h3 {
	margin-top: 0;
}
.left_side_boxs .box {
	margin-top: 20px;
}
.categories ul {
	list-style: none;
	padding-left: 0;
	color: #fff;
}
.categories ul li a {
	display: block;
    color: black;
    font-size: 15px;
}
/* Order pop  */
.transparent-back {
    position: fixed;
    top: 0px;
    left:0px;
    width: 100%;
    height: 100%;
    z-index: 9997;
    background-color: rgba(255,255,255,0.5);
    display: none;
}
.order_pop {
	display: none;
	position: fixed;
    width: 50%;
    top: 30px;
    left: 25%;
    margin-left: auto;
    margin-right: auto;
    z-index: 9998;
    overflow-y: hidden;
    overflow-x: hidden;
   	padding: 20px;
	border-radius: 10px;
	background: #fff;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(232,232,232,1);
	-moz-box-shadow: 0px 0px 20px 0px rgba(232,232,232,1);
	box-shadow: 0px 0px 20px 0px rgba(232,232,232,1);
}
.order_pop h3 {
	margin-top: 0;
}
.checkbox-wrapper {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 26px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

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

/* When the checkbox is checked, add a blue background */
.checkbox-wrapper input:checked ~ .checkmark {
  background-color: #e65832;
}

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

/* Show the checkmark when checked */
.checkbox-wrapper input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-wrapper .checkmark:after {
	left: 9px;
    top: 5px;
    width: 7px;
    height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.options_list {
	list-style: none;
	padding-left: 0;
}
.options_list .name_and_price, span.tick {
	display: inline-block;
}