body {
  font-weight: 400;
  font-family: Helvetica, "sans-serif";
  background-color: #1e1e2d !important;
}

.green {
  color: green !important;
}

.red {
  color: red !important;
}

#app {}

.wrapper {}

.splash-screen {
  background-image: url('/media/img/background.jpg');
  background-size: cover;
  background-position: center;
}

.imetal_background {
  background-image: url('/media/img/background.jpg');
  background-size: cover;
  background-position: center;
}

.page-loader {
  background-image: url('/media/img/background.jpg') !important;
  background-size: cover;
  background-position: center;
}

.bg-dark-new {
  --bs-bg-opacity: 1;
  --bs-dark-rgb: 30, 33, 38;
  --bs-dark: #1e2126;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.form-control-new {
  display: block;
  width: 100%;
  padding: .59375rem 1.125rem;
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: #a7a6a8;
  background-color: #1e2126;
  background-clip: padding-box;
  border: 2px solid #1e2126;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .6rem;
  -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.chat-body {
  overflow-y: scroll !important;
  scroll-behavior: smooth;
}

.chat-footer {
  bottom: 12px;
  position: absolute;
}

.circle {
  background-color: #ccc;
  border-radius: 50%;
  height: 4rem;
  text-align: center;
  width: 4rem;
}

.circleMap {
  background-color: #ccc;
  border-radius: 50%;
  height: 4rem;
  text-align: center;
  width: 4rem;
  animation: out 3s infinite ease-out;
}

.people-marker-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.marker-status-label {
  margin-top: 2px;
  padding: 2px 6px;
  background: rgba(18, 17, 13, 0.9);
  border: 1px solid rgba(212, 166, 65, 0.3);
  border-radius: 8px;
  color: #d4a641;
  font-size: 0.58rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(4px);
}

.marker-direction-arrow {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  pointer-events: none;
  transition: transform 0.8s ease-out;
  /* triangle via clip-path pointing UP = North (0°) */
  background: #d4a641;
  clip-path: polygon(50% 0%, 15% 100%, 85% 100%);
  transform-origin: 50% calc(100% + 16px);
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

.circleMapBackgroundActive {
  background-color: #5F8C4D;
}

.initials {
  font-size: 1rem;
  /* 50% of parent */
  line-height: 1;
  position: relative;
  top: 1.25rem;
  /* 25% of parent */
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 720px !important;
  }

  .chat-footer {
    bottom: 54px;
  }

  .page {
    height: 100%;
  }
}

.marker {
  background-image: url('/media/img/map-marker.png');
  background-size: cover;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.marker-me {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: #89849b;
  position: absolute;
  display: inline-block;
  transform: rotate(-45deg) !important;
  -webkit-transform: rotate(-45deg) !important;
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  margin: -20px 0 0 -20px;
  z-index: 2000;
  animation-name: bounce;
  animation-fill-mode: both;
  animation-duration: 1s;
}

.marker-me:after {
  content: '';
  width: 14px;
  height: 14px;
  margin: 8px 0 0 8px;
  background: #2F2F2F;
  position: absolute;
  border-radius: 50%;
}

.pulse {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  height: 14px;
  width: 14px;
  position: absolute;
  margin: 11px 0px 0px -12px;
  transform: rotateX(55deg);
  z-index: -2;
}

.pulse:after {
  content: "";
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: absolute;
  margin: -13px 0 0 -13px;
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;
  opacity: 0.0;
  box-shadow: 0 0 1px 2px #89849b;
  animation-delay: 1.1s;
}

@keyframes out {
  50% {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, .6);
  }

  100% {
    box-shadow: 0px 0px 0px 30px rgba(255, 255, 255, 0.0);
  }
}

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0.0;
  }

  50% {
    opacity: 1.0;
  }

  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@keyframes bounce {
  0% {
    opacity 0;
    transform translateY(-2000px) rotate(-45deg);
  }

  60% {
    opacity 1;
    transform translateY(30px) rotate(-45deg);
  }

  80% {
    transform translateY(-10px) rotate(-45deg);
  }

  100% {
    transform translateY(0) rotate(-45deg);
  }
}

@media (min-width: 992px) {
  .pb-lg-7 {
    padding-bottom: 1.5rem !important;
  }

  .chat-footer {
    width: calc(100% + (2rem));
    margin-left: -1rem;
    z-index: 1;
  }

  .chat-form {
    position: relative;
    padding: .5rem;
  }

  .rounded-pill {
    border-radius: 2.25rem !important;
  }

  .content .container {
    padding: 0px 0px 0px 0px;
    margin-left: 0px !important;
    margin-right: 0px !important;
    height: 100vh;
    max-width: 100% !important;
  }

  .wrapper .content {
    padding: 0px;
  }

  .dz-preview {
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.map-container {
  flex: 1;
  height: 100%;
  width: 100%;
}

.mapboxgl-canvas-container {
  height: 100vH;
}

#sidebar {
  background-color: rgb(35 55 75 / 90%);
  color: #fff;
  padding: 6px 12px;
  font-family: monospace;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  margin: 12px;
  border-radius: 4px;
}

page {
  background: white;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.5cm;
  box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
}

page p {
  line-height: 1;
  margin-bottom: 0px;
}

page[size="A4"] {
  width: 21cm;
  height: 29.7cm;
  font-size: 12px;
  line-height: 1;
}

page[size="A4"][layout="landscape"] {
  width: 29.7cm;
  height: 21cm;
}

page[size="A3"] {
  width: 29.7cm;
  height: 42cm;
}

page[size="A3"][layout="landscape"] {
  width: 42cm;
  height: 29.7cm;
}

page[size="A5"] {
  width: 14.8cm;
  height: 21cm;
}

page[size="A5"][layout="landscape"] {
  width: 21cm;
  height: 14.8cm;
}

.visitenkarte {
  height: 5.5cm;
  width: 8.5cm;
  margin: 0.5cm;
  border-color: red;
  border-width: 1em;
  border-style: solid;
}

@media print {
  #pages {
    margin: 0;
    border: initial;
    border-radius: initial;
    width: initial;
    min-height: initial;
    box-shadow: initial;
    background: initial;
    page-break-after: always;
  }
}

.list-enter-active,
.list-leave-active {
  transition: all 0.5s ease;
}

.list-enter-from,
.list-leave-to {
  opacity: 0;
  transform: translateX(30px);
}

.bg-lightgrey {
  background-color: rgba(26, 29, 33, 1) !important;
}

.bg-newblack {
  background-color: #16191c;
  !important;
}

@media (min-width: 992px) {
  .navigation-mobil {
    display: none !important;
  }

  .aside-secondary-enabled .aside {
    width: 510px !important;
  }

  .aside-secondary-enabled.aside-fixed .wrapper {
    padding-left: 510px !important;
  }

  .aside .aside-secondary .aside-workspace {
    width: 400px !important;
    flex-shrink: 0;
  }

  .chat-body-inner {
    padding: 0px 12px 120px 12px;
  }

  .chat-footer {
    bottom: 0px;
    position: absolute;
    padding: 24px;
  }
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(30, 33, 38, 1) !important;
}

@media (max-width: 991px) {
  .mobile_sticky_map_navigation {
    position: fixed;
    padding: 24px;
    bottom: 112px;
    right: 24px;
    background-color: black;
  }

  .container,
  .container-xxl,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding: 0px !important;
  }

  .content {
    padding: 0px !important;
  }

  .navigation-mobil {
    display: block;
    bottom: 0px;
    position: absolute !important;
    width: 100%;
    height: 68px;
    background-color: black;
    z-index: 1500;
  }

  .navigation-mobil .nav {
    padding: 6px 36px;
  }

  .chat-header {
    position: fixed;
    width: 100%;
    height: 68px;
    background-color: rgba(30, 33, 38, 1) !important;
    top: 0px;
    left: 0px;
    z-index: 1050;
  }

  .chat-body {
    overflow-y: scroll !important;
    scroll-behavior: smooth;
  }

  .chat-body-inner {
    padding: 54px 12px 160px 12px;
  }

  .chat-footer {
    width: calc(100% +(4rem));
    margin-left: -2rem;
    z-index: 1;
    padding-bottom: 90px !important;
    position: fixed !important;
    padding: 24px;
    <
  }

  .page {
    height: 100%;
  }

  .wrapper {
    height: 100%;
  }

  .content {
    height: 100vh;
  }
}