.dis-confirm-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background-color: rgba(221, 221, 221, .5);
}
.dis-confirm {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10001;
	background-color: #fff;
	padding: 25px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25);
	border-radius: 3px;
}
.dis-confirm-overlay,
.dis-confirm {
	-webkit-transition: opacity 0.35s ease;
	-moz-transition: opacity 0.35s ease;
	-ms-transition: opacity 0.35s ease;
	-o-transition: opacity 0.35s ease;
	transition: opacity 0.35s ease;
	opacity: 0;
}
.dis-confirm-overlay.active,
.dis-confirm.active {
	opacity: 1;
}
.dis-confirm__button {
	border: none;
	padding: 5px 10px;
	border-radius: 3px;
	min-width: 80px;
}
.dis-confirm__message {
	text-align: center;
}
.dis-confirm__button.v--success {
	background-color: forestgreen;
	color: #fff;
}
.dis-confirm__button.v--cancel {
	background-color: firebrick;
	color: #fff;
}
.dis-confirm__buttons-wrap {
	margin-top: 20px;
	text-align: center;
	white-space: nowrap;
}
.dis-confirm__buttons-wrap > button {
	margin: 0 5px;
}