*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.content{
	width:50%;
	margin:1.5em auto 0;
	padding:10px 20px;
	z-index:10;
}
.modal{
    display: none;
	height: 100vh;
	left: 0%;
    position: fixed;
    top: 0;
	width: 100%;
	z-index:10;

}
.modal__bg{
    background: rgba(0,0,0,0.8);
	height: 100vh;
    position: absolute;
	width: 100%;
	z-index:10;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
	width: 30%;
	z-index:10;
	text-align:center;
}


.btn-yes {
	display: inline-block;
	padding: 7px 20px;
	border-radius: 25px;
	text-decoration: none;
	color: #FFF;
	background-color: #00F9A9;
	transition: .4s;
	width: 40%;
	/* height:30px; */
  }

.btn-yes:hover {
	background-color: #64F9C1;
}

.btn-no {
	display: inline-block;
	padding: 7px 20px;
	border-radius: 25px;
	text-decoration: none;
	color: #FFF;
	background-color: #444444;
	transition: .4s;
	width: 40%;
}
.btn-no:hover {
	background-color: #888888;
}

#text-info{
	font-size: 20px;
}
#text-Caution{
	font-size: 15px;
	color: #FF0000;
	margin-top: 15px;
	margin-bottom: 10px;
}
#text-info2{
	font-size: 15px;
	margin-top: 10px;
}


@media screen and (max-width: 768px){
	.modal{
		display: none;
		height: 100vh;
		left: 0%;
		position: fixed;
		top: 0;
		width: 100%;
		z-index:10;
	
	}
	.modal__bg{
		background: rgba(0,0,0,0.8);
		height: 100vh;
		position: absolute;
		width: 100%;
		z-index:10;
	}
	.modal__content{
		background: #fff;
		left: 50%;
		padding: 40px;
		position: absolute;
		top: 50%;
		transform: translate(-50%,-50%);
		width: 100%;
		z-index:10;
		text-align:center;
	}
	
	.btn-yes {
		display: inline-block;
		padding: 7px 20px;
		border-radius: 25px;
		text-decoration: none;
		color: #FFF;
		background-color: #00F9A9;
		transition: .4s;
		/* width: 40%; */
		/* height:30px; */
	  }
	
	.btn-yes:hover {
	background-color: #64F9C1;
	}
	
	.btn-no {
		display: inline-block;
		padding: 7px 20px;
		border-radius: 25px;
		text-decoration: none;
		color: #FFF;
		background-color: #444444;
		transition: .4s;
		/* width: 40%; */
	}
	.btn-no:hover {
	background-color: #888888;
	}	
	
}