#pageHeader.page-header {
  width: 100%;

  .container.academie {
    background-color: #3f84c5;
    height: 110px;

    .container {
      position: relative;
      display: flex;
      flex-direction: row;
      justify-content: start;
      align-items: center;
      padding-top: 14px;

      .logo {
        background-image: url("https://commons.digitalebibliothek.gbv.de/prizepapers/images/header/akademie-logo-white.svg");
        width: 80px;
        height: 80px;

        a {
          display: inline-block;
          width: 100%;
          height: 100%;
        }
      }

      .headline {
        a {
          display: block;
          color: white;
          font-family: Roboto;
          font-size: 14px;
          font-weight: 300;
          letter-spacing: 0.48px;
          line-height: 20px;
          padding-left: 14px;
          text-decoration: none;
        }
      }

      .beta {
        width: 310px;
        height: 110px;
        position: absolute;
        right: 0;
        top: 0;
        background-image: url("https://commons.digitalebibliothek.gbv.de/prizepapers/images/header/beta_banner.svg");
        background-size: contain;
        background-position: right top;

        a {
          width: 100%;
          height: 100%;
          display: block;
          position: relative;
          text-decoration: none !important;

          .text {
            color: white;
            font-weight: 300;
            font-size: 12px;
            padding-right: 124px;
            padding-top: 10px;

            b {
              text-decoration: underline;
            }
          }
        }
      }
    }
  }

  .container.prizepapers {
    min-height: 100px;
    position: relative;
    padding: 2px 0;

    .logo {
      background-image: url("https://commons.digitalebibliothek.gbv.de/prizepapers/images/header/logo.svg");
      width: 218px;
      height: 84px;
      margin-top: 35px;
      margin-bottom: 35px;
      margin-left: 15px;

      a {
        display: inline-block;
        width: 100%;
        height: 100%;
        text-decoration: none !important;
      }
    }

    .headline {
      display: inline-block;
      position: absolute;
      top: 48px;
      right: 110px;
      color: #272726;
      font-family: Roboto;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: 0.48px;
      line-height: 31px;
      text-transform: uppercase;
      display: none;
    }

    .back,
    .backToLastSearch {
      display: inline-block;
      position: absolute;
      top: 34px;
      right: 242px;
      padding: 9px 30px;
      background-color: #3f84c5;
      color: white;
      font-family: Roboto;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 2px;
      line-height: 40px;
      text-transform: uppercase;
      cursor: pointer;
    }

    .backToLastSearch {
      right: 364px;
      background-color: rgba(63, 132, 197, 0.5);

      a {
        color: white;
      }
    }

    .controls {
      position: absolute;
      right: 0;
      top: 50px;
      width: 84px;
      display: flex;
      justify-content: space-between;
      align-content: center;

      .search {
        background-image: url("https://commons.digitalebibliothek.gbv.de/prizepapers/images/header/searchIcon.svg");
        background-size: contain;
        width: 24px;
        height: 25px;

        a {
          display: block;
          width: 100%;
          height: 100%;
        }
      }

      .page-header__mobile-burger-menu-alternative {
        background-image: url("https://commons.digitalebibliothek.gbv.de/prizepapers/images/header/menuIcon.svg");
        background-size: contain;
        height: 25px;
        width: 19px;
      }
    }
  }
}
@media all and (max-width:1024px) {
  #pageHeader.page-header {
    .container.academie {
      .container {
        .logo {
          a {}
        }

        .headline {
          display: none;

          a {}
        }

        .beta {
          display: none;

          a {
            .text {
              b {}
            }
          }
        }
      }
    }

    .container.prizepapers {
      .logo {
        a {}
      }

      .headline {}

      .back,
      .backToLastSearch {
        top: -80px;
        right: 0;
        padding: 0 15px;
        background-color: white;
        color: #3f84c5;
      }

      .backToLastSearch {
        display: none;

        a {
          color: #3f84c5;
        }
      }

      .controls {
        .search {
          a {}
        }

        .menu {}
      }
    }
  }
}