.animSlide {
  	animation-timing-function: ease-in;
    animation-fill-mode: forwards;
  	animation-duration: 0.8s;
  	animation-name: slideout;
}

@keyframes slideout {
  	100% {
		width: 0px;
    	left: 75%;
    	top:  -50px;
  	}
}

@media screen and (min-width: 1220px) {
    @keyframes slideout {
  	100% {
		width: 0px;
    	left: 95%;
    	top:  -50px;
  	}
}
}

@media screen and (min-width: 1500px) {
    @keyframes slideout {
  	100% {
		width: 0px;
    	left: 90%;
    	top:  -50px;
  	}
}
}

@media screen and (min-width: 1700px) {
    @keyframes slideout {
  	100% {
		width: 0px;
    	left: 80%;
    	top:  -50px;
  	}
}
}