.modal{position:fixed;top:0;width:100%;height:100%;z-index:9998;inset:0;display:none;align-items:center;justify-content:center;padding:24px}.modal.active{display:flex}.modal__backdrop{position:fixed;z-index:9998;inset:0;background-color:rgba(0,0,0,.5);cursor:pointer;animation:backdrop-fade-in-animation .25s ease-out forwards}.modal__content{overflow:hidden;z-index:9999;width:100%;max-width:500px;max-height:calc(100vh - 48px);display:flex;flex-direction:column;border-radius:8px;background-color:#fff;animation:content-slide-in-animation .25s ease-out forwards}.modal__header{display:flex;justify-content:space-between;border-bottom:1px #eee solid;font-size:20px}.modal__header span{padding:1.5rem}.modal__header .ai-cross2{line-height:24px;padding:1.5rem;cursor:pointer}.modal__header .ai-cross2:hover{color:#3c6eb4}.modal__body{flex:1;overflow-y:auto;padding:1.5rem}.modal__footer{border-top:1px #eee solid;padding:1.5rem}.modal-md .modal__content{max-width:768px}.modal-lg .modal__content{max-width:1200px}@keyframes backdrop-fade-in-animation{from{opacity:0}to{opacity:1}}@keyframes content-slide-in-animation{from{opacity:0;transform:translateY(100px)}to{opacity:1;transform:translateY(0)}}