/*Radio buttons*/




.radio_container {
  cursor: pointer;
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px !important;
  font-weight: bold !important;
  margin-top: 20px;
}

/* 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%;
}

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

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

/* 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: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

#locations_render_area{
	padding-left: 70px;
	margin-top: 20px;
}


/*MODAL*/

.tgif_query_background{
display:none;
background:rgba(0,0,0,.65);
z-index: 100000;
position: fixed;
top: 0;
left: 0;
min-width: 100%;
height: 100%;
}

.tgif_query_table {
width:50%;
background-color:transparent;
padding:3%;
z-index: 150000;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

@media (max-width:768px) {
.tgif_query_table {
width:90%;
}
}

.close_pop{
cursor: pointer;
padding-bottom: 5%;
font-size: 19px;
text-align: right;
}


/*Menu page*/

.search_input{
	width: 207px;
	height: 52px;
}

.search_input_mobile{
	width: 270px;
	height: 52px;
}

.search_input::placeholder {
  padding-left: 10px;
  font-size: 1.5em;
}

.location_icon{
	float: left;
	font-size: 30px;
}

.location_icon_mobile{
	float: left;
	margin-left: 15px;
	font-size: 40px;
}

.search_icon{
	height: 52px;
	cursor: pointer;
}

.box {
  display: flex;
  flex: 1 0 auto;
  justify-content: center;
  align-self: start;
}

.menu_render_box{
	color: #fff !important;
	font-color: #fff;
	display: flex;
	font-size: 15px;
	height: 175.688px;
	line-height: 21.4286px;
	padding-bottom: 50px;
	text-size-adjust: 100%;
	margin-left:30px;
	margin-right:30px;
}

.tgi_store_item{
	margin-left: 20px;
	min-height: 170px;
	padding: 15px 15px 15px 15px;
}

.order_from_selected_store{
	text-align: center;
	box-sizing: border-box;
	color: rgb(255, 255, 255);
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 700;
	height: 51px;
	letter-spacing: normal;
	line-height: 30px;
    padding: 20px 20px 20px 20px;
	text-align: center;
	text-transform: uppercase;
	width: 300px;
	word-spacing: 0px;
	margin-top: 30px;
	background-color: #EBEBEB;
	margin-bottom: 30px;
}

.view_aditional_locations{
	color: #fff;
	font-size: 14px;
	font-family: 'Libre Franklin', sans-serif;
	text-align: center;
	text-decoration: underline;
	text-transform: uppercase;
}

#menu_response_area{
	padding-top: 30px;
}

.location_button{
	background-color: #EBEBEB;
	width: 280px;
	color: #959595;
	height: 52px;
	margin-left: 10px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;

}

.location_button_mobile{
	width: 70px;
	background-color: #EBEBEB;
	height: 52px;
	cursor: pointer;
}

.location_icon{
	float: left;
	font-size: 30px;
	margin-top: -10px;
}

.location_icon_mobile{
	float: left;
	margin-left: 15px;
	font-size: 40px;
	margin-top: -10px;
}

