/*! Sticky Buttons Styles
    Note: Please edit SCSS file and not CSS directly.

*/
/* Breakpoints */
/* Sticky Buttons */
#sticky_buttons {
  position: relative;
  text-align: left;
  /* @fixme: Fixed width icons, old version of Fontawesome must not have this?? */
}
@media (min-width: 801px) {
  #sticky_buttons div {
    position: fixed;
    display: block;
    bottom: 35%;
    right: 0;
    z-index: 9;
  }
  #sticky_buttons div span {
    display: none;
  }
}
@media (max-width: 800px) {
  #sticky_buttons div {
    margin: 15px 0 15px 15px;
  }
}
#sticky_buttons div span {
  margin: 0 5px;
  padding-right: 5px;
  font-size: 90%;
}
#sticky_buttons div:hover span {
  width: 200px;
  cursor: pointer;
  display: inline;
}
#sticky_buttons a {
  position: relative;
  display: block;
  margin: 0;
  font-family: "din-condensed", Arial, sans-serif;
  font-weight: 200;
  font-size: 30px;
  letter-spacing: 1.5px;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
}
#sticky_buttons a:hover {
  text-decoration: none;
}
#sticky_buttons a i {
  padding: 10px;
  width: auto;
}
#sticky_buttons .fa-fw {
  width: 45px !important;
}

/* Sticky Popouts */
#sticky_popout {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  overflow: auto;
  background-color: #fff;
}
@media only screen and (min-width: 801px) {
  #sticky_popout {
    width: 800px;
  }
}
#sticky_popout form {
  margin: 75px 0;
}
#sticky_popout .content {
  margin: 50px;
}
#sticky_popout .close-container {
  display: flex;
  flex-direction: row-reverse;
}
#sticky_popout .close-container .fa-times {
  float: right;
  padding: 20px;
  color: #ffffff;
}
#sticky_popout .close-container .fa-times:hover {
  cursor: pointer;
}
#sticky_popout .messages {
  margin-bottom: 100px;
}
#sticky_popout, #sticky_popout div[class^=button] {
  display: none;
}

/* Sticky BG */
#sticky_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(0, 0, 0, 0.8);
  z-index: 9;
}

/*# sourceMappingURL=sticky-buttons.css.map */
