/*body styling*/
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1;
}

/*text area input styling*/
textarea{
  background: transparent;
  border: none;
  resize: none;
  color: #000000;
  padding: 10px;
  height: 100%;
  width: 100%;
 -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}

/*main jumbotron at top of page*/
.jumbotron {
  text-align: center;
  background-color: transparent;
  color: black;
  border-radius: 0;
  border-bottom: 10px solid black;
}

/*text area*/
.description{
  white-space: pre-wrap;
}

/*center align time blocks*/
.time-block{
  text-align: center;
}

/*styling for row divs*/
.row {
  white-space: pre-wrap;
  height: 80px;
  border-top: 1px solid white;;
}

/*styling for borders and hour div*/
.hour {
  background-color: #ffffff;
  color: #000000;
  border-top: 1px dashed #000000;
  border-right: 1px solid black;
}

/*changes properties for hours that have passed*/
#past {
  background-color: #d3d3d3;
  color: white;
}

/*changes properties for present hour*/
#present {
  background-color: #ff6961;
  color: white;
}

/*changes properties for future hours*/
#future {
  background-color: #77dd77;
  color: white;
}

/*save button properties*/
.saveBtn {
  border-left: 1px solid black;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: #06AED5;
  color: white;
  text-align: center;
}

/*save button hover properties*/
.saveBtn i:hover {
  font-size: 20px;
  transition: all .3s ease-in-out;
  text-align: center;
}

/*properties for icon*/
i {
  margin-top: 60%;
 
}


