.block-editor-block-list__block.wp-block-acf-pc-custom-resource {
	background: #ccc;
	padding: 1em;
}
.block-editor-block-list__block.wp-block-acf-pc-custom-resource.is-selected {
	border: 3px dashed #111;
}

.block-editor-block-list__block.wp-block-acf-pc-custom-resource.is-selected:before {
	content: 'Please fill in the fields to the right.';
	display: block;
	text-align: center;
	margin-bottom: 10px;
}
.block-editor-block-list__block.wp-block-acf-pc-custom-resource .acf-block-preview {
	background: #fff;
	padding: 1em;
}
.block-editor-block-list__block.wp-block-acf-pc-custom-resource .acf-block-preview > a {
	min-height: 40px;
}
.wp-block-pc-resource {
	background: rgba(0,0,0,0);
	border-bottom: 1px solid #000;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	overflow: hidden;
	position: relative;
	transition: all .25s ease;
}

.wp-block-pc-resource:hover {
	background: rgba(0,0,0,.05);
}

.wp-block-pc-resource > span {
	color: #000;
	font-size: 1.4em;
	text-align: left;
	width: 72%;
}

.wp-block-pc-resource > span > small {
	font-size: .6em;
	width: 100%;
}

.wp-block-pc-resource > .resource-img {
	background-position: center;
	background-size: cover;
	min-height: 70px;
	width: calc(30% - 120px);
}

.wp-block-pc-resource:after {
    background: url(images/chunky-arrow.svg);
    background-size: cover;
    content: '';
    display: inline-block;
    filter: invert(0);
    position: absolute;
    	right: 33px;
    height: 26px;
    transform: rotate(45deg);
    transition: all .25s ease;
    width: 26px;
}

.wp-block-pc-resource.arrow-down:after {
	transform: rotate(135deg);
	margin-top: 0;
}

.wp-block-pc-resource:hover:after {
	right: 25px;
}

.wp-block-pc-resource.arrow-down:hover:after {
    right: 33px;
  	margin-top: 5px;
}
