/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #FFFFB0;
  margin: auto;
  padding: 20px;
  border: 10px solid white;
  width: 80%;
  border-radius:10px;
  box-shadow: 10px 10px 5px grey;
}

/* The Close Button */
.modal-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;  
}

.modal-close:hover,
.modal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal_titel {
	font-family: Arial;
	font-weight: bold;
	font-size: 18px;
	color: grey;
}

.modal_save {
	font-family: Arial;
	font-weight: bold;
	font-size: 30px;
	color: green;
	cursor: pointer;
	text-align: right;
	float: right;
}	

.modal_save:hover {
	color: red;
}	

.modal_add {
	font-family: Arial;
	font-weight: bold;
	font-size: 40px;
	color: green;
	cursor: pointer;
	padding-left: 10px;
	margin-top: 20px;
}	

.modal_add:hover {
	color: red;
	background-color: #ddd;
}	
.edit_comment {
	color: grey;
	padding-top: 5px;
	padding-right: 10px;
	font-family: Arial;
	font-size: 10px;
	text-align: right;
	vertical-align: top;
}


input[type=text], select, textarea {
  width: 300px;
  padding: 3px 5px;
  margin: 2px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: Sans-serif;  
  font-size:14px;
}
input[type=date], input[type=time] {
  padding: 3px 10px;
  margin: 2px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size:14px;
  font-family: Sans-serif;
}