/*
	@modCssClasses
	@customTag: top-row
	@cssMod: mod_wide
	--theme-background, 					rgba(255, 255, 255, 1)
	--theme-disapproveColor, 				rgb(255, 0, 0)
	--theme-errorFont, 						rgba(255, 68, 68, 1)
	--theme-highlightedBackgroundColor, 	rgba(0, 0, 0, 0.1)
	--theme-inputBackgroundColor, 			rgba(0, 0, 0, 0)
	--theme-mainFont, 						rgba(0, 0, 0, 1)
	--theme-transitionDuration, 			0.15s
*/




top-row {
	border-bottom: solid 1px var(--theme-highlightedBackgroundColor, rgba(0, 0, 0, 0.1));
	display: flex;
	padding-bottom: 0.5rem;
	margin-left: 2.5vw;
	margin-right: 2.5vw;
	margin-bottom: 4rem;
	gap: 1rem;
	position: sticky;
	top: 0;
	background-color: var(--theme-background, rgba(255, 255, 255, 1));
	z-index: 1;
	padding-top: 0.5rem;
	box-shadow: 0 0 0 1px var(--theme-background, rgba(255, 255, 255, 1));
	transition-property: border-bottom, background-color, box-shadow;
	transition-duration: var(--theme-transitionDuration, 0.15s);
}

top-row.mod_wide {
	margin-left: 0;
	margin-right: 0;
}

top-row header {
	background-color: var(--theme-inputBackgroundColor, rgba(0, 0, 0, 0));
	border-bottom: medium none;
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
	border-bottom-right-radius: 0.5rem;
	border-bottom-left-radius: 0.5rem;
	position: unset;
	box-shadow: 0 0 0 var(--theme-inputBackgroundColor, rgba(0, 0, 0, 0));
	flex: 1;
    margin: 0;
	padding: 0;
}

top-row header .leftMain {
	min-height: 2rem;
}

top-row header .leftMain .icon {
	height: 2rem;
}

top-row header .main {
	min-height: 3rem;
}

top-row header .main .title {
	color: var(--theme-mainFont, rgba(0, 0, 0, 1));
	transition-property: color, text-shadow;
	transition-duration: var(--theme-transitionDuration, 0.15s);
	font-weight: 400;
	font-size: 1rem;
}

top-row header .main .subtitle {
	font-weight: 100;
	color: var(--theme-mainFont, rgba(0, 0, 0, 1));
}

top-row button-state {
	width: unset;
    margin-bottom: 0;
}

top-row button-state .core p {
	text-transform: unset;
	font-weight: 600;
	letter-spacing: 0;
}

top-row button-state.css_delete .core {
	background-color: rgba(0, 0, 0, 0);
	box-shadow: 0 0 0 2px var(--theme-errorFont, rgba(255, 68, 68, 1)) inset;
}

top-row button-state.css_delete .core .icon svg {
	fill: var(--theme-disapproveColor, rgb(255, 0, 0));
}

top-row button-state.css_delete p {
	color: var(--theme-mainFont, rgba(0, 0, 0, 1));
	transition-property: color;
	transition-duration: var(--theme-transitionDuration, 0.15s);
	font-weight: 400;
}

top-row input-box {
	min-height: 3rem;
	width: 15rem;
    margin-bottom: 0;
}

top-row input-box .title {
	display: none;
}

top-row input-box .body .input {
	width: 15rem;
}

top-row input-box .body .icon svg {
	width: 100%;
}

top-row .css_side {
	display: flex;
	gap: 1rem;
}

top-row .css_side:last-child {
	justify-content: flex-end;
}

top-row .css_dateControls {
	display: flex;
	margin: 0 auto;
	gap: 1rem;
}

top-row .css_dateControls date-box {
	margin: 0 auto;
	min-width: 20rem;
	padding-top: 0;
	padding-bottom: 0;
	min-height: 3rem;
}

top-row .css_dateControls date-box .body .input {
	line-height: 1.5rem;
}

top-row .css_dateControls date-box .body .icon {
	height: 1.5rem;
	max-width: 1.5rem;
}

top-row .css_dateControls date-box .body .icon svg {
	width: 100%;
}

top-row > date-box {
	min-width: max-content;
	width: 13rem;
	margin-bottom: 0;
	max-height: 3rem;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	min-height: unset;
}

top-row > date-box .body .input {
	line-height: 1.3rem;
	font-size: 0.95rem;
}

top-row > date-box .body .icon {
	height: 1.3rem;
	max-width: 1.3rem;
}

top-row > date-box .body .icon svg {
	width: 100%;
}

top-row > select-box {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	margin-bottom: 0;
	min-height: unset;
	height: 3rem;
	width: 14rem;
}

top-row > select-box .options {
	top: 3rem;
}

top-row > select-box .display {
	font-size: 0.95rem;
	line-height: 1.3rem;
}

top-row > select-box .body .icon {
	height: 1.3rem;
	max-width: 1.3rem;
}

top-row > select-box .body .icon svg {
	width: 100%;
}

top-row samp.icon {
	width: 3rem;
	height: 3rem;
	min-width: 3rem;
	max-width: 3rem;
	border-radius: 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0.66;
	transition-property: opacity, background-color;
	transition-duration: var(--theme-transitionDuration, 0.15s);
	cursor: pointer;
}

top-row samp.icon:hover {
	opacity: 1;
}

top-row samp.icon svg {
	width: 2rem;
	fill: var(--theme-mainFont, rgba(0, 0, 0, 1));
	transition-property: fill, width;
	transition-duration: var(--theme-transitionDuration, 0.15s);
}

top-row samp.icon:hover svg {
	width: 2.5rem;
}




@media only screen and (max-device-width: 680px) {

	top-row header {
		margin-top: 1rem;
		margin-left: 1rem;
	}

}