h3 {
	text-align:left;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

input[type=number], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

input[type=date], select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  box-shadow: 2px 2px 5px #2E2E2E;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #45a049;
}

input[type=submit]:active {
  background-color: #45a049;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 4px grey;
}

input[type=button] {
  background-color: #04AA6D;
  box-shadow: 2px 2px 5px #2E2E2E;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=button]:hover {
  background-color: #45a049;
}

input[type=button]:active {
  background-color: #45a049;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 4px grey;
}

input[type=password], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.container_fragebogen {
  /*display: flex;
  /*flex-direction: row;*/
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  margin: 0% 10%;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-50 {
  float: left;
  width: 110px;
  margin-top: 6px;
}

.col-55 {
  float: left;
  width: 170px;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 300px;
  margin-top: 6px;
}

.col-end {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.col-25 right {
  width: 120px;
  margin-left: 93.5%;
}

.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 100px;
}

.box1 {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 1;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.col-77 {
  width: 300px;
  margin-top: 6px;
}

.col-80 {
  display: none;
  float: left;
  width: 300px;
  margin-top: 6px;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}