.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.app-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .15);
}

.app-banner-icon.small {
  margin-top: -6px;
  margin-bottom: 4px;
  margin-left: 0px;
  float: none;
}

.app-banner-link {
  padding: 8px 16px 8px 24px;
  border-radius: 0px 4px 4px 0px;
  background-color: #8031ff;
  box-shadow: -7px 7px 28px 4px rgba(0, 0, 0, .15);
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-perspective-origin: 50% 50%;
  perspective-origin: 50% 50%;
  text-decoration: none;
}

.app-banner-link.small {
  padding-top: 0px;
  padding-right: 12px;
  padding-left: 12px;
  background-color: #fff;
}

.app-banner-title {
  overflow: hidden;
  float: none;
  font-family: Raleway, sans-serif;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
}

.app-banner-title.small {
  color: #000;
  font-size: 16px;
  line-height: 32px;
}

.app-banner-close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  background-color: #0097ff;
  background-image: url('../images/icon-close-light.svg');
  background-position: 50% 50%;
  background-size: 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.app-banner-cta {
  color: #0097ff;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.floating-app-banner {
  position: fixed;
  z-index: 999;
  padding-top: 8px;
  padding-right: 8px;
  float: left;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  text-decoration: none;
}

/*.floating-app-banner.small {
  left: 0px;
  top: 0px;
  bottom: 0px;
  height: 112px;
  margin-top: auto;
  margin-bottom: auto;
}*/

.floating-app-banner.small {
  /*left: 0px;*/
  left: -136px;
  top: 100px;
  height: 112px;
  margin-top: auto;
  margin-bottom: auto;
  -webkit-animation: slide-ep-banner 0.5s forwards;
  -webkit-animation-delay: 2s;
  animation: slide-ep-banner 0.5s forwards;
  animation-delay: 2s;
}

@-webkit-keyframes slide-ep-banner {
    100% { left: 0; }
}

@keyframes slide-ep-banner {
    100% { left: 0; }
}

@media (max-width: 767px) {
  .floating-app-banner.small {
    display: none;
  }
}

