//global-editor-style
.global-editor-bg{
    background-color: red;
}

#editor div[class^="wp-block-blockly-"] {
	.bly-change-image {
		position: absolute;
		z-index: 50;
		padding: 0;
		top: 0;
		left: 0;
		opacity: 1;
		height: 100%;

		img {
			transition: .2s ease;
		}

		&:hover {
			img {
				opacity: .7
			}
		}
	}

	.bly-change-image:focus {
		background: none;
		border: none;
		outline: none;
		box-shadow: none;
	}

	.bly-add-image {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 50;
		padding: 0;
		width: 100%;
		height: 100%;

		svg {
			position: absolute;
			top: 17px;
			left: 19px;
		}
	}

	.bly-remove-image {
		color: #ec3939;
		position: absolute;
		right: 0;
		top: 0;
		height: auto;
		width: 20px;
		left: auto;
		z-index: 60;
		margin: 0;
		padding: 0;
		background: #fff;
		border-radius: 50px;

		&:active,
		&:focus {
			color: #ec3939;
			background: #fff;
		}
	}

	.bly-remove-image:not(:disabled):not([aria-disabled=true]):focus {
		background: #fff;
	}
}

.bly-inspector-help-text {
	.components-base-control__help {
		margin-top: 0;
	}
}