﻿@charset "UTF-8";
/*
* @data 2018-8-10
*
* E.SUN PAY Stylesheet
--------------------------------
   1. General
   2. Content
   3. Btn
   4. RWD
--------------------------------
*/

		/*===============================
			1. General
		================================*/
		.popup{
			z-index: 500;
			position: fixed;
			top: 0;
			left: 0;
			height: 100%;
			width: 100%;
			overflow: auto;
			background: rgba(0, 0, 0, .5);
		}
		.popupContainer{
			position: relative;
			width: 90%;
			max-width: 750px;
			height: auto;
			background: #FFF;
			border-radius: 5px;

			box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
			-webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
			-moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
			-ms-box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
			-o-box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);

			margin: 100px auto;
		}
		/*===============================
			2. Content
		================================*/
		.popupContent{
			padding: 20px;
		}
		.popupContent header{
			text-align: center;
			color: #009E96;
			font-weight: bold;
			font-size: 22px;
		}
		.popupContent .popupText{
			margin: 50px auto;
			width: 90%;
			font-weight: normal;
			color: #222;
			font-size: 18px;
			line-height: 27px;
			text-align: center;
		}
		.popupContent .popupText p{
			margin: 0;
			padding: 0;
			text-align: justify;
		}
		.popupText .emp{
			font-weight: bold;
			color: #009E96;
		}
		.popupAlertIc{
			margin: 25px auto 0 auto;
			width: 55px;
		}
		.popupAlertIc img{
			width: 55px;
			height: 55px;
		}
		.popupAlertIc + .popupText{
			margin: 30px auto 50px auto;
		}
		/*===============================
			3. Btn
		================================*/
		.popupBtn.twoBtn{
			height: 45px;
			width: 282px;
			display: block;
			margin: 0 auto;
			position: relative;
		}
		.popupBtn.twoBtn input[type="button"]{
			float: left;
			margin-right: 30px;
		}
		.popupBtn.twoBtn input[type="button"]:last-child{
			margin-right: 0px;
		}
		/*===============================
			4. RWD
		================================*/
		@media screen and (max-width: 768px){
			.popupContainer{
				margin: 30px auto;
			}
		}