
.banner {
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 140px;
  background-color: #000;
  display: none;
}

.banner.banner--show {
  display: block;
  z-index: 100;
}

.banner .banner-logo {
  width: 50px;
  height: 45px;
  background-image: url('../images/logo-banner-mobile.png');
  background-repeat: no-repeat;
}

.banner .banner-logo--mobile {
  display: inline-block;
  margin: 15px;
}

.banner .banner-logo--desktop {
  display: none;
}

.banner .banner-content {
  display: inline-flex;
  flex-direction: column;
  height: 100%;
  max-width: 884px;
  color: #fff;
  position: absolute;
  width: calc(100% - 55px);
  left: 0;
  padding-left: 80px;
  margin-right: 55px;
}
.banner .banner-content:hover {
  color: #fff;
  text-decoration: none;
}

.banner .banner-content div:first-of-type {
  font-size: 16px;
  margin-top: 19px;
}
.banner .banner-content div:first-of-type p:first-of-type {
  font-weight: 700;
}
.banner .banner-content div:nth-of-type(2)  {
  margin-top: 4px
}
.banner .banner-content div:nth-of-type(2) p:first-of-type {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}
.banner .banner-content div:nth-of-type(2) p:nth-of-type(2) {
  font-weight: 700;
  font-size: 24px;
  font-family: "Neuton";
  display: inline-block;
}

.banner .banner-content div:nth-of-type(3) {
  color: #F9A51A;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  margin-top: 9px;
}

.banner .banner-content div:nth-of-type(3) span {
  margin-right: 8px;
}
.banner .banner-content div:nth-of-type(3) img {
  height: 25px;
}

.banner .banner-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  cursor: pointer;
}

@media (min-width: 680px) {
  .banner {
    height: 160px;
  }

  .banner .banner-logo {
    width: 80px;
    height: 70px;
    background-image: url('../images/logo-banner-desktop.png');
  }

  .banner .banner-logo--desktop{
    display: initial;
  }

  .banner .banner-logo--mobile {
    display: none;
  }

  .banner .banner-content {
    position: initial;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: auto;
    padding: 0;
    margin: 0 auto;
  }
  .banner .banner-content div:first-of-type {
    font-size: 25px;
    margin-top: 0;
  }
  .banner .banner-content div:first-of-type p:first-of-type {
    font-weight: 700;
  }
  .banner .banner-content div:nth-of-type(2) {
    margin-top: 0;
  }
  .banner .banner-content div:nth-of-type(2) p:first-of-type {
    margin-bottom: -10px;
    display: block;
  }
  .banner .banner-content div:nth-of-type(2) p:nth-of-type(2) {
    font-size: 45px;
    display: block;
  }
  .banner .banner-content div:nth-of-type(3) {
    font-size: 25px;
    margin-top: 0;
  }
}
