
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap');

/* yellow: #f8d10f */
/* green: #39b582 */
/* blue: #c2ebff */

body {
    font-family: 'Noto Serif', serif;
    font-size: 150%;
/*    background: #39b582; */
    background: #efefef;
}

h1, h2, h3 {
    text-align: center;
    color: black;
}

textarea, select, input[type="number"], input[type="text"] {
    width: 100%;
    border-radius: 3px;
    border: 3px solid #39b582;
    background: white; 
}

textarea:focus, select:focus, input[type="number"]:focus, input[type="text"]:focus {
    outline: none !important;    
    border: 3px solid #f8d10f;
}

textarea {
    width: 100%;
}

.button {
    font-weight: bold;
    padding: 1em;
    border-radius: 1em;
    background: white;
}

.button {
    outline: none !important;    
    border: 1px solid #c2ebff;
}


.button:hover {
    background: #f8d10f;
}

.form {
  display: block;
  width: 300px;
  background-color: #F3EDD3;
  padding:  0;
  text-align: center;
}

.form .form-title {
  text-align: center;
  padding: 5px;
  margin: 0;
  margin-bottom: 15px;
}

.form label {
    color: black;    
}

label {
    font-weight: normal;
}

.form input[type=text], .form input[type=password] {
  display: block;
}

input[type=submit], input[type=button] {
    font-weight: bold;
    padding: 1em;
    border-radius: 1em;
    background: #c2ebff;
    box-shadow: 5px 5px 5px #9f9f9f;
}

input[type=submit]:focus, input[type=button]:focus {
    outline: none !important;    
    border: 1px solid #c2ebff;
}


input[type="checkbox"], input[type="radio"]{
    background: rgba(191,185,169,.2);
    height: 16px;
    cursor: pointer;
    border-radius: 50%;
    width:16px;
    -moz-appearance:none;
    -webkit-appearance:none;
    box-shadow: 0 1px 2px rgba(0,0,0,.44) inset;
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.44) inset;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.44) inset;
    vertical-align: middle;
}

input[type="radio"] {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

input[type="checkbox"]:checked, input[type="radio"]:checked {
    background: #f8d10f;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0,0,0,.44);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.44);
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.44);
}

::-webkit-input-placeholder {
    color: #39b582;
}

:-moz-placeholder { /* Firefox 18- */
    color: #39b582;
}

::-moz-placeholder {  /* Firefox 19+ */
    color: #39b582;
}

:-ms-input-placeholder {  
    color: #39b582;
}

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

.container {
    background: none;
}

.question-top {
    width: 100%;
}

.category-title {
    width: 100%;
}

.category-progress {
    text-align: center;
}

.button-container {
    text-align: center;
    margin-bottom: 1em;
}

.question {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
    padding: 1em;
    border-radius: 0.5em;
/*    background: #39b582; */
/*    border: 4px solid #39b582; */
    background: #f5f5f5;
/*    box-shadow: 5px 5px 5px #199562;*/
    box-shadow: 5px 5px 5px #9f9f9f;
}

.question-label {
    /*font-weight: bold;*/
}

.question-fields {
    overflow: hidden;
}

.btn {
    color: black;
    background: #39b582;
}

.btn:hover {
    background: #f8d10f;
}

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

.image-label input[type="checkbox"] + img {
    border: 4px solid #39b582;
}

.image-checkbox {
    display: none;
}

.image-label input[type="checkbox"]:checked + img {
    border: 4px solid #f8d10f;
}

.slidecontainer {
    margin-bottom: 64px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;  
  background: #39b582;
  outline: none;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  max-width: 50px;
  max-height: 50px;
  width: 12vw;
  height: 12vw;
  border: 0;
  background: url('/static/images/arrow.png');
  background-size: 100%; 
  cursor: pointer;
}

.slider::-moz-range-thumb {
    max-width: 50px;
    max-height: 50px;
    width: 12vw;
    height: 12vw;
    border: 0;
    background: url('/static/images/arrow.png');
    background-size: cover; 
    cursor: pointer;
}

.insect-feel {
    text-align: center;
    max-width: 700px;
}

.feelcontainer {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.feelface {
    flex-grow: 1;
    box-sizing: border-box;
    vertical-align: top;


    margin: 0;
}

.feelimg {
    max-width: 100px;
    width: 12vw;
}

.feelstretch {
  width: 100%;
  display: inline-block;
  font-size: 0;
  line-height: 0
}

.insect_image {
    width: 270px;
    height: auto;
}




