@charset "UTF-8";
	
	#cookieTip{
		bottom: 0;
		background: #999;
		z-index: 99; 
		box-shadow: 0px 0px 10px 1px #a59d9d;
		animation-name: cookieTip-anim;
    	animation-duration: 1s;
	}
	
	@keyframes cookieTip-anim{
	    from{
	        bottom: -300px;
	    }
	    to{
	        bottom: 0px;
	    }
	}
	

	
	footer{
		position: relative;
	    top: 100px;
	}
	
	footer .evg-copyright-text{
		font-size: 0.9rem;
    	align-self: center;
	}
	
	footer .row div:nth-child(3) > span{
		font-size: 0.75rem;
    	color: #424242;
    	cursor: pointer;
	}
	
	footer div.row:nth-child(1) > div:nth-child(-n+3){
		border-bottom: 1px solid #cccccc;
	}
	
	footer .borderTop{
		border-top: 1px solid #ccc;
		margin-left: 10px;
    	margin-right: 10px;
	}
	
	@media screen and (max-width: 992px){
		footer {
			background-color: #eee9e9;
			top: 100px;
		}
		footer .row div:nth-child(3) > span{
			display: none;
		}
	}
	
	@media screen and (min-width: 992px){
		footer div.row:nth-child(1){
			display: none;
		}
	}
	
	