.bgouter{
  
 background-color: #e2e1e1;
}

.dmxValidator-error{
  width: 100%;
    margin-top: .25rem!important;
    font-size: 80%!important;
    color: #dc3545!important;
}

.slideshowstyle{
  max-height: 500px !important;
  overflow: hidden;
  position:relative;
}

.sliderstyle {
     margin: auto;
    padding-top: 500px !important;
    overflow: hidden;
}

.fadingborder{
   background-color: #f1f5f5;
  cursor: pointer;
  border-color: #009fe3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(50, 50, 50, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(50, 50, 50, 0.6);
}

.pside30{
  padding-left: 30px!important;
  padding-right: 30px!important;
}

.colstandortimages {
    max-width: 100%;
  max-height: 100vw;

  min-width: 320px;
  min-height: 320px;
  padding:0;
  margin-top:15px;
  margin-bottom:15px;
}

.standortnamecontainer{
  position: absolute;
    overflow: hidden;
    width: 100%;
    top: 66.6%;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
  background-color: rgba(50,50,50,0.7);
}

.bigpadding{
    padding-top:15px;
  padding-bottom:15px;
  }

@media (min-width:640px) and (max-width: 759px){
  .colstandortimages {
  min-width: 390px;
  min-height: 390px;
  }
}

@media (max-width:759px){
  .pside30{
  padding-left: 10px!important;
  padding-right: 10px!important;
}
}

@media (min-width:760px){
  .colstandortimages {
  max-width: calc(50% - 30px);
  max-height: calc(50vw - 30px);
  margin:15px;
  }
  .bigpadding{
    padding:15px!important;
  }
}


@media (min-width:1101px){
  .colstandortimages{
  max-width: calc(33.3% - 20px);
  max-height: calc(33.3vw - 20px);
  }
}

@media (min-width:1431px){
  .colstandortimages{
  max-width: calc(25% - 30px);
  max-height: calc(25vw - 30px);
  }
}

.standortnametitle{
  color:#fff;
  margin: 0;
    position: absolute;
    width: 96%;
    left: 2%;
    text-align: center;
    top: 50%;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.colstandortimages:hover .standortnamecontainer{
  background-color: rgba(250,250,250,0.7);
}
.colstandortimages:hover .standortnametitle{
  color: #000;
}

.smallnopadding{
  padding-top:30px;
  padding-bottom:30px;
}

@media (max-width: 1660px) {
.smallnopadding {
  padding: 0px !important;
}
}

.whitefont{
  color: #fff;
}

@media (max-width:1150px){
.colindex{
  max-width:100%!important;
}
  
  .colindexbeschr{
    min-width:100%!important;
  }
  
  .colindexbutton{
    text-align:right!important;
  }
}



@media (max-width:550px){
.colindex{
  min-width:100%!important;
}
  
  .colpreis{
    max-width:30%!important;
     min-width:30%!important;
  }
  
    
  .colindexbutton{
    max-width:100%!important;
  }
}





@media (max-width:940px){
  .colindexpbeschr{
    min-width:100%!important;
  }
  
  .colindexpbutton{
    max-width:100%!important;
    text-align:right!important;
  }
  
}

.lighthoverdark{
    color: #f8f9fa!important;
  background-color: #666!important;
}

.cursor{
  cursor: pointer;
}

.headercolname{
  -webkit-box-flex:0;
      -ms-flex-positive:0;
          flex-grow:0;
}

.headercollang{
    padding-top:0;
  }

@media (max-width: 540px) {
.headercolname{
  -webkit-box-flex:1;
      -ms-flex-positive:1;
          flex-grow:1;
  padding-left:0;
  padding-top:10px;
  min-width:200px;
}
  
  .headercolausstellung{
    min-width: 340px;
  }
  
  .headercollang{
    padding-top:10px;
  }
}




.lighthoverdark:focus, .lighthoverdark:hover{
  color: #000!important;
  background-color: #666!important;
}

.containercheckbox{
   display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; 
}

.containercheckbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  background-color: #dc3545;
  display: block;
  width: 35px;
  height: 25px;
  margin-top: 5px;
  border-radius: 25px;
  position: absolute;
  top: 0;
  left: 0;
}

/* On mouse-over, add a grey background color */
.containercheckbox:hover input ~ .checkmark {
  background-color: #92232e;
}

/* When the checkbox is checked, add a blue background */
.containercheckbox input:checked ~ .checkmark {
  background-color: #28a745;
}

.containercheckbox:hover input:checked ~ .checkmark {
  background-color: #208637;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: '';
  position: absolute;
  background: #fff;
  top: 2px;
  left: 2px;
  width: 21px;
    height: 21px;
  border-radius: 25px;
}

/* Show the checkmark when checked */
.containercheckbox input:checked ~ .checkmark:after {
  left: 85%;
  -webkit-transform: translateX(-85%);
          transform: translateX(-85%);
}

/* Style the checkmark/indicator */
.containercheckbox .checkmark:after {

}

label[toggle="toggle"]{
  text-indent: -9999px;
  background: #dddddd;
  display: block;
  width: 35px;
  height: 25px;
  margin-top: 5px;
  border-radius: 25px;
  position: relative;

}

label[toggle="toggle"]:after{
  content: '';
  position: absolute;
  background: #fff;
  top: 3px;
  left: 3px;
  width: 19px;
    height: 19px;
  border-radius: 25px;
}

input[toggle="toggle"]:checked + label{
  background: red;
}



/*sternchenplatten*/
.containercheckboxstern{
   display: block;
   position: relative;
   padding-left: 45px;
   margin-bottom: 12px;
   cursor: pointer;
   font-size: 1rem;
   -webkit-user-select: none;
      -moz-user-select: none;
       -ms-user-select: none;
           user-select: none;
}

.containercheckboxstern input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmarkstern {
 /* background-color: #ffffff40;*/
  /* display: block; */
  width: 30px;
  height: 30px;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
}




input ~ .checkmarkstern {
   background: url(/assets/images/scm-neg40.png) no-repeat 50% 50%;
  background-color: rgba(255,255,255,0);
}


/* CHECKMARKED CHECKED */
.containercheckboxstern input:checked ~ .checkmarkstern {
  background: url(/assets/images/staractiveblack.png ) no-repeat 50% 50%;
  background-color: rgba(255,255,255,0);
}


/* CHECKMARKED NOT CHECKED HOVER */
.containercheckboxstern:hover input ~ .checkmarkstern {
   background: url(/assets/images/staractiveblack.png) no-repeat 50% 50%;
  background-color: rgba(255,255,255,0.44);
}


/* CHECKMARKED CHECKED HOVER */
.containercheckboxstern:hover input:checked ~ .checkmarkstern {
   background: url(/assets/images/scm-neg70.png) no-repeat 50% 50%;
  background-color: rgba(255,255,255,0);

  }


.withoutstilwelt {
  opacity:1;
  fill:#eff4fb;
  fill-opacity:1;
  stroke:none;
  stroke-width:0.36500001;
  stroke-linecap:square;
  stroke-linejoin:miter;
  stroke-miterlimit:4;
  stroke-dasharray:none;
  stroke-dashoffset:0;
  stroke-opacity:0.93033226;
}

.nostilwelt {
  opacity:1;
  fill:#ffffff;
  fill-opacity:0.550610932;
  stroke:none;
  stroke-width:0.36500001;
  stroke-linecap:square;
  stroke-linejoin:miter;
  stroke-miterlimit:4;
  stroke-dasharray:none;
  stroke-dashoffset:0;
  stroke-opacity:0.93033226;
}

.stilwelt1 {
  opacity:1;
  fill:#b1b1b1;
  fill-opacity:0.550610932;
  stroke:none;
  stroke-width:0.36500001;
  stroke-linecap:square;
  stroke-linejoin:miter;
  stroke-miterlimit:4;
  stroke-dasharray:none;
  stroke-dashoffset:0;
  stroke-opacity:0.93033226;
}

.stilwelt2 {
  opacity:1;
  fill:#17592d;
  fill-opacity:0.550610932;
  stroke:none;
  stroke-width:0.36500001;
  stroke-linecap:square;
  stroke-linejoin:miter;
  stroke-miterlimit:4;
  stroke-dasharray:none;
  stroke-dashoffset:0;
  stroke-opacity:0.93033226;
}

.stilwelt3 {
  opacity:1;
  fill:#be9e75;
  fill-opacity:0.550610932;
  stroke:none;
  stroke-width:0.36500001;
  stroke-linecap:square;
  stroke-linejoin:miter;
  stroke-miterlimit:4;
  stroke-dasharray:none;
  stroke-dashoffset:0;
  stroke-opacity:0.93033226;
}

.stilwelt4 {
  opacity:1;
  fill:#733073;
  fill-opacity:0.550610932;
  stroke:none;
  stroke-width:0.36500001;
  stroke-linecap:square;
  stroke-linejoin:miter;
  stroke-miterlimit:4;
  stroke-dasharray:none;
  stroke-dashoffset:0;
  stroke-opacity:0.93033226;
}


.foundfull {
  opacity:1;
  fill:#2fbf72;
  fill-opacity:0.8;
}
.foundhalf{
  opacity:1;
  fill:#2fbf728a;
  fill-opacity:0.4;
}

.nostilwelt:hover {
  fill:#f3f3f3;
     fill-opacity:1;
  cursor: pointer;
}



.withoutstilwelt:hover {
  fill:#b7d4f1;
     fill-opacity:1;
  cursor: pointer;
}

.foundfull:hover {
  opacity:1;
  fill:#2fbf72;
  fill-opacity:1;
}
.foundhalf:hover{
  opacity:1;
  fill:#2fbf72;
  fill-opacity:1;
}
.stilwelt1:hover {
     fill-opacity:1;
  cursor: pointer;
}
.stilwelt2:hover {
     fill-opacity:1;
  cursor: pointer;
}
.stilwelt3:hover {
     fill-opacity:1;
  cursor: pointer;
}
.stilwelt4:hover {
     fill-opacity:1;
  cursor: pointer;
}



.floorbutton {
  opacity:0.5!important;
  fill-opacity:0.5!important;
  cursor: pointer;
}

.floorbutton:hover {
  opacity:1!important;
  fill-opacity:1!important;
}

.floorbutton.active {
  opacity:1!important;
  fill-opacity:1!important;
  cursor: auto;
}

.nonclickable{
  pointer-events: none;
}

.minw8pc{
  min-width:8%;
}

.minw16pc{
  min-width:16%;
}

.textred{
  color: #dc3545;
}

.textgreen{
  color: #28a745;
}

.redborder{
  border: 1px solid rgba(255,0,53,0.6)!important;
  -webkit-box-shadow: 0px 0px 8px rgba(255, 0, 53, 0.6);
          box-shadow: 0px 0px 8px rgba(255, 0, 53, 0.6);
}

.a-s-center {
  margin-right: auto;
  margin-left: auto;
}

.w200px{
  width:200px;
}

.w150px{
  width:150px;
}

.bg-middark{
  background-color: #666;
}

.border-middark{
 border-color: #666; 
}

@media (min-width: 992px) {
.hoverdropdown:hover>.dropdown-menu {
  
  display: block;
}
}

.style344 {
    margin-top: -4px
}
.style177 {
    font-size: 1.1rem;
    text-align: right
}

.hiddden {
  display: none;
}
.style1 {
  width: 80%;
  max-width: 800px;
  min-width: 50px;
}
.style2 {
  width: 50%;
}
.style3 {
  width: 7%;
}
.style4 {
  width: 7%;
  max-width: 50px;
  min-width: 50px;
}
.style5 {
  width: 93%;
}
.style6 {
  width: 6%;
  max-width: 50px;
  min-width: 15px;
}

.style7 {
  width: 100%;
}

.style8 {
  min-width: 180px;
}

.style9 {
  min-width: 180px;
  padding-top: 15px;
}

.style10 {
  margin-bottom: 0px;
}

.style11 {
  margin-bottom: 0px;
  margin-right: -15px;
}

.style12 {
  max-width: 200px;
  min-width: 200px;
}

.style13 {
}

.style13b {
  min-width: 600px;
}

.style14 {
  height: 145px;
  background-color: #80d9ff;
  margin-bottom: 10px;
  margin-left: -16px;
}

.style15 {
  min-width: 125px;
  max-width: 125px;
}

.style16 {
  max-width: 1260px;
  background-color: rgba(255, 255, 255, 0.7);
}

.style16_white {
  max-width: 1260px;
  background-color: rgba(255, 255, 255, 0.7);
}

.style16new {
  max-width: 1035px !important;  
  width: 100% !important;
  background-color: rgba(255, 255, 255, 1);
}

.style16new1660 {
  max-width: 1600px !important;  
  width: 100% !important;
  background-color: rgba(255, 255, 255, 1);
}

.bg-darkgrey {
  background-color: #555555;
}
.bg-lightgrey {
  background-color: #dddddd;
}
.bg-lightergrey {
  background-color: rgb(240, 240, 240);
}

.style16_nobg {
  max-width: 1260px;
}

.style16header {
  max-width: 1260px;
}


.stylesoprog {
  height: 140.4px;
  margin-bottom: 0px;
  max-width: 125px;
  min-width: 125px;
}





.stylesoprog2 {
  max-width: 150px;
  margin-bottom: 0px;
  height: 140.4px;
  width: 150px;
  min-width: 150px;
}


.parentshowonhover .showonhover {
  display: none;
}
.parentshowonhover:hover .showonhover {
  display: block;
  text-align: center;
}

@media (hover: hover) {
  .parentshowonhover .showonhover {
  display: none;
}
.parentshowonhover:hover .showonhover {
  display: block;
  text-align: center;
}
}

.form-control{
  background-size: 0px;
   border-color: #eeeeee;
padding-right: 10px;
}


.form-control:focus{
  background-size: 0px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
padding-right: 10px;
}

.form-control.is-valid:focus, .was-validated :valid.form-control:focus{
          border-color: #009fe3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
padding-right: 10px;
  background-size: 0px;
}

.form-control.is-valid, .was-validated :valid.form-control{
  background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 0px;
  padding-right: 10px;
  margin-bottom: 0px; 
  border-color: #eeeeee;
  
}

.was-validated textarea.form-control:valid{
  background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 0px;
  padding-right: 10px;
  margin-bottom: 0px; 
  border-color: #eeeeee;
  
}
.form-control.is-invalid:focus, .was-validated :invalid.form-control:focus{
          border-color: #009fe3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
padding-right: 10px;
  background-size: 0px;
}

.form-control.is-invalid, .was-validated :invalid.form-control{
  background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 0px;
  border-color: #eeeeee;
  padding-right: 10px;
}


.form-control.minpadding{
  padding-right: 4px;
  padding-left: 4px;
  background-size: 0px;
}

.form-control.minpadding.is-valid{
  padding-right: 4px;
  padding-left: 4px;
  background-size: 0px;
}

.form-control.minpadding.is-invalid{
  padding-right: 4px;
  padding-left: 4px;
  background-size: 0px;
}




.custom-select{
  background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 15px;
   border-color: #eeeeee;
}

.custom-select:focus{
  background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 15px;
   border-color: #eeeeee;
}


.custom-select.is-valid:focus, .was-validated :valid.custom-select:focus{
  background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 15px;
          border-color: #009fe3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
}


.custom-select.is-valid, .was-validated :valid.custom-select{
 background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 15px;
 padding-right: 4px;
border-color: #eeeeee;
}

.custom-select.is-valid, .was-validated :invalid.custom-select{
 background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 15px;
 padding-right: 4px;
border-color: #eeeeee;
}

.custom-select.is-valid, .was-validated :invalid.custom-select:focus{
 background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 15px;
 padding-right: 4px;
border-color: #eeeeee;
}

.custom-select.minpadding{
   background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right 4px center/8px 10px;
  background-size: 15px;
  padding-right: 22px;
  padding-left: 6px;
}

.custom-select.minpadding.is-valid{
   background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right 4px center/8px 10px;
  background-size: 15px;
  padding-right: 22px;
  padding-left: 6px;

}

.custom-select.minpadding.is-invalid{
   background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right 4px center/8px 10px;
  background-size: 15px;
  padding-right: 22px;
  padding-left: 6px;

}








 .style17 {
  letter-spacing: 0em;
}


 .style18 {
}


 .style19 {
  margin-left: 0px;
  margin-right: 0px;
}


 .style20 {
  max-width: 350px;
  min-width: 350px;
  margin-right: -15px;
  padding-right: 15px;
}


 .style21 {
  max-width: 10.5%;
  min-width: 10.5%;
  width: 10.5%;
  margin-top: 27px;
}

 .style21b {
  max-width: 105px;
  min-width: 105px;
}



 .style22 {
  min-height: 145px;
   background-color: #80d9ff;
   margin: 5px 0px;
}

.style14_2 {
  background-color: #a7e5ff;
  min-height: 145px;
  margin: 5px 0px;
  padding-top: 30px;
}

.style14_3 {
  min-height: 145px;
  background-color: #ffd4dd;
  margin: 5px 0px;
  padding-top: 30px;
}

.style14_4 {
  background-color: #a8ffbe;
  min-height: 0px;
  margin: 5px 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.mcsort3{
  background-color: #ffd4dd!important;
}

.style14_5 {
  background-color: #a7e5ff;
  min-height: 0px;
  margin: 5px 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.style14_7 {
  background-color: #a7e5ff;
  min-height: 0px;
  margin: 0px 0px 10px;
  padding-top: 5px;
  padding-bottom: 10px;
}


.style14_6 {
  background-color: #d4faff;
  min-height: 0px;
  margin: 5px 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.bglightred{
  background-color: #ffd4dd !important;
}

.bglightorange{
  background-color: #ffe19c !important;
}

 .mouseoover {
  background-color: #006185;
}



 .style23 {
  background-color: #006185;
}



 .style24 {
  height: 30px;
}



 .style25 {
  min-height: 10px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 2px;
  padding-bottom: 2px;
}



 .style26 {
  min-height: 20px;
}



 .style27 {
  width: 25%;
}



 .style28 {
  width: 100%;
  margin-left: 0px;
  margin-right: 0px;
}



 .style29 {
  width: 7%;
  max-width: 7%;
  padding-top: 27px;
  min-width: 100px;
}

 .style29_2 {
  width: 7%;
  max-width: 7%;
  padding-top: 27px;
  min-width: 60px;
}

 .stylepreislabel {
  width: 7%;
  max-width: 7%;
  min-width: 70px;
}




 .style30 {
  width: 12%;
  max-width: 12%;
  padding-top: 27px;
  min-width: 170px;
}



 .style31 {
  width: 7%;
  max-width: 7%;
  min-width: 100px;
}

 .style31_2 {
  width: 7%;
  max-width: 7%;
  min-width: 60px;
}

 .style32 {
  width: 170px;
  max-width: 170px;
  min-width: 170px;
  padding-left: 5px;
}



 .style33 {
  width: 40%;
  max-width: 40%;
  min-width: 300px;
}


.h19{
min-height:19px;
max-height: 19px;
}

.h15{

}


 .style34 {
  width: 10%;
  max-width: 10%;
  min-width: 100px;
}



 .style35 {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}



 .style36 {
  width: 40%;
  max-width: 40%;
  min-width: 300px;
}



 .style37 {
  width: 22.5%;
  max-width: 22.5%;
}

.style38 {
  background-color: #f5f5f5;
  padding-bottom: 5px!important;
  margin: 5px 0px;
  padding-top: 5px;
}

.stylezwischentitel{
  background-color: #e8e8e8;
  padding-bottom: 5px!important;
  padding-top: 5px;
  margin: 5px 0px;
}

.margintop150px{
margin-top: 150px;
}

.margintop90px{
margin-top: 90px;
}

.style39 {
  height: 100%;
}

.style40 {
  height: 100%;
}

  
.style41 {
  margin-top: 15px;
}

.style42 {
  padding-top: 27px;
  width: 4%;
  max-width: 4%;
  min-width: 4%;
}

.style43 {
}

.style44 {
   margin-bottom: 0px;
   margin-left: 0px;
   margin-right: 0px;
}

.style45 {
  margin-left: 0px;
  margin-right: 0px;
}

.style46 {
  width: 100%;
}

.style47 {
  width: 100%;
}

.style48 {
  height: 46px;
  background-color: #80d9ff;
  margin: 5px 0px;
}

.style49 {
  width: 20px;
  height: 20px;
}

.style50 {
  max-width: 50px;
    width: 15%;
}

.style51 {
  padding-left: 0px;
}

.style52 {
  width: 20px;
  height: 20px;
  margin-top: 0.3rem;
}

.style53 {
  margin-right: 30px;
}

.style54 {
}

.style55 {
  width: 80%;
  max-width: 1300px;
}

.style56 {
  width: 100%;
  margin-bottom: 5px;
}

.minw120px{
  min-width: 120px;
  max-width: 120px;
}

.minw160px{
  min-width: 160px;
  max-width: 160px;
}


.minw260px{
  min-width: 260px;
  max-width: 260px;
}

.style59 {
  width: 83%;
  max-width: 83%;
}


.col40pc {
  width: 40%;
  min-width: 40%;
}

.col15pc {
  width: 15%;
  min-width: 15%;
  max-width: 15%;
}

.col10pc {
  width: 10%;
  min-width: 10%;
  max-width: 10%;
}

.col8pc {
  width: 8%;
  min-width: 8%;
  max-width: 8%;
}

.w30px{
  width:30px;
  min-width:30px;
  max-width:30px;
  margin-top:-2px;
  padding-left:0px;
  padding-right:0px;
}

.style97 {
  width: 10.5%;
  min-width: 10.5%;
  max-width: 10.5%;
}

.mobilehiddden{
  
}

.desktophiddden{
  
}

.mobilehidden2{
}


@media (min-width: 1221px) {


}

@media (max-width: 1220px) {



  .style29 {
    min-width: 50%;
  }
  .style29_2 {
    min-width: 50%;
  }
  .style30 {
    min-width: 50%;
  }
  .style36 {
    min-width: 100%;
  }
  .style21 {
    
    min-width: 80%;
  }
  .style42 {
    
    min-width: 50px;
  }
  

.style97 {
  width: 20%;
  min-width: 20%;
  max-width: 20%;
}
  
}


@media (min-width: 1351px) {

.desktophiddden2 {
    display: none;
  }
}

@media (max-width: 1350px) {
  
  .mobilehiddden2 {
    display: none;
  }
    .col10pc {
    min-width: 86px;
  }
  
  .col15pc {
    min-width: 120px;
  }
  
  .col40pc {
    min-width: 50%;
  }
  
  .col8pc {
  min-width: 70px;
}
  .h15{
min-height: 19px;
max-height: 19px;
}

}



.pr15px {
    margin-right: 15px;
  }

.pl15px {
    margin-left: 15px;
  }

.style57 {
  width: 100%;
  max-width: 100%;
}

.style58 {
  max-width: 800px;
  position: relative;
}

.style60 {
  padding-left: 0px;
  padding-right: 0px;
}

.style61 {
  min-width: 200px;
}

.style62 {
  width: 40%;
}

.style63 {
  width: 60px;
  padding-left: 0px;
  min-width: 60px;
}

.style64 {
  min-width: 250px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.modal-dialog { /* Width */

}


@media (min-width: 575px) {

.modal-dialog { /* Width */
    width: 80%;
    max-width: 1260px;

}


}


.style65 {
  min-height: 25px;
}


.style66 {
  width: 150px;
          max-width: 150px;
          min-width: 150px;
          height: 200px;
          min-height: 200px;
          max-height: 200px;
}


.style67 {
  width: 50%;
  min-width: 50%;
  max-width: 50%;
  border: 1px solid #dddddd;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}


.style68 {
  width: 100%;
  height: 100%;
    background-color: #f1f5f5;
}

.nonselected{
   background-color: #f1f5f5;
  cursor: pointer;
  border-color: #009fe3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(50, 50, 50, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(50, 50, 50, 0.6);
}

.nonselected_newkorpus{
   background-color: #ffffff;
  border-color: #009fe3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(50, 50, 50, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(50, 50, 50, 0.6);
}

.nonselectedveraltet{
   background-color: #f1f5f5;
  cursor: pointer;
  border-color: #ffd4dd;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 53, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 53, 0.6);
}

.hoverposition {
  background-color: #ffffff;
}

.bluehover{
  
}
.bluehover:hover{
  background-color: #ffffff;
          border-color: #009fe3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 16px rgba(0, 159, 227, 0.8);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 16px rgba(0, 159, 227, 0.8);
}

.selectedposition {
  background-color: #ffffff;
          border-color: #009fe3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 16px rgba(0, 159, 227, 0.8);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 16px rgba(0, 159, 227, 0.8);
}

.nonselectednoborder{
   background-color: #ffffff;
  cursor: pointer;
}


.dropdown-item{
  
}

.dropdown-item.active, .dropdown-item:active{
 background-color: rgba(0,0,0,0); 
 color: rgb(33,37,41);
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}



.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
    color: rgba(0,0,0,.5);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0,0,0,.7);
}
.nonselectednoborder:hover{
  background-color: #a7e5ff;
}

.selectedbgbluenoborder {
  background-color: #a7e5ff;
  cursor: pointer;
}

.bggrey{
  background-color: #f1f5f5;
}
.style69 {
}

.style70 {
  height: 200px;
  min-height: 200px;
  max-height: 200px;
}

.style70_6 {
  height: 150px;
  min-height: 150px;
  max-height: 150px;
}

.style70_4 {
  height: 100px;
  min-height: 100px;
  max-height: 100px;
}

.style71 {
  height: 25%;
  min-height: 25%;
  max-height: 25%;
}

.style71_6 {
  height: 33.3%;
  min-height: 33.3%;
  max-height: 33.3%;
}

.style71_4 {
  height: 50%;
  min-height: 50%;
  max-height: 50%;
}

.style72 {
  width: 40%;
  min-width: 40%;
}

.style72_4 {
  width: 40%;
  max-width: auto;
  min-width: 40%;
}


.style72_3 {
  width: 125px;
  min-width: 125px;
  max-width: 125px;
}

.style72_2 {
  width: 15%;
  max-width: 15%;
  min-width: 30px;
}

.mv1 {
}

.mh1 {
}

.w-100{
  min-width: 100%;
}


.style73 {
  font-size: 24px;
}

.style73_1 {
  font-size: 22px;
  text-align: center;
}

.style74 {

}

.style79 {
}

.style80 {

}


.style75 {
  width: 120px;
  min-width: 80px;
  max-width: 80px;
}

.style75_2 {
  width: 120px;
  min-width: 80px;
  max-width: 80px;
}

.style76 {
    min-width: 20px;
    max-width: 20px;
    padding-left: 0px;
  }

.style78 {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
      padding-left: 0px;
  }

  .style78_2{
  }

.style83 {
  width: 45px;
  min-width: 45px;
  max-width: 45px;
      margin-top: 5px;
}

.mobmw100{
  min-width: 190px;
}

  .style74_2 {
  width: 45px;
  min-width: 45px;
  max-width: 45px;
    padding-top: 0.5em;
}

.styleparagraph{
  
}

.styleausserprod{
  width: 110px;
}
.styleausserprod2{
}
.w-40px{
  max-width: 40px;
  min-width: 40px;
  width: 40px;
  padding-left: 0px;
}

.styleausserprodpl{
  }

@media (min-width:565px){
.mwmw{
  min-width: 70px!important;
}
}

@media (min-width: 591px){
    .styleausserprodpl{
    text-align: right;
  }
}

@media (max-width: 590px){

  .styleausserprod{
  width: 110px;
}
  
  
  .mobmw100{
    min-width: 100%;
  }
  .style72 {
  min-width: 80%;
    margin-top: 15px;
}
  
    .style72_4 {
  min-width: 65%;
      max-width: auto;
}
  
    .style72_3 {
    margin-top: 15px;
      min-width: 100%;
}
  .style72_2 {
  width: 15%;
  max-width: 15%;
  min-width: 50px;
    margin-top: 18px;
}
  
  .style75_2 {
 margin-left: 0.5em;
}
  
    .style75_3 {
 margin-left: 0.5em;
}
  
  .w-40px{
 padding-left: 0.5em;
}
  .style83 {
    margin-top: 0px;
}
  .style79 {
  min-width: 100%;
}
  
  .mh1 {
    display: none
}
  .style74: {
    max-width: 500px;
    width: 500px;
    min-width: 70px;
  }
  
    .style74_2 {
         max-width: 500px;
    width: 500px;
    min-width: 45px;
  padding-top: 0.25em;
  } 
  .style80 {
  text-align: left;
}

  .style78_2{
    margin-left: 15px;
  }
  
  .styleparagraph{
  margin-bottom: 0px;
}
}

@media (min-width: 591px){
    .mv1 {
      display: none;
}
  .style74 {
  width: 80px;
  min-width: 80px;
  max-width: 80px;
    padding-top: 0.5em;
}
  
     .style74_2 {
      padding-top: 0.5em;
}
  
  .w-40px{
  padding-top: 0.5em;
}
  
  .mobmw100{
    max-width: 180px;
  }
  .style75{
        padding-top: 0.5em;
  }
  
    .style75_2{
        padding-top: 0.5em;
  }
    .style76{
        padding-top: 0.5em;
  }
  .style78{
        padding-top: 0.5em;
  }
    .style80 {
  text-align: right;
}
    .styleausserprod{
    width: 190px;
     min-width: 190px;
      max-width: 190px;
    padding-top: 0.5em;
}
  .styleausserprod2{
    width: 110px;
     min-width: 110px;
      max-width: 110px;
    padding-top: 0.5em;
}
}


.btn-sabag{
  width: 40px;
  height: 34px;
}
.btn-primary{
    background-color: #009fe3;
  border-color: #009fe3;

}

.btn-primary:hover{
    background-color: #96e0ff;
  border-color: #96e0ff;

  
}



.styleimage:hover{
            border-color: #009fe3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(0, 159, 227, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(0, 159, 227, 0.6);
  cursor: pointer;
}

.style77 {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.style81 {
  margin-left: 0px;
  margin-right: 0px;
  min-height: 40px;
}

.style82 {
  min-width: 200px;
}

.style82ext {
  min-width: 245px !important;
  max-width: 245px !important;
}

@media (min-width: 640px){
  .style82ext {
  min-width: 330px !important;
    max-width: 330px !important;
}
}

.style84 {
  max-width: 25%;
}

.style85 {
  min-width: 100%;
}

.style86 {
  max-width: 300px;
  max-height: 360px;
  min-width: 300px;
  min-height: 360px;
}

.style87 {
  min-height: 300px;
}

.style88 {
  min-width: 100%;
  min-height: 100%;
}

.style89 {
  background-color: #e3e3e3;
}

.style90 {
  min-width: 100%;
}

.bgblue1 {
  background-color: #2ec0ff;
}

.bgblue2 {
  background-color: #64d1ff;
}

.bgblue3 {
  background-color: #80d9ff;
}

.bgblue4 {
  background-color: #a7e5ff;
}

.bgblue5 {
  background-color: #d5edff;
}

.style91 {
  font-size: 20px;
}

.style92 {
  max-width: 40px;
  min-width: 40px;
  width: 40px;
}

.style93 {
  width: auto;
}

.style94 {
}

.style95 {
  max-width: 300px;
}

.bgred {
  background-color: #ff9c9c;
}

.style96 {
  max-width: 89%;
}


.style98 {
  padding-left: 6em;
}


.overlaybox {
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 2;
}

.overlayalert {
    position: fixed;
    top: 10px;
    z-index: 1050;
   pointer-events: none;
}


.style99 {
  background-color: rgba(0, 0, 0, 0.33);
}

.bgstandort {
      background-image: url("/assets/images/standortimages/sabagrothenburg_transp.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-blend-mode: soft-light;
  
}

.bgsanitaer {
    background-image: url("../assets/images/bgsanitaer_light.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
    background-size: cover;

}

.mh-100{
  min-height: 100vh;
}

.minheight100{
  min-height: 100%;
}

.bgplatten {
    background-image: url("../assets/images/bgplatten_light.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;

}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
.bgsanitaer {
  background-repeat: repeat;

}
  .bgplatten {
    background-repeat: repeat;
  }
}

.style100 {
  max-width: 100px;
  width: 100px;
}

.style100_2 {
  max-width: 170px;
  width: 170px;
}

.style101 {
  min-height: 100vh;
}

.mh80{
  min-height: 50vh
    ;
}

.mhauto{
  min-height: 50vh;
}

.style102 {
  min-width: 250px;
}

.style103{
  max-width: 200px;
}

.style104{
  background-color: #f1f5f5;
}
.style105{
  max-width: 400px;
}
@media (max-width: 600px) {

.style103 {
    min-width:100%;
  }
}

.bghome{
  background-image: url("../assets/images/bghome-hell.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 35vh;
}

.h-100{
  min-height: 35vh;
}






.csssoprog {
  width: 70px;
  min-width: 70px;
  max-width: 70px;
}

.cssartnr {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
}

.cssmenge {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
}


.cssposition {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
}


.csstext {
    min-width: 300px;
  }

.csstext2 {
    min-width: 300px;
  }


.csspreis {
  width: 100px;
  min-width: 93px;
  max-width: 93px;
}

.csscolumnbutton {
  width: 161px;
  min-width: 161px;
  max-width: 161px;
}

.csscolumnbutton2 {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
}

.cssplattenbeschreibung {
  min-width: 300px;
}

.csseinheitplatten{
  min-width: 100px;
  max-width: 100px;
}

.csspreisplatten{
  min-width: 100px;
  max-width: 100px;
}

.csspreisplatten2{
  min-width: 100px;
  max-width: 100px;
}

.csscolbuttonplatten{
  min-width: 130px;
  max-width: 130px;
}

.csspreisinput {
  max-width: 130px;
}

.style107 {
  margin-left: 130px;
}


.pointer{
  cursor: pointer;
}

.w95px{
  width: 95px;
  min-width: 95px;
  max-width: 95px;
}

.mr10px{
  margin-right: 10px;
}

@media (max-width: 1074px) {
.csstext {
    min-width: calc(100% - 14px);
    width: calc(100% - 14px);
  margin-top: 10px;
  margin-bottom: 10px;
  }
  
  .csstext2 {
    min-width: calc(100% - 14px);
    width: calc(100% - 14px);
  }
  
  .csspreis {
  min-width: calc(100% - 175px);
  max-width: calc(100% - 175px);
}
  
  .mobilehiddden {
    display: none;
  }  
  
.csssoprog {
  width: 25%;
  max-width: 25%;
}

.cssartnr {
  width: 25%;
  max-width: 25%;
}

.cssmenge {
  width: 25%;
  max-width: 25%;
}

.cssposition {
  width: 25%;
  max-width: 25%;
}
 
  
  .cssplattenbeschreibung {
  min-width: 100%;
}
  
  .csspreisplatten{
  min-width: calc(100% - 280px);
  max-width: calc(100% - 280px);
}
  
  .csspreisplatten2{
  min-width: 150px;
  max-width: calc(100% - 339px);
}
}

@media (max-width: 540px) {
  .csssoprog {
  width: 50%;
  min-width: 50%;
}

  
.cssartnr {
  width: 50%;
  min-width: 50%;
}


.cssmenge {
  width: 50%;
  min-width: 50%;
}

.cssposition {
  width: 50%;
  min-width: 50%;
}
  
  .csscolbuttonplatten{
    padding-top: 5px;
}
}


@media (min-width: 1075px) {

.desktophiddden {
    display: none;
  }
  
  
}


.style106 {
  max-width: 300px;
  max-height: 300px;
}





/*

.orangeborder {
             border-color: #ff7800;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 120, 0, 0.8);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 120, 0, 0.8);
}

.orangeborder:focus {
             border-color: #ff7800;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 120, 0, 0.8);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 120, 0, 0.8);
}

.orangeborder.is-valid:focus, .was-validated :valid.orangeborder:focus{
             border-color: #ff7800;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 120, 0, 0.8);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 120, 0, 0.8);
}

.orangeborder.is-valid, .was-validated :valid.orangeborder{
   background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 0px;
  padding-right: 0px; 
  margin-bottom: 0px;  
  border-color: #ff7800;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 120, 0, 0.8);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 120, 0, 0.8);
}

.orangeborder.is-invalid:focus, .was-validated :invalid.orangeborder:focus{
          border-color: #ff7800;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 120, 0, 0.8);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 120, 0, 0.8);
  
}

.orangeborder.is-invalid, .was-validated :invalid.orangeborder{
  background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 0px;
  padding-right: 0px; 
  margin-bottom: 0px; 
  padding-top: 0px; 
        border-color: #ff7800;
  
}


*/


.bluefont{
  color: blue;
}

.bluefont:focus{
  color: blue;
}



.normalborder{
  background-size: 20px;
   border-color: #eeeeee;
   -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0);
           box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0);
}

.normalborder:focus{
  background-size: 20px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
}

.normalborder.is-valid:focus, .was-validated :valid.normalborder:focus{
          border-color: #009fe3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);

}

.normalborder.is-valid, .was-validated :valid.normalborder{
  background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 0px;
  padding-right: 0px; 
  margin-bottom: 0px; 
  border-color: #eeeeee;
  
}

.normalborder.is-invalid:focus, .was-validated :invalid.normalborder:focus{
          border-color: #009fe3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 159, 227, 0.6);
  
}

.normalborder.is-invalid, .was-validated :invalid.normalborder{
  background: url('../../assets/images/dropdownsabag.svg') no-repeat #fff right .75rem center/8px 10px;
  background-size: 0px;
  padding-right: 0px; 
  margin-bottom: 0px; 
  padding-top: 0px; 
  border-color: #eeeeee;
  
}


.updatetextbutton{
  max-width: 40px;
  margin-left: 5px;
}

.textinputwidth{
  max-width: calc(100% - 45px);
}

textarea {
  /* margin:0px 0px; this is redundant anyways since its specified below*/
  padding-top:10px;
  padding-bottom:25px; /* increased! */
  /* height:16px; */
  /* line-height:16px; */
  width:100%; /* changed from 96 to 100% */
  display:block;
  /* margin:0px auto; not needed since i have width 100% now */
}

.style108 {
}

.style109 {

  height: 100vh;
  
}

.stylegrundriss{
 
    margin-left: auto;
  margin-right: auto;

}

.h6small{
  font-size: 0.88rem;
}

.style110 {
  max-width:1000px;
margin-left: auto;
  margin-right: auto;
  padding-bottom: 45px;
  padding-top: 45px;
}

.style111 {
  max-height:100%;
    height: 100%;

}

.style112 {
  min-width:80px;
}

.style113{
   margin-top: 19px; 
}

.col30pc{
   width: 30%;
   min-width: 30%;
   max-width: 30%; 
}

.style114{
   min-width: 40%; 
  max-width: 40%;
}
.style115{
   min-width: 12%; 
  max-width: 12%;
}

.style116{
   min-width: 12%; 
  max-width: 12%;
}

@media (max-width: 899px) {
  .style114 {
  display: none;
}
  .style115{
   min-width: 25%; 
  max-width: 25%;
}
  
  .minw8pc{
    min-width: 25%; 
  }
  
  .minw16pc{
    min-width: 30%; 
  }
  
  .style116{
  display: none;
}

}

.page-item.active .page-link{
z-index:1;
color:#fff;
background-color:#009fe3;
border-color:#009fe3;
}


.style117{
  width: 25%;
  min-width: 300px;
margin: auto;
}


.style118{
   width: 100%;
   max-width: 100%;
   height: 302px;
   min-height: 302px;
   max-height: 302px;
   background-color: #caffd6;
   min-width: 100%; 
}

.w-20{
  width: calc(25% - 20px);
  max-width: calc(25% - 20px);
  min-width: calc(25% - 20px);
}

.w-20-px{
    width: 20px;
  max-width: 20px;
  min-width: 20px;
}

.w-40{
  width: 40%;
  min-width: 20%;
  max-width: 100%;
}

.w-14{
    width: 14%;
  min-width: 14%;
  max-width: 14%;
}
.w-11{
    width: 11%;
  min-width: 11%;
  max-width: 11%;
}

/*
@media (min-width: 1351px) {

.desktophiddden2 {
    display: none;
  }
}
*/


.style119{
   background-color: #bfffd1; 
}


.style120{
   background-color: #ffc4c4; 
}

.style121{
   background-color: #ffc992; 
}

.drag{
  cursor: move;
}

.marginpadding15{
  margin-left:7px;
  margin-right:7px;
  padding-left:7px;
  padding-right:7px;
}

.style122{
  min-width: 34%;
}

@media (min-width:720px){
.style122{
  min-width: 200px;
}

}
@media (max-width:620px){
.style122{
  min-width: 200px;
}

}

.style123 {
  max-width:1000px;
margin-left: auto;
  margin-right: auto;
}



.style124{
  max-width: 1000px; 
}

.buttonfornonarticles{
  max-width:60px;
}

.style107-new{
  margin-left: 60px;
}

.maxw100px{
max-width: 100px;
}

.style125{
  background-color: #b32626;
}

.style126{
  background-color: #bdf4ff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.style127{
  min-width: 250px;
  max-width: 250px;
}
.style128{
  min-width: 600px;
}

.style129{
  min-height: 600px;
}
.style130{

}
.style131{
  height: 600px;
}
@media (max-width:910px){
.style127{
  min-width: 100%!important;
  max-width: 100%!important;
}
  .style128{
  min-width: 100%!important;
  max-width: 100%!important;
}
}

@media (min-width:910px){
  .style130{
  height: 250px;
  min-height: 250px;
}
  
}


ol.mylist {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

li.mylist {
  display: table;
  counter-increment: item;
  margin-bottom: 0.1em;
}

li.mylist:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;    
}

li li.mylist {
    margin: 0;
}

li li.mylist:before {
    content: counters(item, ".") " ";
}


.colbtn:focus{
  
  outline: 0;
    -webkit-box-shadow: 0 0 0 0 rgba(0,123,255,.25)!important;
            box-shadow: 0 0 0 0 rgba(0,123,255,.25)!important;
  
}


.linkanleitung{
  color: #6c757d;
}


.linkanleitung:hover{
  color: #c2c6c9;
  text-decoration:none;
}
