.storefront-header {
  display: flex;
  padding: 15px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider.round {
  border-radius: 34px;
}

.slider.round::before {
  border-radius: 50%;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  right: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2ca323;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2ca323;
}

input:checked + .slider::before {
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
}

.switch-on {
  color: #89909b;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-size: 14px;
  padding-right: 20px;
  display: block;
}

input:checked + .slider .switch-on {
  display: none;
}

.font-normal {
  font-weight: 400;
}

.font-size-14 {
  font-size: 14px;
}

.font-semibold {
  font-weight: 600;
}

.test-mode-div {
  height: 32px;
  background-color: #c9311a;
  background-size: cover;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none solid rgb(255, 255, 255);
  letter-spacing: 0.1px;
  text-align: center;
  padding: 5px;
}
