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

:root {
	--color-text: #6d7587;
	--color-bg: #FFFFFF;
	--color-h1: #6d7587;
	--color-green: #2ecc71;
	--color-red: #dc4c64;
	--color-orange: #e6ad00;
	--color-blue: #1FB6FF;
	--color-blue-plus: #3b71ca;
	--color-cyan: #CCCCCC;
	--color-scrollbar: #9fa6b2;
	--color-success: #13ce66;
	--color-error: #dc4c64;
	--color-warning: #e6ad00;
	--color-confirm: #1FB6FF;
	--color-nothing: #CCCCCC;
	--font-poppins: 'Poppins', Verdana, Arial;
	--font-carter: 'Carter One';
	--font-satisfy: 'Satisfy';
	--font-gluten: 'Gluten';
	--font-mochiy: 'Mochiy Pop P One';
	--border-radius: 3px;
}

#popup_overlay {
	position: absolute;
	left: 0;
	top: 0;
	background: #232526;
	background: -webkit-linear-gradient(to right, #414345, #232526);
	background: linear-gradient(to right, #414345, #232526);
	opacity: 0.65;
	-moz-opacity: 0.65;
	filter: alpha(opacity=65);
}

#popup_container {
	position: fixed;
	padding: 0;
	margin: 0;
	display: none;
	background-color: #F3F3F3;
	z-index: 99999;
}

#popup_content {
	width: 580px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#popup_title {
	grid-column-start: 1; 
	grid-column-end: 3;
	height: 46px;
	line-height: 50px;
	font-family: 'Poppins', Verdana, Arial;
	font-size: 18px;
  	font-weight: 600;
	color: #FFFFFF;
	text-align: center;
	background-color: #1FB6FF;
	text-transform: uppercase;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}

#popup_icon i {
	font-size: 40px;
	padding: 0 10px 6px 10px;
	color: #697082;
	text-shadow: 1px 1px 0 #FFF;
}

#popup_message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: 'Poppins', Verdana, Arial;
	font-size: 16px;
	font-weight: 600;
	color: #697082;
	line-height: 34px;
	text-align: center;
	margin: 15px 30px;
	padding: 10px 20px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	text-shadow: 1px 1px 0 #FFF;
	position: relative;
}

#popup_panel {
	grid-column-start: 1; 
	grid-column-end: 3;
	height: 62px;
	padding: 12px;
	text-align: center;
	border-top: 1px dashed #CCCCCC;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.buttom {
	width: auto;
	height: 38px;
	font-family: var(--font-poppins);
	font-size: 14px;
	font-weight: 600;
	border: none;
	display: inline-block;
	color: #FFFFFF;
	padding: 0;
	margin: 0 6px;
	border-radius: var(--border-radius);
	border-bottom: 3px solid rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: all 0.3s ease-in;
	text-shadow: 1px 0 1px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 3px -3px 6px rgba(128, 128, 128, 0.1);
	box-shadow: inset 3px -3px 6px rgba(128, 128, 128, 0.1);
}

.buttom .icon {
	float: left;
	width: 38px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.buttom .icon i {
	font-size: 22px;
	vertical-align: -6px;
}

.buttom .text {
	float: right;
	height: 38px;
	text-align: center;
	line-height: 38px;
	padding: 0 16px 0 12px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.buttom.green {
	background-color: var(--color-green);
}

.buttom.red {
	background-color: var(--color-red);
}

.buttom.orange {
	background-color: var(--color-orange);
}

.buttom.blue {
	background-color: var(--color-blue);
}

.buttom.cyan {
	background-color: var(--color-cyan);
}

@media screen and (max-device-width: 480px) and (orientation: portrait) {
	#popup_content {
		width: 80vw;
	}

	#popup_title {
		height: 80px;
		line-height: 80px;
		font-size: 32px;
	}

	#popup_message {
		font-size: 28px;
	}

	#popup_icon i {
		font-size: 80px;
	}

	#popup_panel {
		height: 120px;
	}

	.buttom {
		margin-top: 10px;
		height: 80px;
		font-size: 28px;
	}

	.buttom .icon {
		width: 80px;
		height: 80px;
		line-height: 80px;
	}

	.buttom .icon i {
		font-size: 36px;
	}	

	.buttom .text {
		height: 80px;
		line-height: 80px;
		padding: 0 30px 0 26px;
	}
}