/* Style inputs, select elements and textareas 
input[type=text], select, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}*/

.containerText {
  width: 100%;
  font-size: 120%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}


.containerButton {
  width: 90%;
  text-align: center;
  padding: 12px 12px 12px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

/* Style the label to display next to the inputs */
.containerLabel {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

/* Style the submit button */
.containerInput {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

.containerRadio {
   height: 20px;
   width: 20px;
   display: inline-block;
   cursor: pointer;
   vertical-align: middle;
   background: #FFF;
   border: 1px solid #d2d2d2;
   border-radius: 100%;
}

/* Style the container */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  overflow-x: hidden;
  //resize: both;
}

/* Style the container */
.containerdiv {
  overflow:hidden;
}

/* Floating column for inputs:  width */
.col-5 {
  float: left;
  width: 5%;
  margin-top: 6px;
}

/* Floating column for inputs:  width */
.col-10 {
  float: left;
  width: 10%;
  margin-top: 6px;
}

/* Floating column for labels: 25% width */
.col-20 {
  float: left;
  width: 20%;
  margin-top: 6px;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for labels: 25% width */
.col-40 {
  float: left;
  width: 40%;
  margin-top: 6px;
}

/* Floating column for labels: 25% width */
.col-50 {
  float: left;
  width: 50%;
  margin-top: 6px;
}

/* Floating column for inputs:  width */
.col-65 {
  float: left;
  width: 65%;
  margin-top: 6px;
}

/* Floating column for inputs:  width */
.col-70 {
  float: left;
  width: 70%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-100 {
  float: left;
  width: 100%;
  margin-top: 6px;
}

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

/* 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,.col-5, .col-10,.col-20,.col-40,.col-50,.col-70,.col-65,.col-100 {
    width: 100%;
    margin-top: 0;
    float: none;
  }
}