.wbform .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.wbform .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

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

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

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

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

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

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

.wbform .slider.round:before {
  border-radius: 50%;
}
.wbform #additional-charges-table {
  padding: 20px;
  background: #fff;
  display: inline-block;
  margin-bottom: 20px;
}

.wbform input[type="submit"] {
  background-color: #3f51b5;
  color: #fff;
  border: none;
  box-shadow: none;
  padding: 7px 20px;
  border-radius: 5px;
  font-weight: 700;
  width: 14%;
  padding: 10px;
  margin: 10px auto;
  cursor: pointer !important;
}
.wbform #add-fee{
      background-color: #4eb53f;
  color: #fff;
  border: none;
  box-shadow: none;
  padding: 7px 20px;
  border-radius: 5px;
  font-weight: 700;
  width: 14%;
  padding: 10px;
  margin: 5px auto;
  cursor: pointer !important;
}
.wbform .remove-fee{
       background-color: #f00;
  color: #fff;
  border: none;
  box-shadow: none;
  padding: 7px 20px;
  border-radius: 5px;
  font-weight: 700;
  width:auto;
  padding: 5px 10px;
  margin: 5px auto;
  cursor: pointer !important;
}
.wbform .form-table td {
  margin-bottom: 9px;
  padding: 15px 15px 15px 0px;
  line-height: 1.3;
  vertical-align: middle;
}
.wbform  select{
    width:100%;
}