/* flash overlay */ .flash { position: fixed; left: 15%; display: flex; align-items: center; width: 70%; z-index: 10; font-family: NotoSans; font-size: 14px; color: #212121; background: #ffffff; border-bottom: 5px solid #4caf50; border-radius: 1px; box-shadow: 0 1px 12px rgba(0, 0, 0, 0.3); transition: opacity .15s ease; transition: top .2s ease; } .flash.info { border-color: #2e7aec; } .flash.ok { border-color: #4caf50; } .flash.warning { border-color: #fbbc26; } .flash.error { border-color: #f44336; } .flash span { flex-grow: 1; margin: 15px 10px 10px 0; } .flash input[type="button"] { margin: 3px 30px 0 0; padding: 10px 15px; border: none; background: rgba(0, 0, 0, 0); color: #727272; } .flash input[type="button"]:hover { background: rgba(0, 0, 0, .1); } .flash input[type="button"]:focus { background: rgba(0, 0, 0, .2); } .flash svg { margin: 15px 20px 10px 30px; }