/* widgets ================================================================= */
div.widget-standard {
	width: 400px;
	margin-right: 20px;
	border-radius: 4px;
  margin-bottom: 20px;
  border: 1px #E8E8E8 solid;
	float: left;
}

div.widget-standard h3.bg-bordercolor {
	padding: 5px 10px;
	background: #F4F4F4;
}

div.widget-standard .data-field-left {
  padding: 10px;
  width: 180px;
  border-bottom: 1px #E8E8E8 dotted;
}

div.widget-standard .data-field-right {
  padding: 10px;
  width: 180px;
  border-bottom: 1px #E8E8E8 dotted;
}

div.widget-standard .data-field-both {
  padding: 10px;
  width: 95%;
  border-bottom: 1px #E8E8E8 dotted;
}

div.widget-standard .last {
	margin-right: none;
  border-bottom: none;
}

div.widget-standard .widget-row {
  width: 100%;
  float: left;
  border-bottom: 1px #E8E8E8 dotted;
}

div.widget-standard .widget-row .data-field-left,
div.widget-standard .widget-row .data-field-right,
div.widget-standard .widget-row .data-field-both,
div.widget-standard .widget-row:last-child {
  border-bottom: none;
}

/* Widget Headline Icons =================================================== */
div.widget-standard h3.error-icon {
  background-image: url(/img/icons/error.png);
  background-position: 10px 5px;
  background-repeat: no-repeat;
  padding-left: 32px;
}

/* Widget Icons ============================================================ */
div.widget-standard .widget-icon-error {
	width: 156px;
  padding-left: 24px;
  background: url(/img/icons/error.png) 0 10px no-repeat;
}

/* Widget Text Input ======================================================= */
div.widget-standard input {
  width: 100%;
}


/* Standard Widget auf volle Breite ======================================== */
div.widget-fullsize {
  width: 100%;
}

div.widget-fullsize .data-field-left {
  width: 98%;
}

div.widget-fullsize .data-field-right {
  width: 100%;
  border-bottom: none;
}

/* File Upload */
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 0px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
       -o-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  -o-animation:progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}