﻿
/*File start: Content/Site.css*/

html {
	height: 100%;
}

body {
	height: 100%;
	padding-top: 0;
	padding-bottom: 0;
}

form {
	/*height: inherit;*/
	height: initial; /*Thomas, ändrat från inherit pga av 100%*/
}
/* Set padding to keep content from hitting the edges */
.body-content {
	/*height: inherit;*/
	height: initial; /*Thomas, ändrat från inherit pga av 100%*/
	padding-left: 0;
	padding-right: 15px;
}

/*Override the default bootstrap behavior where horizontal description lists 
will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
	white-space: normal;
}

/*Thomas, 
  Michael: margin-left: 0px fungerar inte i t.ex. Internet Explorer, det blir Ingen marginal alls eller t.o.m text utanför skärmen. Luft är bra! */
.container {
	margin-left: 15px;
}

.form-horizontal .form-group {
	margin-right: 0;
}

.form-horizontal .control-label {
	margin-bottom: 7px;
}

.form-horizontal {
	height: inherit;
}

.form-group {
	margin-bottom: 0; /*Thomas, lagt padding-bottom på .col-* i stället*/
}

.form-control {
	height: 30px;
	font-size: 15px;
	font-weight: 600;
	color: #2E2E2E;
	border: 1px solid #2E2E2E;
	padding: 0 0 0 14px;
	border-radius: 0;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3,
.col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6,
.col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9,
.col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11,
.col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
	padding-bottom: 10px; /*Thomas, satt .form-group.margin-bottom: 0px och lagt till padding här istället*/
}

.tooltip.in {
	opacity: 1; /*0.9; bootstrap original*/
}

.tooltip.top .tooltip-arrow {
	border-top-color: #6A6A6A;
}

.tooltip-inner {
	background-color: #6A6A6A;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
	/*max-width: 280px;*/
}

#loading
{
		display:none;
		position:fixed;
		left:0;
		top:0;
		width:100%;
		height:100%;
		background:rgba(255,255,255,0.8);
		z-index:2000;
		cursor: wait;
}
	
#loadingcontent
{
		display:table;
		position:fixed;
		left:0;
		top:0;
		width:100%;
		height:100%;
}
	
#loadingspinner
{
		display: table-cell;
		vertical-align:middle;
		width: 100%;
		text-align: center;
		font-size:larger;
		padding-top:80px;		
}

/*File end: Content/Site.css*/
