/* --- Global Styles & Resets --- */

/* Animation Styles */
.animate-section {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.animate-section.is-visible {
	opacity: 1;
	transform: translateY(0);
}
/* --- Layout & Container Styles --- */

@media screen and (max-width: 991px) {
	.topbar {
		margin: 0px; /* From css_plaigland.txt */
	}
}

.container {
	max-width: 100%; /* From css_plaigland.txt */
	padding: 0px;
	margin: 0px;
}

.row-item {
	display: flex;
	flex-direction: column;
	position: relative;
	align-items: center;
	justify-content: center;
	row-gap: 3rem;
	padding: 5rem 1rem;
	box-shadow: 0 0 6px rgba(0,0,0,0.18); /* Converted from #00000030 */
	transition: all 0.15s ease;
}

.row-item:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.25); /* Converted from #00000040 */
}


/* --- Animation Styles (from css_datasafety.txt) --- */
@keyframes iconAppear {
	0% {
		opacity: 0;
		transform: translateY(20px) scale(0.95);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1.1);
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	}
}

@keyframes containerAppear {
	0% {
		opacity: 0.8;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.data-section {
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.data-section.visible {
	opacity: 1;
	transform: translateY(0);
}

.subheader-container {
	display: flex;
	align-items: center;
	background-color: #003366;
	padding: 16px;
	margin: 20px 0;
}

.subheader-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 16px;
	flex-shrink: 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.data-section.visible .subheader-icon {
	opacity: 1;
	transform: scale(1);
}

.subheader-title {
	color: white;
	font-size: 24px;
	margin: 0;
}

.info-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.info-card {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	min-height: 150px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-card h4 {
	color: #003366;
	font-size: 1.25rem;
	margin-top: 10px;
	margin-bottom: 10px;
	line-height: 1.3;
}

.info-card p {
	color: #555;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* --- Hero Section Styles (from css_promptchallenge.txt) --- */
.hero-how-it-works {
	padding: 40px 0;
	margin-top: 3rem;
}

.hero-how-it-works h2,
.hero-how-it-works p.lead {
	color: white;
}

.hero-how-it-works .challenge-step {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-how-it-works .challenge-step h3,
.hero-how-it-works .challenge-step p {
	color: white;
}

/* --- Role Cards Section (from css_promptchallenge.txt) --- */
.role-cards-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.role-cards { /* This was .card-grid previously, but now role-cards based on user input */
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.role-card { /* This was .card previously, but now role-card based on user input */
	background: white;
	border-radius: 0;
	padding: 2rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border: 3px solid transparent;
}

.role-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	border-color: #126BD9; /* Primary blue from css_promptchallenge.txt */
}

.role-card.active {
	border-color: #126BD9; /* Primary blue */
	background: #f0f8ff; /* Lighter blue for active state */
}

.role-card-icon { /* Renamed from card-icon for consistency with role-card */
	font-size: 3rem;
	color: #126BD9; /* Primary blue */
	margin-bottom: 1rem;
}

.role-card h3 {
	color: #333;
	margin-bottom: 1rem;
	font-weight: 600;
}

.role-card p {
	color: #666;
	line-height: 1.6;
}

/* --- Page-Specific Styles (for filter and course boxes) --- */
.filter-container {
	margin-bottom: 2rem;
}

.search-box {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ccc;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.filters-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 768px) {
	.filters-wrapper {
		flex-direction: row;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 2rem;
	}

	.filter-group {
		flex: 1;
		margin-bottom: 0;
	}

	.clear-filters-wrapper {
		display: flex;
		align-items: flex-end;
		padding-bottom: 8px;
	}
}

.filter-group {
	margin-bottom: 1rem;
}

.filter-group p {
	font-size: 1rem;
	text-transform:uppercase;
	color: #666;
	margin-bottom: 0.5rem;
}

.button-group {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 1rem;
	border: 2px solid #126BD9;
	background: white;
	color: #126BD9;
	cursor: pointer;
}

.filter-btn.active {
	background: #126BD9;
	color: white;
}

.filter-btn:hover {
	background: #0056a7;
	border-color: #0056a7;
	color: white;
}

.clear-btn {
	margin-top: 1rem;
	padding: 1.5rem 1.5rem;
	cursor: pointer;
	border: 2px solid #126BD9;
	background: white;
	color: #126BD9;
}

.clear-btn:hover {
	background: #0056a7;
	color: white;
}


.course-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.course-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.course-box {
	background: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 2rem;
	border: 1px solid #e5e5e5;
	opacity: 1;
	transition: opacity 0.5s ease-out, transform 0.3s ease;
}

.course-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.course-box.fade-out {
	opacity: 0;
}

.course-box.completely-hidden {
	display: none;
}

.course-box h3 {
	color: #003366;
	margin-bottom: 1rem;
	font-size: 2.5rem;
}

.course-header {
	display: block;
}

.course-header h3 {
	margin-bottom: 1rem;
	margin-right: 0;
}

.tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin: 1rem 0;
}

.tag {
	padding: 0.25rem 0.75rem;
	font-size: 0.875rem;
	text-transform: uppercase;
	font-weight: 500;
}

.tags .tag {
	color: #126BD9 !important;
}

.course-box .course-header .tag {
	color: #4D4C55;
	text-transform: uppercase;
	border: #4D4C55 2px solid;
	padding: 5px;
	line-height: 1;
	cursor: default;
}

.course-box .course-header .tag:hover {
	background-color: white;
}

.course-box hr {
	margin: 1rem 0;
	border-top: 1px solid #e5e5e5;
}

.course-box p {
	color: #4a4a4a;
	line-height: 1.6;
}

.course-box .button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background-color: #126BD9;
	color: white;
	border: 2px solid #126BD9;
	text-decoration: none;
	border-radius: 0;
}

.course-box .button:hover {
	background-color: #0056b3;
	border-color: #0056b3;
}


/* --- Tabbed Content Section --- */
.tabbed-section {
	padding: 80px 0;
	background: white;
}

.tab-navigation {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
	border-bottom: 2px solid #e9ecef;
}

.tab-button {
	background: none;
	border: none;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
}

.tab-button:hover {
	color: #fff; /* Primary blue */
}

.tab-button.active {
	color: #126BD9; /* Primary blue */
	border-bottom-color: #126BD9; /* Primary blue */
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

/* --- Use Case & Prompt Specific Styles (from css_promptchallenge.txt) --- */
.use-case {
	background: #f8f9fa;
	border-radius: 0;
	padding: 2rem;
	margin-bottom: 2rem;
	border-left: 4px solid #126BD9; /* Primary blue */
}

.use-case-header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.use-case-icon {
	font-size: 1.5rem;
	color: #126BD9; /* Primary blue */
	margin-right: 1rem;
}

.use-case h4 {
	color: #333;
	margin-bottom: 1rem;
	font-weight: 600;
}

.scenario {
	background: white;
	padding: 1rem;
	border-radius: 0;
	margin-bottom: 1rem;
	border-left: 3px solid #28a745; /* Green */
}

.prompt-example {
	background: #e3f2fd; /* Light blue */
	padding: 1rem;
	border-radius: 0;
	margin-bottom: 1rem;
	font-family: 'Courier New', monospace;
	border-left: 3px solid #2196f3; /* Blue */
}

.try-it-box {
	background: white;
	border: 2px solid #126BD9; /* Primary blue */
	border-radius: 0;
	padding: 1.5rem;
	margin: 1rem 0;
}

.why-helpful {
	background: #e8f5e8; /* Light green */
	padding: 1rem;
	border-radius: 0;
	margin-top: 1rem;
	border-left: 3px solid #28a745; /* Green */
}

/* Duplicated rule, simplified to one instance */
.try-it-box {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 0;
	padding: 1rem;
	margin-top: 1rem;
}

/* --- AI Responses Section (existing from your original CSS) --- */
.ai-responses-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 2rem;
}

.ai-response-card {
	background: white;
	border: 2px solid #e9ecef;
	border-radius: 0;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ai-response-card h3 {
	color: #126BD9;
	margin-bottom: 1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.ai-response-card h4 {
	color: #333;
	margin: 1.5rem 0 1rem 0;
	font-weight: 600;
}

.ai-response-content {
	max-height: 400px;
	overflow-y: auto;
	padding-right: 0.5rem;
}

.ai-response-note {
	font-style: italic;
	color: #666;
	font-size: 0.9rem;
	margin-top: 1rem;
	border-top: 1px solid #e9ecef;
	padding-top: 1rem;
}

/* --- AI Product Cards (specific styling from your latest input) --- */
.ai-product-card {
	background: white;
	border: 1px solid #e9ecef;
	border-radius: 0;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	flex: 1;
	min-width: 280px;
	max-width: 320px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	overflow: hidden;
}

.ai-product-image-wrapper {
	background-color: #f8f9fa;
	padding: 2rem;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.5rem;
}

.ai-product-logo {
	max-width: 150px;
	height: auto;
}

.ai-product-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: #003366;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.5rem;
	width: 100%;
	text-align: left;
}

.ai-product-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background-color: #0078d4;
}

.ai-product-button {
	background: #0078d4;
	color: white;
	padding: 15px 25px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 0;
	text-decoration: none;
	display: block;
	width: 100%;
	text-align: center;
	margin-top: auto;
	transition: all 0.3s ease;
}

.ai-product-button:hover {
	background: #106ebe;
	color: white;
	text-decoration: none;
	transform: translateY(-1px);
}

/* --- Challenge Explained Section (from css_promptchallenge.txt) --- */
.challenge-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 1.5rem;
}

.challenge-step {
	background: white;
	border-radius: 0;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.challenge-step-icon {
	font-size: 3rem;
	color: #126BD9; /* Primary blue */
	margin-bottom: 1rem;
}

/* --- Prompt Display (from css_promptchallenge.txt) --- */
.prompt-display {
	background: #e3f2fd; /* Light blue */
	border: 3px solid #2196f3; /* Blue */
	border-radius: 0;
	padding: 2rem;
	margin: 2rem 0;
	text-align: center;
}

.prompt-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #1976d2; /* Darker blue */
	margin-bottom: 1rem;
}

.prompt-text {
	font-size: 1.1rem;
	font-weight: 500;
	color: #333;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.prompt-instruction {
	font-style: italic;
	color: #666;
	margin-bottom: 1.5rem;
}

/* --- Your Turn Section (from css_promptchallenge.txt) --- */
.your-turn-section {
	padding: 80px 0;
	background: white;
}

.instructions-list {
	counter-reset: step-counter;
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.instructions-list li {
	counter-increment: step-counter;
	margin-bottom: 1.5rem;
	padding-left: 3rem;
	position: relative;
}

.instructions-list li::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 0;
	background: #126BD9; /* Primary blue */
	color: white;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.ai-link {
	display: inline-block;
	background: #126BD9;
	color: white;
	padding: 0.5rem 1rem;
	text-decoration: none;
	border-radius: 0;
	margin-left: 0.5rem;
	transition: all 0.3s ease;
}

.ai-link:hover {
	background: #0056b3;
	color: white;
	text-decoration: none;
	transform: translateY(-1px);
}

/* --- Discussion Section --- */
.discussion-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.discussion-cta {
	background: #28a745;
	color: white;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	border: none;
	border-radius: 0;
	text-decoration: none;
	display: inline-block;
	margin: 1rem 0;
	transition: all 0.3s ease;
}

.discussion-cta:hover {
	background: #218838;
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
}

/* --- Past Prompts Section --- */
.past-prompts-section {
	padding: 60px 0;
	background: white;
}

/* --- Resources Section --- */
.resources-list {
	list-style: none;
	padding: 0;
}

.resources-list li {
	margin-bottom: 1rem;
	padding-left: 2rem;
	position: relative;
}

.resources-list li::before {
	content: "📚";
	position: absolute;
	left: 0;
	top: 0;
}

.resources-list a {
	color: #126BD9;
	text-decoration: none;
	font-weight: 500;
}

.resources-list a:hover {
	text-decoration: underline;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
	.ai-responses-container {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.challenge-steps {
		grid-template-columns: 1fr;
	}

	.hero-section h1 {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.tab-navigation {
		flex-direction: column;
	}

	.tab-button {
		border-bottom: none;
		border-right: 3px solid transparent;
	}

	.tab-button.active {
		border-right-color: #126BD9;
		border-bottom-color: transparent;
	}

	.explanation-grid {
		grid-template-columns: 1fr;
	}
}

/* --- Additional styles for Copilot content --- */
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
	border: 1px solid #dee2e6;
	padding: 1rem;
	text-align: left;
	vertical-align: top;
}

.comparison-table th {
	background-color: #f8f9fa;
	font-weight: 600;
	color: #333;
}

.comparison-table tr:nth-child(even) {
	background-color: #f8f9fa;
}

.comparison-table tr:hover {
	background-color: #e9ecef;
}

@media (max-width: 768px) {
	.comparison-table {
		font-size: 0.9rem;
	}

	.comparison-table th,
	.comparison-table td {
		padding: 0.5rem;
	}
}

.launch-copilot-btn {
	background: #0078d4;
	border: none;
	color: white;
	padding: 10px 20px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 0;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	margin-left: 0.5rem;
}

.launch-copilot-btn:hover {
	background: #106ebe;
	color: white;
	text-decoration: none;
	transform: translateY(-1px);
}

.simulated-note {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 0;
	padding: 1rem;
	margin: 1rem 0;
	font-style: italic;
}

/* --- OwlONE Platform Overview Section (from css_owlone.txt) --- */
.platform-overview-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.overview-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 3rem;
	align-items: center;
}

.overview-text {
	padding: 2rem;
}

.overview-visual {
	background: white;
	border-radius: 0;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border: 2px solid #e9ecef;
}

.overview-visual img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

/* --- Educational Use Cases Section (from css_owlone.txt) --- */
.use-cases-section {
	padding: 80px 0;
	background: white;
}

.use-cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.use-case-card {
	background: #f8f9fa;
	border-radius: 0;
	padding: 2rem;
	text-align: left;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border-left: 4px solid #126BD9; /* Primary blue */
}

.use-case-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.use-case-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
}

.use-case-card h4 {
	color: #333;
	margin-bottom: 1rem;
	font-weight: 600;
	font-size: 1.2rem;
}

.use-case-card p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* --- Featured Agents Section (from css_owlone.txt) --- */
.featured-agents-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.agents-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.agent-card {
	background: white;
	border-radius: 0;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border: 2px solid #e9ecef;
}

.agent-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.agent-card-image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
	border: 3px solid #126BD9; /* Primary blue */
}

.agent-card h4 {
	color: #126BD9; /* Primary blue */
	margin-bottom: 0.5rem;
	font-weight: 600;
	font-size: 1.3rem;
}

.agent-card p {
	color: #666;
	line-height: 1.6;
}

.agent-card .btn {
	margin-top: 1rem;
}


/* --- Proficiency Specific Styles (from css_proficiency.txt and new user snippet) --- */

/* Note: Many of these were already present, but re-checked and updated with new snippet details */

/* Media query for bx-pager (from user's new snippet, but commented out so left as is) */
/*
@media (min-width: 1440px){
.bx-pager{
display:none;
}
}
*/

.process-title{
	text-align:left;
	font-size:24px;
	padding-bottom:15px;
	color:#cc0000;
}

.process-description{
	text-align:left;
	padding:15px;
}

#trainings td img {
	width: 100px;
	float: left;
	margin-right: 10px;
}

.list-view__filters select {
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	min-width: 200px;
}

.input-clear {
	display: none;
	position: absolute;
	right: 15px;
	font-size: 20px;
	top: 11px;
	cursor: pointer;
}


#trainings thead, .fixedHeader-floating thead {
	text-transform: uppercase;
}

#trainings thead th, .fixedHeader-floating thead th {
	font-weight:normal;
	padding-top:5px;
	padding-bottom: 5px;
	border-bottom:none;
	width: 35%;
}

#trainings tbody td:first-child {
	border-left: none;
}

#trainings tbody tr:last-child td {
	border-bottom: 1px solid #ccc;
}

#table__search {
	margin: 0;
	width: 100%;
}

.dataTables_info {
	position :absolute;
}

.dataTables_wrapper div.dataTables_paginate {
	float:none;
	text-align:center;
}

.dataTables_wrapper .dataTables_paginate {
	padding-top: 20px;
	line-height: 20px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	padding: 5px 8px;
	color: #737373;
	font-size: 18px;
	text-decoration: none;
	cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
	color: #c00;
}

@media screen and (max-width: 797px) {
	#trainings {
		border: 0;
	}

	#trainings thead {
		display: none;
	}

	#trainings tr {
		display: block;
		border-bottom: 2px solid #ddd;
	}

	#trainings td {
		display: block;
		text-align: left;
		border-top: none !important;
		border-left: none !important;
		width: 100% !important;
		padding: 10px !important;
	}

	#trainings td img {
		width: 100px;
		float: none;
		margin-right: 0;
		margin-bottom: 10px;
	}

	#trainings tr:first-child {
		border-top: 2px solid #ddd;
	}

	#trainings td:first-child {
		font-size: 15px;
		font-weight: bold;
	}

	#trainings td:last-child {
		border-bottom: 0;
	}

	#trainings tbody tr:last-child td {
		border-bottom: none !important;
	}
	.fixedHeader-floating {
		display: none;
	}
}

/* FIXED HEADER */
table.fixedHeader-floating{
	position:fixed !important;
	top: 35px !important;
	background-color: white;
}

html.screen-mobile table.fixedHeader-floating{
	position:fixed !important;
	top: 0px !important;
	background-color: white;
}

table.fixedHeader-floating.no-footer{
	border-bottom-width: 0;
}
table.fixedHeader-locked{
	position:absolute !important;
	top: 35px !important;
	background-color: white;
}
@media print{
	table.fixedHeader-floating{
		display: none;
	}
}

/* RESPONSIVE */
.table-responsive {
	border: none !important;
	overflow-x: inherit !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
	cursor: default !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
	display: none !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
	top: 9px;
	left: 4px;
	height: 14px;
	width: 14px;
	display: block;
	position: absolute;
	color: white;
	border: 2px solid white;
	border-radius: 14px;
	box-shadow: 0 0 3px #444;
	box-sizing: content-box;
	text-align: center;
	font-family: 'Courier New', Courier, monospace;
	line-height: 14px;
	content: '+';
	background-color: #31b131;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
	content: '-';
	background-color: #d33333;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {
	display: none;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
	padding-left: 27px;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
	top: 5px;
	left: 4px;
	height: 14px;
	width: 14px;
	border-radius: 14px;
	line-height: 14px;
	text-indent: 3px;
}
table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
	position: relative;
	cursor: pointer;
}
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
	top: 50%;
	left: 50%;
	height: 16px;
	width: 16px;
	margin-top: -10px;
	margin-left: -10px;
	display: block;
	position: absolute;
	color: white;
	border: 2px solid white;
	border-radius: 14px;
	box-shadow: 0 0 3px #444;
	box-sizing: content-box;
	text-align: center;
	font-family: 'Courier New', Courier, monospace;
	line-height: 14px;
	content: '+';
	background-color: #31b131;
}
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
	content: '-';
	background-color: #d33333;
}
table.dataTable > tbody > tr.child {
	padding: 0.5em 1em;
}
table.dataTable > tbody > tr.child:hover {
	background: transparent !important;
}
table.dataTable > tbody > tr.child ul.dtr-details {
	display: inline-block;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details li {
	border-bottom: 1px solid #efefef;
	padding: 0.5em 0;
}
table.dataTable > tbody > tr.child ul.dtr-details li:first-child {
	padding-top: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details li:last-child {
	border-bottom: none;
}
table.dataTable > tbody > tr.child span.dtr-title {
	display: inline-block;
	min-width: 75px;
	font-weight: bold;
}

div.dtr-modal {
	position: fixed;
	box-sizing: border-box;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 100;
	padding: 10em 1em;
}
div.dtr-modal div.dtr-modal-display {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 50%;
	overflow: auto;
	margin: auto;
	z-index: 102;
	overflow: auto;
	background-color: #f5f5f7;
	border: 1px solid black;
	border-radius: 0.5em;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
div.dtr-modal div.dtr-modal-content {
	position: relative;
	padding: 1em;
}
div.dtr-modal div.dtr-modal-close {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 22px;
	height: 22px;
	border: 1px solid #eaeaea;
	background-color: #f9f9f9;
	text-align: center;
	border-radius: 3px;
	cursor: pointer;
	z-index: 12;
}
div.dtr-modal div.dtr-modal-close:hover {
	background-color: #eaeaea;
}
div.dtr-modal div.dtr-modal-background {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 101;
	background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
	div.dtr-modal div.dtr-modal-display {
		width: 95%;
	}
}

@media screen and (max-width: 877px) {
	#table__search {
		width: 100%;
		margin-bottom: 20px;
	}
}

/* Classes for fading in/out, used by JS */
.fade-out {
	opacity: 0;
	transition: opacity 0.5s ease;
}

.completely-hidden {
	display: none !important;
}