    .switch-containerForMdcForTopMenu {
      display: inline-flex;
      flex-direction: row;
      float: left;
      margin: 0.3rem -1rem;
    }

    .switch-containerForMdcForTopMenu .switch-label {
      font-family: "relative-book", "Open Sans", "Roboto", sans-serif !important;
      font-size: 14px;
      height: 24px;
      line-height: 24px;
      color: #2a2e69;
      margin: 0rem 0.7rem;
    }

    .switch-containerForMdcForTopMenu .switch {
      background-color: transparent;
      box-sizing: border-box;
      display: flex;
      flex: 0 0 auto;
      height: 24px;
      overflow: hidden;
      position: relative;
      width: 60px;
      margin-left: 5px;
    }

   .switch-containerForMdcForTopMenu .switch__label {
      cursor: pointer;
      margin: 0;
      padding: 0;
      width: 100%;
    }

    .switch-containerForMdcForTopMenu .switch__input {
      opacity: 0;
    }

    .switch-containerForMdcForTopMenu .switch__input:checked ~ .switch__text {
      background: rgb(20, 52, 203);
    }

    .switch-containerForMdcForTopMenu .switch__input:checked ~ .switch__text:before {
      opacity: 0;
      transform: translateX(200%);
    }

    .switch-containerForMdcForTopMenu .switch__input:checked ~ .switch__text:after {
      opacity: 1;
      transform: translateX(0);
    }

   .switch-containerForMdcForTopMenu .switch__input:checked ~ .switch__handle {
      transform: translateX(32px);
    }

    .switch-containerForMdcForTopMenu .switch__text {
      background-color: #e5e5e5;
      border-radius: 50px;
      box-sizing: border-box;
      display: block;
      flex: 0 0 auto;
      height: 24px;
      margin: 0;
      position: absolute;
      top: 0;
      width: 56px;
    }

    .switch-containerForMdcForTopMenu .switch__text:before,
    .switch__text:after {
      color: SlateGrey;
      font-size: 12px;
      font-weight: 700;
      line-height: 25px;
      position: absolute;
      transition: all .2s ease-in-out;
      transition-property: transform;
    }

    .switch-containerForMdcForTopMenu .switch__text:before {
      content: attr(data-off);
      right: 8px;
      transform: translateX(0);
    }

    .switch-containerForMdcForTopMenu .switch__text:after {
      color: white;
      content: attr(data-on);
      left: 9px;
      opacity: 0;
      transform: translateX(-200%);
    }

    .switch-containerForMdcForTopMenu .switch__handle {
      background-color: white;
      border-radius: 18px;
      display: block;
      height: 20px;
      margin: 2px;
      padding: 0;
      position: absolute;
      top: 0;
      transition: all .2s ease-in-out;
      transition-property: transform;
      width: 20px;
    }