@charset "UTF-8";

.dialog-overlay {
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:120%;
    background-color: rgba(0, 0, 0, 0.6);
}

.dialog {
	display:none;
  	position: fixed;
    padding: 20px 20px 10px 20px;
    width: 80%;
    min-width: 200px;
    max-width: 400px;
	background: #E0DEDA;
    border-radius: 4px;
    border: #ffffff 2px solid;
    box-sizing: border-box;
}

.dialog-row {
    position: relative;
    display: table;
    table-layout: fixed;
	float: left;
	width: 100%;
	height: 40px;
    border-collapse: separate;
    border-spacing: 10px 0;
    margin-top: 5px;
    margin-bottom: 10px;
}

.dialog-row * {
    position: relative;
    display: table-cell;
    margin: 5px;
	width: 100%;
	vertical-align: middle;
    border-radius: 5px;
    background: #ffffff;
}

.dialog-row .dialog-text {
	text-align: center;
    padding-right: 10px;
    font-size: x-large;
}

.dialog-row .dialog-button-clear {
    width: 30px;
	text-align: center;
	background: #E0DEDA;
}

.dialog-row .dialog-button {
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.dialog-row .dialog-button:hover {
    background: #eee;
}

.dialog-row .dialog-button:active {
    border: #8ADDFD 2px solid;
    box-sizing: border-box;
}


