/**
 *
 * -----------------------------------------------------------
 *
 * WordPress-Settings-Framework Framework
 * A Lightweight and easy-to-use WordPress Options Framework
 *
 * Copyright 2015 WordPress-Settings-Framework <info@codestarlive.com>
 *
 * -----------------------------------------------------------
 *
 */
.wpsf-framework {
  position: relative;
  margin-top: 20px;
  margin-right: 20px;
}
.wpsf-framework label {
  padding: 0;
  margin: 0;
  display: inline-block;
}
.wpsf-framework .wpsf-settings-error {
  margin: 0 0 15px 0;
}
.wpsf-framework .wpsf-header {
  position: relative;
  background-color: #050505;
  padding: 25px;
  -moz-border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px;
  border-radius: 2px 2px 0 0;
}
.wpsf-framework .wpsf-header.wpsf-sticky-header.sticky {
  position: fixed;
  margin-top: 0;
  top: 32px;
  z-index: 9999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.wpsf-framework .wpsf-header h1 {
  color: #fff;
  float: left;
  font-size: 1.5em;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
}
.wpsf-framework .wpsf-header h1 small {
  font-size: 11px;
  color: #555;
  font-weight: 500;
}
.wpsf-framework .wpsf-header fieldset {
  float: right;
}
.wpsf-framework .wpsf-header fieldset input {
  margin: 0 2px;
  line-height: 26px;
}
.wpsf-framework .wpsf-body {
  position: relative;
  background-color: #fff;
}
.wpsf-framework .wpsf-nav {
  display: block;
  position: relative;
  z-index: 10;
  float: left;
  width: 225px;
}
.wpsf-framework .wpsf-nav ul {
  clear: left;
  margin: 0;
  list-style-type: none;
}
.wpsf-framework .wpsf-nav ul li {
  margin-bottom: 0;
}
.wpsf-framework .wpsf-nav ul li a {
  font-size: 13px;
  position: relative;
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #999;
  background-color: #222;
  border-bottom: 1px solid #2f2f2f;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.wpsf-framework .wpsf-nav ul li a:hover {
  color: #fff;
}
.wpsf-framework .wpsf-nav ul li a:focus {
  outline: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wpsf-framework .wpsf-nav ul li .wpsf-section-active {
  color: #fff;
  background-color: #111;
}
.wpsf-framework .wpsf-nav ul li .wpsf-section-active:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 50%;
  height: 0;
  width: 0;
  pointer-events: none;
  border: solid transparent;
  border-right-color: #fff;
  border-width: 4px;
  margin-top: -4px;
}
.wpsf-framework .wpsf-nav ul li .wpsf-arrow:after {
  content: "\f054";
  display: inline-block;
  font-family: "FontAwesome";
  font-size: 9px;
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -4px;
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -moz-transition: -moz-transform 0.2s;
  -o-transition: -o-transform 0.2s;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.wpsf-framework .wpsf-nav ul li.wpsf-tab-active .wpsf-arrow:after {
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.wpsf-framework .wpsf-nav ul ul {
  display: none;
  position: relative;
  border-bottom: 1px solid #2f2f2f;
  position: relative;
}
.wpsf-framework .wpsf-nav ul ul li a {
  font-size: 12px;
  padding: 13px 15px 13px 25px;
  background-color: #191919;
  border-bottom: 1px solid #222;
}
.wpsf-framework .wpsf-nav ul ul li .wpsf-section-active {
  background-color: #101010;
}
.wpsf-framework .wpsf-nav ul ul li:last-child a {
  border-bottom: 0;
}
.wpsf-framework .wpsf-nav ul ul:before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 1;
  width: 1px;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.75);
}
.wpsf-framework .wpsf-nav .wpsf-icon {
  width: 20px;
  margin-right: 5px;
  font-size: 14px;
  text-align: center;
}
.wpsf-framework .wpsf-nav .wpsf-seperator {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 30px 15px 15px 15px;
  border-bottom: 1px dashed #2f2f2f;
}
.wpsf-framework .wpsf-nav-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9;
  width: 225px;
  background-color: #222;
}
.wpsf-framework .wpsf-content {
  position: relative;
  margin-left: 225px;
}
.wpsf-framework .wpsf-content .wpsf-sections {
  float: left;
  width: 100%;
}
.wpsf-framework .wpsf-content .wpsf-section-title {
  display: none;
  padding: 20px 30px;
  background-color: #5bc0de;
}
.wpsf-framework .wpsf-content .wpsf-section-title h3 {
  color: #fff;
  margin: 0;
  padding: 0 !important;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(68, 167, 197, 0.5);
}
.wpsf-framework .wpsf-content .wpsf-section {
  display: none;
}
.wpsf-framework .wpsf-footer {
  padding: 20px;
  color: #555;
  text-align: right;
  font-size: 11px;
  background-color: #050505;
  -moz-border-radius: 0 0 2px 2px;
  -webkit-border-radius: 0;
  border-radius: 0 0 2px 2px;
}
.wpsf-framework .wpsf-show-all .wpsf-nav-background,
.wpsf-framework .wpsf-show-all .wpsf-nav {
  display: none;
}
.wpsf-framework .wpsf-show-all .wpsf-content {
  margin-left: 0;
}
.wpsf-framework .wpsf-show-all .wpsf-section-title,
.wpsf-framework .wpsf-show-all .wpsf-section {
  display: block !important;
}
.wpsf-framework .wpsf-expand-all {
  position: absolute;
  right: 40px;
  bottom: 5px;
  z-index: 1;
  color: #555;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}
.wpsf-framework .wpsf-expand-all:hover {
  color: #fff;
}
.wpsf-framework .wpsf-expand-all:focus {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wpsf-framework.wpsf-theme-simple .inside {
  padding: 0;
  margin-top: 0;
}
.wpsf-framework.wpsf-theme-simple .inside .wpsf-element {
  padding: 15px;
}
.wpsf-framework.wpsf-theme-simple .inside .wpsf-title {
  font-size: 14px;
}
.wpsf-framework.wpsf-theme-simple .inside .wpsf-title h4 {
  font-size: 14px;
}
.wpsf-framework.wpsf-theme-simple .wpsf-content {
  margin-left: 0;
}
.wpsf-framework.wpsf-theme-simple .wpsf-content .wpsf-sections {
  float: none;
}
.wpsf-framework.wpsf-theme-simple .wpsf-subnav-container .wpsf-submenus {
  font-size: 14px;
  line-height: 2;
}
.wpsf-framework.wpsf-theme-simple .wpsf-subnav-container ul {
  margin-top: 0 !important;
  float: none;
}
.wpsf-framework.wpsf-theme-simple .wpsf-subnav-container ul li a {
  padding: 0 5px !important;
  font-size: 14px;
}
.wpsf-framework.wpsf-theme-simple .wpsf-simple-footer {
  padding: 8px 12px;
  border-top: 1px solid #eee;
  text-align: right;
  font-size: 14px;
}
.wpsf-framework.wpsf-theme-simple .wpsf-simple-footer .wpsf-save {
  float: right;
  margin-left: 15px;
}

.wpsf-wc-style .wpsf-element + .wpsf-element {
  border: none;
}
.wpsf-wc-style .wpsf-element {
  padding: 5px 20px 5px 12px !important;
  margin: 9px 0;
}
.wpsf-wc-style .wpsf-element .wpsf-fieldset {
  margin-left: 0 !important;
}
.wpsf-wc-style .wpsf-element .wpsf-title {
  width: 150px;
}
.wpsf-wc-style .wpsf-element .wpsf-title h4 {
  vertical-align: middle;
  font-weight: normal;
}

.wpsf-metabox-framework {
  margin: -6px -12px -12px -12px;
}
.wpsf-metabox-framework .wpsf-content .wpsf-section-title {
  padding: 20px;
}

.wpsf-element {
  position: relative;
  padding: 30px;
}
.wpsf-element + .wpsf-element {
  border-top: 1px solid #eee;
}
.wpsf-element p:last-child {
  margin-bottom: 0 !important;
}
.wpsf-element:after, .wpsf-element:before {
  content: " ";
  display: table;
}
.wpsf-element:after {
  clear: both;
}
.wpsf-element h4 {
  margin-top: 0;
}
.wpsf-element .wpsf-title {
  position: relative;
  width: 25%;
  float: left;
}
.wpsf-element .wpsf-title h4 {
  margin: 0;
  color: #23282d;
}
.wpsf-element .wpsf-fieldset {
  margin-left: 30%;
}
.wpsf-element pre {
  clear: both;
  color: #ccc;
  background-color: #222;
  padding: 15px;
  overflow: auto;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.wpsf-element pre strong {
  color: #ffbc00;
}

.wpsf-pseudo-field {
  padding: 0 5px 0 0 !important;
  border: 0;
  display: inline-block;
}

.wpsf-field-text input {
  width: 340px;
  max-width: 100%;
}

.wpsf-field-textarea textarea {
  width: 100%;
  max-width: 100%;
  min-height: 125px;
}
.wpsf-field-textarea .wpsf-shortcode {
  margin-bottom: 10px;
}

.wpsf-field-wysiwyg textarea {
  width: 100%;
  max-width: 100%;
  min-height: 125px;
}
.wpsf-field-wysiwyg .wp-editor-container {
  clear: none;
}

.wpsf-field-number input {
  width: 70px;
}
.wpsf-field-number em {
  margin-left: 5px;
  color: #bbb;
}

.wpsf-field-select select {
  max-width: 100%;
}

.wpsf-field-typography select,
.wpsf-field-typography .chosen-container {
  margin-right: 5px;
}
.wpsf-field-typography .wpsf-typo-variant {
  min-width: 90px;
}

.wpsf-field-checkbox ul,
.wpsf-field-radio ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow-y: auto;
  max-height: 305px;
}
.wpsf-field-checkbox .horizontal li,
.wpsf-field-radio .horizontal li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
}
.wpsf-field-checkbox input[type="radio"]:checked:before,
.wpsf-field-radio input[type="radio"]:checked:before {
  line-height: 10px;
}

.wpsf-field-switcher label {
  display: block;
  float: left;
  cursor: pointer;
  position: relative;
  width: 62px;
  height: 26px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
.wpsf-field-switcher label span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  -webkit-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}
.wpsf-field-switcher label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.wpsf-field-switcher label input:checked ~ em {
  background: #4fb845;
}
.wpsf-field-switcher label input:checked ~ em:before {
  opacity: 0;
}
.wpsf-field-switcher label input:checked ~ em:after {
  opacity: 1;
}
.wpsf-field-switcher label input:checked ~ span {
  left: 40px;
}
.wpsf-field-switcher label em {
  position: relative;
  display: block;
  height: inherit;
  font-size: 11px;
  line-height: 26px;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: #fff;
  background-color: #ed6f6f;
  -moz-transition: background 0.15s ease-out;
  -o-transition: background 0.15s ease-out;
  -webkit-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out;
}
.wpsf-field-switcher label em:before,
.wpsf-field-switcher label em:after {
  position: absolute;
  -moz-transition: opacity 0.15s ease-out;
  -o-transition: opacity 0.15s ease-out;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
.wpsf-field-switcher label em:before {
  content: attr(data-off);
  right: 14px;
}
.wpsf-field-switcher label em:after {
  content: attr(data-on);
  left: 14px;
  opacity: 0;
}
.wpsf-field-switcher .wpsf-text-desc {
  float: left;
  margin-left: 5px;
  margin-top: 0;
  padding-top: 4px;
}

.wpsf-field-image_select label {
  display: inline-block;
  margin: 5px;
}
.wpsf-field-image_select label img {
  max-width: 100%;
  vertical-align: bottom;
  background-color: #fff;
  border: 2px solid #eee;
  opacity: 0.75;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.wpsf-field-image_select input {
  display: none;
}
.wpsf-field-image_select input:checked ~ img {
  border-color: #333;
  opacity: 1;
}

.wpsf-field-upload input {
  width: 420px;
  max-width: 100%;
}

.wpsf-field-background .wpsf-field-color_picker {
  position: relative;
  top: 10px;
}

.wpsf-field-color_picker .wpsf-alpha-wrap {
  display: none;
  position: relative;
  top: -1px;
  width: 235px;
  padding: 9px 10px;
  border: 1px solid #dfdfdf;
  border-top: none;
  background-color: #fff;
}
.wpsf-field-color_picker .wpsf-alpha-slider {
  position: absolute;
  width: 190px;
  margin-left: 2px;
  height: 18px;
}
.wpsf-field-color_picker .wpsf-alpha-slider .ui-slider-handle {
  position: absolute;
  top: -3px;
  bottom: -3px;
  z-index: 5;
  border-color: #aaa;
  border-style: solid;
  border-width: 4px 3px;
  width: 10px;
  height: 16px;
  margin: 0 -5px;
  background: none;
  cursor: ew-resize;
  opacity: 0.9;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.wpsf-field-color_picker .wpsf-alpha-slider .ui-slider-handle:before {
  content: " ";
  position: absolute;
  left: -2px;
  right: -2px;
  top: -3px;
  bottom: -3px;
  border: 2px solid #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.wpsf-field-color_picker .wpsf-alpha-slider-offset {
  height: 18px;
  width: 200px;
  background: url(../images/checkerboard.png) repeat-y center left scroll #fff;
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) inset;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) inset;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) inset;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.wpsf-field-color_picker .wpsf-alpha-text {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 30px;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  color: #999;
}

.wpsf-field-backup textarea {
  width: 100%;
  min-height: 200px;
  margin-bottom: 5px;
}
.wpsf-field-backup small {
  display: inline-block;
  margin: 5px;
}
.wpsf-field-backup hr {
  margin: 30px 0;
}

.wpsf-field-fieldset .wpsf-inner {
  border: 1px solid #eee;
  background-color: #fff;
}
.wpsf-field-fieldset .wpsf-element {
  padding: 20px;
}

.wpsf-field-group .wpsf-element {
  padding: 20px;
}
.wpsf-field-group .wpsf-group {
  display: none;
  position: relative;
  margin-bottom: 5px;
}
.wpsf-field-group .wpsf-group h4 {
  font-size: 1em;
}
.wpsf-field-group .wpsf-group-content {
  border: 1px solid #e5e5e5;
  background: #fff;
}
.wpsf-field-group .wpsf-group-title {
  border: 1px solid #e5e5e5;
  background: #fafafa;
  -moz-transition: border-color 0.15s;
  -o-transition: border-color 0.15s;
  -webkit-transition: border-color 0.15s;
  transition: border-color 0.15s;
}
.wpsf-field-group .wpsf-group-title:active, .wpsf-field-group .wpsf-group-title:hover, .wpsf-field-group .wpsf-group-title:focus {
  border: 1px solid #bbb;
  background: #fafafa;
  outline: none;
}
.wpsf-field-group .wpsf-group-title {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 15px;
  min-height: 0;
  font-size: 100%;
}
.wpsf-field-group .wpsf-group-content {
  padding: 0;
  border-top: 0;
}
.wpsf-field-group .widget-placeholder {
  margin-bottom: 8px;
}
.wpsf-field-group .ui-accordion .wpsf-group {
  display: block;
}
.wpsf-field-group .ui-accordion-icons {
  padding-left: 30px;
}
.wpsf-field-group .ui-accordion-header-icon {
  position: absolute;
  left: .5em;
  top: 50%;
  margin-top: -10px;
  text-indent: 0;
  color: #bbb;
}
.wpsf-field-group .ui-sortable-helper .wpsf-group-content {
  display: none !important;
}

.wpsf-help {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px;
  font-size: 14px;
  color: #aaa;
}

.wpsf-field-heading {
  font-size: 1.5em;
  font-weight: bold;
  color: #23282d;
  background-color: #f5f5f5 !important;
}

.wpsf-field-subheading {
  font-size: 14px;
  font-weight: bold;
  padding-top: 17px;
  padding-bottom: 17px;
  color: #23282d;
  background-color: #f7f7f7 !important;
}

.wpsf-field-notice {
  padding: 0 !important;
  border: 0 !important;
}
.wpsf-field-notice + .wpsf-element {
  border-top: 0;
}
.wpsf-field-notice .wpsf-notice {
  font-size: 12px;
  padding: 17px 30px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.wpsf-field-notice .wpsf-success {
  color: #3c763d;
  border-color: #d6e9c6;
  background-color: #dff0d8;
}
.wpsf-field-notice .wpsf-info {
  color: #31708f;
  border-color: #bce8f1;
  background-color: #d9edf7;
}
.wpsf-field-notice .wpsf-warning {
  color: #8a6d3b;
  border-color: #faebcc;
  background-color: #fcf8e3;
}
.wpsf-field-notice .wpsf-danger {
  color: #a94442;
  border-color: #ebccd1;
  background-color: #f2dede;
}

.wpsf-field-icon input {
  display: none;
}
.wpsf-field-icon .button {
  margin-right: 5px;
}
.wpsf-field-icon .wpsf-icon-preview i {
  display: inline-block;
  font-size: 14px;
  width: 30px;
  height: 26px;
  line-height: 26px;
  margin-right: 5px;
  text-align: center;
  vertical-align: top;
  color: #555;
  border: 1px solid #ccc;
  background-color: #f7f7f7;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.wpsf-field-image input {
  display: none;
}
.wpsf-field-image .wpsf-preview {
  display: inline-block;
  position: relative;
  padding: 4px;
  min-width: 44px;
  min-height: 22px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.wpsf-field-image .wpsf-preview img {
  max-height: 90px;
  display: inline-block;
  vertical-align: middle;
}
.wpsf-field-image .wpsf-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background-color: #e14d43;
  opacity: 0.8;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.wpsf-field-image .wpsf-remove:hover {
  opacity: 1;
}

.wpsf-field-gallery input {
  display: none;
}
.wpsf-field-gallery ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.wpsf-field-gallery ul li {
  display: inline-block;
  position: relative;
  padding: 4px;
  margin: 0 5px 10px 0;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.wpsf-field-gallery ul li img {
  max-height: 60px;
  display: inline-block;
  vertical-align: middle;
}
.wpsf-field-gallery .button {
  margin-right: 5px;
  margin-bottom: 5px;
}

.wpsf-field-sorter .ui-sortable-placeholder {
  height: 20px;
  border: 1px dashed #f1c40f;
  background-color: #fffae4;
}
.wpsf-field-sorter .wpsf-modules {
  float: left;
  width: 50%;
}
.wpsf-field-sorter .wpsf-enabled {
  margin-right: 15px;
}
.wpsf-field-sorter .wpsf-disabled,
.wpsf-field-sorter .wpsf-enabled {
  padding: 5px 15px;
  border: 1px dashed #ddd;
  background-color: #fff;
}
.wpsf-field-sorter .wpsf-disabled li {
  -moz-transition: opacity 0.15s;
  -o-transition: opacity 0.15s;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
  opacity: 0.5;
}
.wpsf-field-sorter .wpsf-disabled .ui-sortable-helper {
  opacity: 1;
}
.wpsf-field-sorter h3 {
  font-size: 14px;
  margin: 0 0 15px 0;
}
.wpsf-field-sorter ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  min-height: 62px;
}
.wpsf-field-sorter ul li {
  margin: 10px 0;
  padding: 10px 15px;
  cursor: move;
  font-weight: bold;
  text-align: center;
  border: 1px solid #e5e5e5;
  background-color: #fafafa;
  -moz-transition: border-color 0.15s;
  -o-transition: border-color 0.15s;
  -webkit-transition: border-color 0.15s;
  transition: border-color 0.15s;
}
.wpsf-field-sorter ul li:hover {
  border-color: #bbb;
}

.wpsf-taxonomy {
  margin: 0;
}
.wpsf-taxonomy > .wpsf-element {
  border-top: 0;
}
.wpsf-taxonomy > .wpsf-field-heading {
  font-size: 1.1em;
  padding: 20px !important;
  border: 1px solid #ddd;
}
.wpsf-taxonomy > .wpsf-field-subheading {
  font-size: 12px;
  padding: 15px !important;
  border: 1px solid #ddd;
}
.wpsf-taxonomy > .wpsf-field-notice .wpsf-notice {
  padding: 15px;
  border-left-width: 1px;
  border-left-style: solid;
  border-right-width: 1px;
  border-right-style: solid;
}

.wpsf-taxonomy-add-fields > .wpsf-element {
  padding: 8px 0;
  margin: 0 0 10px;
}
.wpsf-taxonomy-add-fields > .wpsf-element > .wpsf-title {
  float: none;
  width: 100%;
  padding: 2px 2px 4px 0;
}
.wpsf-taxonomy-add-fields > .wpsf-element > .wpsf-title h4 {
  font-size: 12px;
  font-weight: normal;
}
.wpsf-taxonomy-add-fields > .wpsf-element > .wpsf-fieldset {
  margin-left: 0;
}
.wpsf-taxonomy-add-fields > .wpsf-element > .wpsf-fieldset > .wpsf-help {
  right: -5px;
}

.wpsf-taxonomy-edit-fields > .wpsf-element {
  padding: 20px 0;
}
.wpsf-taxonomy-edit-fields > .wpsf-element > .wpsf-title {
  width: 225px;
}
.wpsf-taxonomy-edit-fields > .wpsf-element > .wpsf-title h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  display: inline-block;
  vertical-align: middle;
}
.wpsf-taxonomy-edit-fields > .wpsf-element > .wpsf-fieldset {
  margin-left: 225px;
}
.wpsf-taxonomy-edit-fields > .wpsf-element > .wpsf-fieldset > .wpsf-help {
  top: -5px;
  right: -5px;
}
.wpsf-taxonomy-edit-fields > .wpsf-field-notice {
  margin: 20px 0;
}
.wpsf-taxonomy-edit-fields > .wpsf-field-subheading,
.wpsf-taxonomy-edit-fields > .wpsf-field-heading {
  margin: 20px 0;
  border: 1px solid #ddd;
}

.wpsf-warning-primary {
  color: #fff !important;
  border-color: #d02c21 #ba281e #ba281e !important;
  background: #e14d43 !important;
  -moz-box-shadow: 0 1px 0 #ba281e !important;
  -webkit-box-shadow: 0 1px 0 #ba281e !important;
  box-shadow: 0 1px 0 #ba281e !important;
  text-shadow: 0 -1px 1px #ba281e, 1px 0 1px #ba281e, 0 1px 1px #ba281e, -1px 0 1px !important;
  text-shadow: 0 -1px 1px #ba281e, 1px 0 1px #ba281e, 0 1px 1px #ba281e, -1px 0 1px #ba281e !important;
}
.wpsf-warning-primary:hover, .wpsf-warning-primary:focus {
  border-color: #ba281e !important;
  background: #e35950 !important;
  -moz-box-shadow: 0 1px 0 #ba281e !important;
  -webkit-box-shadow: 0 1px 0 #ba281e !important;
  box-shadow: 0 1px 0 #ba281e !important;
}
.wpsf-warning-primary:active {
  border-color: #ba281e !important;
  background: #d02c21 !important;
  -moz-box-shadow: inset 0 2px 0 #ba281e !important;
  -webkit-box-shadow: inset 0 2px 0 #ba281e !important;
  box-shadow: inset 0 2px 0 #ba281e !important;
}

.wpsf-text-desc {
  font-style: italic;
  font-weight: 400;
  margin-top: 10px;
  color: #999;
}

.wpsf-text-success {
  color: #2b542c;
}

.wpsf-text-info {
  color: #31708f;
}

.wpsf-text-warning {
  color: #d02c21;
}

.wpsf-text-muted {
  color: #aaa;
}

.wpsf-text-left {
  text-align: left;
}

.wpsf-text-center {
  text-align: center;
}

.wpsf-text-right {
  text-align: right;
}

.wpsf-block-left {
  float: left;
}

.wpsf-block-right {
  float: right;
}

.wpsf-text-highlight {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.wpsf-text-highlight-gray {
  padding: 2px 4px;
  font-size: 90%;
  background-color: #f0f0f0;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

#wpsf-save-ajax {
  display: none;
  position: relative;
  top: 4px;
  right: 5px;
  font-size: 12px;
  padding: 3px 8px;
  color: #fff;
  background-color: #27ae60;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.wpsf-tooltip {
  position: absolute;
  z-index: 100103;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.wpsf-tooltip.in {
  opacity: 1;
}

.wpsf-tooltip-inner {
  max-width: 200px;
  padding: 6px 12px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.wpsf-dialog {
  display: none;
  padding: 0;
}
.wpsf-dialog .wpsf-dialog-header {
  width: 100%;
  padding: 16px 0;
  background-color: #f5f5f5;
  border-bottom: 1px solid #eee;
}
.wpsf-dialog .wpsf-dialog-header select,
.wpsf-dialog .wpsf-dialog-header .chosen-container {
  display: block;
  margin: 0 auto;
  width: 250px !important;
}
.wpsf-dialog .wpsf-element {
  padding: 15px 30px 15px 15px;
}
.wpsf-dialog .wpsf-insert-button {
  text-align: center;
  width: 100%;
  padding: 16px 0;
  background-color: #f5f5f5;
  border-top: 1px solid #eee;
}
.wpsf-dialog .wpsf-dialog-load {
  min-height: 250px;
  overflow: hidden;
  overflow-y: auto;
}
.wpsf-dialog .wpsf-clone-button {
  margin: 10px 0;
  text-align: center;
}
.wpsf-dialog .wpsf-shortcode-clone {
  position: relative;
  border-top: 1px dashed #5cb85c;
}
.wpsf-dialog .wpsf-shortcode-clone .wpsf-remove-clone {
  display: none;
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 1;
  padding: 5px;
  color: #ed6f6f;
  font-size: 14px;
}
.wpsf-dialog .wpsf-shortcode-clone .wpsf-remove-clone:hover {
  text-decoration: none;
  color: #e74242;
}
.wpsf-dialog a:active, .wpsf-dialog a:focus {
  outline: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wpsf-dialog h4 {
  font-size: 13px;
}
.wpsf-dialog h4 small {
  font-style: italic;
  font-weight: 400;
  color: #aaa;
}

#wpsf-icon-dialog .wpsf-icon-search {
  width: 250px;
  height: 40px;
  line-height: 40px;
}
#wpsf-icon-dialog a {
  display: inline-block;
  padding: 5px;
  cursor: pointer;
}
#wpsf-icon-dialog a .wpsf-icon {
  position: relative;
  padding: 5px;
  display: inline-block;
  font-size: 14px;
  width: 30px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  vertical-align: top;
  color: #555;
  border: 1px solid #ccc;
  background-color: #f7f7f7;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
#wpsf-icon-dialog a:hover .wpsf-icon {
  color: #fff;
  border-color: #222;
  background-color: #222;
}
#wpsf-icon-dialog .wpsf-icon-loading {
  color: #999;
  text-align: center;
  margin-top: 10px;
}
#wpsf-icon-dialog .wpsf-icon-title {
  padding: 15px;
  margin: 10px 0;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: #fafafa;
}
#wpsf-icon-dialog .wpsf-icon-title:first-child {
  margin-top: 0;
  border-top: 0;
}

.wpsf-shortcode-scrolling,
.wpsf-icon-scrolling {
  overflow: hidden;
  height: 100%;
}
.wpsf-shortcode-scrolling .wp-full-overlay,
.wpsf-icon-scrolling .wp-full-overlay {
  z-index: 1;
}

#side-sortables .wpsf-content .wpsf-section-title {
  padding: 12px;
}
#side-sortables .wpsf-element {
  padding: 12px;
}
#side-sortables .wpsf-element .wpsf-title {
  float: none;
  width: 100%;
  margin-bottom: 10px;
}
#side-sortables .wpsf-element .wpsf-fieldset {
  margin-left: 0;
}
#side-sortables .wpsf-field-upload input {
  width: 185px;
}
#side-sortables .wpsf-field-notice .wpsf-notice {
  padding: 12px;
}

.widget-content .wpsf-element {
  position: relative;
  top: -1px;
  margin-right: -15px;
  margin-left: -15px;
  padding: 12px 15px;
}
.widget-content .wpsf-element:last-child {
  margin-bottom: 15px;
}
.widget-content .wpsf-element .wpsf-title {
  float: none;
  width: 100%;
  margin-bottom: 5px;
}
.widget-content .wpsf-element .wpsf-fieldset {
  margin-left: 0;
}
.widget-content .wpsf-field-text input {
  width: 100%;
}
.widget-content .wpsf-field-upload input {
  width: 330px;
}
.widget-content .wpsf-field-notice .wpsf-notice {
  padding: 15px;
}

#customize-controls .customize-control-wpsf_field {
  position: relative;
  top: -10px;
  margin-bottom: 0;
}
#customize-controls .customize-control-wpsf_field .chosen-container.chosen-with-drop .chosen-drop {
  position: relative;
}
#customize-controls .wpsf-element {
  margin-right: -15px;
  margin-left: -15px;
  padding: 12px 15px;
}
#customize-controls .wpsf-element .wpsf-title {
  float: none;
  width: 100%;
  margin-bottom: 10px;
}
#customize-controls .wpsf-element .wpsf-title h4 {
  font-size: 14px;
  font-weight: 600;
  color: inherit;
}
#customize-controls .wpsf-element .wpsf-fieldset {
  margin-left: 0;
}
#customize-controls .widget-content .wpsf-element {
  margin-right: -10px;
  margin-left: -10px;
  padding: 10px 12px;
}
#customize-controls .wpsf-field-select select {
  width: 100%;
}
#customize-controls .wpsf-field-upload input {
  width: 175px;
  margin-right: 5px;
}
#customize-controls .wpsf-field-heading {
  color: inherit;
  font-size: 14px;
  line-height: 1em;
}
#customize-controls .wpsf-field-subheading {
  color: inherit;
  font-size: 11px;
}
#customize-controls .wpsf-text-desc {
  margin-top: 4px;
  font-size: 12px;
}
#customize-controls .wpsf-field-content,
#customize-controls .wpsf-field-notice .wpsf-notice {
  padding: 15px;
}

@media only screen and (max-width: 1200px) {
  .wpsf-metabox-framework .wpsf-element .wpsf-title {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .wpsf-metabox-framework .wpsf-element .wpsf-fieldset {
    margin-left: 0;
  }
}
@media only screen and (max-width: 782px) {
  .wpsf-framework .wpsf-header {
    text-align: center;
  }
  .wpsf-framework .wpsf-header h1 {
    width: 100%;
    margin-bottom: 10px;
  }
  .wpsf-framework .wpsf-header fieldset {
    float: none;
  }
  .wpsf-framework .wpsf-expand-all,
  .wpsf-framework .wpsf-nav-background,
  .wpsf-framework .wpsf-nav {
    display: none;
  }
  .wpsf-framework .wpsf-content {
    margin-left: 0;
  }
  .wpsf-framework .wpsf-section-title,
  .wpsf-framework .wpsf-section {
    display: block !important;
  }
  .wpsf-framework .wpsf-element .wpsf-title {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .wpsf-framework .wpsf-element .wpsf-fieldset {
    margin-left: 0;
  }
}


