@charset "utf-8";
/***************************************
	Created by www.makeweb.com.tw
	  
	E-Mail:service@makeweb.com.tw
***************************************/
.transform_reverse{
	transform: rotate(180deg)
}
.qa_arrow{
	width: 100%;
	max-width: 18px !important;
	float: right;
	margin-top: 5px;
}
.tab_title_box .main_blue_btn{
	background: #3cc5a0;
}
.tab_title_box .main_blue_btn:hover{
	background: #38b291;
}
.item_border {
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	color: #222;
	background: #a8f7de;
	width: 100%;
	padding: 18px 0px;
	border-radius: 4px;
}

.font_color_blue{
	background: #9ae1cb;
	box-shadow: 1px 1px 3px 2px rgba(20%, 20%, 40%, 0.5) inset;
}

.tab_title_box{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 0 10px;
}

.canvas_post .container{
	max-width: 960px;
	margin: 40px auto;
}

.copy {
	max-width: 1280px;
	padding-top: 50px;
	margin: auto;
	text-align: right;
}

.copy .copy-button {
	display: inline-block;
	color: white;
	background-color: #3cc5a0;
	padding: 6px 30px;
	border-radius: 50px;
}

.tab_box{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	/* grid-template-rows: repeat(3, 1fr); */
	justify-items: center;
	grid-gap: 15px;
	margin: 20px;
}

.item_category{
	width: 100%;
	text-align: center;
}

.item_category a:hover{
	background: #9ae1cb;
	color: #222;
}

.qa_post{
	margin: 10px 0;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
	font-size: 2rem;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
	background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
	padding: 0 18px;
	background-color: white;
	display: none;
	overflow: hidden;
}


/*-------------------------------------------- 
	Media Queries 
---------------------------------------------*/
/* Portrait and Landscape */
/*@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
}*/

/*iPad Pro*/
@media screen and (max-width: 1279px) {

}

/*iPad*/
@media screen and (max-width: 1023px) {

}


/*iPhone*/
@media screen and (max-width: 767px) {
	.tab_box{
		grid-template-columns: repeat(1, 1fr);
	}
	.item_category{
		width: 100%;
		text-align: center;
	}
	.item_category a{
		width: 100%;
		padding: 8px 0px;
	}

}