/* body {
  font: 400 18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: #4650F1;
  letter-spacing: 0.01rem;
  padding: 5rem;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1 {
  color: #fff;
  font-weight: 300;
  margin: 0;
  line-height: 1;
} */

.popout {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}

.popout .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  outline: none;
  user-select: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 32px;
  z-index: 999;
  background: #eee;
  color: #00a3dd;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  transition: 0.2s opacity ease-in-out;
}

.popout .btn.active {
  visibility: hidden;
  opacity: 0;
}

.popout .btn:after {
  display: block;
  position: absolute;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: white;
  z-index: -2;
  transition: transform 0.2s, opacity 0.2s;
}

.popout .btn:active:after {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
}

.popout .panel {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 440px;
  text-align: left;
  overflow: hidden;
  visibility: hidden;
  transform: scale(0);
  transform-origin: 100% 100%;
  transition: all 0.2s;
  opacity: 0;
}

.popout .panel.active {
  height: auto;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: transform 0.2s, visibility 0s 0s, opacity 0.2s;
}

.popout .panel-header {
  padding: 2rem;
  font-size: 1.5rem;
  background-color: #F4E0E0;
  font-weight: 300;
  color: black;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.popout .panel-body {
  padding: 1.5rem 2rem;
  background-color: white;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  font-size: 13px;
}