/**
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2023 infomax websolutions GmbH
 * @link       https://www.infomax-online.de
 * @author     Benjamin Hofmann <hofmann@infomax-it.de>
 * @since      2023-09-28
 */

/*  =========================================================
basic config
button
pageHeader - general structure setup
pageHeader - text
pageHeader - icon
pageHeader - triangle
pageHeader - logo
abstract selector - background
========================================================== */

/*  =========================================================
basic config
========================================================= */
@import url("./fonts/GTWalsheim/fonts.css");
@import url("./fonts/NoeDisplay/fonts.css");
@import url("./fonts/Icomoon/style.css");

/*  =========================================================
button
========================================================= */
@media (min-width: 700.1px) {
  .button.button-cta {
    padding: 16px 25px;
  }

  .button.button-default {
    padding: 10px 15px;
  }
}

@media (max-width: 700px) {
  .button.button-cta {
    padding: 15px 20px;
  }

  .button.button-default {
    padding: 10px;
  }
}

/*  =========================================================
pageHeader - general structure setup
========================================================= */
.pageHeader {
  .pageHeader__icon {
    visibility: hidden;
  }
}

@media (min-width: 700.1px) {
  .pageHeader__icon {
    font: 400 normal 30px/30px "icomoon";
    flex: 80px 0 0;
  }
}

@media (max-width: 700px) {
  .pageHeader__icon {
    font: 400 normal 24px/24px "icomoon";
    flex: 69px 0 0;
  }
}

/*  =========================================================
pageHeader - text
========================================================= */
.pageHeader {
  .pageHeader__text {
    flex: 100% 0 1;
  }
}

@media (min-width: 700.1px) {
  .pageHeader__text {
    padding-left: 14px;
  }
}

@media (max-width: 700px) {
  .pageHeader__text {
    padding-left: 38px;
  }
}

/*  =========================================================
pageHeader - icon
========================================================= */
.pageHeader {
  .pageHeader__icon::before {
    position: absolute;
    top: 30px;
  }
}

@media (min-width: 700.1px) {
  .pageHeader__icon::before {
    left: 23px;
  }
}

@media (max-width: 700px) {
  .pageHeader__icon::before {
    left: 22px;
  }
}

/*  =========================================================
pageHeader - triangle
========================================================= */
.pageHeader {
  .pageHeader__icon::after {
    border-style: solid;
    border-color: rgb(var(--color_sidebar_burger_background)) transparent transparent transparent;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
  }
}

@media (min-width: 700.1px) {
  .pageHeader__icon::after {
    border-width: 183px 94px 0 0;
  }
}

@media (max-width: 700px) {
  .pageHeader__icon::after {
    border-width: 144px 107px 0 0;
  }
}

/*  =========================================================
pageHeader - brand logo
========================================================= */
.pageHeader {
  .pageHeader__addl__image {
    display: block;

    @media (max-width: 700px) {
      flex: 200px 0 0;
      padding-left: 10px;
    }
  }
}

/*  =========================================================
pageHeader - logo
========================================================= */
.pageHeader {
  .pageHeader__logo__image {
    background-image: url("/assets/default/logo/logo.imxplatform.black.svg");
  }
}

/*  =========================================================
abstract selector - background
========================================================= */
.app--image {
  @media (min-width: 700.1px) {
    background-image: url("/assets/default/images/background.svg");
    background-position: top right;
    background-size: max(1500px, 100vw);
  }
}

.app--color {
  @media (min-width: 700.1px) {
    background-color: rgba(var(--color_cd_light_blue_30));
  }
}

.app--super {
  background-image: url("/assets/default/images/background.super.svg");
  background-position: left 0;
  background-repeat: no-repeat;

  @media (max-width: 700.1px) {
    background-size: 120vw;
  }

  @media (min-width: 700.1px) {
    background-size: 100vw;
  }
}
