@font-face { font-family: 'Courier New'; font-weight: 200; font-style: normal; src: url('/style/cour.ttf'); }
@font-face { font-family: 'Courier New'; font-weight: 300; font-style: normal; src: url('/style/courbd.ttf'); }
@font-face { font-family: 'Courier New'; font-weight: 200; font-style: italic; src: url('/style/couri.ttf'); }
@font-face { font-family: 'Courier New'; font-weight: 300; font-style: italic; src: url('/style/courbi.ttf'); }

@font-face { font-family: 'Arial'; font-style: normal; font-weight: 300; src: url('/style/arial.ttf'); }
@font-face { font-family: 'Arial'; font-style: normal; font-weight: 600; src: url('/style/arialbd.ttf'); }
@font-face { font-family: 'Arial'; font-style: normal; font-weight: 900; src: url('/style/ariblk.ttf'); }
@font-face { font-family: 'Arial'; font-style: italic; font-weight: 300; src: url('/style/ariali.ttf'); }
@font-face { font-family: 'Arial'; font-style: italic; font-weight: 600; src: url('/style/arialbi.ttf'); }

:root
{
	--app-color: var(--red);

	--red: hsl(355, 100%, 45%);
	--green: hsl(150, 75%, 50%);
	--blue: hsl(200, 90%, 60%);
	--orange: hsl(15, 100%, 60%);
	--purple: hsl(280, 90%, 60%);
	--yellow: hsl(40, 100%, 60%);
}

*
{
	font-family: Arial, Helvetica, sans-serif;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent!important;
	user-select: none;
	-webkit-user-select: none;
}

body
{
	margin: 0;
	width: 100%;
}

h3
{
	margin: 20px 0;
	text-align: center;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 14px;
	background-color: rgb(80, 80, 100);
	color: white;
	position: relative;
	width: calc(100% + 40px);
	left: -20px;
	padding: 5px 20px;
	box-sizing: border-box;
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0, 0, 0, .10) 0, rgba(0, 0, 0, .10) 10px);
}

#grid
{
	display: grid;
	margin: 40px;
	margin-top: 84px;
	gap: 20px;
}

.widget
{
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 1px 1px -2px rgba(0, 0, 0, 0.2),
				0 2px 2px -2px rgba(0, 0, 0, 0.15),
				0 4px 4px -4px rgba(0, 0, 0, 0.15),
				0 8px 8px -4px rgba(0, 0, 0, 0.1),
				0 0px 4px 0px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	transition: .4s transform ease-in-out, .6s margin ease-in-out, .2s opacity ease-out;
	transform: scale(1);
	will-change: transform, margin, opacity;
}


.overlay .widget
{
	max-height: calc(100% - 40px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
}

.widget.clone
{
	transition: .4s transform ease-in-out .2s, .6s margin ease-in-out, .4s opacity ease-in .2s;
}

.widget:last-child
{
	margin-bottom: 0;
}

.widget h2
{
	display: flex;
	margin: 0;
	background-color: var(--app-color);
	/* background-color: hsl(208, 100%, 35%); */
	color: white;
	padding: 20px 20px;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 3px;
	text-transform: uppercase;
	height: 20px;
	align-items: center;
}

.widget label
{
	display: flex;
	align-items: center;
	user-select: none;
}

p
{
	margin: 0;
}

.content > p
{
	margin-bottom: 20px;
}

.content > p:last-child
{
	margin-bottom: 0;
}

input[type="checkbox"]
{
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-appearance: none;
	min-width: 20px;
	min-height: 20px;
	width: 20px;
	height: 20px;
	border: 2px solid var(--app-color);
	border-radius: 4px;
	margin-right: 10px;
	cursor: pointer;
	outline: none;
	background-color: transparent;
}

input[type="checkbox"]:checked
{
	background-color: var(--app-color)!important;
}

input[type="checkbox"]:checked::after
{
	opacity: 1;
}

input[type="checkbox"]::after
{
	content: "✔";
	color: white;
	opacity: 0;
}

input[type="color"]
{
	background-color: transparent;
	overflow: hidden;
	border: none;
	padding: 0;
}

input[type="color"]::-webkit-color-swatch-wrapper
{
	padding: 0;
}

input[type="color"]::-webkit-color-swatch
{
	border: none;
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0, 0, 0, .10) 0, rgba(0, 0, 0, .10) 10px), linear-gradient(to top, rgba(0, 0, 0, .2) 0%, rgba(255, 255, 255, .2) 100%);
}

.widget .content
{
	background-color: rgba(255, 255, 255, .8);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	display: flex;
	flex-direction: column;
	padding: 20px;
	min-height: 20px;
	overflow-y: auto;
}

.widget .content::-webkit-scrollbar-track, ::-webkit-scrollbar
{
	border-radius: 0;
}

.widget .hidden
{
	display: none;
}

.widget .quote
{
	display: flex;
	align-items: center;
	font-size: 32px;
	font-family: Georgia, Times, "Times New Roman";
	justify-content: center;
	text-align: center;
	font-style: italic;
}

.widget .author
{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 0;
}

.widget .author::before, .widget .author::after
{
	content: "-";
}

.widget .author::before
{
	margin-right: 20px;
}

.widget .author::after
{
	margin-left: 20px;
}

.widget .quote::before, .widget .quote::after
{
	position: relative;
	font-size: 144px;
	opacity: 0.5;
	color: var(--app-color);
}

.widget .quote::before
{
	content: "„";
	bottom: 0px;
	margin-left: 10px;
	margin-right: 20px;
}

.widget .quote::after
{
	content: "“";
	top: -15px;
	margin-right: 10px;
	margin-left: 20px;
}

.widget .picture
{
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
	height: auto;
	background-image: var(--picture);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.widget .diashow
{
	opacity: 0;
	transition: 1s opacity ease-in-out;
}

.widget .diashow:not(:first-child)
{
	position: absolute;
	width: calc(100% - 40px);
}

.widget .diashow.show
{
	opacity: 1;
}

.widget .clock
{
	/* font-family: 'Courier New', Courier, monospace; */
	text-align: center;
	font-size: 48px;
	/* font-weight: 600; */

	/* font-family: Dubai;
	letter-spacing: 10px; */
	font-size: 58px;
	/* line-height: 70px; */
	/* letter-spacing: 5px; */
	letter-spacing: 10px;
	line-height: 65px;
	font-weight: 900;
}

.widget .date
{
	text-align: center;
	font-size: 32px;
	font-weight: 200;
	font-size: 24px;
	letter-spacing: 5px;
	line-height: 35px;
	text-transform: uppercase;

	margin-top: 10px;
}

.widget.compact .clock-container
{
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	position: relative;
	left: 5px;
}

.widget.compact .clock
{
	font-size: 46px;
	line-height: 52px;
}

.widget.compact .date
{
	display: flex;
	align-items: center;
	margin-top: 0;
	text-align: left;
	padding-top: 3px;
	margin-right: auto;
}

.widget .progress-container
{
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	align-items: stretch;
	background-color: rgba(255, 255, 255, .8);
	box-shadow: 0 1px 1px -2px rgba(0, 0, 0, 0.2),
				0 2px 2px -2px rgba(0, 0, 0, 0.15),
				0 4px 4px -4px rgba(0, 0, 0, 0.15),
				0 8px 8px -4px rgba(0, 0, 0, 0.1),
				0 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.widget .progress-container:not(:last-child)
{
	margin-bottom: 8px;
}

.widget .progress-diagram
{
	width: 100%;
	padding: 10px;
}

.widget .progress-percent
{
	color: white;
	font-size: 12px;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px;
	margin-right: 0;
	border-radius: 5px;
}

.widget .progress-track
{
	width: 100%;
	height: 10px;
	background-color: rgba(0, 0, 0, 0.1);
	margin-top: 5px;
	border-radius: 50px;
	overflow: hidden;

	box-shadow: inset 0 0 4px 0 rgb(0 0 0 / 20%);
}

.widget .progress-bar
{
	content: "";
	background-color: var(--red);
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0, 0, 0, .10) 0, rgba(0, 0, 0, .10) 10px), linear-gradient(to top, rgba(0, 0, 0, .2) 0%, rgba(255, 255, 255, .2) 100%);
	width: 100%;
	height: 100%;
	border-radius: 0 50px 50px 0;
}

.widget.compact .progress-diagram
{
	background-color: transparent;
}

.widget.compact .progress-percent
{
	min-width: 60px;
	border-radius: 10px;
	height: 20px;
}

.widget.compact .progress-diagram
{
	margin: 0;
	display: flex;
	align-items: center;
	padding: 0px;
	padding-left: 10px;
	background-color: transparent!important;
}

.widget.compact .progress-track
{
	width: 35%;
	min-width: 35%;
	margin: 0;
}

.widget.compact .progress-container p
{
	margin-right: auto;
}

.widget.compact .progress-container
{
	box-shadow: none;
}

input, button, select, textarea, .image-input, .input-prefix, .label-button
{
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	border: none;
	height: 40px;
	min-height: 40px;
	border-radius: 8px;
	background-color: white;
	border: 1px solid rgba(128, 128, 128, .1);
	box-sizing: border-box;
	font-size: 14px;
	/*
	box-shadow: 0 1px 1px -2px rgba(0, 0, 0, 0.2),
				0 2px 2px -2px rgba(0, 0, 0, 0.15),
				0 4px 4px -4px rgba(0, 0, 0, 0.15),
				0 8px 8px -4px rgba(0, 0, 0, 0.1),
				0 0px 4px 0px rgba(0, 0, 0, 0.1);
	*/
}

textarea
{
	max-width: 100%;
	min-width: 100%;
}

#admin-bar *, .edit-container *, .remove-button, .download-button
{
	min-height: auto;
}

input:not([type="checkbox"]), button, select, textarea, .image-input, .input-prefix, .label-button
{
	margin: 0;
}

input[type="text"], input[type="password"], input[type="number"], select, option, textarea
{
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.8);
	color: black!important;
	border: 1px solid rgba(255, 255, 255, 1);
}

input[type="text"], input[type="password"], input[type="number"], textarea, .idea .text
{
	user-select: text!important;
	-webkit-user-select: text!important;
}

input[type="button"], input[type="submit"], button, .label-button
{
	cursor: pointer;
	padding: 0 7px 0 10px;
	background-color: rgb(60, 60, 80, 0.8);
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 300;
	padding: 5px 17px 5px 20px;
	font-size: 14px;
}

input, button, textarea, select, option, .label-button
{
	transition: .2s background-color ease-out, .2s border-color ease-out, .2s opacity ease-out, .2s filter ease-out;
}

input[type="button"]:not(:disabled):hover, button:not(:disabled):hover, .label-button:not(:disabled):hover
{
	background-color:rgba(80, 80, 100, 0.8);
}

input[type="button"]:disabled, input[type="submit"]:disabled, button:disabled
{
	opacity: .75;
	cursor: auto;
}

input[type="text"]:disabled, input[type="password"]:disabled, input[type="number"]:disabled, textarea:disabled
{
	opacity: .5;
	cursor: auto;
	color: rgba(0, 0, 0, 0.8)!important;
}

input[type="submit"], .red
{
	background-color: var(--app-color)!important;
}

input[type="submit"]:not(:disabled):hover, .red:not(:disabled):hover
{
	filter: brightness(90%);
}

#widget-config input
{
	width: 100%;
}

.custom-select, .custom-select select
{
	width: 100%;
}

.custom-select::after
{
	display: none;
	pointer-events: none;
	position: relative;
	content: "";
	top: 12px;
	right: 24px;
	width: 0;
	height: 0;
	border: 4px solid transparent;
	border-color: black transparent transparent transparent;
}

.custom-select:active::before
{
	top: 17.5px;
	border-color: transparent transparent black transparent;
}

#background
{
	position: fixed;
	width: 100%;
	height: calc(100vh - 64px);
	top: 64px;
	left: 0;
	z-index: -1;
	box-sizing: border-box;
}

#background::before
{
	--blur: 2px;

	content: "";
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0, 0, 0, .10) 0, rgba(0, 0, 0, .10) 10px), linear-gradient(to left, hsla(355, 100%, 45%, .5) 0%, hsla(355, 100%, 45%, .5) 100%);
	background-image: linear-gradient(to left, hsla(208, 100%, 45%, .5) 0%, hsla(208, 100%, 45%, .5) 100%), url("/img/skyline-bw.png");
	background-position: center;
	background-size: cover;
	height: 100vh;
	width: 100%;
	position: absolute;
	height: calc(100vh + var(--blur) * 2);
	width: calc(100% + var(--blur) * 2);
	left: calc(var(--blur) * -1);
	top: calc(var(--blur) * -1);
	filter: blur(var(--blur)) contrast(1.2);
}

#foreground
{
	position: fixed;
	width: calc(100% - 40px);
	height: calc(100vh - 84px);
	top: 44px;
	left: 0;
	margin: 20px;
	box-sizing: border-box;
	border-radius: 32px;
	box-shadow: 0 0 0 64px white, inset 0 0 10px 0 rgb(0 0 0 / 20%);
	pointer-events: none;
	z-index: 8;
}

#presentation-mode #background
{
	height: 100vh;
	top: 0;
}

#presentation-mode #foreground
{
	height: calc(100% - 40px);
	top: 0;
}

#presentation-mode .no-title
{
	display: none;
}

.overlay
{
	position: fixed;
	z-index: 10;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;

	background-color: rgba(40, 40, 60, .6);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.overlay:not(.clean)
{
	transition: .2s opacity ease-in-out;
	will-change: opacity;
}

.overlay:not(.clean).hidden
{
	opacity: 0;
	pointer-events: none;
}

.overlay.clean.hidden
{
	display: none;
}

.overlay:not(.clean) .content
{
	background-color: rgb(230, 230, 240, .9);
}

.overlay.clean
{
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	background-color: transparent;
	top: 64px;
	height: calc(100vh - 84px);
	z-index: 7;
}

.overlay .widget
{
	width: 40%;
	margin-bottom: 0;
}

.overlay form
{
	margin: 0;
}

.v2 .widget h2
{
	background-color: hsl(208, 100%, 35%);
}

.v2 #background::before
{
	content: "";
	position: absolute;
	height: 100vh;
	width: 100%;
	background-image: url("/img/logo.png");
	background-position: center;
	background-size: 30%;
	background-repeat: no-repeat;
}

.v2 .widget
{
	border: 1px solid rgba(128, 128, 128, .3);
}

#admin-bar
{
	display: flex;
	position: fixed;
	top: 0;
	z-index: 9;
	width: 100%;
	align-items: center;
	height: 64px;
	padding: 0 20px;
	box-sizing: border-box;
	background-color: white;
	justify-content: space-between;
}

#presentation-mode #admin-bar
{
	display: none;
}

#admin-bar input, #admin-bar button
{
	height: 32px;
	border-radius: 16px;
}

#presentation-mode #grid
{
	margin-top: 40px;
}

#widget-entrys, #account-list, #ideas, #users
{
	overflow-y: scroll;
}

.widget-entry
{
	align-items: center;
	display: flex;
}

.widget-entry:not(:first-child)
{
	margin-top: 10px;
}

.input-prefix
{
	padding: 0 10px;
	margin-right: 10px;
	min-width: 120px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgb(80, 80, 100);
	color: white;
	font-size: 11px;
}
/*
.v4.widget .progress-diagram
{
	margin: 0;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}

.v4.widget .progress-track
{
	width: 50%;
	min-width: 50%;
	margin: 0;
	margin-right: 10px;
}

.v4.widget .progress-container p
{
	margin-right: auto;
}

.v5.widget .progress-container
{
	flex-direction: row-reverse;
	box-shadow: none;
}

.v5.widget .progress-percent
{
	min-width: 60px;
	border-radius: 10px;
	height: 20px;
}

.v5.widget .progress-diagram
{
	margin: 0;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	padding: 0px;
	padding-right: 10px;
	background-color: transparent;
}

.v5.widget .progress-track
{
	width: 35%;
	min-width: 35%;
	margin: 0;
	margin-right: 20px;
}

.v5.widget .progress-container p
{
	margin-right: auto;

}
*/
.edit-container
{
	height: 34px;
	margin-left: auto;
	background-color: white;
	border-radius: 17px;
	overflow: hidden;
	border: 2px solid white;
	box-sizing: border-box;
	gap: 5px;
	min-width: fit-content;
}

#presentation-mode .edit-container
{
	display: none;
}

.edit-button
{
	height: 30px;
	width: 30px;
	transition: .2s background-color ease-in-out;
	filter: none;
	background-color: white;
	box-sizing: border-box;
	padding: 6px;
	border-radius: 100%;
	box-shadow: none;
	border: none;
}

.edit-button:first-child
{
	margin-left: 0;
}

.edit-button:hover
{
	background-color: rgba(0, 0, 0, .2)!important;
}

.edit-button.active
{
	background-color: var(--app-color)!important;
}

.edit-button img
{
	height: 100%;
	transition: .2s filter ease-in-out
}

.edit-button.active img
{
	filter: invert(1);
}

#admin-bar .image-button
{
	padding: 0 10px;
}

.image-button
{
	padding: 2px;
	display: flex;
	align-items: center;
	min-width: 40px;
	justify-content: center;
	margin: 0;
}

.image-button img
{
	filter: invert(1);
	width: 30px;
	height: 30px;
	padding: 6px;
	box-sizing: border-box;
}

.image-button .text
{
	padding: 0 5px;
}

::-webkit-scrollbar
{
	width: 16px;
}

::-webkit-scrollbar-track, ::-webkit-scrollbar
{
	background-color: white;
	border-radius: 8px;
}

body::-webkit-scrollbar-track, body::-webkit-scrollbar
{
	border-radius: 0;
}

::-webkit-scrollbar-thumb, ::-webkit-scrollbar-corner
{
	background-color: rgba(0, 0, 0, .5);
	border-radius: 8px;
	border: 5px solid white;
}

.label-button
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.employer
{
	display: flex;
	margin-bottom: 10px;
}

.employer:last-child
{
	margin-bottom: 0;
}

.employer-name
{
	font-weight: 600;
}

.employer-department
{
	font-size: 12px;
}

.employer-date
{
	font-size: 14px;
	font-weight: 700;
	margin-left: auto;
	background-color: var(--app-color);
	border-radius: 16px;
	color: white;
	height: 32px;
	display: flex;
	align-items: center;
	padding: 0 10px 0 13px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

#update-status, .update-status
{
	background-color: rgba(60, 60, 80, 0.8);
	border: 1px solid rgba(128, 128, 128, .1);
	min-height: 32px;
	min-width: 250px;
	margin: 0 auto;
	border-radius: 16px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	transition: .2s background-color ease-out;
}

#activity, #users, #mood, #presence
{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
}

#change-user
{
	margin-top: 20px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#change-user input, #change-user select
{
	width: 100%;
}

.user
{
	display: flex;
	align-items: center;
	padding: 0;
	overflow: hidden;
	transition: .2s background-color ease-out;
}

.user .status
{
	display: flex;
	font-weight: bold;
	font-size: 18px;
	padding: 0;
	letter-spacing: 0;
	height: 100%;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	padding: 0 12px;
}

.user .title
{
	overflow: hidden;
	text-align: left;
	padding-left: 12px;
	font-size: 12px;
}

.user .title:disabled, .user .status:disabled
{
	opacity: 1!important;
	color: white!important;
}

.idea
{
	cursor: default!important;
	display: flex;
	gap: 10px;
	width: 100%;
}

.idea .text, .idea .fullname
{
	padding: 15px 20px;
	height: auto;
}

.idea .fullname
{
	width: auto;
	background-color: rgba(255, 255, 255, 0.8)!important;
	border-color: rgb(255, 255, 255)!important;
	color: black;
	text-align: center;
	cursor: default!important;
}

.idea .text
{
	width: fit-content;
	word-break: break-word;
	/* text-transform: none; */
}

#ideas
{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.idea .label-button
{
	cursor: text;
}

.idea .label-button:hover
{
	background-color: rgba(60, 60, 80, 0.8);
}

#preloader
{
	position: fixed;
	top: 0;
	left: 0;
	background-color: white;
	height: 100vh;
	width: 100vw;
	opacity: 1;
	transition: .1s opacity linear;
	will-change: opacity;
	z-index: 1000;
	pointer-events: none;
}

#move-widget
{
	display: flex;
	margin-right: auto;
	margin-left: auto;
	width: 100vw;
	position: absolute;
	justify-content: center;
	width: calc(100% - 40px);
	z-index: -1;
}

#account-list input
{
	width: 100%;
}


#account-list .widget-entry
{
	gap: 10px;
}

#widget-entrys, #account-list, #ideas, #users
{
	padding-right: 10px;
	border-radius: 8px;
}

#modules button
{
	position: relative;
	text-align: left;
	padding: 5px 15px;
}

.new-label
{
	position: absolute;
	right: 10px;
	top: 9px;
	background-color: white;
	color: black;
	height: 20px;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	font-size: 10px;
	padding-left: 2px;
}

#projects
{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.project
{
	display: flex;
	flex-direction: column;
	background-color: rgba(255, 255, 255, .5);
	border-radius: 16px;
	padding: 20px;
}

.project .reports .report, .project .reports
{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.project .title
{
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 20px;
}

.project .report h3
{
	margin: 0;
}

#preview img
{
	border-radius: 8px;
}

#preview
{
	
	border-radius: 16px;
	height: 200px;
	margin-bottom: 20px;
	box-sizing: border-box;
	background-color: rgba(60, 60, 80, 0.8);
	padding: 10px;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
}

#preview .scroll-container
{
	border-radius: 8px;
	height: 100%;
	display: inline-flex;
	gap: 10px;
}

#preview::-webkit-scrollbar-track, #preview::-webkit-scrollbar
{
	border-radius: 0 0 8px 8px;
}

#preview.hidden
{
	display: none;
}

#projects #preview
{
	margin-bottom: 0;
}

#preview .image-container
{
	position: relative;
}

#preview .image-container > img
{
	scroll-snap-align: center;
	width: auto;
	height: 100%;
	box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
	cursor: pointer;
}

#preview .image-container .remove-button, #preview .image-container .download-button
{
	position: absolute;
	background-color: rgb(245, 245, 255)!important;
	border-radius: 100%;
	width: 25px;
	height: 25px;
	padding: 6px;
}

#preview .image-container .remove-button
{
	top: 10px;
	left: 10px;
}

#preview .image-container .download-button
{
	left: 10px;
	bottom: 10px;
}

#preview .image-container .remove-button img, #preview .image-container .download-button img
{
	height: 100%;
	width: 100%;
}

#fullscreen-preview
{
	position: fixed!important;
	left: 0;
	right: 0;
	top: calc(64px + env(safe-area-inset-top));
	bottom: 0;
	z-index: 10;
	background-color: black;
	display: flex;

	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;

	border-bottom: solid env(safe-area-inset-bottom) rgb(245, 245, 255);

	transition: .5s opacity ease-in-out;
	will-change: opacity;
}

#fullscreen-preview img
{
	height: 100%;
	width: 100%;
}

#fullscreen-preview.hidden
{
	opacity: 0;
	pointer-events: none;
}

.settings-container
{
	display: flex;
}

.settings-container .input-prefix
{
	height: auto;
}

.settings-container .input-group
{
	width: 100%;
}

#mood-list
{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mood-container
{
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.moods
{
	display: flex;
	gap: 10px;
	overflow-y: auto;
	border-radius: 8px;
}

.mood
{
	width: 40px;
	padding: 0;
	letter-spacing: 0;
}