﻿/*-----| (c) 2016 alogis ag / beat schaub |------------------------------------------------------------------------------------------------------------- */
@charset "utf-8";
/*-----| General Definitions              |------------------------------------------------------------------------------------------------------------- */
*														{ margin: 0; padding: 0; box-sizing: border-box; color: inherit; font-size: inherit; font-family: inherit; }
main													{ display: block; }
table													{ border-spacing: 0; border-collapse: collapse; border: none; }
table, td											{ vertical-align: top; }
a > img												{ border: none; outline: none; }

section > h6										{ display: none; }

.mobile												{ display: none; }
@media screen and (max-width: 640px) {
	.mobile											{ display: block; }
	.desktop											{ display: none; }
}

.w100p												{ width: 100%; }
.h100p												{ height: 100%; }
.h100vH												{ height: 100vH; overflow: hidden; }
/*-----| End General Definitions          |------------------------------------------------------------------------------------------------------------- */
/*-----| Flex-Boxes                       |------------------------------------------------------------------------------------------------------------- */
.flex_container									{ display: flex; flex-wrap: wrap; justify-content: space-between; width: 100%; padding: 15px; }
.flex_container.left								{ justify-content: flex-start; }

.flex_container.flex_container_no_padding	{ padding: 0 !important; }
.flex_container.flex_container_cms			{ padding: 0; }
.flex_box											{ margin: 0; padding: 15px; }
.flex_box.flex_box_no_padding					{ padding: 0 !important; }
.flex_box.flex_box_grow							{ flex-grow: 1; }

.flex_box.flex_box_empty						{ margin: 0 !important; padding: 0 !important; border: none !important; background: 0 !important; }
.flex_container_cms .flex_box					{ padding: 20px 20px 0 20px; }
.flex_box img										{ width: 100%; }

.flex_box_12										{ width:  12.500% }
.flex_box_16										{ width:  16.666% }
.flex_box_20										{ width:  20% }
.flex_box_33										{ width:  33.333% }
input[type="text"].flex_box_33				{ width:  32.5% }
.flex_box_60										{ width:  60% }
.flex_box_66										{ width:  65% }
input[type="text"].flex_box_66				{ width:  66.666% }
.flex_box_83										{ width:  83.333% }
.flex_box_25										{ width:  25.000% }
.flex_box_50										{ width:  50.000% }
.flex_box_75										{ width:  75.000% }
.flex_box_100										{ width: 100.000% }
@media screen and (min-width: 641px) and (max-width: 959px) {
	.flex_box_12									{ width:  25.000% }
	.flex_box_16									{ width:  33.333% }
	.flex_box_33									{ width:  50.000% }
	.flex_box_66									{ width: 100.000% }
	.flex_box_83									{ width: 100.000% }
	.flex_box_25									{ width:  50.000% }
	.flex_box_50									{ width: 100.000% }
	.flex_box_75									{ width: 105.000% }
}
@media screen and (max-width: 640px) {
	.flex_box_12									{ width:  50.000% }
	.flex_box_16									{ width:  50.000% }
	.flex_box_33									{ width: 100.000% }
	.flex_box_66									{ width: 100.000% }
	.flex_box_83									{ width: 100.000% }
	.flex_box_25									{ width: 100.000% }
	.flex_box_50									{ width: 100.000% }
	.flex_box_75									{ width: 105.000% }
}
/*-----| End Flex-Boxes                   |------------------------------------------------------------------------------------------------------------- */
/*-----| Form			                     |------------------------------------------------------------------------------------------------------------- */
.element_box										{ position: relative; padding-bottom: 10px; }
.element_box.flex_container					{ padding: 0 0 10px 0 !important; }
.element_box.flex_container > .flex_box	{ padding: 0 6px !important; }
.element_box.flex_container > label			{ line-height: 20px; font-weight: bold; font-size: 14px; color: #3c3c3c; }
.form_group											{ padding: 20px 0 10px 0; border-bottom: 3px solid #757780; }
.form_group.form_group_dark					{ padding: 20px 20px 10px 20px; background: rgba( 0,0,0,0.15 ); }

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea												{ width: 100%; height: 34px; padding: 0 6px; line-height: 32px; font-size: 16px; background: #ffffff; border: 1px solid #eeeeee; border-radius: 5px; }
textarea												{ height: 130px; }
.element_box.icon input[type="text"],
.element_box.icon input[type="password"]	{ padding: 0 6px 0 34px; }
.frmPwdShow											{ position: absolute; left: 2px; top: 2px; width: 30px; height: 30px; cursor: pointer; }
.frmPwdShow:after									{ display: block; content: "\f06e"; position: absolute; left: 0; top: 0; right: 0; bottom: 0; line-height: 30px; text-align: center; font-size: 18px; font-family: "FontAwesome"; color: #7c7c7c; }
input[type="text"] + .frmPwdShow:after		{ content: "\f070"; }


input[type="button"],
input[type="submit"]								{ width: 100%; height: 34px; padding: 0 6px; line-height: 34px; font-size: 16px; color: #ffffff; background: #757780; border: none; border-radius: 5px; cursor: pointer; }
input[type="button"]:hover,
input[type="submit"]:hover						{ background: #d75152; }

.msg_box												{ display: none; position: relative; padding: 5px 20px; margin: 0 0 20px 0; border-style: solid; border-width: 1px 1px 1px 20px; }
.msg_box:after										{ display: block; position: absolute; left: -20px; top: 50%; width: 20px; height: 20px; margin: -10px 0 0 0; line-height: 20px; text-align: center; font-size: 20px; color: #ffffff; font-family: "FontAwesome"; }
.msg_box.msg_box_show							{ display: block; }
.msg_box_info										{ border-color: #757780; background: #F0F8FE; }
.msg_box_info:after								{ content: "\f129"; }
.msg_box_error										{ border-color: #950000; background: #f00000; color: #ffffff; }
.msg_box_error:after								{ content: "\f12a"; }
.msg_box_success									{ border-color: #45CD4E; background: #C5F8C8; }
.msg_box_success:after							{ content: "\f00c"; }


input[type="radio"],
input[type="checkbox"]							{ display: none; }
label													{ display: block; cursor: pointer; }

.switch												{ display: block; margin: 0 0 5px 0; padding: 5px 10px;
														  line-height: 24px; text-shadow: 0px -1px 0px rgba(255,255,255,.5), 0px 1px 0px rgba(0,0,0,.5);
														  background: linear-gradient(to bottom, #e0e0e0 0%,#d0d0d0 100%);
														  box-shadow: inset 5px 5px 20px rgba( 255,255,255,0.8 ), inset -5px -5px 20px rgba( 0,0,0,0.2 ), 0px 1px rgba(128,128,128,1), 0px 2px rgba(118,118,118,1), 0px 3px rgba(108,108,108,1), 0px 10px 5px -1px rgba(128,128,128,0.5);
														  border: 1px solid rgba( 0,0,0,0.2 ); border-radius: 5px; }
.switch:hover										{ margin: 2px 0 3px 0;
														  box-shadow: inset 5px 5px 20px rgba( 255,255,255,0.8 ), inset -5px -5px 20px rgba( 0,0,0,0.2 ), 0px 1px rgba(128,128,128,1), 0px 2px rgba(108,108,108,1), 0px 4px 2px -1px rgba(128,128,128,0.5); }
.current .switch									{ margin: 2px 0 3px 0;
														  background: linear-gradient(to bottom, #c0c0c0 0%,#a0a0a0 100%);
														  box-shadow: inset 5px 5px 20px rgba( 255,255,255,0.6 ), inset -5px -5px 20px rgba( 0,0,0,0.2 ), 0px 1px rgba(128,128,128,1), 0px 2px rgba(108,108,108,1), 0px 4px 2px -1px rgba(128,128,128,0.5); }
input:checked + .switch							{ margin: 3px 0 2px 0;
														  /*background: linear-gradient(to bottom, #00ff3e 0%,#39ff14 100%);*/
														  background: #d75152;
														  box-shadow: inset 5px 5px 20px rgba( 255,255,255,0.2 ), inset -5px -5px 20px rgba( 0,0,0,0.2 ), 0px 4px 2px -1px rgba(128,128,128,0.5);text-shadow: 0px -1px 0px rgba(255,255,255,.2), 0px 1px 0px rgba(0,0,0,.5); }



.switch.switch-eme								{ background: #8FC2FB; }
input:checked + .switch.switch-eme			{ background: #62ABFC; }
.switch.switch-terra								{ background: #55FCAC }
input:checked + .switch.switch-terra		{ background: #29FC97; }

label.tick,
label.icon											{ position: relative; width: 24px; height: 24px; font-size: 18px; }
label.tick:before									{ content: ""; position: absolute; left: 3px; top: 3px; right: 3px; bottom: 3px; border: 2px solid #dddddd; border-radius: 3px; background: #ffffff; }
label.tick:after									{ display: none; content: "\f00c"; position: absolute; left: 3px; top: 3px; right: 3px; bottom: 3px; font-family: "FontAwesome"; font-size: 14px; text-align: center; line-height: 18px; }
label > label.tick								{ float: left; margin-right: 5px; }
input:checked + label.tick:after				{ display: block; }
label.icon i										{ display: block; position: absolute; left: 0; top: 0; right: 0; bottom: 0; text-align: center; line-height: 24px; color: #757780; }
label.icon:hover i								{ color: #444444; }
input:checked + label.icon i					{ color: #000000; }

.button												{ display: block; position: relative; background: linear-gradient(to bottom, #e0e0e0 0%,#d0d0d0 100%); box-shadow: inset 5px 5px 20px rgba( 255,255,255,0.8 ), inset -5px -5px 20px rgba( 0,0,0,0.2 ); border: 1px solid rgba( 0,0,0,0.2 ); border-radius: 3px; }
.button:hover										{ background: linear-gradient(to bottom, #c0c0c0 0%,#a0a0a0 100%); box-shadow: inset 5px 5px 20px rgba( 255,255,255,0.6 ), inset -5px -5px 20px rgba( 0,0,0,0.2 ); cursor: pointer; }
.button > i											{ display: block; position: absolute; left: 0; top: 0; right: 0; bottom: 0; text-align: center; line-height: inherit; }
.button.icon										{ width: 48px; height: 34px; line-height: 32px; }
.button.text										{ display: inline-block; width: auto; height: 34px; padding: 0 15px; line-height: 32px; }
.button.text i										{ font-size: 20px; }


input[type="file"]								{ position: absolute; left: -100000px; top: -100000px; }

input.radio + label								{ position: relative; display: block; padding: 0 0 0 20px; color: #ffffff; }
input.radio + label:before						{ display: block; content: ""; position: absolute; left: 0; top: 50%; width: 16px; height: 16px; margin: -8px 0 0 0; border-radius: 50%; background: #ffffff; }
input.radio + label:after						{ display: none; content: ""; position: absolute; left: 2px; top: 50%; width: 12px; height: 12px; margin: -6px 0 0 0; border-radius: 50%; background: #d75152; }
input.radio:checked + label:after			{ display: block; }
/*-----| End Form		                     |------------------------------------------------------------------------------------------------------------- */
/*-----| SHADOWBOX	                     |------------------------------------------------------------------------------------------------------------- */
body.cmsShadow										{ overflow: hidden; }
#cmsShadow											{ display: none; position: fixed; z-index: 100000000; left: 0; top: 0; right: 0; bottom: 0; background: rgba( 0,0,0,0.6 ); }
body.cmsShadow #cmsShadow						{ display: block; }
#cmsShadowContainer								{ position: relative; width: 300px; margin: 10% auto; }
#cmsShadowClose									{ position: absolute; z-index: 1; right: 0; top: 0; width: 36px; height: 36px; cursor: pointer; }
#cmsShadowClose:hover							{ background: #f00000; }
#cmsShadowClose:after							{ display: block; content: "\f00d"; position: absolute; left: 0; top: 0; right: 0; bottom: 0; line-height: 36px; text-align: center; color: #ffffff; font-size: 18px; font-weight: 300; font-family: "FontAwesome"; }
#cmsShadowHeader									{ padding: 0 46px 0 20px; height: 36px; background: #2c2c2c; line-height: 36px; color: #ffffff; }
#cmsShadowBody										{ padding: 20px; background: #ffffff; }

/*-----| End SHADOWBOX							|------------------------------------------------------------------------------------------------------------- */






.bwiseGallery>div>a								{ position: relative; }
.gapLegend											{ display: none; position: absolute; left: 0; bottom: 0; right: 0; padding: 20px; background: rgba( 0,0,0,0.7 ); color: #ffffff; }
.act .gapLegend									{ display: block; }
.cms_img												{ line-height: 1px; }
.cms_legend											{ font-style: italic; font-size: 0.9em; line-height: 1.5; }