/* FONTS */
body,
html {
  font-size: 16px;
  font-family: "Roboto";
  color: #010b19;
}

h2 {
  font-size: 2.25rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.5rem;
}
.secInd {
  font-weight: 700;
  margin-bottom: 1rem;
}
.mSec {
  font-size: 0.75rem;
}
.subHead {
  font-size: 1.4rem;
  font-weight: 700;
}

a,
a:hover {
  color: #010b19;
  text-decoration: none;
}

/* Colors */
.cBlack {
  color: #010b19;
}
.c-green,
.cGreen {
  color: #1dcc86;
}
.bGreen {
  border-color: #1dcc86;
}
.aGreen {
  color: #1dcc86;
  text-decoration: underline;
}
.aGreen:hover {
  color: #49d095;
}
.cRed {
  color: #ff073a;
}
.cOrange {
  color: #d19249;
}
.c-lightgreen,
.cGreenLight {
  color: #49d095;
}
.cGrey {
  color: #f4f4f4;
}

.c-white,
.cWhite {
  color: #fff;
}

/* Background */
.bg-primary,
.bgGreen {
  background-color: #1dcc86 !important;
}
.bgGrey {
  background-color: #f4f4f4;
}

/* Buttons */
.btnProtabo,
.practicalGoNext {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  cursor: pointer;
}

.btnSmaller {
  font-size: 1rem;
  padding: 0.25rem 0.75rem;
}

.btnWhite,
.btnRestS {
  border: 2px solid #fff;
  background: #fff;
  color: #1dcc86;
  transition: all ease-in 0.2s;
}
.btnRestF {
  border: 2px solid #fff;
  background: #fff;
  color: #ff073a;
  transition: all ease-in 0.2s;
}
.btnRestF:hover {
  border: 2px solid #fff;
  background: #ff073a;
  color: #fff;
}
.btnRestS:hover {
  border: 2px solid #fff;
  background: #1dcc86;
  color: #fff;
}
.btnWhite i {
  color: #1dcc86;
}

.btnWhite:hover {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  transition: all ease-in 0.2s;
}
.btnWhite:hover i {
  color: #fff;
}

.btnGreen {
  border: 2px solid #1dcc86;
  background: #49d095;
  color: #fff;
  transition: all ease-in 0.2s;
}
.btnGreen i {
  color: #fff;
}

.eBtn {
  background: #fff;
  border: 1px solid #1dcc86;
  color: #1dcc86;
  padding: 0.15rem 0.6rem;
  transition: all ease-out 0.3s;
  cursor: pointer;
}
.eBtn:hover {
  background: #1dcc86;
  color: #fff;
  transition: all ease-out 0.3s;
}

.btnGreen:hover {
  background: #fff;
  border: 2px solid #1dcc86;
  color: #49d095;
  transition: all ease-in 0.2s;
}
.btnGreen:hover i {
  color: #49d095;
}
.fillBlankBtn,
.selectRightBtn {
  background: #f4f4f4;
  border: 2px solid #f4f4f4;
  color: #010b19;
}
.quizSelectBtn {
  border: 2px solid #1dcc86;
  background: #fff;
  color: #49d095;
  transition: all ease-in 0.2s;
}
.selectRightBtn.selected,
.selectRightBtn.selectAnsRight,
.quizSelectBtn:hover,
.fillBlankBtn:hover,
.fillBlankBtn.active,
.selectRightBtn:hover,
.selectRightBtn.active {
  border: 2px solid #1dcc86;
  background: #49d095;
  color: #fff;
  transition: all ease-in 0.2s;
}
.selectRightBtn.selectAnsWrong {
  border: 2px solid red;
  background: red;
  color: #fff;
}

/* HEADER */
.logoCont {
  background: url("assets/logo_lernplattform.svg");
  height: 50px;
  width: 100%;
  max-width: 120px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  transition: all ease-in 0.5s 0.2s;
  position: relative;
}
.logoCont a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.navOpen .logoCont {
  background: url("assets/logo_lernplattform_inverted.svg");
  height: 50px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  transition: all ease-in 0.2s;
}

.courseHeader {
  font-size: 0.9rem;
  transition: all ease-in 0.2s;
  display: none;
}

.navOpen .courseHeader {
  color: #fff;
  transition: all ease-in 0.2s;
}
/* NAVIGATION */
.mainNavWrapper {
  z-index: 99;
  position: relative;
}
#navBurger {
  position: relative;
  height: 1.2rem;
  width: 1.8rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
#navBurger span {
  display: block;
  width: 100%;
  height: 0.2rem;
  border-radius: 1px;
  background: #1dcc86;
}

.navBurgerContainer:hover #navBurger:not(.active) span:first-child {
  animation: menuToggle 0.4s 0.1s ease-in;
}

.navBurgerContainer:hover #navBurger:not(.active) span:nth-child(2) {
  animation: menuToggle 0.4s 0.3s ease-in;
}

.navBurgerContainer:hover #navBurger:not(.active) span:nth-child(3) {
  animation: menuToggleLast 0.4s 0.1s ease-in;
}

#navBurger.active span:nth-child(3) {
  opacity: 0;
}

#navBurger.active span:nth-child(1) {
  position: absolute;
  top: 5px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
  /*for IE*/
}

#navBurger.active span:nth-child(2) {
  position: absolute;
  top: 5px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
  /*for IE*/
}

@keyframes menuToggle {
  0% {
    width: inherit;
  }

  50% {
    width: 20%;
  }

  100% {
    width: inherit;
  }
}

@keyframes menuToggleLast {
  0% {
    width: 70%;
  }

  33% {
    width: 100%;
  }

  66% {
    width: 20%;
  }

  100% {
    width: 70%;
  }
}

/* NAV OVERLAY */
#navOverlayContainer {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 98;
  height: 0;
  overflow: hidden;
}
.navItem {
  margin-bottom: 1rem;
}

.navItem * {
  cursor: pointer;
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
  transition: all 0.3s ease-in;
}

/* LISTS */
.capContUl {
  list-style: none;
  padding-left: 0;
}
.capContUl li {
  margin-top: 0.5rem;
}

.capContUl li i {
  width: 2rem;
  padding-top: 0.2rem;
}
/* GRID CUSTOMS */
.container {
  max-width: 960px !important;
  margin-left: auto;
  margin-right: auto;
}

/* flexCenterClasses */
.fCenter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fCenterX {
  display: flex;
  justify-content: center;
}
.fCenterY {
  display: flex;
  align-items: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 0;
  font-weight: 700;
  font-size: 0.8rem;
}
.moduleCont {
  position: relative;
  z-index: 3;
}
.moduleCont.success {
  background-color: #1dcc86;
  color: #fff;
}
.moduleCont.failed {
  background-color: #ff073a;
  color: #fff;
}
.moduleCont.success *:not(.btnRestS, .btnRestS i) {
  color: #fff;
}
.moduleCont.failed *:not(.btnRestF, .btnRestF i) {
  color: #fff;
}
/* FINISH MODULE */
.fmHeadline {
  font-size: 2rem;
}

/* SECTION */
.subChapterCont,
.slideContentRow {
  display: none;
}
.boxed.ftype {
  -webkit-box-shadow: 0 0.1rem 0.5rem rgba(103, 110, 144, 0.3), 0 0 0 0.1rem rgba(103, 110, 144, 0.05);
  box-shadow: 0 0.1rem 0.5rem rgba(103, 110, 144, 0.3), 0 0 0 0.1rem rgba(103, 110, 144, 0.05);

  border-radius: 3px;
}

/* COURSE MODULES */

/* OVERVIEW SECTION */
.chapter:first-child {
  margin-top: 1rem;
}
.chapter {
  margin-top: 3rem;
  position: relative;
  opacity: 0.6;
}

.chapter:not(:last-child):after {
  content: "";
  height: 3rem;
  width: 3px;
  border-left: 0.5rem #888 dotted;
  position: absolute;
  left: 50%;
  bottom: -3rem;
  z-index: -1;
}
.chapter.currentChapter {
  opacity: 1;
}

.chapterPrevImg,
.slideContentRow img {
  height: 35vh;
  max-height: 350px;
  margin-top: 1rem;
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.imgLeftTextRight img {
  border: 3px solid #1dcc86;
}
.theProgressIcon {
  height: 1rem;
}

/* Slides */
.subChapterCont {
  margin-bottom: 3rem;
}
.activeSlide {
  display: -ms-flexbox;
  display: flex;
}
.slideProgress {
  color: #1dcc86;
}
.breadCrumbRow svg {
  height: 1rem;
  max-height: 1rem;
}
.cStrong {
  font-weight: 700;
  color: #1dcc86;
}
.textHighlighted .hiText {
  font-weight: 700;
  color: red;
  transition: all ease-in 0.2s;
}

/* Pracitcal Examples with UL */
.merkContent,
.practicalExample .narrativStep,
.practicalExample .nextSlide {
  display: none;
}

/* QUIZ MODULES */
.wrightWrongQuestionContainer {
  flex-wrap: wrap;
  border-radius: 3px;
  display: none;
}
.wrightWrongQuestionContainer.seen {
  display: -ms-flexbox;
  display: flex;
}
.wrightWrongQuestion {
  font-weight: 700;
}
.answerBtn {
  padding: 0.2rem 1rem;
  cursor: pointer;
  color: #fff;
  margin: 0.5rem 0.5rem 0.5rem 0;
  border-radius: 3px;
  display: inline-block;
}
.answerRight {
  background: #49d095;
}
.answerWrong {
  background: #e900aa;
}
.evalRight,
.evalRight * {
  background: #49d095;
  color: #fff;
}
.evalWrong,
.evalWrong * {
  background: red;
  color: #fff;
}
.quizGo {
  opacity: 0;
}

@media (max-width: 520px) {
  .chapterPrevImg,
  .textLeftIconRight img {
    max-height: 22vh;
  }

  h2 {
    font-size: 1.625rem;
  }
  .secInd {
    font-size: 0.825rem;
  }
  .getTrain {
    font-size: 0.825rem;
  }
}

/* NEW SIMPLE CHAPTER */
.slideContentCont,
.finishRow,
.prevSlide,
.practicalExample .conclusion {
  display: none;
}
.slideContentCont.active {
  display: block;
}
.slideContentCont.isPrev {
  display: block;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.prevSlide.active {
  display: inline-block;
  cursor: pointer;
}
.slideImg {
  max-height: 100%;
  max-width: 100%;
}
.hiText.highlighted {
  font-weight: 700;
  color: red;
  transition: all ease-in 0.2s;
}

/* practical Example */
.aMsgWrapper {
  display: none;
}
.aMsgWrapper.isPrev {
  display: block;
}
.aMsgWrap i {
  font-size: 4rem;
}

/* Slider Nav */
.prevSlide {
  opacity: 1;
  pointer-events: all;
}
.prevSlide.hidden {
  opacity: 0;
  pointer-events: none;
}
.nextChapter,
.nextSlide.inactive {
  display: none;
}
.nextChapter.active {
  display: inline-block;
}

/* Quiz Styling */

/* GENERAL */
.questionWrapper,
.quizNav > div,
.resWrapper,
.finishChapterQuiz,
.startQuiz {
  display: none;
}
.questionWrapper.active {
  display: block;
}

.qMainHead,
.resHead {
  font-weight: 600;
}
.qMainExp {
  font-weight: 400;
  font-size: 0.85rem;
}
.qMainHead {
  margin-bottom: 1.5rem;
}
.questionHead {
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 3rem;
  max-width: 720px;
  margin: 0 auto;
}

/* Wrong or Right */
.wrChoiceWrapper,
.resWrapper {
  max-width: 620px;
  margin: 0 auto;
}

.wrChoiceWrapper {
  display: flex;
}
.wrBtn {
  cursor: pointer;
  transition: all ease-out 0.3s;
}
.wrBtn:hover {
  transform: translateY(-1rem);
  transition: all ease-out 0.3s;
}
.wrBtn i {
  font-size: 4rem;
  margin-bottom: 2rem;
}
.wrTrue {
  color: #1dcc86;
}
.wrFalse {
  color: #ff073a;
}
.wrChoiceTitle {
  font-size: 2rem;
  font-weight: 800;
}

.resWrapper.correct {
  background-color: #1dcc86;
  color: #fff;
}
.resWrapper.incorrect {
  background-color: #ff073a;
  color: #fff;
}
/* One Million Dollar */
.omAnswersCont {
  display: flex;
}
.omQBtn {
  background: #f4f4f4;
  padding: 1rem 10px;
  height: 100%;
  width: calc(100% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1rem;
  min-height: 4rem;
  margin: 0 auto;
}
.omQBtn.logged {
  pointer-events: none;
  cursor: default;
}
.omQBtn.loggedA {
  background: #d19249;
  color: #fff;
}
.omQBtn.correct {
  background: #1dcc86;
  color: #fff;
}
.omQBtn.incorrect {
  background: #ff073a;
  color: #fff;
}
.omCountdown {
  display: none;
}

/* Fill Blanks */
.fbAnswersCont,
.srAnswersCont {
  display: flex;
}
.theFillText.inserted {
  color: #d19249;
  text-decoration: underline;
}
.theFillText.correct {
  color: #1dcc86;
  text-decoration: underline;
}
.theFillText.incorrect {
  color: #ff073a;
  text-decoration: underline;
}
.resWrapper .fbIcon {
  font-size: 3rem;
}

@media (max-width: 768px) {
  .chapterRow .slideImg {
    max-height: 7rem;
  }
}

.showMRes {
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.8rem;
}

.topMNavHead {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: none;
}
.getMagicCont img {
  max-width: 180px;
}
.helpImg {
  max-width: 160px;
}
#mailMagicLinkWrapper {
  height: 3rem;

  border-radius: 3px;
  padding-left: 0.5rem;
  padding-right: 0.25rem;
  /* border: 2px solid #010B19; */
  background-color: #f2f2f2;
  display: inline-flex;
  align-items: center;
  transition: 0.2s all ease-in;
}
#mailMagicLinkWrapper.focus {
  background-color: #fff;
  -webkit-box-shadow: 0 0.1rem 0.5rem rgba(103, 110, 144, 0.3), 0 0 0 0.1rem rgba(103, 110, 144, 0.05);
  box-shadow: 0 0.1rem 0.5rem rgba(103, 110, 144, 0.3), 0 0 0 0.1rem rgba(103, 110, 144, 0.05);
}

#mailMagicLink {
  border: none;
  height: 2.4rem;
  width: 300px;
  background-color: transparent;
}

#mailMagicLink:focus {
  outline: none;
}

#mailMagicSubmit {
  max-height: 90%;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.agbdata {
  margin-top: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.agbdata a {
  text-decoration: underline;
  color: #1dcc86;
}

.modDelimiter {
  height: 3rem;
  width: 1px;
  border-left: 8px dotted #f4f4f4;
  margin: -1rem auto 0;
  position: relative;
  z-index: -1;
}

.modDelimiter:last-child {
  opacity: 0;
}

/** Input Fields */

/** New Inputs */
.inputInLabel {
  border: 2px solid #808285;
  border-radius: 5px;
  padding: 0 1rem 0.1rem;
  width: 100%;
  transition: 0.2s all ease-out;
  margin-bottom: 1rem;
}

.inputInLabel input::placeholder {
  color: #ff073a;
}

.inputInLabel:hover {
  border-color: #010b19;
}

.inputLabel {
  font-weight: 700;
  font-size: 0.75rem;
}

/* .ilInput {
	margin-top: .3rem;
} */

.ilInput select,
.ilInput input {
  border: none;
  width: 100%;
  font-size: 1rem;
  padding: 0;
  height: 1.25rem;
}

.ilInput select {
  height: 1.5rem;
}
.ilInput textarea {
  border: none;
  font-size: 1rem;
  width: 100%;
}

.ilInput select:focus,
.ilInput input:focus,
.ilInput select:focus-visible,
.ilInput input:focus-visible,
.ilInput textarea:focus,
.ilInput textarea:focus-visible {
  border: none;
  outline: none;
}

/* CHECKBOX CUSTOM */
.cCheckbox {
  display: block;
  position: relative;
  padding-left: 3rem;
  padding-top: 0px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-height: 2rem;
}

/* Hide the browser's default checkbox */
.cCheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 5px;
  border: 2px solid #1dcc86;
}

/* On mouse-over, add a grey background color */
.cCheckbox:hover input ~ .checkmark {
  background-color: #1dcc86;
}

/* When the checkbox is checked, add a blue background */
.cCheckbox input:checked ~ .checkmark {
  background-color: #1dcc86;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cCheckbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cCheckbox .checkmark:after {
  left: 8px;
  top: 3px;
  width: 7px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/**
*   Help
*/
#successMsg {
  display: none;
}
.tyImg svg {
  max-height: 120px;
  margin: 0 auto;
}

/**
* Course Done */
.courseDownImg {
  max-height: 300px;
}

@media (max-width: 576px) {
  .navItem {
    font-size: 1.5rem;
  }
}

.jsonCont {
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-weight: 400;
}
.jsonConts {
  font-weight: 400;
}
.jsonModuleCont {
  margin-bottom: 3rem;
}

.progCont {
  height: 10px;
  background-color: #f4f4f4;
  border-radius: 3px;
  display: flex;
}
.breakLink {
  word-break: break-all;
}
