/* General */
h2 {font-size:2.0rem;}

.l-EqualHeightContent, .l-m-EqualHeightContent{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
}

@media screen and (max-width:748px) {
	.l-EqualHeightContent {
		display: block;
	}
}

@media screen and (max-width:480px) {
	.l-m-EqualHeightContent{
		display: block;
	}
}

/* inline-block center */
.TextCenter{
	text-align: center;
}
/* Colors */
.Green{
	color: #06a14e; /* rgba(6, 161, 78, 1) */
}

.GreenOnHOver:hover{
	color: #06a14e;
	transition:color 0.20s linear 0s;
	-o-transition:color 0.20s linear 0s;
	-ms-transition:color 0.20s linear 0s;
	-moz-transition:color 0.20s linear 0s;
	-webkit-transition:color 0.20s linear 0s;
}

.Violet{
	color: #92278f; /* rgba(146, 39, 143, 1) */
}

.VioletOnHOver:hover{
	color: #92278f;
	transition:color 0.20s linear 0s;
	-o-transition:color 0.20s linear 0s;
	-ms-transition:color 0.20s linear 0s;
	-moz-transition:color 0.20s linear 0s;
	-webkit-transition:color 0.20s linear 0s;
}

.Red{
	color: #FF3535; /* rgba(146, 39, 143, 1) */
}

.Yellow{
	color: #FFEA00;
}

.YellowOnHOver:hover{
	color: #FFEA00;
	transition:color 0.20s linear 0s;
	-o-transition:color 0.20s linear 0s;
	-ms-transition:color 0.20s linear 0s;
	-moz-transition:color 0.20s linear 0s;
	-webkit-transition:color 0.20s linear 0s;
}

/* Links */
a, a:link, a:visited, a:hover, a:active {
	color: #92278f; /* rgba(146, 39, 143, 1) */
	font-weight:600;
}

a:hover{
	color: #06a14e; /* rgba(6, 161, 78, 1) */
}

/* Buttons */
.button.submit-btn, a.button.submit-btn, a.button.submit-btn:link, a.button.submit-btn:active, a.button.submit-btn:visited{
	background-color: #06a14e; /* rgba(6, 161, 78, 1) */
}

a.button.submit-btn:active, a.button.submit-btn:hover{
	color: #FFEA00;
}

.buttonDisabled,a.buttonDisabled {
	cursor:auto;

	display: inline-block;
	font-size: 0.85rem;
	padding: 0.825rem 1rem;
	text-align: center;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;

	border-color:#777777;
  	border-radius: 4px;
	color: #CCCCCC;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;

	background-color: #999999;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#999999), to(#777777));
	background-image: -webkit-linear-gradient(top, #999999, #777777);
	background-image: -moz-linear-gradient(top, #999999, #777777);
	background-image: -ms-linear-gradient(top, #999999, #777777);
	background-image: -o-linear-gradient(top, #999999, #777777);
	background-image: linear-gradient(to bottom, #999999, #777777);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#999999, endColorstr=#777777);

}

/* Tables */
table tr:nth-of-type(1n) td {
	border-right:1px solid #f0f0f0;
}

table tr:last-child td {
	border-bottom:1px solid #f0f0f0;
}

/* Bullet lists */
.VioletBullet li:before, .GreenBullet li:before {
	content: "";
	position:relative;
	left: -0.5rem;
	background-color: #92278f; /* rgba(146, 39, 143, 1) */

	display:inline-block;
	width:10px;
	height:10px;
}

.GreenBullet li:before {
	background-color: #06a14e; /* rgba(6, 161, 78, 1) */
}

/* Header */
header .box{
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	position:relative;
}

nav{
	background-color: #06a14e; /* rgba(6, 161, 78, 1) */
}

.top-nav{
	min-width:660px;
}

@media screen and (max-width:480px) {
	.top-nav{
		min-width:100%;
	}
}

.top-nav li, .top-nav li p{
	line-height: 1rem;
}

.top-nav li p{
	cursor: default;
	background-color:rgba(146, 39, 143, 90);
	color: #FFEA00;
}

.top-nav li a { /* Hamburger Menu Item */
	background:none repeat scroll 0 0 #06a14e; /* rgba(6, 161, 78, 1) */
	text-align:left;
	padding-left:1.25rem;
}

.top-nav li ul li a { /* Hamburger Menu SubItem */
	background-color: #06a14e; /* rgba(6, 161, 78, 1) */
	border-top-color: #333;
	padding:1.25rem;
}

.top-nav li a:hover {
	background-color:rgba(146, 39, 143, 90);
	color:  #FFEA00;
}

.top-nav .active-item a {
	background:none repeat scroll 0 0 rgba(146, 39, 143, 90);
	color: #FFEA00;
}

ul.chevron .submenu > a:after, ul.chevron .sub-submenu > a:after, ul.chevron .aside-submenu > a:after, ul.chevron .aside-sub-submenu > a:after{
	vertical-align:top;
}

.nav-text{
	padding-left: 2rem;
}

.LangMenu{
   	top:50%;
	transform: translateY(-50%);
   	position:absolute;
	right: 0;
}

.LangMenu img{
   	position:relative;
   	left:50%;
	transform: translateX(-50%);
	top: 50%;
}

/* Header Shopping Cart */
#ShoppingChartDiv{
   	position:absolute;
	right: 0;
   	top:50%;
	transform: translateY(-50%);
}


#ShoppingCartIcon{
	height:50px;
	float:left;
}

#ShoppingCartBadge {
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	height: 25px;
	width: 25px;
	background-color: #06a14e; /* rgba(6, 161, 78, 1) */
	color:#FFFFFF;
	vertical-align:middle;
	text-align:center;
	position:absolute;
	left: 40px;
	top: -10px;
	padding-top: 0.1rem;
}

@media screen and (max-width:748px) {
	#ShoppingCartBadge {
		top: -7px;
	}
}

@media screen and (max-width:480px) {
	#ShoppingCartIcon{
		height:30px;
	}

	#ShoppingCartBadge {
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
		height: 20px;
		width: 20px;

		left: 22px;
		top: -7px;

		font-size: 0.9rem;
	}
}

/* Footer */
footer .box{
	background-color: #06a14e; /* rgba(6, 161, 78, 1) */
	padding:0;
	color:White;
}

footer .CopyRight{
	padding-left:1.25rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}


.SocialIcons {
	display:list-item;
	list-style:none outside none;
	padding-right:1rem;
	padding-top: 0.1rem;
	color:White;
}

@media screen and (max-width:480px) {
	.SocialIcons {
		padding-top: 0.5rem;
	}
}

@media screen and (max-width:480px) {
	.HideSmall{
		display:none;
	}

	.ShowSmall{
		display:inline;
	}
}

/* Content P */
section p{
	text-align: justify;
}

/* Read more */
.ReadMore{
	margin-top: 0.5rem;
	text-align: right;
}

/* Gallery images */
.site-gallery {
    display: flex;
	flex-wrap: wrap;
}

.site-gallery a {
    display: inline-block;
}

.site-gallery figure {
	display:inline-block;
	margin: auto;
	margin-top: 1.0rem;
	margin-bottom: 0.5rem;
}

/* Buy Button */
a.BuyButton, a.BuyButton-l, a.BuyButton-s{
	border-color:#049239;
	border-width: 0;
	border-style: solid;

	-webkit-box-shadow: #222222 3px 3px 3px;
	-moz-box-shadow: #222222 3px 3px 3px;
	box-shadow: #222222 3px 3px 3px;

	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;

	font-size:2rem;
	padding: 0.0rem 1rem 0.25rem 1rem;
	display:inline-block;

	text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
	font-weight:bold;
	color: #FFFFFF;

 	background-color: #06C84E; background-image: -webkit-gradient(linear, left top, left bottom, from(#06C84E), to(#06784E));
 	background-image: -webkit-linear-gradient(top, #06C84E, #06784E);
 	background-image: -moz-linear-gradient(top, #06C84E, #06784E);
 	background-image: -ms-linear-gradient(top, #06C84E, #06784E);
 	background-image: -o-linear-gradient(top, #06C84E, #06784E);
 	background-image: linear-gradient(to bottom, #06C84E, #06784E);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#06C84E, endColorstr=#06784E);

  transition:color 0.30s linear 0s;
  -o-transition:color 0.30s linear 0s;
  -ms-transition:color 0.30s linear 0s;
  -moz-transition:color 0.30s linear 0s;
  -webkit-transition:color 0.30s linear 0s;
}


a.BuyButton:hover, a.BuyButton-l:hover, a.BuyButton-s:hover{
	color: #FFEA00;
}


a.BuyButton-s{
	display: none;
}

/* JQuery-UI */
.no-close .ui-dialog-titlebar-close {
  display: none;
}

/* Loading Overlay */
#LoadingOverlay {
  transform: scale(0.8);
  text-align: center;
}
.popup_visible #LoadingOverlay {
  transform: scale(1);
}

#LoadingLogo{
	position: absolute;
	top: 0;
	width: 0;
}

@media screen and (max-width:480px) {
	a.BuyButton-l{
		display: none;
	}

	a.BuyButton-s{
		display: inline-block;
	}

	.g-recaptcha {
		transform:scale(0.6);
		-webkit-transform:scale(0.6);
		-moz-transform:scale(0.6);
		transform-origin:0 0;
		-webkit-transform-origin:0 0;
		-moz-transform-origin:0 0;
	}
}

