/* CSS Document */
.webinarTeaserIconBtn{display:block;position:fixed;left: 15px;bottom: 15px;width: 64px;height:64px;background-color: #FA9400;-webkit-box-shadow: 0 8px 13px 0 rgba(0,0,0,.1);-moz-box-shadow: 0 8px 13px 0 rgba(0,0,0,.1);box-shadow: 0 8px 13px 0 rgba(0,0,0,.1);z-index:1000;visibility: hidden;border: 0px none;border-radius: 50%;background-image:url(img/webinar_icon.svg);background-repeat:no-repeat;background-size: 40px 40px;background-position: center;cursor: pointer;}
.webinarTeaserContainer{display:block;position:fixed;left: 15px;bottom: 100px;width: 320px;height:240px;background-color:rgb(231, 241, 242);-webkit-box-shadow: 0 8px 13px 0 rgba(0,0,0,.1);-moz-box-shadow: 0 8px 13px 0 rgba(0,0,0,.1);box-shadow: 0 8px 13px 0 rgba(0,0,0,.1);z-index:1000;visibility: hidden;}
@media all and (max-width:749px) {
	.webinarTeaserContainer{left: 0;right:0;margin: 0 auto;}
}
.webinarTeaserVideo{display:block;width:320px;height:180px;}
.webinarTeaserBtn{display:block;width:100%;height:60px;padding-top:25px;padding-bottom:18px;font-family: 'TradeGothicLTStd-Bold';font-size:13px;line-height:13px;color:#FFFFFF!important;text-align:center;cursor: pointer;background-color:#FA9400!important;border:0;border-radius:0!important;}
.webinarTeaserBtn:hover{color:#FFFFFF;background-color:#9B9B9B!important;border:0;border-radius:0!important}
.webinarTeaserBtn::before{height: 0px}
.webinarTeaserCloseBtn{display:block;width:20px;height:20px;position:absolute;top:0;right:0;background-color:#FFFFFF;background-image:url(img/close.svg);background-repeat:no-repeat;background-size: 10px 10px;background-position: center;cursor: pointer;border: 1px solid #9B9B9B;border-radius: 50%;margin:5px;}
.webinarTeaserCloseBtn:hover{background-color:#FA9400;border: 1px solid #FA9400;background-image:url(img/close_white.svg);background-repeat:no-repeat;background-size: 10px 10px;background-position: center;}
.webinarTeaserVideoAnimIn {animation: teaservideo-anim-in 0.5s ease-in 0.0s 1 normal forwards;}
@-webkit-keyframes teaservideo-anim-in {
	from {-webkit-transform: translateY(375px);transform: translateY(375px);visibility:visible;}
	to {-webkit-transform: translateY(0px);transform: translateY(0px);visibility:visible;}
}
.webinarTeaserVideoAnimOut {animation: teaservideo-anim-out 0.5s ease-in 0.0s 1 normal forwards;visibility:visible;}
@-webkit-keyframes teaservideo-anim-out {
	from {-webkit-transform: translateY(0px);transform: translateY(0px);}
	to {-webkit-transform: translateY(375px);transform: translateY(375px);}
}
.webinarTeaserVideoAnimFadeIn {animation: teaservideo-anim-fade-in 0.2s ease-in 0.0s 1 normal forwards;visibility:visible;}
@-webkit-keyframes teaservideo-anim-fade-in {
	from {visibility:visible;opacity:0;}
	to {visibility:visible;opacity:1;}
}
.webinarTeaserVideoAnimFadeOut {animation: teaservideo-anim-fade-out 0.1s ease-in 0.0s 1 normal forwards;visibility:visible;}
@-webkit-keyframes teaservideo-anim-fade-out {
	from {opacity:1;}
	to {opacity:0;}
}