@charset "UTF-8";


.recipe-button{
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0.2s;
     -moz-transition: all 0.3s ease-out 0.2s;
      -ms-transition: all 0.3s ease-out 0.2s;
       -o-transition: all 0.3s ease-out 0.2s;
          transition: all 0.3s ease-out 0.2s;
}
.recipe-button.show{
  opacity: 1;
}

.recipe-elm{
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0.2s;
     -moz-transition: all 0.3s ease-out 0.2s;
      -ms-transition: all 0.3s ease-out 0.2s;
       -o-transition: all 0.3s ease-out 0.2s;
          transition: all 0.3s ease-out 0.2s;
  -webkit-transform: scale(1.2);
     -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
       -o-transform: scale(1.2);
          transform: scale(1.2);
}
.recipe-elm.show{
  opacity: 1;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

