.demo-bg {
	background: #ffac0c;
	margin-top: 60px;
}

.business-hours {
	background: #000000;
	padding: 40px 14px; /* margin-top: -15px; */
	position: relative;
}

.business-hours:before {
	content: '';
	width: 23px;
	height: 23px;
	background: #111;
	position: absolute;
	top: 5px;
	left: -12px;
	transform: rotate(-45deg);
	z-index: -1;
}

.business-hours .title {
	font-size: 20px;
	color: #BBB;
	text-transform: uppercase;
	padding-left: 5px;
	border-left: 4px solid #ffac0c;
}

.business-hours li {
	color: #888;
	line-height: 30px;
	border-bottom: 1px solid #333;
}

.business-hours li:last-child {
	border-bottom: none;
}

.business-hours .opening-hours li.today {
	color: #ffac0c;
}

.label-default {
	background-color: #600a5b;
}

.label {
	display: inline;
	padding: 1.2em 1.6em 1.3em;
	font-size: 93%;
	font-weight: 700;
	line-height: 4;
	color: #ffffff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: .25em;
}

.radio {
	background: rgb(34, 34, 34);
	padding: 30px;
}

.row.emo-bg {
	background: #8a559d;
}

.closed {
	display: none;
}

p#areweopen {
	background: red;
	color: #fff;
	padding: 5px;
}

ol {
	counter-reset: li; /* Initiate a counter */
	list-style: none; /* Remove default numbering */
	/*list-style: decimal; /* Keep using default numbering for IE6/7 */
	font: 15px 'trebuchet MS', 'lucida sans';
	padding: 0;
	margin-bottom: 0em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}

ol ol {
	margin: 0 0 0 2em; /* Add some left margin for inner lists */
}

.rectangle-list a {
	position: relative;
	display: block;
	padding: .4em .4em .4em .8em;
	*padding: .4em;
	margin: .5em 0 .5em 2.5em;
	background: #ddd;
	color: #444;
	text-decoration: none;
	transition: all .3s ease-out;
}

.rectangle-list a:hover {
	background: #eee;
}

.rectangle-list a:before {
	content: counter(li);
	counter-increment: li;
	position: absolute;
	left: -2.5em;
	top: 50%;
	margin-top: -1em;
	background: #ffac0c;
	height: 2em;
	width: 2em;
	line-height: 2em;
	text-align: center;
	font-weight: bold;
	color: #fff;
}

.rectangle-list a:after {
	position: absolute;
	content: '';
	border: .5em solid transparent;
	left: -1em;
	top: 50%;
	margin-top: -.5em;
	transition: all .3s ease-out;
}

.rectangle-list a:hover:after {
	left: -.5em;
	border-left-color: #fa8072;
}