.booked-calendar-wrapper {
  position: relative;
}
.booked-calendar-wrapper #booked-calendar-overlay,
.booked-calendar-wrapper #booked-time-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.day:not(.disabled) {
  color: #F60B0E;
  font-weight: bold;
}
.day.disabled {
  cursor: not-allowed;
  opacity: 0.5;
  font-style: italic;
}
.day.active {
  background: #f00;
  color: #fff;
  border-radius: 100%;
}
#booked-time .radio-group {
  /*input[type=radio] {
			position: absolute;
			visibility: hidden;
			display: none;
			&:checked + label{
				border-color: #F60B0E;
				background-color: #F60B0E;
			}
		}

		label {
			display: block;
			cursor: pointer;
			font-weight: 400;
			margin:5px;
			line-height: 50px;
			text-align: center;
			height: 50px;
			box-sizing: border-box;
			border: 1px solid #373737 ;
			font-size: 20px;
			}*/
}
#booked-time .radio-group label {
  padding-left: 5px;
}
