a.day:hover {
    text-decoration: none;
}

@font-face {
	font-family: Roboto;
	src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
	font-family: Roboto;
	src: url('../fonts/Roboto-Bold.ttf');
	font-weight: bold;
}

@font-face {
	font-family: Roboto;
	src: url('../fonts/Roboto-Semibold.ttf');
	font-weight: 600;
}

@font-face {
	font-family: Roboto;
	src: url('../fonts/Roboto-Light.ttf');
	font-weight: 300;
}

@font-face {
	font-family: FontAwesome;
	src: url('../fonts/FontAwesome.otf');
}

@import url(http://fonts.googleapis.com/css?family=Open+Sans);

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.material-datepicker {
	font-family: 'Open Sans', Roboto, "Verdana","Arial","Helvetica","sans-serif" !important;
	position: absolute;
	width: 280px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.12);
	z-index: 1000000;
}
.material-datepicker:focus {
	outline: none;
}

.material-datepicker.hide {
	display: none;
}

section.top-day {
	text-align: center;
	font-weight: 300;
	font-size: 14px;
	background-color: #007366;
	height: 32px;
	line-height: 32px;
	color: #fff;
}

section.middle-date {
	background-color: #009688;
	height: 135px;
	color: #fff;
	text-align: center;
	position: relative;
}

section.middle-date > .month {
	padding: 8px 0px;
	text-transform: uppercase;
	font-size: 22px
}
section.middle-date > .date {
	font-size: 55px;
	height: 39px;
	margin-top: -10px;
	margin-bottom: 24px;
}
section.middle-date > .year {
	font-size: 26px;
	font-weight: 400;
	color: #8ACFC8;
}

a.control {
	font-family: FontAwesome;
	color: #009688;;
	font-size: 15px;
	font-weight: 300;
	position: absolute;
	cursor: pointer;
	top: 7px;
}
a.prev {
	left: 62px;
}
a.next {
	right: 62px;
}

section.calendar {
	position: relative;
	padding-bottom: 15px;
}

section.calendar > .title {
  margin-top: 8px;
  padding: 7px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #293846;
}

section.calendar .days, section.calendar .headings  {
	width: 250px;
	margin: auto;
}

section.calendar .day.heading {
	color: grey;
	font-weight: 400;
}

section.calendar .day {
	font-size: 12px;
	display: inline-block;
	width: 32px;
	line-height: 32px;
	text-align: center;
	font-weight: 300;
}

section.calendar a.day.today {
	color: #009688;
}

section.calendar a.day {
	cursor: pointer;
	border-radius: 40px;
}

section.calendar a.day.selected {
	background-color: #009688;
	color: #fff;
}

section.calendar a.day:hover {
	background-color: #EDEDED;
}

section.calendar a.btn {
  border-radius: 5px;
  cursor: pointer;
  background: white;
  color: #009688;
  text-transform: uppercase;
  border: none;
  outline: none;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .2em 0.5em;
  font-size: 0.9em;
  float: right;
  font-weight: bold;
  display: table;
}

section.calendar a.btn:hover {
  background-color: rgba(0, 150, 136, 0.27);
}