@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


.toolbar {
	padding: 6px;
	background: #eee;
	font-size: 13px;
	box-shadow: 0px 2px 5px #0000003d;
}

.toolbar .head {
	display: flex;
	grid-gap: 10px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.toolbar .head>input {
	max-width: 100px;
	padding: 6px 10px;
	border-radius: 6px;
	border: 2px solid #ddd;
	outline: none;
}

.toolbar .head select {
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 6px;
	outline: none;
	cursor: pointer;
	height: 24px;
	box-shadow: 2px 3px #ddd;
}

.toolbar .head .color {
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 6px;
	outline: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	grid-gap: 6px;
	padding: 0 10px;
	height: 25px;

	text-align: center;
	box-shadow: 2px 3px #ddd;
}

.toolbar .head .color input {
	border: none;
	padding: 0;
	width: 20px;
	height: 20px;
	background: #fff;
	cursor: pointer;
}

.toolbar .head .color input::-moz-color-swatch {
	width: 14px;
	height: 14px;
	border: none;
	border-radius: 50%;
}

.toolbar .btn-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	grid-gap: 10px;
}

.toolbar .btn-toolbar button {
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 2px 3px #ddd;

}

.toolbar .btn-toolbar button.selected {
	background: #979797;
	color: white;
}

.toolbar .btn-toolbar button:hover {
	background: #f3f3f3;
	color: black !important;
}

.toolbar .btn-toolbar button.selected:hover {
	background: #7a7979;
	color: white !important;
}

#content {
	padding: 16px;
	outline: none;
	max-height: 50vh;
	overflow: auto;
}

#show-code[data-active="true"] {
	background: #eee;
}

.cutomeditor-controls {
	text-align: center;
	display: block;
	position: fixed;
	width: 100%;
	top: 0;

	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0px, -80px, 0px);
	-o-transform: translate3d(0px, -80px, 0px);
	-moz-transform: translate3d(0px, -80px, 0px);
	transform: translate3d(0px, -80px, 0px);
	-webkit-transition: -webkit-transform 0.2s ease-out;
	-o-transition: -o-transform 0.2s ease-out;
	-moz-transition: -moz-transform 0.2s ease-out;
	transition: transform 0.2s ease-out;
}

.cutomeditor-large {
	position: absolute;
	left: auto;
	top: -100px;
	bottom: auto;
	width: auto;
	padding: 0px 4px;
	border-radius: 2px;
	-o-border-radius: 2px;
	-ms-border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-opacity: 0;
	opacity: 0;
	-webkit-transform: translate3d(0px, 0px, 0px);
	-o-transform: translate3d(0px, 0px, 0px);
	-moz-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
	-webkit-transition: -webkit-transform 0.2s ease-out;
	-o-transition: -o-transform 0.2s ease-out;
	-moz-transition: -moz-transform 0.2s ease-out;
	transition: transform 0.2s ease-out;
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-o-transition: opacity 0.2s ease-out;
	-ms-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
}

#cutomeditor {
	padding: 4px 8px;
	border-radius: 4px;
	display: none;
}

#cutomeditor[data-show] {
	display: block;
}

#arrow,
#arrow::before {
	position: absolute;
	width: 8px;
	height: 8px;
	background: inherit;
}

#arrow {
	visibility: hidden;
}

#arrow::before {
	visibility: visible;
	content: '';
	transform: rotate(45deg);
}

#cutomeditor button {
	border: 2px solid #ddd;
	border-radius: 6px;
	box-shadow: 2px 3px #ddd;
}

#cutomeditor[data-popper-placement^='top']>#arrow {
	bottom: -2px;
}

#cutomeditor[data-popper-placement^='bottom']>#arrow {
	top: -2px;
}

#cutomeditor[data-popper-placement^='left']>#arrow {
	right: -2px;
}

#cutomeditor[data-popper-placement^='right']>#arrow {
	left: -2px;
}