@charset "utf-8";

/*
 *
 * Usage: Base layout
 *
 * Name: animation.css
 *
 */



/*---------------------------------------------------------------------
Common layout
---------------------------------------------------------------------*/
.target  {-webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
          transition:         all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
          -webkit-transform: scale(0.95);
          -ms-transform:     scale(0.95);
          transform:         scale(0.95);
          opacity:0;}
.action  {-webkit-transform: scale(1);
          -ms-transform:     scale(1);
          transform:         scale(1);
          opacity:1}


