:root {
  --navbar: #232323;
}

@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700);
* {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

/* styles for the icon wrap */

.icon-wrap {
  /* don't take the whole line */
  display: inline-block;
  /* transition the background change */
  transition: background-color 0.25s;
  /* height of the icon */
  height: 2em;
  /* width of the icon */
  width: 2em;
  /* space between the icon and the background edge */
  padding: 0.25em;
  /* make it rounded */
  border-radius: 50%;
}


/* styles for the icon wrap when hovered */

.icon-wrap:hover {
  /* add a background on hover */
  background-color: rgba(0, 0, 0, .15);
  /* pointer cursor on hover */
  cursor: pointer;
}

body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  min-height: -webkit-fill-available;
}

button {
  border-radius: 10px !important;
}

.navbar {
  min-height: 96px;
  background-color: var(--navbar);
}

.modal {
  z-index: 99999;
}

#autokostenWrapper {
  width: 100%;
  height: 100%;
}

.contentTitle {
  font-size: 2rem;
  font-weight: bold;
  margin: 2rem;
}

#autokostenlogo {
  padding: 20px;
  height: 75px;
  width: 300px;
  cursor: pointer;
}

#autokostenfrm {
  width: 300px;
}

select:required:invalid {
  color: gray;
}

select:invalid {
  color: #6c757d;
}

.navIcon {
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
  padding: 20px;
  font-size: 2.5rem;
}

.niceFormWrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-top: 10%;
}

.niceForm label {
  font-size: 1.25rem;
}

.niceForm .form-group {
  margin: 15px 0;
}

.niceInput select,
.niceInput input {
  border: 0;
  box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 1.5rem;
}

.niceForm select:focus,
.niceForm input:focus {
  border: 0;
  box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.dropzone {
  border-radius: 10px;
  border: 0;
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 10%);
  transition: box-shadow 0.15s ease-in;
}

.dropzone:hover {
  border-radius: 10px;
  border: 0;
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 20%);
}

.dz-details {
  z-index: 0;
}
.dz-preview .dz-remove.dz-remove {
  z-index: 100;
}

#autoListWrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.autofrmOutput {
  font-size: 24px;
  padding-top: 2rem;
  height: calc(100vh - 97px);
  transition: all 0.25s ease;
}

.autofrmOutputMut {
  font-size: 24px;
  height: calc(100vh - 97px);
  transition: all 0.25s ease;
}
.autofrmOutputColumn {
  display: flex;
  justify-content: space-evenly;
}

.autofrmImage {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 100%;
  max-width: 500px;
  height: 350px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 15px 4px rgb(0 0 0 / 10%);
  color: white;
}

.autofrmImagePlaceholder {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 100%;
  max-width: 500px;
  height: 350px;
}

#noRecord {
  position: absolute;
  left: 50%;
  top: 38.2%;
  transform: translate(-50%);
  font-size: 32px;
}

.dropzone-upload-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  color: #fff;
  font-size: 35px;
  pointer-events: none;
  z-index: 99999;
}

.dropzone .dz-preview .dz-image,
.dropzone .dz-preview.dz-image-preview {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.dz-progress {
  /* progress bar covers file name */
  display: none !important;
}

#usrFrm {
  width: 300px;
}

.falsch {
  outline: 2px solid red !important;
  color: red;
}

.nameWarning,
.notExists {
  display: none;
  color: red;
  margin-top: 0.2rem;
}

#homepageWrapper {
  width: 100%;
  height: calc(100vh - 96px);
  display: flex;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#mainPage {
  width: 75%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  height: max-content;
  position: relative;
  top: 25%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

#mainPageCenter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem;
}

#mainPageTextBlock {
  font-size: 2rem;
}

.collapseTitle {
  font-size: 1.5rem;
  padding: 1rem;
  border-bottom: 1px solid #232323;
}

.collapseTitle a {
  text-decoration: none;
}


.selectedCar {
  background-color: rgba(0, 255, 0, 0.5);
  border-radius: 10px;
}

#carCalculateFrmWrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.accordion-button {
  font-size: 1.5rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 1;
  transform: scale(0.85) translateY(-2rem) translateX(0.5rem);
  background-color: white;
  border-radius: 0;
}

#markeWrapper,
#typWrapper,
#DateWrapper {
  display: flex;
  justify-content: space-between;
  width: 50%;
}

#markeWrapper select,
#typWrapper select,
#DateWrapper input {
  font-size: 1.25rem;
  padding: 0.3rem;
}
#marke,
#typ {
  width: 100%;
}

#filterWrapper {
  position: fixed;
  background-color: white;
  width: 100%;
  border-bottom: 1px solid black;
  display: flex;
  justify-content: center;
  z-index: 9999;
}

#filter {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0;
  gap: 25px;
}

#wrapper {
  position: relative;
  text-align: center;
  height: 100%;
}

#googleChartFrame {
  width: 100%;
  height: 100%;
  display: block;
}

.frmFarbe,
#frmFarbe {
  height: 48px;
}

input[type="color" i]::-webkit-color-swatch {
  border-radius: 10px;
  cursor: pointer;
  border: none;
}

.displayFarbe {
  width: 100%;
  border: none;
}

.homeWrapper {
  width: 100%;
  display: flex;
  margin-top: 200px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.homepageTitle {
  font-size: 3rem;
  margin: 0;
  text-align: center;
}

.homepageSlogan {
  width: 25%;
  text-align: center;
  margin: 10px 0;
}