.modal-overlay{width:100vw;height:100vh;top:0;left:0;right:0;bottom:0;z-index:999999;-webkit-backdrop-filter:blur(5px) saturate(100%);backdrop-filter:blur(5px) saturate(100%);background-color:rgba(0,0,0,.35)}.modal,.modal-overlay{position:fixed;animation:modal-open .2s ease-out}.modal{min-width:60rem;background-color:#fff;top:50%;left:50%;transform:translate(-50%,-50%);z-index:1000000;border-radius:2.5rem;padding:5rem;max-height:90vh;overflow-y:auto}.modalHeader{display:flex;align-items:center;justify-content:space-between;margin-bottom:3.8rem;text-transform:capitalize}.headerAndBackButton{display:flex;align-items:center;gap:1.5rem}.modalCloseButton{cursor:pointer;width:4.5rem}body.modal-open{overflow:hidden}@keyframes modal-open{0%{opacity:0}to{opacity:1}}@media screen and (max-width:550px){.modal{min-width:94%}}