.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; background: rgba(0,0,0,0.8); display: flex; justify-content: center; align-items: center; opacity: 0.0; transition: opacity 1.0s; pointer-events: none; } .modal.visible { opacity: 1.0; pointer-events: auto; } .modal.handheld-modal { background: #fff; } .modal.handheld-modal > div { background: transparent; padding: 1.5rem; } .modal.handheld-modal p { font-family: "Freight Text", serif; font-size: 1.6rem; text-align: center; line-height: 1.1; color: #000; } .modal.handheld-modal .ok { position: absolute; bottom: 0; right: 0; width: 100%; height: 3rem; padding-right: 1rem; font-family: "Neue Haas Unica", sans-serif; font-size: 18px; text-align: right; color: #000; cursor: pointer; }