@import "animations.css";
@import url("animations.css");

.full-width-background
{
	padding-top: 16px;
	padding-bottom: 16px;
}

/* Animation */
.overflow-img.css-animation
{	
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
	
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.overflow-img.animate-in
{
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
	
	opacity: 1;
}

.overflow-img
{
	width: 100%;
	margin: 0 auto 20px auto;

	position: relative;
	z-index: -1;
	
	background-position:center;
	background-repeat: no-repeat;
}

.overflow-img,
.overflow-gallery
{

	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;

	min-width: 1024px;
	
	background-size: auto;
	/*background-size: 100%;*/
	overflow: hidden;
	background-position: center;
	z-index: 10;	
}

.legend
{
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
	margin: 0 auto;
	display: block;
	opacity: 1;
	
	background-repeat: no-repeat;
	background-position: center;
}


.set-script-opacity
{
	opacity:0;
}



/* Product Text */
.producttext,
.pageheadline
{
	width: 1024px;
	margin-left: auto;
	margin-right: auto;

}

/* Product Headline */
.pageheadline
{
	padding-bottom: 20px;
	text-align: center;
	font-size: 2.3em;
	width:100%;
}

/* breite content bereich = 1024 1/12 = 6.8% Offset = 1.5%*/

.row-wrapper
{
	clear:both;
	width: 950px;
	height: auto;
	margin: 10px auto 20px auto;
	padding: 0; 
}

/* Animation*/

.faded-in,
.legend.faded-in
{
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	opacity: 1;
}

.animated
{
	-webkit-transition: all 0.3s;

	transition: all 0.3s;
	transform-style: preserve-3d;
	transform-origin: 50% 100%;
}

/* Tooltip Help Icon */
.tooltip_help_icon
{
	position: relative;
	display:inline-block;

	width:20px;
	height:20px;
	border-radius: 10px;
	
	background-color: rgba(220,230,255,1.0);
	border: rgba(0,0,0,0.25) solid 1px;
	
	color: rgba(0,0,0,0.7);
	font-size: 14px;
	vertical-align: middle;
	line-height: 20px;
	text-align: center;
	
	font-weight: bold;
}

.tooltip_help_icon:hover
{
	-webkit-transition:box-shadow 0.5s;
    transition:box-shadow 0.5s;
   
   -moz-box-shadow:    1px 1px 4px -1px rgba(0,0,0,0.75);
   -webkit-box-shadow: 1px 1px 4px -1px rgba(0,0,0,0.75);
   box-shadow:         1px 1px 4px -1px rgba(0,0,0,0.75);
}

.tooltip_help_icon_bubble
{
	-webkit-transition: all 0.25s ease-in;
	transition: all 0.25s ease-in;
	
    position: absolute;
	visibility:hidden;
	opacity:0;
	
	width:216px;
	left: -209px;
	bottom: 200%;

	font-weight: normal;
	line-height: 14px;
	font-size: 13px;
	color: rgba(0,0,0,0.5);

	border-radius: 6px;
	background: #ffffff;
	border: 1px solid #cfcfcf;
	
	-moz-box-shadow:    1px 1px 5px -1px rgba(0,0,0,0.5);
	-webkit-box-shadow: 1px 1px 5px -1px rgba(0,0,0,0.5);
	box-shadow:         1px 1px 5px -1px rgba(0,0,0,0.5);
	
	padding: 12px;
}

.tooltip_help_icon:hover .tooltip_help_icon_bubble
{
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	
	visibility:visible;
	opacity:1;
	bottom:130%;
}

.tooltip_help_icon_bubble:after, .tooltip_help_icon_bubble:before
{
	top: 100%;
	left: 90%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.tooltip_help_icon_bubble:after
{
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #ffffff;
	border-width: 10px;
	margin-left: -10px;
}

.tooltip_help_icon_bubble:before
{
	border-color: rgba(207, 207, 207, 0);
	border-top-color: #cfcfcf;
	border-width: 11px;
	margin-left: -11px;
}