/* The switch - the box around the elpug-admin-slider */
.elpug-admin-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.elpug-admin-switch input[type=checkbox] {
  opacity: 0;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The elpug-admin-slider */
.elpug-admin-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.elpug-admin-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .elpug-admin-slider {
  background-color: #2196F3;
}

input:focus + .elpug-admin-slider {
  box-shadow: 0 0 1px #2196F3;
}

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

/* Rounded elpug-admin-sliders */
.elpug-admin-slider.round {
  border-radius: 34px;
}

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

.form-table .infos{
  padding: 10px;
  border: 1px solid #ccc;
  background: #eee;
  font-size: 12px;
  margin-bottom: 10px;
}

.form-table .infos p {
  font-size: 12px;
}

.addon-btn {
  display: inline-block;
  padding: 10px 15px;
  background: #2196F3;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.addon-btn:hover {
  color: #fff;
}