.smoke-base {
 position         : fixed;
 left             : 0%;
 top              : 0%;
 width            : 100%;
 height           : 100%;
 background-color : rgba(0,0,0,.4);
 display          : table;
 z-index          : 1001;
}

.smoke-dialog_wrapper {
 position       : relative;
 vertical-align : middle;
 display        : table-cell;
}

.smoke-dialog {
 font-family:'Roboto Condensed', sans-serif;
 color: #cccccc;
 width: 60%;
 margin: 0 auto;
 padding: 20px;
 border-radius: 8px;
 /*background: url(../img/overlay.png);*/
 background: rgba(30, 30, 30, 0.95);
 font-size: 18px;
 font-weight: normal;
 text-align: center;
 line-height: 24px;
 box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
 backdrop-filter: blur(5.5px);
 /* Note: backdrop-filter has minimal browser support */
}

.smoke-dialog-buttons {
 vertical-align : middle;
 margin-top: 20px;
}

.smoke-dialog-buttons-ok, .smoke-dialog-buttons-cancel {
    margin: 0 7px;
    padding: 8px 24px;
	width: 150px;
    border: 0;
    border-radius: 7px;
    outline: 0;
    color: white;
    background-color: #272727;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    line-height: 18px;
    vertical-align: baseline;
    display: inline-block;
    cursor: pointer;
		transition: .3s;
}
.smoke-dialog-buttons-ok:hover, .smoke-dialog-buttons-cancel:hover {
  background-color: #2f2d2d;
}

.smoke-prompt {
 margin-top : 15px;
 text-align : center;
}

.smoke-prompt-input {
 -moz-box-sizing  : border-box;
 box-sizing       : border-box;
 width            : 75%;
 margin           : 0;
 padding          : 11.2px;
 border           : 1.4px solid #aaa;
 outline          : none;
 font-family      : arial;
 font-size        : 22.4px;
 background-color : white;
 display          : inline-block;
}

/*.smoke-dialog-buttons-cancel {
 background-color : rgba(0, 0, 0, .40);
}*/
