#calendar {
	padding: 20px 0;
}

#calendar h2 {
	color: black;
}

.calendar-wrapper #form {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 1s height, 1s width;
  height: 1px;
  width: 1px;
}
.calendar-wrapper #form.active {
  height: 200px;
  width: 400px;
  padding: 20px;
  z-index: 1000;
  background: #fff;
  border: 2px solid #333;
  overflow: scroll;
}
