/*
CUSTOM CSS SUPPORT
*/

/* FLEX 2 */
/* direction */
.flex.flex-row {
	flex-direction: row;
}
.flex.flex-column {
	flex-direction: column;
}
.flex.flex-row-reverse {
	flex-direction: row-reverse;
}
.flex.flex-column-reverse {
	flex-direction: column-reverse;
}
/* primary */
.flex.center {
	justify-content: center;
}
.flex.start {
	justify-content: flex-start;
}
.flex.end {
	justify-content: flex-end;
}
.flex.around {
	justify-content: space-around;
}
.flex.between {
	justify-content: space-between;
}
/* secondary */
.flex.sec-center {
	align-items: center;
}
.flex.sec-start {
	align-items: flex-start;
}
.flex.sec-end {
	align-items: flex-end;
}
.flex.sec-stretch {
	align-items: stretch;
}
.flex {
	display: flex;
}
.flex-child {
	flex: 1;
}
.flex-column-center-center {
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.flex-column-center-stretch {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: stretch;
}
.flex-column-start-stretch {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
}
.flex-column-end-stretch {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: stretch;
}
.flex-column-around-center {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}
.flex-column-start-center {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.flex-column-end-center {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.flex-column-between-center {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.flex-column-between-start {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.flex-row-center-center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.flex-row-center-start {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
}
.flex-row-around-center {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}
.flex-row-between-center {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.flex-row-end-center {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
.flex-row-start-center {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.flex-row-center-stretch {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
}
.flex-wrap {
	flex-wrap: wrap;
}

.height-100 {
	height: 100%;
}
.width-100 {
	width: 100%;
}
.error-message {
    background: #F5F5F5;
    position: absolute;
    padding: 5px 10px;
    box-shadow: 0px 1px 1px #8c8888;
    margin: 0px -1px;
    z-index: 1;
}
.clickable {
	cursor: pointer;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.white {
	color: #fff;
}
.well-material {
	border-radius: 2px;
}

/* THUMBNAIL HANDLE */
.image-rectangle-box {
	margin-left: 0px;
}
.image-box {
	background-position: center;
	background-repeat: no-repeat;
}
.image-box.cover {
	background-size: cover;
}
.image-box.contain {
	background-size: contain;
}

/* MARGIN */
.margin-5 {
	margin: 5px;
}
.margin-10 {
	margin: 10px;
}
.margin-15 {
	margin: 15px;
}
.margin-top-5 {
	margin-top: 5px;
}
.margin-top-10 {
	margin-top: 10px;
}
.margin-top-15 {
	margin-top: 15px;
}
.margin-top-30 {
	margin-top: 30px;
}
.margin-bottom-5{
	margin-bottom: 5px;
}
.margin-bottom-10{
	margin-bottom: 10px;
}
.margin-bottom-20{
	margin-bottom: 20px;
}
.margin-bottom-30{
	margin-bottom: 30px;
}
.margin-bottom-40{
	margin-bottom: 40px;
}
.margin-bottom-50 {
    margin-bottom: 50px;
}

/* PADDING */
.padding-5 {
	padding: 5px;
}
.padding-10{
	padding: 10px;
}
.padding-15{
	padding: 15px;
}
.padding-0{
	padding: 0px;
}
.padding-top-0{
  padding-top:0px;
}
.padding-top-5{
	padding-top: 5px;
}
.padding-top-10{
	padding-top: 10px;
}
.padding-top-20 {
	padding-top: 20px;
}
.padding-bottom-10{
	padding-bottom: 10px;
}
.padding-bottom-15{
  padding-bottom:15px;
}

/* TRUNCATE */
.truncate {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.truncate-more {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
  	width: 65%;
}
.break-all {
	word-break: break-all;
}

a.no-decoration:hover {
	text-decoration: none;
}

/* NAVBAR */
.navbar-collapse.in {
	margin-bottom: 10px;
}

/* COMMON REQUIRED LABEL*/
label.required::after{
	content: '*';
	margin-left: 5px;
	color: red;
}
/* CHIPS */
.chips-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: 10px;
}
.chips-webtv {
	margin-left: 0px;
}
.chips-container .label-default{
	margin: 2px;
}
.chip {
	background: #DEDEDE;
	color: black;
	border-radius: 15px;
	margin: 5px 2px;
	padding: 3px 6px;
}

/** profile image **/
.image-profile {
	border-radius: 100%;
	background-size: cover;
	background-position: center;
	margin: auto;
}
.image-medium {
	width: 128px;
	height: 128px;
}
.image-small {
	width: 64px;
	height: 64px;
}
.image-small-medium {
	width: 96px;
	height: 96px;
}
.image-chat {
	width: 28px;
	height: 28px;
	margin-right: 5px;
	border-radius: 100%;
	background-size: cover;
	background-position: center;
	display: inline-block;
}

/* COMMON VALIDATION CSS */
form input.form-control.ng-dirty.ng-invalid {
	border: 2px solid #900;
	box-shadow: none;
}
form .checkbox input.ng-dirty.ng-invalid:after {
	border-color: #900;
}
.checkbox input[type="checkbox"]::after,
.checkbox-inline input[type="checkbox"]::after,
input[type="checkbox"]::after {
	margin-top: 0px;
	margin-right: 0px;
}
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
input[type=checkbox] {
	margin-bottom: 0px;
}
.form-control:focus {
	border-color: rgb(0, 162, 209);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 162, 209,.6)
}
.form-error {
	color: #900;
	font-weight: bolder;
	font-size: 10pt;
}
.input-search {
	border-radius: 20px;
}

/* cast */
cast a.schedule.fixed-height {
	height: 180px;
}
@media (max-width: 768px) {
	cast a.schedule.fixed-height {
		height: 240px;
	}
}
@media (max-width: 480px) {
	cast a.schedule.fixed-height {
		height: 260px;
	}
}

/* dailyProgramming */
#dailyProgramming {
	min-height: 150px;
	transition: all 1s;
	position: relative;
}
#dailyProgramming.triggered {
	transition: all 1s;
	background: rgba(0,0,0,0.3);
}
#dailyProgramming.triggered::before {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	font-size: 24pt;
	content: 'Drop here'
}
.draggable {
	padding-left: 0px;
	padding-right: 0px;
}
.dragging {
	opacity: 0.5;
}
.cast-image {
	position: absolute;
	height: 50%;
	width: 90px;
	opacity: 0.9;
	background-size: cover;
	bottom: 0;
	left: 0;
	z-index: 98;
}

.overflow-hidden-scale {
	overflow: hidden;
	height: 100%;
	width: 100%;
}

/* WIMBRIDGE
.beta {
	color: #fff;
	position: relative;
	top: -10px;
	font-size: 12px;
	font-weight: 700;
}
.bridget-asset {
	margin-bottom:10px;
	background-color: #fff;
}
.bridget-asset .card {
	min-height: 100px;
	background-color: #fff;
}
.thumbnail .caption {
	font-weight: 700;
}
.bridget-asset .image {
	padding-top: 56.25%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 2px 2px 0 0;
}
.bridget-asset .image.uploadable .overlay {
	width: 100%;
	height: 100%;
	color: #fff;
	background: rgba(0,0,0,0.7);
	opacity: 0;
}
.bridget-asset .image-loading {
	padding-top: 0;
	height: 130px;
	color: #fff;
}
.bridget-element {
	padding: 15px 0;
}
.bridget-element .title {
	font-size: large;
}
.bridget-element:hover {
	background-color: rgba(0,0,0,0.1);
}
.bridget-creator {
	background: #FAFAFA;
	padding: 10px 25px;
}
.bridget-video-editor {
	width: 66%;
}
.image-bridget-thumb {
	padding-top: 56.25%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

/* NEW CAROUSEL HOME*/
.card {
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	border-radius: 0px;
	background-clip: padding-box;
}
.card span.card-title {
	color: #fff;
	font-size: 24px;
	font-weight: 300;
	text-transform: uppercase;
}
.card .card-image {
	position: relative;
	overflow: hidden;
	padding-top: 56.25%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(/public/assets/img/thumbnail.png);
}
.card .card-image span.card-title {
	position: absolute;
	top: 0;
	left: 0;
	padding: 2px;
	font-size: 10px;
	background-color: rgba(0, 0, 0, 0.4);
}
.card .card-content {
	padding: 5px;
	border-radius: 0 0 2px 2px;
	background-clip: padding-box;
	box-sizing: border-box;
}
.card .card-content h3 {
	margin: 0;
	color: inherit;
}
.card .card-content span.card-title {
	line-height: 48px;
}
.card .card-action {
	border-top: 1px solid rgba(160, 160, 160, 0.2);
	padding: 15px 5px 10px 5px;
}
.card .card-action a {
	margin-right: 16px;
	transition: color 0.3s ease;
}
.card .card-action a:hover {
	text-decoration: none;
}


/* TOASTR-FIX */
.toast p {
	color: #fff;
}
.loading-overlay {
	background: rgba(0,0,0,0.6);
	height: 100vh;
	margin: 0 auto;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100000;
	transition: visibility 0s, opacity 0.2s linear;
	visibility: hidden;
	opacity: 0;
}
.loading-overlay.loading-visible {
	visibility: visible;
	opacity: 1;
}
.loading-overlay .loading-text {
	text-align: center;
	font-size: 24pt;
	color: #FAFAFA;
	text-transform: uppercase;
}
.loading-overlay .spinner {
	background-color: rgba(0, 162, 209, 0.9);
}

/* FLOWPLAYER */
.flowplayer .fp-logo {
	left: auto;
	right: 3%;
	height: 64px;
	width: 64px;
}
.flowplayer .fp-logo img {
	border-radius: 50%;
	height: 100%;
	width: 100%;
	opacity: 0.7;
}
.flowplayer .fp-logo img:hover {
	opacity: 0.9;
}
.is-offline h1, .is-offline p {
	color: #fff;
}
/* change flowplayer default color */
.flowplayer .fp-color {
	background-color: rgb(0, 162, 209);
}
/* hide logo mouseout+notpaused*/
.flowplayer.is-mouseout:not(.is-paused) .fp-logo {
	display: none;
}
.flowplayer.is-offline .fp-message {
	height: 100%;
}

.fp-header .show-fb-button {
	display: none;
	font-size: 1.5em;
	line-height: 1.6em;
}

/* LOADER */
.xs-spinner {
	width: 32px;
	height: 32px;
	background-color: rgb(0, 162, 209);
	margin: 16px auto;
	-webkit-animation: xs-rotateplane 2s infinite ease-in-out;
	animation: xs-rotateplane 2s infinite ease-in-out;
}
.spinner {
	width: 80px;
	height: 80px;
	background-color: rgba(0, 162, 209, 0.2);
	margin: 100px auto;
	-webkit-animation: sk-rotateplane 1.7s infinite ease-in-out;
	animation: sk-rotateplane 1.7s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
	0% { -webkit-transform: perspective(120px) }
	50% { -webkit-transform: perspective(120px) rotateY(180deg) }
	100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes sk-rotateplane {
	0% {
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
	} 50% {
		  transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
		  -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
	  } 100% {
			transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
			-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		}
}

@-webkit-keyframes xs-rotateplane {
	0% { -webkit-transform: perspective(60px) }
	50% { -webkit-transform: perspective(60px) rotateY(180deg) }
	100% { -webkit-transform: perspective(60px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes xs-rotateplane {
	0% {
		transform: perspective(60px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(60px) rotateX(0deg) rotateY(0deg)
	} 50% {
		  transform: perspective(60px) rotateX(-180.1deg) rotateY(0deg);
		  -webkit-transform: perspective(60px) rotateX(-180.1deg) rotateY(0deg)
	  } 100% {
			transform: perspective(60px) rotateX(-180deg) rotateY(-179.9deg);
			-webkit-transform: perspective(60px) rotateX(-180deg) rotateY(-179.9deg);
		}
}

.snake-spinner {
    height: 12px;
    width: 12px;
    animation: snake-rotate 0.8s infinite linear;
    border: 3px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    display: inline-block;
}
.snake-spinner-xl {
	height: 128px;
	width: 128px;
	animation: snake-rotate 0.8s infinite linear;
	border: 8px solid #fff;
	border-right-color: transparent;
	border-radius: 50%;
}


/* Progress Bar */
.progress-container {
	border-radius: 2px;
}
.progress {
	position: relative;
	height: 4px;
	display: block;
	width: 100%;
	background-color: #acece6;
	border-radius: 2px;
	background-clip: padding-box;
	margin: 0.5rem 0 1rem 0;
	overflow: hidden; }
.progress .determinate {
	position: absolute;
	background-color: inherit;
	top: 0;
	bottom: 0;
	background-color: #26a69a;
	transition: width .3s linear; }
.progress .indeterminate {
	background-color: #26a69a; }
.progress .indeterminate:before {
	content: '';
	position: absolute;
	background-color: inherit;
	top: 0;
	left: 0;
	bottom: 0;
	border-radius: 2px;
	will-change: left, right;
	-webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
	animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }
.progress .indeterminate:after {
	content: '';
	position: absolute;
	background-color: inherit;
	top: 0;
	left: 0;
	bottom: 0;
	will-change: left, right;
	-webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
	animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
	-webkit-animation-delay: 1.15s;
	animation-delay: 1.15s; }

@-webkit-keyframes indeterminate {
	0% {
		left: -35%;
		right: 100%; }
	60% {
		left: 100%;
		right: -90%; }
	100% {
		left: 100%;
		right: -90%; } }
@keyframes indeterminate {
	0% {
		left: -35%;
		right: 100%; }
	60% {
		left: 100%;
		right: -90%; }
	100% {
		left: 100%;
		right: -90%; } }
@-webkit-keyframes indeterminate-short {
	0% {
		left: -200%;
		right: 100%; }
	60% {
		left: 107%;
		right: -8%; }
	100% {
		left: 107%;
		right: -8%; } }
@keyframes indeterminate-short {
	0% {
		left: -200%;
		right: 100%; }
	60% {
		left: 107%;
		right: -8%; }
	100% {
		left: 107%;
		right: -8%; } }

@keyframes snake-rotate {
	0%    { transform: rotate(0deg); }
	100%  { transform: rotate(360deg); }
}

/* Small devices */
@media (max-width: 768px) {
	.flex-channel-header {
		flex-direction: column;
	}
	.flex-wrap .margin-5 {
		margin: 5px 0;
	}
}

textarea {
	display: block;
	width: 100%;
	border: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.12);
    background: #fff no-repeat;
	background-image: linear-gradient(to bottom, rgb(0, 162, 209), rgb(0, 162, 209)), linear-gradient(to bottom, silver, silver);
	background-size: 0 2px, 100% 1px;
	background-position: 50% 100%, 50% 100%;
    transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
}
textarea:focus{
	background-size: 100% 2px, 100% 1px;
	outline: none;
}
/* TEXTAREA SCROLLBARS */
textarea::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
	background-color: #F5F5F5;
}
textarea::-webkit-scrollbar {
	width: 8px;
	background-color: #F5F5F5;
}
textarea::-webkit-scrollbar-thumb {
	background-color: rgb(0, 162, 209);
	background-image: -webkit-gradient(linear, 0 0, 0 100%,
	color-stop(.5, rgba(255, 255, 255, .2)),
	color-stop(.5, transparent), to(transparent));
}

/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTa-j2U0lmluP9RWlSytm3ho.woff2) format('woff2');
	unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTZX5f-9o1vgP2EXwfjgl7AY.woff2) format('woff2');
	unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTRWV49_lSm1NYrwo-zkhivY.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTaaRobkAwv3vxw3jMhVENGA.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTf8zf_FOSsgRmwsS7Aa9k2w.woff2) format('woff2');
	unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTT0LW-43aMEzIO6XUTLjad8.woff2) format('woff2');
	unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTegdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/K88pR3goAWT7BTt32Z01mxJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
	unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/RjgO7rYTmqiVp7vzi-Q5URJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
	unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/LWCjsQkB6EMdfHrEVqA1KRJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/xozscpT2726on7jbcb_pAhJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/59ZRklaO5bWGqF5A9baEERJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
	unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/u-WUoqrET9fUeobQW7jkRRJtnKITppOI_IvcXXDNrsc.woff2) format('woff2');
	unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3VtXRa8TVwTICgirnJhmVJw.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSq-j2U0lmluP9RWlSytm3ho.woff2) format('woff2');
	unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
}
/* cyrillic */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSpX5f-9o1vgP2EXwfjgl7AY.woff2) format('woff2');
	unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNShWV49_lSm1NYrwo-zkhivY.woff2) format('woff2');
	unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSqaRobkAwv3vxw3jMhVENGA.woff2) format('woff2');
	unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSv8zf_FOSsgRmwsS7Aa9k2w.woff2) format('woff2');
	unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSj0LW-43aMEzIO6XUTLjad8.woff2) format('woff2');
	unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(https://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSugdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}

/* BOX VIDEO ON AIR */
#onair-box {
  background: transparent;
  display: inline-block;
  justify-content: center;
  align-items: center;
}
#onair-box > svg {
  height: 12px;
  width: 18px;
/*   transform: scale(5); */
}
@media (max-width: 576px) {
#onair-box > svg  {
    height: 6px;
    width: 12px;
    }
}
@media (max-width: 768px) {
#onair-box > svg  {
    height: 10px;
    width: 16px;
    }
}
#onair-box > svg path#on-air-out {
  animation: on-air-out 2s infinite;
}
#onair-box > svg path#on-air-in {
  animation: on-air-in 2s infinite;
}
#onair-box > svg ellipse {
  transform-origin: 50% 50%;
  animation: on-air-circle 2s infinite;
}
@keyframes on-air-circle {
  0% {
    opacity: .1;
    transform: scale(1);
  }
  25%  { opacity: 1;
  transform: scale(2.4);}
  50%  { opacity: 1;}
  75%  { opacity: 1;
  transform: scale(1)}
  100% { opacity: .3; }
}
@keyframes on-air-in {
  0%   { opacity: .3; }
  25%  { opacity: .3; }
  50%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { opacity: .3; }
}
@keyframes on-air-out {
  0%   { opacity: .3; }
  50%  { opacity: .3; }
  75%  { opacity: 1; }
  100% { opacity: .3; }
}

/*PRICELIST*/
.content.content-pricing {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
}
.call-action-v1-box h3,.call-action-v1-box p {
    color: #fff;
}
