/* ==========================================================================
   Inhalt/table of content
   ========================================================================== */
/*
	
	1.  Variablen/Variables
    1.1 Farben/colors
	1.2 Breakpoints/breakpoint
	2.	Nojavascript
	3.	Allgemein/general
	4.  Überschrift/title
	5.	Fortschrittsanzeige/progress bar
	6.	Main-Part (responsive)
	6.1	Antwortbereich/Answer-Panel
	6.2	Animationsbereich/Animation-Panel
	6.3	Sprechblase/speech bubble
	7.	Tasten/Buttons
	8.  Ergebnis/ResultView
	
 */
/* ==========================================================================
   1 Variables
   ========================================================================== */
/* ==========================================================================
   1.1 Color variables
   ========================================================================== */
/* ==========================================================================
   1.2 Breakpoints for responsible layout
   ========================================================================== */
/* ==========================================================================
   2. Nojavascript - view if javascript is disabled in the browser
   ========================================================================== */
#nojavascript {
  background: white;
  color: #3f4c58;
  font-weight: bold;
  height: 100%;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
}
/* ==========================================================================
   3. General stuff, default classes
   ========================================================================== */
* {
  box-sizing: border-box;
}
body {
  color: #5f7285;
  font-family: Open Sans, Helvetica Neue, Helvetica;
  font-size: 100%;
  padding: 1%;
}
.bold {
  font-weight: bold;
}
h2,
h3,
th {
  color: #3f4c58;
  font-size: 1rem;
  padding: 0px;
}
#mainDiv {
  display: none;
}
#introDiv {
  position: relative;
  text-align: center;
}
#theoIntroImg {
  margin-top: 0.5rem;
  height: 60vh;
  width: auto;
  cursor: pointer;
}
/* ==========================================================================
   4. Titlebar
   ========================================================================== */
#headlineBar {
  box-shadow: 0 1px 2px #5f7285, 0 1px 2px #FFFFFF;
  border-radius: 0.25rem;
  padding: 0.2rem;
  background-color: #050091;
  display: inline-block;
  margin-bottom: 1rem;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}
#headlineText {
  display: inline-block;
  color: white;
  font-size: 1rem;
}
#headlineLogo {
  vertical-align: middle;
}
/* ==========================================================================
   5. Progressbar
   ========================================================================== */
#progressTable {
  width: 100%;
  text-align: center;
}
[id*="question-"] {
  background-color: #F3F3FF;
  box-shadow: 0 1px 2px #5f7285, 0 1px 2px #FFFFFF;
  border-radius: 0.25rem;
  padding: 0.2rem;
}
/* ==========================================================================
   6. Main-Part (responsive) with 12 column layout and two breakpoints
   ========================================================================== */
[class*="col-"] {
  float: left;
  padding: 0.5rem;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .col-m-1 {
    width: 8.33%;
  }
  .col-m-2 {
    width: 16.66%;
  }
  .col-m-3 {
    width: 25%;
  }
  .col-m-4 {
    width: 33.33%;
  }
  .col-m-5 {
    width: 41.66%;
  }
  .col-m-6 {
    width: 50%;
  }
  .col-m-7 {
    width: 58.33%;
  }
  .col-m-8 {
    width: 66.66%;
  }
  .col-m-9 {
    width: 75%;
  }
  .col-m-10 {
    width: 83.33%;
  }
  .col-m-11 {
    width: 91.66%;
  }
  .col-m-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 1000px) {
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}
.row:after {
  display: block;
  clear: both;
  content: "";
}
/* ==========================================================================
   6.1 Answer-Panel
   ========================================================================== */
.disabled {
  background-color: white;
  color: #C3C8CD;
}
.disabled:hover {
  color: #C3C8CD;
  cursor: not-allowed;
}
input[type="radio"]:hover {
  cursor: pointer;
}
.ui-radio-label {
  box-shadow: 0 1px 2px #5f7285, 0 1px 2px #FFFFFF;
  border-radius: 0.1rem;
  padding: 0.2rem;
  background-color: #F3F3FF;
  border: 1px solid black;
  display: block;
  height: 2rem;
  width: 100%;
}
.ui-radio-label:hover {
  color: #050091;
  cursor: pointer;
  opacity: 0.8;
}
/*
#answerPanel *{
	margin: 0px;
	padding-bottom: 0.4rem;
	padding-right: 0.4rem;
	padding-top: 0.4rem;
}
*/
#questionPanel {
  padding-left: 0.5rem;
}
/* ==========================================================================
   6.2 Animation-Panel
   ========================================================================== */
#animation {
  margin-top: 0.5rem;
  max-height: 450px;
  max-width: 100%;
  min-height: 20vh;
}
#animationPanel {
  text-align: center;
}
/* ==========================================================================
   6.3 Speech bubble
   ========================================================================== */
.speechBubble {
  background-color: #050091;
  border: 2px solid white;
  border-radius: 30px;
  color: white;
  font-size: 1.1rem;
  height: 100%;
  line-height: 1.5rem;
  padding: 0.5rem;
  text-align: center;
  width: 100%;
}
.speechArrowOuter {
  border: 28px solid;
  border-color: white transparent transparent white;
  height: 0;
  left: 60%;
  position: absolute;
  width: 0;
}
.speechArrowInner {
  border: 27px solid;
  border-color: #050091 transparent transparent #050091;
  height: 0;
  position: absolute;
  width: 0;
}
.dropButton {
  background: none;
  box-shadow: none;
  color: #3f4c58;
  font-size: 0.8rem;
  height: 1.5rem;
}
.imgDropButton {
  background: none;
  color: #3f4c58;
  height: 0.8rem;
  width: 1.4rem;
}
/* ==========================================================================
   7 Buttons - for back and forth navigation
   ========================================================================== */
button {
  box-shadow: 0 1px 2px #5f7285, 0 1px 2px #FFFFFF;
  border-radius: 0.25rem;
  padding: 0.2rem;
  border: 0px;
  cursor: pointer;
  height: 2.2rem;
  width: 100%;
}
button:hover:enabled {
  opacity: 0.9;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#nextButton {
  background-image: url("../img/arrow_right_white.png");
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #050091;
  color: #FFFFFF;
  margin-top: 1rem;
}
#prevButton {
  background-image: url("../img/arrow_left.png");
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: white;
  box-shadow: none;
  color: #3f4c58;
  margin-top: 0.3rem;
}
#restartButton {
  background-image: url("../img/arrow_left_white.png");
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #050091;
  color: #FFFFFF;
  margin-top: 0.3rem;
}
#startButton {
  background-image: url("../img/arrow_right_white.png");
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #050091;
  color: #FFFFFF;
  font-weight: bold;
}
/* ==========================================================================
   8 Result view
   ========================================================================== */
.hint {
  font-size: 0.8rem;
}
.linkFormat {
  background-color: transparent;
  text-decoration: underline;
  border: none;
  color: blue;
  cursor: pointer;
}
.productImages {
  max-height: 200px;
}
.productFamily {
  max-height: 500px;
  max-width: 100%;
}
.smallTable {
  width: 100%;
  line-height: 1.2rem;
}
.smallTable * {
  text-align: left;
  vertical-align: top;
}
.column45 {
  width: 45%;
}
@media only screen and (min-width: 1000px) {
  .column45 {
    width: 25%;
  }
}
#speechBubbleForm {
  display: inline;
}
