.actions_bg { z-index: 10000; position: fixed; left: 0; top: 0; width: 100vw; height: 100vh; background-color: rgba($color: #000, $alpha: 0.9); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; } .action_btn { width: 698px; height: 128px; border-radius: 64px; background-color: #fff; color: #000; margin-top: 26px; display: flex; flex-direction: row; align-items: center; justify-content: center; position: relative; } .cardShowAni { animation: showAni 0.2s linear forwards; } .btnAni{ opacity: 0; animation: showAni2 0.2s 0.5s linear forwards; } @keyframes showAni { 0% { opacity: 0; transform: translateY(300px); } 100% { opacity: 1; transform: translateY(0px); } } @keyframes showAni2 { 0% { opacity: 0; // transform: translateY(300px); } 100% { opacity: 1; // transform: translateY(0px); } }