/*****************************************************/
/* Schedule */
/*****************************************************/
.schedule-tabs {
    padding-top: 60px;
}
.tabs {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin: 0 0 0em;
	font-weight: 300;
}

/* Nav */
.tabs nav {
	text-align: center;
	background-color:transparent;
}

.tabs nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: -webkit-box;  
	display: -webkit-flex;  
	display: -ms-flexbox;  
	display: flex;
	width:100%;
}

.tabs nav ul li {	
	padding: 0;
	width: 33.33%;
	display:inline-block;
	float:left;
}
.tabs nav ul li a{
	border:none;
	background:#f5f5f5;
	display: block;
	float: left;
	position: relative;
	width:33.33%;
	 transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
}
.tabs nav ul li a
{	
	color:#727f88;
	width: 100%;
}
.tabs nav ul li:hover a
{
	color:#fff;
}
.schedule-tabs .content {
    height: 610px;
    position: relative;
    top: 90px;
}
.content > section {
	height: 610px;
    left: 0;
    position: absolute;
    top: 0;
}
.tabs nav li.tab-current a {
	background: none repeat scroll 0 0 #180320;
}

.tabs nav li a:hover {
	background: none repeat scroll 0 0 #180320;
	 transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
}
.tabs nav li.tab-current a {
	color:#fff;
}

	
.tabs nav li a:before {
    border: 10px solid;
    content: " ";
    display: flex;
    height: 10px;
    left: 50%;
	opacity:0;
    margin-left: -10px;
    position: absolute;
    top: 80%;
    transform: translateY(10px);
	-moz-transform: translateY(10px);
	-ms-transform: translateY(10px);
	-webkit-transform: translateY(10px);
	-o-transform: translateY(10px);
    border-color: #180320 rgba(119, 245, 110, 0) rgba(119, 245, 110, 0);
	transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
}	
.tabs nav li a:hover:before {
    opacity:1;
	transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
}
.tabs nav li.tab-current a:before{
    border: 10px solid;
	opacity:1;
    content: " ";
    display: flex;
    height: 10px;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    top: 80%;
    -webkit-transform: translateY(10px); 
	-ms-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transform: translateY(10px);
	-o-transform: translateY(10px);
	border-color: #180320 rgba(119, 245, 110, 0) rgba(119, 245, 110, 0);
}

.tabs nav a {
	font-weight: 300;
	display: block;
	font-size: 1.45em;
	line-height: 2.5;
	text-decoration:none;
	white-space: nowrap;
}

/* Content */
.content section {
	display: none;
	/*max-width: 1170px;
	margin: 0 auto;*/
	
}

.content section:before,
.content section:after {
	content: '';
	display: table;
}

.content section:after {
	clear: both;
}

/* Fallback example */
.no-js .content section {
	display: block;
	padding-bottom: 2em;
	border-bottom: 1px solid #47a3da;
}

.content section.content-current {
	display: block;
}

/* Example media queries */

@media screen and (max-width: 52.375em) {	

	.tabs nav a:before {
		margin-right: 0;
	}

}

@media screen and (max-width: 32em) {
	.tabs nav ul,
	.tabs nav ul li a {
		width: 100%;
		padding: 0;
	}

	.tabs nav ul li {
		width: calc(100% / 3);
		margin: 0 0 0 -1px;
	}

	.tabs nav ul li:last-child {
		border-right: none;
	}

	
}