.nsdi-switch-control-view {
  /*margin: 10px;*/
  width: 80px;
  height: 30px;
  border: 1px solid #CCCCCC;
  border-radius: 50px;
  position: relative;
  transition: box-shadow 0.5s ease 0s, background-color 1.5s ease 0s;
  -webkit-transition: box-shadow 0.5s ease 0s, background-color 1.5s ease 0s;
  -o-transition: box-shadow 0.5s ease 0s, background-color 1.5s ease 0s;
}

.nsdi-switch-dot{
  height: 30px;
  width: 30px;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: -1px;
  z-index: 5;
}

.nsdi-switch-dot > .nsdi-switch-label{
  border: 1px solid #888888;
  border-radius: 3px;
  background-color: #FFFFFF;
  height: 25px;
  padding-left: 5px;
  padding-right: 5px;
  position: absolute;
  min-width: 50px;
  top: -38px;
  left: -5px;
  text-align: center;
  justify-content: center;
  padding-top: 3px;
}
.nsdi-switch-dot > .nsdi-switch-label:before {
    border-color: #888888 transparent transparent; 
    border-style: solid solid solid; 
    border-width: 10px 10px 10px 10px; 
    bottom: -20px;
 
    /* 必須指定，才能顯示內容 */
    content: "";
 
    height: 0px;
    left: 10px; 
 
    /* 必須指定，否則會變梯形 */
    position: absolute;
 
    width: 0px;
}
.nsdi-switch-dot > .nsdi-switch-label:after {
    border-color: #fff transparent transparent; 
    border-style: solid solid solid solid; 
    border-width: 10px; 
    bottom: -19px;
 
    /* 必須指定，才能顯示內容 */
    content: "";
 
    height: 0px;
    left: 10px; 
 
    /* 必須指定，否則會變梯形 */
    position: absolute;
 
    width: 0px;
}

.nsdi-switch-control-view > .nsdi-switch-label{
  font-size: 8pt;
  color: #FFF;
  position: absolute;
  top: 5px;
  left: 9px;
  margin-left: 3px;
}
