#swOverlayMessage-backdrop {
  background-color: rgba(0, 0, 0, .8);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
	z-index: 900;
	display: none;
}

#swOverlayMessage-backdrop.active {
	display: block;
}

#swOverlayMessage {
  background-color: #FFFFFF;
  height: auto;
  min-height: 00px;
  max-height: calc(100% - 40px);
  left: 50%;
  position: absolute;
  top: 50%;
  width: max-content;
  min-width: 500px;
  max-width: calc(100% - 40px);
  z-index: 9999;
	border-radius: 10px;
	padding: 20px 40px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0px 0px 20px 10px #000, 0 0 4px 1px #555 inset;
  transform: translate(-50%, -50%);
}

#swOverlayMessage-content {
  text-align: center;
  font-size: 1.5rem;
}

#swOverlayMessage-closeBtn {
  position:absolute;
  background-image:url('close-btn.png');
  background-repeat:no-repeat;
  background-color: transparent;
  border: 0 none;
  width:38px;
  height:38px;
  top:0;
  right:0;
  margin-top:-18px;
  margin-right:-18px;
  z-index:1003;
  cursor:pointer
}

#swOverlayMessage-title {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 10px;
}




#swOverlayMessage.type-error #swOverlayMessage-content {
  color: rgb(144, 4, 6);
}

#swOverlayMessage.type-alert #swOverlayMessage-content {
  color: rgb(210, 112, 0);
}

#swOverlayMessage.type-success #swOverlayMessage-content {
  color: rgb(0, 111, 18);
}