.wcv-box{
	background:#fff;
	border:1px solid rgba(0,0,0,.08);
	border-radius:12px;
	overflow:hidden;
	margin-bottom:16px;
}

.wcv-header{
	width:100%;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:14px 16px;
	background:transparent;
	border:0;
	cursor:pointer;
	text-align:left;
}

.wcv-header__left{
	display:flex;
	align-items:center;
	gap:12px;
}

.wcv-header__icon{
	width:32px;
	height:32px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#f3f4f6;
	border-radius:8px;
}

.wcv-header__content strong{
	display:block;
	font-size:14px;
	line-height:1.3;
}

.wcv-header__content span{
	display:block;
	font-size:12px;
	opacity:.65;
}

.wcv-header__arrow{
	transition:transform .25s ease;
}

.wcv-body{
	padding:22px 16px 18px;
	overflow:hidden;
	max-height:5000px;
	opacity:1;
	transition:
		max-height .3s ease,
		opacity .2s ease,
		padding .2s ease;
}

.wcv-box.is-collapsed .wcv-header__arrow{
	transform:rotate(-90deg);
}

.wcv-box.is-collapsed .wcv-body{
	max-height:0;
	opacity:0;
	padding-top:0;
	padding-bottom:0;
}