﻿/*-----| (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; }
table													{ border-spacing: 0; border-collapse: collapse; border: none; }
table, td											{ border-box; vertical-align: top; }
a > img												{ border: none; outline: none; }

section > h6										{ display: none; }

.mobile												{ display: none !important; }
@media screen and (max-width: 640px) {
	.mobile											{ display: block !important; }
	.desktop											{ display: none; }
}
/*-----| End General Definitions          |------------------------------------------------------------------------------------------------------------- */
/*-----| Flex-Boxes                       |------------------------------------------------------------------------------------------------------------- */
.flex_container									{ display: flex; flex-wrap: wrap; justify-content: space-between; width: 100%; max-width: 1220px; padding: 0 10px; }
.flex_container.flex_container_no_padding	{ padding: 0; }
.flex_container.flex_container_no_padding > .flex_box	{ padding: 0; }
/*.flex_container.flex_container_cms			{ padding: 0; }*/
.flex_box											{ padding: 10px; }
.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_spacer										{ margin: 20px; height: 3px; background: #d1d1d1; }
hr														{ margin: 10px 0; height: 3px; background: #d1d1d1; border: none; outline: none; }

.flex_box_12										{ width:  12.500% }
.flex_box_16										{ width:  16.666% }
.flex_box_33										{ width:  33.333% }
.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:  25.000% }
	.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% }
}

.w100p												{ width: 100%; }
/*-----| End Flex-Boxes                   |------------------------------------------------------------------------------------------------------------- */
/*-----| FORM		                     	|------------------------------------------------------------------------------------------------------------- */
.cms .fTable td									{ padding: 5px 0; line-height: 1px; font-size: inherit; }
.cms .fTable td.desktop,
.cms .fTable td.fTable_label					{ padding: 5px 15px 5px 0; line-height: 40px; }

.cms select,
.cms textarea,
.cms input											{ height: 40px; line-height: 28px; padding: 5px; background: none; border-radius: 0; box-shadow: none; font-family: inherit; font-size: 16px; border: 2px solid #d1d1d1; }
.cms input[type="text"]							{ background: #ffffff; }
.cms textarea										{ height: 194px; background: #ffffff; }

.cms button,
.cms .button,
.cms input[type="submit"],
.cms input[type="button"]						{ border-color: #0092cf; background: #0092cf; font-size: 16px !important; }
.cms button:hover,
.cms .button:hover,
.cms input[type="submit"]:hover,
.cms input[type="button"]:hover				{ border-color: #005276; background: #005276; }

/* --------------- Radio & Checkboxes ------------------------------------------------------------------------------------------------------------------------------- */
.cms input[type="radio"],
.cms input[type="checkbox"]											{ display: none; }
.cms input[type="radio"] + label,
.cms input[type="checkbox"] + label									{ display: block; position: relative; width: 100%; padding: 5px 0px 5px 30px; font-family: inherit; font-size: inherit; line-height: 30px; cursor: pointer; }
.cms input[type="radio"]:disabled + label,
.cms input[type="checkbox"]:disabled + label						{ color: #969696; text-decoration: line-through; cursor: default; }

.cms input[type="checkbox"] + label:before,
.cms input[type="radio"] + label:before							{ box-sizing: border-box; content: ''; position: absolute; display: block; left: 0px; top: 7px; width: 24px; height: 24px; text-align: center; background: #f8f8f8; border: 1px solid #aaaaaa; }
.cms input[type="checkbox"] + label:before						{ border-radius: 3px; }
.cms input[type="radio"] + label:before							{ border-radius: 100%; }
.cms input[type="checkbox"]:disabled + label:before,
.cms input[type="radio"]:disabled + label:before				{ border-color: #cccccc !important; background: transparent; box-shadow: none !important; }
.cms input[type="checkbox"] + label:hover:before,
.cms input[type="radio"] + label:hover:before					{ border-color: #666666; box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3) inset; }

.cms input[type="checkbox"] + label:after 						{ box-sizing: border-box; content: '\f00c'; position: absolute; display: none; left: 3px; top: 10px; width: 18px; height: 18px; font: 20px "FontAwesome"; line-height: 18px; text-align: center; }
.cms input[type="checkbox"]:checked + label:after				{ display: block; }
														  
.cms input[type="radio"] + label:after								{ box-sizing: border-box; content: ''; position: absolute; display: none; left: 5px; top: 12px; width: 14px; height: 14px; border-radius: 100%; background-color: #000000; }
.cms input[type="radio"]:checked + label:after					{ display: block; }

/*-----| End FORM	              				|------------------------------------------------------------------------------------------------------------- */
/*-----| SHADOWBOX              				|------------------------------------------------------------------------------------------------------------- */
#shadow												{ display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vH; background: rgba(0,0,0,0.7); z-index: 10001; }
#shadow_container									{ position: relative; width: 90vW; max-width: 800px; max-height: 86vH; margin: 7vH auto; background: #ffffff;; }
#shadow_box											{ max-height: 80vH; }

#shadow_close										{ position: absolute; right: -15px; top: -15px; width: 30px; height: 30px; border-radius: 100%; background: #d1d1d1; cursor: pointer; color: #ffffff; }
#shadow_close:after								{ display: block; content: "\f00d"; position: absolute; left: 0; top: 0; right: 0; bottom: 0; font: 20px "FontAwesome"; line-height: 30px; text-align: center;; }
#shadow_close:hover								{ background: #0092cf; }

#shadow_box .login_container					{ padding: 20px; }
#shadow_box .login_container input			{ margin-bottom: 10px; }
#shadow_box .login_container #second		{ margin: 10px -20px -20px -20px; padding: 20px; background: #e4e4e4; }
#shadow_box .login_container #second input{ margin: 0; }
#shadow_box .login_container #third			{ margin: 20px -20px -20px -20px; padding: 0 20px 20px 20px !important; background: #e4e4e4; }

#shadow_box #data_tab > tbody > tr:first-of-type td:first-of-type	{ padding: 10px 20px !important; background: #0092cf; color: #ffffff; line-height: 40px; }
#shadow_box #data_tab tr td					{ padding: 5px 10px 5px 20px !important; line-height: 40px; }
#shadow_box #data_tab > tbody > tr > td:first-of-type	{ width: auto !important; font-weight: bold; white-space: nowrap; }
#shadow_box #data_tab tr td:last-of-type	{ padding: 5px 20px 5px 10px !important; }
#shadow_box #data_tab > tbody > tr:nth-of-type(2) td	{ padding-top: 20px !important; }
#shadow_box #data_tab > tbody > tr:nth-last-of-type(2) td	{ padding-bottom: 20px !important; }
#shadow_box #data_tab > tbody > tr:last-of-type td:last-of-type,
#shadow_box #data_tab > tbody > tr:last-of-type td:first-of-type	{ padding: 20px 20px 20px 10px !important; background: #e4e4e4; }
#shadow_box #data_tab input[name="txtAdressNr"]	{ width: 75px !important; margin-left: 3px; }
/*-----| End SHADOWBOX            			|------------------------------------------------------------------------------------------------------------- */


