﻿@charset "UTF-8";
/*
* @data 2019-08-20
* Author: Alyshia Lee #7711
*
* E.SUN CREDITCARD ADDITIONAL FILE 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);
			display: none;
		}
		.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;
		}
		#countDown {
			color:red;
		}
		/*===============================
			2. Content
		================================*/
		.popupContent{
			padding: 20px;
		}
		.popupContent header{
			text-align: center;
			color: #009E96;
			font-weight: bold;
			font-size: 22px;
		}
		.popupContent .headerAnnotation{
			font-size: 16px;
			font-weight: normal;
		}
		.popupContent .popupText{
			margin: 50px auto;
			width: 90%;
			font-weight: normal;
			color: #222;
			font-size: 18px;
			line-height: 1.5;
		}
		.popupContent .popupText p,
		.popupContent .popupText ul,
		.popupContent .popupText ul li{
			margin: 0;
			padding: 0;
			text-align: justify;
		}
		.popupContent .popupText ul li{
			list-style: none;
			position: relative;
			padding-left: 30px;
		}
		.popupContent .popupText ul li::before{
			display: block;
			position: absolute;
			left: 0;
			top: 0;
		}
		.popupText .emp{
			font-weight: bold;
			color: #009E96;
		}
		/*=== 2019/08/20 NEW ===*/
		.popupText .notice{
			font-weight: bold;
			color: #EB8300;
		}
		.popupText .alert{
			font-weight: bold;
			color: #F94E4E;
		}
		.popupText.errorPopup .emp{
			font-weight: bold;
			color: #EB8300;
		}
		/*==With Alert Icon==*/
		.popupContent header.errorPopup{
			color: #EB8300;
			margin-bottom: 15px;
		}
		.popupAlertIcon {
			margin: 25px auto 15px auto;
			width: 55px;
		}
		.popupAlertIcon img{
			width: 55px;
			height: 55px;
		}
		.popupContent .popupText.errorPopup{
			margin: 0 auto 50px;
		}
		.popupContent .popupText.errorPopup p{
			margin: 0;
			padding: 0;
			text-align: left;
			text-align: justify;
		}
		/*==Text Frame==*/
		.textFrame{
			height: 150px;
			margin: 20px auto 20px;
			padding: 15px;
			border: 1px solid #C3C3C3;
			overflow-y: auto;
			font-size: 14px;
			line-height: 1.5;
		}
		/*==KeyID==*/
		.keyIDtext{
			color: black !important;
			font-size: 12px !important;
			display: block;
		}
		/*===============================
			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 a{
			float: left;
			margin-right: 30px;
		}
		.popupBtn.twoBtn input[type="button"]:last-child{
			margin-right: 0px;
		}
		.popupBtn.twoBtn a:last-child{
			margin-right: 0px;
		}
		.popupContainer .closeBtn{
			width: 22px;
			height: 22px;
			background-image: url(../../images/ui/ic_gray_x.png);
			background-size: 22px 22px;
			background-repeat: no-repeat;
			position: absolute;
			top: 12px;
			right: 12px;
			cursor: pointer;
		}
		.popupContainer .closeBtn:hover{
			background-image: url(../../images/ui/ic_darkgray_x.png);
			background-size: 22px 22px;
			background-repeat: no-repeat;
		}
		@media screen and (max-width: 360px){
			.popupBtn.twoBtn{
				width: 90%;
			}
			.popupBtn.twoBtn .btn-s{
				width: 48%;
				max-width: none;
			}
			.popupBtn.twoBtn input[type="button"]{
				margin-right: 3%;
			}
			.popupBtn.twoBtn a{
				margin-right: 3%;
			}
			.popupBtn.twoBtn input[type="button"]:last-child{
				margin-right: 0px;
			}
			.popupBtn.twoBtn a:last-child{
				margin-right: 0px;
			}
		}
		/*===============================
			4. RWD
		================================*/
		@media screen and (max-width: 768px){
			.popupContainer{
				margin: 30px auto;
			}
		}
		@media screen and (max-width: 400px){
			.popupContent .popupText{
				width: 80%;
			}
			.popupContent{
				padding: 20px 5px;
			}
			.popupContent header{
				font-size: 20px;
			}
		}