/* 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;
}

input[type=password] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}



table
{
    table-layout: fixed;
    width: 100px;
}

input[type=date] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

input[type=datetime-local] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

input[type=number] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}


/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

/* Style the submit button */
input[type=submit] {
  background-color: #f8d844;
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: center;
}

/* Style the reset button */
input[type=reset] {
  background-color: #f8d844;
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: center;
}



/* Style the container */
.container {
  border-radius: 5px;
  background-color:rgba(255, 255, 255, 0.85);
  padding: 20px;
  margin: 0 auto;
  max-width: 600px;

}

/* Style the container */
.container3 {
  border-radius: 5px;
  background-color:rgba(255, 255, 255, 0.85);
  padding: 20px;
  margin: 0 auto;
  max-width: 200px;

}

/* Style the container */
.container4 {
  border-radius: 5px;
  background-color:rgba(255, 255, 255, 0.85);
  padding: 20px;
  margin: 0 auto;
  max-width: 600px;

}

/* Style the container */
.container5 {
  border-radius: 5px;
  background-color:rgba(255, 255, 255, 0.85);
  padding: 20px;
  margin: 0 auto;
  max-width: 900px;

}


.container2 {
  border-radius: 5px;
  padding: 20px;
  margin: 0 auto;
  max-width: 600px;
  color: white;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  color: black;
  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-33 {
  float: left;
  width: 33%;
  margin-top: 6px;
}


/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


/* Customize the label (the container) */
.botone {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* CHECK MARK BEGINHide the browser's default checkbox */
.botone input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  height: 30px;
  width: 30px;
  background-color: #fff;

}

/* On mouse-over, add a grey background color */
.botone:hover input ~ .checkmark {
  background-color: #C3CEF0;
}

/* When the checkbox is checked, add a blue background */
.botone input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.botone input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.botone .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*CHECKMARK END*/

body {
	background-image: url('img/fondo.jpg');
	background-size: 100%;
}

table {
  width: 100%;
  max-width: 600px;
}



/* Estilo de menu desplegable*/

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: rgba(248, 216, 68);

  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #BFAE15;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #BFAE15;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* 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], input[type=reset] {
    width: 100%;
    margin-top: 0;
  }
}