/* ---------------------- Nova.Hub Inventory CSS ---------------------- */

#cont {
	width: 100%; position: relative; opacity: 0;
	animation: 1s ease 0.5s 1 normal forwards running fade-rise;
}

/* ------ SECTION ------ */

section {
	width: 1300px; margin: 25px auto; padding: 0 0 25px; border-radius: 15px;
	background-color: rgba(255,255,255,0.3); display: flex; flex-direction: row; flex-wrap: wrap;
	justify-content: center; align-content: flex-start; overflow: hidden; position: relative;
	
}
section:nth-of-type(1) {
	display: flex;
}

section h2 {
	width: 100%; margin: 0 0 10px 0; padding: 10px; font-family: gilc;
	font-size: 24pt; font-weight: 400; text-align: center; text-transform: uppercase;
	background-color: whitesmoke; border-radius: 0 0 5px 5px; display: block; position: relative;
}
section h2 b {
	width: 50px; height: 39px; padding: 10px; font-family: calibril;
	background-color: lightblue; position: absolute; top: 0; right: 0; 
}

section button {
	min-width: 180px; max-width: 260px; min-height: 120px; margin: 10px; padding: 15px;
	font-family: gilc; font-size: 26pt;	line-height: 0.9; background-color: gainsboro;
	border-radius: 15px; border: none; display: grid; align-items: center;
	top: 0; left: 0; transition: .5s cubic-bezier(.35,.88,.5,.93), font-size 0s; opacity: 1;
}
section button:hover {
	transform: scale(1.1); cursor: pointer; transition: .3s;
}
section button p {
	font-size: 32pt; display: none;
}
section button img {
	width: 80px; margin: auto;
	text-align: center; display: block;
}

section button input[type=file] {
	width: 100%; height: 100%; position: absolute; font-size: 0; 
	border: 8px solid color-mix(in srgb, lightblue 0%, transparent);
	border-radius: 15px; display: none; z-index: 5; transition: .2s;
}
section button input:hover {
	cursor: pointer; border: 8px solid lightblue;
	box-shadow: 0px 0px 10px lightblue, 0px 0px 20px lightblue;
}
input[type="file"]::file-selector-button {
  display: none;
}



/* ------ ASIDE ------ */

section aside {
	background-color: whitesmoke;
	border-radius: 15px; transition: .3s cubic-bezier(.35,.88,.5,.93);
}

aside h2 {
	margin: 0 0 10px 0; padding: 0; font-size: 34pt;
}
aside h2 i {
	padding: 10px 20px; font-family: calibri; font-size: 36pt; font-weight: 600;
	font-style: normal; color: white; background-color: crimson;
	position: absolute; top: -25px; right: -25px; border-radius: 0 15px 0 10px;
}

aside h3 {
	width: 100%; margin: 10px; font-family: gilc;
	font-size: 22pt; font-weight: 400; text-align: center;
}

aside textarea {
	width: 500px; min-height: 60px; margin: 0 0 15px; padding: 0 10px;
	font-size: 16pt; box-shadow: 1px 1px 3px rgba(150, 150, 150, .5);
	border: 2px solid; border-radius: 5px; field-sizing: content;
}

aside p {
	margin: 0 0 20px; padding: 10px 50px;
	background-color: lightblue; border-radius: 15px; display: inline-block; 
}

aside p input {
	width: 100px; height: 50px;	padding: 0 10px; font-size: 16pt;
        box-shadow: 1px 1px 3px rgba(150, 150, 150, .5);
        border: none;
        border-radius: 5px;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
	display: none;
}

aside b {
	margin: 25px 0 0; padding: 10px 100px; font-family: gilc;
	font-size: 28pt; font-weight: 400; color: white; border-radius: 40px;
	background: mediumseagreen; display: inline-block; transition: .3s;
}
aside b:hover {
	transform: scale(1.08); cursor: pointer; 
}



/* ------ RECIPE ------ */

#recipe {
	padding: 0 0 10px; background-color: lightblue; border-radius: 15px; display: flex;
	flex-wrap: wrap; flex-direction: row; justify-content: center;
}
#recipe a {
	min-width: 100px; max-width: 150px; height: 100px; margin: 10px; padding: 10px; 
	font-family: calibri; font-size: 16pt; text-align: center; text-transform: uppercase;
	background: whitesmoke; border-radius: 15px; display: grid; align-items: center;
}
#recipe a img {
	width: 50px; margin: auto;
}

#new:hover {
	transform: scale(1.1); transition: .3s;
	cursor: pointer;
}

