sharp-switch {
  display: inline-flex;

  .switch {
    background: #F13637;
    border: 1px solid #F13637;
    position: relative;
    display: inline-block;
    box-sizing: content-box;
    overflow: visible;
    width: 35px;
    height: 16px;
    padding: 0;
    margin: 0;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
    transition: 0.3s ease-out all;
  }

  .switch small {
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-out all;
  }

  .switch.checked {
    background: var(--global-theme-color-light, #00C2B1);
    border-color: var(--global-theme-color-light, #00C2B1);
  }

  .switch.checked small {
    left: 19px;
  }

  .switch .switch-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
  }

  .switch .off {
    display: block;
    position: absolute;
    right: 6%;
    top: 3%;
    z-index: 0;
    color: #fff;
  }

  .switch .on {
    display: none;
    z-index: 0;
    color: #fff;
    position: absolute;
    top: 3%;
    left: 9%;
  }

  .switch.checked .off {
    display: none;
  }

  .switch.checked .on {
    display: block;
  }

  .switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
}
