body {
  background-color:  #f0fffa !important;
}

h1{
    font-size: 23px;
    margin-bottom: 10px;
}

button{
	background: #0.4; /* Old browsers */
	background: -moz-linear-gradient(top,  #4fbfa8 0%, #4fbfa8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4fbfa8), color-stop(100%,#4fbfa8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #4fbfa8 0%,#4fbfa8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #4fbfa8 0%,#4fbfa8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #4fbfa8 0%,#4fbfa8 100%); /* IE10+ */
	background: linear-gradient(top,  #4fbfa8 0%,#4fbfa8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4fbfa8', endColorstr='#4fbfa8',GradientType=0 ); /* IE6-9 */
	width:175px;
	padding:5px;
    line-height: 15px;
	display:inline-block;
	color:#fff;
	text-decoration:none;
	font-weight:bold;
	text-align: center;
    outline-width: 0px;
	border:1px solid #2d7b6b;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-webkit-box-shadow: 0px 2px 3px 2px rgba(50, 50, 50, 0.4);
	-moz-box-shadow: 0px 2px 3px 2px rgba(50, 50, 50, 0.4);
	box-shadow: 0px 2px 3px 2px rgba(50, 50, 50, 0.4);
}

button:hover{
    cursor: pointer;
}
button:active{
	-webkit-box-shadow: inset 0px 1px 3px 2px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: inset 0px 1px 3px 2px rgba(0, 0, 0, 0.4);
	box-shadow: inset 0px 1px 3px 2px rgba(0, 0, 0, 0.4);
	cursor: pointer;
}
.content{
    margin: 10px;
}

.top-search{
    position: fixed;
    margin-left: 310px;
    margin-top: 45px;
    margin-bottom: 10px;
}

.find-input{
    line-height: 30px;
    min-height: 30px;
    padding: 2px;
    width: 600px;
    border: 1px solid lightblue;
    border-radius: 5px;
    transition : border 200ms ease-out;
}
.find-input:focus{
    border-color: #648ed1;
    outline-width: 0;
}
.scroll-wrapper{
    padding-left: 310px;
    top: 100px;
    bottom: 0px;
    position: fixed;
    width: 620px;
    overflow-y: scroll;
}
.center-block{
    width: 600px;
}

.left-block{
    width: 300px;
    position: fixed;
    z-index: 10;
}


.timetable-widget{
    background-color: lightgrey;
}

.control-block-border{
    margin: 5px;
    padding: 5px;
    border: 1px solid gray;
    border-radius: 10px;
}

.timetable-type-def{

}
.slot-type-color{
    width: 15%;
    margin: 5px;
    float: left;
    clear: left;
    height: 15px;
    border: 1px solid lightgrey;
}
.slot-type-text{
    width: 85%;

}
.timetable-control{

}

select{
    border: 1px solid lightblue;
    border-radius: 5px;
    font-size: 15px;
    width: 100%;
}

option{
}

#department-select{
}

#slot-type-select{
}

#speciality-select{
}

.time-cell{
  width: 75px;
  text-align: center;
  border: 1px solid #f0fffa;
  line-height: 21px;
  font-size: 17px;
  position: absolute;
}
.time-cell:hover{
  cursor: pointer;
}

.time-select{
  border: 2px solid !important;
}

.time-row {
  height: 23px;
}

.time-header{
  background-color: #4fbfa8;
  text-align: center;
  border: 1px solid #2d7b6b;
  border-radius: 10% 10% 0 0;
  border-bottom: 4px solid #145d43;
  color: white;
  line-height: 22px;
  font-size: 15px;
  /*text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);*/
}
.day-table{
  border-collapse: collapse;
  border: 2px solid transparent;
  width: 76px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;

}


.doctor-timetable {
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.doctor-timetable ul {
    overflow: visible;
    list-style: none;
    margin: auto;
    padding: 0;
}
.doctor-timetalbe:last-child{
    clear: left;
}

.doctor-timetable li {
    float: left;
    border: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.department-name{
    clear: left;
}
.doctor-name{
    clear: left;
}

div.info-sign-wrap{
  position: absolute;
  left: 83%;
  top: -2px;
}
img.info-sign{

}

.cell-info-wrap{
    position: absolute;
    top: -100%;
    left: -100%;
    z-index: 100;
    display: none;
}
.cell-info{
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
    text-align: center;
    min-width: 150px;
    background-color: white;
    border-radius: 5px;
    border: 1px black solid;
    padding: 3px;
}
.time-cell:hover div.cell-info-wrap{
    display: block;
}

.cell-border{
    margin: 0;
    padding: 0;
    border: 2px outset lightgray;
    height: 23px;
}

@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

div.loader {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #2d7b6b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

div.department-timetable{
    margin-left: 25px;
}

h2.department-name{
    background-color: #4fbfa8;
    font-size: 23px;
    text-align: center;
    border-radius: 6px;
}
h3.doctor-name{
    margin-top: 10px;
    margin-bottom: 0;
    background-color: #4fbfa8;
    box-shadow: 5px 0px 7px rgba(0,0,0,0.5);
    background-color: #9bddcf;
}

.specialist-timetable-row{
    margin-top: 0px;
    margin-left: 15px;
    display: block;
    position: inherit;
    border-top: none;
    box-shadow: 5px 5px 7px rgba(0,0,0,0.5);
    background-color: #d1ede6;
}

.next-previous-week-control{
    margin: 10px;
}

#to-next-week{
    float: right;
}