.top-banner
{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 9999999999;
    min-height: 100vh;
    height: 100%;
}


.top-banner-bg
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    pointer-events: none;
}


.top-banner-content
{
  position: absolute;
  top: 0;
  left: 0;

  box-sizing: border-box;

  color: white;
  text-align: center;
  width: 100%;
  padding: 1.4em 30px 10px 30px;
  margin: -10px 0 20px 0;

  border-bottom: 2px solid white;

  background-color: #d14025;
  background: linear-gradient(#e86328 0%,#db2728 100%);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.top-banner a
{
  color: white;
  display: inline-block;
  margin: 0 .5em;
  text-decoration: underline;
}

.top-banner p
{
  margin: 0 0 .5em 0;
}

body.is_app .avg-banner
{
  display: none !important;
}