:root {
  /* colors */
  --body-bg: #fafafa;
  --page-bg: #ffffff;
  --dark-text: #2c4152;
  /* this is what defines the global scale */
  --baseline: 1vw;
  --geniussize: calc(0.5vw + var(--vh));
  --fullvh: calc(100*var(--vh));
  /* fonts */
  --book-title: "IsidoraSans", sans-serif;
  --sub-title: "Seaside", serif;
  --body: "Baskerville", serif;

}
* {
  box-sizing: border-box;
}


/* ----------------------------------- */

body {
  background-color: var(--body-bg);
  height: var(--fullvh);
  display: flex;
  flex-direction: column;
   align-items: center;     /* eigentlich überflüssig */
   justify-content: center;
  margin: 0;
  overflow: hidden;
}
.cover {
  width: 100vw;
  height: var(--fullvh);
  -width: calc(var(--baseline) * 80);
  -height: calc(var(--baseline) * 45);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.3);
}
.book {
  width: 100%;
  height: 100%;
  display: flex;
  -perspective: 50000px;
}
.book_page {
  top:0;
  position: relative;
  width: 50%;
  height: var(--fullvh);
  display: initial;
  transform: rotateY(0deg);
  transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 0.95);
  -transition: transform 9s;
  transform-origin: 0% 0%;
  background-color: var(--page-bg) !important;
  /* -background-image: linear-gradient(
    90deg,
    rgba(227, 227, 227, 1) 0%,
    rgba(247, 247, 247, 0) 18%
  ); */

  
}


/* .book_page:not(.now){
  border-left: 3px solid black;
} */

.book_page:nth-of-type(1) {
  background-image: linear-gradient(
    -90deg,
    rgba(227, 227, 227, 1) 0%,
    rgba(247, 247, 247, 0) 18%
  );
}
.book_page-last{
  background-image: linear-gradient(
    90deg,
    rgba(227, 227, 227, 1) 0%,
    rgba(247, 247, 247, 0) 18%
  );
}
.book_page-first {
  overflow: hidden;
  align-content: center;
}

.book_page-first img {
  width: 102%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* übeeflüssog */
}
.turnable {
  position: absolute;
  right: 0;
  transform-style: preserve-3d;
}

.book_page-front {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotateY(0deg) translateZ(1px);
  
  background-color: var(--page-bg);

  background-image: linear-gradient(
    90deg,
    rgba(227, 227, 227, 1) 0%,
    rgba(247, 247, 247, 0) 18%
  );
  -webkit-font-smoothing: subpixel-antialiased;
}
.book_page-back {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg) translateZ(1px);
  -webkit-font-smoothing: subpixel-antialiased;


  background-color: var(--page-bg);
  background-image: linear-gradient(
    -90deg,
    rgba(227, 227, 227, 1) 0%,
    rgba(247, 247, 247, 0) 18%
  );
  
}

.book_page-front .page_content, .book_page-last .page_content{
    /* center line */
  -box-shadow: -0.5px 0 0 var(--dark-text); 
  o-webkit-box-shadow: -0.5px 0 0 var(--dark-text); 
  overflow: hidden;
  border-left: 0.8px solid black;
}

.book_page .page_content {
  padding: 5% 15%;
  height: 100%;
  position: relative;
  font-family: var(--body);
  color: var(--dark-text);
  font-size: var(--geniussize);
  background-image: url(/wp-content/plugins/deinweg-shortcodes/template/media/papergrain.png);
  background-size: cover;
}



.book_page .page_content h1,h2,h3 {
  text-align: center;
}

.frontbg{
  content:url(/wp-content/plugins/deinweg-shortcodes/template/media/cover.png);
}

/* -------------page text content---------------------- */

.book_page .chapter {
  font-size: var(--geniussize);
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.book_page hr {
  color: var(--dark-text);
  margin-bottom: 3vw;
  background-color: var(--dark-text);
  height: 1px;
  border: none;
}

.book_page .book-title {
  font-family: var(--book-title);
  font-size: 2.5vw;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: -2%;
}

.book_page .sub {
  font-family: var(--sub-title);
  font-size: 2.5vw;
  font-weight: 100;
  -letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 1vw;
}

.book_page p, .book_page li{
  font-size: var(--geniussize);
  text-align: left;
  -letter-spacing: 0.05vw;
  font-weight: 100;
  line-height: calc(0.2vw + 2.5vh);
}

.book_page a{
  color:var(--dark-text);
}

.book_page .page_number {
  position: absolute;
  bottom: var(--baseline);
  width: calc(70% - (var(--baseline) * 2));
  font-size: var(--geniussize);
  text-align: center;
}

/* .book_page textarea{
  border: none !important;
  outline: none;
  font-family: var(--body);
  font-size: var(--geniussize);
  color: var(--dark-text);

  width: 100% !important;
  background-attachment: local;

  background-image:
        linear-gradient(to right, #ffffff00 10px, transparent 10px),
        linear-gradient(to left, #ffffff00 10px, transparent 10px),
        repeating-linear-gradient(#ffffff00, #ffffff00 33px, var(--dark-text) 33px, var(--dark-text) 34px, #ffffff00 34px);

  line-height: 34px;
  padding: 8px 5px;
  background-color: transparent;
  resize: none;

  margin-top: -20px;
} */

html{
  --geniusline:calc(0.2vw + 2.5vh);
  --bruh:calc(var(--geniusline) - calc(var(--geniusline)/24));
}

.book_page textarea{
  border: none !important;
  outline: none;
  font-family: var(--body);
  font-size: var(--geniussize);
  color: var(--dark-text);

  width: 100% !important;
  background-attachment: local;

  background-image:url(https://www.dein-weg.de/wp-content/uploads/2022/07/linestextarea.png);
  background-size: auto calc(0.2vw + 2.5vh);

  line-height: calc(0.2vw + 2.5vh);
  padding-top: 3px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: transparent;
  resize: none;

  -margin-top: -20px;
  margin-bottom: 0;
}

.book_page .textareap{
  margin-bottom: calc(var(--geniussize) * 0.3);
}


/* .book_page textarea{
  font-size: var(--geniussize);
  background-attachment: local;
  background-image:
        linear-gradient(to right, #ffffff00 10px, transparent 10px),
        linear-gradient(to left, #ffffff00 10px, transparent 10px),
        repeating-linear-gradient(#ffffff00, #ffffff00 33px, var(--dark-text) 33px, var(--dark-text) 34px, #ffffff00 34px);
  line-height: calc(0.2vw + 2.5vh);
  padding: 8px 5px;
} */


.book_page textarea::placeholder{
  color:#2c4152bb ;
}

.numinput{
  width:30%;
  border: none;
  border-bottom: solid 1px var(--dark-text);
  background: none;
  font-family: var(--body);
  outline: none;
  font-size: var(--geniussize);
}

.numinput:focus{
  border-bottom: solid 1px black;
}



.book_page .blockquote{
  margin-top: 3vw;
 text-align: center;
}

.book_page .blockquote-author{
  margin-bottom: 3vw;
  text-align: center;
  font-weight: bold;
}

.book_page .font-white{
  color:white;
}


.book_page [type=button]{
  color:white;
  background-color: #272727;
  border-radius: 12px;
  font-family: var(--book-title);
  padding: 0.6vw 6vw;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  margin: 4vw auto;
  display: block;
  -webkit-appearance: none;
  cursor: pointer;
}


.book_page .ihvz{
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
  font-family: var(--body);
  font-size: var(--geniussize);
  text-align: left;
  font-weight: 100;
  line-height: calc(0.2vw + 2.5vh);
  color: var(--dark-text);
}

.book_page .ihvz p{
  line-height: calc(-0.3vw + 4vh);
  /* calc(0.2vw + 2.5vh) */
  margin: 0;
}

.book_page .ihvz .ihvz-numbers p{
  text-align: end;
  text-decoration: underline;
  cursor: pointer;
}




.lifeflex{
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  gap:10px;
  justify-content: space-around;
}

.book_page .lifeflex span{
  font-weight: bold;
  font-style: italic;
}

.bereichegrid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;

}

.bereichegrid span{
  font-weight: bold;
  font-style: italic;
  padding: 5px;
  width: fit-content;

  }

.bereichegrid span, .lifeflex span{
  cursor: pointer;
  text-underline-offset: 2px;
  text-decoration-thickness: 3px;
  text-decoration-color: #FF5800;
}


.bereichegrid span:hover, .lifeflex span:hover{
  text-decoration-line: underline; 
}

.bereichegrid span.active, .lifeflex span.active{
  text-decoration-line: underline; 
}

/* -------------specific page backgrounds---------------------- */
.book_page--4 .book_page-back .page_content{
  background-image:url(/wp-content/plugins/deinweg-shortcodes/template/media/papergrain.png), url(/wp-content/plugins/deinweg-shortcodes/template/media/kap1_1.png);
  background-size: cover, 90% auto;
  background-repeat: repeat, no-repeat;
  background-position: center, left bottom;
}

.book_page--22 .book_page-front .page_content{
  background-image:url(/wp-content/plugins/deinweg-shortcodes/template/media/papergrain.png), url(/wp-content/plugins/deinweg-shortcodes/template/media/kap1_2.png);
  background-size: cover, 90% auto;
  background-repeat: repeat, no-repeat;
  background-position: center, right bottom;
}

.book_page--26 .book_page-front .page_content{
  background-image:url(/wp-content/plugins/deinweg-shortcodes/template/media/papergrain.png), url(/wp-content/plugins/deinweg-shortcodes/template/media/kap1_3.png);
  background-size: cover, 90% auto;
  background-repeat: repeat, no-repeat;
  background-position: center, right 80%;
}

.book_page--44 .book_page-front .page_content{
  background-image:url(/wp-content/plugins/deinweg-shortcodes/template/media/papergrain.png), url(https://www.dein-weg.de/wp-content/uploads/2022/05/wegundvogek.png);
  background-size: cover, 80% auto;
  background-repeat: repeat, no-repeat;
  background-position: center, 15% 65%;
}


.book_page.book_page--102 label p{
 margin:0.5vh;
}


.book_page.book_page--102 textarea{
  margin:0.5vh;
 }

.book_page-last .page_content{
  background-image:url(/wp-content/plugins/deinweg-shortcodes/template/media/papergrain.png), url(https://www.dein-weg.de/wp-content/uploads/2022/06/bergende.png);
  background-size: cover, 100% auto;
  background-repeat: repeat, no-repeat;
  background-position: center, bottom;
}

.book_page--50 .book_page-front .zitrone{
  width:65%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.vögel{
  width:45%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5vw;
  margin-bottom: 5vw;
}


.book_page--4 .book_page-back .page_content .blockquote{
  margin:40% 10%;
  margin-bottom: auto;
}

.book_page--22 .book_page-front .page_content .blockquote{
  margin:10vw 10%;
  margin-bottom: auto;
}






.qu_step1, .qu_step3{
  display: none;
}

.book_page--56 .book_page-front .page_content{
  background-image:url(/wp-content/uploads/2022/05/ratepic1.png);
  background-size: cover;
  background-repeat: repeat;
  background-position: right;
}

.book_page--56 .book_page-front .page_content.step1{
  background-image:revert;
}
.book_page--56 .book_page-front .page_content.step3{
  background-image:revert;
}

.book_page--56 .book_page-front .page_content.step1 .qu_step1{
  display: initial;
}
.book_page--56 .book_page-front .page_content.step3 .qu_step3{
  display: initial;
}
.book_page--56 .book_page-front .page_content .endquote{
  display: none;
  text-align: center;
  margin-top: 40%;
    font-weight: 800;
}
.book_page--56 .book_page-front .page_content.step4 .endquote{
  display: block;
}

.book_page--56 .book_page-front .page_content.step2{
  background-image:url(https://www.dein-weg.de/wp-content/uploads/2022/06/Gruppe-2541.jpg);
  background-size:  100% auto;
  background-repeat: repeat;
  background-position: center;
}

.book_page--56 .book_page-front input[type=button]{
  position: absolute;
  bottom:0;
  left:0;
  right: 0;
  width:20vw;
  margin-bottom:10vw;
}

.backbutton{
  height: calc(1.2vw + 22px);
    width: 40px;
    position: absolute;
    left: calc(13vw - 20px);
    bottom: 10vw;

}

.backbutton:hover{
  cursor: pointer;
}







.book_page .farbform{
  display: flex;
  align-items: center;
  gap: 3vw;
  font-weight: 900;
  font-style: italic;
}

/* -------------page turning---------------------- */

.book .book_page.now {
  transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 0.95);
  -transition: transform 9s;
  transform: rotateY(-180.0deg);
  z-index: 4;
}
.book .book_page.now:not(.twitchFix){
  transform: rotateY(-180.0deg) translateZ(-1px);
}


.book.no-anim .book_page {
  transition: transform 0s;
}



.ready .turnable, .book_page-last{
    display:none;
}
.ready .turnable.disab{
    display: none;
}


.ready .preloader{
  display: none;
}

.preloader{
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--body-bg);
  z-index: 200;
  text-align: center;
  display: flex;
    flex-direction: column;
    justify-content: center;
}

.preloader h1{
  font-family: IsidoraSans;
  color: var(--dark-text);
  text-transform: uppercase;
  margin: 0;
  margin-bottom: -10px;
  font-size: 50px;
  margin-top: -5%;

}
.preloader h2{
  font-family: Seaside;
  color: var(--dark-text);
  font-weight: 100;
  margin: 0;
  margin-bottom: 10px;
  font-size: 38px;
}

section.book_page.turnable.twitchFix{
	transition-timing-function: cubic-bezier(0.13, 0.57, 0.3, 0.81);
}

.book .prev + .book_page:not(.prev),
.book .now + .book_page:not(.now){
  display: initial !important;
}


.book .now + .book_page:not(.now) .book_page-front{
}

.book .prev,
.book .now,
.book .book_page--2 {
  display: initial;
}




.prev {
  z-index: 10;
}

.nextlabel{
  position: absolute;
  right:50px;
  bottom:50px;
  z-index: 100;
  cursor:pointer;
}

.prevlabel{
  position: absolute;
  left:50px;
  bottom:50px;
  z-index: 100;
  cursor:pointer;
}

/* --------------buttons--------------------- */

.but {
  position: absolute;
  z-index: 50;
  cursor: pointer;
  bottom: 10%;
  display: none;
}
#prev {
  left: 5%;
}
#next {
  right: 5%;
}



.layericondiv{
  position: absolute;
  width:7%;
  height:calc(var(--geniussize) *5);
  z-index:100;
  display: flex;
  align-items: center;
  justify-content: right;
  top:0;
  left:0;
  transform:translateZ(200px);
}

.toplayericons{
  height: 50%;
  z-index: 50;
  cursor: pointer;
  display: inline;
  margin-left: 10%;
}

.burger{
width: 50%;
}
.back{

}
.back svg, .burger svg{
  height: 100%;
  width: auto;
}



/* --------------scrollbar--------------------- */
/* width */
textarea::-webkit-scrollbar {
  width: 10px;
}


/* Handle */
textarea::-webkit-scrollbar-thumb {
  background: var(--dark-text);
  border-radius: 5px;
}

/* Track */
textarea::-webkit-scrollbar-track {
  background: #f1f1f1;
  outline-offset: 2px;
  outline: 1px solid var(--dark-text);
  border-radius: 5px;
}
/* --------------wertetabelle--------------------- */
.wt-1{
  font-family: var(--body);
  font-style: italic;
  font-weight: 600;
  color: var(--dark-text);
  border-collapse: collapse;
  display: table;
  margin: auto;

  width:calc(var(--geniussize)*24);

  position: absolute;
  bottom: 10%;
  right:0;
  left:0;
}

.wt-1 tr{ 
}

.wt-1 td{
  padding: calc(calc(1.94*var(--vh)) - 0.7vw) 5%;
  width:calc(var(--geniussize)*12);
  cursor: pointer;
}

.wt-1 tr:not(tr:last-child) td{
  border-bottom: 1px solid var(--dark-text);
}

.wt-1 td:first-child{
  border-right: 1px solid var(--dark-text);
  text-align: right;
}

.wt-1 td:last-child{
  text-align: left;
}

.wt-1 td.chosen-1{
  text-decoration-color: #FF5800 !important;
  text-decoration: line-through;
  text-underline-offset: 0.5px;
  text-decoration-thickness: 2px;
}

.wt-1 td.chosen-2{
  color: #FF5800;
}

.wt-1 td.chosen-3{
  /* -outline: 1px solid #FF5800;
  border: 2px solid #FF5800 !important; */
  border:none !important;
  outline: 2px solid #FF5800;
}



.wt-1 td:first-child.chosen-4::before{
  float: left;
  margin-left: 8%;
}
.wt-1 td:first-child.chosen-4::after{
  display: none;
}

.wt-1 td:last-child.chosen-4::before{
  
  display: none;
}
.wt-1 td:last-child.chosen-4::after{
  float: right;
  margin-right: 8%;
}

#s1.chosen-4::after, #s1.chosen-4::before{
  content: "1";
}

#s2.chosen-4::after, #s2.chosen-4::before{
  content: "2";
}
#s3.chosen-4::after, #s3.chosen-4::before{
  content: "3";
}

.werte_present p{
  font-weight: bold;
}

.book_page .werteheader{
  font-weight: bold;
}

audio {
  width: 100%;
  margin: 3vw auto;
}

.book_page .werte {
  display: inline;
  margin-right: 40px;
  font-weight: bold;
  color:#FF5800;
}


#tablenav.disabled{
  opacity: 0.2;
  pointer-events: none;
}




.werte_choose #tablereset{
  margin:0;
}

.werte_choose #tablenav{
  margin:0;
  float:right;
}

/* --------------bookmark--------------------- */
.bookmark {
  position: absolute;
  z-index: 100;
  top: -40px;
  right: 20px;
  transition: top 0.3s;
  /*
      transition-timing-function: cubic-bezier(0.15, 1.47, 1, 1);
      */
  cursor: pointer;

}

.bookmark:hover {
  top: -20px;
}

.bookmark path {
  transition: fill 0.2s;
}

.bookmark:hover path {
  fill: #304150;
}

.bookmark text {
  transition: fill 0.2s;
}

.bookmark:hover text {
  fill: #fff;
}
	


.activeBookmark{
  top: -20px;
}
.activeBookmark path {
  fill: #304150;
}
	
	
	


.mob_arrowlabel{
  display: none;
}
.mobilebut{

  display: none;
}

.mobile-top-navigation{
  display: none;
}
.mobile-bottom-navigation{
  display: none;
}

/* --------------------goal stroy div------------------- */

.ready #goalStoryDiv section{
  display: none;
}



/**
 * Dragdealer.js 0.10.0
 * http://github.com/skidding/dragdealer
 *
 * (c) 2010+ Ovidiu Cherecheș
 * http://skidding.mit-license.org
 */

 .dragdealer {
  position: relative;
  width:55%;
  margin: calc(var(--geniussize)*1.5) auto;
  background-image: url("https://www.dein-weg.de/wp-content/uploads/2022/06/savearrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 20%;
  height: calc(var(--geniussize)*4.5);
}
.dragdealer .handle {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
/* .dragdealer .red-bar {
  width: 100px;
  height: 30px;
  background: #CC0000;
  color: #FFF;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
} */
.dragdealer .disabled {
  -background: #898989;
}


.dragdealer .red-bar {
  width: calc(var(--geniussize)*4.5);
  height: 100%;
  aspect-ratio: 1;
  background-image: url("https://www.dein-weg.de/wp-content/uploads/2022/06/sliderbook.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 4;
}

.dragdealer .backpack{
  width: calc(var(--geniussize)*4.5);
  height: 100%;
  aspect-ratio: 1;
  background-image: url("https://www.dein-weg.de/wp-content/uploads/2022/06/Gruppe-2409.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  float: right;
  z-index: 5;

  position: absolute;
  right: 0;
} 


.w4rAnimated_checkmark svg {
  width: 80%;
  display: block;
  margin: auto;
  height: calc(var(--geniussize)*4.5);
  transition: background-color 0.9s;
}
.w4rAnimated_checkmark .path{
  stroke-dasharray: 1000;
}

.w4rAnimated_checkmark .path.circle {
  stroke-dashoffset: 1000;
}
.w4rAnimated_checkmark .path.check {
  stroke-dashoffset: 1000;
}



.tickanim svg{
  background-color: #ffffff6A;
}
.tickanim .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
.tickanim .path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
  stroke-dashoffset: 0;
}
.tickanim .path.line {
  stroke-dashoffset: 0;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}
.tickanim .path.check {
  stroke-dashoffset: 1000;
  -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
  animation: dash-check 0.9s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 300;
  }
}
@keyframes dash-check {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 300;
  }
}



#mobileStartScreen{
  display: none;
}


	




.showmobile{
  display: none;
}




@media (min-aspect-ratio: 2/3) , (min-width: 1024px){
  /* @media (min-width: 10240px){ */

  html{
    --vh:1vh;
  }
}



@media (max-aspect-ratio: 2/3) , (max-width: 1024px){
  /* @media (min-width: 10240px){ */
  .book_page-front .page_content{
    box-shadow:none;
  }

  .showdesk{
    display: none;
  }
  .showmobile{
    display: initial;
  }

  body{
    height: -webkit-fill-available;
    overflow:hidden;
    display: flex;
    justify-content: space-between;
  }

  .book_page .ihvz p{
    line-height: 1.1;
    white-space: initial;
  }
  .mobile-top-navigation{
    position: relative;
    top: 0;
    width: 100vw;
    height: calc(var(--vh) * 10);
    background-color: white;
    z-index: 210;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-bottom-navigation{
    position: relative;
    bottom: 0;
    width: 100vw;
    height: calc(var(--vh) * 10);
    background-color: white;
    z-index: 200;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cover {
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  .book{
    -height: 80vh;
  }


.mobile-logo a{
  display: inline-flex;
  text-decoration: none;
}

.layericondiv{
  display: none;
}

.mobile-burger{
  display: flex;
  margin: 0;
  cursor:pointer;
  
}
.mobile-burger svg{
  height: 80%;
  width: auto;
}



.mobile-bookmark{
  width:100px;
}

.mobile-bookmark svg{
width: 30px;
float: right;
position: absolute;
top:-40px;
right: 20px;
transition: top .3s, fill, .3s;
}

.mobile-bookmark .activeBookmark{
  top:-30px;
}

  .book_page {
    width:100vw;
    -height:80vh;
    height: calc(var(--vh) * 80);
    overflow: hidden;
    background-image: none;
  }

  .book_page-front{
    width: 100vw;
    background-image: none;
  }
  .book_page-back{
    width: 100vw;
    transform: none;
    background-image: none;

  }

  .book_page .page_content {
    overflow-y:scroll;
    height: calc(var(--vh) * 80);
    padding:0 5% 5% 5%;
    font-size: 18px;
    line-height: initial;
  }

  .book_page .chapter{
    margin:15px 0;
    font-size: 15px;
  }

  .book_page hr{
    margin-bottom: 30px;
  }

  .book_page .book-title{
    font-size: 40px;
  }

  .book_page .sub{
    font-size: 30px;
  }

.arrowlabel {
  display: none;
}

  .now{
    -display: none;
  }



  .ready .book_page.second .book_page-front{
    display: none;
  }

  .ready .book_page:not(.second) .book_page-back{
    display: none;
  }

  .prev, .prev + .book_page:not(.prev){
    display: none;
    z-index: 0;
  }

/* ???? */
  .book .book_page.now + .book_page-last{
    position: absolute;
  }



  .book .book_page.now {
    transition: transform 0s;
  }
  .book .book_page {
    transition: transform 0s;
  }

  .mobile-logo{
    width: 100px;

  }

  .page_content p, .page_content li{
    font-size: 18px;
    line-height: 23px;
  }

.bookmark {
  display: none;
}





.book_page .ihvz-pages p{
  margin-bottom: 20px;
  cursor: pointer;
  text-decoration: underline;
}
.ihvz-numbers{
  display: none;
}

.lifeflex span{
  text-decoration-line: none;
  flex:0 48%;
  font-size: 18px;
  text-align: center;
}

.bereichegrid span:hover, .lifeflex span:hover{
  text-decoration-line: underline; 
}


.bereichegrid span.active, .lifeflex span.active{
  text-decoration-line: underline; 
}

.bereichegrid{
  grid-template-columns: 1fr 1fr;

}
.bereichegrid span{
  place-self: center;
  text-align: center;
}

  .mob_arrowlabel{
    display: flex;
    cursor: pointer;
  }

.mobile-pagenumber{
  font-family: var(--body);
}
  .book_page .page_number {
    display: none;
    position: relative;
  }




  




	
	
	.numinput{
    font-size: 15px;
    border-radius: 0;
  }
 .book_page textarea{
  font-size: 15px;
  background-attachment: local;
  background-image:
        linear-gradient(to right, #ffffff00 10px, transparent 10px),
        linear-gradient(to left, #ffffff00 10px, transparent 10px),
        repeating-linear-gradient(#ffffff00, #ffffff00 33px, var(--dark-text) 33px, var(--dark-text) 34px, #ffffff00 34px);
        background-size: initial;
  line-height: 34px;
  padding: 8px 5px;
  margin-bottom: initial;

} 
	
.book_page hr{
  color: var(--dark-text);
}

/* ---------- button mobil ----------------- */

.book_page--56 .book_page-front input[type=button]{
  width: 65vw;
  height: 40px;
  border-radius: 12px !important;
  margin-bottom: 15vw;
}


#numStoryButton-1, #numStoryButton-2{
  position: relative;
  margin:10vw auto;
}

/* ---------- numstory mobil ----------------- */




/* ---------- wertetabelle mobil ----------------- */
	
	
	.wt-1{
    font-size: 13px;
    position: relative;
    bottom:initial;
    margin-top: 30px;
    margin-bottom: 50px;

    width:initial;
  }

  .wt-1 td{
    width: 40vw;
    padding: 2% 0 2% 5%;
    font-size: 15px;
  }
  .wt-1 td:first-child{
    padding: 2% 5% 2% 0;
  }
	.wt-1 td.chosen-1{
    text-decoration-thickness: 4px;
  }
  .book_page [type=button]{
    font-size: 15px;
    padding:10px 50px ;
  }
  .werte_choose #tablereset{
    margin-bottom: 40px;
  }
  .werte_choose #tablenav{

  }
  .dragdealer{
    margin-top: 50px;
    margin-bottom: 50px;
    width: 90%;

  }


  .book_page--22 .book_page-front .page_content .blockquote{
    margin:18% 2.5%;
    margin-bottom: auto;
  }
  .book_page--22 .book_page-front .page_content{
    background-position: center, right 120%;
  }

  



  .tickanim .path.check {
    stroke-dashoffset: 1000;
    -webkit-animation: dash-check 0.9s 0.35s ease-in-out forwards;
    animation: dash-check 0.9s 0.35s ease-in-out forwards;
  }
  

  .dragdealer .red-bar{
    width: 80px;
    height: 80px;
  }

  .dragdealer .backpack{
    width: 80px;
    height: 80px;
  }
  .dragdealer{
    height: 80px;
    margin:40px auto;
  }
  .w4rAnimated_checkmark svg{
    height: 80px;
  }



  #mobileStartScreen{
    height: 100vh;
    width: 100vw;
    background-color: #27272777;
    position: absolute;
    display: initial;
    z-index: 205;
    padding-top: 60%;
    text-align: center;
    background-image: url("https://www.dein-weg.de/wp-content/uploads/2022/06/Gruppe-2541.jpg");
    background-position: top center;
    background-size: cover;

  }
  #mobileStartScreen h1{
    font-family: IsidoraSans;
    color: var(--dark-text);
    text-transform: uppercase;
    margin: 0;
    margin-bottom: -10px;
    font-size: 50px;
  }
  #mobileStartScreen h2{
    font-family: Seaside;
    color: var(--dark-text);
    font-weight: 100;
    margin: 0;
    margin-bottom: 10px;
    font-size: 38px;
  }
  #mobileStartScreen input{
    font-family: IsidoraSans;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    background-color: #FF5800;
    border-radius: 10px;
    padding:10px 50px;
    border: none;
    -webkit-appearance: none;

    cursor: pointer;
    -webkit-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.45); 
    box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.45);
  }



  .book_page-front .page_content {

  border-left: none
}

  .backbutton{
    transform: translateY(calc(-10vw - 40px));
    left:initial;
    bottom:initial;
  }

}