@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
/*@import "calendarboard.css";*/
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */


body {
	font-family:"Lato", 'Verdana', sans-serif !important;
	background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url(../wm.svg);
	background-color: aliceblue;
	background-size: cover;
	background-attachment: fixed;
	display: grid;
	grid-template-rows: auto auto 1fr auto;

}

.sidebar {
	position: -webkit-sticky;
	background-color: gainsboro;
	position: sticky;
	size: auto;
	top: 20vh;
	width: 15%;
	border-radius: 10px;
	/*border-style: 3px solid black;*/
	border: 3px solid black;

}

.suche {
	margin-right: 20px;
}

.wellenstart {
	margin-left: 5px;
}

.actions {
	padding-top: 5px;
}

.myDropdownTable {
	display: none;
	position: absolute;
	width: 160px;
	background-color: honeydew;
	box-shadow: gray;
	z-index: 1;
}

.myDropdown {
	margin-top: auto;
	position: relative;
	display: inline-block;
}

.myDropdown:hover .myDropdownTable {
	display: block;
}

.ratio {
	font-size: smaller;
}

.mensch {
	width: 50px;
}

.highlightAvailable a {
	background-color: chartreuse !important;
}

.highlightTaken a {
	background-color: red !important;
}

.erfassen-button-fresh {
	margin-right: 30px;
}

.routeTable {
	border-style: solid 1px black;
}

.tablerow {
	max-height: fit-content;
	font-size: x-small;
}

td {
	font-size: small;
}

th {
	font-size: small;
	top: 0;
	position: sticky;
	background-color: darkgrey;
}

td th .payment_type {
	width: 10%;
}

td.payment_type select {
	width: 100%;
}

td.plannedkm {
	width: 2%;
}

td.maxkm {
	width: 2%
}

td.routenalenge {
	width: 2%
}

.table td,
.table th {
	padding: .4rem !important;
}

table {
	font-family: "Verdana", sans-serif;
	background-color: inherit;
}


/* ALTERNATIVE DSP VIEW */


/* TARIFSS -------------- */
.rate-price {
	width: 100px;
}

.tariff-dashboard {
	position: relative;
	top: 0;
	left: 0;
	background-color: #e5e5e5;
	display: grid;
	grid-template-columns: 1fr 4fr 1fr;
	padding: 15px;
}

.left-panel {
	position: relative;
	background-color: darkgrey;
}

.right-panel {
	position: relative;
	background-color: darkgrey;
}

.middle {
	display: grid;
	grid-template-columns: 50% 50%;
	/* grid-template-rows: repeat(5, 1fr); */
	grid-template-areas:
		'a b';
	/* 'a b'
	'a b'
	'a b'
	'a b'; */
}

.middle2 {
	padding: 20px;
}

.pricelist {
	display: none;
	padding: 10px;
	border: solid black 1px;

}

li:hover div.pricelist {
	display: block;
	position: absolute;
	left: 150px;
	top: 50px;
	padding: 10px;
	background-color: white;
}

.left-side li:hover {
	background-color: darkturquoise;
}

.banner {
	background-image: url("./pics/freshlogo.png");
	background-size: 100% 100%;
	/* background-position: cover; */
	/* background-color: aliceblue; */
}

.heading-primary {
	font-weight: 700;
	display: inline-block;
	width: 95vw;
	padding: 1.5rem;
	margin-left: calc((100% - 95vw) / 2);
	margin-right: calc((100% - 95vw) / 2);
	text-align: center;
	background-color: rgba(#e5e5e5, .5);
	border-radius: .5rem;
}

/* #footer {
	position: relative;
	bottom:0;
	left:50%;
	transform: translate(-50%,-50%)
} */
/*
section ul {
	position:relative;
	left: 0;
}

.first-column:hover {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 25%;
	border-top-right-radius: 2%;
	transition: 0.2s;
}
.first-column:hover section.sidemenu {
	visibility: visible;
}

.menu-items {
	list-style: none;
	margin-left: 0px;
	padding-left: 5px;
}
.menu-item {
	font-size: large;
	height: 2rem;
	width: 100%;
	border-radius: 1%;
}
.menu-item:hover {
	background-color: cornflowerblue;
	transform: translate(10px);
	transition: .2s;
}
.items {
	position: relative;
	z-index: 2;
	display:none;
	float: right;

} */
.result-table {
	z-index: 1;
	font-size: small;
	position: fixed;
	bottom: -2rem;
	right: 6rem;
	color: white;
	background-color: black;
	border-radius: 3px;
	transition: all .5s ease-out;
}

.move-result-table {
	transform: translateY(-3rem);
}

.rotating {
	animation: rotating 2s linear infinite;
}

@keyframes rotating {

	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.custom-height-form-field {
	height: 2.25rem;
}