/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Added CSS for the hover effect in Timetable (Business) Location */
.customTooltip {
  position: relative;
  display: inline-block;
}

.customTooltip .customTooltipText {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  background-color: #212529;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.customTooltip:hover .customTooltipText {
  visibility: visible;
}


/* Calendar CSS */
/* .fc-calendar .fc-body { height: 700px; } */

.fc-calendar .fc-row > div > div a,
.fc-calendar .fc-row > div > div span {
	display: block;
	margin-bottom: 3px;
}

.fc-calendar .fc-row > div { cursor: pointer; }

.fc-calendar .fc-row > div:hover { overflow: auto; }


/* Addresses & Bookings Select CSS */

.customSelect {
  width: 100%;background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  height: 35px;
  display: block;
  padding-left: 8px;
  padding-right: 20px;
}

/* scrolling */
/* Hide scrollbar for Chrome, Safari and Opera */
.categories-scroll::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.categories-scroll {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* custom header dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

}
