body {
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  font-size: 12px !important;
  font-family: 'Poppins', sans-serif !important;
  background-color: #0F0F14;
  margin: 0;

  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  height: -webkit-fill-available;
}

#root, #call {
  max-width: 400px;
  width: min(100%, 400px);

  background-image: url('/images/header-background.svg');
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #0F0F14;
  background-size: 100% auto;

  height: 100dvh;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  position: relative;
  overflow-y: hidden;
}

#call.minimize {
  display: flex;
  position: absolute;
  top: 75vh;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(42, 42, 64);
  padding: 10px 15px;
  border-radius: 30px;
  align-items: center;
  gap: 15px;
  z-index: 999;
  height: 7vh;
  width: 22vw;
}
/* 
#root.contact-group-bg {
  background-image: url('/images/circle-page-background.svg');
  background-position: center bottom;
} */

button {
  cursor: pointer;
  border: none;
  outline: none;
}

#snackbar {
  visibility: hidden;
  min-width: 280px;
  background-color: #222232;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
  padding: 12px 16px;
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
}

#snackbar-action {
  color: #FFFFFF;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
}

#snackbar.show {
  visibility: visible;
    opacity: 1;
    bottom: 100px;
}

#snackbar-text{
  font-size: 13px;
  color:  #B3B3C4;
}