body {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  margin: 0;
  background-color: #fff;
  color: #000;
}

#fundament-vst-status {
  position: fixed;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  grid-gap: 0.5rem;
  z-index: 1;
  pointer-events: none;
}
#fundament-vst-status > [data-status] {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.5rem;
  transition: background 0.1s ease-in-out;
}
#fundament-vst-status > [data-status].in-view {
  background: rgba(0, 210, 9, 0.5);
}

[data-vst-section] {
  background: #fff;
  position: relative;
}
[data-vst-section] > .view {
  position: sticky;
  top: 0;
  height: 100%;
  max-height: 100vh;
  overflow: hidden;
}
[data-vst-section] > .view.center-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.popup-wrapper.hide {
  opacity: 0;
  pointer-events: none;
}
.popup-wrapper > .popup {
  width: 645px;
  max-width: 100%;
  height: auto;
  background: #fff;
  border-radius: 20px;
  padding: 25px 30px;
  overflow: hidden;
}
.popup-wrapper > .popup > .icon-wrapper {
  width: 71px;
  height: 135px;
  background: transparent;
  position: relative;
  margin: 0 0 10px 0;
}
.popup-wrapper > .popup > .icon-wrapper.animate > .rocket {
  top: -100px;
  left: 40px;
  transform: rotate(40deg);
}
.popup-wrapper > .popup > .icon-wrapper.animate > .smoke {
  opacity: 0;
}
.popup-wrapper > .popup > .icon-wrapper > .rocket {
  width: 35px;
  height: 75px;
  transition: left 1s ease, top 1s ease, transform 1s ease;
  transform: rotate(0);
  margin: 0;
  background-image: url("images/rocket.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 20px;
}
.popup-wrapper > .popup > .icon-wrapper > .fundament-logo {
  width: 46px;
  height: 14px;
  background-image: url("images/fam-logo.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.popup-wrapper > .popup > .icon-wrapper > .smoke {
  width: 71px;
  height: 50px;
  opacity: 1;
  transition: opacity 1s ease;
  background-image: url("images/smoke.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  bottom: 20px;
  left: 0;
}
.popup-wrapper > .popup > h3 {
  font-size: 23px;
  line-height: 27px;
  margin: 0 0 15px 0;
}
.popup-wrapper > .popup > p {
  color: #000;
  font-size: 14px;
  line-height: 21px;
  margin: 0 0 20px 0;
}
.popup-wrapper > .popup > p a {
  color: #000;
  text-decoration: underline;
}
.popup-wrapper > .popup > p a:hover {
  text-decoration: none;
}
.popup-wrapper > .popup > button {
  background: #000;
  padding: 14px 25px;
  color: #fff;
  border: 0;
  box-shadow: none;
  outline: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.popup-wrapper > .popup > button:hover {
  background: #333333;
}

/*# sourceMappingURL=fundament-vst.css.map */
