/*.loginNote, .infoMissingConfiguration * {
	display: none;
}
.infoMissingConfiguration::after {
	display: block;
	content: 'Wartungsmodus';
}

#HeaderPartnerFunctions .openPopupLogon {
	display: none !important;
}*/

/* ---- Font Awesome ------------ */

@font-face {
  font-family: Font-Awesome-Solid;
  src: url("/customFiles/customCSS/fa-solid-900.woff2");
}

@font-face {
  font-family: Font-Awesome-Regular;
  src: url("/customFiles/customCSS/fa-regular-400.woff2");
}

/* ----- Ende Font Awesome ------------ */

/* ----- Poppins -----*/

/* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: normal;
  src: url('/customFiles/webFonts/Poppins/poppins-v24-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: italic;
  font-weight: normal;
  src: url('/customFiles/webFonts/Poppins/poppins-v24-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: bold;
  src: url('/customFiles/webFonts/Poppins/poppins-v24-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: italic;
  font-weight: bold;
  src: url('/customFiles/webFonts/Poppins/poppins-v24-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
	font-family: 'Poppins';
}

/* ----- /Poppins -----*/

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.btn-link {
	color: var(--color-text-primary);
	text-decoration: none;
	font-weight: bold !important;
    letter-spacing: .01rem;
}

.btn-link:hover, .btn-link:focus {
	color: var(--color-text-primary-hover);
	text-decoration: none;
	background: var(--color-bg-quaternary-hover);
}

.btn i.fa-arrow-right {
    margin-left: .35rem;
}

.dropdown-menu {
	background: #fff;
}

.dropdown-menu .dropdown-item {
	position: relative;
}

.dropdown-toggle:after, .accordion-item .accordion-button::after {
    background: transparent;
}

.mt-6 {
    margin-top: 5rem !important;
}

.mb-6 {
    margin-bottom: 5rem !important;
}

body {
	background: #f2f2f2;
	background: linear-gradient(0deg,rgba(239, 239, 239, 1) 0%, rgba(255, 255, 255, 1) 60%);
	background-attachment: fixed;
}

.text-primary {
	color: var(--color-bg-primary)!important;
}


/* Text auswählbar machen */
.ecadiaMobilePage :not(INPUT):not(TEXTAREA):not(a), .unselectable {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	-o-user-select: auto;
	user-select: auto;
}

/* Footer */
#footer-ecadia {
    font-size: 0.7em;
	background: #222;
    color: #aaa;
}

.footer-copyright {
	color: #aaa;
}

/* Header / Nav */
li#HeaderLanguageSelection {
	display: none;
}

nav.bg-ecadia-navbar {
	background: #fff;
}

.navbar .fa-bookmark:before {
    content: "";
}
.navbar .toggleBookmarks .fa-bookmark {
    font-weight: 400;
}
.navbar .toggleBookmarks:hover .fa-bookmark {
    font-weight: 900;
}

.sidebar-wrapper .sidebar-brand > a, .sidebar-wrapper .sidebar-brand > p {
    text-transform: none;
}

#bookmarks-panel {
    margin-top: var(--header-height) !important;
}

.sidebar-wrapper .sidebar-brand {
	box-shadow: none !important;
    margin-bottom: 1rem !important;
}

.nav-link.active {
	color: var(--color-text-primary-hover) !important;
}

#HeaderPartnerFunctions a.nav-link span.d-md-inline {
	display: none !important;
}
#HeaderPartnerFunctions a.nav-link span.d-md-none {
	display: inline !important;
}
#HeaderPartnerFunctions .dropdown-menu {
	right: -1rem;
}


@media screen and (max-width: 1130px) {
	a.nav-link {
		font-size: .85rem;
	}
	.navbar-brand img {
		width: 200px;
		height: auto;
		margin-top: -6px;
	}
}


/* Sidebar left */
@media screen and (min-width: 1440px) {
	/* Sidebar soll standardmäßig geschlossen sein.
	Darum drehen wir das Verhalten aus ecadiaMobileNoSidebar.css hier um. */	

	.navbar-left.sidebarInitialState {
		width: 0;
	}

	body {
   		transition: 0.5s;
		padding-left: calc(var(--nav-width) + var(--nav-open-padding));
	}

	body.sidebarInitialState {
   		padding-left: 0;
	}
   
	.navbar-left {
		width: calc(var(--nav-width) + var(--nav-open-padding));
		left: 0;
		padding: 0.5rem 0 0 0;
	}  
}


/* ----- Startseite & Folder List/cards -----*/
div#mobileMenuList {
    display: none;
}

#actionList .btn {
	padding: 0.85rem 1rem!important;
	text-align: left;
	position: relative;
	width: 100%;
	border-top: 1px dashed #000;
    border-radius: 0;
}

#actionList .btn .icon-arrow-right {
	margin-right: 1rem;
}

#actionList h5 {
	letter-spacing: .07rem;
    color: var(--color-text-primary-hover);
    font-size: .75rem;
	text-transform: uppercase;
}

#actionList .dropdown-menu li a {
    display: block;
    border-bottom: 1px dashed #eee;
    padding: .3rem;
    position: relative;
}

#actionList .dropdown-menu li:last-child a {
    border-bottom: none;
}

.icon-arrow-right {
	position: absolute;
	top: 50% !important;
	right: 0 !important;
	transform: translate(-50%, -50%) !important;
	margin-right: 1rem;
}

div#explorer-header-area {
    padding: 2rem 0;
}

#explorer-header-area h1 {
	color: var(--color-text-primary)!important;
}

#folderCardsAreaExplorer .card {
	background-color: var(--color-bg-primary);
}

#folderCardsAreaExplorer .card-body {
    background: #fff;
    top: 120px;
    position: relative;
    transition: top .3s;
}

#folderCardsAreaExplorer .card {
    overflow: hidden;
    height: 200px!important;
}

#folderCardsAreaExplorer .card:hover .card-body {
    top: 0;
}

#folderCardsAreaExplorer .card-footer {
    background: #fff;
    z-index: 10;
	border-top: 1px dashed rgba(0, 0, 0, .2);
}

#folderCardsAreaExplorer .card-subtitle {
    opacity: 0;
    transition: opacity .3s;
}

#folderCardsAreaExplorer .card:hover .card-subtitle {
    opacity: 1;
}

#folderCardsAreaExplorer .card-footer {
    opacity: 0;
    transition: opacity .1s;
}

#folderCardsAreaExplorer .card:hover .card-footer {
    opacity: 1;
}

#folderCardsAreaExplorer .card-footer a,
#folderCardsAreaExplorer .card-footer a:hover {
	color: #000;
}

#explorer-breadcrumbs {
	width: 100%;
}
	
#explorer-breadcrumbs .breadcrumb {
	margin: 1rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, .2);
	border-top: 1px dashed rgba(0, 0, 0, .2);
    padding: .75rem 0;
}

#explorer-breadcrumbs .breadcrumb a {
	text-decoration: none;
}

.carousel-item .rounded-circle {
    border: 6px solid var(--color-bg-primary);
}


/* ----- Suche ----- */

#explorerSearchRow, .explorerExtendedSearchArea, #advancedSearchCollapsible {
	background: #efefef;
	border: 1px solid #e0e0e0;
	padding: 1rem;
	margin-bottom: 0;
}

#explorerSearchRow {
	display: block;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
}

.explorerExtendedSearchArea {
	display: block;
	padding-top: 0;
}

.explorerExtendedSearchArea, #advancedSearchCollapsible {
	border-top: none;
    border-radius: 0 0 6px 6px;
	margin-top: -6px;
}

#advancedSearchCollapsible fieldset, #advancedSearchCollapsible fieldset legend {
	display: none;
}

#advancedSearchCollapsible > fieldset {
	display: block;
	border-left: none !important;
	border-right: none !important;
	border-top: 1px dashed #fff !important;
	border-bottom: 1px dashed #fff !important;
}

#advancedSearchCollapsible > fieldset label {
	width: 100%;
}

#advancedSearchCollapsible fieldset > div {
	display: none;
}

#advancedSearchCollapsible fieldset > div.dateRangeSliderWidget {
	display: block
}

#advancedSearchCollapsible button {
	font-size: 1rem;
}

.explorerExtendedSearchArea .btn {
	width: auto;
	font-size: .8rem;
	padding: 0;
	background: none;
	border: none;
}

.explorerExtendedSearchArea .btn:hover {
	background: none;
	border: none;
	text-decoration: underline;
}

#explorerSearchFolderOnly.btn {
	border: none;
}

#explorerSearchFolderOnly.btn:hover {
	border: none;
	cursor: auto;
}

#explorerSearchFolderOnly .form-check {
	text-align: left;
	font-size: 0.85rem;
}

#explorerSearchFolderOnly .form-check label.form-check-label:after {
    display: inline;
    content: ' suchen';
}

#Catalog_Filter {
	display: none !important;
}


/* ----- Event-Liste ---- */
.mobileWidget.mobile-list .list-group-item .img-thumbnail.font-icon {
    display: none;
}

.mobileWidget.mobile-list .list-group-item {
	padding: 0.75rem 1rem;
	background: #fff;
	border: 1px solid #d5d5d5;
    box-shadow: 0 0 6px rgba(0, 0, 0, .1);
}

.mobileWidget.mobile-list .list-item-subtitle {
	font-size: 0.75rem;
}

.embeddedEventTable {
	font-size: 0.75rem;
}

.embeddedEventTable thead {
	display: none;
}

.embeddedEventTable .eventTable img {
	margin-right: 0.35rem;
	width: 10px;
	height: auto;
	vertical-align: baseline;
}

.embeddedEventTable > table th, .embeddedEventTable > table td {
	padding: 0 0.35rem 0 0 !important;
}

.list-item-block-withIcon {
    display: block;
}

.list-item-text-block {
    display: block;
    flex-direction: column;
    position: relative;
}

#newProductList .list-item-text-block,
#explorer-tp-list .list-item-text-block {
    display: flex;
}

.list-item-subtitle {
	width: 12rem;
	display: flex;
    flex-direction: row;
    justify-content: start;
	margin-bottom: .25rem;
}

.list-item-subtitle-right {
    display: flex;
    flex-direction: column-reverse;
    visibility: hidden;
    line-height: 0;
}

.list-item-title {
    width: 100%;
	padding-right: 1rem;
	margin-bottom: .35rem;
}

.list-item-text {
	width: 40rem;
	max-width: 100%;
}

.list-item-tags {
	visibility: visible;
    line-height: 1;
}

.list-item-tags .item-list-tag.deliveryModeText {
	display: none;
}

@media only screen and (min-width: 960px) {
	.list-item-subtitle {
	    flex-direction: column-reverse;
	}
	
	.list-item-text-block {
		flex-direction: row;
	}
}


/* ----- Login -----*/
#accountList {
  border-radius: 0;
  padding: 1rem 0 0;	
}

#accountList .list-group-item {
  background-color: transparent;
  border-top: 1px solid;
}

#accountList .list-group-item:hover {
  background-color: var(--color-bg-primary);
}

#accountList .list-group-item .list-item-text ul {
  margin-left: 1.35rem;
  margin-top: 1rem;
  margin-bottom: .35rem;
}

.page-login, .body-login {
	background-size: cover;
}

/*---- Bildungsprodukte ----*/
.container .bg-primary {
	background-color: var(--color-bg-primary) !important;
}

.pageTypeClass-trainingproduct .pageHeader,
.pageTypeClass-selfStudyProgram .pageHeader {
	display: none;
}

.product-sharing {
	border-bottom: 1px dashed rgba(0, 0, 0, .2);
	border-top: 1px dashed rgba(0, 0, 0, .2);
    padding: .25rem 0;
	margin-top: 0;
}

.product-sharing .btn-link {
	color: var(--color-text);
	text-decoration: none;
	font-size: .85rem;
	font-weight: normal !important;
}

.product-sharing .btn-link:hover {
	color: var(--color-text-primary-hover);
}

.catalogue-right p {
    margin-bottom: 0!important;
}

table.textBlockArea td {
    padding-right: .5rem;
}

.catalogue-block,
.fachlicherAnsprechpartnerDiv {
	margin: 1.25rem 0;
}

.catalogue-heading {
	font-size: 1.25rem;
}

.catalogue-block .textBlockArea,
.catalogue-block ul,
.fachlicherAnsprechpartnerDiv p {
	font-size: .85rem;
	line-height: 1.6;
}

.catalogue-block p,
.fachlicherAnsprechpartnerDiv p {
	margin-bottom: .75rem;
}

.catalogue-left .catalogue-block {
	border-bottom: 1px dashed rgba(0, 0, 0, .2);
    margin-bottom: 1.75rem;
    padding: 0 .75rem .75rem;
}

.catalogue-abstract {
	border-bottom: 1px dashed rgba(0, 0, 0, .2);
}

.catalogue-right .catalogue-block,
.fachlicherAnsprechpartnerDiv {
	background: #efefef;
	border-radius: .4rem;
	padding: .75rem;
}

.catalogue-left .catalogue-abstract {
	font-weight: bold;
	font-size: 1.125rem;
}

.catalogue-left .title-image {
    background-size: cover;
    background-position: center;
}

.catalogue-left .title-image #title {
	color: #fff;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
}

.eventHTMLDescription td {
	vertical-align: top;
}

#MobileshowAllDaysButton_ButtonshowAllDaysButton {
    display: inline;
    background: 0;
    border: 0;
    padding: 0;
    font-size: 1em;
	color: var(--color-text-link);
	text-decoration: underline;
}

#MobileshowAllDaysButton_ButtonshowAllDaysButton:hover {
    color: var(--bs-link-hover-color);
}

#MobileshowAllDaysButton_ButtonshowAllDaysButton i {
	display: none !important;
}

#Mobileregister_Buttonregister {
	background-color: var(--color-bg-primary);
    border-color: var(--color-bg-primary);
    color: var(--color-text-primary);
	margin-bottom: 1rem;
}

#Mobileregister_Buttonregister:hover {
    background-color: var(--color-bg-primary-hover);
    border-color: var(--color-bg-primary-hover);
    color: var(--color-text-primary-hover);
}

/* --- WBT --- */
.contentArea_wbtPlayer {
    width: 100% !important;
	max-width: none;
	height: 100%;
    margin: 0 !important;
    padding-top: 0 !important;
}

.pageTypeClass-wbtPlayer {
	overflow: hidden;
}

.pageTypeClass-myWBT .mobileContainer {
	margin-bottom: 2rem;
}

.productVideoArea video {
	height: auto !important;
}

.mobile-list .embeddedVideo {
    max-width: 100% !important;	
}

.productWBT #MobilelinkMyWbts_ButtonlinkMyWbts {
	display: none;
}

.pageTypeClass-wbtPlayer iframe#scormContentFrame {
    height: 100vh !important;
}


/* --- Veranstaltung --- */
#MobileeventTabSet_TabSeteventTabSet-accordion {
	background: #fff;
	box-shadow: 0 0 6px rgba(0, 0, 0, .1);
	border-top: 8px solid var(--color-bg-primary);
}


/* --- Buchung --- */
#progressbar li:hover, #progressbar li:focus-within {
	text-decoration: none !important;
	border: 0 !important;
	margin: 0.1em 0 !important;
}

.PriceListTable {
	display: inline-flex;
}

/* --- Trainingsübersicht --- */
.pageTypeClass-employeeTraining div[data-filter-term="WBT abgeschlossen"],
.pageTypeClass-employeeTraining div[data-filter-term="WBT lernend"],
.pageTypeClass-employeeTraining div[data-filter-term="WBT bestanden"],
.pageTypeClass-employeeTraining div[data-filter-term="WBT storniert"],
.pageTypeClass-employeeTraining div[data-filter-term="WBT gebucht"] {
	display: none;
}

.pageHeader .tab-header-icon {
	display: none;
}

.pageHeader {
	margin-top: 2rem;
}

/* --- Mein Bereich --- */
.pageTypeClass-myCertificates .pageHeader,
.pageTypeClass-employeeTraining .pageHeader,
.pageTypeClass-mydocuments .pageHeader,
.pageTypeClass-myWBT .pageHeader,
.pageTypeClass-newsItemList .pageHeader,
.pageTypeClass-myCorrespondenceList .pageHeader,
.pageTypeClass-selfServiceHolidays .pageHeader,
.pageTypeClass-mycalendar .pageHeader,
.pageTypeClass-employee .pageHeader,
.pageTypeClass-approvalEnrollList .pageHeader,
.pageTypeClass-enrolllist .pageHeader,
.pageTypeClass-myDeputies .pageHeader,
.pageTypeClass-newTrainingProductList .pageHeader,
.pageTypeClass-event .pageHeader,
.pageTypeClass-enroll .pageHeader,
.pageTypeClass-expiringCompetencesEmployees .pageHeader {
	border-radius: var(--bs-border-radius) !important;
	padding: 3rem !important;
	background-color: var(--color-bg-primary) !important;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
	margin-bottom: 3rem !important;
	font-size: 2rem;
}

.pageTypeClass-myCertificates h2[name="employeeCertificatesHeader"],
.pageTypeClass-employeeTraining h2[name="employeeTraningHeader"] {
	display: none;
}

.pageTypeClass-newTrainingProductList .pageHeader {
	background-image: url('/customFiles/Bilder/illu-computer-transparent.png');
	background-repeat: no-repeat;
    background-position: right center;
    background-size: 50%;
}

.pageTypeClass-myWBT .pageHeader {
	background-image: url('/customFiles/Bilder/illu-haende-transparent.png');
	background-repeat: no-repeat;
    background-position: right center;
    background-size: 50%;
}

/** Vtabs **/

.mobileTabWidget.vtabs .col-md-3 {
	padding-right: 0;
}
.mobileTabWidget.vtabs .col-md-9 {
	background: #fff;
	box-shadow: 0 0 6px rgba(0, 0, 0, .1);
	border-left: 8px solid var(--color-bg-primary);
}

/** Web Page **/

.contentArea_webPage {
	max-width: 960px !important;
}

.lp_block {
	padding: 1rem 36px;
    margin-bottom: 1rem;
}

.lp_block.image_header {
	background-size: cover;
    padding: 3rem 36px;
    border-radius: .5rem;
	background-position: center;
}

.lp_block.image_header_dim {
	background-color: rgba(0,0,0,.7);
}

.lp_block.image_header_absolute {
	position: fixed;
    width: 106%;
    top: 20px;
    left: -3%;
    z-index: -999;
    height: 320px;
	filter: blur(25px) brightness(80%);
	background-size: cover;
    background-repeat: no-repeat;
	background-position: center;
}

.lp_block.image_header h1 {
    color: #fff;
    text-shadow: 0 0 12px rgba(0, 0, 0, .25);
}

.lp_block.white {
	background-color: #ffffff;
	border-radius: 6px;
}

.lp_flex_container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
	margin: 2rem 0;
}

@media only screen and (min-width: 720px) {
	.lp_flex_container {
    	grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (min-width: 960px) {
	.lp_flex_container {
    	grid-template-columns: repeat(3, 1fr);
	}
	.lp_flex_container.lp50 {
    	grid-template-columns: repeat(2, 1fr);
	}
}

.lp_flex_item.empty {
  visibility: hidden;
}

.lp_block .lp_flex_item.card {
    border: 1px solid rgba(30,45,80,.15);
    height: 100%;
    display: block;
    box-sizing: border-box;
	position: relative;
	box-shadow: 0 0 12px rgba(0,0,0,.15);
	transition: box-shadow .15s ease-in-out;
}

.lp_block .lp_flex_item.card:hover {
	box-shadow: 4px 4px 18px rgba(0,0,0,.25);
}

.lp_block .lp_flex_item.card img {
    width: 100%;
	height: auto;
}

.lp_block .lp_flex_item.card .card_body {
    padding: .5rem .75rem;	
}

.lp_block .lp_flex_item.card h4 a {
	font-weight: bold !important;
}

.lp_block .lp_flex_item.card a:not(.nostretch) {
	text-decoration: none!important;
	color: #000!important;
}

.lp_block .lp_flex_item.card a:not(.nostretch)::after {
	display: block;
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.lp_block .lp_flex_item.card h5 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	color: #aaa;
}

.lp_block .lp_flex_item.card p {
	font-size: 14px;
	margin: 0 0 .5rem;
	line-height: 1.25;
}

