* {
	box-sizing: border-box;
}

/* Data input */

.content-input {
	height:auto;
	min-width:290px;
	max-width:350px;
	border:0px solid lightgreen;
	padding: 0px;
}

input:invalid {
  border: 2px dashed red;
}

.test_text {
	font-size:16px;
	background-color: white;
	vertical-align: bottom;
	text-align: left;
	height:auto;
	border:0px solid;
	width:320px;
	box-sizing: border-box;
}

input.test_entry {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 15px;
	width: 320px;
	float: left;
	border:1px solid blue;
	border-radius: 5px;
	box-sizing: border-box;
	margin-bottom: 23px;
}

.pressbutton-link {
    background-color: #ecf9ec;
    border: 1px solid;
    color: blue;

    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0px 0px;
    cursor: pointer;
   	float: left;
  	width: auto;
  	height:auto;
  	border-radius: 5px
}
.pressbutton-link:hover {
    background-color: lightgreen;
    color: purple;
    cursor:hand;
}


/* Header */



/* Footer */

.footer {
    background-color: white;
    color: black;
    text-align: center;
    font-size: 12px;
    padding: 15px;
    width:100%;
    border:0px solid;
    clear:both;
}


/* Calendar formatting */

.cal-mat {
	padding:5px 0 5px 0;

	border:1px solid white;


}

.cal-container {
	float:left;
	margin:0 auto;
	border:0px solid;
	display: flex;
  	flex-wrap: wrap;
  	padding:0 24px;

}

.calendar_div {
	font-size:.8em;
	border:0px solid blue;
	width: 217;
	height: auto;
	margin-right: 24px;
	margin-bottom: 24px;
	background-color: white;
}

.Closed {
	background-color:#c0c0c0;
	display: table-cell;
    border-width: thin;
    padding-left: 5px;
    padding-right: 5px;
    width:30px;
    height:30px;
}

.Booked {
	background-color:#ff6055;
	display: table-cell;
    border-width: thin;
    padding-left: 5px;
    padding-right: 5px;
    width:30px;
    height:30px;
}

.Available {
	background-color:#77bb4c;
	display: table-cell;
    border-width: thin;
    padding-left: 5px;
    padding-right: 5px;
    width:30px;
    height:30px;
}



.Cell {
        display: table-cell;
        padding: 5px;
        width:80px;
        height:30px;
        border:0px solid;
    }



td.blank {
	font-size:.8em;
	background-size: 100% 100%;
	background-color:white;
	padding:5px 0 5px 0;
	border:1px solid white;
}

td.Closed {
	background-color:#c0c0c0;
	padding:5px 0 5px 0;
	border:1px solid white;
}

td.Booked {
	background-color:#ff6055;
	padding:5px 0 5px 0;
	border:1px solid white;
}

td.Available {
	background-color:#77bb4c;
	padding:5px 0 5px 0;
	border:1px solid white;
}

td.Closed-booked {
	background: url(../img/grey-red.png)center;
	padding:5px 0 5px 0;
	border:1px solid white;
}

td.Closed-available {
	background: url(../img/grey-green.png) center;
	padding:5px 0 5px 0;
	border:1px solid white;
}

td.Booked-available {
	background: url(../img/red-green.png) center;
	padding:5px 0 5px 0;
	border:1px solid white;
}

td.Booked-closed {
	background: url(../img/red-grey.png) center;
	padding:5px 0 5px 0;
	border:1px solid white;
}

td.Available-booked {
	background: url(../img/green-red.png) center;
	padding:5px 0 5px 0;
	border:1px solid white;
}

td.Available-closed {
	background: url(../img/green-grey.png) center;
	padding:5px 0 5px 0;
	border:1px solid white;
}

.cal-list {
  overflow: hidden;
  background-color: #ecf9ec;
  border:1px solid lightgreen;
  border-radius: 5px;
  width:auto;
  max-width:345px;
  list-style:none;
  font-size:13px;
  font-weight: 400;
  list-style-type: none;
  list-style-image: none;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
	justify-content: center;
	align-items: center;
}

.cal-list a {
  text-decoration: none;
  color: blue;
  text-decoration: none;
}

.cal-list a:hover {
  background-color: lightgreen;
  color: purple;
}

.cal-list a:visited {
	color: blue;
}

.active {
  background-color: lightgrey;
  color: purple;
  border:0px solid lightgreen;
  border-radius: 5px;
}


/* CSS for materialize input */

#icon_prefix {

     min-width: 200px;
   }
#icon_prefix label {padding: 5px}

/* label color */
   .input-field label {
     background: : blue;
   }
   /* label focus color */
   .input-field input[type=text]:focus + label {
     color: blue;
   }
   /* label underline focus color */
   .input-field input[type=text]:focus {
     border-bottom: 1px solid #000;
     box-shadow: 0 1px 0 0 #000;
   }
   /* valid color */
   .input-field input[type=text].valid {
     border-bottom: 1px solid #000;
     box-shadow: 0 1px 0 0 #000;
   }
   /* invalid color */
   .input-field input[type=text].invalid {
     border-bottom: 1px solid #000;
     box-shadow: 0 1px 0 0 #000;
   }
   /* icon prefix focus color */
   .input-field .prefix.active {
     color: #000;
   }

.custom-align .card {
  display: flex;
  flex-direction: column;
}

.custom-align .card-content {
  flex: 1;
  max-height: 100%;
  align-items: center;
  display: flex;
  margin-bottom: 50px;
}

.mdi {padding-left: 10.875px}

label.icon-label{margin-left: 10px !important}

a.fb-msg-btn{
display: inline-block;
font-family: inherit;
font-size: 14px;
font-weight: bold;
color: #fff;
text-align: center;
padding: 12px 16px;
margin: 0;
background-color: #0084ff;
border: 0;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
cursor: pointer;
outline: none;
}

a:hover.fb-msg-btn {
background-color: #0268c7;
}

div.stars {
  width: 270px;
  display: inline-block;
}

input.star { display: none; }
label.star {

  float: right;

  padding: 10px;

  font-size: 36px;

  color: #444;

  transition: all .2s;

}

input.star:checked ~ label.star:before {

  content: '\f005';

  color: #FD4;

  transition: all .25s;

}

input.star-5:checked ~ label.star:before {

  color: #FE7;

  text-shadow: 0 0 20px #952;

}

input.star-1:checked ~ label.star:before { color: #F62; }

label.star:hover { transform: rotate(-15deg) scale(1.3); }

label.star:before {

  content: '\f006';

  font-family: FontAwesome;

}
