*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --sat: env(safe-area-inset-top);
  --sar: env(safe-area-inset-right);
  --sab: env(safe-area-inset-bottom);
  --sal: env(safe-area-inset-left);
}

html {
  overflow: hidden;
  height: 100vh;
  max-height: 100vh;
}
body {
  font-family: "Lovoo"!important;
  overflow: hidden;
  margin: 0;
  /*padding: 0;*/
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);

}
.install {
  width: 100%;
  height: 100vh;
  background-color: white;
  position: absolute;
  z-index: 999;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
}

.tooltip {
  display: var(--ripple-visible);
  padding: 12px;
  text-align: center;
  position: absolute;
  top: calc(100% * var(--ripple-y));
  left: calc(100% * var(--ripple-x));
  background-color: #FFFFFF;
  border-radius: 12px;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.2));
  transform: translate(-50%, calc(-100% - 16px)) scale(0);
  z-index: 100;

  transform-origin: bottom center;
  transition: transform .4s cubic-bezier(.46, 1.35, .59, 1.92);
}
.tooltip .amount {
  font-size: 12px;
}
.tooltip .action {
  display: flex;
  gap: 6px;
  font-weight: 700;
  font-size: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 8px;
}
.images-container {
  display: flex;
  align-items: center;
  gap: 22px;
}
.images {
  flex-direction: row;
  align-items: flex-start;
  width: 34px;
}
.images img {
  box-sizing: border-box;

  width: 24px;
  height: 24px;

  background: #D9D9D9;
  border: 2px solid #FFFFFF;
  border-radius: 12px;

  margin: 0px -16px 0 0;
  flex: none;
  flex-grow: 0;
}


.tooltip:after {
  content: '';
  position: absolute;
  z-index: 101;
  top: 100%;
  left: calc(50% - 6px);

  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: white transparent transparent transparent;
}


.header {
  height: 56px;
  width: 100%;
  max-width: 100vw!important;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 0.5px 0px rgba(0, 0, 0, 0.08);
}
.header > * {
  display: flex;
  gap: 16px;
  padding: 0 16px;
  align-items: center;

}

.toolbar {
  position: fixed;
  height: 56px;
  width: 100%;
  background-color: white;
  bottom: 0;
  left: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0px -0.5px 0px rgba(0, 0, 0, 0.08);

  margin-bottom: env(safe-area-inset-bottom);
}

.self-location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  width: 48px;
  height: 48px;
  right: 16px;
  bottom: calc(env(safe-area-inset-bottom) + 72px);
  background-color: white;
  z-index: 101;
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.2));
  cursor: pointer;
}


@font-face {
  font-family: "Lovoo";
  src: url('/fonts/Semibold.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lovoo";
  src: url('/fonts/Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lovoo";
  src: url('/fonts/Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
