@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*

+---------+----------------------------+
| z-index |            item            |
+---------+----------------------------+
|       2 | #credits                   |
|       2 | #config_buttons            |
|       5 | #config_sidebar            |
|      10 | #logo_brand                |
|      10 | #titolo                    |
|      10 | #ar_model_viewer_container |
|      25 | .window                    |
|      50 | #intro_text                |
|     997 | #notifications             |
|     998 | .alertification            |
|     999 | #loader                    |
+---------+----------------------------+

+-------------+-------+---------+-------------------------------+
| background  | color | opacity |             item              |
+-------------+-------+---------+-------------------------------+
| white       | #333  |       1 | body                          |
| #dddddd     | _     |       1 | #configurator                 |
| 127,127,127 | _     |     0.1 | .closex                       |
| 0,0,0       | white |     0.5 | #loader                       |
| white       | #333  |       1 | #config_sidebar               |
| white       | _     |       1 | #config_sidebar .panel p span |
| #dddddd     | _     |       1 | #ar_model_viewer_container    |
+-------------+-------+---------+-------------------------------+

Screen sizes:
iPad w1080
tablet w1024
smartphone w768

*/

:root {

	/* COLORS */
	--maincolor: #bf983d;
	--secondarycolor: #fff;
	--color: #fff;
	--background: #353535;
	--webglbackround: transparent;

	/* FONTS */
	--regularsize: 300;
	--boldsize: 600;

	/* APPEAL */
	--borderradius: 0px;

}

* {
	margin: 0;
	padding: 0;
	outline: 0;
	-webkit-box-sizing: border-box !important;
	box-sizing: border-box !important;
	/*
	-webkit-touch-callout: none;
		-webkit-user-select: none;
			-khtml-user-select: none;
				-moz-user-select: none;
					-ms-user-select: none;
						user-select: none;
	*/
}

.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	line-height: 0;
	visibility: hidden;
}

.hidden {
	display: none;
}

.nobreak {
	white-space: nowrap;
	text-overflow: ellipsis;
}

img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}

html,
body {
	height: 100%;
	background-color: var(--background);
	color: var(--color);
	font-family: 'Montserrat', 'Heebo', sans-serif;
	font-weight: 100;
	font-size: 16px;
	line-height: 1.33;
}

@media (max-width: 768px) {

	html,
	body {
		font-size: 12px;
	}

}

sup {
	opacity: 0.33;
	line-height: 0.1;
}

#configurator,
#config_graphics,
#config_render,
canvas {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

#configurator {
	transition: background 1s ease;
}

#config_graphics {
	background-color: var(--webglbackround);
	position: absolute;
	transition: all 1s ease;
	top: 0;
	left: 0;
}

#config_render {
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: grab;
}

@media (max-width: 1024px) {

	.configuring #config_graphics {
		height: 50%;
		top: 0%;
	}

}

@media (min-width: 1025px) {

	.configuring #config_graphics {
		width: 67%;
		left: 33%;
	}

}

#view_all_button {
	font-size: 0.8em;
	position: absolute;
	top: 2vh;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: none;
}

#ar_overlay {}

h1,
h2,
h3 {
	display: block;
	font-weight: 300;
	margin: 0 0 0.75em;
	flex-basis: 100%;
	text-transform: uppercase;
}

p {
	margin: 0 0 0.5em;
}

ul,
ol {
	list-style-position: inside;
	margin: 0 0 0.5em;
}

h1 {
	font-size: 1.4em;
}

h2 {
	font-size: 1.2em;
	color: var(--maincolor);
}

h3 {
	font-size: 1.2em;
}

a,
.link {
	color: inherit;
	display: inline-block;
	cursor: pointer;
	text-decoration: underline;
}

a:hover,
.link:hover {
	color: var(--maincolor);
}

small,
.small {
	font-size: 0.75em;
}

[disabled],
.disabled {
	opacity: 0.25 !important;
	pointer-events: none;
}

.item.disabled {
	display: none !important;
}

.veil {
	position: relative;
}

.veil:after {
	content: '';
	display: block;
	background-color: rgba(0, 0, 0, 0);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
}

.button,
button,
input[type="submit"] {
	cursor: pointer;
	text-transform: uppercase;
	display: inline-block;
	padding: 0.5em 1em;
	margin: 0.2em;
	background-color: rgba(127, 127, 127, 0.5);
	border: solid 1px var(--color);
	transition: all 0.25s ease;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: inherit;
	text-align: center;
	border-radius: var(--borderradius);
	opacity: 0.8;
	color: currentColor;
}

.button:hover,
button:hover,
.button.selected,
button.selected,
input[type="submit"]:hover {
	opacity: 1;
	background-color: var(--maincolor);
	border-color: var(--color);
	color: var(--color);
}

.button .button_text {
	margin-right: 0.5em;
	margin: 0 0 0.5em;
}

.reset-tab-button {
	border: none;
	background: none;
	float: right;
	padding: 0;
	color: var(--color);
}

.reset-tab-button:hover {
	border: none;
	background: none;
	color: var(--maincolor);
}

label {
	display: block;
	margin: 1em 0 0.5em;
	text-transform: uppercase;
}

input[type="text"],
input[type="number"],
select,
textarea {
	font: inherit;
	display: inline-block;
	padding: 0.5em 1em;
	margin: 0 0 1em;
	background-color: rgba(127, 127, 127, 0.1);
	border: solid 1px rgba(127, 127, 127, 0.25);
	transition: all 0.25s ease;
	font-weight: inherit;
	border-radius: var(--borderradius);
	color: inherit;
}

input[type="text"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
	border: solid 1px rgba(127, 127, 127, 0.5);
}

form,
form input[type="text"],
form input[type="number"],
form select,
form textarea {
	width: 100%;
}

.drop_zone {
	background-color: rgba(127, 127, 127, 0.1);
	border: dashed 1px rgba(127, 127, 127, 0.25);
	border-radius: var(--borderradius);
	width: 100%;
	height: 100px;
	display: block;
	box-sizing: border-box;
	background-image: url(images/upload.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	margin: 1em 0;
}

.drop_zone:hover {
	opacity: 0.8;
}

/*
@media (max-width: 768px) {
	.button .button_text {
		display:none;
	}
}
*/

.toggle {
	display: block;
	position: relative;
	cursor: pointer;
	text-transform: uppercase;
	padding-left: 3em;
	margin: 0.2em;
}

.toggle:before {
	content: '';
	display: block;
	width: 2.2em;
	height: 1.2em;
	margin: 0 1em 0 0;
	background-color: rgba(127, 127, 127, 0.1);
	border: solid 1px currentcolor;
	transition: all 0.25s ease;
	border-radius: calc(0.6em + 2px);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.toggle:after {
	content: '';
	display: block;
	width: 1em;
	height: 1em;
	background-color: currentcolor;
	opacity: 0.8;
	transition: all 0.25s ease;
	border-radius: 0.5em;
	position: absolute;
	top: 50%;
	left: 0.2em;
	transform: translateY(-50%);
}

.toggle:hover:before {
	background-color: solid 1px rgba(127, 127, 127, 0.25);
}

.toggle:hover:after {
	opacity: 1;
}

.toggle.active:before {
	background-color: rgba(127, 127, 127, 0.5);
}

.toggle.active:after {
	left: calc(2.2em - 1em);
	opacity: 1;
}

.closex,
.closen {
	top: 0;
	right: 0;
	position: absolute;
	font-size: 20px;
	line-height: 30px;
	width: 30px;
	height: 30px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	transition: all 0.25s ease;
	z-index: 1;
}

.closex:hover,
.closen:hover {
	background-color: rgba(127, 127, 127, 0.1);
}

.button .fas,
.button .far,
.button .fal,
.button .fad,
.button .fab {
	margin: 0 0.5em 0 0;
}

/******************************* OVERLAY INFO */

#logo_brand {
	position: absolute;
	top: 2vh;
	left: 2vh;
	z-index: 10;
}

#logo_brand img {
	max-width: 20vw;
	max-height: 3vh;
}

@media (max-width: 768px) {

	#logo_brand img {
		max-width: 40vw;
		max-height: 3vh;
	}
}

#titolo {
	position: absolute;
	top: 2vh;
	right: 50%;
	z-index: 10;
	transform: translateX(50%);
	text-align: center;
	transition: all 1s ease;
	max-width: 40vw;
	display: none;
}

#titolo img {
	max-width: 20vw;
	max-height: 3vh;
}

@media (max-width: 768px) {

	#titolo {
		right: 2vh;
		transform: translate(0, 0);
		text-align: right;
		max-width: 45vw;
		font-size: 12px;
	}

}

#credits {
	position: absolute;
	bottom: 2vh;
	right: 2vh;
	z-index: 2;
	text-align: right;
	font-size: 12px;
	opacity: 0.5;
	transition: all 0.25s ease;
	max-width: 25vw;
	display: none;
	/* TODO */
}

#credits:hover {
	opacity: 1;
}

@media (max-width: 768px) {

	#credits {
		display: none;
	}

}

#corner_info {
	font-size: 0.8em;
	font-weight: 300;
	position: absolute;
	top: 2vh;
	right: 2vh;
	z-index: 2;
	text-align: right;
	transition: all 0.25s ease;
	max-width: 50vw;
}

#upload_tab {
	font-size: 0.8em;
	font-weight: 300;
	position: absolute;
	top: 7vh;
	left: 2vh;
	z-index: 2;
	text-align: right;
	transition: all 0.25s ease;
	max-width: 50vw;
}


/*
#intro_text {
	position:absolute;
	top:50%;
	left:50%;
	width:80%;
	max-width: 1024px;
	z-index: 50;
	transform: translate(-50%,-50%);
	text-align: center;
	font-size: 4vh;
	line-height: 1em;
	font-weight:600;
}
*/

#config_buttons {
	position: absolute;
	bottom: 2vh;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	text-align: center;
	width: 80%;
	display: none;
}

#steps {
	border-top: solid 1px var(--maincolor);
	display: flex;
	justify-content: space-between;
}

#steps .step {
	position: relative;
	display: block;
	width: 9px;
	height: 9px;
	border: solid 1px var(--maincolor);
	background-color: var(--background);
	border-radius: 6px;
	transform: translateY(-50%);
	cursor: pointer;
}

#steps .step.selected {
	background-color: var(--maincolor);
	color: var(--maincolor);
}

#steps .step span {
	display: block;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 400;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
	padding: 5px;
	/* padding: 0.4em 0.8em;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px); */
}

#action_buttons {
	position: absolute;
	top: 1em;
	right: 1em;
	z-index: 2;
	text-align: right;
}

.configuring #panel_open {
	display: none;
}

/******************************* WINDOWS */

.window {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 2vh;
	transform: translate(-50%, -50%);
	z-index: 25;
	text-align: center;
	background-color: var(--color);
	color: var(--background);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	width: 50vw;
	border-radius: var(--borderradius);
}

.window .share-url-field {
	width: 100%;
	padding: 0.75em 1em;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	background-color: #ffffff;
	font-size: 1em;
	box-sizing: border-box;
}

.window .share-url-field:focus {
	outline: none;
	border-color: rgba(0, 0, 0, 0.4);
}

.window .share-hint {
	margin-top: 1em;
	font-size: 0.95em;
	color: rgba(0, 0, 0, 0.65);
}

.window .share-qrcode {
	margin: 1.5em auto 0;
	width: 180px;
	min-height: 180px;
}

@media (max-width: 768px) {

	.window {
		width: 80%;
	}

}

.window.open {
	display: block;
}

.window.flow-selection {
	text-align: left;
}

.flow-selection .flow-options {
	display: flex;
	flex-direction: row;
	gap: 1.5em;
	margin-top: 2em;
}

@media (max-width: 768px) {

	.flow-selection .flow-options {
		flex-direction: column;
	}

}

.flow-selection .flow-option {
	background-color: var(--background);
	color: var(--color);
	padding: 1.5em;
	border-radius: var(--borderradius);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.flow-selection .flow-option h3 {
	margin-top: 0;
}

.flow-selection .flow-option p {
	margin-bottom: 1em;
	line-height: 1.4em;
}

.guide_row {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	text-align: left;
}

.guide_row img {
	width: 8em;
	margin-right: 1em;
}

.guide_row p {
	flex-grow: 1;
}

/******************************* LOADER */

#loader {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	z-index: 999;
	text-align: center;
	cursor: wait;
}

#loader:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10vh;
	height: 10vh;
	transform: translate(-50%, -50%);
	background-image: url(images/sprite_loading.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	animation-name: rotate;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

#loader #bytes {
	position: absolute;
	top: calc(50% + 10vh);
	left: 50%;
	width: 50vw;
	transform: translate(-50%, -50%);
}

.loading #loader {
	display: block;
}

@-webkit-keyframes rotate {
	from {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
	}

	to {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
	}
}

/******************************* SIDEBAR */

#config_sidebar_handle {
	position: absolute;
	bottom: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	background-color: var(--maincolor);
	color: var(--secondarycolor);
	text-align: center;
	line-height: 32px;
	font-size: 20px;
	vertical-align: middle;
	transition: all 1s ease;
	z-index: 6;
	overflow: hidden;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	transform: translate(-50%, 50%);
}

#config_sidebar_handle:hover {
	transform: translate(-50%, 50%) scale(120%);
}

body:not(.configuring) #config_sidebar_handle .fa-minus {
	display: none;
}

.configuring #config_sidebar_handle .fa-plus {
	display: none;
}

@media (max-width: 1024px) {

	#config_sidebar_handle {
		left: calc(2vh + 15px);
		bottom: calc(2vh + 15px);
	}

	.configuring #config_sidebar_handle {
		left: 50%;
		bottom: 50%;
	}

}

@media (min-width: 1025px) {

	#config_sidebar_handle {
		left: calc(2vh + 15px);
	}

	.configuring #config_sidebar_handle {
		left: 33%;
	}

}

#config_sidebar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: left;
	transition: all 1s ease;
	z-index: 5;
	overflow: hidden;
	opacity: 0;
	/*box-shadow: 0px 0px 10px rgba(0,0,0,0.1);*/
	display: flex;
	flex-direction: column;
}

.configuring #config_sidebar {
	transform: none;
	opacity: 1;
}

@media (max-width: 1024px) {

	#config_sidebar {
		transform: translateY(100%);
		height: 50%;
	}

}

@media (min-width: 1025px) {

	#config_sidebar {
		transform: translateX(-100%);
		width: 33%;
	}

}

/*
#tab-header {
	display: flex;
	align-items: stretch;
	padding: 0.5em 0.5em 0;
}

#tab-header > span {
	display:block;
	text-align: center;
	padding: 0.5em;
	cursor: pointer;
	font-size: 0.8em;
}

#tab-header > span:hover, #tab-header > span.selected {
	background-color: rgba(0,0,0,0.5);
}
*/

#logo_brand_sidebar {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 2vh;
	display: none;
}

#logo_brand_sidebar img {
	width: 200px;
	max-width: 50%;
}

.tab {
	display: none;
	background-color: rgba(0, 0, 0, 0.5);
	flex-grow: 1;
	overflow: hidden;
}

.tab.selected {
	display: block;
}

.scroll {
	overflow-y: scroll;
	height: 100%;
	margin-right: -17px;
	padding: 2vh;
}

.panel,
.fixed_panel {
	/* padding:2vh;
	border-bottom: solid 1px rgba(127,127,127,0.25); */
	margin-bottom: 2vh;
}

/*
body.isIframe:not(.fullscreen) .panel,
body.isIframe:not(.fullscreen) .fixed_panel {
	padding-left:0;
}
*/

/*.panel:last-child,
.fixed_panel:last-child {
	border-bottom: none;
}*/

.panel {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: flex-start;
	/*background-color: rgba(127,127,127, 0.1);
        border-radius: var(--borderradius);*/
	border: solid 1px white;
	transition: border-color 0.2s ease;
}

/*
 * Planner-driven slots disable their panels permanently; ensure other show/hide
 * animations cannot re-open them by forcing the hidden state with importance.
 */
.planner-filtered-panel {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.panel.is-hovered {
	border-color: var(--maincolor);
}

.panel h2 {
	display: block;
	margin: 0;
	flex-basis: 100%;
}

.subtitle {
	position: relative;
	cursor: pointer;
	margin: 0;
	padding: 1vh;
}

.subtitle:hover,
.subtitle.selected {
	color: var(--maincolor);
	transition: all 0.5s ease;
}

.subtitle:before {
	display: inline-block;
	content: '⌵';
	margin-right: 0.5em;
	line-height: 1em;
	transition: transform 0.5s ease;
	transform: rotate(-90deg);
}

.subtitle.selected:before {
	transform: rotate(0deg);
}

.subtitle + .subpanel {
	display: none;
	position: relative;
	width: 100%;
}

.subtitle.selected + .subpanel {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: flex-start;
	margin: 0 0 1em;
	padding: 1vh 1vh calc(1vh - 0.5em);
}

.subpanel .filter-menu {
	display: none;
	position: absolute;
	top: 0;
	right: 1em;
	width: 80%;
	background-color: var(--background);
	z-index: 100;
}

.subpanel .filter-menu.open {
	display: block;
}

.subpanel .filter-toggle {
	display: block;
	position: absolute;
	top: -2em;
	right: 1em;
	line-height: 1.5em;
	text-align: center;
	cursor: pointer;
	z-index: 101;
	background-color: var(--background);
	padding: 0.25em 0.5em;
	text-decoration: none;
}

.subpanel .filter-toggle .filter-toggle-text {
	font-size: 0.8em;
	margin-left: 0.5em;
}

.subpanel .filter-menu .filter-group {
	display: block;
	padding: 1em;
}

.subpanel .filter-menu label {
	font-size: 0.8em;
	margin: 0.5em 0 0;
}

.filter-count {
	color: var(--maincolor);
	padding: 1em;
}

/* .subtitle.selected + .subpanel:last-child {
	margin-bottom:-1vh;
} */

.divider {
	display: block;
	flex-basis: 100%;
	width: 100%;
	padding: 0.5em 0;
	margin: 1em 0 0.5em;
	border-top: solid 1px rgba(127, 127, 127, 0.5);
	border-bottom: solid 1px rgba(127, 127, 127, 0.5);
}

.item {
	display: block;
	cursor: pointer;
	text-align: center;
	flex-basis: 50%;
	width: 50%;
	padding: 0.5em;
	transition: all 0.25s ease;
	opacity: 0.8;
}

.item:hover {
	opacity: 1;
}

.item.selected {
	opacity: 1;
	font-weight: 300;
}

.item .item-image {
	display: block;
	width: 100%;
	/*padding-bottom:100%;*/
	aspect-ratio: 1/1;
	transition: all 0.25s ease;
	border: solid 1px black;
	border-radius: 50%;
	border: solid 3px var(--webglbackround);
	background-color: rgba(255, 255, 255, 0.1);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	margin: 0 auto 5px;
}

.item .item-text {
	display: block;
	width: 100%;
}

.item.selected .item-image {
	border: solid 3px var(--maincolor);
}

.item i {
	margin-left: 20px;
	color: red;
	display: none;
}

#panel_finitura .item .item-image {
	background-size: 120%;
}

#finish-panel-context {
	margin: 0 0 1em;
}

/* item list */

.items_list .item {
	/*flex-basis: 250px;
	width:250px;*/
	flex-basis: 100%;
	text-align: left;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.items_list .item .item-image {
	width: 75px;
	min-width: 75px;
	height: 75px;
	padding: 0;
	margin: 0 10px 0 0;
}

#panel_finitura .item .item-image {
	background-size: 120%;
}

.items_list .item .item-text {
	flex: 1;
	align-items: center;
}

.items_list .item .item-text .item-descr {
	font-size: 0.8em;
	line-height: 1;
}

.items_list .item .item-title {
	padding: 0;
}

/* in tablet tutti i toggle hanno span più piccolino */

@media (max-width: 1080px) {

	.items_list .item .item-image {
		width: 50px;
		min-width: 50px;
		height: 50px;
	}

}

@media (max-width: 768px) {

	.items_list .item {
		flex-basis: 50%;
		width: 50%;
		text-align: left;
	}

}

#panel_finitura .item .item-image {
	width: 30px;
	min-width: 30px;
	height: 30px;
}

/* item thumbs */

.items_grid .item {
	flex-basis: 60px;
	width: 60px;
	position: relative;
}

/* in tablet tutti i toggle hanno span più piccolino */

@media (max-width: 768px) {

	.items_grid .item {
		flex-basis: 50px;
		width: 50px;
	}

}

/******************************* EDITOR */

#panel_editor {
	padding: 0 !important;
}

#panel_credits {
	font-size: 10px;
}

/******************************* GOOGLE MODEL VIEWER */

#ar_model_viewer_container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #dddddd;
	z-index: 10;
}

model-viewer {
	width: 100%;
	height: 100%;
}

/******************************* NOTIFICATIONS & ALTERTIFICATIONS */

#notifications {
	position: absolute;
	bottom: 1vh;
	right: 1vh;
	z-index: 997;
	max-width: 33vw;
	max-height: 33vh;
	overflow: auto;
}

@media (max-width: 767px) {

	#notifications {
		max-width: 66vw;
	}

}

.notification {
	position: relative;
	background-color: var(--color);
	color: var(--background);
	padding: 1em 2em;
	margin: 0.5em 0 0;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
	border-radius: var(--borderradius);
}

#outlet_selects label {
	display: block;
	margin-bottom: 0.5em;
}

#outlet_selects label select {
	margin-left: 0.75em;
}

.overview_list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.overview_list li {
	margin-bottom: 0.5em;
}

.overview_list .code,
.overview_list .finish-code {
	color: var(--maincolor);
	font-family: monospace;
}

.overview_list .description {
	display: block;
	font-size: 0.8em;
}