.my-tab-title{
	padding: 15px 0px;
	font-size: 20px;
	line-height: 25px;
	font-weight: 500;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.my-title{
	display: inline-block;
	/* width: 95%; */
	width: 100%;
	font-weight: 700;
	color: #333;
}
.my-arrow{
	display: inline-block;
	width: auto;
	content: '';
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #b9b9b9;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	margin-left: 5px;
}
.my-title-active .my-arrow{
	transform: translateY(-50%) rotate(180deg);
}
/* .my-toggle-item:last-of-type div.my-tab-title {
	border-bottom: 1px solid #fff;
} */
.my-title-active{
	border-bottom: 0;
}
.my-tab-content{
	display: none;
}
.my-content p:last-child{
	margin-bottom: 0;
}
.my-content{
	padding: 15px;
  	background-color: #f4f4f4;
	border-radius: 3px;
	border: 1px solid var( --e-global-color-4e619c8 );
}
.my-content ul, .my-content ol{
	padding-left: 25px;
	margin-bottom: 10px;
}

@media (max-width: 991.98px) {

}

@media (max-width: 767.98px) {
	.my-tab-title{
		font-size: 17px;
		line-height: 20px;
		padding: 10px 0px;
	}
	.my-content{
		padding: 10px;
		border-radius: 3px;
		line-height: 23px;
	}
}