/* ------------------------------------------------------------------------ */
/* Mixins																	*/
/* ------------------------------------------------------------------------ */
@font-face {
	font-family: 'TeleGroteskNormal';
	src:	url('/static/gizmo/font/TeleGroteskNormal.eot');
	src:	url('/static/gizmo/font/TeleGroteskNormal.eot?#iefix') format('embedded-opentype'),
			url('/static/gizmo/font/TeleGroteskNormal.woff') format('woff'),
			url('/static/gizmo/font/TeleGroteskNormal.ttf') format('truetype');
}
@font-face {
	font-family: 'TeleIcon';
	src:	url('/static/gizmo/font/TeleIcon.eot');
	src:	url('/static/gizmo/font/TeleIcon.eot?#iefix') format('embedded-opentype'),
			url('/static/gizmo/font/TeleIcon.woff') format('woff'),
			url('/static/gizmo/font/TeleIcon.ttf') format('truetype');
}

/* ------------------------------------------------------------------------ */
/* Tags																		*/
/* ------------------------------------------------------------------------ */
*, *:before, *:after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
*:focus { outline: none; }
body, input, p {
	font-family: 'TeleGroteskNormal';
	font-size: 16px;
	color: #4b4b4b;
	margin: 0;
	padding: 0;
}
a {
	color: #0090c4;
	text-decoration: none;
}
a:hover { text-decoration: underline; }
ul {
	margin: 0;
	padding: 0 0 0 1em;
}
h1 {
	border-bottom: 1px solid #d0d0d0;
	font-size: 21px;
	font-weight: normal;
	margin: 0;
	padding: 0 0 5px;
	text-align: center;
}

/* ------------------------------------------------------------------------ */
/* Layout																	*/
/* ------------------------------------------------------------------------ */
.tbs-header {
	height: 60px;
	background: transparent url('/static/images/bg-header-web.png') scroll repeat-x 0 0;
	margin: 0 0 40px;
}
.tbs-header-content {
	position: relative;
	height: 50px;
	line-height: 50px;
	text-align: center;
}
.tbs-header-content:after {
	content: '';
	height: 25px;
	width: 50px;
	background-image: url('/static/images/logo_short_50x25.png');
	background-repeat: no-repeat;
	position: absolute;
	top: 0; bottom: 0; left: 0;
	margin: auto;
}
.tbs-header-content > .tbs-box-right {
	position: absolute;
	top: 0; right: 0;
}

.tbs-header-content, .tbs-content {
	width: 960px;
	margin: 0 auto;
}

.tbs-footer {
	border-top: 1px solid #d0d0d0;
	padding: 10px 0 0;
	margin: 50px 0;
	font-size: 13px;
}
.tbs-footer a ~ a { margin-left: 10px; }
.tbs-footer .tbs-text-xsmall { color: #8c8c8c; }

/* ------------------------------------------------------------------------ */
/* Input																	*/
/* ------------------------------------------------------------------------ */
.tbs-input { position: relative; }
.tbs-input > label { font-size: 13px; }
.tbs-input > input {
	height: 30px;
	line-height: 28px; /* IE8, fuehrt aber zu Riesen-Cursor im Chrome */
	padding: 0px 10px;
	border-width: 1px;
	border-style: solid;
	border-color: #c6c6c6 #d0d0d0 #d0d0d0;
	width: 100%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15) inset, 0 1px 0 0 #ffffff;
	-moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15) inset, 0 1px 0 0 #ffffff;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15) inset, 0 1px 0 0 #ffffff;
}
.tbs-input > input:hover {
	border-color: #b5b5b5 #bfbfbf #bfbfbf;
	background-color: #ededed;
}
.tbs-input > input:active {
	border-color: #a1a1a1 #ababab #ababab;
	background-color: #d9d9d9;
}

/* ------------------------------------------------------------------------ */
/* Checkbox																	*/
/* ------------------------------------------------------------------------ */
.tbs-checkbox { position: relative; }
.tbs-checkbox > input {
	left: 0;
	position: absolute;
	top: 2px;
	z-index: -1;
}
.tbs-checkbox > label { cursor: pointer; }
.tbs-checkbox > label:before {
	background-color: #ffffff;
	border: 1px solid #d0d0d0;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25) inset;
	-moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25) inset;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25) inset;
	color: #6bb324;
	content: '\a0';
	display: block;
	float: left;
	font-family: 'TeleIcon';
	font-size: 13px;
	line-height: 18px;
	margin: 0 10px 0 0;
	text-align: center;
	width: 20px;
}
.tbs-checkbox > label:hover:before {
	background-color: #ededed;
	border-color: #bfbfbf;
}
.tbs-checkbox > label:active:before {
	background-color: #d9d9d9;
	border-color: #ababab;
}
.tbs-checkbox > input.tbs-checked ~ label:before { content: 'V'; }

/* ------------------------------------------------------------------------ */
/* Button																	*/
/* ------------------------------------------------------------------------ */
.tbs-button { text-align: center; }
.tbs-button > button, .tbs-button > a {
	height: 40px;
    line-height: 40px;
	width: 180px;
	display: block;
	position: relative;
	border: 1px solid #d0d0d0;
	color: inherit;
	font-family: inherit;
	font-size: 19px;
	background-color: #e6e6e6;
	cursor: pointer;
	padding: 0;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-image: linear-gradient(#ffffff, #f3f3f3 50%, #e6e6e6);
	background-image: -o-linear-gradient(#ffffff, #f3f3f3 50%, #e6e6e6);
	background-image: -moz-linear-gradient(#ffffff, #f3f3f3 50%, #e6e6e6);
	background-image: -webkit-linear-gradient(#ffffff, #f3f3f3 50%, #e6e6e6);
	background-image: -ms-linear-gradient(#ffffff, #f3f3f3 50%, #e6e6e6);
}
.tbs-button > button:hover, .tbs-button > a:hover {
	border-color: #bfbfbf;
    text-decoration: none;
	background-color: #d4d4d4;
	background-image: linear-gradient(#ededed, #e1e1e1 50%, #d4d4d4);
	background-image: -o-linear-gradient(#ededed, #e1e1e1 50%, #d4d4d4);
	background-image: -moz-linear-gradient(#ededed, #e1e1e1 50%, #d4d4d4);
	background-image: -webkit-linear-gradient(#ededed, #e1e1e1 50%, #d4d4d4);
	background-image: -ms-linear-gradient(#ededed, #e1e1e1 50%, #d4d4d4);
}
.tbs-button > button:active, .tbs-button > a:active {
	border-color: #ababab;
	background-color: #bfbfbf;
	box-shadow: 0 1px 0 0 #ffffff, 0 1px 2px 0 rgba(0, 0, 0, 0.3) inset;
	-moz-box-shadow: 0 1px 0 0 #ffffff, 0 1px 2px 0 rgba(0, 0, 0, 0.3) inset;
	-webkit-box-shadow: 0 1px 0 0 #ffffff, 0 1px 2px 0 rgba(0, 0, 0, 0.3) inset;
	background-image: linear-gradient(#d9d9d9, #cccccc 50%, #bfbfbf);
	background-image: -o-linear-gradient(#d9d9d9, #cccccc 50%, #bfbfbf);
	background-image: -moz-linear-gradient(#d9d9d9, #cccccc 50%, #bfbfbf);
	background-image: -webkit-linear-gradient(#d9d9d9, #cccccc 50%, #bfbfbf);
	background-image: -ms-linear-gradient(#d9d9d9, #cccccc 50%, #bfbfbf);
}
.tbs-button.small > a {
    font-size: 16px;
    height: 25px;
    line-height: 25px;
    width: 110px;
}

/* ------------------------------------------------------------------------ */
/* Error																	*/
/* ------------------------------------------------------------------------ */
.tbs-error {
	background-color: #ededed;
	padding: 10px;
	border-bottom: 1px solid #d0d0d0;
}

/* ------------------------------------------------------------------------ */
/* Icon																		*/
/* ------------------------------------------------------------------------ */
.tbs-icon-mobile:after { content: 'W'; }
.tbs-icon-info:after { content: 'i'; color: #5094c2; }
.tbs-icon-close:after { content: 'X'; }
.tbs-icon-error:after { content: '!'; color: #bf0000; }
.tbs-icon-arrow-left:after { content: ')'; }

/* ------------------------------------------------------------------------ */
/* Disabled																	*/
/* ------------------------------------------------------------------------ */
[disabled] {
	background: #e6e6e6 !important;
	border-color: #e6e6e6 !important;
	cursor: default !important;
	opacity: 0.5;
	-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=50)';
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

/* ------------------------------------------------------------------------ */
/* Callback Tracking														*/
/* ------------------------------------------------------------------------ */
#callback-tracking {
	height: 1px;
	width: 1px;
	border: none;
	position: absolute;
	top: 0; left: 0;
}

/* ------------------------------------------------------------------------ */
/* Tooltip																	*/
/* ------------------------------------------------------------------------ */
.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border: 5px solid #000000;
}
.tooltip-inner {
	padding: 5px;
	color: #ffffff;
	background-color: #000000;
	font-size: 13px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.tooltip { position: absolute; }
.tooltip.top { margin-top: -3px; padding: 5px 0; }
.tooltip.right { margin-left: 3px; padding: 0 5px; }
.tooltip.bottom { margin-top: 3px; padding: 5px 0; }
.tooltip.left { margin-left: -3px; padding: 0 5px; }
.tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
.tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-left: none; border-top-color: transparent; border-bottom-color: transparent; }
.tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-top: none; border-left-color: transparent; border-right-color: transparent; }
.tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-right: none; border-top-color: transparent; border-bottom-color: transparent; }
[id$=tooltip] { display: none; }

/* ------------------------------------------------------------------------ */
/* Login																	*/
/* ------------------------------------------------------------------------ */
.tbs-login {
	width: 300px;
	border: 1px solid #d0d0d0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.tbs-login form { padding: 0 10px; }
.tbs-login .tbs-icon-info {
	cursor: pointer;
	font-size: 14px;
	position: relative;
	bottom: -1px; left: 2px;
}
.tbs-login .info-bubble {
	display: none;
	position: absolute;
	top: 0;right: 300px;
	background-color: #e0f1fa;
	z-index: 100;
	padding: 10px 30px 10px 10px;
	width: 300px;
	font-size: 13px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.tbs-login .info-bubble > .tbs-icon-close {
	position: absolute; 
	top: 10px; right: 10px;
	cursor: pointer;
}
.tbs-login .tbs-button { margin: 15px 0 25px; }
.tbs-login .header { margin: 30px 0 25px; }
.tbs-login .footer {
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 35px 0 10px;
	padding: 10px 20px 0;
	border-top: 1px solid #d0d0d0;
}

/* ------------------------------------------------------------------------ */
/* Logout																    */
/* ------------------------------------------------------------------------ */
.logout {
    padding: 10px 0 0;
    margin: 0 0 10px;
}

/* ------------------------------------------------------------------------ */
/* Description																*/
/* ------------------------------------------------------------------------ */
.description {
	border-top: 1px solid #d0d0d0;
	padding: 10px 0 0;
	margin: 0 0 10px;
}
.description .tbs-box-left {
	height: 80px;
	width: 80px;
}

/* ------------------------------------------------------------------------ */
/* Fullscreen																*/
/* ------------------------------------------------------------------------ */
.fullscreen #backButtonWrapper {
    margin-bottom: 36px;
}
.fullscreen #backButtonWrapper .tbs-icon-arrow-left {
    position: relative;
    top: 1px;
    right: 1px;
}
.fullscreen #infoTelekomLogin {
	left: 0;
	margin: auto;
	position: fixed;
	right: 270px;
	top: 160px;
	width: 500px;
}

/* ------------------------------------------------------------------------ */
/* Embedded																	*/
/* ------------------------------------------------------------------------ */
.embedded {
    background: #eee;
    font: 14px arial,sans-serif;
}
.embedded .tbs-content {
    line-height: 34px;
    margin: 0;
    padding: 0 0 0 16px;
    width: auto;
}
.embedded .tbs-error {
    color: #d90000;
    border: none;
    overflow: hidden;
    padding: 0;
    white-space: nowrap;
}

/* ------------------------------------------------------------------------ */
/* Common																	*/
/* ------------------------------------------------------------------------ */
.tbs-box-left { float: left; }
.tbs-box-right { float: right; }
.tbs-box-center { margin-left: auto; margin-right: auto; }
.tbs-text-icon {
	font-family: 'TeleIcon';
	line-height: 1em;
}
.tbs-text-left { text-align: left; }
.tbs-text-right { text-align: right; }
.tbs-text-center { text-align: center; }
.tbs-text-xsmall { font-size: 11px; }
.tbs-text-small { font-size: 13px; }
.tbs-text-big { font-size: 21px; }
.tbs-text-size-32 { font-size: 32px; }
.tbs-text-underline { text-decoration: underline; }
.tbs-hide { display: none; }
.tbs-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.tbs-relative { position: relative; }
.tbs-overflow { overflow: hidden; }
.tbs-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
}
.tbs-clearfix:after {
	content: '';
	display: block;
	clear: both;
}
.tbs-clear {
	clear: both;
	height: 0; /* IE8 (wegen content: '\a0') */
}
.tbs-clear:after { content: '\a0'; } /* IE8 */
.tbs-box-size-60 { width: 600px; }
.tbs-bu-1-top { margin-top: 10px; }
.tbs-bu-1-bottom { margin-bottom: 10px; }
.tbs-bu-2-bottom { margin-bottom: 20px; }
.tbs-bu-2-top { margin-top: 20px; }
.tbs-bu-3-right { margin-right: 30px; }
.tbs-bu-3-top { margin-top: 30px; }
