/*******************************************************************
	0. BREAKPOINTS
*******************************************************************/

/* Extra kleine Geräte (Hochformat-Handys, bis 576px) */
@media (max-width: 576px) {}

/* Kleine Geräte (Querformat-Handys, bis 768px) */
@media (max-width: 768px) {}

/* Mittlere Geräte (Tablets, bis 992px) */
@media (min-width: 769px) and (max-width: 992px) {}

/* Große Geräte (Desktops, bis 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {}

/* Extra große Geräte (große Desktops ab 1201px) */
@media (min-width: 1201px) {}

/*******************************************************************
	1. ALLGEMEIN
*******************************************************************/

*
{
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

html
{
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}

body
{
	background: lightcoral;
	background-size: 100%;
	font-size: 1em;
	line-height: 1.4em;
	color: darkblue;
}

b, strong
{
	font-family: Arial, sans-serif;
}

i, em
{
	font-family: Arial, sans-serif;
	font-style: italic;
}

p 
{
	margin: 0px 0px 15px 0px;
	font-family: Arial, sans-serif;
	font-size: 1em;
	line-height: 1.4em;
}

a:link, a:visited
{
	text-decoration: underline;
	color:  darkblue;
}

a:hover, a:active, a:focus
{
	text-decoration: none;
	color:  darkblue;
	outline: none;
}

h1
{
	font-family: Arial, sans-serif;
	font-size: 1.8em;
	line-height: 1em;
	margin: 30px 0px 20px 0px;
	padding: 0px 0px 0px 0px;
	text-align: left;
	color: darkgreen;
	text-transform: uppercase;
}

h2
{
	font-family: Arial, sans-serif;
	font-size: 1.4em;
	line-height: 1em;
	margin: 45px 0px 15px 0px;
	text-transform: uppercase;
	color: darkgreen;
}

h3, h4, h5
{
	font-family: Arial, sans-serif;
	font-size: 1.2em;
	line-height: 1em;
	margin: 45px 0px 0px 0px;
	text-transform: uppercase;
	color: darkgreen;
}

.kleiner
{
	font-size: 0.875em;
	line-height: 1em;
	margin: -20px 0px 0px 0px;
}

sub
{
	font-size: 0.75em;
	line-height: 1em;
}

sup
{
	position: relative;
	font-size: 0.75em;
	line-height: 1em;
	top: -4px;
}

table
{
}

	tr
	{
	}
	
		td
		{
		}
		
ul
{
	margin: 0px 0px 15px 0px;
	font-family: Arial, sans-serif;
	font-size: 1em;
	line-height: 1.4em;
}

	li
	{
		margin: 0px 0px 0px 30px;
		list-style-type: circle;
	}

.unknown_block
{
	background: red;
	color: white;
	text-align: center;
	padding: 30px 0px 30px 0px;
	margin: 0px 0px 0px 0px;
	display: block;
}

#background_mousetrap
{
	position: fixed;
	background: rgba(255,255,255,0.1);
	width: 100vw;
	height: 100vh;
	z-index: 5;
	display: none;
}

.text_red
{
	color: red;
}

/*******************************************************************
	2. GRID
*******************************************************************/

[class^='column']
{
	width: 100%;
	clear: both;
	margin: 0px 0px 8px 0px;
}

@media screen and (min-width : 768px) {

	[class^='column']
	{
		clear: none;
		float: left;
	}
	
	.column_20
	{
		width: 20%;
	}
	
	.column_25
	{
		width: 25%;
	}
	
	.column_30
	{
		width: 30%;
	}

	.column_33
	{
		width: 33.33%;
	}
	
	.column_50
	{
		width: 50%;
	}

	.column_66
	{
		width: 66.66%;
	}
	
	.column_70
	{
		width: 70%;
	}
	
	.column_75
	{
		width: 75%;
	}
	
	.column_80
	{
		width: 80%;
	}

	.column_100
	{
		width: 100%;
	}
}

/*******************************************************************
	4. HEADLINE UND MENUE
*******************************************************************/

#container_headline
{}

	#wrap_headline
	{}
		
		#container_contextmenu
		{}
		
			.list_contextmenu
			{}
			
				.item_contextmenu
				{
					list-style-type: none;
				}
				
				.item_contextmenu:hover
				{}
				
					.item_contextmenu > a:link,
					.item_contextmenu > a:visited
					{}
					
					.item_contextmenu > a:hover,
					.item_contextmenu > a:active,
					.item_contextmenu > a:focus
					{}
			
					.list_context_submenu
					{}
					
						.item_context_submenu
						{}
		
		#logo
		{}
		
		.link_logo:link
		{}
		
		#container_menu
		{}
		
			#wrap_menu
			{}
		
				#list_menu
				{}
				
					#list_menu li
					{	
						margin: 0px;
						list-style: none;
					}
					
					#list_menu ul
					{}
					
					#list_menu ul:hover
					{}
					
					#list_menu > li
					{
					}
					
					#list_menu li:hover > ul,
					#list_menu li.sfHover > ul
					{}
					
					#list_menu a
					{}
					
						#list_menu a > i
						{}
					
					#list_menu > li > a:hover
					{}
					
					#list_menu > li.menu_active,
					#list_menu > li.menu_active > a:link
					{}
					
					#list_menu > li.menu_active > a:hover
					{}
						.menu_icon
						{}
					
					#list_menu ul ul
					{}
					
						#list_menu > li > ul
						{}
						
							#list_menu > li > ul > li > a:link
							{}
						
							#list_menu > li > ul > li > a:hover
							{}
				
			nav:not(.mm-menu)
			{}
			
			#mobile_menu
			{}
			
			#hamburger
			{}
			
				#hamburger > a
				{}

/*******************************************************************
	4. CONTENT BLOCKS
*******************************************************************/

.container_content
{}

	.wrap_content
	{}

/*******************************************************************
	4.1 HERO IMAGE
*******************************************************************/

.container_hero
{
	
}

	.container_hero video
	{
		
	}

.superhero
{
	
}

	#wrap_hero
	{
		
	}
	
		#slogan_hero
		{
			
		}
		
			.preline_hero
			{
				
			}
		
			.headline_hero
			{
				
			}
			
			.cta_button_hero:link,
			.cta_button_hero:visited,
			.cta_button_hero:hover,
			.cta_button_hero:active,
			.cta_button_hero:active
			{
			}

/*******************************************************************
	4.2 MINI HERO
*******************************************************************/

.container_minihero
{
	
}

/*******************************************************************
	4.3 TEXT
*******************************************************************/

.block_text
{}

	.wrap_text
	{}
	
		.wrap_text > ul, ol
		{
		}
		
			.wrap_text > ul li,
			.wrap_text > ol li
			{
			}
			
			.wrap_text > ul > li > ul,
			.wrap_text > ol > li > ol
			{
			}
			
			.wrap_text > ul > li > ul > li,
			.wrap_text > ol > li > ol > li
			{
			}

/*******************************************************************
	4.4 BILD-TEXT
*******************************************************************/

.block_textimage {
	display: flex;
	align-items: center; /* Zentriert den kleineren Block vertikal */
	width: 100%;
	background: white;
}
	
	/* Basis-Stile für Bild- und Text-Container */
	.wrap_image_right,
	.wrap_image_left,
	.wrap_text_left,
	.wrap_text_right {
		flex: 1; /* Standardmäßig gleiche Breite */
		min-height: 100px;
		display: flex;
		justify-content: center;
	}
	
	.wrap_text_left,
	.wrap_text_right {
		flex-direction: column;
		align-items: flex-start; /* bewirkt, dass die Kind-Elemente nicht automatisch die volle Breite einnehmen */
		display: flex;
		justify-content: center;
	}
	
		.wrap_text_left p,
		.wrap_text_right p
		{
			width: 100%;
		}

	
	/* Video-Container */
	.wrap_image_right,
	.wrap_image_left {
		position: relative;
		overflow: hidden;
		align-items: center; /* Falls Video kleiner als Container ist */
	}
	
	/* Das Video selbst */
	.wrap_image_right video,
	.wrap_image_left video {
		width: 100%; /* Volle Breite des Containers */
		height: 100%; /* Volle Höhe des Containers */
		object-fit: cover; /* Sorgt dafür, dass das Video nicht verzerrt wird */
	}
	
	/* Für eingebundene Bilder */
	.wrap_image_right img,
	.wrap_image_left img {
		width: 100%;   /* Volle Breite des Containers */
		height: 100%;  /* Volle Höhe des Containers */
		object-fit: cover; /* Verhindert Verzerrungen, ähnlich wie beim Video */
	}
	
	/* Standardmäßige Reihenfolge für Bild/Text */
	.wrap_image_right {
		order: 1;
	}
	
	.wrap_text_left {
		order: 2;
	}
	
	.wrap_image_left {
		order: 2;
	}
	
	.wrap_text_right {
		order: 1;
	}
	
	/* Flexibilität für Breitenanpassung */
	.block_textimage .wrap_image_right,
	.block_textimage .wrap_image_left,
	.block_textimage .wrap_text_left,
	.block_textimage .wrap_text_right {
		flex-basis: 50%;
	}
	
	/* Dynamische Breitenveränderung */
	.block_textimage[data-size="60-40"] .wrap_image_right,
	.block_textimage[data-size="60-40"] .wrap_image_left {
		flex-basis: 60%;
	}
	
	.block_textimage[data-size="60-40"] .wrap_text_left,
	.block_textimage[data-size="60-40"] .wrap_text_right {
		flex-basis: 40%;
	}

/*******************************************************************
	4.5 FEATURE
*******************************************************************/

.block_feature
{}

	.wrap_feature
	{}
		.list_feature
		{}
		
			.item_feature
			{
				margin: 0px;
				list-style-type: none;
			}
			
				.feature_image
				{}
				
				.feature_text
				{}
				
				.feature_link:link, .feature_link:visited, .feature_link:hover, .feature_link:focus, .feature_link:active
				{}

/*******************************************************************
	4.6 BILD-FEATURE
*******************************************************************/

.block_image-feature
{}

	.wrap_image-feature
	{
	}
	
		ul.list_image-feature
		{
		}
		
		li.item_image-feature:nth-child(1), li:nth-child(4) 
		{
		}
		
		li.item_image-feature:nth-child(2), li:nth-child(3)
		{
		}
		
		.item_image-feature img
		{
		}

/*******************************************************************
	4.7 GALERIE
*******************************************************************/

.block_gallery,
.block_gallery_alt
{}

	.wrap_gallery
	{}
	
		.list_gallery
		{}
		
			.item_gallery
			{
				list-style-type: none;
			}

/*******************************************************************
	4.8 GRID-GALERIE
*******************************************************************/

.block_grid_gallery
{}

	.wrap_grid_gallery
	{
	}
	
		.wrap_grid_gallery > #grid > li > a > img
		{
		}

/*******************************************************************
	4.9 MITARBEITER
*******************************************************************/

.block_team
{}

	.wrap_team
	{}
		
		.list_team
		{}
	
			.item_team
			{
				list-style-type: none;
			}
			
				.team_image
				{}
					
				.team_headline
				{}
				
				.team_position
				{}

/*******************************************************************
	4.10 ZITAT
*******************************************************************/

.block_quote
{}

	.wrap_quote
	{}
	
		.wrap_quote > h1,
		.wrap_quote > h2
		{}
		
		.wrap_quote > p
		{}

/*******************************************************************
	4.11 KONTAKTFORMULAR
*******************************************************************/

.block_contact
{}

	.wrap_contact
	{}
	
		::-webkit-input-placeholder
		{
		}
		
		:-moz-placeholder
		{
		}
		
		::-moz-placeholder
		{
		}
		
		:-ms-input-placeholder
		{
		}
		
		.container_support,
		#container_danke
		{
		}
		
		#wrap_support_userdata,
		#wrap_support_select
		{
		}
		
		#wrap_support_select
		{
		}
		
		.wrap_support_message
		{
		}
		
		.container_checkoutbuttons
		{
		}
			
		input[type='submit'],
		button
		{
		}
		
		input[type='submit']:hover,
		button:hover
		{
		}
		
			.checkout_button_forward
			{
			}
		
			.checkout_button_forward:hover
			{
			}
		
			.checkout_button_backward
			{
			}
		
			.checkout_button_backward:hover
			{
			}
			
		input[type='text'],
		select
		{
		}
		
			.field
			{
			}
			
				.mobile_input
				{
				}
			
			.input_label
			{
			}
			
			.checkbox_label
			{
			}
			
			label
			{
			}
			
			input:invalid + label
			{
			}
			
			input:valid + label
			{
			}
			
			input:focus
			{
			}
			
			input:focus + label
			{
			}
			
		textarea
		{
		}
		
		.headline_content
		{
		}

/*******************************************************************
	4.12 STANDORT
*******************************************************************/

.block_map
{}

	.wrap_map
	{}
	
		#mapid
		{}

/*******************************************************************
	4.13 POPUP / INTRO
*******************************************************************/

#popup_background,
#intro_background
{
	
}

	#intro_background
	{
		
	}
	
	#popup_container,
	#intro_container
	{
		
	}
	
		.popup_image,
		.intro_image
		{
			
		}
		
		.popup_close
		{
			
		}
		
			.popup_close > i
			{
				
			}
			
		.popup_link
		{
			
		}
		
		.indicator_container
		{
			
		}
		
		.indicator_bar {
			background: red;
			height: 5px;
			left: 0;
			border-radius: 5px;
			animation: progressAnimationStrike 4s;
		}
		
		@keyframes progressAnimationStrike {
			from { width: 0 }
			to { width: 100% }
		}

/*******************************************************************
	4.14 YOUTUBE
*******************************************************************/

.block_youtube
{}

	.wrap_youtube
	{
	}

/*******************************************************************
	4.15 BLOGEINTRAG
*******************************************************************/

.block_blog
{}

	.wrap_blog
	{
	}
	
		.blog_link:link,
		.blog_link:visited
		{
		}
		
		.blog_link:hover,
		.blog_link:active,
		.blog_link:focus
		{
		}
		
		.blog_image
		{
		}
		
			.blog_image > img
			{
			}
		
		.blog_text
		{
		}

/*******************************************************************
	4.16 FLOATING BUTTON
*******************************************************************/

.container_floatingbutton
{
	
}

	.wrap_floatingbutton
	{
		
	}
		
		.wrap_floatingbutton > a:link,
		.wrap_floatingbutton > a:visited
		{
			
		}
		
		.wrap_floatingbutton > a:link:last-child
		{
			
		}
		
		.wrap_floatingbutton > a:hover,
		.wrap_floatingbutton > a:active,
		.wrap_floatingbutton > a:focus
		{
			
		}

/*******************************************************************
	4.18 PRODUKT
*******************************************************************/

.block_product
{}

	.wrap_product
	{
	}
	
		.list_product
		{}
		
			.item_product
			{
				list-style: none;
			}
			
				.product_image
				{
				}
				
				.item_product > h1
				{
				}
				
				.item_product > h2
				{
				}
				
				.item_product span
				{
				}

/*******************************************************************
	4.19 TESTEMONIAL
*******************************************************************/

.block_testimonial
{}

	.wrap_testimonial
	{
	}
	
		.list_testimonial
		{
		}
		
			.testimonial_navigation
			{
			}
			
				#testimonial_previous,
				#testimonial_next
				{
				}
			
				#testimonial_previous
				{
				}
				
				#testimonial_next
				{
				}
		
			.item_testimonial
			{
			}
			
				.testimonial_image
				{
					list-style-type: none;
				}

/*******************************************************************
	4.20 TEXT-LISTE
*******************************************************************/

/*******************************************************************
	4.21 DATEI-LISTE
*******************************************************************/

.block_filelist
{}

	.wrap_filelist
	{}
	
		.list_files
		{}
		
		.item_files
		{
		}

/*******************************************************************
	4.22 LINK-LISTE
*******************************************************************/

/* ist im Contentblock-Parser noch auskommentiert */

/*******************************************************************
	4.23 EVENTS
*******************************************************************/

/* ist im Contentblock-Parser noch auskommentiert */

/*******************************************************************
	4.24 EVENT-LISTE
*******************************************************************/

/* ist im Contentblock-Parser noch auskommentiert */

/*******************************************************************
	4.25 LOGIN
*******************************************************************/

/* ist im Contentblock-Parser noch auskommentiert */

/*******************************************************************
	4.26 LINK-GALERIE
*******************************************************************/

.block_link_gallery
{}

	.wrap_link_gallery
	{}
	
		.list_link_gallery
		{}
		
			.item_link_gallery
			{
				list-style-type: none;
			}
			
				.item_link_gallery img
				{}
			
			.item_link_gallery:nth-child(2n)
			{}

/*******************************************************************
	4.27 IIQ-CHECK
*******************************************************************/

/*******************************************************************
	4.28 COOKIE-BANNER
*******************************************************************/

.block_cookies
{}

	.wrap_cookies
	{}

/*******************************************************************
	4.29 MIETPROZESS
*******************************************************************/

.container_rental
{}

	.wrap_rental
	{}
	
		.list_rental_steps
		{
			
		}
	
			.item_rentalstep,
			.item_eventstep
			{
				margin: 0px;
				list-style-type: none;
			}
			
			.item_eventstep
			{
			}
			
			.rentalstep_active
			{
				
			}
			
				.item_rentalstep > .rental_stepcount
				{
					
				}
			
				.rentalstep_active > .rental_stepcount
				{
					
				}
				
				.rental_text
				{
					
				}
		
		#rental_filters
		{}
		
			.rental_filter_button
			{}
			
			.rental_filter_button.active 
			{}
			
			.rental_filter_button:hover 
			{}
		
		#rental_step
		{}
		
			.columns_products
			{}
			
				.rentalitem_gallery_list {
					display: flex;
					flex-wrap: wrap; /* Elemente umbrechen, damit sie untereinander erscheinen */
					gap: 1.5%; /* Abstand zwischen den Elementen */
					padding: 0;
					margin: 0;
					list-style: none;
				}
				
				.rentalitem_gallery_item {
					list-style: none;
					padding: 0;
					margin: 0;
				}
				
				/* Erstes Bild nimmt 100% Breite */
				.rentalitem_gallery_item:first-child {
					width: 100%;
				}
				
				/* Alle weiteren Bilder nehmen 33.333% Breite ein */
				.rentalitem_gallery_item:nth-child(n+2) {
					width: calc(33.333% - 1%);
				}


					
						.products_thumbnails
						{}
			
				.columns_products img 
				{}
				
				.description_padding
				{}
				
			.rentalitem_preheadline
			{}
				
			.rentalitem_headline
			{}
			
			.rentalitem_price
			{}
			
			.rentalitem_checkbox
			{}
			
			.rental_step3_checkbox
			{}
			
			.rental_submit,
			.rental_cancel
			{
				width: 50%;
				border-radius: 0px;
			}
			
				.cancel_link
				{
					color: white !important;
					text-decoration: none !important;
					width: 100%;
					display:inline-block;
					position: relative;
					top: -10px;
					padding: 15px 0px 15px 0px;
				}
			
			.rental_submit
			{
				border-top-right-radius: 5px;
				border-bottom-right-radius: 5px; 
			}
			
			.rental_cancel
			{
				border-top-left-radius: 5px;
				border-bottom-left-radius: 5px;
				background: rgb(154, 154, 154);
			}
		
		#rental_cart
		{}
		
		.standalone
		{}

/*******************************************************************
	4.30 CHAT
*******************************************************************/

#icon_chat
	{
		
	}
	
		#icon_chat > i
		{
			
		}
		
	#container_chat
	{
		
	}
	
		#close_chat > i
		{
			
		}
		
		#content_chat
		{
			
		}
		
			#list_chat
			{
				
			}
			
				.item_chat_right,
				.item_chat_left
				{
					list-style-type: none;
				}
				
				.item_chat_left
				{
					
				}
				
					.chat_timestamp
					{
						
					}
			
			#chat_message
			{
				
			}

/*******************************************************************
	4.31 EVENT MODULE
*******************************************************************/

.block_module 
{
	width: 100%;
	margin: 0 auto; /* Zentriert den Container */
}

	.wrap_module 
	{
		width: 100%;
	}

		.list_module
		{
			display: flex;
			flex-wrap: wrap; /* Umbruch bei Platzmangel */
			gap: 20px; /* Abstand zwischen den Boxen */
			padding-left: 0; /* Entfernt Einrückungen */
			list-style-type: none; /* Entfernt Standard-Listenelemente */
			margin: 0px;		}

			.item_module
			{
				flex: 1 1 calc(50% - 20px); /* Zwei Boxen nebeneinander (50% minus Abstand) */
				box-sizing: border-box;
				padding: 20px;
				border: 1px solid #ccc;
				background-color: #f9f9f9;
				margin: 0;
				transition: all 0.3s ease; 
				list-style-type: none; /
			}

			.module_content
			{
				display: none; /* Standardmäßig ausgeblendet */
				margin-top: 10px;
			}
	
	
			
/*******************************************************************
	4.32 EVENTS
*******************************************************************/
			
			.table_events
			{
			}
			
				.table_events tr:nth-child(odd)
				{
				}
				
					.table_events td
					{
					}
				
					.table_events td:nth-child(1)
					{
					}
				
					.table_events td:nth-child(3),
					.table_events td:nth-child(5)
					{
					}

/*******************************************************************
	4.33 EVENT BUCHUNG
*******************************************************************/

.container_booking
{
}

	.wrap_booking
	{
	}
	
		.booking_subline
		{
		}
		
		.booking_headline
		{
		}
		
		.wrap_booking > ul
		{
		}
		
			.wrap_booking > ul li,
			.wrap_booking > ol li
			{
			}
		
		
		.booking_price
		{
		}
		
			.booking_price > b
			{
			}
		
		.booking_form
		{
			
		}
		
			#container_shippingaddress
			{
			}
		
			.wrap_inputs
			{
			}
			
				.booking_label
				{
				}
				
				.wrap_inputs > .column_50:nth-child(1)
				{
				}
				
				.wrap_inputs > .column_50:nth-child(2)
				{
				}
				
					.input_select_booking,
					.input_text_booking
					{
					}
					
					.input_submit_booking
					{
					}
					
			.wrap_confirmations
			{
			}
						
/*******************************************************************
	4.34 PAYWALL
*******************************************************************/

#list_paywall
{}

	.item_paywall
	{}
	
	.item_paywall:last-child
	{}
	
		.button_payment
		{}
					
/*******************************************************************
	4.35 NEWSLETTER
*******************************************************************/

.block_newsletter
{
	position: relative;
	background: white;
	width: 100%;
	padding: 100px 0px 100px 0px;
}

	.wrap_newletter
	{
		position: relative;
		text-align: center;
		color: white;
		margin: auto auto;
		width: 40%;
		background: #f4f3e9;
		padding: 50px 100px 50px 100px;
	}
	
		.wrap_newletter h1
		{
			color: black;
			text-align: center;
		}
		
		.wrap_newletter p
		{
			color: black;
			text-align: left;
		}
		
		.newletter_columns
		{
			width: 100%;
			background: red;
			overflow: hidden;
		}
		
		

/*******************************************************************
	5. FOOTER
*******************************************************************/

#container_footer
{
}

	#wrap_footer
	{
	}
	
		#footer_socialmedia
		{
		}
		
			.footer_sociallink:link, .footer_sociallink:visited
			{
			}
			
			.footer_sociallink:hover, .footer_sociallink:active, .footer_sociallink:focus
			{
			}
			
		#footer_copyright
		{
		}
			
			.link_pixel:link, .link_pixel:visited
			{
			}
			
			.link_pixel:hover, .link_pixel:active, .link_pixel:focus
			{
			}
			
			.link_copyright:link, .link_copyright:visited
			{
			}
			
			.link_copyright:hover, .link_copyright:active, .link_copyright:focus
			{
			}

/*******************************************************************
	6. WYSIWYG ELEMENTE
*******************************************************************/

.wysiwyg_button:link,
.wysiwyg_button:visited,
.wysiwyg_button:hover,
.wysiwyg_button:active,
.wysiwyg_button:focus
{
}

.wysiwyg_button:hover,
.wysiwyg_button:active,
.wysiwyg_button:focus
{
}

.wysiwyg_button_feature:link,
.wysiwyg_button_feature:visited,
.wysiwyg_button_feature:hover,
.wysiwyg_button_feature:active,
.wysiwyg_button_feature:focus
{
}

.wysiwyg_image_feature
{
}

/*******************************************************************
	7. DATE- / TIMEPICKER
*******************************************************************/

.datepicker,
.timepicker
{}

	.picker__box
	{}
	
		.picker__list > li
		{
			list-style: none;
		}

/*******************************************************************
	8. SLIDER
*******************************************************************/

#image-carousel
{}

.splide__slide img
{}

/*******************************************************************
	9. SPECIAL OR UNKNOWN ELEMENTS
*******************************************************************/

.input_warning
{}

.checkbox_label_warning
{}