/*
 * Colors
 */
:root {
	--ic-c-black: #000;
	--ic-c-white: #fff;

	--ic-blue-079: #033b66;

	--ic-grey-002: #f8f9fa;
	--ic-grey-003: #f4f4f4;
	--ic-grey-025: #bebebe;
	--ic-grey-051: #7c7c7c;
	--ic-grey-076: #3e3e3e;
	--ic-grey-092: #151515;
	--ic-grey-700: #767676;
	--ic-grey-900: #212121;

	/* Theme Colors - get from inline styles from theme
	--ic-c-primary: ...
	--ic-c-primary-dark: ...
	--ic-c-primary-light: ...
	--ic-c-secondary: ...
	--ic-c-secondary-dark: ...
	--ic-c-secondary-light: ...
	--ic-c-accent: ...
	--ic-c-accent-dark: ...
	--ic-c-accent-light: ...
	*/
}
:root {
	--ic-space-base: 2rem;
	--ic-space-half: calc(var(--ic-space-base) / 2);
	--ic-space-quarter: calc(var(--ic-space-base) / 4);
}
:root {
	--ic-fs-sm: 1.4rem;
	--ic-fs-base: 1.6rem;
}
.block-editor .editor-styles-wrapper .ic-block-controls {
	background-color: #f8f9fa;
	background-color: var(--ic-grey-002);
	padding: var(--space-base);
}
.block-editor .editor-styles-wrapper .ic-autocomplete-label {
	display: block;
	font-size: 1.4rem;
	font-size: var(--ic-fs-sm);
	margin-bottom: calc(2rem / 4);
	margin-bottom: var(--ic-space-quarter);
}
.block-editor .editor-styles-wrapper .ic-autocomplete__wrapper {
	margin-bottom: 2rem;
	margin-bottom: var(--ic-space-base);
	position: relative;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__hint,
.block-editor .editor-styles-wrapper .ic-autocomplete__input {

	max-width: 500px;
	width: 100%;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__input {
	background-color: transparent;
	position: relative;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__hint {
	position: absolute;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__input--default {
	padding: calc(2rem / 2);
	padding: var(--ic-space-half);
}
.block-editor .editor-styles-wrapper .ic-autocomplete__input--focused {
	border-color: var(--c-primary);
}
.block-editor .editor-styles-wrapper .ic-autocomplete__input--show-all-values {
	cursor: pointer;
	padding: calc(2rem / 4) calc(2rem * 1.5) calc(2rem / 4) calc(2rem / 4);
	padding: var(--ic-space-quarter) calc(var(--ic-space-base) * 1.5) var(--ic-space-quarter) var(--ic-space-quarter);
}
.block-editor .editor-styles-wrapper .ic-autocomplete__menu {
	background-color: #fff;
	background-color: var(--ic-c-white);
	border: 2px solid #151515;
	border: 2px solid var(--ic-grey-092);
	border-top: 0;
	color: #151515;
	color: var(--ic-grey-092);
	list-style: none;
	margin: 0;
	max-height: calc(2rem * 15);
	max-height: calc(var(--ic-space-base) * 15);
	max-width: calc(2rem * 25);
	max-width: calc(var(--ic-space-base) * 25);
	overflow-x: hidden;
	padding: 0;
	padding: 0;
	width: calc(100% - calc(2rem / 4));
	width: calc(100% - var(--ic-space-quarter));
}
.block-editor .editor-styles-wrapper .ic-autocomplete__menu--visible {
	display: block;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__menu--hidden {
	display: none;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__menu--overlay {
	-webkit-box-shadow: rgba(0, 0, 0, #151515) 0 2px 6px;
	        box-shadow: rgba(0, 0, 0, #151515) 0 2px 6px;
	-webkit-box-shadow: rgba(0, 0, 0, var(--ic-grey-092)) 0 2px 6px;
	        box-shadow: rgba(0, 0, 0, var(--ic-grey-092)) 0 2px 6px;
	left: 0;
	position: absolute;
	top: 100%;
	z-index: 100;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__menu--inline {
	position: relative;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__option {
	border-bottom: solid #bebebe;
	border-bottom: solid var(--ic-grey-025);
	border-width: 1px 0;
	cursor: pointer;
	display: block;
	font-size: 1.4rem;
	font-size: var(--ic-fs-sm);
	margin: 0;
	position: relative;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__hint,
.block-editor .editor-styles-wrapper .ic-autocomplete__option {

	padding: calc(2rem / 4);

	padding: var(--ic-space-quarter);
}
.block-editor .editor-styles-wrapper .ic-autocomplete__option > * {
	pointer-events: none;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__option:first-of-type {
	border-top-width: 0;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__option:last-of-type {
	border-bottom-width: 0;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__option--odd {
	background-color: #f4f4f4;
	background-color: var(--ic-grey-003);
}
.block-editor .editor-styles-wrapper .ic-autocomplete__option--focused,
.block-editor .editor-styles-wrapper .ic-autocomplete__option:hover {
	background-color: var(--c-primary);
	border-color: var(--c-primary);
	color: #fff;
	color: var(--ic-c-white);
	outline: 0;
}
.block-editor .editor-styles-wrapper .ic-autocomplete__option--no-results {
	background-color: #f4f4f4;
	background-color: var(--ic-grey-003);
	color: #767676;
	color: var(--ic-grey-700);
	cursor: not-allowed;
}

