body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.eclipse::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	left: 0;
	top: 0;
	transition: opacity 0.6s;
	opacity: 0;
}

.eclipse:hover::after {
	opacity: 1;
}

.grid {
	display: grid;
}

.c-3 {
	grid-template-columns: repeat(3, 1fr);
}

@media ( max-width : 320px) {
	.c-flex {
		grid-template-columns: 1fr;
	}
}

@media ( min-width : 321px) and (max-width: 720px) {
	.c-flex {
		grid-template-columns: repeat(2, 1fr);
	}
	.c-flex-control {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media ( min-width : 721px) {
	.c-flex {
		grid-template-columns: repeat(5, 1fr);
	}
	.c-flex-control {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media ( min-width : 1280px) {
	.c-flex {
		grid-template-columns: repeat(5, 1fr);
	}
	.c-flex-control {
		grid-template-columns: repeat(5, 1fr);
	}
}

.required::after {
	content: '*';
	margin-left: 0.3em;
	color: #f66151;
}

.order-value {
	--buttons-width: 2rem;
	position: relative;
	padding: 0.4rem 1rem;
	border: 1px solid rgb(222, 221, 218);
	border-radius: 0.4rem;
	padding-right: calc(var(--buttons-width));
	overflow: hidden;
	text-align: center;
	width: calc(var(--buttons-width)*3);
}

.order-value::before {
	position: absolute;
	display: block;
	width: calc(var(--buttons-width));
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	font-size: 1.5em;
	font-family: 'bootstrap-icons';
	content: "\f12E";
	background-color: var(--bs-tertiary-bg);
	color: var(--bs-link-color);
}

.order-value::after {
	position: absolute;
	display: block;
	width: calc(var(--buttons-width));
	height: 100%;
	right: 0;
	bottom: 0;
	top: 0;
	font-size: 1.5em;
	font-family: 'bootstrap-icons';
	content: '\f137';
	background-color: var(--bs-tertiary-bg);
	color: var(--bs-link-color);
}

.c-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
}

.login-bg {
	height: 100vh;
	width: 100vw;
	/*background: linear-gradient(135deg, #a0d8ef, #e2f9d9, #f5e4d4, #d4e6f1);*/
	background: linear-gradient(135deg,#f1f1f2, rgb(245, 252, 255), #e0e6f1, #f4f9fd);
	
	background-size: 400% 400%;
	animation: gradientBG 20s ease infinite;
	min-height: 100vh;
	margin: 0;
	font-family: sans-serif;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.login-form {
	background-color: aliceblue;
	opacity: .95;
	border-radius: 10px;
	padding: 2.5rem !important;
	/*box-shadow:  0 0 50px 0px rgb(94, 92, 100);*/
	box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
	min-width: 25rem;
}

.login-form:hover {
	box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.25);
}

.card-selectable {
	position: relative;
}

.select-label {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	/*opacity: .5;*/
}

.select-label-checked {
	opacity: .3;
	/*background: rgb(46, 194, 126);*/
	background-color: rgb(98, 160, 234);
}

.hide {
	display: none;
}

.nav-btn {
	display: block;
	background: none;
	color: inherit;
	border: none;
	padding: 0 0.5rem;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

.nav-btn-group {
	transition: .25s;
	border-radius: 0;
}

.nav-btn-group+.nav-btn-group {
	border-left: 2px solid #deddda;
}

.nav-btn-group:hover {
	background: rgb(98, 160, 234, .5);
	/* #c0bfbc88;*/
}

.nav-main {
	box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.3);
	position: fixed;
	z-index: 10;
	top: 0;
	width: 100%;
	/*height: 60px;*/
}

input:focus, select:focus, textarea:focus, .accordion-button:focus {
	border-color: rgba(82, 168, 236, 0.8) !important;
	outline: none !important;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px
		rgba(82, 168, 236, 0.6) !important;
}

.card-footer-tile {
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.btn-fill {
	color: #222;
	/*background-color: var(--bs-tertiary-bg-rgb);*/
	width: 100%;
	height: 100%;
	text-align: center;
	text-decoration: none;
	padding: .3rem;
}

.btn-fill:hover {
	background-color: rgba(82, 168, 236, 0.8);
}

.btn-fill:active {
	background: rgba(52, 138, 206, 0.8);
}

.btn-fill+.btn-fill {
	border-left: 1px solid rgb(192, 191, 188);
}

.pageNav {
	transition: .25s;
	height: 0;
}

.nav-visible {
	height: 50px;
}

.card-hover:hover {
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 1px 3px
		rgba(82, 168, 236, 0.6) !important;
}

.transition-long {
	transition: 3s;
}

.alert2 {
	margin-top: 80px;
	height: 3.7rem;
	overflow: hidden !important;
	margin-bottom: 0;
}

.collaps {
	margin-top: 0;
	height: 0px;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	border: 0;
	/*padding:0 !important;*/
}

.navigation-about {
	display: inline;
	position: relative;
	margin-right: 1rem;
	color: rgb(94, 92, 100);
}

.navigation-about:hover {
	filter: drop-shadow(0px 0px 0.5px rgba(0, 0, 0));
}

.navigation-about-container {
	position: absolute;
	display: none;
	font-size: 10pt;
	min-height: 10px;
	min-width: 200px;
	top: 1.5em;
	right: 5px;
}

.about-icon:hover+.navigation-about-container {
	display: block;
}

.invariant-count {
	display: inline-block;
	border: 1px solid #444444;
	color: #444444;
	text-decoration: none;
	border-radius: 50%;
	width: 1.5em;
	height: 1.5em;
	text-align: center;
}

.table-product-details>tbody>tr>td+td {
	text-align: end;
}

.popup-wrapper {
	position: fixed;
	min-width: 15rem;
	border-radius: .5rem;
	overflow: hidden;
	border: 1px solid #c0bfbc;
	z-index: 11;
}

.popup__wrapper_relative {
	position: relative;
	width: 100%;
	height: 100%;
}

.popup__headline {
	width: 100%;
	height: 1.5rem;
	background-color: #62a0ea;
	display: flex;
	align-items: center;
}

.popup__title {
	display: inline;
	color: white;
	width: 100%;
	text-align: center;
	user-select: none;
}

.popup__close-button {
	color: #fff;
	width: 1.5rem;
}

.popup__close-button:hover {
	color: rgb(224, 27, 36);
}

.popup__close-button:active {
	color: #888;
}

.popup__resizebutton {
	position: absolute;
	bottom: 0;
	right: 0;
}

.popup__reload {
	color: #fff;
}

.popup__reload:hover {
	color: #aaa;
}

.logo {
	text-transform: uppercase;
	color: rgb(154, 153, 150);
	font-size: 2rem;
	text-shadow: 1px 1px 0 rgb(0, 0, 0, .5);
	display: flex;
	align-items: center;
}

.logo>a {
	text-decoration: none;
}

.cell-align-center {
	vertical-align: middle;
	text-align: center;
}

.text-start {
	text-align: start;
}

td {
	vertical-align: middle;
}

.nowrap {
	white-space: nowrap;
}

.wrap {
	white-space: pre-line;
}

.footer {
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	padding-bottom: 2rem !important;
}

.status-radio {
	border-radius: 10px;
	border-width: 1px;
	border-color: #000;
	border-style: solid;
	padding: .3rem .4rem;
	font-weight: 500;
}

.status-radio:hover {
	background: #c0bfbc;
}

input.status-radio[type="radio"] {
	display: none;
}

input.status-radio[type="radio"]:checked+.status-radio {
	background-color: var(--bs-success);
	color: white;
}

.select2-search__field {
	box-shadow: none !important;
}