.custom-navbar {
  position: fixed;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  top: 0;
  padding: 10px;
  z-index: 999;
  display: flex;
  justify-content: center;
  height: 80px;
  width: 100%;
  background: url("../../assets/img/navbar.png") left / cover no-repeat, rgba(255, 255, 255, 0.8);
}

.navbar-inner-container {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
}

.navbar-image {
  height: 60px;
  width: auto;
}

.navbar-toggle-button {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 16px;
  background: var(--bs-primary);
  color: #fff;
  animation: navbar-trigger-animation 1.3s infinite;
  transition: 300ms;
  border: 3px solid var(--bs-primary);
}

.navbar-toggle-button:hover {
  background: #fff;
  transition: 300ms;
  border: 3px solid var(--bs-primary);
  color: #28904b;
  animation: normal;
}

.btn-icon {
  margin: 0;
  padding: 0;
}

::selection {
  background: #28904a;
  color: white;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: #28904a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #31b15b;
}

.sidebar {
  height: calc(100vh - 80px);
  width: 350px;
  position: fixed;
  right: 0;
  top: 80px;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.84);
  padding: 30px;
  transform: translateX(100%);
  transition: 300ms;
}

.sidebar-show {
  transform: translateX(0%);
  transition: 300ms;
}

.sidebar .list-group {
  border: none;
  border-radius: 0px;
  gap: 10px;
}

.sidebar .list-group .list-group-item {
  border: none;
  border-radius: 0px;
  background: transparent;
  border: 3px solid transparent;
  color: var(--bs-primary);
  font-family: Roboto, sans-serif;
  font-weight: 500;
  transition: 300ms;
  font-size: 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.sidebar .list-group .list-group-item:hover {
  border: 3px solid var(--bs-primary);
  background-color: #ffffff77;
}

.sidebar-list-icon {
  margin-right: 10px;
  font-size: 24px;
}

@media (max-width: 540px) {
  .sidebar {
    width: 100vw;
  }
}

.navbar-top-spacer {
  height: 80px;
  width: 100%;
}

.footer-divider {
  height: 3px;
  width: 100%;
  background: var(--bs-primary);
  border-radius: 10px;
}

table.table tbody tr td {
  border: none !important;
  border-bottom: none !important;
  border-bottom-width: 0px !important;
}

.bottom-footer-text {
  color: var(--bs-primary);
}

footer .footer-col-heading {
  font-family: Roboto, sans-serif;
  font-size: 24px !important;
  color: var(--bs-primary);
}

.footer-content-text {
  color: var(--bs-primary) !important;
}

.bottom-footer-text .list-group {
  border: none;
}

.bottom-footer-text .list-group .list-group-item {
  border: none;
  background: transparent;
  color: var(--bs-primary);
  font-family: Roboto, sans-serif;
  font-weight: 500;
  transition: 300ms;
  font-size: 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.footer-linkedin {
  color: var(--bs-primary);
  font-size: 16px;
  cursor: pointer;
}

footer .list-unstyled li a {
  font-size: 16px;
  text-decoration: none;
  color: var(--bs-primary) !important;
  cursor: pointer;
  transition: 300ms;
}

footer .list-unstyled li a:hover {
  transition: 300ms;
  color: var(--bs-primary) !important;
  font-weight: 600;
}

.section-heading {
  font-family: Roboto, sans-serif;
  color: var(--bs-primary);
  font-weight: bold;
}

.section-divider {
  height: 3px;
  width: 100%;
  background: var(--bs-primary);
  border-radius: 10px;
  margin-bottom: 20px;
}

/* ---------------- */

html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#loader {
  height: calc(100vh - 80px);
  width: 100%;
  background: white;
  position: fixed;
  top: 80px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  z-index: 50;
}

.mitglieder-list-container {
  height: calc(100vh - 80px);
  background: #fff;
  width: 400px;
  float: left;
  padding: 20px;
}

.mitglieder-list-inner-container {
  height: 100%;
  width: 100%;
  background: #fff;
}

.search-btn-container {
  margin-bottom: 20px;
}

.search-btn-container .search-input {
  height: 44px;
  border: 3px solid var(--bs-primary);
  outline: none;
  border-radius: 50px;
  width: 100%;
  padding-left: 55px;
  font-family: Roboto, sans-serif;
  padding-right: 12px;
  color: var(--bs-primary);
  font-weight: bold;
}

.search-btn-container .btn {
  height: 44px;
  width: 44px;
  background-color: var(--bs-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  transition: 300ms;
  border: 3px solid var(--bs-primary);
}

.search-btn-container .btn:hover {
  background-color: #fff;
  color: var(--bs-primary);
  border: 3px solid var(--bs-primary);
  transition: 300ms;
}

.karte-container {
  height: calc(100vh - 80px);
  background: #dedede;
  width: calc(100% - 400px);
  float: left;
}

.mitglieder-list {
  overflow: auto;
  max-height: calc(100% - 44px - 20px);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.mitglied-list-item {
  width: 100%;
  border-radius: 12px;
  padding: 10px;
  color: var(--bs-primary);
  font-family: 'Roboto';
  font-weight: 500;
  height: 100%;
  cursor: pointer;
  transition: 300ms;
  border: 3px solid transparent;
}

.mitglied-list-item:hover {
  transition: 300ms;
  border: 3px solid var(--bs-primary);
}

.mitglied-list-item p {
  margin: 0;
}

.mitglied-list-item input::placeholder {
  color: var(--bs-primary);
}

.mitglied-list-item input:-moz-placeholder {
  color: var(--bs-primary);
}

::-webkit-input-placeholder {
  color: #8ac29c;
}

@media (max-width: 600px) {
  .mitglieder-list-container {
    width: 100%;
    height: calc((100vh - 80px) / 2);
  }
}

@media (max-width: 600px) {
  .karte-container {
    width: 100%;
    height: calc((100vh - 80px) / 2);
  }
}

@media (max-width: 600px) {
  .section-karte {
    display: flex;
    flex-direction: column-reverse;
  }
}

#loader .spinner-container {
  /*display: flex;*/
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#loader #loader .spinner-grow {
  margin-bottom: 10px;
}

.progress {
  width: 200px;
  height: 20px;
  border-radius: 50px;
}

.progress-bar {
  width: 0% !important;
}

#spinnerContainer {
  display: none;
}

#spinnerContainer.show {
  display: flex !important;
}

.hide-loader-animation {
  animation: fadeOut 0.3s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

