@font-face {
	font-family: "Interesting";
	src: 
		url("/assets/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype"),
		url("/assets/fonts/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
}

:root {
	--col-1: #93B6B1;
	--col-2: #E8DEB6;
	--col-3: #B3C9AA;
	--darkcol-1: #656A85;
	--darkcol-2: #798AA2;
	--col-red-bg: #FFD0D0;
	--col-red-fg: #A33939;
	--col-washer: var(--darkcol-1);
	--col-dryer: var(--darkcol-2);
}

body { 
	margin: 0;
	display: flex;
	align-items: center;
	flex-direction:  column;
	gap: 16px;
	padding: 16px;
	font-family: "Interesting", sans-serif;
}

.section-container {
	border-radius: 32px;
	padding: 24px;
	max-width: 512px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
}

.section-container > span {
	align-self: center;
}

.section-container > div {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.section-container > h1 {
	margin: 0;
}

.no-pad {
	padding: 0;
}

.row {
	flex-direction: row !important;
}

.col {
	flex-direction: column !important;
}

.flex-container {
	display: flex;
	gap: 16px !important;
}

.flex-center-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex-center-container-jus {
	display: flex;
	justify-content: center;
}

.flex {
	flex: 1;
}

.button {
	width: 100%;
	height: 48px;
	border-radius: 48px;
	border: none;
	cursor: pointer;
}

.button:hover:not(:disabled) {
	box-shadow: inset 0 0 0 3px #00000033;
}

.button:active:not(:disabled) {
	opacity: .5;
}

.button:disabled {
	cursor: default !important;
	color: black !important;
	opacity: .5;
}

.button-tab:not(:disabled) {
	background-color: transparent;
}

.button-tab:disabled {
	opacity: 1 !important;
}

.button-tab:hover {
	background-color: var(--col-3);
}

.bg-1 {
	background-color: var(--col-1);
}

.bg-2 {
	background-color: var(--col-2);
}

.bg-3 {
	background-color: var(--col-3);
}

.bg-red {
	background-color: var(--col-red-bg);
}

.bg-redder {
	background-color: var(--col-red-fg);
	color: white;
}

.bg-dark {
	background-color: var(--darkcol-2);
	color: white;
}

.bg-darker {
	background-color: var(--darkcol-1);
	color: white;
}

.txtcol-washer {
	color: var(--col-washer);
}

.txtcol-dryer {
	color: var(--col-dryer);
}

.icon {
	margin: 16px;
	margin-left: 0;
	font-size: 3rem;
}

.machine-container {
	display: flex;
	flex-direction: row !important;
	width: 100%;
}

.machine-container > div {
	flex: 1;
}

.machine-container > div > span {
	text-align: center;
	width: 100%;
	display: block;
	height: 1rem;
}

.machine-container > div > img {
	width: 100%;
	display: block;
	padding: 11px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 6px;
	border-radius: 16px;
	overflow: visible;
}

.machine-selected {
	font-weight: bold;
}

.machine-selected > img {
	background-color: var(--col-2);
}

.input-field {
	display: flex;
	flex-direction: row !important;
	flex-wrap: nowrap;
	background-color: var(--col-2);
	width: 272px;
	margin-left: auto;
	margin-right: auto;
	padding: 8px;
	box-sizing: border-box;
	align-items: center;
	border-radius: 36px;
}

.input-field > span {
	flex: 1;
	text-align: center;
}

.input-field > button {
	height: 48px;
	width: 56px;
	border-radius: 64px;
}

.timer-container {
	height: 124px;
	background-color: var(--col-2);
	position: relative;
	border-radius: 32px;
	overflow: hidden;
}

.timer-container > span {
	font-weight: bolder;
	font-size: 4.1rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, calc(-50% - 8px));
}

.timer-container > .prog-container {
	position: absolute;
	bottom: 0;
}

.prog-container {
	width: 100%;
	height: 16px;
	background: #00000011;
}

.prog {
	height: 100%;
	width: 50%;
	background-color: var(--col-1);
}

.credits-container {
	opacity: .5;
	font-size: .9rem;
	text-align: center;
}

a {
	color: black;
}

.feedback {
	position: fixed;
	bottom: 0;
	padding: 12px;
	padding-bottom: 12px;
	background-color: var(--darkcol-1);
	color: white;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	text-decoration: none;
	right: 16px;
	box-shadow: 0 0 8px #00000033;
	transition: .3s padding-bottom, .3s background-color;
}

.feedback:hover {
	padding-bottom: 20px;
	background-color: var(--darkcol-2);
}

.big-text {
	font-size: 1.5rem;
}

#logo-id {
	font-size: 4rem;
	margin: 0;
	font-weight: 900;
}

#logo {
	font-size: 2rem;
}

button {
	font-family: "Interesting", sans-serif;
	font-size: 1rem;
}
