/**
 * オーバーレイウインドウ用
 *
 * @author   ISHIKAWA Takahiro <t.ishikawa@itlabj.com>
 * @version  12.1
 * @since    2021-05-01
 */

#overlay			{ display:none; justify-content:center; position:absolute; top:0; left:0; }
#overlay			{ width:100%; height:100%; background:rgba(0,0,0,0.7); z-index:10000; text-align:center; }
#overlay .popup		{ position:fixed; top:calc((100vh - 60%) / 2); width:80%; max-width:460px; margin:auto; padding:16px 0; }
#overlay .close		{ color:#ffffff;font-weight:bold; font-size:32px; cursor:pointer; }

/* vim: set ts=4: */