﻿@charset "UTF-8";
/*
* @data 2018-8-1
*
* E.SUN PAY Stylesheet
--------------------------------
   1. Popup
   2. Term
   3. RWD
--------------------------------
*/


		/*===============================
			1. Popup
		================================*/
		.popup{
			z-index: 500;
			position: fixed;
			top: 0;
			left: 0;
			height: 100%;
			width: 100%;
			overflow: auto;
			background: rgba(0, 0, 0, .5);
		}
        .popupMobileTerm {
            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: 520px;
			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;
		}
		.popupContent{
			padding: 20px;
		}
		/*===============================
			2. Term
		================================*/
		.termSet{
			margin-bottom: 10px;
		}
		.termTitle{
			height: 44px;
			line-height: 44px;
			font-size: 18px;
			font-weight: bold;
			text-align: center;
			background: rgba(0, 158, 150, .2);
			border-radius: 5px;
			background-image: url(../IMG/ic_arrow_green.png);
			background-repeat: no-repeat;
			background-size: 15px 9px;
			background-position: 97% center;
			cursor: pointer;
		}
		.termTitle:hover{
			background: rgba(0, 158, 150, .3);
			background-image: url(../IMG/ic_arrow_green.png);
			background-repeat: no-repeat;
			background-size: 15px 9px;
			background-position: 97% center;
		}
		.termTitle.termOn{
			background: rgba(0, 158, 150, 1);
			border-radius: 5px 5px 0 0;
			background-image: url(../IMG/ic_arrow_white_up.png);
			background-repeat: no-repeat;
			background-size: 15px 9px;
			background-position: 97% center;
			color: #FFF;
			cursor: default;
		}
		.termContent{
			height: 0px;
			overflow-y: hidden;
			border: 0px;

			transition: height .4s ease 0s;
			-webkit-transition: height .4s ease 0s;
			-moz-transition: height .4s ease 0s;
			-ms-transition: height .4s ease 0s;
			-o-transition: height .4s ease 0s;
		}
		.termContent.termOn{
			height: 380px;
			overflow-y: auto;
			padding: 10px;
			border: 1px solid #009E96;
			
			transition: height .4s ease 0s;
			-webkit-transition: height .4s ease 0s;
			-moz-transition: height .4s ease 0s;
			-ms-transition: height .4s ease 0s;
			-o-transition: height .4s ease 0s;
		}
		.termContent p, .termContent h1, .termContent h2{
			margin: 0;
			padding: 0;
		}
		.termContent p{
			font-size: 14px;
			text-align: justify;
			line-height: 21px;
			margin-bottom: 8px;
		}
		.termContent h1{
			font-size: 18px;
			line-height: 27px;
			font-weight: bold;
		}
		.termContent h2{
			font-size: 16px;
			line-height: 24px;
			font-weight: bold;
		}
		.termContent a{
			color: #009E96;
		}
		.popupBtn{
			margin-top: 15px;
		}
		/*===============================
			3. RWD
		================================*/
		@media screen and (max-width: 768px){
			.popupContainer{
				margin: 30px auto;
			}
		}