/*
Theme Name: Nirestream-Base
Author: Haiko
Description: CSS base for Nirestream sites
Version: 1.0
License: GNU General Public License v2.0
*/

/******************/
/** Generales    **/
/******************/

/** Html, Fonts & headers **/


:root {
    --typography-headers: "Poppins", sans-serif;
    --typography-content: "Open Sans", sans-serif;
}    

html {
  height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
	font: 12px/21px 'Arial', Arial;
	font-family: var(--typography-content);
	position: relative;
	margin: 0;
  	padding-bottom: 6rem;
  	min-height: 100%;
  	background: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Open Sans", Arial, sans serif;
	padding: 0;
	margin: 0;
	line-height: 1.1;
}

h1 {
	font-size: 1.3em;
}
h2 {
	font-size: 1.15em;
}
h3 {
	font-size: 1em;
}
h4 {
	font-size: .9em;
}
h5 {
	font-size: .8em;
}
h6 {
	font-size: .7em;
}

h2.title1{
	font-size: 19px;
    font-weight: 600;
    margin: 10px;	
}

h2.title1 i{
	font-size: 22px !important;
}

a {
    transition: all 0.1s ease-out 0s;
}

.microfont{
	font-size: 12px;
}

div.clear
{
    clear: both;
}

.nsbackground{
	background: #f5f5f5 !important;
}

.alert{
	font-weight: 600;
}	

.display-inline{
	display: inline;
}

.display-inline-block{
	display: inline-block;
}

.navbar-nav li a{
    font-weight:400;
	font-size: 1.1em;
}

.navbar{
    padding:7px 0;
}

/** Scaffolding **/

div.container {
    margin: 0 auto;
    width: 75%;
}


.divseparator{
	height:1px;
	margin: 20px auto;
	text-align: center;
	width: 100%;
	background: #ccc;
	box-shadow: 2px 2px 2px #bbb;
}

#content {
	background-color: #F5F5F5;
}

.inner{
    display: block;
    height: 100%;
    margin: 0 auto;
    position: relative;
    width: 80%;
    z-index: 0;
}


/** Structural **/

.w100{
	width: 100% !important;
}

.w80{
	width: 80%;
}


.container80 {
    margin: 0 auto;
    width: 80%;
}

.col-center{
    float: none;
    margin: 0 auto;
}



/** Utils **/

.centered {
    text-align: center;
}

.col-centered{
    float: none;
    margin: 0 auto;
}

.cols-centered {
    text-align:center;
    font-size:0;
}
.cols-centered > div {
    display: inline-block;
    float: none;
    text-align: center;
    vertical-align: top;
}

.inline{
	margin: 0 auto !important;
	text-align: center;
	width: 100%;
}

.inline >div{
	display: inline-block;
	float: none;
}

.img-rounded {
    border-radius: 5px;
    width: 90px;
    margin: 0px 20px;
}

.rounded{
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;	
}

.fullwidth{
	width:100%;
}

.md-margin{
	margin: 60px;
}

.clear {
	clear: both;
	width: 100%;
	display: block;
	font-size: 0;
	height: 0;
	line-height: 0;
}

img {
	border: 0;
}

*:active, *:focus {
	outline: 0;
}

.margin50tb{
	margin: 50px 0;
}

.m-bottom50{
	margin-bottom: 50px;
}

.m-top20{
	margin-top: 20px;
}

.m-top30{
	margin-top: 30px !important;
}

.m-top40{
	margin-top: 40px !important;
}

.m-bottom20{
	margin-bottom: 20px !important;
}

.m-bottom40{
	margin-bottom: 40px !important;
}

.m-lateral{
	margin: auto 10% !important;
}

.left{
	text-align: left;
}

.center {
    text-align: center;	
	width: 100%;
}
.center >div {
    display: inline-block;
}

i{
	padding: 0 12px;
}

.sm-font {
    font-size: 16px;
}

.columns2>div{
	display:inline-block;
	width:40%;
	vertical-align:top;
	margin: auto 10px
}

/** BUTTONS ****************/
/***************************/
.call2act{
	background: #fdd116 none repeat scroll 0 0;
    color: #000000;
    font-size: 15px;
    margin-top: 15px;
    padding: 6px 24px;
    transition: all 0.25s ease-out 0s;
	font-family: 'Open Sans';
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	font-weight: 600;
}

.call2act:hover{
	background: #222 !important;
	transition: 0.25s ease-out;
	text-decoration: none;
} 



/** HEADER *****************/
/***************************/
#header {
	position: relative;
	z-index: 1;
	height: auto;
	color: #bbbbbb;
	background: #fff;
}

#header .logo {
	display: block;
	left: 0px;
	height: 70px;
	margin: 6px auto;
	width: 80%;
	background-repeat: no-repeat;
	background-position: center;
}

#header .logo_der{
	margin-left: 20%; 
	max-height: 70px;
	right: 0%;
	left: auto;
	margin: 15px 0;
}

.inner{
	margin: 0 auto;
	height: 100%;
	width: 80%;
	display: block;
	position: relative;
	z-index: 0;
	min-height: 90px;
}



/** Header - iframe *******/
/**************************/
.header-iframe{
	background-color: #f5f5f5;
	font-size:1.5em;
	padding:20px 0 20px 20px;
}

.header-iframe i{
	font-size:1.8em;
}


/** MENU ***************/
/***********************/

.menuitem:hover{
	cursor: pointer;
}

.bloks div{
	margin-bottom: 20px;
}

/** TITLE ******************/
/***************************/

.title {
	font-weight: 600;
	
}


.title-nowrap{
	white-space: nowrap;
	font-size: 24px;
	clear: both;
}



/** DESCRIPTION ************/
/***************************/
.desctitle{
	margin: 25px;
	line-height: 1.4;
	text-align: center;
	font-size: 18px;
}

.titledesc{
	margin: 0 auto;
}	


/** LANGUAGE SELECTOR***/
/***********************/
.language-selector {
	text-align: right;
	top: 70%;
	position: relative;
	text-transform: uppercase;
	font-size: 1.3em;
	right: 15px;
}


.language-selector .separator {
    color:#fff; 
    font-weight:700;  
    margin:0; 
}

/** SEARCH ******************/
/****************************/
.searchbox{
	margin-bottom: 50px;
}

.searchbox .videoslist .title {
	font-size:15px;
}
.searchbox .videoslist .sm-font {
	font-size:14px;
}

.searchbox .event .eventtitle h3{
	font-size:14px !important;
}

.searchbox .event .fecha-emision{
	font-size:14px;
}

.searchbox .event .evento{
	font-size:15px;
}


.header-search{
	font-size: 1.2em;
}

.searchwrapper{
	width: 100%;
	background: transparent;
	clear: both;
	padding-bottom: 20px;
}
.searchbar{
	width: 50%;
	margin: 0 auto;
}


/** SECCIONES ***************/
/****************************/

section {
	font-family: var(--typography-content);
	padding: 30px 0; 
	margin:60px 0;
}

section >div{	
	margin: 15px 0;
	
}

section div{
	text-align: center;
	font-size: 20px;
}

section i {
	font-size: 42px;
}

section:nth-child(odd) {
   background-color: #f5f5f5;
}

section:nth-child(even) {
   background-color: #ffffff;
}


/* Titulo */
section#title{
	margin-bottom: 30px;
	padding: 0;
	
}

/* Descripcion */
section#description i{
	margin-bottom: 10px;
}

section#description .desc{
	margin-top: 25px;
}

/* Menu */
section#menu {
	padding:10px 0 15px 0;
	clear: both;
}
section#menu >div{
	padding:15px 0;
}

.menutopitem{
	font-weight: 600;
	font-size:1.25em;
}

.menutopitem{
	font-weight: 600;
	font-size:1.25em;
}

.profilemenuitem{
	font-weight: 400;
	padding-top: 2px !important;
	color: #ffffff;
}

/** TITULO EVENTO CABECERA **/
/****************************/
.top-header-title{
	font-family: var(--typography-headers);
    display: block;
    text-align:center;
    float:none;
	font-size:2.2em;
	font-weight:500;
	text-transform: uppercase;
	line-height: 1.3;	
	padding:26px 0 0 0;
}

/** VIDEOS GLOBAL ***********/
/****************************/
.videoicon{
	color: #f5f5f5;
	text-align: right;
	position: absolute;
	width:100%;
}

.videoicon i{
	margin: 10px 0;
}


/** FEATURED VIDEOS *********/
/****************************/

#featured-videos .title1{
	margin-bottom:-12px;
}

#featured-videos .widget-player{
	margin-top: 40px;
	margin-bottom: 0px;
}


/** FEATURED CATEGORIES******/
/****************************/

.featured-categories{
	margin-top:40px;
}

.featuredcategory{
	font-size: .95em;
	font-weight: 600;
}

.showmore{
	text-align: left;
	font-weight: 600;
	font-size:.7em;
}


.showmore a:hover{
	color: #222;
	text-decoration: none;
}

#featured-categories .widget-player{
	margin-bottom: 60px;
}

/** LIVE!!!! ********************/
/********************************/

.live{
	background: #f5f5f5;
}

.live .container{
	width:100%;
}

.headerlive .title{
	margin: 14px 0 !important;
	padding: 0;
	font-size:18px;
	background: #f5f5f5;
}

.headerlive section{
	background: #f5f5f5 !important;
}


.live section#title{
	padding-bottom:0;
}

.live section{
	background-color: #f5f5f5; 
}

.livesidebar{
	margin-bottom: 90px;
} 

/** custom agenda *******************/
.live .agenda_info h6{
    display: none;
}

.live .agenda_info h4{
    font-size: 16px;
}

.live .agenda_info .ponente_foto{
    display: none;
}
    
.live .agenda_info .ponente_text .sm-font{
    font-size: 14px;
}

.live .agenda_row .img-rounded{
     display: none;
}


/** LENGUAJE SIGNOS ********/
/***************************/
.signoswrapper{
	text-align: right;
	height: 21px;
}

.signoswrapper a{
	font-size: 13px;
	color: #666;	
}

.signoswrapper i{
	padding: 0 2px;	
}

/*******************************/

/** SPONSORS ********************/
/********************************/

.sponsor{
	margin:15px 0;	
	vertical-align: middle !important;
}

.sponsor img{
	width: 80%;	
}


/** PAGINAS ESTATICAS *******/
/****************************/

#content_static section div{
	font-size: inherit;
	text-align: inherit;
}

#content_static {
	width:90%;
	margin: auto 20px;
}


/** TERMS********************/
/****************************/

input#terms{
	height:auto;	
}

.terms{
	font-size: 13px;
	padding:0 6px;
}

.terms a{
	text-decoration: underline;

}


/** LIVES EVENTS LIST*******/
/****************************/
.lives{
	margin-bottom: 25px;
	/*margin-top: 40px;*/
	position: relative;
    z-index: 999;
}

.lives a{
	font-size: 13px;	
}

.lives i{
	color: #f5f5f5;
	font-size:18px !important;
}

.eventlives{
	position: relative;
	z-index: 9999;	
}

.liveplayer {
	position:relative;
	z-index: 99;
}


/** CHECKCONNECTION *********/
/****************************/




/** HELPER LIVE**************/
/****************************/
.helperlive{
    color:#444;
	font-size: 18px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	padding:10px;	
	font-weight: 400;
	margin:5px 0;
	text-align: justify;
}

.helperlive .info{
	display: table-cell;
	vertical-align: middle;
}

.helperlive .helpertext{
	display: table-cell;
	vertical-align: middle;	
}


.mainlive .alert{
	border:1px solid #FF0000;
	font-weight:600;
	color: #FF0000;
}

.mainlive .alert i{
	color: #FF0000;	
}


/** AUTHENTICATED NEEDED ***************/
/***************************************/

.authenticatedneeded{
	background-color: #F6F6F6;
	padding: 20px 0;
}


/** MENSAJE (NO PARAM) *****************/
/***************************************/

#mensaje i{
	font-size: 60px !important;
}



/** CAPTACIÓN **********/
/***********************/

.captacion{
	font-size: .9em;
	font-weight: 600;
}

#captacion_button{
	font-size: .8em;
	padding: 8px 16px;
}



/** COUNTDOWN***********/
/***********************/
.countdown {
	margin:40px auto;
	clear: both;	
}

.countdown_element{
	text-align: center;
}

.countdoun_table{
	background: transparent !important;
}



/** PONENTES  **************/
/***************************/
.widget-ponente{
	margin:30px 15px;	
}

.widget-ponente .descripcion{
	font-size: .7em; 
	position: absolute;
	top:0;
	left:0;
	
}

.widget-ponente .img{
	margin: 0px auto;
	/*display: table;*/
	background-position: center center;
	background-size: cover;	
	width:160px;
	height:160px;
	text-align:center;
}

.widget-ponente .ponente-thumbnail{
	position: relative; 	
}

.widget-ponente .ponente-thumbnail i{
	font-size: 8em; 		
}

.widget-ponente .info i{
	font-size: 1.4em; 	
	padding-left:2px;
	cursor:pointer;
}

.widget-ponente .url, .ponente_text .url{
	text-decoration: underline;		
}

.widget-ponente .url a, .ponente_text .url a{
	font-size: 13px !important;		
	color: #777 !important;
	font-weight: normal;
}

.widget-ponente .url a:hover, .ponente_text .url a:hover{
	color:#000 !important;
}

.widget-ponente .tooltip-inner{
	font-size: 1em !important; 	
}

.ponente-footer h3{
	font-weight: bold;
	margin:10px auto 5px auto;
}

.ponente-footer h4{
	margin:5px auto;
}

h4.url i{	
	padding-left:4px !important;
	font-size: 13px !important;
}



/** INSTAGRAM **************/
/***************************/

#instafeed img{
	margin: 5px;
}



/** FOOTER GENERAL **************/
/********************************/
  
#footer{  
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}  

.footer_plantilla li{
	display: inline;
	margin: 0 5px;
}

.footer_plantilla li a{
	color:#888 !important;
	font-size: .9em;
}

.logo_nirestream{
	margin:0;
	color: #aaaaaa;
	text-align:center;
	vertical-align:middle;
}

.logo_nirestream img{
	width: 80px;
}


.footer_plantilla{
    background-color:#000;
    bottom: 0;
    left: 0;
    font-size: 0.9em;
    right: 0;
    padding: 0.5em;
    display: table;
    width: 100%;
    color: #fff;
}

/** FOOTER CANAL ****************/
/********************************/

.footer_channel{
	width: 100%;
	background-color: #222;
	padding: 10px 0;
	display: table;
}

.footer_channel ul{
	margin: 2px 0;
}


.footer_channel .links li{
	display: inline;
	font-size: .9em;
	margin:0 3px;
}

.footer_channel .links li a{
	color: #ffffff;
}

a.nt-icon {
    background-color: #000000 !important;
    background-position: 0 0;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.35em;
    height: 24px;
    padding: 0.25em 0.5em;
    text-align: center;
    text-decoration: none;
    width: 24px;
}
a.nt-icon i {
    display: inherit;
    padding: 0;
}
a.nt-icon:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
}
a.nt-icon-color {
    background-position: 0 -24px;
    display: inline-block;
    height: 24px;
    margin: 0;
    text-align: left;
    text-decoration: none;
    text-indent: -9999px;
    width: 24px;
}
a.nt-icon-color:hover {
}
a.facebook {
    background-color: #3765a3;
    padding: 0.3em 0.75em;
}
a.twitter {
    background-color: #5ea9dd;
}
a.linkedin {
    background-color: #0177b5;
}
a.google, a.youtube {
    background-color: #e52c27;
}
a.instagram {
    background-color: #2a5b83;
}



/** BACK-TO-TOP ************/
/***************************/

.back-to-top{
	z-index: 999;
}

.back-to-top i{
	font-size: 44px !important;
}

/** MESSAGE* ***********/
/***********************/

.messages{
	padding:6px;
	font-size: 15px;
	margin-bottom:20px;
}

/** CHANNEL REGISTRO/LOGIN ****/
/******************************/
.channel-register{
	cursor:  pointer;
	font-weight:600;
	color:white !important;
	
}
.channel-register:hover{
	/*color: #222 !important;*/
	transition: all 0.30s ease-out 0s;
}

#accessbox{
	margin:0 auto;
	width:60%;
	max-width: 700px;
	background: transparent;
	margin-top: 30px;
	padding-top:10px;
}

#accessbox div.container{	
	width:80%;
}

#accessbox i{
	font-size: 1.4em;
}

#accessbox .alert{
	font-size:15px;
}

#accessbox #tabs ul{
	padding:0;
}

#accessbox #tabs li{
	padding:8px 0;
	margin:0;
	width:50%;
	text-align: center;
	border: none;

}

#accessbox #tabs li a{
	margin:0;
	font-size: 16px;
	color:#666;
}

#accessbox #tabs li a:focus{
	outline: none;
}

#accessbox .titulo{
	font-size: 1em;
}

#accessbox button{
	padding: 6px 24px;
	font-size: .9em;
	font-weight: normal;
}



/** REGISTRO/LOGIN ***********/
/******************************/

div.border{
	border-top:1px dotted #ccc;
	padding-top: 40px;
	margin:auto;	
	width: 50%;
}

.welcomewrapper{
	/*margin: 5px 0;*/
}

.welcome{
	color:white;
	/*color: #222 !important;*/
}

.welcome ul{
	 list-style-type: none;
	 margin-bottom: 0px;
}

.welcome li{
	float: left;
	border-left: 1px solid white;
	margin-right:10px;
	
}


.welcome a{
	
	color:white;

}

.welcome i{
	/*color: #666;*/
}


.welcomewrapper i{
	font-size:1.3em;
	padding-right:2px;
}

.closesession > i{
	font-size:1.4em !important;
	color: white;
	padding:0;
}	

.closesession i:hover{
	/*color: #222;*/
	color: red;
}




div.login{
	margin-bottom:10px;
	margin-top: 30px;
}

div.register{
	margin-bottom:10px;
	margin-top: 30px;
}

.form_registro input, .form_login input{
	font-size: 20px;
    height: 50px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-family: 'Open Sans';
	padding-left: 12px !important;
	margin: 8px;
	border: 1px solid #999 !important;
}

.form_registro i,.form_login i{
	font-size: 32px !important;
}

.login .titulo, .register .titulo{
	margin: 10px auto;	
}

.suscription{
	margin:16px 0;
}

.suscription button{
	font-size: .9em;
}

.suscription i{
	font-size: 1.15em;
}

#inscription:hover{
	background: #222;
	transition: all 0.25s ease-out 0s;
	color: #eee !important;
}

/** RESETPASS **********/
/***********************/
.resetpassword{
	margin: 0 auto;
}


.resetpassword .header{
	font-size:22px;
	font-weight:600;
	margin:40px 0;
}

.resetpassword .subheader{
	font-size:16px;
	margin:10px 0;	
}

.resetpassword .form-control{
	height: 42px;
	font-size:16px;
}

.resetpassword .call2act{
	width: 250px;
	margin-top: 0;
}

/** HOME-EVENTOS *******/
/***********************/

.event{
	margin: 20px 0;
	position: relative;
	box-shadow: 2px 2px 2px #888888;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;	
    overflow: hidden;
    background-color: #f1f1f1; 
}


.event .eventicon i{
	color: #fff;
	position: absolute;
	z-index:999;
	top:10px;
	right:10px;
	font-size:1em;
	
}

.event .content{
	position: absolute;
	bottom:20px;
	padding: 20px;	
	text-shadow: 1px 1px #000;
	color: #fff;
	width: 100%;
}

.event .evento{ 
	padding: 10px 20px;
	color: #ffffff;
	font-size: 17px;
	text-decoration: none  !important;
	position: absolute;
	top:0;
	width: 100%;
	min-width: 300px;
}


.event .fecha-emision{
	padding: 5px;
	color: #ffffff;
	font-size: 16px;	
	position: absolute;
	right:0;
	bottom:0;
	color: #fff;
	opacity: .9;
}

.event .fecha-emision i{
	font-size: 20px !important;	

}

.event .author{
	text-align: left;	
	font-size: 18px;
	margin: 5px 0;
}

.event .eventtitle{
	text-align: left;
}

.event .ponente{
	font-size: .75em;
}

.event .ponente i{
	font-size: 20px !important;
    padding-left: 0;
}
.eventtitle h3{
	font-size:17px !important;
	font-weight: 600;
}


/** ACCESS SECTION *****/
/***********************/

section#access{
	display: none;
}


/** ACCESO RESTRINGIDO ****/
/**************************/

.restricted{
	padding: 16px 20px 0px 20px;
	margin:30px auto;
	font-weight: bold;
	display: table;
	border:1px solid #b81231;
	font-size: 16px;
	color: #b81231 !important;
	-webkit-box-shadow: 1px 1px 4px -1px rgba(0,0,0,0.71);
	-moz-box-shadow: 1px 1px 4px -1px rgba(0,0,0,0.71);
	box-shadow: 1px 1px 4px -1px rgba(0,0,0,0.71);
}


.access i{
	font-size: 24px;	
	padding: 0 5px 0 5px;	
}

.access:hover{
	background: #222;
	color: #eee !important;
	text-decoration: none;
	transition: all 0.25s ease-out 0s;
	border:1px solid #222;
	cursor: pointer;
}


/** VIDEOTECA **********/
/***********************/

a.videolisted{
	outline: 0;
}

.videolisted{
	position:relative;
	display: block; 
	background-size:cover;
	background-position:center center;
	background-repeat: no-repeat;	
	box-shadow: 2px 2px 2px #888;
	margin-bottom: 7px;
}


.videolisted:hover{
	box-shadow: 9px 9px 9px #888;		
}

.videos_fecha_title{
	margin:0 auto 30px auto !important;
}

.videos_fecha_title i{
	font-size: 22px !important;
}

.videoimagelisted{
	width:100%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}


ul#videoteca{
	border-bottom:1px solid #E8E8E8;
	box-shadow: 3px 3px 3px #E8E8E8;
	margin-bottom: 40px;
}

ul#videoteca li {
	margin: 0 15px;
	display: table-cell;
	height: 50px;
}

ul#videoteca li a{
	font-size: 20px;
	font-weight: 600;
	border: none;
	color: #555;
	outline: none;
	line-height: 1;
}

ul#videoteca li.active,ul#videoteca li:hover{
	border-bottom: 4px solid #CC181E;
	transition: all 0.1s ease 0s;
}

ul#videoteca li a:hover{
	background-color: transparent;
}



ul#videoteca li.search {
	border-bottom: none !important;

}

ul#videoteca li.search i{
	padding-top: 6px;
	font-size: 1.5em;
	margin-top: 6px;
	color: #c8c8c8;
	
}

ul#videoteca li.search input{
	width: 300px;
	margin-top: 6px;
	font-size: 1.2em;
	
}
div.widget-player h2,
div.videoteca h2{
	margin: 60px 0 40px 0;	
	font-size: 20px;
	font-weight: 600;
}

div.widget-player span,
div.videolisted span{
	text-shadow: 1px 1px #000;
	padding:2px 3px 2px 0px;
	position:absolute;
	color:#fff;
	opacity: 0.8;
	background: #555;	
}

div.videolisted i{
	padding-right: 15px;
	font-size: 18px;
}

.videoteca .fa-clock-o{
	font-size: 18px !important;
}

.bseparator{
	border-bottom: 1px dotted #222;
	margin-bottom: 30px;
}

span.ponente{
	background: transparent !important;
	text-shadow: none !important;
	color: #fff;
	display: block;
}

.videofooter p{
	margin-bottom:14px;
}


/* Categorias */
.categories{
	width: 95%;
	text-align: left;
}

.categories .call2act{
	font-size: 1.25em;
	font-weight: 600;
	/*padding: 10px 15px;*/
}

#categorias .all{
	font-size: .9em;
}


/**************/
.video-list{
	margin: 0 50px;
}

.jwpreview{
	opacity: .85 !important;
	
}	


/** DETALLE VIDEO - ******/
/*************************/

.video-title{
	font-size: 1.8em;
	font-weight: 600;
	margin: 20px 0;
}

.videocontainer{
	margin:0 auto;
	width:100%;
	padding-top:12px;
}

.playerwrapper{
	margin-bottom: 25px;
}

.jwplayer{
	width: 100% !important;
}

.jwplayer{
	width: 100% !important;
}

.jw-rightclick{
	/*display:none !important;*/	
}

.sidebar{
	background: #bbb;
	margin-bottom: 30px;
}

.ponentes_footer{
	text-align: center;	
}

.ponentes_footer i{
	margin: 0;	
	padding:  0 5px 0 0;
	font-size: 1.2em;
		
}

.ponentes_footer span.ponente{
	color:#555;	
	font-size: 1.5em;
}

.videodetail_components{
	position: relative;
	opacity: 1;
}

.videodetail_footer{
	width:100%;	
	margin-bottom: 90px;
}

.videodetail_footer .title{
	font-weight: 600;
	font-size: 18px;	
	margin-bottom: 5px !important;
	line-height: 1.2;
}

.videodetail_footer .hours{
   	color: #777;
    font-size: 13px;
    font-weight: 400;
    padding-left: 5px;
}

.videodetail_footer .descwrapper{
	display: table;

}


.videodetail_footer .imagen{
	display: table-cell;
	vertical-align: top;	
}

.videodetail_footer img{
	width: 90px;	
	max-height:200px;
	margin-right:10px;
	font-size:16px;
}

.videodetail_footer .ponenteswrapper{
	background: #ffffff;
	margin-top:8px;
	padding: 2px 10px 2px 6px;
}

.videodetail_footer .infowrapper{
	margin: 5px 0 10px 0;
    text-align: left;
}    

.ponenteswrapper .name{
	height:15px;
	font-size: .8em;
	font-size: 15px;
	
}

.ponenteswrapper .name i{
    font-size: 15px;
    padding:0 2px;
    cursor: pointer;
}

.ponenteswrapper .cargo{
    color: #888;
    font-size: 13px;
    line-height: 1.2;
    margin: 5px 0;
}

.ponenteswrapper .url{
    font-size: 12px;
    margin: 0 5px;
}

.ponenteswrapper .url i{
    font-size: 13px;
    padding:0 2px;
}

.ponenteswrapper .ponente_foto{
	width: 50px;
	height: 50px;
	
}

.ponenteswrapper i{
	font-size: 42px;
	color: #555;
}
    

.videodetail_footer .desc{
	display: table-cell;
	vertical-align: top;
	font-size: 14px;	
	text-align: justify;
	line-height:1.2;
}

.videodetail_footer .desc p{
	margin-bottom: 2px;
}

span.videodetail_date{
	left: 10%;
	bottom: 6px;
	background: #555 none repeat scroll 0 0;
    color: #fff;
    opacity: 0.8;
    padding: 6px;
    position: absolute;
    text-shadow: 1px 1px #000;
	font-size: 16px;
}

span.videodetail_duration{
	right: 10%;
	bottom: 6px;
	background: #555 none repeat scroll 0 0;
    color: #fff;
    opacity: 0.8;
    padding: 6px 6px 6px 0;
    position: absolute;
    text-shadow: 1px 1px #000;
	font-size: 16px;
}

p.videodetail_ponentes{
	float: none;
    margin: 10px auto;
	width: 80%;
	font-weight: normal;
	font-size: 18px;
}

p.videodetail_ponentes i{
	padding-left: 0;
}

.player-videodetail{
	
}


/** Extra content ******/
/***********************/

.extraswrapper{	
	text-align: left;
	display: block;
	background: #fff;
}

.extraswrapper .header{
	font-size: 14px;
    font-weight: 600;
    padding: 8px 0 0 12px;	
    margin-bottom:0px;
}


.extraswrapper ul{	
	padding: 5px 5px;
}

.extraswrapper li{	
	list-style: none;
}

.extraswrapper i{	
	font-size: 15px;
	padding-right: 5px;
}

.extraswrapper a{	
	font-size: 12px;
}



/** WIDGETS & WIDGET PLAYER ****/
/*******************************/


.widget {
    margin-bottom: 20px;
}

.widget-content {
    background-color: #f6f8fa;
}

.widget-player {
    margin-bottom: 80px;
    padding-bottom: 40px;
    padding-left: 0;
    position: relative;
	padding: 0 5px;
}

.widget-player p{
    padding-bottom: 4px;
}

.widget-player .title{
	font-weight: 600;
	text-align: left;
	font-size: 18px;
	width: 100%;
	color: #222;
	margin: 0px 0px 6px 0px;
}

.widget-player .date{
	padding: 6px;
}

.widget-player .ponente{
	font-size: 13px;
	text-align: left;
	color: #333;
	font-weight: 600;
	
}
.widget-player .ponente i{
	padding: 0 5px 0 0;
	font-size: 16px !important;
}

.widget-player .ponentes{
	padding:0 !important;
	margin:0 !important;
	
}

.widget-player .ponentes span{
	position: relative;	
	line-height: 1.2;
}

.widget-player .falda{
	width: 100%;
	background: #888;

}

.widget-header-container {
    background-color: #3a6861;
    color: #f9f9f9;
    width: 100%;
}

.widget-header {
    display: table-cell;
    font-size: 1.2em;
    font-weight: bold;
    height: 30px;
    padding: 10px 20px;
    vertical-align: middle;
}

.widget-header-subtitle {
    font-size: 1.1em;
    font-style: italic;
    padding: 0 20px 5px;
}



/*** Facebook widget ***/
.fb_iframe_widget{
	display: block !important;
	
}

/** Questions ****************/

.form_preguntas{
	z-index:5;
	margin: 0px 0 15px 0;
	border: 1px solid #ccc;
}

.form_preguntas .header{
	margin-bottom: 8px;
	font-size: 17px;
	font-weight: 700;
}



.form_preguntas input {
	font-size: 17px;
    height: 40px;
	-webkit-border-radius: 2px !important;
	-moz-border-radius: 2px !important;
	border-radius: 2px !important;
	font-family: 'Open Sans';
	padding-left: 12px !important;
}

.form_preguntas textarea {
	font-size: 17px;
    -webkit-border-radius: 2px !important;
	-moz-border-radius: 2px !important;
	border-radius: 2px !important;
	font-family: 'Open Sans';
	padding-left: 12px !important;
}

#modalquestion p{
	font-size: 16px;
}


/** Widget HTML ****************/

.widget-html{
	line-height: 28px;
	text-align: justify;
	font-size: 14px;
	width: 92%;
	margin: 30px auto;	
}

/** Related Videos          ****/
/*******************************/
.relatedwrapper{
	background: #eee;
}

.related{
	margin: 8px 0;	
}

.related_image_wrapper{
	padding-right:5px;
}


.related_title_wrapper{
	padding-left:5px;
}

.related a .title{
	font-size: 12px !important;
	color:#333;
	display: inline-block;
	margin:0;
	padding:0;
}

.related a .title:hover{
	color: #167ac6;
}

.related .time{
	font-size: 11px;	
	padding:0 3px;
	margin:0 1px 1px 0;
	background: #444;
}

.related .ponente{
	font-size: 11px;		
	color:#555;
	margin:0;
	padding:0;
}

.related .ponente i{
	font-size: 12px !important;	
}

/** Youtube *****/

section.youtube div.container{
    position: relative;
    padding-bottom: 40.95%;
	padding-top: 25px;
	height: 0;
}

section.youtube div.container iframe.video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/** AGENDA* ****************/
/***************************/

.ponente_foto{
	margin: 5px;
	display: block;
	width:50px;
	height:50px;
	background-position:center;

	background-size:cover;
}

.ponente_icon{
	font-size: 36px !important;
}

.agenda_icon{
	font-size: 75px !important;
	color: #888;
	margin-right: 15px;

}


.agenda_subdiv{
 	margin: 0 25px;	
}
.agenda_div{
	margin: 1em;
}
.agenda_div h5{
 	margin: 8px;
	font-weight: 600;
	font-size:20px;
}
.agenda_info{
	text-align: left;
	margin: 18px 0;
}

.agenda_info h4{
	margin: 0px 0px 8px 0px ;
	font-size: 19px;
	font-weight: 600;
}
.agenda_info h6{
  	margin: 0px 0px 8px 0px ;
	line-height: normal;
}
.agenda_list{
  font-family: 'Open Sans', sans-serif;
  text-transform: none;
}

.ponente_thumbnail{
	display:table-cell;
	vertical-align: middle;
	padding-right: 10px;
}	

.ponente_text{
	display:table-cell;
	vertical-align: middle;
	width:100%;
}

.ponente_text i{
	font-size: 18px !important; 	
	padding-left:0px;
	padding-right:3fdcfddcdecxdepx;
	cursor:pointer;
	
}

ul.agenda_list h1{
	color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

ul.agenda_list li .extra{
	font-size: 14px ;
	text-align: left;	
	padding: 3px !important;	
}

ul.agenda_list .extra i{
	font-size: 16px !important;
	color: red;
}

ul.agenda_list li .extra a {
	color: #666;	
}

.agenda_info .tooltip-inner{
	font-size: 1em !important; 	
}

.addtocalendar .tooltip-inner{
	font-size: 1.2em !important; 	
}

.addtocalendar i{
	color:#666 !important; 	
	font-size:1.5em !important;
}

.addtocalendar i:hover{
	color:#222 !important; 	
}

.add_event i{
	font-size:2em !important;
	color:#fff !important; 	
}

.add_event i:hover{
	color:#fff !important; 	
}

.ponente_text div{
	text-align: left;
}	

ul .extras{
	padding-left: 0;
	margin: 5px 0;
}


#agenda i{
	font-size: 28px;
	
}

.extra-content{	
}

.extra-content li{	
	list-style: none;
	font-size: 1.3em;
}


/**
 * AddToCalendar Icon Style
 * http://addtocalendar.com
 */

/* Base */

.addtocalendar var{
    display: none;
}

.addtocalendar {
    position: relative;
    display: inline-block;
    background: transparent!important;
}

.atcb-link {
    display: block;
    outline: none !important;
    cursor: pointer;
}

.atcb-link:focus~ul,
.atcb-link:active~ul,
.atcb-list:hover{
    visibility:visible;
}

.atcb-list {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 170px;
    z-index: 900;
}


ul.atcb-list li.atcb-item {
    padding: 5px !important;
	line-height: normal;
	font-size:15px;
}

.atcb-list,
.atcb-item
{
    list-style: none;
    margin: 0;
    padding: 0 !important;
    background: #fff;
	
}

.atcb-item {
    float: none;
    text-align: left;
}

.atcb-item-link
{
    text-decoration: none;
    outline: none;
    display: block;
}

.atcb-item.hover,
.atcb-item:hover {
    position: relative;
    z-index: 900;
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

/***********************/

/** PPV ****************/
/***********************/

.ppv_select_item{
	font-size: 16px;
}


.paymentsterms div{
	border-top: 1px solid silver;
	padding: 20px 0;
	font-size: 1em;
}

.stripeButton:hover{
	background: #286090;	
}

.ppvitembox{
	margin: 40px 0;
}


.ppvitembox .item-photo img{
	width:100%;			
}

.ppvitem i{
	padding-left:0;
	font-size: 1.2em;
}

#suscriptions{
}

.product-chooser-item i{
	padding:0 4px;
}

div.product-chooser div.product-chooser-item{
    padding: 11px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-bottom: 50px;
    margin-left: 10px;
    margin-right: 10px;
    color: #222;
    height: 320px;
    overflow: hidden;    
    background: #fafafa;        
}

div.product-chooser.disabled div.product-chooser-item{
	zoom: 1;
	filter: alpha(opacity=60);
	opacity: 0.6;
	cursor: default;
}


div.product-chooser div.product-chooser-item:hover{
	border: 4px solid #7f1a1e;
	background: #f5f5f5;
	padding: 8px;
}


/*
.upper-menu{
	background-color: #888;
	border-top: 1px solid #888;
	margin-bottom:30px;
	padding: 5px;
	
}
*/


div.product-chooser div.product-chooser-item img{
	padding: 0;
}

div.product-chooser div.product-chooser-item span.title{
	display: block;
	margin: 10px 0 5px 0;
	font-weight: bold;
	font-size: 17px;
	height: 50px;
}

div.product-chooser div.product-chooser-item span.price{
	display: block;
	margin: 12px;
	font-weight: 700;
	font-size: 26px;
}

div.product-chooser div.product-chooser-item div.description{
	font-size: 15px;
	font-weight: normal;
	text-align: justify;
	height: 140px;
}

div.product-chooser div.product-chooser-item input{
	position: absolute;
	left: 0;
	top: 0;
	visibility:hidden;
}


.suscribe_ppv{
	padding:30px;
}

.btn_suscribe_channel{
	margin:0;
	background-color: #32325d;
	font-weight: 600;
	padding: 10px 0;
	font-size: 16px;
}

.nav .btn_suscribe_channel{
	margin:0;
	background-color: #32325d;
	font-weight: 600;
	padding: 2px 10px;
	font-size: 13px;
}

.front-menu{
	float: left;
	width: 100%;
	margin-bottom: 10px;
}

.navbar-nav > li > a, .navbar-brand {
    padding-top:4px !important; 
    padding-bottom:0 !important;
    height: 28px;
}
.navbar {
	min-height:28px !important;
	border-radius: 0px;
	border:0px solid transparent;
	border-top: 1px solid #efe4e4;
	
	
}

.navbar-default .navbar-nav > li > a > i{
	padding-right:5px;
}

.navbar-default .navbar-nav > li > a{
	color:white;
}
.navbar-default .navbar-nav > li > a:hover{
	color:#efe4e4;
}

.navbar-default .navbar-nav > li > a:visited{
	color:white
}

.navbar-default .navbar-brand{
	color:white;
}

.navbar-default .navbar-brand:hover{
	color:#efe4e4;
}

.navbar-default i{	
	font-size:1em;
	
}
.navbar-brand > i{
	font-size:1.2em;
}

/** CLIENT TOP MENU ****/
/***********************/
.navbar-right li a{
	font-weight: 400;
	font-size:1.05em;
}

.navbar-right{
	font-size:1.05em;
}

/** CLIENT PROFILE PAGE ****/
/***************************/
.profile{
	font-size:1.2em;
}

.profile h1{
	font-weight: 600;
}

.profile h2{
	font-size:1em;
	font-weight: 700;

}
.profile .page-header{
	border-bottom: 2px solid #ddd;	
}

.form_changepass input{
	margin-top:0;
	padding: 4px 12px;
	margin-right: 30px;
}
.form_changepass .form-group{
	margin-right: 10px;
}

.form_changepass .call2act{
	font-size: .95em;
}


