@charset "UTF-8";
/**

// schema 1: Aktive Schule BC: Fort & Weiterbildung

gradient-1 bleibt
gradient-2 bleibt
gradient-3 bleibt
gradient-4 bleibt

badge schwarzer hintergrund, weißer text
icons invertieren
?-Button invertieren
// schema 0: Aktive Schule == Stammschule

badge schwarzer hintergrund, weißer text
icons invertieren
?-Button invertieren

// schema 3: Aktive Schule != Stammschule && != BC: Fort & Weiterbildung

farbzulieferung erfolgt noch

gradient-1
gradient-2
gradient-3
gradient-4

badge-gradient-1
badge-gradient-2
*/
html,
body {
  margin: 0;
  padding: 0;
}
html.alt-scheme-1,
body.alt-scheme-1 {
  --gradient-color-1: rgba(0,194,152,1);
  --gradient-color-2: rgba(105,155,194,1);
  --gradient-color-3: rgba(0,167,189,1);
  --gradient-color-4: rgba(27,80,87,1);
}
html.alt-scheme-1 #background,
body.alt-scheme-1 #background {
  background: rgb(149, 154, 101);
  background: linear-gradient(104deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 29%, var(--gradient-color-3) 71%, var(--gradient-color-4) 100%);
}
html.alt-scheme-2,
body.alt-scheme-2 {
  --gradient-color-1: rgba(154,124,101,1);
  --gradient-color-2: rgba(54,13,12,1);
  --gradient-color-3: rgba(230,155,0,1);
  --gradient-color-4: rgba(124,16,16,1);
}
html.alt-scheme-2 #background,
body.alt-scheme-2 #background {
  background: rgb(154, 124, 101);
  background: linear-gradient(104deg, rgb(154, 124, 101) 0%, rgb(54, 13, 12) 29%, rgb(230, 155, 0) 71%, rgb(124, 16, 16) 100%);
}
html.alt-scheme-3,
body.alt-scheme-3 {
  --gradient-color-1: rgb(115, 61, 111);
  --gradient-color-2: rgb(242, 153, 75);
  --gradient-color-3: rgb(217, 120, 85);
  --gradient-color-4: rgb(140, 32, 32);
}
html.alt-scheme-3 #background,
body.alt-scheme-3 #background {
  background: rgb(149, 154, 101);
  background: linear-gradient(104deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 29%, var(--gradient-color-3) 71%, var(--gradient-color-4) 100%);
}

main {
  height: 100vh;
  width: 100vw;
  overflow-x: auto;
}

#background {
  width: 100%;
  position: sticky;
  top: 0;
  /*background-image: url(../img/bg/07.jpg);
  background-repeat: no-repeat;
  background-size: cover;*/
  background: rgb(101, 115, 154);
  background: linear-gradient(104deg, rgb(101, 115, 154) 0%, rgb(12, 16, 54) 29%, var(--oss-green) 71%, rgb(16, 49, 124) 100%);
  min-height: 100vh;
  height: auto;
}

.pageContent {
  padding: 5% !important;
  margin-left: clamp(77px, 5%, 90px);
}

.pageContent.oss-sidebar-is-mobile {
  margin-top: 50px;
}

.topRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: space-between;
}

/* BADGES */
.badges {
  display: flex;
  flex-direction: row;
  gap: 5px;
  padding-bottom: 10px;
}

.badges .badge {
  color: #ffffff;
  background: #000000;
  padding: 7px;
  align-content: center;
  font-family: "Roboto-OSS";
  border-radius: 32px;
  font-size: small;
}

.badge.black {
  background-color: var(--oss-greyblack);
}

.badge.green {
  background-color: var(--oss-darkgreen);
}

.badge.red {
  background-color: red;
}

.badge.yellow {
  background-color: yellow;
}

.badge.blue {
  background-color: var(--oss-blue);
}

/* END BADGES */
/** BEGIN HELP BUTTON **/
.helpButton {
  position: fixed;
  right: 25px;
  width: 50px;
  height: 50px;
  bottom: 25px;
  border-radius: 35px;
  background: var(--oss-greyblack);
  transition: background 0.5s;
  cursor: pointer;
  box-shadow: 0px 17px 10px -10px rgba(0, 0, 0, 0.4);
}
.helpButton svg {
  fill: var(--oss-white);
  transition: fill 0.5s;
}
.helpButton:hover {
  background: var(--oss-white);
}
.helpButton:hover svg {
  fill: var(--oss-greyblack);
}

/** END HELP BUTTON **/
/* EDIT SEARCHBAR */
#searchBar input {
  width: 100%;
  border-radius: 10px;
  max-height: 40px;
  height: 40px;
  padding-left: 30px;
  color: var(--oss-white);
  margin-bottom: 5px;
  margin-top: 5px;
  background-color: rgba(5, 35, 35, 0.1568627451);
  border: none;
}

/* END EDIT SEARCHBAR */
.topRow {
  margin-bottom: 1.5rem;
}

.topRow .welcomeText {
  font-family: "Roboto-OSS";
  color: var(--oss-white);
  font-size: 60px;
  user-select: none;
  margin-block-start: 0;
  margin-bottom: 0;
}

.topRow .messageBox {
  background-color: var(--oss-white);
  border-radius: 10px;
  /* EDIT SEARCHBAR
  min-width: 20%;
  max-width: 30%;
  max-height: 10%;
  height: 10%;
  */
  border: 1px solid var(--oss-middlegrey);
  padding: 5px;
}

.topRow .messageBox .closeBtn {
  position: relative;
  left: calc(100% - 25px);
  top: 6px;
  width: 20px;
  height: 20px;
  background-image: url("../sidebar/img/icons/close.svg");
}

.topRow .messageBox h1 {
  font-family: "Roboto-OSS";
  font-size: larger;
  color: var(--oss-middlegrey);
  padding-left: 2%;
}

.topRow .messageBox * {
  user-select: none;
}

.topRow .messageBox p {
  font-family: "Roboto-OSS";
  font-size: medium;
  color: var(--oss-middlegrey);
  padding-left: 2%;
  padding-right: 2%;
}

.topRow .messageBox a {
  text-decoration: none;
  color: var(--oss-darkblue);
}

.topRow .messageBox a::after {
  display: inline-block;
  content: " ";
  background-image: url("../sidebar/img/icons/ext-link.svg");
  background-size: 15px 15px;
  height: 15px;
  width: 15px;
  margin-left: 3px;
}

.bottomGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(130px, 20%), 1fr));
  grid-gap: 10px;
  row-gap: 100px;
  grid-auto-rows: minmax(100px, auto);
}

.bottomGrid div {
  justify-self: center;
  cursor: pointer;
  min-width: -moz-available;
}

.bottomGrid div.has-warning {
  position: relative;
}

.bottomGrid .appIcon {
  background-color: var(--oss-greyblack);
  transition: background 0.5s;
  border-radius: 35px;
  justify-self: center;
  width: 50%;
  margin-left: 25%;
  margin-right: 25%;
}

@media screen and (max-width: 815px) {
  .bottomGrid .appIcon {
    border-radius: 25px;
  }
}
.bottomGrid .appIcon.clicked {
  display: none;
}

.bottomGrid .appIcon.preRedirect {
  display: none;
}

.bottomGrid .appIcon.preRedirect.clicked {
  display: block;
}

.bottomGrid .appIcon.preRedirect .serviceInfoText {
  font-size: smaller;
  padding: 20px;
}

.bottomGrid div:hover .appIcon {
  background: #ffffff;
}

.bottomGrid div:hover .appIcon svg {
  fill: #000000;
}

.bottomGrid div p {
  font-family: "Roboto-OSS";
  font-size: 25px;
  text-align: center;
  color: var(--oss-white);
  user-select: none;
  text-decoration: none;
}

.bottomGrid a {
  text-decoration: none;
  position: relative;
}

.bottomGrid .appIcon.ossGradient {
  background-image: linear-gradient(45deg, var(--oss-gradient-start) 10%, var(--oss-gradient-end) 50%);
}

.bottomGrid .appIcon.ossGradient svg {
  fill: var(--oss-white);
}

.bottomGrid .appIcon svg {
  fill: var(--oss-white);
  width: 70%;
  transition: fill 0.75s;
  padding-left: 15%;
  padding-top: 15%;
  padding-bottom: 15%;
}

.preRedirectModal .redirectInfo {
  color: var(--oss-white);
  font-family: "Roboto-OSS";
  font-size: 18px;
}

.preRedirectModal .buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.preRedirectModal .redirectInfoButton {
  background: var(--oss-greywhite);
  font-family: "Roboto-OSS";
  color: var(--oss-black);
  border-radius: 32px;
  padding: 6px;
  text-decoration: none;
}

.preRedirectModal.disabled {
  display: none;
}

.preRedirectModal .closeModalBtn {
  position: relative;
  left: calc(100% - 25px);
  top: 6px;
  width: 20px;
  height: 20px;
  fill: var(--oss-white);
}

.preRedirectModal {
  display: block;
  position: absolute;
  z-index: 10001;
  width: 60vw;
  height: 80vh;
  top: 10vh;
  left: 20vw;
  background-color: var(--oss-greyblack);
  border-radius: 35px;
  padding: 20px;
}

.eventsContainer.deactivated {
  display: none;
}

.eventsContainer {
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  color: var(--oss-white);
}

.eventsTitle {
  font-family: "Roboto-OSS";
  margin: 0;
  margin-left: 25px;
  padding-top: 10px;
  font-size: 30px;
}

.events {
  margin-left: 25px;
  margin-right: 25px;
  padding-bottom: 10px;
  width: calc(100% - 50px);
}

.event {
  font-family: "Roboto-OSS";
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.event .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event .right .button {
  background: var(--oss-greywhite);
  font-family: "Roboto-OSS";
  color: black;
  border-radius: 32px;
  padding: 6px;
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  .topRow .welcomeText {
    font-size: 60px;
  }
}
@media screen and (max-width: 1500px) {
  .preRedirectModal {
    width: 60vw;
    height: 80vh;
    top: 10vh;
    left: 20vw;
  }
}
@media screen and (max-width: 815px) {
  /* BADGES */
  .badges {
    flex-wrap: wrap;
    justify-content: start;
  }
  .badges .badge {
    max-height: 40px;
  }
  /* END BADGES */
}
@media screen and (max-width: 550px) {
  /* BADGES */
  .badges {
    flex-wrap: wrap;
    justify-content: start;
  }
  .badges .badge {
    max-height: 40px;
  }
  /* END BADGES */
  .preRedirectModal {
    width: 90vw;
    height: 125vh;
    top: 6vh;
    left: 1vw;
  }
  .topRow .messageBox {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-width: calc(100% - 40px);
    height: fit-content;
    max-height: fit-content;
    height: -moz-fit-content;
    max-height: -moz-fit-content;
    border-radius: 30px;
    padding: 10px;
  }
  main {
    height: 100%;
    width: 100%;
  }
  .pageContent {
    margin-left: 0 !important;
  }
  .topRow .welcomeText {
    font-size: 40px;
  }
  .bottomGrid .appIcon {
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
  }
  .bottomGrid {
    row-gap: 10px;
  }
}
@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
  .topRow .welcomeText {
    font-size: 40px;
  }
  .topRow .messageBox {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    min-width: calc(100% - 20px);
    height: fit-content;
    max-height: fit-content;
    height: -moz-fit-content;
    max-height: -moz-fit-content;
    border-radius: 30px;
  }
  .pageContent {
    margin-left: 0 !important;
  }
}
@font-face {
  font-family: "Roboto-OSS";
  src: url(../../assets/sidebar/css/fonts/Roboto-Regular.ttf);
}
.introjs-hint-dot {
  /*
  height: 40px;
  width: 40px;
  */
}

.introjs-hint-pulse {
  background-color: var(--oss-gradient-start);
  /*
  height: 40px;
  width: 40px;
  */
  animation: introjspulse-oss 2s infinite;
}

.introjs-hint {
  /*
  height: 40px;
  width: 40px;
  */
  z-index: 1000000;
}

@keyframes introjspulse-oss {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 190, 230, 0.6980392157);
  }
  70% {
    transform: scale(2.5);
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 transparent;
  }
}
.introjs-tooltipReferenceLayer {
  font-family: "Roboto-OSS";
}

.introjs-tooltipReferenceLayer * {
  font-family: "Roboto-OSS";
}

.introjs-helperNumberLayer {
  font-family: "Roboto-OSS";
}

.introjs-tooltip {
  background-color: var(--oss-greyblack);
}

.introjs-tooltip-header {
  color: var(--oss-white);
}

.introjs-skipbutton {
  color: var(--oss-white);
}

.introjs-skipbutton:hover {
  color: var(--oss-gradient-start);
}

.introjs-tooltiptext {
  color: var(--oss-white);
}

.introjs-progressbar {
  background: linear-gradient(to right, var(--oss-gradient-start), var(--oss-gradient-end));
}

.introjs-bullets ul li a {
  background-color: var(--oss-lightgrey);
}

.introjs-bullets ul li a:hover {
  background-color: var(--oss-gradient-start);
}

.introjs-bullets ul li a.active {
  background-color: var(--oss-gradient-end);
}

.introjs-button {
  background-color: var(--oss-middlegrey);
  text-shadow: none;
  color: var(--oss-superblack);
}

.introjs-button:hover {
  background-color: var(--oss-blue);
  color: var(--oss-white);
}

.introjs-button:focus {
  background-color: var(--oss-blue);
  color: var(--oss-white);
}

/*# sourceMappingURL=dashboard-full.css.map */
