#hoverton-js {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
    Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#hoverton-js .hoverton {
  padding: 30px 20px;
}
#hoverton-js .hoverlay {
  position: relative;
  width: 360px;
  border-radius: 4px;
  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .15);
  user-select: none;
}
#hoverton-js .native-ad {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 6px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 3px;
  font-weight: 600;
  font-size: 8px;
  line-height: 1;
}
#hoverton-js .native-button {
  z-index: 100;
  display: flex;
  padding: 14px 20px;
  justify-content: start;
  align-items: center;
}
#hoverton-js .native-sponsor {
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  font-size: 10px;
}
#hoverton-js .native-img {
  width: auto;
  height: 50px;
}
#hoverton-js .native-banner {
  line-height: 1.35;
}
#hoverton-js .native-tagline,
#hoverton-js .native-description {
  padding: 0 20px;
}
#hoverton-js .native-tagline {
  font-weight: 600;
  font-size: 15px;
}
#hoverton-js .native-description {
  margin-bottom: 20px;
  font-size: 15px;
}
#hoverton-js .native-cta {
  display: block;
  padding: 10px 8px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  font-size: 12px;
}
/* Animation Styling */
#hoverton-js .hoverton .native-banner {
  max-height: 0;
  opacity: 0;
  transition: max-height .4s ease-in-out, opacity .35s ease-in-out;
}
#hoverton-js .hoverton:hover .native-banner {
  max-height: 600px;
  height: auto;
  opacity: 1;
  transition: max-height .4s linear, opacity .35s linear;
}
