.custom_box{
    cursor: pointer;
}
.custom_box span:first-of-type {
    font-weight: bold;
}
.custom_box span:last-of-type {
	text-align: right;
}
.custom_box span:last-of-type:after {
	content: "";
	height: 100%;
	display: inline-block;
	border-top: .625rem solid #222222;
	border-left: transparent .625rem solid;
	border-right: transparent .625rem solid;
	border-bottom: transparent .625rem solid;
	transform: translateY(50%);
	transition: transform 0.5s ease-in-out;
    transform-origin: 50% 25%; 
}
.open span:last-of-type:after {
	transform: rotate(180deg) translateY(-50%);
}
.moreContent {
	transition: height 0.5s ease-in-out;
	overflow: hidden;
    display: flex ;
    flex-direction: column;
}
