/* ----------------------------------------------
 * Generated by Animista on 2020-5-6 15:34:31
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */


.expand-empty {
	height: 10px;
	-webkit-box-shadow: inset 0 0 10px 2px rgba(0,0,0,0.16);
	-moz-box-shadow: inset 0 0 10px 2px rgba(0,0,0,0.16);
	box-shadow: inset 0 0 10px 2px rgba(0,0,0,0.16);
	-webkit-animation: expand-empty 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: expand-empty 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}


.empty-hover {
	height: 30px;
	-webkit-animation: empty-hover 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: empty-hover 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


@-webkit-keyframes empty-hover {
  0% {
    -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: inset 0 0 14px 0px rgba(0, 0, 0, 0.5);
            box-shadow: inset 0 0 14px 0px rgba(0, 0, 0, 0.5);
  }
}
@keyframes empty-hover {
  0% {
    -webkit-box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: inset 0 0 14px 0px rgba(0, 0, 0, 0.5);
            box-shadow: inset 0 0 14px 0px rgba(0, 0, 0, 0.5);
  }
}

@-webkit-keyframes expand-empty {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes expand-empty {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}


