@charset "UTF-8";
@import "../../theme/variables";
@import "~@jereation/sass-helpers/_mixins";

.vui-alert {
	z-index: map-get($alert, z-index);
}

.vui-alert-view {
	width: 460px;
	max-width: 100%;
	padding: 17px;
	text-align: center;
	border-radius: .15rem;
	@include box-shadow(0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19));
	background-color: #fff;
}

.vui-alert-title {
	margin: 20px 0;
	font-size: 1.4rem;
	font-weight: 600;
	text-align: center;
	color: #333;
}

.vui-alert-message {
	font-size: .8rem;
	font-weight: 300;
	text-align: center;
	color: #000;
}

.vui-alert-buttons {
	margin: 20px 5px 0;
}

.vui-alert-button {
	display: inline-block;
	padding: 10px 20px;
	margin: 5px;
	border: none;
	border-radius: .3em;
	text-align: center;
	outline: none;
	cursor: pointer;
	background-color: #068ac9;
	color: #fff;
}

.vui-alert-confirm {
	background-color: rgb(221, 107, 85);
	&:hover {
		background-color: rgb(212, 103, 82);
	}
}

.vui-alert-cancel {
	background-color: #c1c1c1;
	&:hover {
		background-color: #b9b9b9;
	}
}
