.wpfd_admin_row {
  display: flex;
  margin-top: 15px;
}

.wpfd_admin_column_left {
  flex: 75;
}

.wpfd_admin_column_right {
  flex: 25;
}

 /* Style the tab */
.wpfd_admin_tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.wpfd_admin_tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.wpfd_admin_tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.wpfd_admin_tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.wpfd_admin_tabcontent {
 
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  background-color: #ffffff;
} 

 /* The switch - the box around the slider */
.wpfd_admin_switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.wpfd_admin_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.wpfd_admin_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #bbb;
  -webkit-transition: .4s;
  transition: .4s;
}

.wpfd_admin_slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .wpfd_admin_slider {
  background-color: #ec8b00;
}

input:disabled + .wpfd_admin_slider {
  background-color: #f1f1f1;
}

input:focus + .wpfd_admin_slider {
  box-shadow: 0 0 1px #ec8b00;
}

input:checked + .wpfd_admin_slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.wpfd_admin_help {
	display: block;
}

.wpfd_admin_help_tag {
	font-weight: bold;
	font-size: 1.2em;
	color: #ec8b00;
	margin-right: 5px;
	text-decoration: none;
}

.wpfd_admin_help_tag:hover {
	color: #ec8b00;
	text-decoration: underline;
}

.wpfd_admin_box {
	background-color: #ffffff;
	margin: 0px 15px 15px 15px;
	border: 1px solid #ccc;
}

.wpfd_admin_box .wpfd_admin_box_title {
	display: block;
	border-bottom: 1px solid #ccc;
	background-color: #f1f1f1;
	padding: 1px 15px 1px 15px;
	margin: 0px;
}

.wpfd_admin_box .wpfd_admin_box_content {
	padding: 10px;
}