body.react-confirm-alert-body-element {
	overflow: hidden;
}

.react-confirm-alert-blur {
	filter: url(#gaussian-blur);
	filter: blur(2px);
	-webkit-filter: blur(2px);
}

.msg-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background: rgb(93 80 80 / 90%);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	opacity: 0;
	-webkit-animation: msg-fadeIn 0.5s 0.2s forwards;
	-moz-animation: msg-fadeIn 0.5s 0.2s forwards;
	-o-animation: msg-fadeIn 0.5s 0.2s forwards;
	animation: msg-fadeIn 0.5s 0.2s forwards;
}

.msg-body {
	font-family: Arial, Helvetica, sans-serif;
	width: 400px;
	padding: 30px;
	text-align: left;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 20px 75px rgba(0, 0, 0, 0.13);
	color: #666;
}

.msg-body > h1 {
	margin-top: 0;
	font-size: 16px;
	font-weight:900;
}

.msg-body > h3 {
	margin: 0;
	font-size: 16px;
}

.msg-body > div {
	font-size: 13px;
	color:#000;
	font-weight:900;
}

.msg-body > .warning {
	font-size: 13px;
	color:red;
	font-weight:900;
}




.msg-overlay-pop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background: rgb(93 80 80 / 90%);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	opacity: 0;
	-webkit-animation: msg-fadeIn 0.5s 0.2s forwards;
	-moz-animation: msg-fadeIn 0.5s 0.2s forwards;
	-o-animation: msg-fadeIn 0.5s 0.2s forwards;
	animation: msg-fadeIn 0.5s 0.2s forwards;
}

.msg-body-pop {
	font-family: Arial, Helvetica, sans-serif;
	width: 400px;
	padding: 30px;
	text-align: left;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 20px 75px rgba(0, 0, 0, 0.13);
	color: #666;
}

.msg-body-pop > h1 {
	margin-top: 0;
	font-size: 16px;
	font-weight:900;
}

.msg-body-pop > h3 {
	margin: 0;
	font-size: 16px;
}

.msg-body-pop > div {
	font-size: 13px;
	color:#000;
	font-weight:900;
}

.msg-body-pop > .warning {
	font-size: 13px;
	color:red;
	font-weight:900;
}

.msg-button {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	margin-top: 20px;
}

.msg-button > button {
	outline: none;
	background: #333;
	border: none;
	display: inline-block;
	padding: 6px 18px;
	color: #eee;
	border-radius: 5px;
	font-size: 12px;
	cursor: pointer;
}

@-webkit-keyframes msg-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes msg-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes msg-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes msg-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
