@charset "UTF-8";
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0, 0);
	background-color: rgb(0, 0, 0, 0.4);
}

.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 16px;
	border: 1px solid #888;
	width: 50%;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover, .close:focus{
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.modal-header {
	padding: 2px 16px;
	color: black;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	text-align: center;
}

.modal-body {
	padding: 2px 16px;
	text-align: center;
}

.modal-footer {
	display: flex;
	padding: 0;
	color: white;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.modal-content {
	position: relative;
	background-color: white;
	margin: auto;
	padding: 0;
	border: 1px solid #888;
	width: 80%;
	max-width: 320px;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	
	animation-name: animatetop;
	animation-duration: 0.2s;
	
	top: 50%;
	transform: translateY(-50%);
	
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

@keyframes animatetop {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

.btn-modal {
	width: 50%;
	min-height: 40px;
	min-width: 128px;
	max-width: 320px;
	font-size: 15px;
	font-weight: var(--font-weight-semibold);
	background-color: #FFFFFF;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.btn-modal-positive{
	background-color: var(--ui-main);
	border-bottom-left-radius: 0;
}

.btn-modal-negative{	
	background-color: var(--ui-gray-3);
	border-bottom-right-radius: 0;
}

.modal-alert .btn-modal-positive {
	color: #FFFFFF;
	background-color: #EA4335;
}

.modal-alert .btn-modal-negative {
	color: #222222;
	border: 1px solid #707070;
	background-color: white;
}


.btn-modal-options {
	width: 100%;
	color: #000;
	display: block;
}

