.woocommerce-error{
	position: absolute !important;
	bottom: 0 !important;
	left: 0 !important;
	border: 0 !important;
	color: white !important;
	z-index: 10000 !important;
	margin-bottom: 0 !important;
}

.updateme_red{
	color: red;
}

.updateme_green{
	color: green;
}

.updateme_tooltip{
	cursor: help;
	font-size: 1rem;
	vertical-align: middle;
}

.updateme_button{
	padding: 8px 16px !important;
}

/* Switch system */
.updateme_switch {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 20px;
}

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

.updateme_switch_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #999;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 20px;
}

.updateme_switch_slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .updateme_switch_slider {
  background-color: #2196F3;
}

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

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

