/* flutter_native_splash */
html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #ffffff;
  background-size: 100% 100%;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contain {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stretch {
  display: block;
  width: 100%;
  height: 100%;
}

.cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.bottomLeft {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bottomRight {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* fade in with delay */
#splash {
  opacity: 0;
  animation: 0.5s fadeIn 1s linear forwards;
}

#splash-image {
  display: none;
  width: 236px;
  height: 72px;
}

#splash-image.show {
  display: block;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Intercom */
body.hide-intercom-notifications iframe[name="intercom-notifications-frame"] {
  display: none;
}

body.app-loading #intercom-container {
  display: none;
}
