/* ===================================
	Table
====================================== */
.crafto-time-table {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	flex: 1 0;
}
.crafto-time-table+.crafto-time-table .crafto-time-table-box {
	border-top-width: 0 !important;
}
.crafto-time-table-box {
	align-items: stretch;
	text-align: center;
	flex-basis: 100%;
	padding: 30px 10px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100px;
	border: 1px solid #000;
	transition: opacity 0.3s;
}
.crafto-time-table-box .inner-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1 auto;
	z-index: 9;
}
.crafto-time-table-box .inner-box>div {
	line-height: initial;
	margin-top: 7px;
}
.crafto-time-table-box+.crafto-time-table-box {
	border-left-width: 0 !important;
}
.crafto-table-header .crafto-time-table-box {
	padding: 15px 10px;
	min-height: 1px;
	background-color: #c3c3c3;
}
.crafto-table-header .crafto-time-table-box .title {
	color: #000;
}
.crafto-table-body .crafto-time-table-box+.crafto-time-table-box:hover .title,
.crafto-table-body .crafto-time-table-box+.crafto-time-table-box:hover .description {
	color: #fff;
}
.crafto-table-body .crafto-time-table-box .title,
.crafto-table-body .crafto-time-table-box:hover .title,
.crafto-table-body .crafto-time-table-box+.crafto-time-table-box:hover .title,
.crafto-table-body .crafto-time-table-box .description,
.crafto-table-body .crafto-time-table-box:hover .description,
.crafto-table-body .crafto-time-table-box+.crafto-time-table-box:hover .description {
	transition: 0.2s ease-in-out;
}
.crafto-table-body .crafto-time-table-box {
	background-color: #e6e6e6;
}
.crafto-table-body .crafto-time-table-box:before {
	position: absolute;
	content: "";
	transition: opacity 0.3s;
	opacity: 0;
	display: inline-block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.crafto-table-body .crafto-time-table-box:hover:before,
.crafto-table-body .crafto-time-table-box+.crafto-time-table-box:hover:before {
	opacity: 1;
}
.crafto-table-body .crafto-time-table-box .title {
	color: #000;
}
.crafto-table-body .tooltip-detail {
	position: absolute;
	left: 50%;
	top: 100%;
	padding: 25px 30px;
	border-radius: 6px;
	width: 250px;
	z-index: 111;
	opacity: 0;
	visibility: hidden;
	background-color: #fff;
	transform: translateX(-50%);
	box-shadow: 0 0 60px rgba(0, 0, 0, 0.14);
	transition: 0.05s;
	text-align: left;
}
.crafto-table-body .tooltip-detail.tooltip-up {
	top: auto;
	bottom: 100%;
}
.crafto-table-body .tooltip-detail.tooltip-left {
	left: auto;
	right: 0;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.crafto-table-body .tooltip-detail::after {
	content: "";
	top: -21px;
	left: 50%;
	height: 0;
	width: 0;
	z-index: 9;
	margin-left: -14px;
	position: absolute;
	pointer-events: none;
	border: solid transparent;
	border-width: 11px;
	border-bottom-color: #fff;
}
.crafto-table-body .tooltip-detail.tooltip-up::after {
	top: 100%;
	transform: rotate(180deg);
}
.crafto-table-body .tooltip-detail.tooltip-left::after {
	right: 60px;
	left: auto;
}
.crafto-table-body .crafto-time-table-box:hover .tooltip-detail, 
.crafto-table-body .crafto-time-table-box + .crafto-time-table-box:hover .tooltip-detail {
	visibility: visible;
	opacity: 1;
}
.tooltip-detail .tooltip-title {
	margin-bottom: 0 !important;
}
.tooltip-detail .tooltip-subtitle {
	display: block;
}

/* Responsive CSS Here */
@media (max-width: 991px) {
	.elementor-widget-crafto-table .elementor-widget-container {
		overflow-x: auto;
		overflow-y: hidden;
	}

	.elementor-widget-crafto-table .elementor-widget-container .crafto-time-schedule-scroll {
		min-width: 1050px;
	}
}
@media (max-width: 1199px) {
	.crafto-time-table-box {
		padding-left: 5px;
		padding-right: 5px;
	}
}