.dbit-widget {
	width: 100%;
}

.dbit-inner {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.dbit-title {
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	text-align: center;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
}

.dbit-table-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.dbit-table {
	--dbit-center: 15%;
	--dbit-course: 30%;
	--dbit-age: 11%;
	--dbit-schedule: 25%;
	--dbit-date: 19%;
	width: 100%;
	margin: 0;
	border: 1px solid #5bcbfa;
	border-spacing: 0;
	border-collapse: collapse;
	table-layout: fixed;
}

.dbit-table .dbit-col-center {
	width: var(--dbit-center);
}

.dbit-table .dbit-col-course {
	width: var(--dbit-course);
}

.dbit-table .dbit-col-age {
	width: var(--dbit-age);
}

.dbit-table .dbit-col-schedule {
	width: var(--dbit-schedule);
}

.dbit-table .dbit-col-date {
	width: var(--dbit-date);
}

.dbit-table th,
.dbit-table td {
	box-sizing: border-box;
	border-style: solid;
	border-width: 1px;
	border-color: #5bcbfa;
	vertical-align: middle;
	text-align: center;
	word-break: normal;
	overflow-wrap: anywhere;
}

.dbit-table thead th {
	padding: 12px 10px;
	background: #0786d5;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.dbit-table tbody td {
	padding: 8px;
	background: #fff;
	color: #17255a;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
}

.dbit-table .dbit-center-cell {
	font-weight: 500;
}

.dbit-mobile-cards {
	display: none;
}

@media (max-width: 767px) {
	.dbit-title {
		font-size: 19px;
	}

	.dbit-mobile-mode-scroll .dbit-table-scroll {
		padding-bottom: 6px;
	}

	.dbit-mobile-mode-scroll .dbit-table {
		min-width: 760px;
	}

	.dbit-mobile-mode-cards .dbit-table-scroll {
		display: none;
	}

	.dbit-mobile-mode-cards .dbit-mobile-cards {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
	}

	.dbit-mobile-card {
		overflow: hidden;
		border: 1px solid #5bcbfa;
		background: #fff;
		color: #17255a;
	}

	.dbit-mobile-center {
		padding: 12px;
		text-align: center;
		font-weight: 600;
		line-height: 1.3;
	}

	.dbit-mobile-row {
		display: grid;
		grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
		border-top: 1px solid #5bcbfa;
	}

	.dbit-mobile-label,
	.dbit-mobile-value {
		padding: 10px;
	}

	.dbit-mobile-label {
		background: #f2f8fc;
		color: #0786d5;
		font-size: 12px;
		font-weight: 700;
		line-height: 1.3;
	}

	.dbit-mobile-value {
		border-left: 1px solid #5bcbfa;
		font-size: 13px;
		line-height: 1.35;
	}
}

