
/* CSS Document */

span.comment1{
    background-color: #ff6666;
}

span.comment2{
    background-color: #00ccff;
}

span.comment3{
    background-color: #ffa366;
}

span.comment4{
    background-color: #33cc33;
}

span.comment5{
    background-color: #ff4dff;
}

.questionContainer p {
    background: rgba(29, 78, 137, 0.2);
    padding: 0.5rem;
}

.questionContainer, .questionIntro{
    padding:.5em;
    margin: .5rem 2rem;
}



.text-container {
    display:none; /* Hide initially*/
    position: relative;
    padding: 20px;
    background-color: #ddd;
}

.questionText{
   display:none; /* Hide initially*/
   font-size: 1.1em;
   line-height: 1.3em;
   width:100%;
   padding:0.5em;
   margin: 1em auto;
   background: #DCC6E0;
   
}

.questionInput{
    background-color: white;
    margin: 1rem 0;
    display: inline-block;
    min-height: 3em;
	max-height: 5em;
    width: 100%;
    padding: 0.5rem 0.5rem 0 0.5rem;
    border: solid 1px gainsboro;
    -webkit-transition: box-shadow 0.3s, border 0.3s;
    -moz-transition: box-shadow 0.3s, border 0.3s;
    -o-transition: box-shadow 0.3s, border 0.3s;
    transition: box-shadow 0.3s, border 0.3s;
    overflow-y: scroll;
}

.print-helper{
  display: none;
}

.question-container{
    padding:0;
}
/* media queries */

/* ----------- Large Display ----------- */

@media screen and (max-width: 1920px) and (max-height: 1080px){
    /* Styles */
 .text-content p{
    font-size:1.6em;
 }

 .questionText {
    font-size:1.6em;  
 }
    

/* ----------- Laptop HiDPI screen ----------- */

@media screen and (max-width: 1440px) and (max-height: 900px){
    /* Styles */
     .text-content p{
    font-size:1.4em;
 }

 .questionText {
    font-size:1.4em;  
 }   

}


/* ----------- Laptop ----------- */

@media screen and (max-width: 1366px) and (max-height: 768px){
    /* Styles */
      

}


/* ----------- Laptop MDPI screen ----------- */

@media screen and (max-width: 1280px) and (max-height: 800px){
    /* Styles */
   
       

}


/* ----------- iPad Landscape----------- */

@media only screen and (max-device-width: 1024px) and (max-device-height: 768px){
    /* Styles */
    .text-content p{
    font-size:1.3em;
 }

 .questionText {
    font-size:1.3em;  
 }
}




