.form-modal{position:fixed;top:var(--admin-bar-height);left:0;width:100%;max-width:100%;height:calc(100% - var(--admin-bar-height));z-index:1000;opacity:0;pointer-events:none;transition:all .5s ease-in;background:rgba(0,0,0,.5);backdrop-filter:blur(.7rem);display:flex;overflow:hidden}.form-modal.open{opacity:1;pointer-events:all}.form-modal-inner{grid-template-columns:minmax(0, 1fr);width:48rem;max-width:var(--wide-width);max-height:calc(100vh - var(--admin-bar-height) - var(--row-gap));margin:auto;position:relative;overflow:auto;padding:4.8rem 2.4rem;transform:scale(0);transition:all .5s ease-in}.form-modal.open .form-modal-inner{transform:scale(1)}.form-modal-title{display:flex;align-items:center;margin-top:2.4rem;margin-bottom:var(--item-row-gap)}.form-modal-title h2{flex-grow:1;font:var(--font-headline-5)}.form-modal-close{color:var(--hover-link-color);padding:1rem;flex-shrink:0;position:absolute;top:1.5rem;right:1.5rem}.form-modal-close:is(:hover,:focus,:active){color:var(--link-color)}.form-modal-close svg{width:2rem;height:auto}.form-modal-content-after-form{font:var(--font-body-small)}.form-modal-content-after-form p{margin-bottom:.5lh}@media (min-width:768px){.form-modal-inner{padding:4.8rem}}