/**
 * MITEL Spacer Block Styles
 *
 * @package Mitel
 */

.mitel-spacer {
	width: 100%;
	display: block;
	height: var(--mitel-spacer-desktop, 80px);
}

@media (max-width: 768px) {
	.mitel-spacer {
		height: var(--mitel-spacer-mobile, var(--mitel-spacer-desktop, 80px));
	}
}

.mitel-spacer-editor {
	padding: 16px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.mitel-spacer-editor__preview {
	margin-bottom: 16px;
}

.mitel-spacer-editor__box {
	width: 100%;
	background: repeating-linear-gradient(
		45deg,
		rgba(0, 0, 0, 0.04),
		rgba(0, 0, 0, 0.04) 10px,
		rgba(0, 0, 0, 0.08) 10px,
		rgba(0, 0, 0, 0.08) 20px
	);
	border: 1px dashed #b3b3b3;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555;
}

.mitel-spacer-editor__box .components-resizable-box__handle.components-resizable-box__handle-bottom {
	border-color: #2271b1;
}

.mitel-spacer-editor__box-label {
	font-size: 12px;
	font-weight: 600;
	color: #1e1e1e;
}

.mitel-spacer-editor__hint {
	display: block;
	margin-top: 8px;
	color: #555;
	font-size: 11px;
}

.mitel-spacer-editor__box--fallback {
	background: #f0f0f0;
	border: 1px dashed #bbb;
	text-align: center;
	line-height: 1;
	font-weight: 600;
}
