/* xl - DESKTOP STYLES */ 
.animated { 
            padding-top:95px;
            margin-bottom:60px;
            -webkit-animation-duration: 1s;
            animation-duration: 1s; 
            -webkit-animation-fill-mode: both; 
            animation-fill-mode: both; 
			animation-iteration-count: infinite;
         }
         
         @-webkit-keyframes bounce { 
            0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
            40% {-webkit-transform: translateY(-30px);} 
            60% {-webkit-transform: translateY(-15px);} 
         } 
         
         @keyframes bounce { 
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 
            40% {transform: translateY(-30px);} 
            60% {transform: translateY(-15px);} 
         }
         
         .bounce { 
            -webkit-animation-name: bounce; 
            animation-name: bounce; 
			animation-iteration-count: infinite;
         }

.animated{
	/*display: none;*/
}

.visible.animated{
	display: initial !important;
	position: absolute;
	bottom: 0;
	z-index: 1000000;
	background-color: black;
	padding: 50px;
	border-radius: 10px;
}



