/* Custom styles used for all pages */
/* New Variables Section. Will try to make all colors changeable at top of this page, using the following variables, as well as a few other options. */

:root {
	--main-html-bg-color: white;					/* Change this to "background-color: transparent !important;" if using an image as the background */
	--main-body-bg-color: transparent;
	--main-content-bg-color: #FAFBFC;			/* This is currently the background color. It is on top of the html and the body elements, so takes precedence. */

	--main-font-color: black;
	--secondary-font-color: white;
	--main-title-color: black;
	--main-title-shadow-color: white;
	--main-subtitle-color: white;

	--shadow-banner-color: #0c416700;			/* This is giving the banner a shaded look. The final 7th and 8th digits determine the opacity (alpha) of the over-layed color. */

	--main-button-bg-color: #44af2b;				/* Register buttons and Launch buttons */
	--button-font-color: white;
	--main-button-bg-color-hover: #081b33;
	--button-font-color-hover: white;
	--main-button-shadow-color: #305e7e80;





	--footer-bg-color: #333333;

	--footer-main-link-color: #4A7090;
	--footer-second-link-color: #1675b9;
	--footer-main-link-hover-color: #041622;
	--footer-second-link-hover-color: #b6cedd;

	--presenter-name-color: #a32035;

	--player-footer-bg-color: #4e9add;				/* Changes the color of the social media bar on the player page */
	--player-footer-text-color: white;
	--player-footer-branding-link-color: #00536d;


	--show-banner: block;						/* Change this to "none;" if banner isn't needed */
	--show-header: none;						/* Change this to "block;" if header bar is needed */
}


/*********************************************** Top Level Section ***********************************************/
html {
	background-color: var(--main-html-bg-color);
}
body {
	background-color: var(--main-body-bg-color);
	color: var(--main-font-color);
	display: block;
	font-family: "Poppins",sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#ContentArea {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background-color: #FFFFFF;
	padding-top: 30px;
}
#container {
	background: unset;
	border: unset;
	width: 100%;
	box-shadow: unset;
	-moz-box-shadow: unset;
	-webkit-box-shadow: unset;
	margin: 0 auto;
}
#branding {
	background-color: transparent;
	width: 100%;
	padding: 0;
	font-weight: bold;
	text-align: center;
	margin-top: auto;
	margin-bottom: 0;
}
/*********************************************** End Top Level Section ***********************************************/

/*********************************************** Banner Section ***********************************************/
#banner {
	display: var(--show-banner);
        text-align:center;
	position: relative;
	margin-bottom: 48px;
}
#banner::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--shadow-banner-color);
}
#banner > div {
	padding-right: 0;
	text-align: center;
}
#banner > img {
	    width: 100%;
    max-width: 500px;
}
/* Title stuff is in this section because titles are on top of banner in this template. */
.title {
	color: var(--main-title-color);
	text-align: center;
        font-weight: normal;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-shadow: 0px 0px 2px var(--main-title-shadow-color), 0px 0px 2px var(--main-title-shadow-color);
	width: 80%;
}
.title > h1 {
	font-weight: 500;
	font-size: calc(20px + 2vw);
}
.subtitle {
	color: var(--main-subtitle-color);
        font-weight: normal;
	margin-bottom: 40px;
}
/*********************************************** End Banner Section ***********************************************/

#header {
	display: var(--show-header);
	background-image: none;
	box-shadow: none;
}
#content p {
	padding: 0;
	margin-bottom: 1.3333rem;
}
.webcast_closed {
   font-weight:normal;
	    padding: 5px 15px;
}

/*********************************************** Footer Section ***********************************************/
#footer-container {
	padding: 0;
}
#footer {
	background-image: none;
	box-shadow: none;
	background-color: transparent;
	border: none;
}
#footer2 {
	background-image: none;
	box-shadow: none;
	background-color: var(--footer-bg-color);
	padding: 25px 0;
	border: none;
}
#footer2 {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
}
#footer-right {
	width: 100%;
	font-size: 13px;
	color: #fff;
	font-weight: 400;
}
#footer-left {
	color: #333333;
	font-weight: 400;
	margin-bottom: 10px;
	width: 100%;
}
#footer a {
	color: #0C4167;
}
#footer2 a {
	color: #1675b9;
}
#footer a:hover {
	color: #041622;
}
#footer2 a:hover {
	color: #b6cedd;
}
.branding_name {
	margin-right: 3px;
}
.branding_name, .branding_date {
	display: inline-block;
}
@media screen and (max-width: 1091px) {
	#footer-right, #footer-left {
		float: none;
		text-align: center;
	}
}
@media screen and (max-width: 700px) {
	#branding {
		font-size: 2vw;
	}
}
/*********************************************** End Footer Section ***********************************************/

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: local(''),
		url('https://www.meetview.com/tdi20240307/resources//Poppins-Normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	src: local(''),
		url('https://www.meetview.com/tdi20240307/resources//Poppins-Medium.woff2') format('woff2');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: local(''),
		url('https://www.meetview.com/tdi20240307/resources//Poppins-Bold.woff2') format('woff2');
}

#ChooseLanguageHolder {
	/*display: none;*/
}
#ChooseLanguageHolder {
	position: fixed !important;
	padding: 5px 10px;
	border-radius: 10px;
	background-color: white;
	border: 2px solid black;
	top: 2px;
}
#ChooseLanguageHolder > label { }
#ChooseLanguageHolder > select {
	width: 74px;
	border: none;
	border-bottom: 1px solid black;
}
html[lang="fr"] #ChooseLanguageHolder > select {
	width: 85px;
}
#cover {
	position: fixed;
	height: 100%;
	width: 100%;
	top:0;
	left: 0;
	background: var(--main-content-bg-color);
	z-index: 9999;
}

/* Custom styles for player page */
.bar_styling_top {
	-webkit-box-shadow: none;
}
.bar_styling_bottom {
	-webkit-box-shadow: none;
}



.icon_player_footer {
	background-color:  var(--player-footer-bg-color);
}
.icon_player_footer_text {
	color: var(--player-footer-text-color);
}
.icon_player_footer  > .icon_player_footer_text > .branding_name > a {
	color: var(--player-footer-branding-link-color);
}
.bar_background_image {
	background-image: none;
}
.title_label {
	margin: 0px;
}
#IconPlayerFooter {
	position: relative;  /*setting this to fixed may help some designs ymmv*/
	width: 100%;
	bottom: 0;
	/* New - 08-27-2020 */
	margin-top: auto;
}
.icon_player_title {
        display: none;  /*Remove me to display webcast title on the player page*/
}
#IconPlayerLogo {
	position: relative;
}
#IconPlayerHeaderControls {
	background-color: unset;
}
/* New - 08-27-2020 */
#TDTopContainerBars {
	display: flex;
	flex-wrap: wrap;
        align-content:flex-start;
       overflow-y: auto!important;
}
@media screen and (max-width: 1173px) and (min-width: 1102px) {
	.title_label {
		font-size: 20px;
	}
}
@media screen and (max-width: 1099px) {
	/* New - 08-27-2020 */
	.title_label {
		margin: 0;
		margin-bottom: 23px;
	}
	/* New - 2022-01-19 */
	div#PanelOne {
		width: 100% !important;
	}
}
@media screen and (max-width: 700px) {
	#PanelOne {
		margin: 20px 15px 0px 15px;
		/*margin-right: 30px;*/
	}
	#PanelTwo {
		margin: 0 15px;
		margin-right: 30px;
	}
}
@media screen and (max-width: 525px) {
	.title_label {
		font-size: 20px;
		margin-bottom: 10px;
	}
	/*#IconPlayerHeader {
		height: 109px !important;
	}*/
	#IconPlayerHeaderControls {
		text-align: right;
	}
}
@media screen and (max-width: 270px) {
	.icon_player_title {
		max-height: unset;
	}
}
@media screen and (max-width: 243px) {
	/*#IconPlayerHeader {
		height: 134px !important;
	}*/
	#IconPlayerGuide {
		margin-right: 12px;
	}
}
.icon_player_question_holder {
	height: unset !important;
	top: unset !important;
	bottom: 0;
}
.icon_player_question_holder {
	height: unset !important;
	top: unset !important;
	bottom: 0;
}
#MessageDisplay {
	background-image: unset;
}



/* Custom */

@media screen and (max-width: 1099px) {
	#TDTopContainerBars {
		background-size: contain;
	}
}
#IconPlayerFooter {
	background-color: transparent;
	display: none;
}
.icon_player_2ndheader {
	height: 0px;
}
.panel_two {
        margin-top:30px!important;
	height: unset;
}


.panel_one { 
     margin-top:15px;
 margin-top:30px!important;
} 

#ContentHolder {
	min-height: unset;
	height: unset !important;
        overflow: visible !important;
       margin-bottom: 0px!important;
}


#SlideTop {background-color: transparent!important;}

}
.player_loading {
	display: none;
}

#IconPlayerHelp > .vertical_center_text {
	line-height: 12px;
}

.player_presentation_header {display:none}
.player_speaker_description {display:none}

.speaker_player_logo_image img {width:80%;height: unset;display: inline-block!important }
.speaker_player_logo_image {text-align:center!important }


.player_presentation_info_holder {    padding-top: 0px;    padding-bottom: 30px;}

/*.slide_holder {height:1500px}*/

 .html_below_slides {   
    padding-top: 0px;
    height: unset;
    position: static;
    font-size: 12px;
    text-align: justify;}



.player-half-speaker {width:50%}

.html_below_slides{height:unset;position:static}



#speaker-toggle-button {
    padding: 5px 10px;
    float: right;
    cursor: pointer;
    display: block;
    position: relative;
    z-index: 23;
   margin-right: 10px;
}

.speaker-single {
    padding-top: 30px;
    padding-bottom: 30px;
}
.speaker-single h3{display:none}
.speaker-single b{display:none}

.player-half-speaker {
    width:50%;
    float: left;
    max-width: 400px;
}

.button-colors, .button-colors:hover {
    color: #ffffff;
    background-color: #008A00;
    border: solid 1px #008A00;
    font-size: 16px;
    /* font-weight: 700; */
}

.speaker-toggle-button-holder{
    padding-bottom: 20px;
}

#PresentationSpeakerInformation{display:none!important}
#PlayerLogoHolder{margin-right:0px}

.vjs-control-bar  {background-color:#008A00 !important;opacity:1 !important}

#IconPlayerHeaderControls {display:flex}

.icon_player_buttons {    background-size: cover;border-radius: unset;}

#IconPlayerGuide{display:none}

#HTMLBelowLogoHolder {padding-bottom: 30px;}
#IconPlayerExit {

        margin-right: 30px;
	order: 16;
	background-image: url('https://d2ao27wt5b4lym.cloudfront.net/templates2.0/resolve/images/player/IconPlayer/2024/Set 2/logout_red.svg');
}

#IconPlayerSlideThumbnails {
 margin-right:25px;
	order: 15;
	background-image: url('https://d2ao27wt5b4lym.cloudfront.net/templates2.0/resolve/images/player/IconPlayer/2024/Set 2/slide_thumbnails.svg');
    border: unset;
    overflow: visible;
   width:32px;
   margin-right:25px
}


#IconPlayerRefresh {
 margin-right:25px;
	order: 15;
	background-image: url('https://d2ao27wt5b4lym.cloudfront.net/templates2.0/resolve/images/player/IconPlayer/2024/Set 2/refresh.svg');
}

#IconPlayerHelp {
    order: 12;
    background-image: url("https://d2ao27wt5b4lym.cloudfront.net/templates2.0/resolve/images/player/IconPlayer/2024/Set 2/support.svg");
    font-size: 0;
    border: unset;
    overflow: visible;
   width:32px;
   margin-right:25px
}

.icon_player_buttons_mobile {
    height: 25px;
    width: 25px !important;}


.menu-text {
    font-size: 11px;
   line-height: 11px;
    text-align: center;
    position: relative;
    top: 35px;
    left: -3px;
    display: block;
    font-weight: bold;
    font-family: 'proxima-nova-light';
}

.icon_player_buttons_mobile > .menu-text {
    font-size: 9px;
    line-height: 11px;
    text-align: center;
    position: relative;
    top: 28px;
    left: -3px;
    display: block;
font-weight: bold;
    font-family: 'proxima-nova-light';
}

#MediaPlayerHolder{padding-bottom:8px!important}


/*recreated - not from cache - process time 0.011255025863647 */
