/*  MICROTHEMER STYLES  */

/*= Animations ================ */

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}


/*= General =================== */

/** General >> Is layout flex is layout flow (#1) **/
.is-layout-flex .is-layout-flow:nth-of-type(1) {
	
}
.is-layout-flex .is-layout-flow:nth-of-type(1):hover, 
.mt-hover {
	/* MT [ sub: 1 | group: animation | event: 1 ] */
	-webkit-animation-name: flash !important;
	animation-name: flash !important;
	-webkit-animation-duration: 0.5s !important;
	animation-duration: 0.5s !important;
}

