/* 
    Created on : 28.09.2017, 14:48:17
    Author     : hirschfeld
*/
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #c3c3c3 !important;
    outline: 0;
}

/*dropdown Suchliste*/
.ui-menu-item .ui-state-active {
    background: none !important;
    background-color: #c3c3c3 !important;/*54ba5c*/
    border: none !important;

}
.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    opacity: 0;
}
.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0;
}
.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    font-size: 14px;
    height: 34px;
    padding: 6px 12px;
    line-height: 1.42867143;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0px;
}

#formdiv {
  text-align: center;
}
#file {
  color: green;
  padding: 5px;
  border: 1px dashed #123456;
  background-color: #f9ffe5;
}
#img {
  width: 17px;
  border: none;
  height: 17px;
  margin-left: -20px;
  margin-bottom: 191px;
}
.upload {
  width: 100%;
  height: 30px;
}
.previewBox {
  text-align: center;
  position: relative;
  width: 150px;
  height: 150px;
  margin-right: 10px;
  margin-bottom: 20px;
  float: left;
}
.previewBox img {
  height: 150px;
  width: 150px;
  padding: 5px;
  border: 1px solid rgb(232, 222, 189);
}
.delete {
  color: red;
  font-weight: bold;
  position: absolute;
  top: 0;
  cursor: pointer;
  width: 20px;
  height:  20px;
  border-radius: 50%;
  background: #ccc;
}

.fileinput-button {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
  font-size: 200px !important;
  direction: ltr;
  cursor: pointer;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    color: #444;
    background-color: #fbfbfb;
}


.pagination{
    margin: 0px;
}
.spacerZWSHome{
    height: 5px;
}

/*
* Start
* Farbanpassungen an Norm
*
*/
.skin-slv-light .main-header .navbar {
    background-color: #557F8B; /* Original: 00acb3*/
}

.bg-norm {
    background-color: #00acb3;
    color: #fff;
}

.box.box-top-color-norm {
    border-top-color: #00acb3;
}

.box.box-top-color-zws {
    border-top-color: #557F8B;
}

.wizard li.active span.round-tab {  
    border: 2px solid #00acb3;
}

.wizard li.active span.round-tab i{
    color: #00acb3;
}

.wizard li:after {   
    border-bottom-color: #00acb3; 
}

.wizard li.active:after {  
    border-bottom-color: #00acb3;
}

/*
*
* Farbanpassungen an Norm
* Ende
*/


@media only screen and (max-width: 767px) {

    /* Force table to not be like tables anymore */
    #certList table, #certList thead, #certList tbody, #certList th, #certList td, #certList tr { 
        display: block; 
    }

    /* Hide table headers (but not display: none;, for accessibility) 
    #certList thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }*/

    #certList tr { border: 1px solid #ccc; }

    #certList td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee; 
        position: relative;
        /*padding-left: 10%; */
        white-space: normal;
        text-align:left;
    }
}


/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  float:right;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f44336;
  -webkit-transition: .4s;
  transition: .4s;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input.default:checked + .slider {
  background-color: #444;
}
input.primary:checked + .slider {
  background-color: #2196F3;
}
input.success:checked + .slider {
  background-color: #8bc34a;
}
input.info:checked + .slider {
  background-color: #3de0f5;
}
input.warning:checked + .slider {
  background-color: #FFC107;
}
input.danger:checked + .slider {
  background-color: #f44336;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}