@charset "utf-8";
/* CSS Document */

/* Modal Content START */
/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0); /* Black w/ opacity */
	-webkit-animation-name: fadeIn; /* Fade in the background */
	-webkit-animation-duration: 0.4s;
	animation-name: fadeIn;
	animation-duration: 0.4s;
}
.modal-content {
	position: fixed;
	right: 20px;
	bottom: 10px;
	/*background-color: #fefefe;*/
	width: 300px;
	padding: 10px 15px 5px 15px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	border-left: 1px solid #000;
	-webkit-animation-name: slideIn;
	-webkit-animation-duration: 0.4s;
	animation-name: slideIn;
	animation-duration: 0.4s;
    background: rgba(0,0,0,.75);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
	box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.24);
}
/* The Close Button */
.close {
	position: absolute;
	top: 0px;
	right: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	color: #FFF;
	float: right;
	font-size: 28px;
	font-weight: bold;
	order: 2;
	z-index: 9999;
}
.close:hover, .close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.modal-header {
	position: relative;
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
	border-bottom: 1px solid #ccc;
}
h3.tips_title {
	order: 1;
	font-size: 1.6rem;
    color: #fff;
	font-weight: 500;
	margin-bottom: 5px;
	background-color: transparent;
	background: transparent;
}
h3.tips_title:before {
    margin: -3px 5px 0 0;
    content: " ";
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(../images/warning.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.modal-body {
	/*padding: 2px 16px;*/
}
.modal-body p {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 10px;
}
.modal-footer {
	padding: 2px 16px;
	background-color: #5cb85c;
	color: white;
}
/* Add Animation */
@-webkit-keyframes slideIn {
	from {
		right: -500px;
		opacity: 0
	}

	to {
		right: 20px;
		opacity: 1
	}
}

@keyframes slideIn {
	from {
		right: -500px;
		opacity: 0
	}

	to {
		right: 20px;
		opacity: 1
	}
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}
/* Modal Content END */