.components-drop-zone {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: z-index(".components-drop-zone");
	visibility: hidden;
	opacity: 0;
	border-radius: $radius-block-ui;

	&.is-active {
		opacity: 1;
		visibility: visible;
	}
}

.components-drop-zone__content {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	display: flex;
	background-color: var(--gc-admin-theme-color);
	align-items: center;
	justify-content: center;
	z-index: z-index(".components-drop-zone__content");
	text-align: center;
	color: $white;
}

.components-drop-zone__content-icon,
.components-drop-zone__content-text {
	display: block;
}

.components-drop-zone__content-icon {
	margin: 0 auto;
	line-height: 0;
	fill: currentColor;
	pointer-events: none;
}

.components-drop-zone__content-text {
	font-family: $default-font;
	font-size: $default-font-size;
}
