
html, body, div, span, applet, object, iframe,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
fieldset, form, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	font-size: 100%;
	font-family: Roboto;
	color: #fff;
}

.cd-img-replace {
	display: inline-block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

.overflow-hidden {
	overflow: hidden;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.cd-main-content {
	min-height: 100%;
	position: relative;
	background-color: #000;
	z-index: 10;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}

.cd-main-content.lateral-menu-is-open {
	-webkit-transform: translateX(260px);
	-moz-transform: translateX(260px);
	-ms-transform: translateX(260px);
	-o-transform: translateX(260px);
	transform: translateX(260px);
}


header {
	/* position: fixed; */
	top: 0;
	left: 0;
	height: 70px;
	width: 80%;
	background: #ce0e2d;
	z-index: 1000;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	/* -moz-transition-duration: 0.4s;
	transition-duration: 0.4s; */
	/* clip-path: polygon( 100%, 45px 0, 100% 0, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100% ); */
	clip-path: polygon(0% 0%, 100% 0, 100% 0, 95% 100%, 0% 100%);
	border-bottom: 3px solid #000000;
}

@media (min-width: 1200px) {
	header {
		height: 70px;
	}
}

header a:hover,
header a:focus {
	text-decoration: none;
}

header > .container {
	position: relative;
}

@media only screen and (min-width: 802px) {
	header > .container {
		position: relative;
		display: flex;
	}
}

.header__menu {
	flex: 1;
}


.header__login {
	display: none;
}


@media only screen and (min-width: 802px) {
	.header__login {
		display: block;
		float: right;
	}
}

.header__theme-tool {
	float: right;
	font-size: 23px;
	line-height: 70px;
	padding: 0 10px;
	color: var(--header-link);
	cursor: pointer;
}
.header__theme-tool i {
	position:relative;
}
.header__theme-tool-unsaved {
	position: absolute;
	width: 14px;
	height: 14px;
	background: #FBB15E;
	border-radius: 50%;
	top: -4px;
	right: -4px;
	display: none;
}
.header__theme-tool-unsaved.active {
	display: block;
}

.header__logged {
	float: right;
	display: none;
	font-size: 23px;
}

@media only screen and (min-width: 802px) {
	.header__logged {
		display: block;
	}
}



.header__logged .dropdown-menu {
	margin-top: 0px;
	border-radius: 0;
	background-color: rgba(51, 51, 51, 0.8);
	border: none;
}

@media only screen and (max-width: 1550px) {
	.header__logged .dropdown-menu {
		right: 0;
		left: auto;
	}
}

.header__logged .dropdown-menu > li > a {
	color: #fff;
	font-family: 'Oswald', sans-serif;
}

.header__logged .dropdown-menu > li > a:hover,
.header__logged .dropdown-menu > li > a:focus {
	background-color: #333;
	color: #fff;
	background-image: none;
}

.header__search {
	float: right;
	position: relative;
	font-size: 24px;
}

.search__form-field {
	position: absolute;
	right: 48px;
	font-size: 0px;
	width: 0px;
	top: 13px;
	overflow: hidden;
	-webkit-transition: width 0.3s;
	-moz-transition: width 0.3s;
	transition: width 0.3s;
	-webkit-backface-visibility: hidden;
}

.search__form-field._is-open {
	width: 200px;
}

@media only screen and (min-width: 802px) {
	.search__form-field._is-open {
		width: 400px;
	}
}

.search__form-wrapper {
	position: relative;
}


.search__form-wrapper .icon-close {
	position: absolute;
	right: 0;
	top: 0;
	background-position: -44px 0;
	cursor: pointer;
	display: none;
}

.search__input-field {
	width: 100%;
	padding: 10px;
	border: none;
	border-collapse: separate;
	font-size: 16px;
	color: #333;
	border: 1px solid #ccc;
}

.search__input-field:focus {
	outline: none;
}

.search__submit-button {
	border: none;
	padding: 8px;
	background-color: #fff;
	display: table-cell;
	width: 1%;
	white-space: nowrap;
	border-collapse: separate;
}

.header__date {
	display: none;
	color: #FFF;
	font-weight: lighter;
}

@media only screen and (min-width: 1200px) {
	.header__date {
		float: right;
		margin-right: 12px;
		display: block;
		font-family: 'Oswald', sans-serif;
		line-height: 70px;
	}

}

.header__login > a,
.header__logged > a,
.header__search a,
.header__date a {
	padding: 0px 10px;
	color: #fff;
	font-weight: bold;
	display: inline-block;
	text-transform: uppercase;
	line-height: 70px;
}


@media only screen and (max-width: 801px) {

	.header__search a {
		padding-right: 0;
		padding-left: 0;
	}

}

.header__language {
	float: right;
	margin-left: 10px;
}

header.lateral-menu-is-open {
	-webkit-transform: translateX(260px);
	-moz-transform: translateX(260px);
	-ms-transform: translateX(260px);
	-o-transform: translateX(260px);
	transform: translateX(260px);
}

header.is-fixed {
	position: fixed;
}

.header__help {
	position: absolute;
	right: 15px;
	display: none;
}

@media only screen and (min-width: 802px) {
	.header__help {
		display: block;
		z-index: 999;
	}
}

.header__help a {
	color: #FFF;
	font-size: 26px;
	line-height: 70px;
	outline: none;
	display: inline-block;
}

.header__logo img {
	max-height: 50px;
	max-width: 220px;
}

@media only screen and (min-width: 802px) {
	.header__logo {
		margin: 10px 0;
		float: left;
		display: block;
		position: relative;
		margin-right: 20px;
	}

	.header__logo img {
		display: block;
	}
}

@media only screen and (max-width: 801px) {
	.header__logo {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
		padding: 10px 0;
		line-height: 0;
	}
}

#header__nav {
	position: relative;
	display: flex;
	opacity: 0;
}

@media only screen and (max-width: 801px) {
	#header__nav {
		display: none !important;
	}
}

@media only screen and (min-width: 802px) {
	#header__nav {
		display: flex;
		opacity: 0;
		left: inherit !important;
		right: inherit !important;
	}

	.header--has-subscribe #header__nav {
		display: flex;
		opacity: 0;
		left: inherit !important;
		right: inherit !important;
	}
}

@media only screen and (min-width: 1200px) {
	#header__nav {
		right: inherit !important;
	}

	.header--has-subscribe #header__nav {
		right: inherit !important;
	}
}

#header__nav ul {
	padding-top: 15px;
	padding-left: 0;
}

#header__nav .dropdown-menu {
	border-radius: 0;
	margin-top: 15px;
	padding-top: 10px;
	border: none;
}

@media (min-width: 1200px) {
	#header__nav .dropdown-menu {
		margin-top: 15px;
	}
}

#header__nav li.open > a {
	color: #FFF;
}

#header__nav li.open .caret {
	border-color: #FFF;
	border-bottom: 1px solid transparent !important;
	border-left: 1px solid transparent !important;
}

#header__nav .dropdown-menu li {
	display: block;
	margin-right: 0;
}

#header__nav .dropdown-menu a {
	display: block;
	padding: 3px 10px;
	color: #333;
	font-family: 'Oswald', sans-serif;
	text-transform: none;
}

#header__nav .dropdown-menu {
	max-height: 75vh;
	overflow: auto;
}

#header__nav li {
	display: inline-block;
	margin-right: 1em;
}

#header__nav a {
	display: inline-block;
	padding: .5em;
	color: #ffffff;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	text-transform: none;
}

#header__nav li.active > a {
	color: #01A4E4;
}

#header__nav li.active .caret {
	border-top: 1px solid #01A4E4;
	border-right: 1px solid #01A4E4;
}

#header__nav a.current {
	background-color: #242e30;
}

.item-has-children {
	margin-bottom: 0px;
}

.item-has-children .sub-menu {
	background: none;
	padding-left: 10px !important;
	display: none;
}

#header__nav a:hover {
	color: #00A4E4;
}

#header__nav a:hover .caret {
	color: #00A4E4;
	border-top: 1px solid #00A4E4  ;
	border-right: 1px solid #00A4E4  ;
}


#js-menu-trigger {
	position: absolute;
	left: 0;
	top: 0;
	height: 70px;
	width: 50px;
}

@media only screen and (min-width: 802px) {
	#js-menu-trigger {
		display: none;
	}
}

#js-menu-trigger .cd-menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #FFF;
	font-weight: 600;
	display: none;
}

#js-menu-trigger .cd-menu-icon {
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 18px;
	height: 2px;
	background-color: #FFF;
}

#js-menu-trigger .cd-menu-icon::before, #js-menu-trigger .cd-menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: #FFF;
	left: 0;
}

#js-menu-trigger .cd-menu-icon::before {
	bottom: 5px;
}

#js-menu-trigger .cd-menu-icon::after {
	top: 5px;
}

#js-menu-trigger.is-clicked .cd-menu-icon {
	background-color: rgba(255, 255, 255, 0);
}

#js-menu-trigger.is-clicked .cd-menu-icon::before, #js-menu-trigger.is-clicked .cd-menu-icon::after {
	background-color: white;
}

#js-menu-trigger.is-clicked .cd-menu-icon::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#js-menu-trigger.is-clicked .cd-menu-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media only screen and (min-width: 802px) {
	#js-menu-trigger {
		width: 60px;

	}

	#js-menu-trigger .cd-menu-text {
		display: inline-block;
		line-height: 70px;
	}

	#js-menu-trigger .cd-menu-icon {
		left: auto;
		right: 1.25em;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
}

#cd-lateral-nav {
	position: fixed;
	height: 100%;
	left: 0;
	top: 0;
	visibility: hidden;
	z-index: 1;
	width: 260px;
	background-color: #1a1a1a;
	overflow-y: auto;

	-webkit-backface-visibility: hidden;
	-webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
	-moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
	transition: transform .4s 0s, visibility 0s .4s;
	-webkit-transform: translateX(-80px);
	-moz-transform: translateX(-80px);
	-ms-transform: translateX(-80px);
	-o-transform: translateX(-80px);
	transform: translateX(-80px);
}

#cd-lateral-nav ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.nav-sidebar__part {
	padding: 10px 0 16px;
}

.nav-sidebar__brand {
	background-color: #00A4E4;
	color: transparent;
	font-family: 'Oswald', sans-serif;
	padding-top: 31px;
	padding-left: 15px;
	padding-bottom: 15px;
	padding-right: 15px;
}

.nav-sidebar__brand:before {
	content: 'Vidflex';
	color: #fff;
}

#cd-lateral-nav .submenu {
	padding: 0 10px 20px 15px;
	display: none;
}

#cd-lateral-nav ul a {
	display: block;
	line-height: 2em;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	outline: none;
}

#cd-lateral-nav a:hover,
#cd-lateral-nav a:focus {
	text-decoration: none;
}

#cd-lateral-nav a.current {
	background-color: #3a4a4d;
	color: #FFF;
}

.no-touch #cd-lateral-nav a:hover {
	color: #FFF;
}

.nav-sidebar__part {
	padding: 5px 15px;
}

._has-top-separator {
	border-top: 1px solid #00A4E4;
}

._menu-part {
	padding-top: 10px;
	padding-bottom: 60px;
	padding-right: 0;
	padding-left: 0;
}

._menu-part li > a {
	padding-left: 15px;
}

#cd-lateral-nav.lateral-menu-is-open {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
	-moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
	transition: transform .4s 0s, visibility 0s 0s;
	-webkit-overflow-scrolling: touch;
}

#cd-lateral-nav .item-has-children > a {
	position: relative;
	text-transform: uppercase;
	line-height: 1.5;
	color: #fff;
	padding-right: 30px;
}

#cd-lateral-nav .item-no-children > a {
	position: relative;
	text-transform: uppercase;
	line-height: 2.6em;
	color: #fff;
}

.submenu-open {
	background-color: #333333;
}

#cd-lateral-nav .item-has-children > a::after {
	content: '';
	display: block;
	height: 11px;
	width: 8px;
	position: absolute;
	top: 12px;
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 1em;
	background: url("../img/cd-arrow.svg") no-repeat center center;
	background-size: 8px 11px;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

#cd-lateral-nav .item-has-children > a.submenu-open::after {
	-webkit-transform: translateY(-50%) rotate(90deg);
	-moz-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	-o-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
}

/*
.container {
  width: 1170px;
  margin: 0 auto;
  position: relative;
}*/
/* .modal-fullscreen */

.modal-fullscreen {
	background: transparent;
}

.modal-fullscreen .modal-content {
	background: transparent;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	margin-top: 80px;
}

.modal-backdrop.modal-backdrop-fullscreen {
	background: #333;
}

.modal-backdrop.modal-backdrop-fullscreen.in {
	opacity: .9;
}

/* .modal-fullscreen size: we use Bootstrap media query breakpoints */

.modal-fullscreen .modal-dialog {
	margin: 0;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
}

@media (min-width: 768px) {
	.modal-fullscreen .modal-dialog {
		width: 750px;
	}
}

@media (min-width: 802px) {
	.modal-fullscreen .modal-dialog {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.modal-fullscreen .modal-dialog {
		width: 1170px;
	}
}

.close.icon {
	color: #fff;
	position: absolute;
	margin-top: 0;
	margin-left: 0;
	width: 31px;
	height: 31px;
	opacity: 1;
	right: 0;
}

.close.icon:before {
	content: '';
	position: absolute;
	top: 10px;
	width: 31px;
	height: 1px;
	background-color: currentColor;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.close.icon:after {
	content: '';
	position: absolute;
	top: 10px;
	width: 31px;
	height: 1px;
	background-color: currentColor;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mobile-header__date {
	background-color: #414141;
	text-align: center;
	padding: 3px 0px;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	clear: both;
	font-size: 12px;
	position: absolute;
	bottom: 0;
	width: 100%;
}

@media (min-width: 1200px) {
	.mobile-header__date {
		display: none;
	}
}

.troubleshooting h4 {
	font-weight: bold;
	margin-bottom: 5px;
}

.troubleshooting p {
	margin-bottom: 20px;
}

.troubleshooting ol li {
	margin-bottom: 5px;
}

.troubleshooting ol li li {
	margin-bottom: 0px;
}

.troubleshooting strong {
	font-weight: bold;
}

.troubleshooting__details {
	margin: 15px 0 15px 20px;
	display: none;
}

.troubleshooting a {
	color: #57a2ff;
}

.troubleshooting a:hover {
	color: #00A4E4;
}

.troubleshooting a:focus {
	text-decoration: none;
}

.modal-title {
	font-weight: bold;
}

.header__subscribe {
	display: none;
}

@media only screen and (min-width: 802px) {
	.header__subscribe {
		display: block;
		float: right;
		line-height: 70px;
		margin-left:5px;
	}

	.header__login {
		float: right;
		display: block;
	}
}

.player-block__desc ul, .player-block__desc ol, .player-block__supplemental-desc ul, .player-block__supplemental-desc ol {
	list-style: revert !important;
	padding-inline-start: 40px !important;
}
