/* Kit Group */

[]{}

	.kit_group {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
		grid-gap: var(--double_space);
		/* margin-bottom: var(--double_space); */
	}

	/* Kit Link */

	[]{}

		.kit_link {
			display: grid;
			grid-template-columns: auto 1fr;
			grid-gap: var(--space);
			align-items: center;
			color: var(--text_color);
		}

		.kit_link .title{
			/* display: block; */
			white-space: nowrap;
			overflow: hidden;
			-moz-text-overflow: ellipsis;
			-ms-text-overflow: ellipsis;
			-o-text-overflow: ellipsis;
			text-overflow: ellipsis;
			/* margin-bottom: 0; */
			margin: 0;
			/* font-size: 1.2em; */
			/* line-height: 1.2em; */
		}

		.kit_link .icon{
			display: block;
			height: 3rem;
			width: 3rem;
			background-repeat: no-repeat;
			background-position: center;
			background-size: contain;
			background-origin: content-box;
			filter: drop-shadow(2px 4px 6px hsla(0,0%,0%,.25));
		}

		.kit_group > .kit_link {
			padding: var(--space);
			border: solid 1px transparent;
			border-radius: var(--outer_radius);
		}

	.kit_group > .kit_link, .kit_widget {
		transition: all .5s ease-out;
	}

	.kit_group > .kit_link:hover, .kit_widget:has(.kit_link:hover) {
		transition: all .05s ease-out;
		background: var(--grey_90);
		border-color: var(--grey_90);
	}

	@media (prefers-color-scheme: dark) {
		.kit_group > .kit_link:hover, .kit_widget:has(.kit_link:hover) {
			background: var(--grey_90);
			border-color: var(--grey_90);
		}
	}

	.kit_widget.full_width {
		grid-column-start: 1;
		grid-column-end: -1;
	}

div.kit {
	padding: var(--double_space);
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
  box-sizing: border-box;
}

a {
	text-decoration:none;
	color: var(--color);
}

a:hover{
	color:#419cd9;
	cursor: pointer;
}

div.kit div.kitcontent {
	overflow: hidden;
}

div.kit div.kitcontent,
div.kit div.login,
div.kit div.panel
{
	background-color: var(--grey_90);
	margin-bottom: var(--double_space);
	border-radius: var(--outer_radius);

}

div.kitcontent {
	border: solid 1px var(--grey_80);
}

div.pane div.kitcontent {
	background-color: var(--grey_100);
	color: var(--grey_50);
}

div.pane div.kitcontent h3.section {
	/* color: var(--grey_30); */
}


div.kit div.panel{
	border: solid 1px hsla(0,0%,100%,.25);
	background-clip: padding-box;
	box-shadow: 0 var(--space) 20px hsla(0, 0%, 0%, 0.1);
	overflow: hidden;
}

div.kit div.panel.float{
	position:fixed;
	z-index: 4;
	box-sizing: border-box;
	box-shadow: 0 2rem 10rem var(--color_shadow);
	overscroll-behavior: contain;
}

div.kit div.panel.animate{
	transition-property: top, left;
	transition-delay: .25s;
	transition-duration: .25s;
	transition-timing-function: ease-out;
}

div.kit div.panel.active{
	box-shadow: 0 2rem 10rem var(--color_shadow), 0 0.5rem 3rem var(--color_shadow);
	z-index: 5;
}

div.kit td{
	vertical-align: top;
	}

.button, button{
	border-radius: var(--inner_radius);
	white-space: nowrap;
}

div.kit form{
	margin:0px;
	padding:0px;
}

div.kit label{
	margin:0 .5em 0 0;
	white-space: nowrap;
	cursor: default;
}

div.kit * + label{
	margin-left:.5em;
}

div.kit label + label{
	margin-left: 0;

}

div.kit br + label{
	margin-left:0;
}

div.kit input[type="checkbox"] + label{
	margin-left:0;
	margin-right: 1em;
}

div.kit article {
	/* padding: var(--space); */
	padding: var(--space) 0;
}

div.kit article > :not(table,hr) {
    margin-left: var(--space);
    margin-right: var(--space);
}


div.kit textarea{
	width:100%;
	margin: 2px 0;
	/* font-family: var(--font_family_code); */
	line-height:1em;
	box-sizing: border-box;
}

div.kit div[contenteditable]{
	cursor: text;
	padding: var(--space);
	border: solid 1px var(--grey_70);
	background-color: var(--grey_100);
	color: var(--grey_20);
	font-weight: 400;
	border-radius: var(--inner_radius);
  line-height: 120%;
}

div.kit input[type="text"],
div.kit input[type="email"],
div.kit input[type="password"],
div.kit input[type="datetime-local"],
div.kit input[type="date"],
div.kit input[type="month"],
div.kit input[type="number"],
div.kit select
{
	padding: var(--space_quarter) var(--space_half);
	border: solid 1px var(--grey_70);
	background-color: var(--grey_100);
	color: var(--grey_20);
	box-sizing: border-box;
	vertical-align: middle;
	border-radius: var(--inner_radius);
}

div.tab input[type="text"],
div.tab input[type="email"],
div.tab input[type="password"],
div.tab input[type="datetime-local"],
div.tab input[type="date"],
div.tab input[type="month"],
div.tab input[type="number"],
div.tab select
{
	background: none;
}

div.kit input[type="text"]:focus,
div.kit input[type="email"]:focus,
div.kit input[type="password"]:focus,
div.kit input[type="number"]:focus
{
	border: solid 1px var(--grey_50);
	border: solid 1px var(--color);
	outline: none;
}

div.kit select {
	padding: calc(var(--space_quarter) - 1px) var(--space_quarter);

}


div.kit th a {
	color: inherit;
}

tr:hover th a,
tr th.active a
{
    color: hsl(204, 60%, 50%);
}

div.kit select optgroup{
	color: hsl(0, 0%, 60%);
}

div.kit select optgroup option{
	color: var(--text_color);
}

div.kit select option{
	/* padding: 0; */
}


div.kit input[readonly=""]
{
	/* background: none; */
  /* border-color: transparent; */
}
div.kit select,
div.kit input[type="date"],
div.kit input[type="month"],
div.kit input[type="datetime-local"]
{
	/* box-sizing: border-box; */
}

table.form select,
table.form input[type="date"],
table.form input[type="datetime-local"]
{
	/* margin: 0; */
}

div.kit input[type="submit"]{
	/* padding: 0px 10px; */
	/* height: 22px; */
	/* margin: 1px 0; */
	cursor: pointer;
}

div.kit td > input[type="text"],
div.kit td > input[type="password"],
div.kit td > input[type="email"],
div.kit td > select{
	min-width: 1em;
	box-sizing: border-box;
}

td > input[type="text"],
td > input[type="date"],
td > input[type="datetime-local"],
td > input[type="password"],
td > input[type="email"],
td > select{
	width: auto;
	max-width: 100%;
}

td > input[type="email"]:only-child,
td > input[type="text"]:only-child,
td > input[type="date"]:only-child,
td > input[type="datetime-local"]:only-child,
td > input[type="number"]:only-child,
td > input[type="password"]:only-child,
td > select:only-child
{
	width: 100%;
}

td > input[data-array],
td > select[data-array]
{
	/* margin */
	/* width: 100%; */
	display: block;
	margin-bottom: .25em;
}

td.file_icon svg {
  height: 1.3rem;
  width: auto;
  margin-bottom: calc(var(--space_half) * -1);
  margin-top: calc(var(--space_half) * -1);
}

td span.zoom {
	display: inline-flex;
	gap: var(--space);
}


div.kit input[type="checkbox"],
div.kit input[type="radio"]{
	width:13px;
	margin: 0 9px 0 0;
	padding: 0;
	vertical-align: middle;
	height: 22px;
}




div.kit input[type="radio"]{
	margin: 0px 3px;
}

div.kit table.data ,
div.kit .table.data
{
	border-collapse:separate;
	width:100%;
	margin: 0 0 1rem;
	box-sizing: border-box;
}

div.kit .table {
	display: table;
}

div.kit table.form {
	border-collapse: collapse;
	width: 100%;
	margin: 0;
	box-sizing: border-box;
}

div.kit .kit_menu .data {
	border: none;
}

div.kit .data .data {
		border: none;
}

div.kit table.editor{
	outline:solid 1px #939393;
	background-color:white;
	border-collapse:collapse;
	width:100%;
	margin:0;
}

div.kit table.data th,
div.kit table.editor th{
	overflow: hidden;
	white-space: nowrap;
	color: var(--grey);
}

div.kit table.data th img.sort{
	margin-left: .25rem;
	display: none;
	height: .7rem;
}

div.kit table.data th.active img.sort{

	display:inline;
}

div.kit table.data th *{
	vertical-align: middle;
}

div.kit table.data tr.search {
	/* background: var(--grey_lightest); */
}

div.kit table.data tr.search span.submit:has(input){
	display: grid;
	grid-template-columns: 1fr auto;
}

div.kit table.data tr.search span.submit input{
	width: 100%;
}

div.kit table.data td{
	vertical-align: baseline;
	white-space: nowrap;
	-webkit-user-select: text;
	-ms-user-select: text;
	-moz-user-select: text;
	user-select: text;
}

div.kit table.form td{
	padding: var(--space_half) var(--space);
	margin: 0;
	line-height:1.4em;
	vertical-align: baseline;
	white-space: nowrap;
}

div.kit table.form.fixed td{
	width: 50%;
}

div.kit table.form tbody tr+tr{
	border-top: solid 1px var(--background_color);
}


div.kit .kit_menu table.data td{
	border: none;
}

table.data td img,
table.data td svg
{
	vertical-align: middle;
}

table.data td > svg
{
	margin-right: .5em;
	width: 18px;
	height: 18px;
}

div.kit table.data.wrap td,
div.kit table.form.wrap td,
div.panel table.data td,
div.panel table.form td
{
	white-space: normal;
}

div.kit table.data td.ellipsis,
div.kit table.data td.ellipsis
{
	max-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

div.kit div.panel table.data td.ellipsis{
	max-width: none;
}

div.kit table.data td.bright{
	color: #737373;
}

.button img,
.button svg,
button img,
button svg {
	height: 1.4rem;
  width: auto;
}

.small.button img,
.small.button svg,
button.small img,
button.small svg,
.icon.button img,
.icon.button svg,
button.icon img,
button.icon svg {
	height: 1.15rem;
	opacity: .9;
}

div.kit table.data p{
	margin: 0;
}
div.kit table.data ul{
	margin: 0;
	padding: 0 0 0 1.5em;
}



div.kit table.data tr > *.date,
div.kit table.data tr > *.euro,
div.kit table.data tr > *.datetime {
	text-align: right;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.05em;
	font-size: .9em;
}

div.kit table.data tr > *.number {
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.05em;
	font-size: .9em;
}

div.kit table.data td.file a:nth-of-type(n+2){
	display: none;
}
div.kit table.data td.file a:nth-last-child(n+2):after{
	/* content: " …"; */
	content: " ...";
}

div.kit table.data td.euro {
	background: hsla(50, 100%, 50%, .03);
	color: hsl(50, 100%, 30%);
	text-align: right;
}

div.kit table.data th.euro {
	color: hsl(50, 100%, 38%);
	text-align: right;
}

div.kit table.data th.file {
	color: hsl(204, 50%, 49%);
}

div.kit table.data tr:hover{
	/* background-color: var(--color_muted); */
	/* filter: brightness(1.1); */
}

div.kit table.data tr.active,
div.kit table.data tr.active:hover{
	background: var(--color_muted);
}

div.kit table.data tr.active *{
	/* color: var(--grey_20); */
}

div.kit table.data tr.category td{
	color: var(--grey_50);
  background: var(--grey_90);
  padding-top: var(--space);
  padding-bottom: var(--space);
  font-weight: 200;
}

body.Windows div.kit table.data tr.category td{
  font-weight:400;
}

div.kit table.data span.icon_placeholder{
	display: inline-block;
	width: 1.7em;
	vertical-align: middle;
}


div.kitcontent > .section:first-child:not(:only-child),
div.panel > .section:first-child:not(:only-child) {
	padding: var(--space);
	/* display: flex; */
  /* justify-content: space-between; */
	/* align-items: baseline; */
	background-color: var(--grey_80);
}

/*
div.kitcontent > .section:first-child:not(:only-child) > *,
div.panel > .section:first-child:not(:only-child) > *{
	display: inline-flex;
	gap: var(--space_half);
	align-items: center;
}
*/
div.kitcontent > .section:first-child:not(:only-child) > *{
	margin-bottom: 0;
}

.button:hover,
button:hover {
	color: var(--color);
}

.button:active,
button:active {
	color: var(--color_muted);
}


div.panel > .section:first-child:not(:only-child),
div.panel > form > .section:first-child
{
	background: var(--color);
	text-align: center;
	display: block;
	color: white;
  margin-bottom: 0;
}

div.panel.inactive > .section:first-child:not(:only-child),
div.panel.inactive > form > .section:first-child {
  background-color: var(--color_muted);
  color: var(--grey_50);
}

div.panel .section.scroll{
	overflow: auto;
	overflow: overlay;
}

div.kit .section:last-child:not(:nth-child(2)):not(:nth-child(1)),
div.panel .section:last-child:not(:only-child),
form div.submit{
	padding: var(--space);
	display: flex;
  justify-content: space-between;
	background: var(--grey_80);
}

div.kit .section > *:last-child,
div.panel .section > *:last-child{
	margin-bottom: 0;
}

div.kit .section:nth-child(2):not(:only-child),
div.panel .section:nth-child(2):not(:only-child){
	/* margin-bottom: 0;
	background: inherit; */
}

div.kit div.section{
	/* overflow: hidden; */
}


div.panel > .section:first-child{
	cursor: move;
}

table.data td a.icon_button {
	margin: -.25em 0;
}

a.button,
button{
	vertical-align: middle;
	text-align: center;
	display: inline-flex;
  align-items: center;
	/* text-decoration:none; */
	padding: var(--space_half) var(--space);
	gap: var(--space_quarter);
	color: var(--grey_50);
	cursor: pointer;
	background: var(--grey_90);
	box-sizing: content-box;
	justify-content: center;
	font-size: 1.1em;
  font-weight: 300;
}

body.Windows a.button,
body.Windows button {
  font-weight: 400;
}

a.button:has(svg:first-child),
button:has(svg:first-child) {
	padding-left: var(--space_half);
}

a.button:has(svg:only-child),
button:has(svg:only-child) {
	padding-right: var(--space_half);
}

.small.button {
	/* font-weight: 300; */
	font-size: .925rem;
	line-height: 100%;
	padding: var(--space_quarter) var(--space_half);
	font-weight: inherit;
	transition: color var(--effect_transition);
	background: var(--grey_100);
  color: var(--grey_40);
	display: inline-flex;
  gap: var(--space_quarter);
}

.small.button:has(svg:first-child) {
	padding-left: var(--space_quarter);
}

.small.button:has(svg:only-child) {
	padding-right: var(--space_quarter);
}

.small.button:hover{
	color: var(--color);
	transition: color var(--effect_transition);
}


div.kit button.green,
div.kit a.green.button {
	color: var(--green);
}

div.kit button.blue,
a.blue.button {
    color: var(--blue);
}

div.kit button.red,
a.red.button {
  color: var(--red);
}

div.kit button.green:hover,
div.kit button.red:hover,
div.kit button.blue:hover,
div.kit  a.green.button:hover,
div.kit  a.red.button:hover,
div.kit  a.blue.button:hover
{
	/* background-color: var(--grey_90); */
	filter: saturate(1.5);
	/* transition: filter .05s ease-out; */
}


a.button.active,
button.active{
	color: var(--color);
}

.button.active:active,
button.active:active {
	color: var(--color_muted);
}


.icon.button {
  padding: var(--space_quarter);
  border-radius: 50%;
  font-weight: inherit;
  aspect-ratio: 1/1;
}

.icon.button img{
	height: 1em;
	font-size: .75em;
	line-height: 1rem;
	vertical-align: baseline;
}

.small.red.button {
	color: var(--red);
}


table.data td a.small.button:only-child {
  margin-top: -.19rem;
  margin-bottom: -.19rem;
}

input[type="file"].image + a.button,
input[type="file"].video + a.button
{
	height: 4rem;
	vertical-align: top;
  box-sizing: border-box;
	line-height: 4rem;
}

img.info
{
	cursor: help;
	position: relative;
}

div.kit hr{
	margin: var(--space) 0;
	border: none;
	border-top: solid 1px var(--grey_50);
}


div.kit span.message{
	margin:0 0 20px 0;
	font-weight:bold;
}
div.kit span.error,
div.kit span.error *{
	color:#c21115;
}

div.kit span.red,
div.kit span.red *{
	color:#c21115;
}

div.kit span.green,
div.kit span.green *{
	color:#7ab51d !important;
}

acronym{
	cursor:help;
}

/*
div.kit div.table{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	display: table;
}
*/
div.kit div.table div.td{
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	position: relative;
	padding:38px 10px 22px;
}

div.kit div.login{
	display: inline-block;
	text-align: left;
}

div.kit div.login table{
	 table-layout:auto;
	 white-space:nowrap;

}

* html div.login hr{
	margin:10px 0px;
}


div.login span{
	padding:2px 3px;
}

div.pagination{
	text-align: center;
	padding: var(--space_half);
	background-color: var(--grey_100);
	font-size: .8em;
	/* color: var(--grey_light); */
}

div.pagination.info {
	padding-top: var(--space);
	padding-bottom: var(--space);
	display: flex;
  justify-content: center;
  gap: var(--space);
	color: var(--grey_60);
}

div.pagination.links {
	font-weight: 600;
	border-top: solid 1px var(--grey_90);
}

div.pagination.links a.active{
	background-color: var(--color_muted);
}




div.toolkit_pane{

	position: absolute;
	right: 0;
	top: 0;
	width: 17vw;
	background: var(--grey_100);
	padding: 1rem;
	bottom: 0;
	/* border-left: solid 1px hsl(0,0%,70%); */
	display: none;
	overflow: auto;
	z-index: 2;
	box-sizing: border-box;

}

/* Glas effect */

div.toolkit_pane {
	background: hsla(0,0%,96%,.6);
	-webkit-backdrop-filter: blur(var(--space));
	backdrop-filter: blur(var(--space));
	box-shadow: -1px 0 0 hsla(0,0%,100%,.15), 0 0 var(--space_double) hsla(0,0%,0%,.1);
}

@media (prefers-color-scheme: dark) {
	div.toolkit_pane {
		background: hsla(0,0%,12%,.6);
		box-shadow: -1px 0 0 hsla(0,0%,100%,.15), 0 0 var(--space_double) var(--grey_lightest);
	}
}

div.toolkit_pane div.kit{
	padding: 0;
}

div.column{
	display: inline-block;
	vertical-align: top;
	padding: 1rem;
}

div.panes {
	display: flex;
	gap: var(--double_space);
	align-items: flex-start;
}


div.panes div.main{
	min-width: 10em;
	/* display: table-cell; */
	/* width: 100%; */
	flex-basis: 100%;
	/* vertical-align: top; */
}

div.panel div.panes div.main{
	width: auto;
}

.file_preview{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	border: solid 1px var(--grey_60);
	margin-right: var(--space);
	height: 4em;
	box-sizing: border-box;
	}

.file_preview .button{
	display: none;
}

.file_preview .textarea_plus{
	display: block;
}

.file_preview:hover .button{
	display: inherit;
}

.file_preview.ui-sortable-helper:hover .button{
	display: none;
}

.file_preview .zoom img,
.file_preview .zoom video
{
	/* width: 100%; */
	height: 100%;
	object-fit: contain;
	/*display: inline-block;*/
}

a.zoom,
img.zoom {
	position: relative;
	cursor: pointer;
}

.zoom a {
	color: inherit;
}

a.zoom:not(.button):hover::before {
	content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(/kitbooth/core/template/icons/zoom.svg?color=white) no-repeat center;
  z-index: 1;
}




.file_preview a.button{
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	/* background: white; */
}

.file_preview textarea,
.file_preview div[contenteditable],
.file_preview ~ br
{
	display: none;
}

.duplicate_form_field {
	display: inline-block;
}

.file_preview ~ .duplicate_form_field {
	clear: left;
	overflow: hidden;
}

.duplicate_form_field > *:nth-last-child(n+3) {
	display: block;
}

.dropdown{

	display: inline-block;
	width: 100%;
	position: relative;
	background: var(--grey_100);
	border: solid 1px var(--grey_90);
	/* outline: auto var(--grey_90); */
	box-sizing: border-box;
	height: 1.6rem;
	vertical-align: top;
	z-index: 2;
	border-radius: var(--inner_radius);
}

.dropdown.hide_children{
	border-color: var(--grey_80);
	outline: none;
}



.hide_children{
	overflow: hidden;
	z-index: 1;
}

/* .hide_children > *{ */
.hide_children > .child{
	visibility: hidden;
}

.dropdown:before{
	content: "";
  position: absolute;
  right: .5em;
  top: .5em;
  height: .5rem;
  background: url(/kitbooth/core/template/icons/up.svg?color=grey);
  width: .6rem;
  height: .6rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.dropdown.hide_children:before{
	background-image: url(/kitbooth/core/template/icons/down.svg?color=grey);
}

.dropdown .values {
	display: block;
	max-width: calc(100% - var(--space));
	padding-left: var(--space_half);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


.page .kit .dropdown .child {
    position: fixed;
    padding: var(--space);
    box-sizing: border-box;
    background: var(--grey_90);
    outline: solid 1px var(--grey_100);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: var(--inner_radius);
    box-shadow: 0 var(--space_half) var(--space) var(--color_shadow);
    margin-top: 2em;
}

div.kit .dropdown label{
	margin-left: 0;
	display: block;
}

div.kit .dropdown br{
	display: none;
}


span.checkbox_dropdown input[type="checkbox"] + label{
	margin-right: 0;
}



div[contenteditable]{
	border: solid 1px var(--color_shade_2);
	/* line-height: 18px; */
	padding: 0 3px;
	white-space: pre-wrap;
	/*position: absolute;*/
	width: 100%;
	box-sizing: border-box;
	/*display: block;*/
	display: inline-block;
	background: var(--background_color);
	color: var(--text_color);
	overflow: auto;
}

div[contenteditable].code{
	background: hsl(0, 0%, 30%);
	color: hsl(0, 0%, 80%);
	font-family: var(--font_family_code);
	word-break: break-all;
}

div.textarea_plus{
	/*position: relative;*/
	display: inline-block;
	width: 100%;
	vertical-align: top;
}

.ui-sortable-handle,
.ui-sortable-helper,
.ui-sortable-helper *
{
	cursor: move;
}


div.kit table.data tr.selected{
	/* background-color: var(--color_muted); */
}

div.kit table.data tr.selected td{
	/* position: relative; */
}

div.kit table.data tr.selected:hover{
	/* background-color: var(--color_muted); */
}

.tabs{
	/* background: var(--color_shade_2); */
	background: var(--grey_80);
	display: flex;
	padding: var(--space_half);
	gap: var(--space_half);
}

.tab{
	display: inline-block;
	padding: var(--space_half);
	cursor: pointer;
	color: var(--grey_20);
	font-weight: 200;
	border-radius: var(--inner_radius);
  font-size: .9em;
}

.tab:hover
{
	/* color: var(--grey_30); */
	background: var(--grey_70);
}

.tab.active
{
	/* color: var(--text_color); */
	background: var(--grey_90);
	/* background: var(--color_shade_1); */
}

.tabbed_content .content:not(.active) {
	visibility: hidden;
	height: 0;
	position: absolute;
}

div.kit table.changelog h2{
	margin: 2rem 0 1rem;
	padding: 0;
	color: hsl(83, 72%, 36%);
}

div.kit table.changelog h3{
	margin: 2rem 0 1rem;
	font-size: 1.25em;
}

div.kit table.changelog h4{
	margin: 1rem 0 0;
	font-size: 1.1em;
}

html div.kit .no_margin {
	margin: 0;
}

div.cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));;
	grid-gap: var(--space);
	/* padding: 1rem; */
	/* margin-bottom: var(--space); */
	background: var(--background_color);
	padding: var(--space);
}

div.cards .cell{
	position: relative;
	background: var(--color_shade_1);
	border-radius: var(--inner_radius);
	align-content: center;
	transition: background .5s ease-out;
	padding: var(--space);
	background-color: var(--grey_90);
}


div.cards .cell:not(:hover){
	color: inherit;
}

div.cards .cell.active{
	background: var(--color_muted);
}

.cards .cell img {
  width: 100%;
	line-height: 0;
	display: block;
}

.cards .cell > img {
  max-width: 100%;
	min-width: 4rem;
	width: auto;
}

.cards .cell .hover {
	visibility: hidden;
}

.cards .cell span {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cards .cell .bottom {
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	padding: 0 1rem;
	bottom: 0;
	left: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cards .cell .light.background {
	background: hsla(0,0%,100%,.85);
}

.cards .cell:hover .hover {
	/* display: block; */
	visibility: visible;
}

/* div.kit .section.flex , */
.flex{
	display: flex;
	gap: var(--space_half);
}

/* div.kit .section.flex.evenly , */
.flex.evenly {
	justify-content: space-between;
}

.section.fill > *,
.fill.flex > *
{
	flex: 1;
}

.fill.flex.left > * {
	text-align: left;
}


.one_column.grid{
	grid-template: repeat(1,1fr);
}

.center{
	text-align: center;
	display: block;
}

.underline {
	border-bottom: solid 1px hsl(0,0%,80%);
	padding-bottom: .5em;
}

.hidden {
	display: none;
}

.home h2 a {
	background: var(--grey_90);
  padding: var(--space_half) var(--space);
  border-radius: var(--outer_radius);
  transition: all var(--effect_transition);
}

.home h2 a:hover {
	background: var(--color_muted);
}

.selectable_text {
	-webkit-user-select: text;
	-ms-user-select: text;
	-moz-user-select: text;
	user-select: text;
}
