* {
  /*box-sizing: border-box;*/
}

/*button, input, select, textarea {
  font-family: inherit;
  font-size: small;
}*/

/* --------------- DATE -------------*/
input[type="date"] {
  position: relative;
}

input[type="date"]:before {
  content: attr(placeholder);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: rgba(0, 0, 0, 0.65);
  pointer-events: none;
  line-height: 1.5;
  padding: 0 0.5rem;
}

input[type="date"]:focus:before,
input[type="date"]:not([value=""]):before
{
  display: none;
}
/* --------------- FIN DATE -------------*/




input[type=text], input[type=password], select, textarea {
  /*width: 100%;*/
  /*padding: 12px;*/
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  font-size:12px;
  background-color: white;
}

label {
  font-size:small;
  /*padding: 12px 12px 12px 0;*/
  display: inline-block;
}

.bold-option{font-weight: bolder;background-color: #EEEEEE;}

input[type=submit] {
  outline: none;
  background-color: #4CAF50;
  color: white;
  padding: 5px;
  /*padding: 12px 5px;*/
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  box-shadow: 2px 2px 4px #000;
}

input[type=submit]:hover {
  background-color: #45a049;
}

input[type=submit]:active {
  background-color: #3e8e41;
  box-shadow: 1px 1px 2px #000;
  transform: translate(2px,2px);
}

button {
  outline: none;
  background-color: #4CAF50;
  color: white;
  /*padding: 12px 20px;*/
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
  box-shadow: 2px 2px 4px #000;
}

button:hover {
  background-color: #45a049;
}

button:active {
  background-color: #3e8e41;
  box-shadow: 1px 1px 2px #000;
  transform: translate(2px,2px);
}

input[type=button] {
  outline: none;
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
  box-shadow: 2px 2px 4px #000;
}

input[type=button]:hover {
  background-color: #45a049;
}

input[type=button]:active {
  background-color: #3e8e41;
  box-shadow: 1px 1px 2px #000;
  transform: translate(2px,2px);
}

.forms_container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  /*width:400px;*/
  width:50%;
  margin: auto;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
  font-size: x-small;
}

.col-35 {
  float: left;
  width: 35%;
  margin-top: 6px;
  font-size: x-small;
}

.col-50 {
  float: left;
  width: 50%;
  margin-top: 6px;
}

.col-65 {
  float: left;
  width: 65%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.row {
    white-space: nowrap;
}

/*.row {
    border: #45a049 solid 1px;
}*/
/* 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, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}