.flyout {
  position: fixed;
  right: 20px;
  bottom: 0;
  width: 480px;
  max-width: calc(100% - 40px);
  background-color: #fff;
  border: 1px #2e2e2e solid;
  z-index: 1039;
  transition: transform 0.6s;
}
.flyout:not(.show) {
  transform: translateY(100%);
}
.flyout.show {
  transform: translateY(0%);
}
.flyout .flyout-header {
  background-color: #3F469D;
  color: #ffffff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flyout .flyout-header .flyout-header-title {
  flex: 1 1 auto;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: bold;
  line-height: 1;
  padding-right: 30px;
}
.flyout .flyout-header .close {
  float: none;
  flex: 0 0 auto;
  color: #ffffff;
}
.flyout .flyout-body {
  padding: 15px;
}
.grecaptcha-badge {
  display: none !important;
}
