/*

To get this list of colors inject jQuery at http://www.google.com/design/spec/style/color.html#color-color-palette

Then, run this script to get the list.


(function() {
  var colors = {}, main = {};
  $(".color-group").each(function() {
    var color = $(this).find(".name").text().trim().toLowerCase().replace(" ", "-");
    colors[color] = {};

    $(this).find(".color").not(".main-color").each(function() {
      var shade = $(this).find(".shade").text().trim(),
          hex   = $(this).find(".hex").text().trim();

      colors[color][shade] = hex;
    });
    main[color] = color + "-" + $(this).find(".main-color .shade").text().trim();

  });
  var LESS = "";
  $.each(colors, function(name, shades) {
    LESS += "\n\n";
    $.each(shades, function(shade, hex) {
      LESS += "@" + name + "-" + shade + ": " + hex + ";\n";
    });
    if (main[name]) {
      LESS += "@" + name + ": " + main[name] + ";\n";
    }
  });
  console.log(LESS);
})();


*/
/* ANIMATION */
/* SHADOWS */
:root {
  --sidebar: #212121;
  --primary: #009688;
  --success: #4caf50;
  --danger: #f44336;
  --warning: #ff5722;
  --info: #03a9f4;
  --white: #ffffff;
  --blue: #2196f3;
  --indigo: #3f51b5;
  --purple: #9c27b0;
  --pink: #e91e63;
  --red: #f44336;
  --orange: #ff9800;
  --yellow: #ffeb3b;
  --green: #4caf50;
  --teal: #009688;
  --cyan: #00bcd4;
  --gray: #9e9e9e;
  --label-default: #555555;
}
@media all {
  * {
    margin: 0;
    padding: 0;
  }
  html,
  body,
  main,
  .app-content,
  .tree-container {
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    padding-right: 0;
  }
}
#layout-pjax-container {
  min-width: 100%;
  min-height: 100%;
}
header .navbar.navbar-default {
  color: #009688;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
}
header .navbar .navbar-header {
  padding: 5px 10px;
}
header .navbar .navbar-header .navbar-toggle {
  padding: 0;
  margin: 7px 15px;
  font-size: 18px;
}
header .navbar .navbar-header .navbar-toggle#sidebar-toggle {
  float: left;
  display: block !important;
}
header .navbar .navbar-nav > li.dropdown.open {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
header .navbar .navbar-nav > li > a {
  padding: 5px 15px;
}
header .navbar .navbar-brand {
  height: 40px;
  width: 40px;
  min-width: 40px;
  line-height: 25px;
  padding: 0;
}
header .navbar .navbar-brand.btn {
  background-color: #045479;
}
header .navbar .navbar-form {
  margin: 0;
}
header .navbar .navbar-form .form-group {
  padding: 4px 0 3px;
}
header .navbar .navbar-form .form-group .form-control {
  margin-top: 8px;
}
header .navbar .navbar-form .form-group .input-group-btn {
  padding-left: 0;
}
header .navbar .navbar-form .form-group .input-group-btn .btn {
  padding: 8px 10px 7px;
}
header .navbar .navbar-form .form-group.label-floating label.control-label {
  top: 0;
}
header .navbar .navbar-form .form-group.label-floating.is-focused label.control-label {
  top: -15px;
}
header .navbar .navbar-buttons {
  height: 50px;
  padding: 7px 15px;
}
header .navbar .navbar-buttons .btn {
  border: 0;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
header .navbar .navbar-buttons .btn:focus {
  outline: none;
  background: transparent;
}
header .navbar .dropdown-menu,
header .navbar.navbar-default .dropdown-menu {
  min-width: 100%;
  border-radius: 0;
}
header .navbar .dropdown-menu li > a,
header .navbar.navbar-default .dropdown-menu li > a {
  font-size: 12px;
  padding: 9px 16px;
}
header .navbar .dropdown-menu li > a span,
header .navbar.navbar-default .dropdown-menu li > a span {
  margin-left: 1em;
}
header .logo {
  background: url("../../img/logo_50_dark.png");
  width: 40px;
  height: 40px;
  background-size: cover;
}
body.opened main {
  padding: 50px 0 0 300px;
}
#sidebar {
  left: 0;
  top: 50px;
  bottom: 0;
  position: fixed;
  width: 65px;
  background: #212121;
  z-index: 10;
  overflow: hidden;
  -webkit-transition: width 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
  -o-transition: width 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
  transition: width 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
}
#sidebar .nav li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}
#sidebar .nav li a:hover,
#sidebar .nav li a:focus {
  background: #3b3b3b;
}
#sidebar .nav li a:hover .row-content,
#sidebar .nav li a:focus .row-content {
  color: #ffffff;
}
#sidebar .nav li a span {
  color: rgba(255, 255, 255, 0.65);
}
#sidebar .nav li .row-action {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border-radius: 100%;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 0;
  left: 12px;
  font-size: 24px;
}
#sidebar .nav li .row-content {
  left: -10px;
  display: inline-block;
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
  -o-transition: all 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
  transition: all 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
  margin-left: 50px;
  opacity: 0;
  white-space: nowrap;
  position: relative;
  top: 4px;
}
#sidebar .nav li.active a .row-action {
  color: #009688;
  background: white;
}
#sidebar .nav .open > a,
#sidebar .nav .open > a:hover,
#sidebar .nav .open a:focus {
  background: transparent;
}
#sidebar:hover,
#sidebar.open {
  width: 300px;
}
#sidebar:hover .nav li .row-content,
#sidebar.open .nav li .row-content {
  left: 0;
  opacity: 1;
}
#sidebar:hover .nav li.open ul.dropdown-menu,
#sidebar.open .nav li.open ul.dropdown-menu,
#sidebar:hover .nav li.active ul.dropdown-menu,
#sidebar.open .nav li.active ul.dropdown-menu {
  display: block;
}
#sidebar .dropdown-menu {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  position: relative;
  top: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
  float: none;
  display: none;
}
#sidebar .dropdown-menu li {
  position: relative;
  overflow: visible;
}
#sidebar .dropdown-menu li::before {
  content: "";
  left: 30px;
  top: -12px;
  bottom: 13px;
  position: absolute;
  display: block;
  width: 1px;
  border-left: 1px dashed rgba(255, 255, 255, 0.3);
}
#sidebar .dropdown-menu li > a::before {
  content: "";
  left: 30px;
  top: 15px;
  position: absolute;
  display: block;
  width: 21px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}
#sidebar .dropdown-submenu ul {
  margin-left: 20px;
}
#sidebar .dropdown-submenu ul li a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
#sidebar.no-trans {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.nano .nano-content {
  padding-top: 16px;
}
.nano .nano-pane {
  z-index: 20;
  width: 5px;
  background: transparent;
}
.nano .nano-pane .nano-slider {
  background: rgba(255, 255, 255, 0.4);
}
main {
  padding: 50px 0 0 65px;
}
main .nav li > button {
  padding: 10px 15px;
}
main > .container-fluid {
  width: 100%;
  height: 100%;
  padding-right: 0;
}
main > .container-fluid > .row {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
main .app-content {
  margin-top: 0.75em;
  width: 100%;
  min-width: 100%;
}
main .app-content .tree-container {
  width: 100%;
  height: 100%;
}
main .app-content .tree-container #tree-container {
  overflow: hidden;
  position: relative;
}
main .app-content .tree-container #tree-container svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
main .app-content .tree-container.panning {
  cursor: -moz-grab;
  cursor: -webkit-grab;
  cursor: grab;
}
main .app-content .tree-container svg svg {
  display: block;
}
main .app-content .tree-container svg .link,
main .app-content .tree-container svg .joint-link {
  fill: none;
  stroke: #888;
  stroke-width: 1.5px;
}
main .app-content .tree-container svg .link path.connection:hover,
main .app-content .tree-container svg .joint-link path.connection:hover {
  stroke-width: 6;
}
main .app-content .tree-container svg .html-element {
  position: absolute;
  padding: 3px;
}
main .app-content .tree-container svg .html-element > .symbol-menu {
  float: right;
}
main .app-content .tree-container svg .html-element > .text {
  padding-bottom: 3px;
}
main .app-content .tree-container svg .joint-element .symbol-right .symbol-menu {
  cursor: pointer;
}
main .app-content .tree-container svg .joint-element foreignObject {
  width: 100%;
  height: 100%;
}
main .app-content .tree-container svg .joint-element foreignObject body {
  background: transparent;
  overflow: hidden;
}
main .app-content .tree-container svg .joint-element foreignObject body > div {
  padding: 0 0 0 5px;
  text-align: left;
  max-width: 40em;
}
main .app-content .tree-container svg .joint-element foreignObject body > div > div {
  display: inline;
}
main .app-content .tree-container svg .joint-element foreignObject body > div > div.node-icon {
  padding: 0;
}
main .app-content .tree-container svg .joint-element foreignObject body > div > div.block {
  display: block;
}
main .app-content .tree-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  height: 200px;
  width: 200px;
  text-indent: 250px;
  white-space: nowrap;
  overflow: hidden;
  -webkit-mask-image: url(../../img/loading.png);
  background-color: #000;
  -webkit-animation-name: frame-loading-rotate;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}
main .app-content .context {
  display: none;
  position: absolute;
}
main .app-content .context .context-content {
  position: relative;
}
main .app-content .tree-list {
  list-style-type: none;
}
main .app-content .tree-list a {
  width: 100%;
  white-space: normal;
}
main .app-content .tree-list .col-sm-4:nth-child(3n+1) {
  clear: left;
}
main .app-content .panel ul {
  margin-left: 1.125em;
}
main .app-content .panel .panel-heading .form-group {
  margin: 20px 0 10px 0;
  padding: 0;
}
main .app-content .crm-action {
  border-bottom: 1px dashed;
  cursor: pointer;
}
main .app-content div.tariff {
  display: flex;
}
main .app-content div.tariff .tariff-choose .form-group {
  margin: 0;
}
main .app-content div.tariff .tariff-choose .form-group .btn-group {
  width: 100%;
}
main .app-content div.tariff .tariff-choose .form-group label {
  width: 100%;
  margin-bottom: 1em;
}
main .app-content div.tariff .tariff-choose .form-group label.active {
  background-color: #00aa9a;
  color: rgba(255, 255, 255, 0.84);
}
main .app-content div.tariff .tariff-choose .form-group .btn-group-vertical {
  width: 100%;
}
main .app-content div.tariff .tariff-choose input {
  text-align: center;
  min-width: 1em;
}
main .app-content div.tariff .tariff-name {
  font-size: x-large;
  font-weight: bold;
}
main .app-content div.tariff .tariff-name-desc {
  font-size: large;
}
main .app-content div.tariff .tariff-desc {
  display: flex;
  align-items: center;
  font-size: large;
  text-align: center;
}
main .app-content div.tariff .tariff-desc > div {
  margin: 0 auto;
}
main .app-content div.tariff .tariff-desc span {
  font-weight: bold;
}
main .app-content div.tariff .tariff-desc .promo .total-value {
  text-decoration: line-through;
}
main .app-content div.tariff .tariff-btn button {
  margin-bottom: 1em;
}
main .app-content .list-config .form-group {
  margin: 0;
}
main .app-content .list-config .form-group .checkbox,
main .app-content .list-config .form-group .updown {
  display: inline-block;
  position: relative;
  font-size: x-large;
}
main .app-content .list-config .form-group .fa,
main .app-content .list-config .form-group .fas {
  cursor: pointer;
}
main .app-content .list-config .form-group .fa.fa-sort-up,
main .app-content .list-config .form-group .fas.fa-sort-up {
  vertical-align: bottom;
}
main .app-content .list-config .form-group .fa.fa-sort-down,
main .app-content .list-config .form-group .fas.fa-sort-down {
  vertical-align: top;
}
main .app-content .list-config .form-inline .updown {
  display: inline-block;
  position: relative;
  font-size: x-large;
}
main .app-content .status-config .select2-selection__placeholder span {
  min-width: 3em;
}
main .app-content .widget-action-bar .form-group,
main .app-content .lead_import .form-group {
  margin: 0 !important;
}
main .app-content .panel-body.promo-code {
  padding: 0 15px;
}
main .app-content .panel-body.promo-code .form-group {
  margin: 1.25em 0 0 0;
}
main .app-content .partner-program ol {
  margin-left: 19px;
}
main .app-content .progress.import-progress {
  height: 40px;
}
main .app-content .row.customs .col-sm-6:nth-child(odd) {
  clear: left;
}
main .app-content .row.customs .col-sm-6 .lead-edit-multistring .form-group {
  margin: 0;
}
main .app-content .row.customs .col-sm-6 label {
  color: black;
  font-size: 16px;
}
main .app-content .underline {
  text-decoration: underline;
}
main .app-content table.table thead a {
  display: inline-block;
}
main .app-content table.table thead a:after {
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  opacity: 0.5;
  content: "\00a0\e150";
  color: black;
  font-size: 75%;
}
main .app-content table.table thead a.asc:after {
  content: "\00a0\e155";
}
main .app-content table.table thead a.desc:after {
  content: "\00a0\e156";
}
main .app-content .modal-footer {
  padding-left: 15px;
}
main .app-content .modal-footer a.btn + a.btn {
  margin-bottom: 10px;
}
main .app-content .spectrum-group .input-group-addon:first-child {
  border-right: 0 !important;
}
main .app-content .spectrum-group .input-group-addon + .form-control {
  display: none;
}
main .app-content .togglebutton {
  line-height: 56px;
}
main .app-content .togglebutton label {
  color: var(--label-default);
}
main .app-content .togglebutton label input[type=checkbox] {
  margin-left: 5px;
}
main .app-content .input-group.date .form-group {
  margin: 1em 0 0 0;
}
main .app-content .form-inline .input-group.date .form-group {
  margin: 0;
}
main .app-content .form-inline .btn {
  margin: 0;
}
main .dropdown-menu.text-primary {
  max-height: 400px;
  overflow: auto;
  background-color: #009688;
}
main .dropdown-menu.text-primary a {
  color: rgba(255, 255, 255, 0.84);
}
main .dropdown-menu.text-primary a:hover {
  background-color: #00aa9a;
}
main .text-center.skip-col .col-sm-4 {
  float: none;
  margin: 0 auto;
}
main .btn-group-vertical.btn-group-vertical-collapsed .btn {
  border-radius: 2px !important;
  margin-bottom: 1em;
}
@-webkit-keyframes frame-loading-rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
#node-edit-window .modal-dialog,
#node-edit-preview .modal-dialog {
  width: 90%;
}
#node-edit-window .modal-dialog .modal-content .modal-header .modal-title,
#node-edit-preview .modal-dialog .modal-content .modal-header .modal-title {
  font-weight: bold;
}
#node-edit-window .modal-dialog .modal-content .modal-header .modal-title a,
#node-edit-preview .modal-dialog .modal-content .modal-header .modal-title a {
  margin-left: 2em;
}
#node-edit-window .modal-dialog .modal-content .modal-body,
#node-edit-preview .modal-dialog .modal-content .modal-body {
  padding-top: 0;
}
#node-edit-window .modal-dialog .modal-content .modal-body label,
#node-edit-preview .modal-dialog .modal-content .modal-body label {
  margin: 0;
  font-size: 18px;
  color: black;
}
#node-edit-preview .modal-dialog {
  height: 90%;
  overflow-y: auto;
}
.btn.btn-raised.btn-success.preview {
  background-color: #4B964B;
}
#node-edit-extra .modal-dialog .modal-content .modal-body {
  padding-top: 0;
}
#node-edit-extra .modal-dialog .modal-content .modal-body label {
  margin: 0 5px;
  color: black;
}
.dashboard .path-today {
  font-size: 96px;
}
.dashboard .panel-heading h2 {
  margin: 0;
}
.paypal,
.paypal_en {
  display: inline-block;
  width: 107px;
  height: 47px;
  background: url("../../img/btn_paynowCC_LG.gif");
}
.paypal_en {
  width: 144px;
  background: url("../../img/btn_paynowCC_LG_en.gif");
}
.paypal_logo {
  display: inline-block;
  width: 285px;
  height: 79px;
  background: url("../../img/AM_mc_vs_dc_ae.jpg");
}
.dropdownjs::after {
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900;
  content: "\f0d7";
  bottom: 13px;
  top: auto;
}
.grid-view th a:after {
  position: relative;
  top: 1px;
  display: inline;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  padding-left: 5px;
  content: "\e150";
}
.grid-view th a.asc:after {
  content: "\e155";
}
.grid-view th a.desc:after {
  content: "\e156";
}
.grid-view th a span.glyphicon {
  display: inline;
}
.grid-view .glyphicon,
foreignObject .glyphicon {
  position: static;
  vertical-align: middle;
}
.grid-view .glyphicon.glyphicon-ok,
foreignObject .glyphicon.glyphicon-ok {
  color: #2c8100;
}
.grid-view .glyphicon.glyphicon-remove,
foreignObject .glyphicon.glyphicon-remove {
  color: #950000;
}
.grid-view .glyphicon.glyphicon-minus,
foreignObject .glyphicon.glyphicon-minus {
  color: #0047b8;
}
.grid-view .glyphicon.glyphicon-volume-off,
foreignObject .glyphicon.glyphicon-volume-off {
  color: #434343;
}
.filters .form-group {
  margin: 0;
}
.table.table-striped.lead_import td {
  width: 25%;
}
#quickstart > .modal-dialog {
  width: 90%;
  position: fixed;
  left: 5%;
  height: 90%;
}
#quickstart > .modal-dialog > .modal-content {
  height: 100%;
}
#quickstart > .modal-dialog > .modal-content > .modal-body {
  height: 100%;
  padding: 20px 0;
}
#quickstart > .modal-dialog > .modal-content > .modal-body > .buttons {
  position: absolute;
  top: 0;
  right: 0.25em;
}
#quickstart > .modal-dialog > .modal-content > .modal-body > .buttons > * {
  margin: 0 0.25em;
}
#quickstart > .modal-dialog > .modal-content > .modal-body > iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 992px) {
  #sidebar {
    width: 0;
  }
  main {
    padding-left: 0;
  }
  body.opened main {
    padding: 50px 0 0 0;
  }
}
.select2-selection__rendered {
  min-width: 3em;
}
#help.modal .modal-dialog {
  width: 50em;
}
#help.modal .modal-body h2:first-child {
  margin-top: 0;
}
#help.modal .modal-body .form-group {
  margin: 0.75em 0 0 0;
}
@-webkit-keyframes menubutton {
  0% {
    color: rgba(255, 255, 255, 0.65);
  }
  50% {
    color: rgba(255, 50, 50, 0.65);
  }
  100% {
    color: rgba(255, 255, 255, 0.65);
  }
}
@keyframes menubutton {
  0% {
    color: rgba(255, 255, 255, 0.65);
  }
  50% {
    color: rgba(244, 67, 54, 0.65);
  }
  100% {
    color: rgba(255, 255, 255, 0.65);
  }
}
a.link.animate i {
  -webkit-animation-name: menubutton;
  -webkit-animation-duration: 4s;
  animation-name: menubutton;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
.flex-panels {
  display: flex;
  flex-direction: row;
  margin: 0 -15px;
  align-items: stretch;
  padding-bottom: 1em;
}
.flex-panels > div {
  margin: 0 15px;
  flex: 1 1 auto;
}
.flex-panels > div .panel {
  width: 100%;
  height: 100%;
}
.flex-panels > div .panel ul {
  list-style-type: none;
}
.flex-panels > div .panel ul li {
  float: left;
  padding: 0 0.5em;
}
.vertical-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.w-100 {
  width: 100%;
}
.video-course .panel-body {
  font-size: large;
}
.select2-inline {
  min-width: 20em;
  display: inline-block;
  vertical-align: baseline;
}
.phone-config .form-inline .control-label {
  font-size: 16px;
  margin: 0;
  line-height: 1.42857143;
}
.phone-config .form-group {
  vertical-align: top;
}
.phone-config .form-group .checkbox label,
.phone-config .form-group .radio label,
.phone-config .form-group label {
  color: #333333;
  font-size: 16px;
}
.phone-config .form-group .form-control {
  margin: 0;
}
.access-table .form-group {
  padding-bottom: 0;
}
.access-table .form-control,
.access-table .dropdownjs {
  margin: 0;
}
.access-table .dropdownjs:after {
  top: 0;
}
.access-table .radio-button {
  color: inherit;
  font-size: inherit;
}
.access-table tbody tr td {
  vertical-align: middle;
}
#record-dialog label.control-label {
  font-size: 1.25em;
  color: var(--sidebar);
}
.rating-container,
.field-treeform-public_users .help-block-error {
  display: inline-block;
}
.cursor-pointer {
  cursor: pointer;
}
.grid-row-hint {
  margin-bottom: 20px;
}
.grid-row-hint .label {
  color: inherit;
  font-size: 90%;
}
.grid-row-hint .label-success {
  background-color: #dff0d8;
}
.grid-row-hint .label-warning {
  background-color: #fcf8e3;
}
.grid-row-hint .label-danger {
  background-color: #f2dede;
}
.grid-row-hint .label-info {
  background-color: #d9edf7;
}
.m-0 {
  margin: 0 !important;
}
.p-0 {
  padding: 0 !important;
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.justify-content-around {
  justify-content: space-around;
}
#path-form h4,
#path-dashboard-form h4 {
  margin: 0;
}
#path-form .form-group,
#path-dashboard-form .form-group {
  margin: 0;
}
#path-form .form-group label,
#path-dashboard-form .form-group label {
  margin: 0;
}
.widget-action-bar form {
  display: inline-block;
}
.widget-action-bar .filter-form .col-sm-5,
.widget-action-bar .filter-form .col-sm-2 {
  padding: 0;
}
.btn.icon-small i.fas,
a.icon-small i.fas {
  display: inline-block;
}
.btn.icon-small span,
a.icon-small span {
  display: none;
}
@media (min-width: 1281px) {
  .btn.icon-small i.fas,
  a.icon-small i.fas {
    display: none;
  }
  .btn.icon-small span,
  a.icon-small span {
    display: inline-block;
  }
}
.filter-button {
  position: relative;
}
.filter-button > button {
  margin: 0;
}
.filter-button > .container {
  position: absolute;
  left: 0;
  top: 5em;
  max-width: 50em;
  padding: 0;
  background-color: #eeeeee;
  border-radius: 4px;
  z-index: 100;
}
.buttons label {
  color: var(--label-default);
}
#lead-grid {
  overflow-x: auto;
}
#lead-grid table tr {
  background: #ffffff;
}
#lead-grid table tr td .open-send-mail-dialog {
  color: var(--primary);
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
}
.fl-scrolls::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}
.fl-scrolls::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}
.fl-scrolls::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}
.dropdown-padding {
  padding: 9px 12px;
}
.w-auto {
  width: auto;
}
.font-size-16px {
  font-size: 16px;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.rating-input {
  display: none;
}
#phones-multi .multiple-input .form-group.has-error .iti__selected-flag .iti__flag {
  border: 1px solid #f44336 !important;
}
.iti__country-list {
  z-index: 3;
}
#tree-import-form .iti--allow-dropdown {
  margin-bottom: 0.5rem;
}
#lead-numbers .iti--allow-dropdown,
#lead-emails .form-control {
  margin-top: 0.5rem;
  width: 100%;
}
.mt-0 {
  margin-top: 0 !important;
}
.text-black {
  color: #333333 !important;
}
.form-group .checkbox label,
.form-group .radio label {
  color: var(--label-default);
}
.form-group label {
  color: var(--label-default);
}
.form-group.has-error .control-label {
  color: var(--label-default) !important;
}
.form-group.has-error .help-block-error {
  display: block;
}
.form-group.has-error .form-control {
  background-image: linear-gradient(var(--red), var(--red)), linear-gradient(var(--red), var(--red));
}
.form-group .help-block {
  display: block;
}
#webhook-edit-form .form-group,
#webhook-edit-form h4,
#webhook-edit-form .h4,
#webhook-edit-form h5,
#webhook-edit-form .h5,
#webhook-edit-form h6,
#webhook-edit-form .h6 {
  margin: 0;
}
#webhook-edit-form .form-group label.control-label {
  margin: 0;
}
.td-vcenter {
  vertical-align: middle !important;
  display: table-cell;
}
.tox .tox-label {
  color: #222f3e !important;
}
.w-5em {
  width: 5em !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
#webhook-edit-form .form-group,
#webhook-edit-form h4,
#webhook-edit-form .h4,
#webhook-edit-form h5,
#webhook-edit-form .h5,
#webhook-edit-form h6,
#webhook-edit-form .h6 {
  margin: 0;
}
#webhook-edit-form .form-group label.control-label {
  margin: 0;
}
.dropdown-menu > li > a,
.dropdown-menu > li > button {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
  border: 0;
  background: transparent;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > button:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > button:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.padding-x-5px {
  padding-top: 5px;
  padding-bottom: 5px;
}
.nav-pills-raised > li.active > a,
.nav-pills-raised > li.active > a:hover,
.nav-pills-raised > li.active > a:focus {
  background-color: var(--primary);
}
.admin-tooltip-translate-icon {
  font-size: 25px;
  vertical-align: sub;
}
.admin-tooltip-translate-icon-color {
  width: 20px;
  height: 20px;
}
.rounded-circle {
  border-radius: 50% !important;
}
.bg-warning {
  background-color: var(--warning);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-danger {
  background-color: var(--danger);
}
.bg-success {
  background-color: var(--success);
}
.bg-info {
  background-color: var(--info);
}
.bg-white {
  background-color: var(--white);
  border-style: solid;
  border-width: thin;
}
.color-warning {
  color: var(--warning);
}
.color-primary {
  color: var(--primary);
}
.color-danger {
  color: var(--danger);
}
.color-success {
  color: var(--success);
}
.color-info {
  color: var(--info);
}
.color-white {
  color: var(--white);
}
.spoiler {
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  margin: 5px 0;
  background: rgba(0, 0, 0, 0.05);
}
.spoiler .spoiler-toggle {
  cursor: pointer;
  padding: 5px;
}
.spoiler .spoiler-text {
  padding: 5px;
  display: none;
}
.spoiler .spoiler-toggle:before {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f13a";
}
.spoiler .spoiler-toggle.open:before {
  content: "\f138";
}
.tox-fullscreen #node-edit-window .modal-dialog,
.tox-fullscreen #node-edit-preview .modal-dialog {
  width: 100%;
  margin: 0;
}
main .app-content .tree-container,
.app-content .tree-container {
  min-width: 100%;
  min-height: 100%;
}
main .app-content .tree-container > a,
.app-content .tree-container > a {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: large;
  z-index: 9001;
}
main .app-content .tree-container #tree-container.fullscreen,
.app-content .tree-container #tree-container.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
}
main .app-content .tree-container #tree-container > i,
.app-content .tree-container #tree-container > i {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: large;
  cursor: pointer;
  z-index: 9001;
}
.plyr__menu__container {
  top: 33px;
}
.plyr__menu__container::after {
  border: 0;
}
.plyr__menu__container [role=menu],
.plyr__menu__container > div {
  background: white;
}
.plyr__menu__container > div {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
/*# sourceMappingURL=style.css.map */