/*sticky advertisment css by DW*/
.sticky-advert-container {
	z-index: 99999;
    left: 0px;
    /*making left 0 instead of right as to not cover ads.*/
    top:35%;
    /*display: block;*/
    /*Hak Just change display to none to hide, change to block to show*/
    position: fixed;
    display: none;

}
.sticky-advert {
    width: 200px;
    height: 250px;
    color: #fff;
    /*background-image: url('CELaunch_badge-left.png');*/
    /*changed out image by Dylan on 4-11 per Hak*/
    /*Hak, put new image in assets_v3/img and then call it here.*/
    /*if you have to make changes to the link or html of the sticky advert it is in assets_v3/js/main.js*/
    background-image: url('BeyeLaunch_badge-final-left.png');
    background-size: contain;
    border-radius: 8px 0px 0px 8px;
    right: 10px;
    top:345px;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px;
    text-align: center;
    z-index: 9999;
    -webkit-transition: 0.5s ease-out;
  	-moz-transition: 0.5s ease-out;
  	-o-transition: 0.5s ease-out;
  	transition: 0.5s ease-out;
    @media all and (max-width:999px) {
    	display: none;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min--moz-device-pixel-ratio: 1.5),
       only screen and (min-device-pixel-ratio: 1.5) {
	.sticky-advert {
		background-image: url('BeyeLaunch_badge-final-left.png');
	}
}

.sticky-advert h3 {
    color: #fff !important;
    margin-top: 70px;
    font-size: 28px;
}
.closing-x {
    position: absolute;
    top: 16px;
    left: 182px;
    color: #C23229;
    color: transparent;
    /*color of x change to match the ad*/
    /*color: #148FFC;*/
    z-index:99999999;
}

.closing-x:hover{
    cursor: pointer;
}