/*
 * Tabs
 */
.tabs {
  margin-top: 20px;
}
.tabs .tabs-list {
  position: relative;
  margin: 0;
  z-index: 9;
}
.tabs .tabs-list li {
  position: relative;
  display: inline-block;
  padding: 15px 20px 20px;
  margin: 0;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
.tabs .tabs-list li:after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}
.tabs .tabs-list li:hover, .tabs .tabs-list li:focus {
  color: #2271b1;
}
.tabs .tabs-list li:hover:after, .tabs .tabs-list li:focus:after {
  background: #2271b1;
}
.tabs .tabs-list li.active-tab {
  border-color: #c3c4c7;
  border-bottom: 1px solid #fff;
  background: #fff;
  margin-bottom: -1px;
}
.tabs .tabs-list li.active-tab:after {
  background: #2271b1;
}
.tabs .tab-panel {
  position: relative;
  display: none;
  padding: 35px 25px 40px;
  margin-bottom: 20px;
  border: 1px solid #c3c4c7;
  background: #fff;
}

/*
 * Settings
 */
.settings-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.settings-row.align-normal {
  align-items: normal;
}
.settings-row + .settings-row {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dotted #c3c4c7;
}
.settings-row h3 {
  margin: 10px 0;
}
.settings-row .settings-label {
  width: 30%;
}
.settings-row .settings-label label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
}
.settings-row .settings-label label strong {
  font-weight: 800;
}
.settings-row .settings-label small {
  font-size: 13px;
  font-style: italic;
  opacity: 0.7;
}
.settings-row .settings-input {
  width: 70%;
}
.settings-row .settings-input label {
  display: block;
}
.settings-row .settings-input label + label {
  margin-top: 5px;
}

/*
 * Form Fields
 */
label.selected {
  font-weight: 600;
}

/*
 * Pro Overlay
 */
.pro-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.pro-overlay div {
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: 20px;
  line-height: 22px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%);
}
.pro-overlay div a {
  display: block;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  margin: 12px auto 0;
  padding: 4px 12px;
  border-radius: 5px;
  text-decoration: none;
  background: #00a32a;
  transition: all 0.2s linear;
}
.pro-overlay div a:hover {
  border-color: #c3c4c7;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

/*
 * Badges
 */
.badge {
  position: relative;
  top: -0.8em;
  right: -3px;
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 0;
  color: #fff;
  padding: 2px 5px;
  text-align: center;
  border-radius: 5px;
  background-color: #2271b1;
}
.badge-pro {
  background-color: #00a32a;
}

/*
 * Notifications
 */
.saved_notification {
  background: #fff;
  border: 1px solid #c3c4c7;
  border-left: 4px solid #00a32a;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  margin: 20px 0;
  padding: 0 10px;
}

/*
 * Autocomplete
 */
.cew-autocomplete {
  width: 300px;
}
.cew-autocomplete-terms {
  max-width: 700px;
}
.cew-autocomplete-terms span {
  position: relative;
  display: inline-block;
  margin: 5px 5px 0 0;
  padding: 5px 23px 5px 8px;
  border-radius: 3px;
  color: #fff;
  background-color: #2271b1;
  cursor: default;
}
.cew-autocomplete-terms span:after {
  content: "x";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translate(0%, -50%);
  font-size: 13px;
  cursor: pointer;
}

.ui-autocomplete {
  width: 297px;
  overflow-x: hidden;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.ui-autocomplete > li {
  color: #3c434a;
}
.ui-autocomplete > li:hover:not(.ui-state-disabled) {
  color: #2271b1;
  background-color: #f5f5f5;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}