.no-enrollment {
	color: #fff;
	text-align: center;
	font-size: 2em;
	font-weight: 600;
	margin-bottom: 10px;
	padding: 10px;
	display: flex;
	width: 100%;
	flex-direction: column;
}
.no-enrollment i {
	font-size: 3em;
	margin-bottom: 20px;
}
.teasertxt_inner iframe {
	max-width: 100%;
	border: 0px solid transparent;
}
/* Search field styles */
#teams_search_wrapper.hide {
	display: none;
}
#teams_search_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-top: 25px;
}
#teams_search_wrapper #teams_search {
	display: flex;
	align-items: center;
	border-radius: 5px;
	padding: 5px 5px 5px 11px;
	min-width: 350px;
	flex: 1;
}
#teams_search_wrapper #teams_search_inner {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
}
#teams_search_wrapper .teams_search_input {
	border: none;
	outline: none;
	padding: 8px;
	border-radius: 5px;
	font-size: 14px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	transition: 0.1s all linear;
}
#teams_search_wrapper .teams_search_input:hover {
	background-color: rgba(255, 255, 255, 1);
}
#teams_search_wrapper .fa-regular.fa-magnifying-glass {
	font-size: 16px;
	margin-right: 8px;
	color: #333; /* Change this color as needed */
}
/* Quick Links styles */
#teams_search_wrapper .quicklinks-container {
	display: flex;
	align-items: center;
	border-radius: 5px;
	position: relative;
	padding: 11px;
	background-color: #f0f0f0;
	margin-left: 25px;
}
#teams_search_wrapper .quicklinks-icon {
	margin-right: 8px;
	color: #333; /* Change this color as needed */
}
#teams_search_wrapper .quicklinks-dropdown {
	margin-left: 8px;
	font-size: 14px;
	cursor: pointer;
}
#teams_search_wrapper .quicklinks-content {
	position: absolute;
	top: 100%;
	left: 0;
	border-radius: 0 0 5px 5px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	width: 100%;
	background-color: #fff;
	transition: 0.2s linear all 0.3s;
	z-index: 101;
	max-height: 425px;
	overflow: auto;
}
#teams_search_wrapper .quicklinks-content a {
	display: block;
	padding: 8px 12px;
	text-decoration: none;
	color: #333;
	transition: linear all 0.2s;
}
#teams_search_wrapper .quicklinks-content div {
	background-color: rgba(0, 0, 0, 0);
	transition: 0.2s all linear;
}
#teams_search_wrapper .quicklinks-content div:hover {
	background-color: rgba(0, 0, 0, 0.2);
}
#teams_search_wrapper .quicklinks-container:hover {
	border-radius: 5px 5px 0px 0px;
}
#teams_search_wrapper .quicklinks-container:hover .quicklinks-content {
	opacity: 1;
	visibility: visible;
	transition: 0.2s linear all;
}
#teams_search_wrapper #clear_search {
	display: none;
	position: absolute;
	right: 5px;
	opacity: 0.5;
	cursor: pointer;
	transition: 0.1s linear all;
}
#teams_search_wrapper #clear_search:hover {
	opacity: 1;
}
#teams_search_wrapper .quicklinks-content.columns {
	display: flex;
	flex-wrap: wrap;
	left: -100%;
	width: 200%;
}
#teams_search_wrapper .quicklinks-content.columns > div {
	width: 50%;
}
#teams_search_wrapper .quicklinks-content.columns > div a {
	display: flex;
	align-items: center;
	height: 100%;
}
#nosearch {
	display: none;
	text-align: center;
	color: red;
}
#teams_top {
	padding: 10px;
}
#teams_guide {
	margin-top: 20px;
	display: none;
}
.teams_group {
	margin: 3vh 20px 0 20px;
	border: 1px solid #666;
	box-shadow: 0px 0px 6px 1px #999;
	border-radius: 3px;
	overflow: hidden;
}
.teams_group:hover .team_top {
	padding: 0;
}
.teams_group:hover .team_name {
	padding: 20px 10px;
	background-color: rgba(255, 255, 255, 0.5);
}
.team_top {
	position: relative;
	min-height: 25vh;
	width: 100%;
	padding: 7px;
	transition: all 0.2s linear;
}
.team_top:not(.hasimg) {
	height: 25vh;
}
.team_name {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 1.5em;
	color: #000;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.7);
	width: 100%;
	padding: 10px;
	transition: all 0.2s linear;
}
.teams_nr {
	display: none;
}
.teamimg {
	width: 100%;
	height: 100%;
}
.team_top img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.teams_inner {
	perspective: 1000px;
    min-height: 400px; /* Adjust the minimum height as needed */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: space-between; /* Push elements to the top and bottom */
}
.teams_inner .team_list {
	width: 100%;
	height: 100%;
	top: 0;
	position: absolute;
	overflow: hidden;
	backface-visibility: hidden;
	transition: transform 0.5s;
}
.teams_inner .teams_desc {
	 width: 100%;
    flex-grow: 1; /* Allow the container to grow to fill remaining space */
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    transition: transform 0.5s;
}
.teams_desc {}
.teams_inner .team_list {
	transform: rotateY(180deg);
	background-color: #fff;
	overflow: auto;
}
.teams_inner.flip .teams_desc {
	transform: rotateY(180deg);
}
.teams_inner.flip .team_list {
	transform: rotateY(0deg);
}
.teams_group:hover .team_top .shine-overlay {
	animation: shine 1s;
}
.shine-overlay {
	position: absolute;
	top: 0;
	left: -75%;
	pointer-events: none;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	transform: skewX(-25deg);
	z-index: 2;
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.link-box-inner {
	overflow: hidden;
	height: 100%;
	background-color: #000;
}
.link-box-content {
	z-index: 3;
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	/* Add your desired styling for the content inside the link box */
}
.teams_desc {
	display: flex;
	flex-direction: column;
}
.team_see {
	margin: auto 7px 7px 7px;
	overflow: hidden;
	color: #fff;
	position: relative;
	border-radius: 10px;
	line-height: 40px;
	letter-spacing: 0.05em;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	border: 1px solid rgba(150, 150, 150, 0.4);
	cursor: pointer;
	transition: 0.2s linear all;
	flex-shrink: 0;
}
.team_see > div {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: -1;
}
.team_see > div:before {
	content: "";
	background-color: rgba(0, 0, 0, 0);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	transition: 0.2s linear all;
}
.team_see:hover > div:before {
	background-color: rgba(0, 0, 0, 0.2);
}
.teasertxt {
	flex-grow: 1;
	margin: 10px;
	overflow: auto; /* Add scrollbars if content overflows */
}
.teasertxt_inner img {
	max-width: 100%;
}
.teasertxt_inner {
	width: 50%; /* Default width */
	padding-right: 7px;
	float: left;
}
.team-data.full {
	width: 100%;
	    justify-content: left;
}
.team-data {
	width: 50%; /* Default width */
	float: left;
}
/* Adjust width if team-data is not present */
.teasertxt_inner:only-child {
	width: 100%;
}
.team-data {
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
}
.instructor-card {
	max-width: 300px;
	text-align: center;
	width: 50%; /* Default width for 4 or less instructor cards */
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.team-data.full .instructor-card {
	width: 25%;
}

.instructor-card:hover .shine-overlay {
	animation: shine 0.7s;
}
.instructor-card-wrapper {
    flex: 1;
    position: relative;
    padding: 0px;
    /* border: 1px solid #666666; */
    margin: 0px 4px 4px 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.instructor-card-inner {
	flex: 1;
	position: relative;	
	display: flex;
	overflow: hidden;
	flex-direction: column;
	justify-content: flex-start;
}
.title-header-wrapper {
	margin-top: auto; /* Push title and text to the bottom */
	font-size: 0.9em;
	z-index: 3;
}
.instructor-title-text-wrapper {
	margin-top: auto; /* Push title and text to the bottom */
	color: #fff;
	font-size: 0.9em;
	position: relative;
	padding: 4px 0;
	z-index: 3;
}
.team-header-list {
    position: absolute;
    width: 100%;
    background-color: rgba(255,255,255,0.75);
    padding: 5px;
    height: 100%;
    z-index: 2;
    top: 100%;
    transition: 0.2s linear all;
}
.team-header-link {
	display: block;
}
.instructor-card:hover .team-header-list  {
	top: 0;
}

.instructor-title {}
.instructor-text {
	font-weight: 600;
}
@media (min-width: 770px) {
	.instructor-image {
	max-width: 100%;
	height: 100% !important;
	transition: 0.2s linear all;
	object-fit: cover;
	z-index: 1;
}
}
/* Wrap instructors if the available width is less than 300px */
@media (max-width: 300px) {
	.instructor-card {
		width: 100%; /* Make the cards take full width */
	}
}
/* Apply 33% width for 5 or more instructor cards */
.team-data.multiple-columns .instructor-card {
	width: 33.33%;
}
.team-data.multiple-columns.full .instructor-card {
	width: 20%;
}
.team {
	border-left: 5px solid;
	margin: 10px 7px;
	display: flex;
    
}
.team-inner {
	padding: 7px;
	float: left;
    width: 100%;
}
.team-inner i.km-blue {
	width: 25px;
	margin-top: 3px;
}
.team-inner .instrukimg {
	display: inline-block;
}
.team-inner .instrukimg img, #indhold .team-inner .instrukimg img {
	display: inline-block;
	height: 35px;
	width: auto;
}
.team_title + .team_number {
	display: none;
} 
.team_header {    
    font-weight: 600;
    line-height: 1.4em;
    margin: 0 0 5px 0;
    color: #000;
	display: flex;
    align-items: center;
}
.team_header > div {
	display: inline-block;
}
.team_header > span {
	margin-right: 15px;
}
.paymentdates_wrapper {
	cursor: pointer;
}
.paymentdates_wrapper:hover .paymentdates_inner {
	opacity: 1;
	visibility: visible;
}
.paymentdates_inner {
    position: absolute;
	max-width: 385px;
	display: block;
	opacity: 0;
	visibility: hidden;
    background-color: #fff;
    padding: 10px;
	z-index: 101;
    border-radius: 7px;
    border: 1px solid #000;
	transition: 0.2s linear all;
}
.paymentdates_inner.columns {
	max-width: 800px;
}
.paymentdates_inner.columns > div {
	width: 385px;
	display: inline-block;
	float: left;
}
.paymentdates_inner h3 {
	margin:0 0 10px 0;
	border-bottom: 1px solid #000;
    padding-bottom: 2px;
}
.team_see_dates {
	font-size: 0.8em;
}
.paymentdates > div {
    display: inline-block;
    width: 180px;
}
.team_info_item {
	width: 33.33%;
	display: flex;
	float: left;
	margin-bottom: 10px;
	line-height: 1.4em;
}
.team_times {
	clear: left;
}

.team_enroll_btn {
	width: 100%;
	float: left;
	overflow: hidden;
	color: #fff;
	position: relative;
	border-radius: 10px;
	line-height: 40px;
	letter-spacing: 0.05em;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	border: 1px solid rgba(150, 150, 150, 0.4);
	cursor: pointer;
	transition: 0.2s linear all;
	flex-shrink: 0;
	text-decoration:none !important;
}
.team_enroll_btn > span {
	color: #fff;
	text-decoration:none;
}
.team_enroll_btn > div {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: -1;
}
.team_enroll_btn > div:before {
	content: "";
	background-color: rgba(0, 0, 0, 0);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	transition: 0.2s linear all;
}
.team_enroll_btn:hover, .team_enroll_btn:hover span {
	text-decoration:none;
}
.team_enroll_btn:hover > div:before {
	background-color: rgba(0, 0, 0, 0.2);
}
.team_teasertxt {
    display: block;
    width: 100%;
    float: left;
}
@media (max-width: 769px) {
	#teams_search_wrapper {
  
    flex-direction: column;
		align-items: stretch;
}
	#teams_search_wrapper #teams_search {   
    min-width: 100%;
}
	#teams_search_wrapper .quicklinks-content.columns > div {
    width: 100%;
}
	#teams_search_wrapper .quicklinks-content.columns {
    left: 0;
    width: 100%;
}
	#teams_search_wrapper .quicklinks-container {

    margin-left: 0px;
    margin-top: 10px;
}
	#teams_search_wrapper .quicklinks-content {

    max-height: 50vh;
}
	.teams_inner .teasertxt > div {
		width: 100%; 
	}
	.instructor-card {
		min-width: 250px;
	}
	.team-data, .team-data.full {
		justify-content: center;
	}
	.team_info_item {
    width: 100%;
}
}