.icon {
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	text-transform: none;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	speak: none;
}

.icon--arrow-left:before {
	content: '\f053';
	font-family: "FontAwesome";
	vertical-align: bottom;
}

.icon--menu:before {
	content: '\e903';
}

.icon--cross:before {
	content: '\e117';
}

/* Menu styles */

.menu {
	left: 0;
	background: #25272d;
	-webkit-box-shadow: 5px 5px 15px -3px rgba(0,0,0,0.45);
	-moz-box-shadow: 5px 5px 15px -3px rgba(0,0,0,0.45);
	box-shadow: 5px 5px 15px -3px rgba(0,0,0,0.45);
}

.menu__wrap {
    width: 100%;*/
	margin: 0 0 20px;
	min-height: calc(100vh);
}

.menu__level {
	border: none;
	position: absolute;
	overflow: hidden;
	width: 260px;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.menu__level--current {
	display: block;
	visibility: visible;
	position: relative;
}

.viewport-bottom .affix {
	bottom: 345px !important;
    position: absolute;
    top: inherit !important;
}

.affix {
    top: 70px;
}

.affix.content {
	top: 0;
	width: 845px;
}

.menu__item {
	display: block;
	/*width: calc(100% - 50px);width: 220px;*/
}

.menu__item div.date {
	display: block;
	font-size: 10px;
	margin: 10px 0 5px;
}

.menu__item div.title {
	font-size: 14px;
    font-weight: normal;
}

.main.menu__level li.menu__item,
.menu__level li.menu__item:first-child .menu__link {
	border-top: none;
}

.menu__level li.menu__item  {
    margin: 0;
    padding: 0;
}

.menu__link {
	font-weight: 600;
	font-size: 20px;
	position: relative;
	display: block;
	margin: 0 20px;
    padding: 20px 0;
	color: #fff;
	-webkit-transition: color 0.1s;
	transition: color 0.1s;
	cursor: pointer;
}

.menu__level[data-menu^="submenu"] .menu__item a {
border-top: 1px solid #898989;
text-decoration: none;
}

.menu__link:hover > div.date {
	color: #fff;
	cursor: default;
}

.menu__link[data-submenu]::after {
	content: '\f141';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	padding: 0.25em 1.25em;
	color: #fff;
}

.menu__link:hover, .menu__link:focus,
.menu__link[data-submenu]:hover::after,
.menu__link--current::before {
	color: #ea2e49 !important;
	background: #24262c !important;
}

[class^='animate-'],
[class*=' animate-'] {
	display: block;
	visibility: visible;
	position: absolute;
}

.animate-outToRight .menu__item {
	-webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToRight {
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes outToRight {
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

.animate-outToLeft .menu__item {
	-webkit-animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToLeft {
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes outToLeft {
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.animate-inFromLeft .menu__item {
	-webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes inFromLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.animate-inFromRight .menu__item {
	-webkit-animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes inFromRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.menu__breadcrumbs {
	background: #25272d;
	font-size: 20px;
	line-height: 1;
	padding: 20px 0 10px;
	z-index: 1;
}

.menu__breadcrumbs.affix {
	top: 62px;
}

.menu__breadcrumbs a {
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 2px;
	padding: 0;
	text-transform: uppercase;
	color: #ea2e49;
}

.change {
    padding: 40px;
}

.remove {
	display: none;
}
.menu__breadcrumbs a:last-child {
	pointer-events: none;
}

.menu__breadcrumbs a:not(:last-child)::after {
	content: '\e902';
	font-family: 'feather';
	display: inline-block;
	padding: 0 0.5em;
	color: #ccc;
}

.menu__breadcrumbs a:not(:last-child):hover::after {
	color: #fff;
	cursor: hand;
	text-decoration: none;
}
.menu__breadcrumbs a:hover {
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}
.menu__back {
	background: none;
	border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    margin: 0;
    padding: 0 15px 10px;
    z-index: 100;
	
}
.menu__back.affix {
	float: right;
    margin: 0 3px;
    position: sticky;
}
.menu__back.affix-top {
	float: right;
    margin: -30px 3px;
    position: relative;
}
.menu__back.affix-top span{
	
}
.menu__back--hidden {
	pointer-events: none;
	opacity: 0;
}

.menu__back:hover,
.menu__back:focus {
	color: #fff;
	outline: none;
}

/* Open and close buttons */

.action {
	position: absolute;
	display: block;
	margin: 0;
	padding: 0;
	cursor: pointer;
	border: none;
	background: none;
}

.action:focus {
	outline: none;
}

.action--open, .action--close {
	font-size: 1.5em;
	top: 0;
	left: 1em;
	display: none;
	color: #fff;
	z-index: 99;
	margin-top:30px;
}

.action--close {
	font-size: 1.5em;
	display: none;
	color: #fff;
}

.action--close.remove, .action--open.remove {
	display: none;
}

@media screen and (min-width: 992px) {
	.action--open, .action--close{
		display: none !important;
	}
	#myScrollspy2 {
	    margin-top: 50px;
    	padding: 0 50px;
	}
}

@media screen and (max-width: 991px) {
	.action--open{
		display: block;
	}
	.menu {
		height: 100%;
		position: relative;
		top: -5px;
		width: 100%;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
	}
	.menu--open {
		z-index: 99;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	#myScrollspy {
		padding: 0;
		margin: 0;
	}
	#myScrollspy2 {
	    margin-top: 50px;
    	padding: 0 20px;
	}
	.container.content {
		width: 100%;
		margin: inherit;
    	/*padding: 0 15px 130px;*/
	}
	.edgetv-header {
    	padding-top: 0;
	}
	.edgetv-logo {
    	width: 100% !important;
	
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	nav:not(.menu--open) ul.menu__level[data-spy="affix"] {
		display: none;
	}
	nav.menu--open .menu__level--current {
		display: block;
	}
	.menu__level--current {
		display: none;
    	width: 100% !important;
	}
	.menu__level[data-menu^="submenu"] .menu__item {
    	display: inline-block;
    	width: 48%;
    	float: left;
    	min-height: 340px;
	}
	.edgetv-heading {
   	 padding: 0 0 5px;
	}
	.menu__wrap, ul.menu__level.affix {
    	margin: 0 !important;
	}
}
@media screen and (max-width: 767px) {
	.menu__item {
    display: block;
    width: inherit !important;
}
}
@media screen and (max-width: 991px) {
	.menu__level, .edgetv-logo {
    	width: 100%;
	}
	.affix.content {
    	width: 402px;
	}
	#myScrollspy2{
		position: absolute;
		margin-top: 90px !important;
	}
}

/* Affix and ScrollSpy */

html {
	position: relative;
	min-height: 100%;
}

ul.nav-tabs li {
	margin: 0;
	border-top: 1px solid #ddd;
	width: inherit;
}
ul.nav-tabs li:first-child {
	border-top: none;
}
ul.nav-tabs li a {
	border: none;
	margin: 0;
	padding: 13px 16px;
	border-radius: 0;
}
ul.nav-tabs li.active a, ul.nav-tabs li.active a:hover {
	color: #fff;
	background: #0088cc;
	border: 1px solid #0088cc;
}
ul.menu__level.affix {
	margin: 150px 0;
	top: 0; /* set the top position of pinned element */
}
@media screen and (min-width: 992px) and (max-width: 1199px){
    ul.nav-tabs{
        width: 180px; /* set nav width on medium devices */
    }
	.menu__link {
    font-size: 15px;
	}
.menu {
    width: auto;
}
.menu__level li.menu__item, ul.nav-tabs, .menu__breadcrumbs, .menu__level, .edgetv-logo {
    width:213px;
}
.menu__link, .edgetv-heading {
    margin: 0 10px;
	padding: 10px 0;
}
.edgetv-heading {
	padding: 0 0 10px;
}
ul.nav-tabs li a {
    padding: 13px 10px;
}
.affix.content {
    width: 695px;
}
}

/*Style for Search Video*/

#video-search-input{
    background-color: #fff;
    border: 1px solid #e4e4e4;
    margin: 25px 13px 5px;
    padding: 0;
}

#video-search-input input{
    border: 0;
    box-shadow: none;
	font-size: 12px;
}

#video-search-input button{
    margin: 2px 0 0 0;
    background: none;
    box-shadow: none;
    border: 0;
    color: #666666;
    padding: 0 8px 0 10px;
    border-left: solid 1px #ccc;
}

#video-search-input button:hover{
    border: 0;
    box-shadow: none;
    border-left: solid 1px #ccc;
}

#video-search-input .glyphicon-search{
    font-size: 15px;
}

#video-search-input .glyphicon-search:before{
	content: '\f002';
	font-family: "FontAwesome";
}