.block-editor-block-content-overlay {
	&.overlay-active::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: transparent;
		border: none;
		border-radius: $radius-block-ui;
		z-index: z-index(".block-editor-block-content-overlay__overlay");
		pointer-events: none;
	}

	&:hover:not(.is-dragging-blocks).overlay-active::before,
	&.parent-highlighted.overlay-active::before {
		background: rgba(var(--gc-admin-theme-color--rgb), 0.1);
		box-shadow: 0 0 0 $border-width var(--gc-admin-theme-color) inset;
	}

	&.overlay-active:not(.is-dragging-blocks) * {
		pointer-events: none;
	}

	&.is-dragging-blocks {
		box-shadow: 0 0 0 $border-width var(--gc-admin-theme-color);
	}
}
