/* button "Book a demo" */
a.footer-btn.book-a-demo {
  cursor: pointer;
  display: inline-block;
  position: fixed;
  z-index: 2147483648;
  bottom: 5px;
  left: 5px;
  background: #fffce4;
  color: #be1621;
  border: 1px solid #be1621;
  border-radius: 30px;
  padding: 8px 15px;
  font-size: 20px;
  transform: scale(0.8);
  transform-origin: bottom left;
}
@media (min-width: 768px) {
  a.footer-btn.book-a-demo {
    transform: scale(1);
  }
}
a.footer-btn.book-a-demo::before {
  font-size: 24px;
  vertical-align: bottom;
}
#book-a-demo-cont {
  position: fixed;
  z-index: 2147483650;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
#book-a-demo-cont div {
  position: relative;
}
#book-a-demo-cont div::before {
  content: "+";
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-size: 2rem;
  transform: rotate(45deg);
  color: #be1621;
  background: #fff;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
}
#book-a-demo-cont div iframe {
  border: none;
  box-shadow: 0 0 5px #be1621, 0 0 10px #be1621;
  border-radius: 10px;
  max-width: 500px;
  max-height: 750px;
  width: 90vw;
  height: 80vh;
  transition: all 0.5s ease-in-out;
}
#book-a-demo-cont div iframe.wide {
  max-width: 1050px;
}
@media (min-width: 900px) {
  #book-a-demo-cont div iframe.wide {
    max-height: 600px;
  }
}
#book-a-demo-cont.hidden {
  opacity: 0;
}
