/**
 * Fix for vh on ipad iOS 7.
 * http://caniuse.com/#feat=viewport-unit-for-ipads
 */
/* AEM Grid Mixins */
.cta-sticky-footer-disabled:focus, .cta-sticky-footer-disabled:active, .cta-sticky-footer-disabled:hover, .cta-sticky-footer-disabled {
  border-radius: 100px;
  position: relative;
  display: block;
  width: 100%;
  min-height: 40px;
  text-align: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "MuseoSans", sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease-in-out;
  transition-property: background, color, border;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
}
.cta-sticky-footer-disabled:hover, .cta-sticky-footer-disabled:visited {
  text-decoration: none;
}

.cta-sticky-footer-disabled:focus, .cta-sticky-footer-disabled:active, .cta-sticky-footer-disabled:hover, .cta-sticky-footer-disabled {
  border: 1px solid #00aeef;
  background-color: #00aeef;
  font-size: 1em;
  margin-bottom: 0;
  padding: 7px 24px;
  line-height: 1.5em;
  outline: none;
  color: white;
  border-radius: 100px;
  min-height: 40px;
}
.cta-sticky-footer-disabled:hover, .cta-sticky-footer-disabled:active {
  border: 1px solid #008bbf;
  background-color: #008bbf;
}
.cta-sticky-footer-disabled:active {
  transform: scale(0.98);
}
.cta-sticky-footer-disabled:focus {
  border: 1px solid #00aeef;
  color: #ffffff;
  overflow: visible;
}
.cta-sticky-footer-disabled:focus::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: transparent;
  border: 1px dashed #00aeef;
  border-radius: 100px;
}
.cta-sticky-footer-disabled:hover {
  color: white;
}
.cta-sticky-footer-disabled:focus, .cta-sticky-footer-disabled:active {
  color: white;
}
.cta-sticky-footer-disabled:disabled {
  border-color: #eee;
  background: #eee;
  color: #999;
  cursor: not-allowed;
}
.cta-sticky-footer-disabled .fa {
  margin-left: 10px;
}

.cta-sticky-footer {
  z-index: 1;
  padding: 0.25em 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  border-top: 1px solid #b7c2cb;
  background-color: rgba(255, 255, 255, 0.9);
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.cta-sticky-footer[data-hide-on-mobile] {
  display: none;
}
@media all and (min-width: 61.25em) {
  .cta-sticky-footer[data-hide-on-mobile] {
    display: block;
  }
}

.cta-sticky-footer__description {
  margin-bottom: 0.5em;
}
.cta-sticky-footer__description p:empty {
  display: none;
}
.cta-sticky-footer__description p:last-child {
  margin-bottom: 0;
}

.cta-sticky-footer-disabled {
  pointer-events: none;
}
