.calendar-box {

}

.buttons-container {
  cursor: pointer;
}

.week {
  overflow: hidden;
}

.week.highlight {
  background: #efefef;
}

/* weekend */
.week .day:first-child, .week .day:last-child {
  /*color: orange;*/
}

/* sunday */
.week .day:first-child {
  /*color: red;*/
}

.day {
  display: inline-block;
  float: left;
  width: 14.28%;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.day.disabled span {
  color: #AAA;
}

/* vertical highlight */
.week .day.highlight span {
  /*color: blue;*/
}

.day.selected span {
  /*background: orange;*/
}

.day.today span {
  font-weight: bold;
}

.months-container.hidden, .weeks-container.hidden {
  display: none;
}

.months-wrapper {
  overflow: hidden;
}

.months-wrapper .month {
  display: inline-block;
  float: left;
  width: 25%;
  text-align: center;
  cursor: pointer;
}
.months-wrapper .month.one-third {
  width: 33.33%;
}

.valid{
  background-color: lightgreen;
  color: black;
}

.invalid{
  background-color: red;
  color: white !important;
}

.availableTimes{
  margin-top: 10px;
  padding: 30px;
  display: inline-block;

  
}

table, th, td {
  border: 1px solid #fff;


}

td{
  padding: 10px;
  text-align: center;
}

thead{
  background-color: #2d596a;
  color: white;
}

.highlight{
  background-color: gold;
}

.times tr:hover{
  background-color: lightyellow;
  cursor: pointer;
}

.separator{
  border-top: 2px solid #fff;
  margin-top: 20px;
}

.resForm{
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
  padding: 10px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

label{
  margin: 10px;
  font-weight: bold;
}

input{
  width: 250px;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;

}


#slottime{
  width: 500px;
}

table{
  overflow-y:scroll;
  height:350px;
  display:block;
  border: 1px solid #fff;
}

.botsection{
  display: none;
  width: 100%;
}

.success{
  display: none;
}

.someerror{
  display: none;
}
.button {
  background-color: #2d596a; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}