@charset "utf-8";
/*------------------------------------------------------- Animation------------------------------------------ */	
	.test-banner-animated {
		  animation-duration: 1s;
		  animation-fill-mode: both;
		}
	@keyframes test-banner-fadeInUp {
	  from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	  }

	  to {
		opacity: 1;
		transform: none;
	  }
	}

	.test-banner-fadeInUp {
	  animation-name: test-banner-fadeInUp;
	}

	@keyframes test-banner-fadeIn {
	  from {
		opacity: 0;
	  }

	  to {
		opacity: 1;
	  }
	}

	.test-banner-fadeIn {
	  animation-name: test-banner-fadeIn;
	}
	
	@keyframes test-banner-slideInRight {
	  from {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	  }

	  to {
		transform: translate3d(0, 0, 0);
	  }
	}

	.test-banner-slideInRight {
	  animation-name: test-banner-slideInRight;
	}
	
	@keyframes test-banner-zoomIn {
	  from {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	  }

	  50% {
		opacity: 1;
	  }
	}

	.test-banner-zoomIn {
	  animation-name: test-banner-zoomIn;
	}
/*--------------------------------------------------------End of animation-------------------------------------------------------*/


/*--------------------------------------------------------STYLE-------------------------------------------------------*/
	.test-banner-body {
		width: 100%;
		height: 75px;
		background: linear-gradient(to bottom right, yellow, orange);
		position: fixed;
		font-family: Gotham, "Helvetica Neue", Helvetica, "sans-serif";
		font-kerning: normal;
		-webkit-font-smoothing: antialiased;
		margin: 0;
		box-sizing: border-box;
		left:0;
		bottom: 0;
	}
	.test-banner-video {
		width: 15%;
		position: relative;
		padding-top: 56.25%;
		bottom: 70px;
		left: 40px;
		animation-duration: 1.5s;
	}
	.test-banner-video video {
		user-select: none;
		pointer-events: none;
		position: absolute;
		width: 100%;
		height: auto;
		top: 0;
		left: 0;
		border: 2px dashed rgba(0,54,228,1.00);
	}
	.test-banner-deco {
		pointer-events: none;
	}
	.test-banner-text-ad {
		position: absolute;
		top: 50%;
		left: 40%;
		transform: translate(-50%, -50%);
		color: black;
		text-transform: uppercase;
		font-weight: bold;
		font-size: 20px;
		animation-delay: .5s;
	}
	.test-banner-link {
		position: absolute;
		top: 50%;
		right: 20%;
		transform: translate(-50%, -50%);
		color: white;
		text-transform: uppercase;
		font-weight: 500;
		font-size: 16px;
		letter-spacing: 1px;
		animation-delay: .5s;
		text-decoration: none;
		padding: 7px 10px;
		background-color: rgba(0,54,228,1.00);
		border-radius: 5px;
	}
	.test-banner-close {
		font-weight: bold;
		color: white;
		background-color: maroon;
		font-size: 15px;
		padding: 5px 9px;
		border-radius: 15px;
		display: table;
		position: absolute;
		z-index: 1;
		right: 20px;
		top: -15px;
		animation-delay: 3s;
		cursor: pointer;
	}
	.test-banner-deco-1 {
		position: absolute;
		background-image: url(images/test-banner-pattern2.png);
		background-size: cover;
		background-position: top center;
		width: 20%;
		height: 100%;
		animation-delay: .5s;
	}
	.test-banner-deco-2 {
		position: absolute;
		background-image: url(images/test-banner-pattern1.png);
		background-size: cover;
		background-position: top center;
		width: 30%;
		height: 200%;
		right: 0;
		bottom: 0;
	}
	.test-banner-product {
		position: absolute;
		background-image: url(images/test-banner-product.png);
		background-size: cover;
		background-position: top center;
		width: 200px;
		height: 200px;
		right: 0;
		bottom: 0;
	}
/*------------------------------------------End of style-----------------------------------------------*/
