


.active-switch.toogle-primary input:checked + .sliders {
    background-color: #003399;
  }

  
.active-switch .switch {
    position: relative;
    display: inline-block;
    width: 41px;
    height: 21px;
    margin: 0;
  }
  .active-switch .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .active-switch .sliders {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .active-switch .sliders:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 3px;
    bottom: 2px;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .active-switch input:checked + .sliders {
    background-color: #003399;
  }
  .active-switch input:checked + .sliders:before {
    left: -5px;
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  .active-switch input:focus + .sliders {
    box-shadow: 0 0 1px #003399;
  }
  .active-switch .sliders.round {
    border-radius: 34px;
  }
  .active-switch .sliders.round:before {
    border-radius: 50%;
  }
  .active-switch .onoffswitch-inner {
    display: block;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
    width: 200%;
  }
  .active-switch .onoffswitch-inner:before {
    box-sizing: border-box;
    color: #ffffff;
    display: block;
    float: left;
    font-size: 16px;
    height: 30px;
    line-height: 32px;
    padding: 0;
    width: 50%;
    background-color: #55ce63;
    color: #ffffff;
    content: "ON";
    padding-left: 14px;
  }
  .active-switch .onoffswitch-inner:after {
    box-sizing: border-box;
    color: #ffffff;
    display: block;
    float: left;
    font-size: 16px;
    height: 30px;
    line-height: 32px;
    padding: 0;
    width: 50%;
    content: "OFF";
    padding-right: 14px;
    background-color: #ccc;
    color: #ffffff;
    text-align: right;
  }
  .active-switch .onoffswitch-switch {
    background: #ffffff;
    border-radius: 20px;
    bottom: 0;
    display: block;
    height: 20px;
    margin: 5px;
    position: absolute;
    right: 43px;
    top: 0;
    transition: all 0.3s ease-in 0s;
    width: 20px;
  }
  .active-switch .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
  }
  .active-switch .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
  }

  .connectetappscontent .active-switch {
    margin-left: 90px;
  }
  @media (max-width: 992px) {
    .connectetappscontent {
      margin: 15px 0 0;
    }
  }

  .active-switch h6 {
    font-size: 12px;
    font-weight: 500;
    margin: 0 10px 0 0;
  }