@charset "UTF-8";/*!
style* { margin: 0 auto; font-family: sans-serif; }

body { margin: 0 auto; }



kopfbereich
{
	background-image: url(../pix/header_bg.gif);
	
	background-color:#00FFFF;
}

header {
	height: 20px;
	
	
	display: flex;
	
	align-items: center;
	justify-content: center;
}
header > h1 {
	width: device-width;
	
	text-align: center;
	font-size: 20px;
	color: white;
}
header > .top {
	width:device-width;
	position: absolute;
	left: 20px;
}
header > .top a.menu_icon i {
	color: #004e90;
	font-size: 40px;
	padding-top: 25px; 
	transition: .2s ease;
}
header > .top a.menu_icon:hover i {
	width:device-width;
	height:2px;
	color: #6E7B8B;
	
	
}
nav.menu {
	width:device-width;
	min-height: calc(100vh - 121px);
	background-color: #004e90;
	position: absolute;
	left: -300px;
	transition: .3s all;
}
nav.menu > a {
    display: block;
    padding: 5px;
    margin: 15px 0 0px 20px;
    color: #FFFFFF;
    #text-transform: uppercase;
}
nav.menu >a.menu_item:hover icon
{
	color: #FF0000;
	background-color: #FF0000;
}

main {
	width: device-width;
	padding: 30px;
	box-sizing: border-box;
	
}
footer {
	height: 50px;
	background-color: #004e90;
	background-image: url('../pix/footer_bg.png');
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 0;
	position: fixed;
	width: 100%;
}




.menu_show {
	left: 0!important;
}

@media screen and (max-width: 425px) {
	header h1 {
		font-size: 16px;
		background-image: url('../pix/header_bg.gif');
	}
}
@media screen and (max-width: 360px) {
	nav.menu {
		width: 100%;
		left: -100%; 
	}
}
#header2{position:fixed;padding-top: 15px;top:0px;z-index:998;width:460px;height:25px;background:#5f5f5f}


// Base Colors
$shade-10: #2c3e50 !default;
$shade-1: #d7dcdf !default;
$shade-0: #fff !default;
$teal: #1abc9c !default;


// Reset
* {
  &,
  &:before,
  &:after {
    box-sizing: border-box;
  }
}

body {
  font-family: sans-serif;
  padding: 60px 20px;
  
  @media (min-width: 600px) {
    padding: 60px;
  }
}

.range-slider {
  margin: 60px 0 0 0;
}


// Range Slider
$range-width: 100% !default;

$range-handle-color: $shade-10 !default;
$range-handle-color-hover: $teal !default;
$range-handle-size: 20px !default;

$range-track-color: $shade-1 !default;
$range-track-height: 10px !default;

$range-label-color: $shade-10 !default;
$range-label-width: 60px !default;

.range-slider {
  width: $range-width;
}

.range-slider__range {
  -webkit-appearance: none;
  width: calc(100% - (#{$range-label-width + 13px}));
  height: $range-track-height;
  border-radius: 5px;
  background: $range-track-color;
  outline: none;
  padding: 0;
  margin: 0;

  // Range Handle
  &::-webkit-slider-thumb {
    appearance: none;
    width: $range-handle-size;
    height: $range-handle-size;
    border-radius: 50%;
    background: $range-handle-color;
    cursor: pointer;
    transition: background .15s ease-in-out;

    &:hover {
      background: $range-handle-color-hover;
    }
  }

  &:active::-webkit-slider-thumb {
    background: $range-handle-color-hover;
  }

  &::-moz-range-thumb {
    width: $range-handle-size;
    height: $range-handle-size;
    border: 0;
    border-radius: 50%;
    background: $range-handle-color;
    cursor: pointer;
    transition: background .15s ease-in-out;

    &:hover {
      background: $range-handle-color-hover;
    }
  }

  &:active::-moz-range-thumb {
    background: $range-handle-color-hover;
  }
  
  // Focus state
  &:focus {
    
    &::-webkit-slider-thumb {
      box-shadow: 0 0 0 3px $shade-0,
                  0 0 0 6px $teal;
    }
  }
}


// Range Label
.range-slider__value {
  display: inline-block;
  position: relative;
  width: $range-label-width;
  color: $shade-0;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: $range-label-color;
  padding: 5px 10px;
  margin-left: 8px;

  &:after {
    position: absolute;
    top: 8px;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid $range-label-color;
    border-bottom: 7px solid transparent;
    content: '';
  }
}


// Firefox Overrides
::-moz-range-track {
    background: $range-track-color;
    border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer { 
  border: 0; 
}
