body input[type="text"].w88-input,
body input[type="password"].w88-input,
body input[type="number"].w88-input,
body input[type="email"].w88-input,
body select.w88-input,
body .prettydropdown ul {
  background: #333;
  color: #fff;
  border: none;
}
body input[type="text"].w88-input,
body input[type="password"].w88-input,
body input[type="number"].w88-input,
body input[type="email"].w88-input,
body select.w88-input {
  padding: 10px 0 10px 5px;
  width: calc(100% - 5px);
}
body input[type="text"].w88-input,
body input[type="password"].w88-input,
body input[type="number"].w88-input,
body input[type="email"].w88-input {
  height: 12px;
}

body .prettydropdown {
  height: 32px;
}
body .prettydropdown,
body .prettydropdown ul,
body .prettydropdown ul li {
  width: 100% !important;
}
body .prettydropdown ul li {
  border-top: none;
  border-bottom: none;
}
body .prettydropdown ul li.selected {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0;
}
body .prettydropdown ul.active li.selected {
  white-space: normal;
  text-overflow: unset;
}
body .prettydropdown ul.active li.selected:before,
body .prettydropdown ul.active li.selected:after {
  width: 0;
  height: 0;
}
body .prettydropdown.arrow > ul > li.selected:before {
  background-image: url("/_static/svg/grey/up-arrow.svg");
  transform: rotate(180deg) translate(-5px, -4px);
}
body.white .prettydropdown.arrow > ul > li.selected:before {
  background-image: url("/_static/svg/white/up-arrow.svg");
}
body .prettydropdown.arrow > ul > li.selected:before,
body .prettydropdown.arrow > ul > li.selected:after {
  border: none;
  height: 17px;
  width: 17px;
  bottom: unset;
  top: calc(50% - 12px);
  right: 12px;
}
body .prettydropdown.arrow > ul.active > li.selected:before {
  background-image: none !important;
}

/* BUTTONS */
.w88-button.w88-button-success,
.w88-button.w88-button-success:hover {
  background-color: #58bf38;
}
.w88-button.w88-button-success:before {
  background-color: #7be55b;
}
.w88-button.w88-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* W88 FORM */
.w88-form {
  position: relative;
  padding: 5px 0;
}
.w88-form input[type="text"].w88-input,
.w88-form input[type="password"].w88-input,
.w88-form input[type="number"].w88-input,
.w88-form input[type="email"].w88-input,
.w88-form select.w88-input,
.w88-form .prettydropdown ul {
  font-size: 13px;
}
.w88-form .w88-form-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.w88-form .w88-form-icon i.w88-icon {
  position: absolute;
  padding-left: 15px;
}
.w88-form .w88-form-icon i.w88-icon:before {
  height: 20px;
  width: 20px;
}
.w88-form .w88-form-icon input[type="text"].w88-input,
.w88-form .w88-form-icon input[type="password"].w88-input,
.w88-form .w88-form-icon input[type="number"].w88-input,
.w88-form .w88-form-icon input[type="email"].w88-input {
  padding-left: 45px !important;
}
.w88-form .w88-button {
  font-size: 24px;
  font-weight: bold;
  display: block;
  padding: 8px 20px;
}
.w88-form .w88-button.w88-button-icon {
  display: flex;
}
.w88-form .w88-button.w88-button-icon .w88-icon {
  padding: 0 20px;
}

/* SWITCHER */
.checkbox-switcher {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  padding: 0 !important;
}
.checkbox-switcher input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-switcher .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.checkbox-switcher .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.checkbox-switcher input:checked + .slider {
  background-color: #2A8FBD;
}
.checkbox-switcher input:focus + .slider {
  box-shadow: 0 0 1px #2A8FBD;
}
.checkbox-switcher input:disabled + .slider {
  background-color: #2a8fbd80;
}
.checkbox-switcher input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
/* Rounded sliders */
.checkbox-switcher .round {
  border-radius: 34px;
}
.checkbox-switcher .round:before {
  border-radius: 50%;
}

/* CUSTOM CHECKBOX */
.w88-form-checkbox {
  display: flex;
  gap: 10px;
}
.w88-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.w88-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.w88-checkbox,
.w88-checkbox .w88-checkbox-checkmark {
  height: 20px;
  width: 20px;
}
.w88-checkbox .w88-checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  border: 1px solid #808080;
  border-radius: 3px;
}
.w88-checkbox:hover input ~ .w88-checkbox-checkmark {
  background-color: #404040;
}
body.white .w88-checkbox:hover input ~ .w88-checkbox-checkmark {
  background-color: #eeeeee;
}
.w88-checkbox input:checked ~ .w88-checkbox-checkmark {
  background-color: transparent;
}
.w88-checkbox .w88-checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.w88-checkbox input:checked ~ .w88-checkbox-checkmark:after {
  display: block;
}
.w88-checkbox .w88-checkbox-checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 11px;
  border: solid #2a8fbd;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.w88-checkbox input:disabled ~ .w88-checkbox-checkmark:after {
  border-color: #808080;
}