.w-clearfix:before,
.w-clearfix:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}
.w-clearfix:after {
  clear: both;
}

.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.medium {
  margin-top: 4px;
  margin-left: 12px;
  float: right;
}

.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;
}

a.app-banner-link:hover {
    opacity: 0.9;
    filter: Alpha(Opacity=90);
}

.app-banner-link.medium {
  height: 88px;
}

.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.medium {
  margin-bottom: 4px;
  float: right;
  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-close.medium {
  top: 16px;
  width: 18px;
  height: 18px;
}

.app-banner-device {
  width: 72px;
  margin-top: -32px;
  padding: 6px 4px;
  float: left;
  border-radius: 12px;
  background-color: #d6d8db;
  box-shadow: -2px 4px 0 0 #e9e9e9, -9px 13px 27px -3px rgba(0, 0, 0, .38);
  -webkit-transform: rotateX(30deg) rotateY(13deg) rotateZ(-20deg) translate(4px, -14px);
  transform: rotateX(30deg) rotateY(13deg) rotateZ(-20deg) translate(4px, -14px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.app-banner-content {
  width: 190px;
  margin-top: 8px;
  margin-bottom: 4px;
  padding-left: 12px;
  float: left;
}

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

.app-banner-cta.medium {
  float: right;
  color: #fff;
}

.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.medium {
  /*left: 0px;*/
  left: -310px;
  top: auto;
  bottom: -4px;
  height: 136px;
  padding-top: 24px;
  -webkit-animation: slide-home-banner 0.5s forwards;
  -webkit-animation-delay: 2s;
  animation: slide-home-banner 0.5s forwards;
  animation-delay: 2s;
}

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

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

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

