.switch{display:flex; justify-content: flex-start;}
.switch div{display:flex; align-items:center; margin-left: auto;}
.switch div p{font-weight:700; font-size:16px; color:#2e2e2e;}

/* 토글 외향 */
.toggleSwitch {
  width: 50px;
  height: 25px;
  display: block;
  position: relative;
  border-radius: 30px;
  background-color: #bebebe;
  cursor: pointer;
  margin: 5px;
}

/* 토글 버튼 */
.toggleSwitch .toggleButton {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
}

/*#toggle ~*/
.toggleSwitch.on {
  background: #288CD2;
}

.toggleSwitch.on .toggleButton {
  left: calc(100% - 25px);
  background: #fff;
}

.toggleSwitch, .toggleButton {
  transition: all 0.2s ease-in;
}