:root {
  --content-space-to-footer: 35px;

  --footer-size: 30px;
  --footer-margin-top: -30px;
}

.tooltip-container {
  display: inline-block;
}

.tooltip-container i {
  cursor: pointer;
  font-size: 1.2em;
}

.tooltip {
  position: absolute;
  background-color: wheat;
  width: fit-content;
  border-radius: 10px;
  padding: 5px;
  display: none;
  max-width: 350px;
  margin-left: 30px;
}

.tooltip-container:hover > .tooltip {
  display: block;
}

.searchBar {
  display: flex;
  background-color: aquamarine;
  justify-content: space-between;
  padding: 5px;
  align-items: center;
  border-radius: 0px 0px 7px 7px;
  margin: 0 7px;
}

.searchBar div {
  font-size: 1.5em;
}

/* Side By Side View */
#split-sidebyside {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-gap: 10px;
  height: calc(100vh - 95px);
  width: calc(100% - 15px); /* Not Block Scallbar */
  position: fixed;
}

#select-categorie {
  list-style: none;
  overflow-y: auto;
  z-index: 1;
  margin-bottom: var(--content-space-to-footer);
}

#select-categorie ul {
  /* margin-left: 20px; */
  list-style: none;
}

#select-categorie li {
  margin: 10px;
  background-color: antiquewhite;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid;
}

.categorie-menu {
  cursor: pointer;
}

.categorie-menu ul {
  display: none;
  cursor: unset;
}
.categorie-menu ul.open {
  display: block;
  cursor: unset;
}

.categorie-item {
  display: flex;
  align-items: center;
  background-color: lavender !important;
  cursor: pointer;
}

.categorie-item .tooltip-container i {
  padding-right: 0;
}

.categorie-menu span .tooltip-container, .categorie-item .tooltip-container {
  margin-left: auto;
}

#categorie-details {
  overflow-y: auto;
  margin-top: 10px;
  margin-bottom: var(--content-space-to-footer);
}

#categorieTitle .tooltip-container {
  display: none;
}

main {
  margin-top: 46px;
}

main i {
  padding-right: 10px;
}

.active {
  background-color: lightgreen !important;
}

.files {
  padding: 20px;
  background-color: lavender;
  margin: 5px 0;
  border-radius: 10px;
  border: 1px solid;
}

#categorieTitle {
  display: flex;
  align-items: center;
}

#categorieTitle i {
  font-size: 25px;
  margin-left: 5px;
}

footer {
  display: flex;
  clear: both;
  position: fixed;
  top: 100%;
  background-color: #333;
  width: 100%;

  margin-top: var(--footer-margin-top);
  height: var(--footer-size);
  z-index: 0;
  padding: 0 10px;
}

footer a, footer p {
  color: #fff;
  padding: 5px;
}
footer p {
  margin-left: auto;
}

h1.middle {
  width: fit-content;
}

#privacy-policy {
  max-width: 500px;
}

#privacy-policy img {
  padding: 10px;
  margin: 0 auto;
  width: 150px;
  margin-left: 150px;
}

.privacypolicy p {
  margin-bottom: 20px;
}

.info, .error {
  background-color: antiquewhite;
  width: fit-content;
  padding: 10px;
  border-radius: 15px;
  margin: 60px auto 15px; /* Top Margin goes under Navbar */
}
.error {
  background-color: coral;
}
.error {
  margin: unset;
  border-radius: unset;
  width: unset;
  text-align: center;
}

.bold-text {
  font-weight: bold;
}

#cars {
  list-style: none;
}

#cars li {
  border-radius: 15px;
  padding: 15px;
  background-color: #BBDBF5;
  cursor: pointer;
  margin: 10px 10px 0px 10px;
}

#cars a h3 {
  margin-bottom: 10px;
}
