@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideUpCenter{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes slideInLeft{0%{transform:translateX(-20px);opacity:0}to{transform:translateX(0);opacity:1}}@keyframes slideInRight{0%{transform:translateX(20px);opacity:0}to{transform:translateX(0);opacity:1}}.modal-backdrop{width:100%;height:100%;position:fixed;inset:0;z-index:30;background-color:rgba(0,0,0,.5);animation:fadeIn .7s ease-in-out}.modal-container.center{animation:slideUpCenter .3s ease-out}.modal-container.left{animation:slideInLeft .3s ease-out}.modal-container.right{animation:slideInRight .3s ease-out}