@charset "UTF-8";
/*
* @data 2022-07-15
* Author: Alyshia Lee #7711
*
* E.SUN Wallet Web FAQ Stylesheet
-----------------------------------
   1. Menu
   2. Content
-----------------------------------
*/


body{
	background-image: url();
	background-repeat: repeat-y;
	background-position: top center;
	background-size: cover;
}
.sectionMainTitle{
	color: #0b3452;

}
/*===============================
	1. Menu
================================*/
#faqMenuContainer{
	display: grid;
	grid-gap: 50px;
	padding-bottom: 30px;
	transition: all 0.3s ease-out;
	display: flex;
	justify-content: center
}
#faqMenuContainer.active{
	grid-gap: 15px;
	grid-template-columns: repeat(6,1fr);
		-ms-grid-columns: repeat(6,1fr);
	border-bottom: 2px dashed rgba(216, 233, 217, 0.5);
	transition: all 0.3s ease-out;
}
.menuCategorySet{
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	border-radius: 15px;
	box-sizing: border-box;
	height: 180px;
	font-weight: 500;
	background: #FFF;
	transition: all 0.3s ease-out;
	cursor: default;
}
#faqMenuContainer.active .menuCategorySet{
	border-radius: 10px;
	height: 80px;
}
.menuCategorySet.green{
	border: 2px solid #00A19B;
	width: 25%;
}
#faqMenuContainer.active .menuCategorySet.green{
	border: 1px solid #00A19B;
}
.menuCategorySet.green.selected{
	background: #00A19B;
}
.menuCategorySet.yellow{
	border: 2px solid #FFAF15;
	width: 25%;
}
#faqMenuContainer.active .menuCategorySet.yellow{
	border: 1px solid #FFAF15;
	width: 25%;
}
.menuCategorySet.yellow.selected{
	background: #F4A202;
	border: 1px solid #F4A202;
}
.menuCategorySet.green:hover, .menuCategorySet.green:active{
	background: rgba(0, 161, 155, 0.1);
}
.menuCategorySet.green.selected:hover, .menuCategorySet.green.selected:active{
	background: rgba(0, 161, 155, 1);
}
.menuCategorySet.yellow:hover, .menuCategorySet.yellow:active{
	background: rgba(255, 175, 21, 0.1);
}
.menuCategorySet.yellow.selected:hover, .menuCategorySet.yellow.selected:active{
	background: rgba(244, 162, 2, 1);
}
.categoryIcon{
	margin-bottom: 10px;
}
.categoryIcon img{
	width: 48px;
}
#faqMenuContainer.active .categoryIcon{
	display: none;
}
.categoryText{
	font-size: 24px;
}
#faqMenuContainer.active .categoryText{
	font-size: 20px;
}
.menuCategorySet.green .categoryText{
	color: #00A19B;
}
.menuCategorySet.yellow .categoryText{
	color: #F4A202;
}
.menuCategorySet.selected .categoryText{
	color: #FFF;
}

@media screen and (max-width: 1080px){
	/*=== Menu ===*/
	#faqMenuContainer{
		grid-template-columns: repeat(4,1fr);
		-ms-grid-columns: repeat(4,1fr);
	}
	#faqMenuContainer.active{
		grid-template-columns: repeat(5,1fr);
		-ms-grid-columns: repeat(5,1fr);
	}
	.menuCategorySet{
		height: 150px;
	}
	#faqMenuContainer.active .menuCategorySet{
		height: 46px;
		border-radius: 8px;
	}
	.categoryIcon{
		margin-bottom: 0px;
	}
	.categoryIcon img{
		width: 40px;
	}
	.categoryText{
		font-size: 20px;
	}
	#faqMenuContainer.active .categoryText{
		font-size: 18px;
	}
}
@media screen and (max-width: 768px){
	/*=== Menu ===*/
	#faqMenuContainer{
		grid-gap: 15px;
	}
	#faqMenuContainer.active{
		grid-gap: 10px;
		grid-template-columns: repeat(5,1fr);
		-ms-grid-columns: repeat(5,1fr);
		padding-bottom: 20px;
	}
	.menuCategorySet{
		height: 120px;
	}
	.menuCategorySet.green{
		border: 1px solid #00A19B;
	}
	.menuCategorySet.yellow{
		border: 1px solid #FFAF15;
	}
	.categoryText{
		font-size: 18px;
	}
}
@media screen and (max-width: 600px){
	/*=== Menu ===*/
	#faqMenuContainer{
		grid-gap: 10px;
	}
	#faqMenuContainer.active{
		grid-template-columns: repeat(4,1fr);
		-ms-grid-columns: repeat(4,1fr);
	}
	.menuCategorySet{
		height: 85px;
		border-radius: 10px;
	}
	#faqMenuContainer.active .menuCategorySet{
		height: 42px;
	}
	.categoryIcon img{
		width: 30px;
	}
	.categoryText{
		font-size: 16px;
	}
	#faqMenuContainer.active .categoryText{
		font-size: 16px;
	}
}
@media screen and (max-width: 414px){
	/*=== Menu ===*/
	#faqMenuContainer{
		grid-template-columns: repeat(3,1fr);
		-ms-grid-columns: repeat(3,1fr);
	}
	#faqMenuContainer.active{
		grid-template-columns: repeat(3,1fr);
		-ms-grid-columns: repeat(3,1fr);
	}

	.menuCategorySet.green{
		width: 35%;
	}
	.menuCategorySet.yellow{
		width: 35%;
	}
	#faqMenuContainer.active .menuCategorySet.yellow{
		width: 35%;
	}
	#faqMenuContainer{
		grid-gap: 25px;
	}
	#faqMenuContainer.active{
		grid-gap: 20px;
	}
	.faqContentTitle {
		padding-left: 25px;
	}
	.faqContentTitle-b {
		padding-left: 25px;
	}
	
}

/*===============================
	2. Content
================================*/
.faqContentContainer{
	padding-top: 30px;
	display: none;
}
.faqContentContainer.show{
	display: block;
}
.faqContentTitle{
	font-size: 30px;
	color: #00A19B;
	font-weight: 700;
	margin-bottom: 20px;
}
.faqContentTitle-b{
	font-size: 30px;
	color: #FFAF15;
	font-weight: 700;
	margin-bottom: 20px;
}
.qaSet{
	line-height: 1.6;
	padding: 20px 15px 0;
	position: relative;
	border-bottom: 1px solid #BDBDBD;
	letter-spacing: 0.08em;
}
.qaSet.open{
	background: rgba(216, 233, 217, 0.1);
}
.qaSet::before{
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	background-image: url(../images/ic_annotation_bluesquare.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	left: 15px;
	top: 27.5px;
}
.qaBtn{
	width: 45px;
	height: 45px;
	border-radius: 100%;
	border: 1px solid #74ab77;
	box-sizing: border-box;
	position: absolute;
	right: 15px;
	top: 15px;
}
.qaBtn:hover{
	background: #FBFBFB;
}
.qaSet.open .qaBtn{
	background-color: #74ab77;
}
.qaSet.open .qaBtn:hover{
	background-color: #9BC79D;
}

.qaBtn .horizontal, .qaBtn .vertical{
	position: absolute;
	background-color: #74ab77;
	border-radius: 1.5px;
	left: 50%;
	top: 50%;
	transition: all 0.3s ease-in-out;
}
.qaBtn .horizontal{
	width: 17px;
	height: 3px;
	margin-left: -8.5px;
	margin-top: -1.5px;
}
.qaBtn .vertical{
	width: 3px;
	height: 17px;
	margin-left: -1.5px;
	margin-top: -8.5px;
}
.qaBtn .horizontal {
	transform: rotate(-90deg);
	opacity: 1;
}
.qaBtn .vertical {
	transform: rotate(-90deg);
}
.qaSet.open .qaBtn .horizontal, .qaSet.open .qaBtn .vertical{
	transition: all 0.3s ease-in-out;
	transform: rotate(90deg);
	background-color: #FFF;
}
.qaSet.open .qaBtn .horizontal{
	opacity: 0;
}
.qaSet.open .qaBtn .vertical{
	opacity: 1;
}
.qaTextContainer{
	padding-left: 35px;
}
.qaTitle{
	font-size: 22px;
	color: #555;
	padding-bottom: 20px;
	padding-right: 55px;
}
.qaSet.open .qaTitle{
	font-weight: 700;
	color: #333;
}
.qaContent{
	font-size: 16px;
	opacity: 0;
	max-height: 0;
	word-wrap: break-word;
	word-break: break-all;
      overflow-wrap: break-word;
	transition: all 0.3s ease-in-out;
}
.qaSet.open .qaContent{
	opacity: 1;
	max-height: 100%;
	padding-bottom: 20px;
	transition: all 0.3s ease-in-out;
}
.qaContent a{
	color: #00A19B;
	border-bottom: solid 1px #00a19b;
}
.qaContent a:hover{
	font-weight: 700;
}
.qaContent ul, .qaContent ol{
	padding-left: 25px;
}

/*== Table ==*/
.qaContent table, .qaContent th, .qaContent td{
	border: 1px solid #C3C3C3;
	border-collapse: collapse;
}
.qaContent table{
	margin-top: 10px;
	width: 100%;
	display: table;
}
.qaContent th, .qaContent td{
	padding: 5px;
	box-sizing: border-box;
}
#ePay07Table{
	margin-bottom: 10px;
}
#ePay07Table tr:nth-child(4) td:first-child{
	width: 50px;
}
#ePay07Table tr:first-child th:nth-child(2),#ePay07Table tr:first-child th:nth-child(3){
	width: 40%;
}
#ePay07Table tr:nth-child(2) td:nth-child(1), #ePay07Table tr:nth-child(2) td:nth-child(3), #ePay07Table tr:nth-child(2) td:nth-child(4), #ePay07Table tr:nth-child(3) td:nth-child(2), #ePay07Table tr:nth-child(3) td:nth-child(3), #ePay07Table tr:nth-child(4) td:nth-child(1), #ePay07Table tr:nth-child(4) td:nth-child(3){
	text-align: center;
}

@media screen and (max-width: 1080px){
	/*== Table ==*/
	#ePay07Table tr:first-child th:nth-child(2),#ePay07Table tr:first-child th:nth-child(3){
		width: 34%;
	}
}

@media screen and (max-width: 768px){
	.qaSet::before{
		top: 24px;
	}
	.faqContentContainer{
		padding-top: 20px;
	}
	.faqContentTitle{
		font-size: 30px;
		font-weight: 700;
		margin-bottom: 20px;
	}
	.faqContentTitle-b{
		font-size: 30px;
		font-weight: 700;
		margin-bottom: 20px;
	}
	.qaBtn{
		width: 35px;
		height: 35px;
		top: 17px;
	}
	.qaBtn .horizontal{
		width: 15px;
		margin-left: -7.5px;
	}
	.qaBtn .vertical{
		height: 15px;
		margin-top: -7.5px;
	}
	.qaTextContainer{
		padding-left: 30px;
	}
	.qaTitle{
		font-size: 18px;
		padding-right: 45px;
	}
	.qaContent{
		font-size: 14px;
	}
	/*== Table ==*/
	#ePay07Table tr:nth-child(4) td:first-child{
		width: 43px;
	}
}

@media screen and (max-width: 414px){
	.qaTextContainer{
		padding-left: 10px;
	}
}

@media screen and (max-width: 385px){
	.faqContentTitle{
		font-size: 22px;
	}
	.faqContentTitle-b{
		font-size: 22px;
	}
	.qaSet{
		padding: 15px 15px 0;
	}
	.qaSet::before{
		width: 16px;
		height: 16px;
		left: 15px;
		top: 21px;
	}
	.qaTitle{
		padding-bottom: 15px;
	}
	/*== Table ==*/
	#ePay07Table tr:nth-child(2) td:nth-child(2){
		width: 43px;
	}
}