.card-warning.card-outline {
  border-top: 3px solid #343A40;
}
.s-box
{
  cursor: pointer;
}
.s-box:hover
{
  border: outset 2px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 20px;
    
    margin-left: 33px;
    margin-right: 3px;
    
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  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%;
  }


.sub-box
{
  border: 1px solid #CED4DA;
  border-top: none;
  box-sizing: border-box;
  padding: 7px;
  padding-top: 10px;
  margin-top: -17px;
  border-radius: 3px;
  
  z-index: 999 !important;

}
.f-item::after
{
  content: ' ';
  display: block;
  border: 2px solid #17A2B8;
}
.s-item::after
{
  content: ' ';
  display: block;
  border: 2px solid #000000;
}
.item-deactive
{
  color: #BAC2B1;
}
.badge-danger,.badge-info
{
  cursor: pointer !important;
}

.step-container {
  width: 100%;
  display: flex;
  justify-content: center;
   
}
.step-progressbar {
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.step-progressbar li {
  list-style-type: none;
  width: 130px;
  float: left;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #7d7d7d;
  
}
.step-progressbar li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  border: 2px solid #7d7d7d;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
}
.step-progressbar li:after {
  width: 80%;
  height: 2px;
  content: '';
  position: absolute;
  
  background-color: #7d7d7d;
  top: 15px;
  left: -40%;
  z-index: 1;
}
.step-progressbar li:first-child:after {
  content: none;
}
.step-progressbar li.active {
  color: green;
}
.step-progressbar li.active:before {
  border-color: #55b776;
}
.step-progressbar li.active + li:after {
  background-color: #55b776;
}