/* A N I M A T I O N S . C S S ------------------------------------------------------------------ */

@keyframes blink { 0%, 49% { opacity: 0 } 50%, 100% { opacity: 1 } }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

@keyframes move-ltr {

	0% { transform: translate(0rem, 0rem); animation-timing-function: ease-in-out; }

	50% { transform: translate(.625rem, 0rem); animation-timing-function: ease-in-out; }

	100% { transform: translate(0rem, 0rem); animation-timing-function: ease-in-out; }

}

@keyframes move-rtl {

	0% { transform: translate(0rem, 0rem); animation-timing-function: ease-in-out; }

	50% { transform: translate(-.625rem, 0rem); animation-timing-function: ease-in-out; }

	100% { transform: translate(0rem, 0rem); animation-timing-function: ease-in-out; }

}

@keyframes pulsate {

	0% { transform: scale(.1, .1); opacity: 0; }

	50% { opacity: 1; }

	100% { transform: scale(1.2, 1.2); opacity: 0; }

}