.animate {
  opacity: 0; }

.animated {
  -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  opacity: 1 !important; }

.custom-animate {
  opacity: 0;
  -webkit-transform: scale(0.6);
  -o-transform: scale(0.6);
     transform: scale(0.6);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.3s ease-out;
  -o-transition: -o-transform 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.3s ease-out;
     transition: transform 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.3s ease-out; }

.custom-animating {
  opacity: 1 !important;
  -webkit-transform: scale(1);
  -o-transform: scale(1);
     transform: scale(1); }
