#dubeb_wrap .switch{
	position: relative;
	padding-right: 12px;
}
#dubeb_wrap .switch input{
	position: absolute;
	opacity: 0;
}
#dubeb_wrap .switch input + span{
	position: relative;
	display: block;
	width: 26px;
	height: 14px;
	background: #ce5959;
	border-radius: 7px;
	transition: background-color 0.15s ease;
}
#dubeb_wrap .switch input:checked + span{
	background-color: #73ce59;
}
#dubeb_wrap .switch input + span:after{
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
	transition: left .15s ease;
}
#dubeb_wrap .switch input:checked + span:after{
	left: 14px;
}

#show_core_blocks_label{
	display: inline-flex;
	align-items: center;
	margin-top: 15px;
}

#your-blocks{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
#dubeb_wrap .category,
#dubeb_wrap .block-item{
	background: #fff;
	border: 1px solid #ccd0d4;
	border-radius: 2px;
}
#dubeb_wrap .category .body{
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), auto));
}
#dubeb_wrap .header{
	display: flex;
	align-items: center;
	margin: -1px;
	background: #2271b1;
	border-bottom: 1px solid #ccd0d4;
	color: #fff;
}
#dubeb_wrap .block-item .header{
	margin: 0;
	background: #f3f4f5;
	color: #000;
	cursor: pointer;
}
#dubeb_wrap .title{
	padding: 10px 20px;
	flex-grow: 1;
}
#dubeb_wrap .block-item .title{
	padding: 0 15px;
}
#dubeb_popup .block-info .dashicons,
#dubeb_wrap .dashicons{
	box-sizing: content-box;
	padding: 10px;
	background: #fff;
	border-right: 1px solid #ccd0d4;
}
#dubeb_popup .block-info .dashicons > *,
#dubeb_wrap .dashicons > *{
	width: 100%;
	height: auto;
}
#dubeb_wrap .dashicons > svg{
	fill: currentColor;
}

#dubeb_wrap .body{
	padding: 20px;
	background: #fafafa;
}
#dubeb_wrap .block-item .body{
	display: block;
	padding: 12px 15px;
	background: #fff;
}

#dubeb_wrap .info > div + div{
	margin-top: 6px;
}
#dubeb_wrap .usage-info code{
	border-radius: 4px;
}
#dubeb_wrap .block-item[data-usage="1"] .usage-info code{
	background-color: #cfc;
}
#dubeb_wrap .block-item[data-usage="0"] .usage-info code{
	background-color: #ffc6c6;
}
#dubeb_wrap .description{
	margin: 12px -15px 0;
	padding: 10px 15px 0;
	border-top: 1px solid #ccd0d4;
	font-size: 11px;
	color: #999;
}