.md-switch .md-switch-thumb .md-ripple,
.md-switch .md-switch-thumb:before {
  overflow: hidden;
}

.md-switch {
  display: flex;

  .md-switch-label {
    color: rgba(0,0,0,.26);
    font-size: 14px;
    line-height: 1.42857;
    // font-weight: 400;
    font-weight: 500;
  }

  .md-switch-container{
    background-color: rgba(80,80,80,.7) !important;
    margin:6px 0;
  }

  .md-switch-thumb {
    background-color: $white-color !important;
    // border: 1px solid rgba(0,0,0,.54);
     border: 1px solid $white-color !important;
    // box-shadow: 0 1px 3px 1px rgba(0,0,0,.4);

    .md-ripple .md-ripple-wave{
      background-color: rgba(0,0,0,.54) !important;
    }
  }

  &.md-checked {
    .md-switch-thumb {
      // border: 1px solid $brand-primary;
      border: 1px solid rgba(227,51,65,1) !important;

      .md-ripple .md-ripple-wave{
        background-color: rgba(227,51,65,1) !important;
      }
    }

    .md-switch-container {
      background-color: rgba(227,51,65,1) !important;
    }
  }
}
