
/*
 * ARCHIVO CSS UNIFICADO Y OPTIMIZADO
 * Generado automáticamente - Limpio y organizado
 * Fecha: 2025-10-25
 */

/* ========================================
   1. VARIABLES CSS - DESIGN SYSTEM
   ======================================== */
/* CSS Variables - Design System */
:root {
    /* Light mode variables */
    --primary-color: #000000;
    --primary-hover: #545454;
    --violet-color: #8B5CF6;
    --alert-color: #f05f49;
    --border-radius: 5px;
    --btn-font-size: 16px;
    --primary-text-color: #2f2f2f;
    --secondary-text-color: #6B7280;
    --white-color: #ffffff;
    --bg-gray: #f6f8f8;
    --bg-white: #ffffff;
    --border-gray: #e3e3e3;
    --yellowWarningBg: #fef3c7;
    --fontOverYellow: #b0662e;
    --borderYellow: #f1e7bc;
    --successBackground: #d1ffc7;
    --orange-color: #ff872b;
    --orange-hover: #d26512;
    /* Console action colors */
    --console-potential-users-color: #8B5CF6;
    --console-users-reached-color: #4A90E2;
    --console-users-removed-color: #909090;
    --console-users-connected-color: #f05f49;
    --console-likes-color: #e0245d;
    --console-replies-color: #00bcd4;
    --console-retweets-color: #4cab6b;
    
    /* Tweet Analysis Dashboard - Main Colors */
    --tw-blue-500: #3b82f6;
    --tw-violet-500: #8b5cf6;
    --tw-purple-500: #a855f7;
    --tw-orange-500: #f97316;
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #000000;
        --primary-hover: #363636;
        --violet-color: #A78BFA;
        --alert-color: #FF6B6B;
        --primary-text-color: #ffffff;
        --secondary-text-color: #9CA3AF;
        --white-color: #1F2937;
        --bg-gray: #111827;
        --bg-white: #1F2937;
        --border-gray: #374151;
        --yellowWarningBg: #ffe992;
        --fontOverYellow: #92400E;
        --borderYellow: #F59E0B;
        --successBackground: #8bdecb;
        --orange-color: #ff872b;
        --orange-hover: #d75d00;
        /* Console action colors */
        --console-potential-users-color: #8B5CF6;
        --console-users-reached-color: #4A90E2;
        --console-users-removed-color: #909090;
        --console-users-connected-color: #f05f49;
        --console-likes-color: #e0245d;
        --console-replies-color: #00bcd4;
        --console-retweets-color: #4cab6b;
    }

}

/* Dark mode class-based override */
.dark-mode {
    --primary-color: #4A90E2;
    --primary-hover: #357ABD;
    --violet-color: #A78BFA;
    --alert-color: #FF6B6B;
    --primary-text-color: #ffffff;
    --secondary-text-color: #9CA3AF;
    --white-color: #1F2937;
    --bg-gray: #111827;
    --bg-white: #1F2937;
    --border-gray: #374151;
    --yellowWarningBg: #FEF3C7;
    --fontOverYellow: #92400E;
    --borderYellow: #F59E0B;
    --successBackground: #064E3B;
    /* Console action colors */
    --console-potential-users-color: #8B5CF6;
    --console-users-reached-color: #4A90E2;
    --console-users-removed-color: #909090;
    --console-users-connected-color: #f05f49;
    --console-likes-color: #e0245d;
    --console-replies-color: #00bcd4;
    --console-retweets-color: #4cab6b;
}


.ppg-checkout-modal {
  z-index: 99999;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  border: 0px none transparent;
  visibility: visible;
  margin: 0px;
  padding: 0px;
  -webkit-tap-highlight-color: transparent;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.ppg-checkout-modal.ppg-show {
  display: block;
}
.ppg-btn-close {
  position: absolute;
  display: none;
  font-family: cursive;
  color: #ffffff;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 35px;
  background: rgb(0 0 0 / 35%);
  height: 50px;
  width: 50px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.ppg-btn-close:hover {
  background: rgb(0 0 0 / 55%);
}
.ppg-btn-close.ppg-show {
  display: flex;
}
.ppg-btn-close img {
  width: 24px;
}
.ppg-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.ppg-loader {
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  border: 5px solid #19cb92;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: ppg-rotation 1s linear infinite;
}
@keyframes ppg-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* ========================================
   THEME-BASED SVG VISIBILITY
   ======================================== */
/* Por defecto (modo claro): mostrar logo negro, ocultar logo blanco */
.twitter-logo-dark {
    display: none !important;
}

.twitter-logo-light {
    display: block !important;
}

/* En modo oscuro: mostrar logo blanco, ocultar logo negro */
@media (prefers-color-scheme: dark) {
    .twitter-logo-dark {
        display: block !important;
    }
    .twitter-logo-light {
        display: none !important;
    }
}

/* ========================================
   2. BASE STYLES - TEMPLATE CORE
   ======================================== */

html,
body {
  overflow-x: hidden!important;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  background: var(--bg-gray);
}
a {
  color: var(--primary-text-color);
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}

.wrapper {
  min-height: 100%;
}
.wrapper:before,
.wrapper:after {
  display: table;
  content: " ";
}
.wrapper:after {
  clear: both;
}

body > .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.right-side,
.left-side {
  min-height: 100%;
  display: block;
}

.right-side {
  background-color: #f5f5f5;
  margin-left: 270px;
}

.left-side {
  position: absolute;
  width: 270px;
  top: 0;
}
@media screen and (min-width: 992px) {
  .left-side {
    top: 50px;
  }

  .right-side.strech {
    margin-left: 0;
  }
  .right-side.strech > .content-header {
    margin-top: 0px;
  }

  .left-side.collapse-left {
    left: -220px;
  }
}

@media screen and (max-width: 992px) {
  .right-side {
    margin-left: 0px;
  }
}

    body.fixed > .header,
    body.fixed .left-side,
    body.fixed .navbar {
      position: fixed;
    }
    body.fixed > .header {
      top: 0;
      right: 0;
      left: 0;
    }
    body.fixed .navbar {
      left: 0;
      right: 0;
    }
    body.fixed .wrapper {
      margin-top: 50px;
    }

    .content {
      padding: 40px 35px;
      overflow: auto;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .h1,
    .h2,
    .h3,
    .h4,
    .h5,
    .h6 {

      font-family: 'Lato', sans-serif;
    }

    .page-header {
      margin: 10px 0 20px 0;
      font-size: 22px;
    }
    .page-header > small {
      color: #666;
      display: block;
      margin-top: 5px;
    }

    img {
      max-width: 100% !important;
    }
    .sort-highlight {
      background: #f4f4f4;
      border: 1px dashed #ddd;
      margin-bottom: 10px;
    }

    .pad {
      padding: 20px 10px 10px;
    }
    .margin {
      margin: 10px;
    }
    .pad-20 {
      padding: 20px;
    }

    .inline {
      display: inline;
      width: auto;
    }

    .alert-danger {
      background-color: #fad5d5;
    }
    .alert-success {
      background-color: #cffabd;
    }
    .alert-warning {
      background-color: #fcf4c9;
    }

    .badge-success {
      background-color: #27C24C;
      color: #DFF5E4;
    }
    .badge-warning {
      background-color: #FAD733;
      color: #FDF8E5;
    }
    .badge-info {
      background-color: #23B7E5;
      color: #E3F6FC;
    }
    .badge-danger {
      background-color: #F05050;
      color: #FAE6E6;
    }
    .badge-primary {
      background-color: #4697ce;
    }
    .badge-inverse {
      background-color: #4f5259;
      color: #DFE2F0;
    }
    .badge, .label {
      font-weight: bold;
    }

    .label-primary {
      background-color: #4697ce;
    }
    .label-default {
      background-color: #a1a1a1;

    }
    .label-success {
      background-color: #27C24C;
      color: #DFF5E4;
    }
    .label-info {
      background-color: #23B7E5;
      color: #E3F6FC;
    }
    .label-inverse {
      background-color: #4f5259;
      color: #DFE2F0;
    }
    .label-warning {
      background-color: #FAD733;
      color: #FDF8E5;
    }
    .label-danger {
      background-color: #F05050;
      color: #FAE6E6;
    }

    .bg-red,
    .bg-yellow,
    .bg-aqua,
    .bg-blue,
    .bg-light-blue,
    .bg-green,
    .bg-navy,
    .bg-teal,
    .bg-olive,
    .bg-lime,
    .bg-orange,
    .bg-fuchsia,
    .bg-purple,
    .bg-maroon,
    .bg-black
    .bg-violet {
      color: #f9f9f9 !important;
    }

    .twt-area {
      border-bottom: 1px dotted #eee;
      margin-bottom: 5px;
      padding-bottom: 3px;
    }
    .twt-area textarea {
      margin-bottom: 3px;
    }
    .m-lr-10 {

      margin-left: 10px;
      margin-right: 10px;
    }
    .m-t-15 {
      margin-top: 15px;
    }
    .m-b-5 {
      margin-bottom: 5px;
    }
    .m-b-10 {
      margin-bottom: 10px;
    }
    .m-b-15 {
      margin-bottom: 15px;
    }
    .m-b-20 {
      margin-bottom: 20px;
    }
    .teammates a {
      color:#505050;
    }
    .teammates img {
      border-radius: var(--border-radius);
      margin-right: 10px;
    }
    .teammates li {
      border: 1px solid #edf1f2;
    }
    .bg-white {
      background-color: var(--white-color) !important;
    }
    .bg-gray {
      background-color: #eaeaec !important;
    }
    .bg-black {
      background-color: #222222 !important;
    }
    .bg-red {
      background-color: #F05050 !important;
    }
    .bg-yellow {
      background-color: #FAD733 !important;
    }
    .bg-aqua {
      background-color: #4FC1E9 !important
    }
    .bg-blue {
      background-color: #0073b7 !important;
    }
    .bg-light-blue {
      background-color: #8B5CF6 !important;
    }
    .bg-green {
      background-color: #27C24C  !important;
    }
    .bg-navy {
      background-color: #001f3f !important;
    }
    .bg-teal {
      background-color: #39cccc !important;
    }
    .bg-olive {
      background-color: #3d9970 !important;
    }
    .bg-lime {
      background-color: #01ff70 !important;
    }
    .bg-orange {
      background-color: #ff851b !important;
    }
    .bg-fuchsia {
      background-color: #f012be !important;
    }
    .bg-purple {
      background-color: #932ab6 !important;
    }
    .bg-maroon {
      background-color: #85144b !important;
    }
    .bg-violet {
      background-color: #7266ba !important;
    }
    .bg-twitter {
      background-color: #00c7f7;
      color: white;
    }
    .bg-facebook {
      background-color: #335397;
      color: white;
    }
    .bg-google-plus {
      background-color: #df4a32;
      color: white;
    }

    .text-primary {
      color: #4697ce;
    }
    .text-info {
      color: #63b7e6;
    }
    .text-success {
      color: #7dcc93;
    }
    .text-warning {
      color: #e8db4f;
    }
    .text-red {
      color: #f56954 !important;
    }
    .text-yellow {
      color: #f39c12 !important;
    }
    .text-aqua {
      color: #00c0ef !important;
    }
    .text-blue {
      color: #0073b7 !important;
    }
    .text-black {
      color: #222222 !important;
    }
    .text-light-blue {
      color: #8B5CF6 !important;
    }
    .text-green {
      color: #00a65a !important;
    }
    .text-navy {
      color: #001f3f !important;
    }
    .text-teal {
      color: #39cccc !important;
    }
    .text-olive {
      color: #3d9970 !important;
    }
    .text-lime {
      color: #01ff70 !important;
    }
    .text-orange {
      color: #ff851b !important;
    }
    .text-fuchsia {
      color: #f012be !important;
    }
    .text-purple {
      color: #932ab6 !important;
    }
    .text-maroon {
      color: #85144b !important;
    }

    #red .slider-selection {
      background: #f05050;
    }

    #blue .slider-selection {
      background: #4697ce;
    }

    #green .slider-selection {
      background: #27C24C;
    }

    #yellow .slider-selection {
      background: #fad733;
    }

    #aqua .slider-selection {
      background: #00c0ef;
    }

    .slider-handle {
      background-color: #fff;
      border: 2px solid #86D4FC;
    }

    #purple .slider-selection {
      background: #7266ba;
    }

    .hide {
      display: none !important;
    }

    .no-border {
      border: 0px !important;
    }

    .no-padding {
      padding: 0px !important;
    }

    .no-margin {
      margin: 0px !important;
    }

    .no-shadow {
      box-shadow: none!important;
    }

    @media print {
      .no-print {
        display: none;
      }
      .left-side,
      .header,
      .content-header {
        display: none;
      }
      .right-side {
        margin: 0;
      }
    }

    .flat {
      -webkit-border-radius: 0 !important;
      -moz-border-radius: 0 !important;
      border-radius: 0 !important;
    }

    .table-striped > tbody > tr:nth-child(odd) > td,
    .table-striped > tbody > tr:nth-child(odd) > th {
      background-color: #f3f4f5;
    }
    .table.no-border,
    .table.no-border td,
    .table.no-border th {
      border: 0;
    }

    table.text-center,
    table.text-center td,
    table.text-center th {
      text-align: center;
    }
    .table.align th {
      text-align: left;
    }
    .table.align td {
      text-align: right;
    }
    .text-bold,
    .text-bold.table td,
    .text-bold.table th {
      font-weight: 700;
    }
    .border-radius-none {
      -webkit-border-radius: 0 !important;
      -moz-border-radius: 0 !important;
      border-radius: 0 !important;
    }

    .jqstooltip {
      padding: 5px!important;
      width: auto!important;
      height: auto!important;
    }

.bg-teal-gradient {
  background: #39cccc !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39cccc), color-stop(1, #7adddd)) !important;
  background: -ms-linear-gradient(bottom, #39cccc, #7adddd) !important;
  background: -moz-linear-gradient(center bottom, #39cccc 0%, #7adddd 100%) !important;
  background: -o-linear-gradient(#7adddd, #39cccc) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39cccc', GradientType=0) !important;
  color: #fff;
}
.bg-light-blue-gradient {
  background: linear-gradient(135deg, #8B5CF6, #6366F1) !important;
  color: #fff;
}
.bg-blue-gradient {
  background: #0073b7 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important;
  background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important;
  background: -moz-linear-gradient(center bottom, #0073b7 0%, #0089db 100%) !important;
  background: -o-linear-gradient(#0089db, #0073b7) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
  color: #fff;
}
.bg-aqua-gradient {
  background: #00c0ef !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff)) !important;
  background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff) !important;
  background: -moz-linear-gradient(center bottom, #00c0ef 0%, #14d1ff 100%) !important;
  background: -o-linear-gradient(#14d1ff, #00c0ef) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important;
  color: #fff;
}
.bg-yellow-gradient {
  background: #f39c12 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important;
  background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important;
  background: -moz-linear-gradient(center bottom, #f39c12 0%, #f7bc60 100%) !important;
  background: -o-linear-gradient(#f7bc60, #f39c12) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
  color: #fff;
}
.bg-purple-gradient {
  background: #932ab6 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #932ab6), color-stop(1, #b959d9)) !important;
  background: -ms-linear-gradient(bottom, #932ab6, #b959d9) !important;
  background: -moz-linear-gradient(center bottom, #932ab6 0%, #b959d9 100%) !important;
  background: -o-linear-gradient(#b959d9, #932ab6) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b959d9', endColorstr='#932ab6', GradientType=0) !important;
  color: #fff;
}
.bg-green-gradient {
  background: #00a65a !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d)) !important;
  background: -ms-linear-gradient(bottom, #00a65a, #00ca6d) !important;
  background: -moz-linear-gradient(center bottom, #00a65a 0%, #00ca6d 100%) !important;
  background: -o-linear-gradient(#00ca6d, #00a65a) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important;
  color: #fff;
}
.bg-red-gradient {
  background: #f56954 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f56954), color-stop(1, #f89384)) !important;
  background: -ms-linear-gradient(bottom, #f56954, #f89384) !important;
  background: -moz-linear-gradient(center bottom, #f56954 0%, #f89384 100%) !important;
  background: -o-linear-gradient(#f89384, #f56954) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89384', endColorstr='#f56954', GradientType=0) !important;
  color: #fff;
}
.bg-black-gradient {
  background: #222222 !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #222222), color-stop(1, #3c3c3c)) !important;
  background: -ms-linear-gradient(bottom, #222222, #3c3c3c) !important;
  background: -moz-linear-gradient(center bottom, #222222 0%, #3c3c3c 100%) !important;
  background: -o-linear-gradient(#3c3c3c, #222222) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3c3c3c', endColorstr='#222222', GradientType=0) !important;
  color: #fff;
}
.bg-maroon-gradient {
  background: #85144b !important;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #85144b), color-stop(1, #b11b64)) !important;
  background: -ms-linear-gradient(bottom, #85144b, #b11b64) !important;
  background: -moz-linear-gradient(center bottom, #85144b 0%, #b11b64 100%) !important;
  background: -o-linear-gradient(#b11b64, #85144b) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b11b64', endColorstr='#85144b', GradientType=0) !important;
  color: #fff;
}
.connectedSortable {
  min-height: 100px;
}

body > .header {
  position: relative;
  max-height: 100px;
  z-index: 1030;
}
body > .header .navbar {
  height: 60px;
  margin-bottom: 0;
  margin-left: 270px;
}
body > .header .navbar .sidebar-toggle {
  float: left;
  padding: 9px 5px;
  margin-top: 6px;
  margin-right: 0;
  margin-bottom: 8px;
  margin-left: 5px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}
body > .header .navbar .sidebar-toggle:hover .icon-bar {
  background: #f6f6f6;
}
body > .header .navbar .sidebar-toggle .icon-bar {
  display: block;
  width: 21px;
  border-radius: 2px;
  height: 4px;
  padding: 0px;
}
body > .header .navbar .sidebar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
body > .header .navbar .nav > li.user > a {color: var(--primary-text-color);}
body > .header .navbar .nav > li.user > a > .fa,
body > .header .navbar .nav > li.user > a > .glyphicon,
body > .header .navbar .nav > li.user > a > .ion {
  margin-right: 5px;
  color: #FFF;
  color: var(--white-color);
}
body > .header .navbar .nav > li > a > .label {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  right: 2px;
  font-size: 10px;
  font-weight: normal;
  width: 15px;
  height: 15px;
  line-height: 1.0em;
  text-align: center;
  padding: 2px;
}
body > .header .navbar .nav > li > a:hover > .label {
  top: 3px;
}
body > .header .logo {
  float: left;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  padding: 0 0px;
  width: 270px;
  font-weight: 500;
  height: 60px;
  display: block;
  background: #111827;
}
body > .header .logo .owl-part {
  color: #ffffff;
}

body > .header .logo img {
  margin-right: 10px;
  margin-top: 4px;
  width: 80px;
}
body > .header .logo .icon {
  margin-right: 10px;
}
.owlead-wordmark {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
.owlead-wordmark .owl-part {
  color: #111827;
}
.owlead-wordmark .ead-part {
  background: linear-gradient(135deg, #8B5CF6, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.dark-mode .owlead-wordmark .owl-part,
[data-theme="dark"] .owlead-wordmark .owl-part {
  color: #ffffff;
}
.right-side > .content-header {
  position: relative;
  padding: 15px;
}
.right-side > .content-header > h1 {
  margin: 0;
  font-size: 24px;
}
.right-side > .content-header > h1 > small {
  font-size: 15px;
  display: inline-block;
  padding-left: 4px;
  font-weight: 300;
}
.breadcrumb {
  background-color: #fff;
}
.breadcrumb a {
  color: #000;
}
.right-side > .content-header > .breadcrumb {
  float: right;
  background: transparent;
  margin-top: 0px;
  margin-bottom: 0;
  font-size: 12px;
  padding: 7px 5px;
  position: absolute;
  top: 15px;
  right: 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.breadcrumb-alt {
  overflow: hidden;
  list-style: none;
  margin: 0px 0px 20px;
  padding: 0px;
  width: 100%;
}
.breadcrumb-alt > li {
  float: left;
  margin: 0px 25px 0px 0px;
}
.breadcrumb-alt > li > a {
  position: relative;
  float: left;
  background-color: rgb(238, 238, 238);
  color: rgb(118, 118, 118);
  font-size: 12px;
  padding: 10px;
}
.breadcrumb-alt > li > a::before {
  position: absolute;
  top: 50%;
  left: -1em;
  margin-top: -1.6em;
  border-color: rgb(238, 238, 238) rgb(238, 238, 238) rgb(238, 238, 238) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 1.5em 0px 1.7em 1em;
  content: '';
}
.breadcrumb-alt > li > a::after {
  position: absolute;
  top: 50%;
  right: -1em;
  margin-top: -1.5em;
  border-bottom: 1.5em solid rgba(0, 0, 0, 0);
  border-left: 1em solid rgb(238, 238, 238);
  border-top: 1.5em solid rgba(0, 0, 0, 0);
  content: '';
}
.right-side > .content-header > .breadcrumb > li > a {
  color: #444;
  text-decoration: none;
}
.right-side > .content-header > .breadcrumb > li > a > .fa,
.right-side > .content-header > .breadcrumb > li > a > .glyphicon,
.right-side > .content-header > .breadcrumb > li > a > .ion {
  margin-right: 5px;
}
.right-side > .content-header > .breadcrumb > li + li:before {
  content: '>\00a0';
}
@media screen and (max-width: 767px) {
  .right-side > .content-header > .breadcrumb {
    position: relative;
    margin-top: 5px;
    top: 0;
    right: 0;
    float: none;
    background: #efefef;
  }

  .no-data-yet span {
	min-width: 90% !important;
  }
  
  .btn {
	padding: 8px 13px !important;
	font-size: var(--font-size);
	}

	.sidebar .sidebar-menu {
		margin-top: 74px !important;
	}

	.modal-body {
		padding: 10px 20px !important;
	}

	body > .header .logo img {
		margin: 0px;
	}

	:root {
		--font-size: 14px;
	}

  body > .header .logo {
    left: 76px;
    width: 60px !important;
    top: -2px;
  }

  body > .header .navbar{
   width: 150px;
 }

}
/* CONSOLIDATED: Moved to consolidated @media (max-width: 994px) block at end of file */
@media screen and (max-width: 560px) {
  body > .header {
    position: relative;
  }
  body > .header .navbar {
    margin: 0;
    z-index: 4;
  }
  body.fixed > .header {
    position: fixed;
  }
  body.fixed > .wrapper,
  body.fixed .sidebar-offcanvas {
    margin-top: 100px!important;
  }
}

.sidebar {
  margin-bottom: 5px;
}
.sidebar .sidebar-form input:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: transparent!important;
}
.sidebar .sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 40px;
}
.sidebar .sidebar-menu > li {
  margin: 10px 20px;
  padding: 0px;
}
.sidebar .sidebar-menu > li > a {
  padding: 8px 5px 13px 16px;
  display: block;
  position: relative;
  margin-bottom: -2px;
}
.sidebar .sidebar-menu > li > a > .fa,
.sidebar .sidebar-menu > li > a > .glyphicon,
.sidebar .sidebar-menu > li > a > .ion {
  width: 18px;
}
.sidebar .sidebar-menu .treeview-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar .sidebar-menu .treeview-menu > li {
  margin: 0;
}
.sidebar .sidebar-menu .treeview-menu > li > a {
  padding: 8px 5px 8px 15px;
  display: block;
  font-size: 14px;
  margin: 0px 0px;
}
.sidebar .sidebar-menu .treeview-menu > li > a > .fa,
.sidebar .sidebar-menu .treeview-menu > li > a > .glyphicon,
.sidebar .sidebar-menu .treeview-menu > li > a > .ion {
  width: 20px;
}
.user-panel {
  padding: 10px;
}
.user-panel:before,
.user-panel:after {
  display: table;
  content: " ";
}
.user-panel:after {
  clear: both;
}
.user-panel > .image > img {
  width: 45px;
  height: 45px;
}
.user-panel > .info {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  margin-top: 20px;
  margin-left: 4px;
}
.user-panel > .info > p {
  margin-bottom: 9px;
}
.user-panel > .info > a {
  text-decoration: none;
  padding-right: 5px;
  margin-top: 3px;
  font-size: 11px;
  font-weight: normal;
}
.user-panel > .info > a > .fa,
.user-panel > .info > a > .ion,
.user-panel > .info > a > .glyphicon {
  margin-right: 3px;
}

 @media screen and (max-width: 992px) {
  .relative {
    position: relative;
  }
  .row-offcanvas-right .sidebar-offcanvas {
    right: -220px;
  }
  .row-offcanvas-left .sidebar-offcanvas {
    left: -270px;
    z-index: 1000;
  }
  .row-offcanvas-right.active {
    right: 220px;
  }
  .row-offcanvas-left.active {
    left: 270px;
  }
  .sidebar-offcanvas {
    left: 0;
  }
  body.fixed .sidebar-offcanvas {
    margin-top: 50px;
    left: -220px;
  }
  body.fixed .row-offcanvas-left.active .navbar {
    left: 220px !important;
    right: 0;
  }
  body.fixed .row-offcanvas-left.active .sidebar-offcanvas {
    left: 0px;
  }
}

.dropdown-menu {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  z-index: 2300;
}
.dropdown-menu > li > a > .glyphicon,
.dropdown-menu > li > a > .fa,
.dropdown-menu > li > a > .ion {
  margin-right: 10px;
}
.dropdown-menu > li > a:hover {
  background-color: #8B5CF6;
  color: #f9f9f9;
}
.dropdown-menu-right > li > a:hover {
  background-color: #39435c;
  color: #f9f9f9;
}
.manage-plan-dropdown.dropdown-menu {
  padding: 4px 0 !important;
  min-width: 220px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.open > .manage-plan-dropdown.dropdown-menu {
  display: block;
}
.manage-plan-item,
.manage-plan-item:focus,
.manage-plan-item:visited {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 16px !important;
  margin: 0 !important;
  color: #374151 !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  transition: background .15s;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}
.manage-plan-item .fa {
  width: 16px;
  font-size: 14px;
  color: #9ca3af;
  text-align: center;
  flex-shrink: 0;
  transition: color .15s;
  margin: 0 !important;
}
.manage-plan-item:hover {
  background: #f3f4f6 !important;
  color: #1f2937 !important;
}
.manage-plan-item:hover .fa {
  color: #8B5CF6 !important;
}
.manage-plan-dropdown .manage-plan-item {
  width: 100% !important;
}
.manage-plan-dropdown .manage-plan-item:first-child {
  border-radius: 8px 8px 0 0 !important;
}
.manage-plan-dropdown .manage-plan-item:last-child {
  border-radius: 0 0 8px 8px !important;
}

.skin-blue .navbar .dropdown-menu > li > a {
  color: #444444;
}

.navbar-nav > .notifications-menu > .dropdown-menu,
.navbar-nav > .messages-menu > .dropdown-menu,
.navbar-nav > .tasks-menu > .dropdown-menu {
  width: 260px;
  padding: 0 0 0 0!important;
  margin: 0!important;
  top: 100%;
  border: 1px solid #dfdfdf;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  border-radius: 4px !important;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.header,
.navbar-nav > .messages-menu > .dropdown-menu > li.header,
.navbar-nav > .tasks-menu > .dropdown-menu > li.header {
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #ffffff;
  padding: 7px 10px;
  border-bottom: 1px solid #f4f4f4;
  color: #444444;
  font-size: 14px;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.header:after,
.navbar-nav > .messages-menu > .dropdown-menu > li.header:after,
.navbar-nav > .tasks-menu > .dropdown-menu > li.header:after {
  bottom: 100%;
  left: 92%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 7px;
  margin-left: -7px;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  -webkit-border-top-left-radius: 0px;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f4;
  padding: 7px 10px;
  border-bottom: 1px solid #eeeeee;
  color: #444444;
  text-align: center;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
  background: #f4f4f4;
  text-decoration: none;
  font-weight: normal;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: hidden;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  display: block;
  white-space: nowrap;

  border-bottom: 1px solid #f4f4f4;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
  background: #fafafa;
  text-decoration: none;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
  font-size: 12px;
  color: #444444;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > i {
  border-radius: 30px;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
  font-size: 20px;
  width: 50px;
  text-align: center;
  padding: 15px 0px;
  margin-right: 5px;

  background: #00c0ef;
  color: #f9f9f9;

  color: rgba(255, 255, 255, 0.7);
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.danger,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.danger,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.danger {
  background: #f56954;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.warning,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.warning,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.warning {
  background: #f39c12;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.success,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.success,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.success {
  background: #00a65a;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.info,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.info,
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.info {
  background: #00c0ef;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
  margin: 0px;
  line-height: 20px;
  padding: 10px 5px 10px 5px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
  margin: auto 10px auto auto;
  width: 40px;
  height: 40px;
  border: 1px solid #dddddd;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
  padding: 0;
  margin: 0 0 0 45px;
  color: #444444;
  font-size: 15px;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
  color: #999999;
  font-size: 10px;
  float: right;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
  margin: 0 0 0 45px;
  font-size: 12px;
  color: #888888;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  display: table;
  content: " ";
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  clear: both;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  padding: 10px;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
  font-size: 14px;
  padding: 0;
  margin: 0 0 10px 0;
  color: #666666;
}
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
  padding: 0;
  margin: 0;
}
.navbar-nav > .user-menu > .dropdown-menu {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0;
  border-top-width: 0;
  border: 1px solid var(--border-gray);
  width: 225px;
}

  .arrow-up1 {
    width: 0;
    height: 0;
    left: 176px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--border-gray);
    position: absolute;
    top: -6px;
    z-index: 10000;
  }

  .arrow-up2 {
    width: 0;
    height: 0;
    left: 176px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--border-gray);
    position: absolute;
    top: -5px;
    z-index: 10000;
  }

  .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
    height: 175px;
    padding: 10px;
    background: #8B5CF6;
    text-align: center;
  }
  .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
    z-index: 5;
    height: 90px;
    width: 90px;
    border: 8px solid;
    border-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
  }
  .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
    z-index: 5;
    color: #f9f9f9;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    text-shadow: 2px 2px 3px #333333;
    margin-top: 10px;
  }
  .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
    display: block;
    font-size: 12px;
  }
  .navbar-nav > .user-menu > .dropdown-menu > li.user-body {
    padding: 15px;
    border-bottom: 1px solid #f4f4f4;
    border-top: 1px solid #dddddd;
  }
  .navbar-nav > .user-menu > .dropdown-menu > li.user-body:before,
  .navbar-nav > .user-menu > .dropdown-menu > li.user-body:after {
    display: table;
    content: " ";
  }
  .navbar-nav > .user-menu > .dropdown-menu > li.user-body:after {
    clear: both;
  }
  .navbar-nav > .user-menu > .dropdown-menu > li.user-body > div > a {
    color: #0073b7;
  }
  .navbar-nav > .user-menu > .dropdown-menu > li.user-footer {
    background-color: #f9f9f9;
    padding: 10px;
  }
  .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:before,
  .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after {
    display: table;
    content: " ";
  }
  .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after {
    clear: both;
  }
  .navbar-nav > .user-menu > .dropdown-menu > li.user-footer .btn-default {
    color: #666666;
  }

  .open > .dropdown-menu {
    animation-name: fadeAnimation;
    animation-duration: .7s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    -webkit-animation-name: fadeAnimation;
    -webkit-animation-duration: .7s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-name: fadeAnimation;
    -moz-animation-duration: .7s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease;
    -moz-animation-fill-mode: forwards;
  }
  @keyframes fadeAnimation {
    from {
      opacity: 0;
      top: 120%;
    }
    to {
      opacity: 1;
      top: 100%;
    }
  }
  @-webkit-keyframes fadeAnimation {
    from {
      opacity: 0;
      top: 120%;
    }
    to {
      opacity: 1;
      top: 100%;
    }
  }

  @media screen and (max-width: 994px) {
    .navbar-nav > .notifications-menu > .dropdown-menu,
    .navbar-nav > .user-menu > .dropdown-menu,
    .navbar-nav > .tasks-menu > .dropdown-menu,
    .navbar-nav > .messages-menu > .dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      left: auto;
      border-right: 1px solid #dddddd;
      border-bottom: 1px solid #dddddd;
      border-left: 1px solid #dddddd;
      background: #ffffff;
    }
  }

  /* CONSOLIDATED: Moved to consolidated @media (max-width: 480px) block at end of file */

.form-control {

  font-size: 16px;
  box-shadow: none;
  padding: 0px 8px;
  height: 45px;
}
.form-control:focus {
  border-color: #8B5CF6 !important;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
}
.form-group.has-success label {
  color: #00a65a;
}
.form-group.has-success .form-control {
  border-color: #00a65a !important;
  box-shadow: none;
}
.form-group.has-warning label {
  color: #f39c12;
}
.form-group.has-warning .form-control {
  border-color: #f39c12 !important;
  box-shadow: none;
}
.form-group.has-error label {
  color: #f56954;
}
.form-group.has-error .form-control {
  border-color: #f56954 !important;
  box-shadow: none;
}

.input-group .input-group-addon {
  border-radius: 0;
  background-color: var(--bg-gray);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.btn-group-vertical .btn.btn-flat:first-of-type,
.btn-group-vertical .btn.btn-flat:last-of-type {
  border-radius: 0;
}

.progress.sm {
  height: 10px;
}
.progress.xs {
  height: 7px;
}

.progress.vertical {
  position: relative;
  width: 30px;
  height: 200px;
  display: inline-block;
  margin-right: 10px;
}
.progress.vertical > .progress-bar {
  width: 100%!important;
  position: absolute;
  bottom: 0;
}
.progress.vertical.sm {
  width: 20px;
}
.progress.vertical.xs {
  width: 10px;
}

.table tr > td .progress {
  margin: 0;
}
.progress-bar-light-blue,
.progress-bar-primary {
  background-color: #8B5CF6;
}
.progress-striped .progress-bar-light-blue,
.progress-striped .progress-bar-primary {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-green,
.progress-bar-success {
  background-color: #00a65a;
}
.progress-striped .progress-bar-green,
.progress-striped .progress-bar-success {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-aqua,
.progress-bar-info {
  background-color: #00c0ef;
}
.progress-striped .progress-bar-aqua,
.progress-striped .progress-bar-info {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-yellow,
.progress-bar-warning {
  background-color: #f39c12;
}
.progress-striped .progress-bar-yellow,
.progress-striped .progress-bar-warning {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-red,
.progress-bar-danger {
  background-color: #f56954;
}
.progress-striped .progress-bar-red,
.progress-striped .progress-bar-danger {
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

    .small-box {
      position: relative;
      display: block;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px;
      margin-bottom: 15px;
    }
    .small-box > .inner {
      padding: 10px;
    }
    .small-box > .small-box-footer {
      position: relative;
      text-align: center;
      padding: 3px 0;
      color: #fff;
      color: rgba(255, 255, 255, 0.8);
      display: block;
      z-index: 10;
      background: rgba(0, 0, 0, 0.1);
      text-decoration: none;
    }
    .small-box > .small-box-footer:hover {
      color: #fff;
      background: rgba(0, 0, 0, 0.15);
    }
    .small-box h3 {
      font-size: 38px;
      font-weight: bold;
      margin: 0 0 10px 0;
      white-space: nowrap;
      padding: 0;
    }
    .small-box p {
      font-size: 15px;
    }
    .small-box p > small {
      display: block;
      color: #f9f9f9;
      font-size: 13px;
      margin-top: 5px;
    }
    .small-box h3,
    .small-box p {
      z-index: 5px;
    }
    .small-box .icon {
      position: absolute;
      top: auto;
      bottom: 5px;
      right: 5px;
      z-index: 0;
      font-size: 90px;
      color: rgba(0, 0, 0, 0.15);
    }
    .small-box:hover {
      text-decoration: none;
      color: #f9f9f9;
    }
@keyframes tansformAnimation {
  from {
    font-size: 90px;
  }
  to {
    font-size: 100px;
  }
}
@-webkit-keyframes tansformAnimation {
  from {
    font-size: 90px;
  }
  to {
    font-size: 100px;
  }
}
/* CONSOLIDATED: Moved to consolidated @media (max-width: 480px) block at end of file */

.box {
  position: relative;
  background: #ffffff;

  margin-bottom: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 100%;

}
.box.box-primary {
  border-top-color: #8B5CF6;
}
.box.box-info {
  border-top-color: #00c0ef;
}
.box.box-danger {
  border-top-color: #f56954;
}
.box.box-warning {
  border-top-color: #f39c12;
}
.box.box-success {
  border-top-color: #00a65a;
}
.box.height-control .box-body {
  max-height: 300px;
  overflow: auto;
}
.box .box-header {
  position: relative;
  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 0px solid #f4f4f4;
  color: #444;
}
.box .box-header:before,
.box .box-header:after {
  display: table;
  content: " ";
}
.box .box-header:after {
  clear: both;
}
.box .box-header > .fa,
.box .box-header > .glyphicon,
.box .box-header > .ion,
.box .box-header .box-title {
  display: inline-block;
  padding: 10px 10px 10px 10px;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  float: left;
  cursor: default;
}
.box .box-header a {
  color: #444;
}
.box .box-header > .box-tools {
  padding: 5px 10px 5px 5px;
}
.box .box-body {
  padding: 10px;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.box .box-body > table,
.box .box-body > .table {
  margin-bottom: 0;
}
.box .box-body.chart-responsive {
  width: 100%;
  overflow: hidden;
}
.box .box-body > .chart {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.box .box-body > .chart svg,
.box .box-body > .chart canvas {
  width: 100%!important;
}
.box .box-body .fc {
  margin-top: 5px;
}
.box .box-body .fc-header-title h2 {
  font-size: 15px;
  line-height: 1.6em;
  color: #666;
  margin-left: 10px;
}
.box .box-body .fc-header-right {
  padding-right: 10px;
}
.box .box-body .fc-header-left {
  padding-left: 10px;
}
.box .box-body .fc-widget-header {
  background: #fafafa;
  box-shadow: inset 0px -3px 1px rgba(0, 0, 0, 0.02);
}
.box .box-body .fc-grid {
  width: 100%;
  border: 0;
}
.box .box-body .fc-widget-header:first-of-type,
.box .box-body .fc-widget-content:first-of-type {
  border-left: 0;
  border-right: 0;
}
.box .box-body .fc-widget-header:last-of-type,
.box .box-body .fc-widget-content:last-of-type {
  border-right: 0;
}
.box .box-body .table {
  margin-bottom: 0;
}
.box .box-body .full-width-chart {
  margin: -19px;
}
.box .box-body.no-padding .full-width-chart {
  margin: -9px;
}
.box .box-footer {
  border-top: 1px solid #f4f4f4;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 10px;
  background-color: #ffffff;
}
.box.box-solid {
  border-top: 0px;
}
.box.box-solid > .box-header {
  padding-bottom: 0px!important;
}
.box.box-solid > .box-header .btn.btn-default {
  background: transparent;
}
.box.box-solid.box-primary > .box-header {
  color: #fff;
  background: #8B5CF6;
  background-color: #8B5CF6;
}
.box.box-solid.box-primary > .box-header a {
  color: #444;
}
.box.box-solid.box-info > .box-header {
  color: #fff;
  background: #00c0ef;
  background-color: #00c0ef;
}
.box.box-solid.box-info > .box-header a {
  color: #444;
}
.box.box-solid.box-danger > .box-header {
  color: #fff;
  background: #f56954;
  background-color: #f56954;
}
.box.box-solid.box-danger > .box-header a {
  color: #444;
}
.box.box-solid.box-warning > .box-header {
  color: #fff;
  background: #f39c12;
  background-color: #f39c12;
}
.box.box-solid.box-warning > .box-header a {
  color: #444;
}
.box.box-solid.box-success > .box-header {
  color: #fff;
  background: #00a65a;
  background-color: #00a65a;
}
.box.box-solid.box-success > .box-header a {
  color: #444;
}
.box.box-solid > .box-header > .box-tools .btn {
  border: 0;
  box-shadow: none;
}
.box.box-solid.collapsed-box .box-header {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.box.box-solid[class*='bg'] > .box-header {
  color: #fff;
}
.box .box-group > .box {
  margin-bottom: 5px;
}
.box .knob-label {
  text-align: center;
  color: #333;
  font-weight: 100;
  font-size: 12px;
  margin-bottom: 0.3em;
}
.box .todo-list {
  margin: 0;
  padding: 0px 0px;
  list-style: none;
}
.box .todo-list > li {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 10px;
  background: #f3f4f5;
  margin-bottom: 2px;
  border-left: 2px solid #e6e7e8;
  color: #444;
}
.box .todo-list > li:last-of-type {
  margin-bottom: 0;
}
.box .todo-list > li.danger {
  border-left-color: #f56954;
}
.box .todo-list > li.warning {
  border-left-color: #f39c12;
}
.box .todo-list > li.info {
  border-left-color: #00c0ef;
}
.box .todo-list > li.success {
  border-left-color: #00a65a;
}
.box .todo-list > li.primary {
  border-left-color: #8B5CF6;
}
.box .todo-list > li > input[type='checkbox'] {
  margin: 0 10px 0 5px;
}
.box .todo-list > li .text {
  display: inline-block;
  margin-left: 5px;
  font-weight: 600;
}
.box .todo-list > li .label {
  margin-left: 10px;
  font-size: 9px;
}
.box .todo-list > li .tools {
  display: none;
  float: right;
  color: #f56954;
}
.box .todo-list > li .tools > .fa,
.box .todo-list > li .tools > .glyphicon,
.box .todo-list > li .tools > .ion {
  margin-right: 5px;
  cursor: pointer;
}
.box .todo-list > li:hover .tools {
  display: inline-block;
}
.box .todo-list > li.done {
  color: #999;
}
.box .todo-list > li.done .text {
  text-decoration: line-through;
  font-weight: 500;
}
.box .todo-list > li.done .label {
  background: #eaeaec !important;
}
.box .todo-list .handle {
  display: inline-block;
  cursor: move;
  margin: 0 5px;
}

.chat-form {
  margin-top: 25px;
  clear: both;
}

.chat-form .input-cont {
  margin-bottom: 10px;
}

.chat-form .input-cont input {
  margin-bottom: 0px;
}

.chat-form .input-cont input{
  border: 1px solid #d3d3d3 !important;
  margin-top:0;
  min-height: 45px;
}

.chat-form .input-cont input {
  background-color: #fff !important;
  margin-bottom: 5px;

}

.chat-features a {
  margin-left: 10px;
}

.chat-features a i{
  color: #d0d0d0;
}

.timeline-messages, .msg-time-chat , .timeline-messages .msg-in, .timeline-messages .msg-out {
  position: relative;
  border-radius: 2px;
}

.timeline-heading {
  padding:8px 15px;
}
.timeline-messages .msg-in .arrow {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  display: block;
  height: 0;
  left: -8px;
  position: absolute;
  top: 13px;
  width: 0;
}
.timeline-messages .msg-out .arrow {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  display: block;
  height: 0;
  left: -8px;
  position: absolute;
  top: 13px;
  width: 0;
}

.msg-time-chat:first-child:before {
  margin-top: 16px;
}
.msg-time-chat:before {
  background:#CCCCCC;
  border: 2px solid #FAFAFA;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  height: 14px;
  margin: 23px 0 0 -6px;
  width: 14px;
}
.msg-time-chat:hover:before {
  background: #41cac0;
}
.msg-time-chat:first-child {
  padding-top: 0;
}
.message-img-in {
  float: left;
  margin-right: 10px;
  overflow: hidden;
}
.message-img-in img {
  display: block;
  height: 50px;
  width: 50px;
  border: 1px solid #eee;
}

.message-img-out {
  float: right;
  margin-left: 10px;
  overflow: hidden;
}
.message-img-out img {
  display: block;
  height: 50px;
  width: 50px;
  border: 1px solid #eee;
}
.msg-time-chat .msg-in .text {

  padding: 10px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: #F4f4f4;
  display: inline-block;
}

.msg-time-chat .msg-out .text {

  padding: 10px;
  border-radius: 4px;

  background-color: #F1F5FD;
}
.msg-time-chat p {
  margin: 0;
}
.msg-time-chat .attribution {
  font-size: 11px;
  margin: 0px 0 5px;
}
.msg-time-chat {
  overflow: hidden;
  padding:8px 0;
}

.msg-in a, .msg-in a:hover{
  color: #acacac;
  text-decoration: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin-right: 10px;
  font-weight: 400;
  font-size: 13px;
}
.msg-out a, .msg-out a:hover{
  color: #288f98;
  text-decoration: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin-right: 10px;
  font-weight: 400;
  font-size: 13px;
}

  .box > .overlay,
  .box > .loading-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .box > .overlay {
    z-index: 1010;
    background: rgba(255, 255, 255, 0.7);
  }
  .box > .overlay.dark {
    background: rgba(0, 0, 0, 0.5);
  }
  .box > .loading-img {
    z-index: 1020;
    background: transparent url('../img/ajax-loader1.gif') 50% 50% no-repeat;
  }

.btn {
  font-weight: 500;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid transparent;
}
.btn.btn-default {
  background-color: var(--bg-gray);
  color: #666;
  border-color: var(--border-gray);
  border-bottom-color: var(--border-gray);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn.btn-default:hover,
.btn.btn-default:active,
.btn.btn-default.hover {
  background-color: #f4f4f4!important;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn.btn-default.btn-flat {
  border-bottom-color: #d9dadc;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #8B5CF6, #6366F1);
  border: none;

  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;

}
.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary.hover {
  border: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
}
.btn.btn-success {
  background-color: #27c24c;
  border: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn.btn-success:hover,
.btn.btn-success:active,
.btn.btn-success.hover {
  background-color: #23ad44;
  border: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn.btn-info {
  border: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn.btn-info:hover,
.btn.btn-info:active,
.btn.btn-info.hover {
  background-color: #19a9d5;
  border: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn.btn-danger {
  background-color: #f05050;
  border: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn.btn-danger:hover,
.btn.btn-danger:active,
.btn.btn-danger.hover {
  background-color: #ee3939;
  border: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn.btn-warning {
  background-color: #fad733;
  border: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn.btn-warning:hover,
.btn.btn-warning:active,
.btn.btn-warning.hover {
  background-color: #f9d21a;
  border: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.btn-round {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}

.open .dropdown-toggle.btn-warning {
  background-color: #f9d21a;
  border-color: #f9d21a;
}
.open .dropdown-toggle.btn-info {
  background-color: #37a3df;
  border-color: #37a3df;
}
.btn.btn-flat {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-width: 1px;
}
.btn:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:focus { outline: none }
.btn.btn-file {
  position: relative;
  width: 120px;
  height: 35px;
  overflow: hidden;
}
.btn.btn-file > input[type='file'] {
  display: block !important;
  width: 100% !important;
  height: 35px !important;
  opacity: 0 !important;
  position: absolute;
  top: -10px;
  cursor: pointer;
}
.btn.btn-app {
  position: relative;
  padding: 15px 5px;
  margin: 0 0 10px 10px;
  min-width: 80px;
  height: 60px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  text-align: center;
  color: #666;
  border: 1px solid #ddd;
  background-color: #fafafa;
  font-size: 12px;
}
.btn.btn-app > .fa,
.btn.btn-app > .glyphicon,
.btn.btn-app > .ion {
  font-size: 20px;
  display: block;
}
.btn.btn-app:hover {
  background: #f4f4f4;
  color: #444;
  border-color: #aaa;
}
.btn.btn-app:active,
.btn.btn-app:focus {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.btn-app > .badge {
  position: absolute;
  top: -3px;
  right: -10px;
  font-size: 10px;
  font-weight: 400;
}
.btn.btn-social-old {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  opacity: 0.9;
  padding: 0;
}
.btn.btn-social-old > .fa {
  padding: 10px 0;
  width: 40px;
}
.btn.btn-social-old > .fa + span { border-left: 1px solid rgba(255, 255, 255, 0.3) }
.btn.btn-social-old span { padding: 10px }
.btn.btn-social-old:hover { opacity: 1 }
.btn.btn-circle {
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.callout {
  margin: 0 0 20px 0;
  padding: 15px 30px 15px 15px;
  border-left: 5px solid #eee;
}
.callout h4 {
  margin-top: 0;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout code,
.callout .highlight {
  background-color: #fff;
}
.callout.callout-danger {
  background-color: #fcf2f2;
  border-color: #dFb5b4;
}
.callout.callout-warning {
  background-color: #fefbed;
  border-color: #f1e7bc;
}
.callout.callout-info {
  background-color: #f0f7fd;
  border-color: #d0e3f0;
}
.callout.callout-danger h4 {
  color: #B94A48;
}
.callout.callout-warning h4 {
  color: #C09853;
}
.callout.callout-info h4 {
  color: #3A87AD;
}

.alert {

  position: relative;
  border-radius: 2px;
  border:none;
}
.alert > .fa,
.alert > .glyphicon {
  position: absolute;
  left: -15px;
  top: -15px;
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  line-height: 35px;
  text-align: center;
  background: inherit;
  border: inherit;
}

    .nav.nav-pills > li > a {
      border-top: 3px solid transparent;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0;
      color: #444;
    }
    .nav.nav-pills > li > a > .fa,
    .nav.nav-pills > li > a > .glyphicon,
    .nav.nav-pills > li > a > .ion {
      margin-right: 5px;
    }
    .nav.nav-pills > li.active > a,
    .nav.nav-pills > li.active > a:hover {
      background-color: #f6f6f6;
      border-top-color: #8B5CF6;
      color: #444;
    }
    .nav.nav-pills > li.active > a {
      font-weight: 600;
    }
    .nav.nav-pills > li > a:hover {
      background-color: #f6f6f6;
    }
    .nav.nav-pills.nav-stacked > li > a {
      border-top: 0;
      border-left: 3px solid transparent;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0;
      color: #444;
    }
    .nav.nav-pills.nav-stacked > li > a:hover{
      background-color: #f6f6f6;
      border-left-color: #8B5CF6;
    }
    .nav.nav-pills.nav-stacked > li.active > a,
    .nav.nav-pills.nav-stacked > li.active > a:hover {
      background-color: #f6f6f6;
      border-left-color: #8B5CF6;
      color: #444;
    }
    .nav.nav-pills.nav-stacked > li.header {
      border-bottom: 1px solid #ddd;
      color: #777;
      margin-bottom: 10px;
      padding: 5px 10px;
      text-transform: uppercase;
    }

    .nav-tabs-custom {
      margin-bottom: 20px;
      background: #fff;

    }
    .nav-tabs-custom > .nav-tabs {
      margin: 0;
      border-bottom-color: #f4f4f4;
    }
    .nav-tabs-custom > .nav-tabs > li {
      border-top: 3px solid transparent;
      margin-bottom: -2px;
      margin-right: 5px;
    }
    .nav-tabs-custom > .nav-tabs > li > a {
      -webkit-border-radius: 0 !important;
      -moz-border-radius: 0 !important;
      border-radius: 0 !important;
    }
    .nav-tabs-custom > .nav-tabs > li > a,
    .nav-tabs-custom > .nav-tabs > li > a:hover {
      background: transparent;
      margin: 0;
    }
    .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
    .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
    .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
      border-color: transparent;
    }
    .nav-tabs-custom > .nav-tabs > li.active {
      border-top-color: #8B5CF6;
    }
    .nav-tabs-custom > .nav-tabs > li.active > a,
    .nav-tabs-custom > .nav-tabs > li.active:hover > a {
      background-color: #fff;
    }
    .nav-tabs-custom > .nav-tabs > li.active > a {
      border-top: 0;
      border-left-color: #f4f4f4;
      border-right-color: #f4f4f4;
    }
    .nav-tabs-custom > .nav-tabs > li:first-of-type {
      margin-left: 0px;
    }
    .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
      border-left-width: 0;
    }
    .nav-tabs-custom > .nav-tabs.pull-right {
      float: none!important;
    }
    .nav-tabs-custom > .nav-tabs.pull-right > li {
      float: right;
    }
    .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
      margin-right: 0px;
    }
    .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
      border-left-width: 1px;
      border-right-width: 0px;
    }
    .nav-tabs-custom > .nav-tabs > li.header {
      font-weight: 400;
      line-height: 35px;
      padding: 0 10px;
      font-size: 20px;
      color: #444;
      cursor: default;
    }
    .nav-tabs-custom > .nav-tabs > li.header > .fa,
    .nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
    .nav-tabs-custom > .nav-tabs > li.header > .ion {
      margin-right: 10px;
    }
    .nav-tabs-custom > .tab-content {
      background: #fff;
      padding: 10px;
    }

    .tabs-bottom.nav-3 li a {
      width: 3333.33333333% !important;
    }
    .tabs-bottom li a {
      border: 0;
    }

    .pagination > li > a {
      background: #fafafa;
      color: #666;

}
.pagination > li:first-of-type a,
.pagination > li:last-of-type a {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

    .mail-box aside {
      display: table-cell;
      float: none;
      height: 100%;
      padding: 0;
      vertical-align: top;
    }
    .mailbox .table-mailbox {
      border-left: 1px solid #ddd;
      border-right: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
    }
    .mailbox .table-mailbox tr.unread > td {
      background-color: rgba(0, 0, 0, 0.05);
      color: #000;
      font-weight: 600;
    }
    .mailbox .table-mailbox tr > td > .fa.fa-star,
    .mailbox .table-mailbox tr > td > .fa.fa-star-o,
    .mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star,
    .mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star-empty {
      color: #f39c12;
      cursor: pointer;
    }
    .mailbox .table-mailbox tr > td.small-col {
      width: 30px;
    }
    .mailbox .table-mailbox tr > td.name {
      width: 150px;
      font-weight: 600;
    }
    .mailbox .table-mailbox tr > td.time {
      text-align: right;
      width: 100px;
    }
    .mailbox .table-mailbox tr > td {
      white-space: nowrap;
    }
    .mailbox .table-mailbox tr > td > a {
      color: #444;
    }
    @media screen and (max-width: 767px) {
      .mailbox .nav-stacked > li:not(.header) {
        float: left;
        width: 50%;
      }
      .mailbox .nav-stacked > li:not(.header).header {
        border: 0!important;
      }
      .mailbox .search-form {
        margin-top: 10px;
      }
    }

    .skin-blue .navbar {
      background-color: #8B5CF6;
    }
    .skin-blue .navbar .nav a {
      color: rgba(255, 255, 255, 0.8);
    }
    .skin-blue .navbar .nav > li > a:hover,
    .skin-blue .navbar .nav > li > a:active,
    .skin-blue .navbar .nav > li > a:focus,
    .skin-blue .navbar .nav .open > a,
    .skin-blue .navbar .nav .open > a:hover,
    .skin-blue .navbar .nav .open > a:focus {
      background: rgba(0, 0, 0, 0.1);
      color: #f6f6f6;
    }
    .skin-blue .navbar .navbar-right > .nav {
      margin-right: 10px;
    }
    .skin-blue .navbar .sidebar-toggle .icon-bar {
      background: rgba(255, 255, 255, 0.8);
    }
    .skin-blue .navbar .sidebar-toggle:hover .icon-bar {
      background: #f6f6f6 !important;
    }

    .skin-blue .logo {
      background-color: #367fa9;
      color: #f9f9f9;
    }
    .skin-blue .logo > a {
      color: #f9f9f9;
    }

    .skin-blue .right-side > .content-header {
      background: #fbfbfb;
      box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    .skin-blue .user-panel > .image > img {
      border: 1px solid #dfdfdf;
    }
    .skin-blue .user-panel > .info,
    .skin-blue .user-panel > .info > a {
      color: #555555;
    }

    .skin-blue .sidebar {
      border-bottom: 1px solid #fff;
    }
    .skin-blue .sidebar > .sidebar-menu > li {
      border-top: 1px solid #fff;
      border-bottom: 1px solid #dbdbdb;
    }
    .skin-blue .sidebar > .sidebar-menu > li:first-of-type {
      border-top: 1px solid #dbdbdb;
    }
    .skin-blue .sidebar > .sidebar-menu > li:first-of-type > a {
      border-top: 1px solid #fff;
    }
    .skin-blue .sidebar > .sidebar-menu > li > a {
      margin-right: 1px;
    }
    .skin-blue .sidebar > .sidebar-menu > li > a:hover,
    .skin-blue .sidebar > .sidebar-menu > li.active > a {
      color: #222;
      background: #f9f9f9;
    }
    .skin-blue .sidebar > .sidebar-menu > li > .treeview-menu {
      margin: 0 1px;
      background: #f9f9f9;
    }
    .skin-blue .left-side {
      background: #f4f4f4;
      -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
      box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);
    }
    .skin-blue .sidebar a {
      color: #555555;
    }
    .skin-blue .sidebar a:hover {
      text-decoration: none;
    }
    .skin-blue .treeview-menu > li > a {
      color: #777;
    }
    .skin-blue .treeview-menu > li.active > a,
    .skin-blue .treeview-menu > li > a:hover {
      color: #111;
    }
    .skin-blue .sidebar-form {
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px;
      border: 1px solid #dbdbdb;
      margin: 10px 10px;
    }
    .skin-blue .sidebar-form input[type="text"],
    .skin-blue .sidebar-form .btn {
      box-shadow: none;
      background-color: #fafafa;
      border: 1px solid #fafafa;
      height: 35px;
    }
    .skin-blue .sidebar-form input[type="text"] {
      color: #666;
      -webkit-border-top-left-radius: 2px !important;
      -webkit-border-top-right-radius: 0 !important;
      -webkit-border-bottom-right-radius: 0 !important;
      -webkit-border-bottom-left-radius: 2px !important;
      -moz-border-radius-topleft: 2px !important;
      -moz-border-radius-topright: 0 !important;
      -moz-border-radius-bottomright: 0 !important;
      -moz-border-radius-bottomleft: 2px !important;
      border-top-left-radius: 2px !important;
      border-top-right-radius: 0 !important;
      border-bottom-right-radius: 0 !important;
      border-bottom-left-radius: 2px !important;
    }
    .skin-blue .sidebar-form input[type="text"]:focus,
    .skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
      background-color: #fff;
      color: #666;
    }
    .skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
      border-left-color: #fff;
    }
    .skin-blue .sidebar-form .btn {
      color: #999;
      -webkit-border-top-left-radius: 0 !important;
      -webkit-border-top-right-radius: 2px !important;
      -webkit-border-bottom-right-radius: 2px !important;
      -webkit-border-bottom-left-radius: 0 !important;
      -moz-border-radius-topleft: 0 !important;
      -moz-border-radius-topright: 2px !important;
      -moz-border-radius-bottomright: 2px !important;
      -moz-border-radius-bottomleft: 0 !important;
      border-top-left-radius: 0 !important;
      border-top-right-radius: 2px !important;
      border-bottom-right-radius: 2px !important;
      border-bottom-left-radius: 0 !important;
    }

    .skin-black .navbar {
      background-color: var(--primary-color);

    }
    .skin-black .navbar .nav a {
      color: var(--primary-text-color);
    }
    .skin-black .navbar .nav > li > a:hover,
    .skin-black .navbar .nav > li > a:active,
    .skin-black .navbar .nav > li > a:focus,
    .skin-black .navbar .nav .open > a,
    .skin-black .navbar .nav .open > a:hover,
    .skin-black .navbar .nav .open > a:focus {
      background: #39435C;
      color: #fff;
      padding-bottom: 14px;
    }
    .skin-black .navbar .navbar-right > .nav {
      margin-right: 10px;
    }
    .skin-black .navbar .sidebar-toggle .icon-bar {
      background: var(--white-color);
    }
    .skin-black .navbar .sidebar-toggle:hover .icon-bar {
      background: #999999 !important;
    }

    .skin-black .logo {
      background-color: var(--primary-color);
      color: #f9f9f9;
    }
    .skin-black .logo > a {
      color: #f9f9f9;
    }

    .skin-black .right-side > .content-header {
      background: #fff;
      box-shadow: none;
    }

    .skin-black .user-panel > .image > img {
      border: 1px solid #444;
    }
    .skin-black .user-panel > .info,
    .skin-black .user-panel > .info > a {
      color: #eee;
    }
.skin-black .sidebar > .sidebar-menu > li:first-of-type > a {padding-top: 13px;padding-bottom: 16px;/* background-color: #f8f9fa; */border: 1px var(--bg-gray) solid;}
.skin-black .sidebar > .sidebar-menu > li > a {
  margin-right: 1px;
  font-size: 15px;
  font-weight: normal;
  background-color: var(--bg-white);
  border: 1px var(--border-gray) solid;
  color: var(--primary-text-color);
}
.skin-black .sidebar > .sidebar-menu > li.active > a {background: var(--bg-white);border: 1px var(--primary-color) solid;}

.skin-black .sidebar > .sidebar-menu > li > a:hover {background: var(--bg-gray);border: 1px var(--primary-color) solid;}

.skin-black .sidebar > .sidebar-menu > li > .treeview-menu {
  margin: 0 1px;
  background: #35404d;
}

.skin-black .sidebar a.btn {
  margin: 20px auto;
  display: block;
  padding: 9px 0px;
  font-size: var(--btn-font-size);
}

.skin-black .sidebar a {
  color: #eee;
}
.skin-black .sidebar a:hover {
  text-decoration: none;
}
.skin-black .treeview-menu > li > a {
  color: #ccc;
}
.skin-black .treeview-menu > li.active,
.skin-black .treeview-menu > li:hover {
  color: #fff;
  background-color: #404B5F;
}
.skin-black .sidebar-form {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 0px solid #555;
  margin: 10px 10px;
}
.skin-black .sidebar-form input[type="text"],
.skin-black .sidebar-form .btn {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.1);
  border: 0 solid rgba(255, 255, 255, 0.1);
  height: 35px;
  outline: none;
}
.skin-black .sidebar-form input[type="text"] {
  color: #666;
  -webkit-border-top-left-radius: 2px !important;
  -webkit-border-top-right-radius: 0 !important;
  -webkit-border-bottom-right-radius: 0 !important;
  -webkit-border-bottom-left-radius: 2px !important;
  -moz-border-radius-topleft: 2px !important;
  -moz-border-radius-topright: 0 !important;
  -moz-border-radius-bottomright: 0 !important;
  -moz-border-radius-bottomleft: 2px !important;
  border-top-left-radius: 2px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 2px !important;
}
.skin-black .sidebar-form input[type="text"]:focus,
.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  background-color: #444;
  border: 0;
}
.skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  border-left: 0;
}
.skin-black .sidebar-form .btn {
  color: #999;
  -webkit-border-top-left-radius: 0 !important;
  -webkit-border-top-right-radius: 2px !important;
  -webkit-border-bottom-right-radius: 2px !important;
  -webkit-border-bottom-left-radius: 0 !important;
  -moz-border-radius-topleft: 0 !important;
  -moz-border-radius-topright: 2px !important;
  -moz-border-radius-bottomright: 2px !important;
  -moz-border-radius-bottomleft: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 2px !important;
  border-bottom-right-radius: 2px !important;
  border-bottom-left-radius: 0 !important;
  border-left: 0;
}
.skin-black .sidebar .sidebar-menu .treeview-menu > li:hover {
  background-color: #404B5F;
}

.icheckbox_minimal,
.iradio_minimal {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.7) url(iCheck/minimal/minimal.png) no-repeat;
  border: none;
  cursor: pointer;
}
.icheckbox_minimal {
  background-position: 0 0;
}
.icheckbox_minimal.hover {
  background-position: -20px 0;
}
.icheckbox_minimal.checked {
  background-position: -40px 0;
}
.icheckbox_minimal.disabled {
  background-position: -60px 0;
  cursor: default;
}
.icheckbox_minimal.checked.disabled {
  background-position: -80px 0;
}
.iradio_minimal {
  background-position: -100px 0;
}
.iradio_minimal.hover {
  background-position: -120px 0;
}
.iradio_minimal.checked {
  background-position: -140px 0;
}
.iradio_minimal.disabled {
  background-position: -160px 0;
  cursor: default;
}
.iradio_minimal.checked.disabled {
  background-position: -180px 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5) {
  .icheckbox_minimal,
  .iradio_minimal {
    background-image: url('iCheck/minimal/minimal@2x.png');
    -webkit-background-size: 200px 20px;
    background-size: 200px 20px;
  }
}

  .pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  .pace-inactive {
    display: none;
  }

  .pace .pace-progress {
    background-color: #29d;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    height: 3px;
    overflow: hidden;

    -webkit-transition: width 1s;
    -moz-transition: width 1s;
    -o-transition: width 1s;
    transition: width 1s;
  }

  .pace .pace-progress-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: -32px;
    bottom: 0;

    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.2)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.2)), color-stop(0.75, rgba(255, 255, 255, 0.2)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    -webkit-background-size: 32px 32px;
    -moz-background-size: 32px 32px;
    -o-background-size: 32px 32px;
    background-size: 32px 32px;

    -webkit-animation: pace-stripe-animation 500ms linear infinite;
    -moz-animation: pace-stripe-animation 500ms linear infinite;
    -ms-animation: pace-stripe-animation 500ms linear infinite;
    -o-animation: pace-stripe-animation 500ms linear infinite;
    animation: pace-stripe-animation 500ms linear infinite;
  }

  @-webkit-keyframes pace-stripe-animation {
    0% { -webkit-transform: none; transform: none; }
    100% { -webkit-transform: translate(-32px, 0); transform: translate(-32px, 0); }
  }
  @-moz-keyframes pace-stripe-animation {
    0% { -moz-transform: none; transform: none; }
    100% { -moz-transform: translate(-32px, 0); transform: translate(-32px, 0); }
  }
  @-o-keyframes pace-stripe-animation {
    0% { -o-transform: none; transform: none; }
    100% { -o-transform: translate(-32px, 0); transform: translate(-32px, 0); }
  }
  @-ms-keyframes pace-stripe-animation {
    0% { -ms-transform: none; transform: none; }
    100% { -ms-transform: translate(-32px, 0); transform: translate(-32px, 0); }
  }
  @keyframes pace-stripe-animation {
    0% { transform: none; transform: none; }
    100% { transform: translate(-32px, 0); transform: translate(-32px, 0); }
  }

  .btn-vk .badge {
    color: #587ea3;
    background-color: #ffffff;
  }

  .tools a {
    color: #a7a7a7;
    margin-left: 10px;
  }

  .panel {
    border:none;
    border-radius: var(--border-radius);
    box-shadow: none;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid var(--border-gray);
    background: var(--bg-gray);
  }

  .msg-in {
    position: relative;
    background: #f4f4f4;
  }
  .msg-in:after {
    right: 100%;
    top: 30%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-right-color: #f4f4f4;
    border-width: 6px;
    margin-top: -6px;
  }

  .msg-out {
    position: relative;
    background: #F1F5FD;
  }
  .msg-out:after {
    left: 100%;
    top: 30%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #F1F5FD;
    border-width: 6px;
    margin-top: -6px;
  }

  ul.chat-list {
    list-style: none;
    padding-left: 0px;
  }
  .chat-list li {
    margin-bottom:24px;
  }
  .chat-list .chat-avatar {
    width:40px;
    display:inline-block;
    text-align:center;
    float:left;
  }
  .chat-list .chat-avatar i {
    font-size:12px;
    font-style:normal;
  }
  .chat-list .ctext-wrap i {
    display:block;
    font-style:normal;
    font-weight:bold;
    position:relative;
    font-size:12px;
    color:#2cb9b3;
  }
  .chat-list .conversation-text {
    display:inline-block;
    font-size:12px;
    float:left;
    margin-left:12px;
    width:70%;
  }
  .chat-list .ctext-wrap {
    padding:10px;

    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    position:relative;
    display:inline-block;
  }
  .chat-list .ctext-wrap p {
    margin:0px;
    padding-top:0px;
  }
  .chat-list .ctext-wrap:after {
    right:100%;
    top:25%;
    border:solid transparent;
    content:" ";
    height:0;
    width:0;
    position:absolute;
    pointer-events:none;
    border-color:rgba(213,242,239,0);
    border-right-color:#d5f2ef;
    border-width:5px;
    margin-top:-5px;
  }
  .chat-list .odd .chat-avatar {
    float:right !important;
  }
  .chat-list .odd .conversation-text {
    width:70% !important;
    margin-right:12px;
    text-align: right;
    float:right !important;
  }
  .chat-list .odd .ctext-wrap {
    background:#eeeef2 !important;
  }
  .chat-list .odd .ctext-wrap i {
    color:#acacac;
  }
  .chat-list .odd .ctext-wrap:after {
    left:100% !important;
    top:25% !important;
    border-color:rgba(238,238,242,0)!important;
    border-left-color:#eeeef2!important;
  }
  .chat-send {
    padding-left:0px;
  }
  .chat-send button {
    width: 100%;
  }

  .alert-icon {
    width:40px;
    height:40px;
    display:inline-block;
    -webkit-border-radius:100%;
    -moz-border-radius:100%;
    border-radius:100%;
  }
  .alert-icon i {
    width:40px;
    height:40px;
    display:block;
    text-align:center;
    line-height:40px;
    font-size:20px;
    color:#fff;
  }
  .notification-info {
    margin-left:56px;
    margin-top:-40px;
  }
  ul.notification-meta {
    list-style: none;
    padding-left: 0px;
  }
  .notification-meta {
    margin-bottom:3px;
  }
  .notification-info p {
    margin:0px;
    color:#999;
    font-size:12px;
  }
  .alert-info .alert-icon {
    background-color:#99cce3;
  }
  .alert-danger .alert-icon {
    background-color:#fcb1ae;
  }
  .alert-success .alert-icon {
    background-color:#98d7ad;
  }
  .alert-warning .alert-icon {
    background-color:#ffe699;
  }
  .notification-sender {
    color:#414147;
  }
  .notification-time {
    font-style:italic;
    color:#999;
  }
  .alert-info .notification-info a {
    color:#45a2c9;
  }
  .alert-danger .notification-info a {
    color:#fb6f6b;
  }
  .alert-success .notification-info a {
    color:#42b663;
  }
  .alert-warning .notification-info a {
    color:#e6cb76;
  }
  .alert-info.bucket-notification {
    background-color:#eef7fd;
  }
  .alert-danger.bucket-notification {
    background-color:#fef3f2;
  }
  .alert-success.bucket-notification {
    background-color:#eef8f8;
  }
  .alert-warning.bucket-notification {
    background-color: #fff7e1;
  }

  .task-content {
    margin-bottom: 30px;
  }

  .tasks-widget .task-content:after {
    clear: both;
  }

  .tasks-widget .task-footer  {
    margin-top: 5px;
  }

  .tasks-widget .task-footer:after,
  .tasks-widget .task-footer:before {
    content: "";
    display: table;
    line-height: 0;
  }

  .tasks-widget .task-footer:after {
    clear: both;
  }

  .tasks-widget  .task-list {
    padding:0;
    margin:0;
  }
  ul.task-list {
    list-style: none;
  }

  .tasks-widget .task-list > li {
    position:relative;
    padding:10px 5px;
    border-bottom:1px dashed #eaeaea;
  }

  .tasks-widget .task-list  li.last-line {
    border-bottom:none;
  }

  .tasks-widget .task-list  li > .task-bell  {
    margin-left:10px;
  }

  .tasks-widget .task-list  li > .task-checkbox {
    float:left;
    width:30px;
  }

  .tasks-widget .task-list  li > .task-title  {
    overflow:hidden;
    margin-right:10px;
  }

  .tasks-widget .task-list  li > .task-config {
    position:absolute;
    top:10px;
    right:10px;
  }

  .tasks-widget .task-list  li .task-title .task-title-sp  {
    margin-right:5px;
  }

  .tasks-widget .task-list  li.task-done .task-title-sp  {
    text-decoration:line-through;
    color: #bbbbbb;
  }

  .tasks-widget .task-list  li.task-done  {
    background:#f6f6f6;
  }

  .tasks-widget .task-list  li.task-done:hover {
    background:#f4f4f4;
  }

  .tasks-widget .task-list  li:hover  {
    background:#f9f9f9;
  }

  .tasks-widget .task-list  li .task-config {
    display:none;
  }

  .tasks-widget .task-list  li:hover > .task-config {
    display:block;
    margin-bottom:0 !important;
  }

  @media only screen and (max-width: 320px) {

    .tasks-widget .task-config-btn {
      float:inherit;
      display:block;
    }

    .tasks-widget .task-list-projects li > .label {
      margin-bottom:5px;
    }

  }

  .fc-first.fc-last {
    background-color: #f0f3f4;
  }
  .external-event {
    font-weight: normal;
  }
  .fc-button.fc-state-default {
    border: 1px solid #d9dadc;

    margin-left: 0px!important;
    background: #fafafa;
    color: #666;
  }

  .fc-state-default {
    box-shadow: none;
  }

  .weather-bg {
    background: #59ace2;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
  }
  .weather-bg i {
    font-size: 60px;
    display: block;
  }
  .weather-bg .degree {
    font-size: 60px;
  }
  .panel-item .degree {
    font-size: 60px;
  }

  .reg-earn-stat {
    text-align:center;
    color:#6d6d6d;
    text-transform:uppercase;
    padding:40px 30px;
    font-family:'Open Sans',sans-serif;
    font-weight:600;
  }
  .reg-earn-stat span {
    display:block;
    color:#b0c781;
    font-size:20px;
  }
  .loc-earn-stat {
    text-align:center;
    font-family:'Open Sans',sans-serif;
    font-weight:600;
    margin-bottom:30px;
  }
  .loc-earn-stat li {
    padding:0px 15px;
  }
  .loc-earn-stat li {
    display:inline-block;
    text-transform:uppercase;
    font-size:12px;
  }
  .loc-earn-stat li span {
    display:block;
    font-size:14px;
  }
  .stat-divider {
    border-right:#dadada 1px dashed;
  }
  .vector-stat {
    height:150px;
    margin-top:20px;
  }
  .online-users img {
    margin-right: 10px;
  }
  .online-users a {
    color: #000;
  }
  ul.online-users {
    background-color: #eee;
  }
  .online-users i.online {
    color: #A9D86E;

  margin-top: 20px;
  font-size: x-small;
}
.online-users i.offline {
  color: #eee;

  margin-top: 20px;
  font-size: x-small;
}
.panel>.online-users .list-group-item {
  border-width: 0px 0;
  padding: 0px 15px;
}
.online-users .list-group-item {

  padding: 0px 15px;
}
.online-users .list-group-item:hover {

  background-color: #fafafa;
}
.online-users .list-group-item:first-child {

  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.online-users .list-group-item:last-child {

  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.chat-footer {
  padding: 10px 0px;
  background-color: #fff;
}
.chat-primary {
  background: #4697ce;
  color: #fff;
}
.chat-list .chat-primary:after {
  right:100%;
  top:25%;
  border:solid transparent;
  content:" ";
  height:0;
  width:0;
  position:absolute;
  pointer-events:none;
  border-color:rgba(213,242,239,0);
  border-right-color:#4697ce;
  border-width:5px;
  margin-top:-5px;
}

.chat-indigo {
  background: #9358ac;
  color: #fff;
}
.chat-list .chat-indigo:after {
  right:100%;
  top:25%;
  border:solid transparent;
  content:" ";
  height:0;
  width:0;
  position:absolute;
  pointer-events:none;
  border-color:rgba(213,242,239,0);
  border-right-color:#9358ac;
  border-width:5px;
  margin-top:-5px;
}
.chat-midnightblue {
  color: #fff;
  background-color: #2b3d51;
}
.chat-list .chat-midnightblue:after {
  right:100%;
  top:25%;
  border:solid transparent;
  content:" ";
  height:0;
  width:0;
  position:absolute;
  pointer-events:none;
  border-color:rgba(213,242,239,0);
  border-right-color:#2b3d51;
  border-width:5px;
  margin-top:-5px;
}

.btnSaveCampaignInactive {
  opacity: 0.5;
}

.btnSaveCampaignInactive:hover {
  background-color: #36a5f1 !important;
}

.sm-st {
  padding: 15px;
  padding-left: 22px;
  padding-top: 22px;
  margin-bottom: 10px;
  overflow: hidden;
}

.sm-st.small {
  background: var(--bg-gray);
  padding: 13px 20px 10px 20px;
  border: 1px solid var(--border-gray);
}

.icon-heart svg, .icon-retweet svg, .icon-reply svg {
  width: 30px;
}

.icon-heart, .icon-retweet, .icon-reply {
  display: inline-block;
  float: left;
  top: 4px;
  position: relative;
  margin-right: 6px;
}

.icon-heart svg {
  filter: invert(32%) sepia(40%) saturate(3058%) hue-rotate(319deg) brightness(86%) contrast(86%);
}

.icon-retweet svg {
  filter: invert(59%) sepia(62%) saturate(345%) hue-rotate(80deg) brightness(96%) contrast(93%);
}

.icon-reply svg {
  filter: invert(61%) sepia(71%) saturate(4553%) hue-rotate(160deg) brightness(93%) contrast(101%);
}

.login-register .sm-st {
  border-radius: 10px;
  box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
  padding: 30px;
}

.sm-st-icon {
  width:60px;
  height:60px;
  display:inline-block;
  line-height:60px;
  text-align:center;
  font-size:30px;
  background:#eee;
  -webkit-border-radius:5px;
  -moz-border-radius:5px;
  border-radius:5px;
  float:left;
  margin-right:10px;
  color:#fff;
  border-radius: var(--border-radius);
}
.sm-st-info {
  font-size:14px;
  padding-top:2px;
  position: relative;
  top: -7px;
}
.sm-st-info span {
  display:block;
  font-size:24px;
  font-weight:600;
}
.orange {
  background:#fa8564 !important;
}
.tar {
  background:#45cf95 !important;
}
.sm-st .green {
  background:#86ba41 !important;
}
.pink {
  background:#AC75F0 !important;
}
.yellow-b {
  background: #fdd752 !important;
}

.progress-xs {
  height:10px;
}
.progress-sm {
  height:12px;
}
.panel-heading .nav {
  border:medium none;
  font-size:13px;
  margin:-10px -15px -15px;
}
.tab-bg-dark-navy-blue ul>li>a {
  display:block;
  padding:15px 15px !important;
}
.tab-bg-dark-navy-blue {
  background:#f0f3f4;
  border-radius:5px 5px 0 0;
  -webkit-border-radius:5px 5px 0 0;
  border-bottom:none;
}
.panel-heading .nav>li>a,.panel-heading .nav>li.active>a,.panel-heading .nav>li.active>a:hover,.panel-heading .nav>li.active>a:focus {
  border-width:0;
  border-radius:0;
}
.panel-heading .nav>li>a {
  color:#898989;
}
.panel-heading .nav>li.active>a,.panel-heading .nav>li>a:hover {
  color:#27c24c;
  background:#fff;
}
.panel-heading .nav>li:first-child.active>a,.panel-heading .nav>li:first-child>a:hover {
  border-radius:0px 0 0 0;
  -webkit-border-radius: 0px 0 0 0;

}
.tab-right {
  height:48px;
}
.panel-heading.tab-right .nav>li:first-child.active>a,.tab-right.panel-heading .nav>li:first-child>a:hover {
  border-radius:0;
  -webkit-border-radius:0;
}
.panel-heading.tab-right .nav>li:last-child.active>a,.tab-right.panel-heading .nav>li:last-child>a:hover {
  border-radius:0 4px 0 0;
  -webkit-border-radius:0 4px 0 0;
}
.panel-heading.tab-right .nav-tabs>li>a {
  margin-left:1px;
  margin-right:0px;
}
.m-bot20 {
  margin-bottom:20px;
}
.m-bot-none {
  margin-bottom:0;
}
.wht-color {
  color:#fff;
}
.close-sm {
  font-size: 14px;
}
.general .panel-body {

  margin-left: -1px;
}

.progress-bar {
  background-color: #428BCA;
}
.progress-bar-success {
  background-color: #27c24c;
}
.progress-bar-info {
  background-color: #23b7e5;
}
.progress-bar-warning {
  background-color: #fad733;
}
.progress-bar-danger {
  background-color: #f05050;
}
#accordion .panel {

  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  margin-bottom: -4px;
}

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: none;
}

#summary a.list-group-item{
  padding: 12px;
  border:1px solid #f4f4f4;
}
#summary a.list-group-item:hover{
  background-color: #eee;
  color: #4f4f4f;

}

.panel-profile .profile {
  margin: 5px 15px 5px 5px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 5px #f7f7f7, 0 0 10px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 0 5px #f7f7f7, 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0 5px #f7f7f7, 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.panel-profile li.list-group-item {
  border: 1px solid #efefef;
  line-height: 30px;
}
.panel-profile li.list-group-item:hover{
  background-color: #fafafa;
  color: #4f4f4f;
}
.panel-profile li i {
  margin-right: 5px;
}

.color-wh {
  color: #f9f9f9;
}
.profile40 {
  width: 40px;
  height: 40px;
}
.profile70 {
  width: 70px;
  height: 70px;
}
.profile80 {
  width: 80px;
  height: 80px;
}
.profile90 {
  width: 90px;
  height: 90px;
}
.thumb-sm {
  width: 40px;
  display: inline-block;
}
.mess li {
  border: 1px solid #efefef;
}
.avatar {
  position: relative;
  display: block;
  border-radius: 500px;
  white-space: nowrap;
}
.panel .panel-heading {
  padding: 17px 15px;
  text-transform: uppercase;
}
.bg-info {
  background-color: #7acbee;
  color: white;
}

.weather-category {
  padding:25px 0;
  color:#74829C;
}
.weather-category ul {
  padding:0;
  margin:0;
  display:inline-block;
  width:100%;
}
.weather-category ul li {
  display:inline-block;
  width:32%;
  text-align:center;
  border-right:1px solid #e6e6e6;
  display:inline-block;
}
.weather-category ul li h5 {
  margin:0 0 5px 0;
  text-transform:uppercase;
  font-weight:300;
}
.weather-category ul li:last-child {
  border-right: none;
}

    .twt-category ul li {
      color:#bdbdbd;
      font-size:13px;
    }
    .twt-category h5 {
      font-size:18px;
      font-weight:400 !important;
    }
    .block {
      display: block;
    }
    .m-t-10 {
      margin-top: 10px;
    }
    .m-r-15 {
      margin-right:15px;
    }
    .p-15 {
      padding: 15px;
    }
    .w-stat {
      margin-bottom: 10px;
    }
    .panel-box {
      display: table;
      table-layout: fixed;
      width: 100%;
      height: 100%;
      text-align: center;
      border: none;
    }
    .panel-box .panel-item {
      display: table-cell;
      padding: 30px;
      width: 1%;
      vertical-align: middle;
      border-radius: 0;
    }
    .panel-box .panel-left {
      -moz-border-radius-topleft: 4px;
      -webkit-border-top-left-radius: 4px;
      border-top-left-radius: 4px;
      -moz-border-radius-bottomleft: 4px;
      -webkit-border-bottom-left-radius: 4px;
      border-bottom-left-radius: 4px;
    }
    .panel-box .panel-right {
      -moz-border-radius-topright: 4px;
      -webkit-border-top-right-radius: 4px;
      border-top-right-radius: 4px;
      -moz-border-radius-bottomright: 4px;
      -webkit-border-bottom-right-radius: 4px;
      border-bottom-right-radius: 4px;
    }
    .fb-follower {
      background: #335397;
      color: #fff;
      text-align: center;
      border-radius: 4px 4px 0 0;
      -webkit-border-radius: 4px 4px 0 0;
    }
    .tw-follower {
      background: #00c7f7;
      color: #fff;
      text-align: center;
      border-radius: 4px 4px 0 0;
      -webkit-border-radius: 4px 4px 0 0;
    }
    .follower-foot {
      padding: 8px 5px 5px 5px;
      color: #757575;
      border-radius: 0 0 4px 4px;
      -webkit-border-radius: 0 0 4px 4px;
      font-weight: 300;
    }
    .follower-foot ul {
      padding: 0;
      margin: 0;
    }
    .follower-foot ul li {
      display: inline-block;
      text-align: center;
      width: 48%;
      padding: 10px;
      line-height: normal;
    }

    .gauge-canvas {
      text-align: center;
    }
    .gauge-meta {
      margin: 0px;

      padding-left: 0px;
      list-style: none;
    }
    .gauge-value {
      text-align: center;
      color: #5AA1D1;
      font-size: 16px;
      font-weight: bold;

    }
.sm-pie {
  height: 100px;
  width: 100%;
  display: block;
}

.input-group.color .add-on i, .input-prepend.color .add-on i {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.dropdown-menu.dropdown-custom>li {
  padding: 8px 10px;
  font-size: 12px;
}
.dropdown-menu li:first-child.dropdown-header {
  border-top: 1px #DDD solid;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding-top: 5px;
}

li.dropdown-header {
  padding: 5px 10px;
  color: var(--primary-text-color);
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  padding-top: 7px !important;
}
.dropdown-menu .divider {
  margin: 2px 0;
  padding: 0!important;
  background-color: #f0f0f0;
}
.dropdown-menu.dropdown-custom>li>a {
  border-radius: 3px;
}
.dropdown-menu>li>a {
  padding: 8px 10px;
}
.dropdown-menu.dropdown-custom>li>a:hover {
  color: #fff;
}

.dropdown-menu.dropdown-custom>li>a:hover i {
  color: #fff;
}

.dropdown-menu.dropdown-custom {
  min-width: 200px;
}

/* ===========================
   USER CONTEXTUAL MENU
   =========================== */
.user-contextual-menu {
  width: 252px !important;
  min-width: 252px !important;
  border-radius: 12px !important;
  padding: 0 !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.07) !important;
  border: 1px solid rgba(0,0,0,0.09) !important;
  overflow: hidden;
}

.user-contextual-menu .arrow-up1,
.user-contextual-menu .arrow-up2 {
  left: auto;
  right: 14px;
}

/* Profile header */
.ucm-header {
  padding: 0 !important;
  background: #111 !important;
}

.ucm-header-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  text-decoration: none !important;
  border-radius: 0 !important;
  transition: background 0.15s ease !important;
}

.ucm-header-link:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
}

.ucm-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ucm-initial {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.ucm-user-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ucm-username {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.ucm-plan-badge {
  color: rgba(255,255,255,0.82);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ucm-plan-badge .fa {
  color: #ffd700 !important;
  font-size: 9px;
}

.ucm-plan-badge .plan_actual_menu {
  font-size: 11px;
}

.ucm-arrow {
  color: rgba(255,255,255,0.5) !important;
  font-size: 11px;
  flex-shrink: 0;
}

.ucm-initial {
  color: #fff !important;
}

/* Dividers */
.ucm-divider {
  padding: 0 !important;
  height: 1px !important;
  background: var(--border-gray) !important;
  margin: 4px 0 !important;
}

/* Menu items */
.user-contextual-menu li:not(.ucm-header):not(.ucm-divider) > a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 16px !important;
  font-size: 13px !important;
  color: var(--primary-text-color) !important;
  border-radius: 0 !important;
  background: var(--bg-white) !important;
  transition: background 0.12s ease !important;
}

.user-contextual-menu li:not(.ucm-header):not(.ucm-divider) > a i {
  width: 16px;
  text-align: center;
  color: var(--primary-text-color) !important;
  opacity: 0.5;
  font-size: 13px;
  flex-shrink: 0;
}

.user-contextual-menu li:not(.ucm-header):not(.ucm-divider) > a:hover {
  background: var(--border-gray) !important;
  color: var(--primary-text-color) !important;
}

.user-contextual-menu li:not(.ucm-header):not(.ucm-divider) > a:hover i {
  opacity: 0.85 !important;
  color: var(--primary-text-color) !important;
}

/* Logout */
.ucm-logout > a {
  color: #d32f2f !important;
}

.ucm-logout > a i {
  color: #d32f2f !important;
  opacity: 0.8;
}

.ucm-logout > a:hover {
  background: var(--border-gray) !important;
  color: #b71c1c !important;
}

.ucm-logout > a:hover i {
  color: #b71c1c !important;
  opacity: 1 !important;
}

.horizontal .dropdown-menu>li>a {
  padding: 8px 15px;
}

.horizontal .dropdown-menu>li>a:hover{
  background-color: #eee;

}

.footer-main {
  background-color: var(--white-color);
  padding: 7px 13px;
  border-top: 1px solid var(--border-gray);
  text-align: center;
}

.stat-elem {

  background-color: #fff;
  padding: 18px;
  border-radius: 40px;

}

.stat-info {
  text-align: center;
  background-color:#fff;
  border-radius: var(--border-radius);
  margin-top: -5px;
  padding: 8px;
  -webkit-box-shadow: 0 1px 0px rgba(0,0,0,0.05);
  box-shadow: 0 1px 0px rgba(0,0,0,0.05);
  font-style: italic;
}

.stat-icon {
  text-align: center;
  margin-bottom: 5px;
}

.st-red {
  background-color: #F05050;
}
.st-green {
  background-color: #27C24C;
}
.st-violet {
  background-color: #7266ba;
}
.st-blue {
  background-color: #23b7e5;
}

.left-side.sidebar-offcanvas, .sidebar {

  min-height: 100vh;
  padding-top: 0;
}

.user-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  background: none;
  display: none;
}
.user-panel .info p {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 0 0.5rem;
}

/* Current account indicator for account pages */
.current-account-indicator {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin: 16px 16px 8px 16px;
  background: transparent;
}
@media screen and (max-width: 992px) {
  .current-account-indicator {
    margin-top: 70px;
  }
  .current-account-indicator + .sidebar-menu {
    margin-top: 8px !important;
  }
}
.current-account-indicator .img_account_menu {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}
.current-account-indicator .nav_screen_name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-text-color, #1f2937);
  display: inline;
}
.current-account-indicator .account_verified {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: middle;
}

/* Power-up links in sidebar */
.sidebar-menu li.powerup-item {
  margin-left: 40px;
}

/* Divider line between account groups */
.sidebar-menu li.powerup-item + li.item_account {
  border-top: 1px solid var(--border-gray);
  margin-top: 12px;
  padding-top: 12px;
}
.sidebar-menu .powerup-link {
  padding: 10px 12px 9px 12px !important;
  background: var(--bg-white);
  border: 1px solid var(--border-gray);
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius);
  font-size: 14px !important;
}
.sidebar-menu .powerup-link .powerup-icon {
  width: 28px !important;
  height: 28px !important;
}
.sidebar-menu .powerup-link.active,
.sidebar .sidebar-menu .powerup-link.active,
.sidebar-menu > li > a.powerup-link.active {
  background: #000 !important;
  color: #fff !important;
  border-radius: var(--border-radius);
}
.sidebar-menu .powerup-link.active span,
.sidebar-menu > li > a.powerup-link.active span {
  color: #fff !important;
}

/* New tag animation */
.new-tag {
  position: absolute;
  top: -6px !important;
  left: -16px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(135deg, #f97316, #ef4444);
  border-radius: 8px;
  animation: pulse-new 2s ease-in-out infinite;
  z-index: 3;
}
@keyframes pulse-new {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 8px 2px rgba(249, 115, 22, 0.3);
  }
}

.sidebar-menu {
  margin-top: 16px;
  padding: 0 16px;
}
.sidebar-menu > li {
  margin-bottom: 12px;
}
.sidebar-menu > li > a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #b6c6e3;
  background: transparent;
  border-radius: 16px;
  padding: 14px 20px;
  transition: background 0.2s, color 0.2s;
}
.sidebar-menu > li > a.active, .sidebar-menu > li > a.selected {
  background: #000 !important;
  color: #fff !important;
  border-radius: var(--border-radius);
}
.sidebar-menu > li > a.active span,
.sidebar-menu > li > a.active .nav_screen_name,
.sidebar-menu > li > a.selected span,
.sidebar-menu > li > a.selected .nav_screen_name {
  color: #fff !important;
}
.sidebar-menu > li > a:active {
  background: #6b7280 !important;
  color: #fff !important;
}
.sidebar-menu > li > a:hover {
  background: rgba(59,130,246,0.10);
  color: #fff;
}
.sidebar-menu > li > a > i, .sidebar-menu > li > a > svg {
  margin-right: 12px;
  font-size: 1.3em;
}

.icon-warning, .sidebar-menu .icon-warning {
  margin-left: auto;
  color: #fde047;
  font-size: 18px;
  vertical-align: middle;
  display: inline;
}

.span-warning, .lblAccountsWarning {
  display: block;
  background: #fffbeb;
  color: #92400e;
  border-radius: 16px;
  padding: 16px 20px;
  margin: 18px 0 12px 0;
  font-size: 1.05rem;
  font-weight: 500;
  border: 1px solid #fcd34d;
  box-shadow: 0 2px 8px 0 rgba(253,224,71,0.10);
}
.span-warning a, .lblAccountsWarning a {
  color: #b45309;
  text-decoration: underline;
  font-weight: 600;
}
.span-warning a:hover, .lblAccountsWarning a:hover {
  color: #92400e;
}

.btnAddAccount.twitter, .btn.btn-primary.btnAddAccount.twitter {
  color: #fff;
  padding: 10px 25px;
  margin: 20px 20px;
  width: auto;
}
.btnAddAccount.twitter:hover {
  background: rgb(49 112 213);
  color: #fff;
}

.selectpicker.select_accounts {
  width: 100%;
  background: #232b3e;
  color: #dbeafe;
  border-radius: 12px;
  border: none;
  padding: 12px 16px;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.sidebar-menu > li, .sidebar-menu > li > a, .sidebar-menu select, .sidebar-menu .item_account {
  border-radius: var(--border-radius);
}

.sidebar .logo-owlead {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px 0 16px 32px;
}
.sidebar .logo-owlead img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.sidebar .logo-owlead span {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.left-side.sidebar-offcanvas {
  padding-bottom: 32px;
  border-right: 1px solid var(--border-gray);
}

.left-side.sidebar-offcanvas::-webkit-scrollbar {
  width: 8px;
  background: #232b3e;
}
.left-side.sidebar-offcanvas::-webkit-scrollbar-thumb {
  background: #181f2a;
  border-radius: var(--border-radius);
}

/* ========================================
   3. CUSTOM STYLES - APLICACIÓN
   ======================================== */
@font-face {
	font-family: 'icomoon';
	src:  url('../fonts/icomoon.eot?b3er6p');
	src:  url('../fonts/icomoon.eot?b3er6p#iefix') format('embedded-opentype'),
	url('../fonts/icomoon.ttf?b3er6p') format('truetype'),
	url('../fonts/icomoon.woff?b3er6p') format('woff'),
	url('../fonts/icomoon.svg?b3er6p#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

.display-flex{
	display: flex;
}

.align-center{
	align-items: center;
}

[class^="icon-"], [class*=" icon-"] {

	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	border-radius: 10px;
	padding: 10px;

}

.only-desktop{
	display: block;
}

.only-mobile{
	display: none;
}

.only-mobile.days_left_content{
	display: none;
}

.icon-quotes-left:before {
	content: "\e977";
}

.col-centered{
	float: none;
	margin: 0 auto;
}

h2, h3, h4, h5, h6{
	font-weight: 700;
	line-height: inherit;
}

h4{
	font-size: 1.4em;
}

h5{
	font-size: 1.2em;
}

h6{
	font-size: 1em;
}

section.content {
	width: 100%;
}

.navbar-btn {
	display: none;
}

.panel-heading-button {
	height: 60px;
}

.panel-heading-button label {
	margin-top: 5px;
	font-weight: bold;
}

.lblFilter {
	margin-top: 7px;
}

.content_expander {
	margin-right: 18px;

}

.expander {
	position: relative;
	top: 7px;
	color: var(--primary-text-color);
}

.expanded.expander {
	padding-left: 13px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url(../img/expanded.gif);
	display: block;
	width: 100%;
	margin-bottom: 20px;
}

.collapsed.expander {
	padding-left: 13px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url(../img/collapsed.gif);
	margin-bottom: 20px;
	/* display: block; */
	display: block;
	width: 100%;
}

.clear_div_filter {
	width: 100%;
	height: 14px;
}

.checkValidateAccount {
	margin-top: 9px;
	display: none;
	width: 10px;
	text-align: center;
}

.checkValidateAccount.fa-check {
	color: green;
}

.checkValidateAccount.fa-times {
	color: red;
}

.red {
	color: red;
}

.clear_filter {
	width: 100%;
	height: 4px;
}

.btnStart {
	border-radius: 50px;
	background-color: var(--bg-white);
	border: 1px var(--border-gray) solid;
	color: var(--border-gray);
	padding: 0;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 34px;
	position: relative;
	height: 26px;
	margin-left: 10px;
	display: inline-block !important;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.btnStart::after {
	content: "";
	display: block;
	background-color: var(--border-gray);
	border-radius: 50%;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 3px;
	left: 3px;
	transition: left 0.3s ease, background-color 0.3s ease;
}

.btnStart.active {
	background-color: #28a745 !important;
}

.btnPause::after {
	left: calc(100% - 21px) !important;
	background-color: var(--white-color);
}

.btnPause {
	cursor: pointer;
	font-size: 13px;
	border-radius: 50px;
	background-color: var(--bg-white) !important;
	border: 1px var(--border-gray) solid;
	color: var(--primary-text-color);
	padding: 0;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 34px;
	position: relative;
	height: 26px;
	margin-left: 10px;
	display: inline-block !important;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.btnPause::after {
	content: "";
	display: block;
	background-color: var(--orange-color);
	border-radius: 50%;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 3px;
	left: 3px;
	transition: left 0.3s ease, background-color 0.3s ease;
}

.btnPause.active {
	background-color: #4CAF50 !important;
}

.btnPause.active::after {
	left: calc(100% - 21px);
	background-color: var(--white-color);
}

.link_card span {
	color: #000;
}

.link_card i {
	color: #FFF;
}

.list_followers_won, .list_followers_scope {
	height: 500px;
	overflow: auto;
}

.list_followers_won img, .list_followers_scope img, .confirm_user_pic, .list_followings img {
	-webkit-border-radius: var(--border-radius);
	-moz-border-radius: var(--border-radius);
	border-radius: 100px;
	margin-top: 5px;
	/* margin-left: 12px; */
}

.list_followers_won a, .list_followers_scope a {
	color: var(--primary-text-color);
}

.list_followers_won .name, .list_followers_scope .name, .list_followings .name {
	font-weight: bold;
	width: 100%;
}

.list_followers_won .bio, .list_followers_scope .bio, .confirm_user_bio, .list_followings .bio {
	color: var(--secondary-text-color);
	margin-top: 10px;
}

.list_account_recommended_smart_campaign .bio{
	font-size: 14px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.text-direct {
	display: none;
}

.menu_queue_all {
	border: 1px var(--border-gray) solid;
	border-radius: var(--border-radius);
	background: var(--bg-white);
	margin: 0 auto;
	padding: 10px 30px;
	padding-bottom: 20px;
	border-radius: var(--border-radius);
}

.menu_queue_all h4 {
	margin-left: -16px;
}

.menu_queue_all h4 .fa {margin-right: 10px;}

.menu_queue_all.fixed {
	position: fixed;
	z-index: 22;
	top: 0px;
	width: 100%;
	right: 35px;
	width: calc(100% - 290px);
	padding-top:0px;
}

.menu_queue_all.fixed h4{
	display: none;
}

.menu_queue_all label {
	text-align: left;
	font-size: 12px;
	font-weight: normal;
}

.menu_queue_all select {
	border: 1px var(--border-gray) solid;
	width: 100%;
	margin-bottom: 10px;
	padding: 7px;
	border-radius: var(--border-radius);
	background-color: var(--white-color);
	color: var(--primary-text-color);
}

.menu_queue_all .alert {
	padding: 10px !important;
	margin-top: 10px;
	margin-bottom: 10px !important;
}

.filter-item {
	width: 100%;
	display: inline-block;
	margin-top: 5px;
	margin-bottom: 10px;
}

.filter-item input{
	padding: 3px 5px;
}

.filter-item.half{
	width: 49%;
	display: inline-block;
}

.filter-item.half .filter-option{
	width: 100%;
	border: 1px var(--border-gray) solid;
	width: 100%;
	margin-bottom: 10px;
	padding: 7px;
	border-radius: var(--border-radius);
	background-color: var(--bg-white);
	color: var(--primary-text-color);
}

.filter-item label, .filter-item label {
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 14px;
}

.unfollow-advise{
	background: #dadada;
	border-radius: var(--border-radius);
	padding: 8px 10px;
	margin: 15px 0px;
}

.alert-unfollow-all, .alert-unfollow-scheduled, .alert-unfollow-subscription {
	display: none;
	padding: 10px;
	margin: 20px 0 auto;
	font-weight: bold;
}

.alert-unfollow-subscription a{
	text-decoration: underline;
}

.btnQueueAllFiltered.btn-success {
	opacity: 0.6;
	cursor: default;
}

.switch.disabled {
	opacity: 0.6;

}

.unfollow-auto:disabled {
	cursor: default;
}

.status_unfollow_data_task {
	display: none;
	border: 1px #CCC solid;
	border-radius: var(--border-radius);
	margin: 10px 0px;
	padding: 10px;
	position: relative;
	height: 63px;
	font-size: 15px;
	padding-top: 20px;
	background: var(--white-color);
}

.status_unfollow_data_task .imgLoading {
	display: inline-block;
	padding: 5px;
	position: relative;
	top: -2px;
}

.btnDeleteUnfollowData {
	border: 1px #e04a4a solid;
	padding: 8px 6px;
	border-radius: var(--border-radius);
	color: #e04a4a;
	background-color: #ffffff;
	cursor: pointer;
	font-size: 16px;
	display: block;
	text-align: center;
	margin-top: 10px;
	width: 240px;
	position: absolute;
	right: 0px;
	top: 0px;
	right: 10px;
}

.btnDeleteUnfollowData:hover {
	background-color: #bc3a3a;
	color: #FFF;
}

.btnQueueAllRecommended:hover, .btnQueueAllFiltered:hover{
	background-color: #28a745;
	color:#fff;
	font-weight: 700;
}

.btnQueueAllFiltered {
	display: none;
	font-size: 1em;
	margin-top: 20px;
	padding: 10px 5px;
	border-radius: var(--border-radius);
	color: #ffffff;
	font-weight: bold;
	background-color: #3dc688;
	cursor: pointer;
	text-align: center;
}

.btnQueueRefreshFilter{
	background: var(--white-color);
	color: var(--primary-text-color);
	border: 1px solid var(--border-gray);
	font-weight: 500;
	padding: 10px 5px;
	border-radius: var(--border-radius);
	cursor: pointer;
	font-size: 1em;
	display: block;
	text-align: center;
	margin-top: 15px;
}

.btnQueueRefreshFilter:hover{
	background: #f3f3f3;
	color: #000000;

}

.btnQueueAllRecommended {
	padding: 8px 10px;
	border-radius: var(--border-radius);
	background-color: #28a745;
	color: #ffffff;
	font-weight: bold;
	cursor: pointer;
	font-size: 1em;
	display: block;
	text-align: center;
	margin-top: 10px;
	border: 1px solid #118e2d;
}

.btnQueueAllRecommended:hover {
	background-color: #1e8034;
}

.search-filter {
	margin-top: 10px;
	padding-left: 20px;
	line-height: 1.6em;
}

#quality-followers .stars_group {
	display: block;
	text-align: left;
	margin-bottom: 10px;
	margin-top: 20px;
}

#quality-followers .content_stars {
	display: block;
	padding-top: 0px !important;
	text-align: left;
	color: #5f5f5f;
	height: auto;
	position: relative;
	top: -10px;
}

.quality-info {
	background-color: #8d8d8d;
	border-radius: 45px;
	padding: 2px 11px 4px;
	color: #fff;
	font-size: 10px;
	margin-left: 8px;
}

.quality-info:hover {
	background-color: #5f5f5f;
	color: #FFF;
}

.list_followings.fixed {
	margin-top: 530px;
}

.content_list_followings {
	position: relative;
}

.list_followings a:hover {
	text-decoration: underline;
	cursor: pointer;
	color: #2a668a;
}

.list_followings .content_stars_detail {
	float: none;
	margin-left: 10px;
}

.folowers-following {
	font-size: 13px;
	color: var(--secondary-text-color);
	font-weight: normal;
	display: inline-block;
	/* position: relative; */
	/* top: -4px; */
}

.folowers-following span {
	color: var(--primary-text-color);
	font-weight: bold;
}

.folowers-following span:last-child {
	margin-left: 10px;
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.btnMore {
	margin: 20px auto;
	display: block;
	background-color: var(--orange-color);
	border: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	border-radius: var(--border-radius);
	color: #FFF;
	padding: 6px 50px;
	outline: none;
}

.msg-limit {
	text-align: center;
	display: block;
	background-color: #dedede;
	border-radius: 54px;
	color: #383838;
	padding: 4px 17px;
	width: fit-content;
	margin: 22px auto;
	margin-bottom: 7px;
}

.lblFollowYou {
	margin-left: 10px;
	font-size: 11px;
	border: 1px var(--border-gray) solid;
	padding: 2px 6px;
	border-radius: 45px;
	color: var(--secondary-text-color);
	padding-bottom: 4px;
	font-weight: normal;
}

.lblNotFollowYou {
	margin-left: 2px;
	font-size: 11px;
	border: 1px #ff4c5a solid;
	padding: 1px 9px;
	border-radius: 65px;
	color: #ff4c5a;
	/* padding-bottom: 4px; */
	font-weight: normal;
}

.imgLoader {
	display: block;
	margin: 0px auto !important;
	padding: 15px;
}

.btnTimer {
	border-radius: var(--border-radius);
	background-color: #ececec;
	width: max-content;
	padding: 7px 15px;
	color: #4c4c4c;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	float: right;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.btnTimer.inactive {
	cursor: default;
}

.btnTimer.inactive .text{
	color: #FFF;
}

.btnTimer.inactive:hover .text{
	color: #FFF;
}

.btnTimer:hover .text{
	color: #FFF;
}

.btnTimer .timer {
	position: absolute;
	background-color: #8e8e8e;
	width: 100%;
	top: 0px;
	left: 0px;
	height: 100%;
	z-index: 1;
}

.byOwlead {
	position: relative;
	top: -1px;
	margin-left: 8px;
	display: none;
}

.byOwlead img {
	border-radius: 0px;
	margin-top: 0px;
	margin-left: 0px;
}

.notificationsByOwlead {
	display: inherit;
	position: relative;
	top: 2px;
	margin-left: 10px;
}

.last-status {
	display: inline-block;
	margin-left: 5px;
	padding: 2px 10px;
	padding-bottom: 4px;
	border-radius: 55px;
	border: 1px var(--border-gray) solid;
	font-size: 11px;
	color: var(--secondary-text-color);
}

.list-group-item .icon-heart, .list-group-item .icon-retweet, .list-group-item .icon-reply {
	display: none;
}

.notificationsByOwlead svg {
	width: 17px;
	display: inherit;
	position: relative;
	top: -2px;
}

.pendingUnfollowByOwlead {
	color: #757575;
	display: none;
}

.pending {
	display: none;
	color: #656565;
}

.btnCancelSchedule {
	cursor: pointer;
	position: relative;
	top: 20px;
}

.recommendedUnfollow {
	font-weight: normal;
	font-size: 11px;
	border: 1px var(--alert-color) solid;
	color: var(--alert-color);
	padding: 4px 6px;
	border-radius: var(--border-radius);
	display: none;
}

.btnTimer.inactive .timer {
	background-color: #9b9b9b;
}

.btnTimer .text {
	position: relative;
	z-index: 2;
	color: #FFF;
}

.recommended_to_unfollow {
	font-size: 12px;
	background-color: #ff4c5a;
	border-radius: 10px;
	color: #FFF;
	text-align: center;
	padding: 1px 8px;
}

.list_followings .list-group-item {
	border: 1px solid var(--border-gray) !important;
	margin-bottom: 10px;
	border-radius: 10px;
	padding-top: 20px;
}

.loaderUnfollow {
	display: none;
}

.img_account_menu {
	position: relative;
	left: -3px;
	min-width: 25px;
	max-width: 25px !important;
	margin-right: 2px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.detail-powerup {
	margin-bottom: 10px;
}

.detail-powerup b {
	color: #2D85CC;
}

.detail-powerup h2 {
	margin: 0px;
	margin-bottom: 10px;
}

.btn.btn-primary.btnBuyPowerUp{
	font-weight: 700;
}

.btnBuyPowerUpLifeTime {
	display: none;
}

.no-subscription, .ok-subscription {
	display: none;
}

.detail-powerup p {
	line-height: 25px;
	font-size: 15px;
}

.power-up-settings {
	color: #484848;
	position: relative;
	left: 9px;
	cursor: pointer;
}

.owlead-unlocked {
	color: #FFF !important;
	font-size: 14px !important;
	font-weight: bold;
	margin-top: 13px;
	display: none;
}

.power-up-unlocked {
	margin-top: 9px;
	/* background-color: var(--violet-color); */
	padding: 7px 15px;
	border-radius: var(--border-radius);
	color: var(--bg-white);
	font-weight: bold;
	cursor: default;
}

.power-up-visit {
	margin-top: 14px;
	color: white !important;
	background-color: var(--violet-color)!important;
	display: none;
	cursor: pointer;
}

.power-up-visit:hover,.power-up-unlocked:hover {
	background-color: var(--border-gray);
}

.power-up-unlocked:hover, .power-up-unlocked:focus {
}

.power-up-unlocked.dropdown-toggle {
	border: 1px var(--border-gray) solid;
	color: var(
	--secondary-text-color);
	cursor: pointer;
}

.power-up.dropdown-menu {
	width: 180px;
}

.power-up.dropdown-menu .dropdown-item {
	display: block;
	width: 100%;
	color: inherit;
	padding-bottom: 5px;
	padding-right: 15px;
	padding-top: 5px;
	padding-left: 10px;
	cursor: pointer;
	white-space: nowrap;
}

.power-up.dropdown-menu .dropdown-item:hover {
  background-color: var(--bg-gray);
  color: var(--primary-text-color);
}

.power-up-unlocked:active {
	box-shadow: none !important;
}

.refer-friend{
	display: inline-block;
	margin-right: 10px;
	margin-top: 10px;
	background: #18c96e;
	color: #fff !important;
	cursor: pointer;
}

.refer-friend:hover {
	background: #14af5f;
}

.btn.free-upgrade{
	margin-right: 10px;
	margin-top: 10px;
	background: #FF872B;
	color: #fff !important;
	cursor: pointer;
	display: none;
	padding: 7px 15px;
	border-radius: var(--border-radius);
	font-weight: bold;
}

.btn.free-upgrade:hover {
	background: #DD7424;
}

.btn.owlead-blue{
	display: none;
	margin-right: 10px;
	margin-top: 14px;
	background: var(--white-color);
	color: var(--orange-color) !important;
	cursor: pointer;
	padding: 7px 15px;
	border-radius: var(
	--border-radius);
	font-weight: bold;
	padding: 6px 32px !important;
	position: relative;
	padding-left: 12px !important;
}

.btn.owlead-blue .account_verified{
	height: 17px;
	vertical-align: middle;
	fill: var(--orange-color);
	top: 9px;
}

.btn.owlead-blue:hover {
	background: var(--border-gray);
	font-weight: bold;
}

.lbl-get-blue-account {
	margin-right: 10px;
	margin-top: 10px;
	background: #1d9bf0;
	color: #fff !important;
	cursor: pointer;
	padding: 7px 15px;
	border-radius: var(--border-radius);
	font-weight: bold;
	display: block;
	position: relative;
	top: -12px;
	width: 100%;
	margin-bottom: 10px;
}

.lbl-get-blue-account .account_verified {
	height: 17px;
	vertical-align: middle;
	fill: white;
	top: -2px;
}

.lbl-get-blue-account a {
	color: #FFF;
	text-decoration: underline;
}

.queue-counter {
	margin-top: 20px;
	border: 1px var(--border-gray) solid;
	border-radius: var(--border-radius);
	padding: 10px;
	background: var(--bg-white);
	margin-bottom: 10px;
}

.how-to{
	font-size: 10px;
	color: #fff;
	margin-left: 5px;
	background: #36a5f1;
	border-radius: var(--border-radius);
	text-decoration: none;
	display: inline-block;
	vertical-align: middle;
}

.how-to:hover,.how-to:active, .how-to:focus {
	background: #195083;
	color:#fff;
}

.how-to span{
	padding: 5px 10px;
	display: block;
}

.ok-subscription .dropdown-menu {
	left: -145px !important;
	text-align: left;
	padding-left: 5px;
}

.btnCancelAllQueue {
	border: 1px #e04a4a solid;
	padding: 0px 10px;
	border-radius: var(--border-radius);
	color: #e04a4a;
	background-color: #ffffff;
	font-size: 12px;
	cursor: pointer;
	display: none;
	width: max-content;
	margin: 5px auto;
}

.btnCancelAllQueue:hover {
	background-color: #e04a4a;
	color: #ffffff;
}

.queue-counter .col-md-6:first-child {
	border-right: 1px #CCC solid;
}

.queue-pending, .queue-done {
	display: block;
	font-size: 30px;
	text-align: center;
	font-weight: bold;
}

.queue-pending{
	color: #0076be;
}

.queue-done{
	color: #28a745
}

.power-up-price {
	font-size: 1.1em;
	margin-top: 10px;
	display: block;
	line-height: 20px;
}

.power-up-price span {
	display: block;
	font-size: 12.4px;
}

.credits {
	font-size: 30px;
	margin-bottom: 10px;
}

.queue-counter-text{
	font-weight: 700;
	margin-top: 5px;
	display: block;
}

.btnAddAccount {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	padding-left: 0px;

	width: 100%;
	display: inline-block;
	text-align: center;
	padding: 10px;
	margin: 0px;
	font-size: 20px;
	margin-top: 10px;
	margin: 10px;
	width: 90%;
}

.btn {
	text-transform: none !important;
	border-radius: var(--border-radius) !important;
	padding: 10px 20px;
}

.label-graylight {
	background-color: var(--border-gray);
}

.login_header {
	width: 100%;
	height: 60px;
	background-color: #283744;
}

.sidebar-menu .fa-dashboard {

	font-size: 23px;
	margin-left: -2px;
	position: relative;
	top: 1px;
}

.sidebar-menu span {

	top: 1px;
}

.btnRefreshScopeFollowers {
	margin-left: 8px;
	font-size: 14px;
	cursor: pointer;
	border: 1px #444 solid;
	padding: 3px 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: relative;
	top: -3px;
}

.btnRefreshScopeFollowers:hover {
	background-color: #EEE;
}

.btnRefreshScopeAprox {
	font-size: 14px;
	cursor: pointer;
	border: 1px #444 solid;
	padding: 3px 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.btnRefreshScopeAprox:hover {
	background-color: #EEE;
}

.btnSetDefaultFilters, .btnClearFilters {
	cursor: pointer;
	font-size: 0.8em;
	color: var(--secondary-text-color);
}

.contentBtnChangeFilters {
	margin-top: 5px;
}

#preloader {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(17, 24, 39, 0.85);
	z-index: 2000;
	display: none;
}

#preloader .preloader_message {
	display: none;
}

#preloader .buho {
	background-image: none;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 700;
	font-size: 48px;
	letter-spacing: -1px;
	line-height: 1;
}

#preloader .buho .logo-text {
	display: flex;
	align-items: center;
}

#preloader .buho .logo-text::before {
	content: 'owl';
	color: #ffffff;
}

#preloader .buho .logo-text::after {
	content: 'ead';
	background: linear-gradient(135deg, #8B5CF6, #6366F1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

#preloader .buho .eye {
	display: none;
}

#preloader .buho .preloader-spinner {
	width: 24px;
	height: 24px;
	border: 2.5px solid rgba(255, 255, 255, 0.15);
	border-top-color: #8B5CF6;
	border-radius: 50%;
	animation: preloaderSpin 0.8s linear infinite;
}

@keyframes preloaderSpin {
	to { transform: rotate(360deg); }
}

.alert {
	padding-left: 0px !important;
	padding: 0px !important;
	margin-bottom: 0px !important;
	font-weight: normal;
}

.alert .fa {
	position: relative;
	left: 0px;
	top: 0px;
	width: 30px;
	height: 33px;
	margin-left: 10px;
}

.btn-secondary {
	border-radius: 100px;
}

.msgAddCampaign, .msgNotValidFirstTime {
	display: none;
}

.msgAddCampaignInfo {
	padding: 6px !important;
	display: none;
}

.modal-footer {
	/* padding: 19px 0px 0px !important; */
}

.skin-black .navbar .nav > li > a:hover, .skin-black .navbar .nav > li > a:active, .skin-black .navbar .nav > li > a:focus, .skin-black .navbar .nav .open > a, .skin-black .navbar .nav .open > a:hover, .skin-black .navbar .nav .open > a:focus {
	background: none !important;

}

.dropdown-menu.dropdown-custom>li {
	padding: 2px 0px;
	font-size: 15px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
}

.lblMargin {
	margin-top: 6px;
}

.msgChangePasswordError, .msgChangePasswordSuccess, .msgChangeSettingsError, .msgChangeSettingsSuccess, .msgPaymentError, .msgPaymentSuccess, .msgUpdateNotificationsError, .msgUpdateNotificationsSuccess, .msgAddAccountError, .msgErrorLogin, .msgStopRecurringError, .msgStopRecurringSuccess, .msgSaveCookieCredential, .msgSaveCookieCredentialOk, .msgGetCookieCredential, .msgSuccessDiscount, .msgErrorDiscount {
	display: none;
	padding: 15px 20px !important;
	text-align: left;
	margin-bottom: 10px !important;
	border-radius: var(--border-radius);
}

.msgGetCookieCredential{
	text-align: right;
}

.msgModalLogin{
	text-align: right;
}

.msgSaveCookieCredential {
	width: fit-content;
	text-align: right;
	max-width: 440px;
}

.panel-body.credentials {
	padding-top: 0px !important;
}

.panel-body.credentials .expander {
	margin-bottom: 10px;
	margin-left: 20px;
	font-weight: bold;
}

.panel-body.credentials .alert-phone {
	padding: 10px 15px !important;
	color: #262626;
	border-radius: var(--border-radius);
	max-width: 500px;
	margin: 20px auto;
}

.panel-body.challenge {
	display: none;
}

.panel-body.cookies {
	display: none;
}

.panel-body.cookies p {
	margin-bottom: 30px;
}

.cookies_error_login {
	display: none;
}

.steps_user_get_cookies {
	list-style: none;
	padding: 0px;
	margin-top: 0px;
	margin-left: 10px;
	position: relative;
}

.cookies_alternative_login{
	margin-top: 20px;
	margin-bottom: 20px;
}

.msg_alternative_login {
	font-size: 13px;
	margin-top: 15px;
}

.steps_user_get_cookies li {
	margin-bottom: 5px;
}

.mleft {
	margin-left: 15px;
}

#credentials_auth_token {
	margin-bottom: 30px;
}

.msgErrorLogin {
	margin-bottom: 10px !important;
}

.msgAddAccountError, .msgAddCampaign, .msgAlertErrorRegister, .msgAlertSuccessRegister {
	padding: 6px 10px 6px 10px !important;
}

.msgAlertErrorRegister, .msgAlertSuccessRegister {
	margin-bottom: 10px !important;
	display: none;
}

.img_account_dashboard {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;

	margin:0 auto;
}

.list_accounts .dashboard_card_item .sm-st {
	box-shadow: none;
	-webkit-box-shadow: none;
}

.list_accounts .sm-st-icon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 26px;
}

.list_accounts .sm-st-info {
	padding: 0px;
	position: relative;
	top: -2px;
}

.dashboard_card_item .col-md-3{
	padding: 0px;
	width: 20%;
}

.card_dashboard .col-md-2 {
	width: 12%;
}

.btn .fa-plus {
    margin-right: 6px;
    position: relative;
    top: 1px;
}

.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
	border-top: none;
	padding: 13px;
	cursor: pointer;
	padding-top: 19px;
}

.followers .sm-st {
    background: var(--bg-gray);
    border: 1px solid var(--border-gray);

}

.gained .sm-st {
    background: var(--bg-gray);
    border: 1px solid var(--border-gray);
}

.potential .sm-st {
    background: var(--bg-gray);
    border: 1px solid var(--border-gray);
}

.dashboard_card_item {
	margin-left: -15px;
}

.dashboard_card_item .sm-st {
	padding: 0px;
	margin-bottom: 0px;
	margin-top: 10px;
	border: none;
}

.card_dashboard {
	color: --var(--primary-text-color);
	font-weight: normal !important;
	text-decoration: none;

}

.card_dashboard:hover .sm-st {/* background-color: var(--border-gray); */}

.card_dashboard:hover .dashboard_card_item .sm-st {
	box-shadow: none;
}

.card_dashboard label {
	font-weight: normal;
	color: #575757;
}

.owlead-blue-tooltip{
	display: inline-block;
}

#owlead-blue .account_verified {
	right: 30px;
	top: 29px;
}

.owlead-blue-tooltip.disabled img{
	filter: grayscale();
	width: 20px;
	top: -2px;
	position: relative;
}

.owlead-blue-tooltip.enabled img{
	width: 20px;
	top: -2px;
	position: relative;
	display: inline-block;
}

.show_first_account {
	text-align: center;
	font-size: 17px;
	margin-top: 20px;
	display: none;
}

.show_first_account .btnAddAccount {
	width: 300px;
	display: block;
	margin: 20px auto;
	-webkit-border-radius: var(--border-radius);
	-moz-border-radius: var(--border-radius);
	border-radius: var(--border-radius);
	background-color: #2883d8;
	color: #FFF !important;
	font-size: 18px;
	-webkit-box-shadow: 0 6px 0 0 #1c5387, 0 1px 3px 0 rgba(0,0,0,0.298039), 0 5px 10px 0 rgba(0,0,0,0.247059), 0 10px 10px 0 rgba(0,0,0,0.2) , 0 15px 20px 0 rgba(0,0,0,0.1);
	box-shadow: 0 6px 0 0 #1c5387, 0 1px 3px 0 rgba(0,0,0,0.298039), 0 5px 10px 0 rgba(0,0,0,0.247059), 0 10px 10px 0 rgba(0,0,0,0.2) , 0 15px 20px 0 rgba(0,0,0,0.1);
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}

.show_first_account .btnAddAccount:hover {
	background: #2883d8 !important;
	color: #FFF !important;
	background: rgb(221, 221, 221);
	-webkit-box-shadow: 0 2px 0 0 #1c5387, 0 1px 3px 0 rgba(0,0,0,0.298039), 0 5px 6px 0 rgba(0,0,0,0.247059), 0 1px 6px 0 rgba(0,0,0,0.2) , 0 5px 5px 0 rgba(0,0,0,0.1);
	box-shadow: 0 2px 0 0 #1c5387, 0 1px 3px 0 rgba(0,0,0,0.298039), 0 5px 6px 0 rgba(0,0,0,0.247059), 0 1px 6px 0 rgba(0,0,0,0.2) , 0 5px 5px 0 rgba(0,0,0,0.1);
	position: relative;
	top: 6px;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}

.next_run, .purge_active {
	position: relative;
	width: 100%;
	font-size: 15px;
	color: #c12323;
	background-color: #ffe1e1;
	border-radius: 10px;
	padding: 10px 20px;
	margin-bottom: 10px;
	display: none;
}

.free_unfollows_exhausted {
	display: none;
	top:0px;
	margin-bottom:0px;
}

.days_left_content {
	/* margin-left: 10px; */
	/* position: relative; */
	/* top: 10px; */
	width: fit-content;
	font-size: 15px;
	color: var(--bg-white);
	background-color: var(--orange-color);
	border-radius: var(--border-radius);
	padding: 10px 15px;
	margin-bottom: 10px;
	display: none;
}

.days_left_content {
	/* margin-left: 10px; */
	/* position: relative; */
	/* top: 10px; */
	width: fit-content;
	font-size: 14px;
	color: var(--bg-white);
	background-color: var(--orange-color);
	border-radius: var(--border-radius);
	padding: 0px 0px;
	margin-bottom: 10px;
	display: none;
	max-width: 500px;
	padding: 2px 10px;
}

#manage-subscription .days_left_content {
	/* margin-left: 10px; */
	/* position: relative; */
	/* top: 10px; */
	width: fit-content;
	font-size: 15px;
	color: var(--bg-white);
	background-color: var(--primary-color);
	border-radius: var(
	--border-radius);
	padding: 10px 15px;
	margin-bottom: 10px;
	display: none;
}


.days_left_content.only-desktop{
	margin-left: 10px;
	position: relative;
	top: 10px;
}

.days_left_content p{
	margin-bottom: 0px;
}

.days_left_content a{
	color: var(--fontOverSkyBlue) !important;
	text-decoration: underline;
}

.schedule-runnings {
	padding: 12px 17px;
	color: #313131;
	border-radius:var(--border-radius);
	font-size: 16px;
	text-transform: none;
	display: none;
	margin-bottom: 10px;
}

.schedule-runnings a{
	color: var(--fontOverSkyBlue);
	text-decoration: underline;
}

.schedule-runnings.running{
	background: var(--successBackground);
}

.schedule-runnings.waiting{
	background: var(--yellowWarningBg);
}

.waiting{
	background: var(--yellowWarningBg);
}

.warmingup.w-account {position: relative;top: 0px;width: 100%;color: #c12323;background-color: #ffe1e1;margin-bottom: 10px;display: none;}

.warmingup {
	color: var(--fontOverSkyBlue) !important;
	/* background-color: var(--primary-color)  !important; */
}

.warmingup .fa{
	color: #f0504f;
}

.lbl-warning-account {
	color: #92400e;
	background-color: #fffbeb;
	border-radius: var(--border-radius);
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #fcd34d;
	font-weight: bold;
}

.lbl-warning-account .fa {
	margin-right: 2px;
	padding-left: 6px;
}

.lbl-warning-account a {
	color: #b45309 !important;
	text-decoration: underline;
}

.purge_active {
	display: block;
}

.next_run a, .purge_active a{
	font-size: 15px;
	color: #790000;
	text-decoration: underline;
}

.bold {
	font-weight: bold;
}

.item_account .fa {
	margin-right: 4px;
}

.instagram .only_instagram, a.instagram .only_instagram {
	display: block;
}

.instagram .only_twitter, a.instagram .only_twitter {
	display: none;
}

.twitter .only_instagram, a.twitter .only_instagram {
	display: none;
}

.twitter .only_twitter, a.twitter .only_twitter {
	display: block;
}

.st-brown {
	background-color: #964b00;
}

.title_add_account {
	text-align:center;
	color:#FFF;
	border-top: 1px #2d3548 solid;
	margin-top: 10px;
	padding-top: 10px;
}

.list_tags_bio, .list_tags_location, .list_tags_lang {
	width: 88%;
}

.limit_bio, .limit_location, .limit_lang {
	float: right;
	font-size: 12px;
	display: none;
	color: #666;
}

.list_tags_bio, .list_tags_location, .list_tags_lang {
	margin-bottom: 13px;
	display: none;
}

.list_tags_bio .item_tag, .list_tags_location .item_tag, .list_tags_lang .item_tag {
	background-color: #EEE;
	padding: 2px 10px;
	margin: 2px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding-bottom: 3px;
	cursor: pointer;
	display: inline-block;
}

span.item_tag:hover {
	background-color: #DDD;
	color: #000;
}

.plan_line {
	background-color: #54a3d3;
	height: 5px;
	width: 100%;
}

.wo_padding {
	padding:0px;
	padding-left: 1px;
}

.plan_title {
	height: 50px;
	line-height: 50px;
	font-weight: bold;
}

.plan_item {
	height: 60px;
	line-height: 13px;
	padding-top: 22px;
	border-top: 1px #dadddf solid;
}

.plan_color_1 .plan_title, .plan_color_1 .plan_item{
	background-color: #eff2f3;
}

.plan_color_2 .plan_title, .plan_color_2 .plan_item {
	background-color: #f5f8f9;
}

.item_p {
	font-weight: 600;
	color: #333;
}

.col-lg-3.wo_padding.text-center.plan_color_1 {
	margin-left: 26px;
}

.lh_m {
	line-height: 9px !important;
}

.btnMain.plan {
	padding: 9px 40px;
	font-size: 15px;
	margin-top: 20px;
}

span.plan_detail {
	display: block;
	position: relative;
	top: 5px;
	font-size: 12px;
	color: #666;
}

.plan_actual_lbl {
	display: none;
	text-align: center;
	font-size: 12px;
	margin-top: 20px;
}

#change-plan .modal-dialog{
	width: 940px !important;
}

#change-plan h5 {
	text-align: center;
	font-weight: 300;
}

#user-notifications label {
	font-weight: normal !important;
}

.check_notification_week_report, .check_notification_scope, .check_notification_tips, .check_notification_offers {
	margin-right: 3px !important;
}

/* Email Notifications modal redesign */
.notif-modal-dialog {
	width: 500px;
	max-width: 94%;
	margin: 80px auto;
}

.notif-modal-content {
	border-radius: 16px !important;
	overflow: hidden;
	border: none !important;
	box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

.notif-modal-header {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 24px 24px 20px;
	border-bottom: 1px solid var(--border-gray);
	position: relative;
}

.notif-header-icon {
	font-size: 28px;
	line-height: 1;
	flex-shrink: 0;
}

.notif-modal-title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 2px;
	color: var(--primary-text-color);
}

.notif-modal-subtitle {
	font-size: 13px;
	color: #888;
	margin: 0;
}

.notif-close-btn {
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 20px;
	color: #aaa;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}

.notif-close-btn:hover {
	color: #555;
}

.notif-modal-body {
	padding: 12px 20px;
}

.notif-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 12px;
	border-radius: 10px;
	margin-bottom: 4px;
	cursor: pointer;
	transition: background 0.12s;
}

.notif-item:hover {
	background: var(--bg-gray);
}

.notif-item-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.notif-item-icon {
	font-size: 18px;
	width: 32px;
	height: 32px;
	background: var(--bg-gray);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.notif-item-label {
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-text-color);
}

.notif-checkbox {
	width: 18px !important;
	height: 18px !important;
	accent-color: #1a1a2e;
	cursor: pointer;
	flex-shrink: 0;
	margin: 0 !important;
}

.notif-modal-footer {
	padding: 16px 24px 24px;
	border-top: 1px solid var(--border-gray);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	flex-wrap: wrap;
}

.notif-modal-footer .alert {
	margin: 0;
	padding: 6px 12px;
	font-size: 13px;
	flex: 1;
}

.notif-save-btn {
	background: linear-gradient(135deg, #8B5CF6, #6366F1) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 10px !important;
	padding: 10px 24px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s !important;
}

.notif-save-btn:hover {
	background: linear-gradient(135deg, #7C3AED, #4F46E5) !important;
}

#preloader .buho .eye {
	display: none;
}

#payment select {
	width: 100%;
}

.monto_total, .plan_detail {
	font-size: 20px;
	font-weight: bold;
}

.ac_padding_top_1 {
	padding-top: 13px;
}

.ac_padding_top_2 {
	padding-top: 15px;
}

#preloader .buho .eye1,
#preloader .buho .eye2 {
	display: none;
}

.msg_data_cc {
	text-align: right;
	padding-top: 10px;
	font-size: 13px;
}

.msgPopupAlert {
	width: 450px;
	position: fixed;
	z-index: 9999;
	margin-left: -225px;
	left: 50%;
	margin-top: 20px;
	border: 1px #FFE766 solid;
	padding-top: 8px !important;
	-webkit-box-shadow: 3px 4px 5px -2px rgba(0,0,0,0.44);
	-moz-box-shadow: 3px 4px 5px -2px rgba(0,0,0,0.44);
	box-shadow: 3px 4px 5px -2px rgba(0,0,0,0.44);
	display: none;
	padding-left: 10px !important;
}

.msg_footer_payment {
	font-size: 13px;
	margin-top: 20px;
}

.icon_success_payment {
	font-size: 50px;
	margin-right: 10px;
	color: var(--primary-color);
}

.lblSuccessPayment {
	position:relative;
	font-size: 17px;
	font-weight: normal;
	top: -7px;
}

.success-plan-modal {
	text-transform: capitalize;
	font-weight: 700;
}

#t1 {
	position: absolute;
	left: 560px;
	width: 400px;
}

#t2 {
	position: absolute;
	left: 560px;
	width: 400px;
}

#t3 {
	position: absolute;
	left: 560px;
	width: 400px;
}

#t4 {
	position: absolute;
	left: 560px;
	width: 400px;
}

#t5 {
	position: absolute;
	left: 560px;
	width: 400px;
}

#t6 {
	position: absolute;
	top: 428px;
	left: 560px;
	width: 400px;
}

.btnStartTutorial {
	color: #666;
	cursor: pointer;
	font-size: 14px;
}

.btnStartTutorial:hover {
	color: #000;
}

#tutorial_campaign {
	text-transform: none !important;
}

.loading_scope {
	color: #000 !important;
	margin-right: 10px;
}

.campaign_inactive {
	color: #B5B5B5;
}

.easy-autocomplete {
	width: 100% !important;
}

.btnHideCampaigns {
	margin-right: 11px;
	background-color: var(--white-color) !important;
	padding: 5px 12px;
}

.discount_active .discount_active_plan .monto_total {
	color: #F05050;
	text-decoration: line-through;
}

.content_discount {
	display: none;
}

.discount_active .content_discount {
	display: block;
}

.off_discount {
	display: none;
	color: #F05050;
	font-size: 20px;
	margin-top: 5px;
}

.discount_active .off_discount {
	display: block;
}

.discount_active .discount_active_detail .monto_total_discount {
	font-size: 15px;
}

.btnArchive {
	cursor: pointer;
	font-size: 15px;
}

.stars_group .starActive {
	color: #febe12;
	font-size: 30px;
}

.starInactive {
	color: #CCC;
	font-size: 30px;
}

.content_stars {
	background: transparent;
	padding-top: 20px;
	text-align: center;
	display: none;
	border-radius: 100px;
}

.stars_group {
	margin-bottom: 3px;
	display: inline-block;
}

.stars_group .fa-star {
	margin-right: 8px;
}

.stars_group .value {
	font-size: 20px;
	margin-left: 9px;
	color: var(--primary-text-color);
	position: relative;
	top: -2px;
	width: 100px;
	display: inline-block;
	text-align: left;
}

.stars_5.stars_group {
	margin-top: 40px;
}

.content_stars .tooltip {
	margin-left: 30px !important;
}

span.title_lang_followers {
	font-weight: bold;
	text-align: left;
	display: inline-block;
	width: 65%;
	font-family: "Arial";
	font-size: 12px;
}

.reduce_width_tooltip .tooltip {
	width: 150px !important;
}

.reduce_width_tooltip.right .tooltip {
	margin-left: -20px;
}

.reduce_width_tooltip.left .tooltip {
	margin-left: 10px;
}

.acceptCards {
	font-size: 31px;
	color: #666;
}

.acceptCards .fa{
	margin-right: 10px;
}

#scope_detail {
	display: none;
	left: 600px;
	top: -57px;
	width: 300px;
}

#scope_detail h3.popover-title {
	padding-top: 18px;
	padding-bottom: 18px;
	text-align: center;
}

#chart_div_scope {
	width: 180px;
	height: 180px;
	margin: auto;
}

.content_scope_aprox {
	text-align: center;
	margin-top: 20px;
	border-top: 1px #CCC solid;
	padding-top: 10px;
}

.scope_aprox {
	font-weight: bold;
}

.recomendations_scope {
	margin-top: 10px;
	display: none;
}

.recomendations_scope_detail {
	font-size: 13px;
}

.recomendations_scope_detail ul {
	margin-left: -20px;
	margin-top: 5px;
}

.scope_days_scope {
	text-align: center;
}

#scope_detail svg g g {font-size:0px;}
#scope_detail svg text {font-size:0px;}

.skip_tutorial {
	display: inline-block;
	position: absolute;
	margin-left: 45px;
	margin-top: 14px;
	font-size: 13px;
	color: #666;
	cursor: pointer;
}

.skip_tutorial:hover {
	color: #000;
}

.schedule_desc {
	margin: 0px !important;
	margin-bottom: 0px !important;
	margin-top: 20px !important;
}

.content_stars_detail {
	float: right;
	display: inline-block;
}

.content_stars_detail .starActive {
	color: #febe12;
	font-size: 13px;
}

.content_stars_detail .starInactive {
	color: #CCC;
	font-size: 13px;
}

.columnplan1 {
	font-size: 13px;
	width: 185px;
}

.not_eligible {
	color: #313131;
	font-size: 12px;
	display: block;
	margin-bottom: 0px;
	font-weight: normal;
	text-align: center;
	margin-top: 3px;
	display: none;
}

#credentials_challenge {
	margin-top: 10px;
}

.table_plan .hibernating-panel {
	background-color: #e4e4e4;
	border-radius: var(--border-radius);
	width: max-content;
	margin: 20px auto;
	position: relative;
	padding: 10px 30px;
	padding-top: 15px;
}

.table_plan .hibernating-panel .btnCancelPlanSpecial {
	display: inline-block;
	position: relative;
	top: -2px;
	left: 12px;
}

.plans-dashboard {
	margin: 0 auto;
	max-width: 850px;
}

.lbl-code {
	display: block;
	font-size: 10px;
	width: fit-content;
	margin: 0 auto;
	position: relative;
	top: 4px;
}

.lbl-green {
	background-color: #0bcc62 !important;
}

.lbl-code span {
	font-size: 12px;
	background-color: #0bcc62;
	color: #FFF;
	padding: 2px 8px;
	border-radius: 30px;
	margin-left: 5px;
}

.modal-body{
	padding: 20px 30px;
}

.need_more_accounts {
	font-size: 18px;
	margin-bottom: 30px;
}

.need_more_accounts a{
	text-decoration: underline;
}

.plans-dashboard .content-buttons {
	background-color: #f5f5f5;
	border: 1px #f5f5f5 solid;
}

.content-buttons a {
	margin-top: 10px;
}

.content-detail-subscription {
	margin: 0 auto;
	max-width: 850px;
	margin-bottom: 30px;
}

.notification-menu {
	position: relative;
	top: 1px;
}

.notification-menu a {
	display: inline-block !important;
}

/* ── Header nav vertical centering ─────────────────────────── */
body > .header .navbar .navbar-right > ul.nav {
	display: flex !important;
	align-items: center !important;
	height: 60px !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	float: none !important;
}
body > .header .navbar .navbar-right {
	display: flex !important;
	align-items: center !important;
	height: 60px !important;
}

/* ── Header icon buttons (bell + user) ─────────────────────── */
.header-icon-btn {
	display: inline-flex !important;
	align-items: center;
	gap: 5px;
	padding: 6px 10px !important;
	border-radius: 8px !important;
	background: transparent !important;
	border: none !important;
	transition: background .15s !important;
	color: rgba(255,255,255,.8) !important;
	font-size: 15px !important;
	line-height: 1 !important;
}
.header-icon-btn:hover,
.header-icon-btn:focus {
	background: rgba(255,255,255,.12) !important;
	color: #fff !important;
	text-decoration: none !important;
}
.header-icon-btn .fa {
	font-size: 15px !important;
	color: inherit !important;
	margin: 0 !important;
}
.header-icon-btn .caret { display: none !important; }
.header-user-btn { padding: 0 !important; border-radius: 50% !important; width: 34px !important; height: 34px !important; justify-content: center; background: rgba(255,255,255,0.18) !important; border: 2px solid rgba(255,255,255,0.28) !important; }
.header-user-btn:hover, .header-user-btn:focus { background: rgba(255,255,255,0.30) !important; }
.header-user-initial { font-size: 14px; font-weight: 700; line-height: 1; color: #fff; }
.number_notification {
	position: absolute;
	top: 5px;
	right: 6px;
	background: #ef4444;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	border: 2px solid var(--bg-white);
}

.notification-menu .dropdown-menu {
	left: -231px;
	width: 345px !important;
}

.notification-menu .dropdown-menu .arrow-up1, .notification-menu .dropdown-menu .arrow-up2 {
	left: 246px;
}

.user-menu .fa, .user-menu {
	color: var(--primary-text-color);
}

.item_notification {
	padding-top: 15px !important;
	border-bottom: 1px #CCC solid;
	padding-left: 20px !important;
	padding-right: 20px;
}

.item_notification_title {
	font-weight: bold;
	font-size: 14px;
	display: block;
	padding-bottom: 13px;
}

.item_notification_desc {
	font-size: 13px;
}

.item_notification_desc a {
	text-decoration: underline;
	color: #227dd2 !important;
	font-weight: bold;
}

.item_notification_date {
	color: #AAA;
	margin-top: -6px !important;
	font-size: 12px;
}

.notification_active {
	-webkit-animation: animateNotificationIcon 1s infinite;
}

.list_notifications {
	max-height: 400px;
	overflow: auto;
	color: #000;
}

.notification_active_back {
	background-color: #FDFFE8;
}

.no_notification {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.number_notification {
	position: absolute;
	left: -5px;
	top: 8px;
	color: #FFF;
	background-color: red;
	width: 20px;
	height: 20px;
	text-align: center;
	font-size: 12px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-weight: bold;
	display: none;
}

.btnStopRecurring, .btnCancelPlan, .btnCancelPlanSpecial, .btnToCancelPlan {background-color: var(--alert-color) !important;margin: 0 auto;padding: 10px 20px;}

.btnCancelPlanSpecial:hover {
	background-color: #c73049 !important;
	color: #FFF;
}

.btnCancelPlanColor, .btnCancelPlanColor:focus {
	background-color: #FF4F6C !important;
	color: #FFF;
	padding: 10px 20px;
}

.input-login-email {
	display: none;
}

.btnCancelPlanColor:hover {
	background-color: #c73049 !important;
	color: #FFF;
}

.btnToCancelPlan {
	display: inline;
}

#special_cancel .btnCancelPlan, #performance_cancel .btnToCancelPlan {
	position: relative;
	top: 0px;
}

.detail_search_account {
	font-weight: 100;
	text-align: left;
	margin-bottom: 30px;
	margin-top: 10px;
	line-height: normal;
}

.detail_search_account.green {
	color: green;
}

.firstTimeLoading {
	display: none;
}

.title-direct{
	display: none;
}

.testimonial {
	margin-top:10px;
	background: transparent;
	padding: 30px;
}

.testimonial img{
	width: 100px;
}

.testimonial p{
	padding-top: 10px;
}

.content{
	padding-top: 40px;
}

.login_header{
	max-height: 10px !important;
}

.fa.fa-info {
	color: #909090;
	padding: 0px 3px;
	width: 15px;
	height: 15px;
	text-align: left;
	font-size: 10px;
	border-radius: 10px;
	font-weight: 100;
	vertical-align: top;
	cursor: pointer;
}

.performance {
	margin-left: 5px;
	position: relative;
	top: -5px;
}

.i-orange {
	color: #ff9a00 !important;
}

.i-yellow {
	color: #b1b1b1 !important;
}

.stars_group .fa.fa-info {
	position: relative;
	top: -4px;
}

.content_stars .tooltip {
	margin-left: 0px !important;
}

form .tooltip {
	width: 500px;
	margin-top: -10px;
}

.content_expander .tooltip {
	margin-top: -5px;
}

.btnEdit {
	cursor: pointer;
	font-size: 15px;
}

.btnShowToFollow {
	background-color: #2aa1ef;
	cursor: pointer;
	font-size: 13px;
}

.porcCompletitud {
	position: relative;
}

.porCompletitud {
	position: relative;
	width: 80px;
	height: 7px;
	background-color: #e4e4e4;
	display: block;
	margin-top: 7px;
	border-radius: 25px;
}

.porCompletitud .porCompletitudBar {
	display: block;
	background-color: #28b74a;
	height: 7px;
	border-radius: 20px;
}

.porCompletitudText {
	position: absolute;
	right: 0px;
	font-size: 10px;
	top: 11px;
}

.big-modal {
	width: 1100px;
}

.list_followers_to_follow .tw_profile_image {
	width: 50px;
	height: 50px;
	border-radius: 100px;
	max-width: none !important;
}

.list_followers_to_follow .content_stars_detail {
	float: none;
	display: block;
}

.list_followers_to_follow .name {
	margin: 0;
}

.list_followers_to_follow .username {
	display: block;
}

.list_followers_to_follow .username a {
	display: block;
	font-weight: normal;
	color: #555;
	font-size: 12px;
}

.panel-body {
	padding: 0px !important;
}

.big-modal .panel-body{
	padding: 5px;
}

.max-width-th {
	width: 260px;
}

.th-sm {
	cursor: pointer;
}

.th-sm .fa-sort {
	position: relative;
	left: 3px;
}

.label-follow {
	background-color: #2aa1ef;
	font-size: 14px;
}

.label-unfollow {
	background-color: #e44949;
	font-size: 14px;
}

.label-lock {
	background-color: #969696;
	font-size: 14px;
}

.loading-table {
	position: relative;
	top: 15px;
	width: 100%;
	text-align: center;
	display: none;
	font-size: 17px;
	height: 50px;
}

.pagination {
	margin: 0 auto;
	display: block;
	width: fit-content;
}

.content_loading_followers {
	display: none;
	width: 77%;
}

.content_loading_followers .spinner {
	margin: 0px auto 0;
	width: 70px;
	text-align: center;
}

.content_loading_followers .spinner > div {
	width: 12px;
	height: 12px;
	background-color: #6d6d6d;

	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.content_loading_followers .spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.content_loading_followers .spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

tr.hidden_locked {
	opacity: 0.2;
}

.followMe_Yes, .followMe_Si {
	font-weight: bold;
}

.follow-data {
	display: block;
	margin-bottom: 5px;
}

.btnShowMore {
	margin: 15px auto !important;
	display: table;
}

.msgSearching {
	display: none;
	margin-top: 20px;
	margin-bottom: 10px;
}

.extension_option {
	border: 1px #e8e8e8 solid;
	border-radius: 7px;
	padding: 20px;
	background-color: #f7f7f7;
	display: none;
}

.extension_option h4 {
	margin: 0px;
}

.extension_option .desc {
	margin-top: 5px;
	display: block;
	color: #5f5f5f;
}

.btnPlay {
	background-color: #00ab2e;
	font-size: 16px;
	padding: 10px 20px;
	cursor: pointer;
	position: relative;
	top: 11px;
}

.btnPlay .fa, .btnStop .fa {
	margin-right: 6px;
}

.btnPlay:hover {
	background-color: #008824;
}

.btnStop {
	background-color: #c71d00;
	font-size: 16px;
	padding: 10px 20px;
	cursor: pointer;
	position: relative;
	top: 11px;
	display: none;
}

.btnStop:hover {
	background-color: #ad1a00;
}

.content-status-progress.m-t {
	margin-top: 5px;
}

.content-status-progress {
	display: block;
}

.content-status-progress label {
	margin: 0px;
}

.content_extension_popup {
	position: fixed;
	top: 0px;
	background-color: rgba(0,0,0,0.6);
	width: 100%;
	height: 100%;
	z-index: 100000;
	text-align: center;
	opacity: 0;
}

.extension_popup {
	width: 530px;
	margin: 0 auto;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	position: absolute;
	left: 50%;
	background-color: var(--white-color);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 2px 2px 12px rgba(0,0,0,0.3);
}

.extension_popup p {
	width: 90%;
	margin: 0px auto;
	margin-top: 20px;
	font-size: 16px;
}

.extension_popup a {
	background-color: #fafafa;
	border-radius: 4px;
	color: #1f1f1f;
	padding: 10px 40px;
	display: block;
	width: 280px;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px #CCC solid;
	font-size: 15px;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	cursor: pointer;
	position: relative;
}

.extension_popup a:hover {
	box-shadow: none;
	top: 1px;
}

.extension_popup a img {
	display: inline-block;
	width: 24px;
	position: relative;
	top: -2px;
}

.n-r {
	border-radius: 10px !important;
}

.onboarding {
	/* width: 90%; */
	margin: 0 auto;
	margin-top: 30px;
	display: none;
	position: relative;
}

.onboarding h2 {
	margin: 0;
	font-size: 17px;
}

.onboarding h1 {
	margin: 0;
	margin-top: 5px;
	margin-bottom: 40px;
}

.onboarding .item {
	margin-bottom: 19px;
	display: flow-root;
	border-radius: 10px;
	padding: 20px;
	padding-top: 0px;
	background-color: var(--white-color);
	border: 1px solid var(--border-gray);
	position: relative;
}

.onboarding .item .btn {
	display: inline-block;
	position: relative;
	width: 230px;
	top: 10px;
	margin-left: 10px;
	font-size: var(--btn-font-size);
	margin: 0;
	margin-top: 10px;
	border-radius: var(--border-radius);
	padding: 10px 25px;
	font-weight: bold;
}

.onboarding_pending {
    border-radius: 100px;
    background-color: var(--yellowWarningBg);
    color: var(--fontOverYellow);
    width: fit-content;
    padding: 2px 16px;
    font-size: 13px;
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    font-weight: bold;
}

.item.done .onboarding_pending {
	display: none;
}

p.text-detail-followers-count {
    background-color: rgb(255, 251, 235);
    padding: 10px;
    border: 1px solid rgb(227 201 99);
    font-size: 14px;
    color: rgb(146, 64, 14);
    border-radius: var(--border-radius);
}

#manage-subscription .modal-body {
	padding-bottom: 20px !important;
}

.card_dashboard .account_verified {
	position: relative;
	top: 3px;
	right: 0px;
}

body:not(.skin-black) .onboarding .item.step3 .btn{
	background-color: #ff872b;
}

body:not(.skin-black) .onboarding .item.step3 .btn.disabled{
	background-color: #b1b1b1;
	opacity: 0.5;
	color: #000000;
	display: block;
}

.onboarding .item .btn.btnAddAccount{
	top: 0px;
	margin-top: 0px;
}

.onboarding .item span:not(.onboarding-why-tooltip) {
    display: inline-block;
    border-radius: 100px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    font-size: 18px;
    color: #2985dc;
    font-weight: bold;
    position: relative;
    z-index: 2;
    background-color: #ddf1ff;
}

.onboarding h3 {
	display: inline-block;
	margin-left: 3px;
}

.onboarding p {
    font-size: 16px;
    width: 500px;

    margin-left: 60px;
}

.onboarding-why-tooltip {
    font-size: 11px;
    font-weight: 500;
    color: var(--secondary-text-color);
    cursor: pointer;
    position: relative;
    margin-left: 8px;
    vertical-align: middle;
}


.onboarding-why-tooltip::after {
    content: attr(data-tooltip);
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 280px;
    background: var(--bg-white);
    color: var(--primary-text-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    white-space: normal;
}

.onboarding-why-tooltip:hover::after {
    display: block;
}

.onboarding-disclaimer {
    font-size: 12px;
    color: var(--secondary-text-color);
    display: block;
    margin-top: 14px;
}

.onboarding .content_expander {
	display: grid;
}

.content_expander label {
	font-weight: normal;
}

.onboarding .expander {
	width: 100%;
	margin-bottom: 20px;
}

.modal-dialog .btn {
	border-radius: var(--border-radius) !important;
}

.min_characters {
	font-size: 12px;
	margin-top: 10px;
	display: block;
}

.btn-extension {
	background-color: #fafafa;
	border-radius: 4px;
	color: #1f1f1f;
	padding: 10px 40px;
	width: 280px;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px #CCC solid;
	font-size: 15px;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	cursor: pointer;
	position: relative;
	margin-left: 10px;
	top: -2px;
}

.btn-extension:hover {
	color: #000;
	box-shadow: none;
	top: 1px;
}

.onboarding .item.done {
	opacity: 0.4;
}

.onboarding .item.inactive {
	opacity: 0.4;
}

.onboarding .item.done span {
	color: #008824;
}

.content_chart.chart_1.backchart {
	background-image: url(../img/chart1demo.jpg);
	background-repeat: no-repeat;
	background-size: 102%;
}

.content_chart.chart_2.backchart {
	background-image: url(../img/chart2demo.jpg);
	background-repeat: no-repeat;
	background-size: 102%;
}

.slick-initialized .slick-slide {
	outline: none;
}

.activate-2fa {
	font-size: 14px;
	line-height: 19px !important;
	display: block;
	margin-bottom: 10px;
	background-color: #f3f3f3;
	padding: 10px;
	border-radius: var(--border-radius);
	font-weight: normal;
	margin-top: 10px;
}

.slick-dots {
	margin-top: 20px;
	width: fit-content;
	padding: 0;
	margin: 37px auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.slick-dots li { position: relative; display: inline-block; height: 20px; width: 20px; padding: 0; cursor: pointer; }
.slick-dots li button {
	border-radius: 100px;
	border: 0;
	background: #CCC;
	display: block;
	height: 10px;
	width: 10px;
	outline: none;
	line-height: 0;
	font-size: 0;
	color: transparent;
	padding: 5px;
	cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus { outline: none; }
.slick-dots li.slick-active button { background: #9c9c9c; }

.slider-popups {
	text-align: center;
}

.slider-popups img {
	margin: 0 auto;
	width: 80px;
}

.slider-popups h5 {
	font-weight: bold;
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 10px;
	display: block;
}

.lblSuccessPayment h5{
	font-weight: bold;
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 20px;
	display: block;
}

.slider-popups p {
	width: 80%;
	margin: 0 auto;
	font-size: 17px;
	position: relative;
	line-height: 27px;
}

.no-data-yet {
	text-align: center;
	top: 0px;
	height: 100%;
	background-color: #fff;
}

.no-data-yet span {
	position: absolute;
	margin: 0 auto;
	min-width: 350px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	background-color: var(--white-color);
	padding: 36px 20px;
	border-radius: var(--border-radius);
}

.no-data-yet span svg {
	color: #c0c4cc;
	flex-shrink: 0;
}

.no-data-yet strong {
	font-size: 15px;
	font-weight: 600;
	color: #374151;
	display: block;
	margin: 0;
}

.no-data-yet span > :last-child:not(strong) {
	font-size: 13px;
	color: #9ca3af;
	display: block;
}

.lbl-alert .fa, .lbl-warning .fa {
	margin-right: 2px;
}

.lbl-alert{
	margin-left: 15px;
	font-size: 13px;
	color: #92400e;
	background-color: #fffbeb;
	border: 1px solid #fcd34d;
	padding: 5px 15px;
	border-radius: var(--border-radius);
	position: relative;
	top: -3px;
}

.n-promo {
	display: none;
}

.lbl-success {
	/* margin-left: 10px; */
	/* font-size: 13px; */
	color: #000000;
	background-color: var(--successBackground);
	padding: 7px;
	border-radius: var(--border-radius);
	border: 1px var(--border-gray) solid;
	margin-bottom: 14px;
	display: none;
	/* letter-spacing: 0.2px; */
	padding: 10px 20px;
}

.lbl-success a {
	text-decoration: underline;
	color: rgb(6 51 26 / 75%) !important;
	font-weight: 700;

}

.lbl-warning {
	margin-left: 10px;
	font-size: 13px;
	color: rgba(47, 46, 7, 0.75);
	background-color: #fff83887;
	padding: 7px;
	border-radius: var(--border-radius);
}

.sidebar-menu .span-warning {
	color: #92400e;
	font-size: 12px;
	display: block;
	border: 1px solid #fcd34d;
	background: #fffbeb;
	border-radius: 6px;
	padding: 6px 12px;
	width: 90%;
	margin: 6px auto;
	margin-top: -4px;
	text-align: center;
}

#user-notifications input[type="radio"] {
    margin: 10px 10px;
}

.sidebar-menu .span-warning a {
	text-decoration: underline;
	color: #b45309;
	font-weight: 500;
}

.modal-content {
	border-radius: var(--border-radius);
}

.navbar-nav .btn {padding: 5px 15px;}

.sidebar-menu .icon-warning {
	position: absolute;
	top: 6px;
	right: 2px;
	background: none;
}

.login-twitter.btn {
	display: block;
	color: #FFF;
	background-color: var(--orange-color);
	width: fit-content;
	padding: 10px 50px;
	border-radius: 3px;
	margin-top: 10px
	font-size;
}

.login-twitter.btn:hover {
	color: #FFF;
	background-color: var(--orange-hover);
}

span.dot_active {
	width: 10px;
	height: 10px;
	border-radius: 1000px;
	background-color: #27c24c;
	display: inline-block;
	margin-right: 3px;
}

span.dot_inactive {
	width: 10px;
	height: 10px;
	border-radius: 1000px;
	background-color: var(--alert-color);
	display: inline-block;
	margin-right: 3px;
}

span.dot_ended {
	width: 10px;
	height: 10px;
	border-radius: 1000px;
	background-color: #CCC;
	display: inline-block;
	margin-right: 3px;
}

.content_chart {
	position: relative;
	/* background: var(--bg-white); */
	height: 360px;
	border-radius: 9px;
	border: 1px solid var(--border-gray);
	overflow: hidden;
	background: var(--bg-gray);
}

.content_chart.stars {
	height: 300px;
	overflow: inherit;
}

.title_chart {
	position: absolute;
	top: 20px;
	left: 20px;
	text-align: center;;
	z-index: 2;
}

.value_chart {
	position: absolute;
	z-index: 2;
	font-size: 27px;
	top: 40px;
	left: 20px;
}

.desc_chart {
	position: absolute;
	left: 20px;
	z-index: 2;
	top: 77px;
	color: rgb(162, 171, 189);
	font-size: 12px;
}

.legend_chart {
	position: absolute;
	z-index: 2;
	right: 20px;
	top: 20px;
	color: #636363;
	font-size: 13px;
}

.ref-with {
	width: 15px;
	height: 6px;
	display: inline-block;
	border-top: 2px solid #75c7ff;
	background-color: #d6efff;
	position: relative;
	top: 9px;
	right: 5px;
}

.ref-without {
	width: 15px;
	height: 6px;
	display: inline-block;
	border-top: 2px solid #7b7b7b;
	background-color: #dadada;
	position: relative;
	top: 9px;
	right: 5px;
}

.porc_chart_value {
	display: inline-block;
	font-size: 15px;
	margin-left: 6px;
}

.porc_chart_value.green {
	color: #5BB75B;
}

.porc_chart_value.red {
	color: rgb(180, 56, 56);
}

.content-block-charts {
	margin-bottom: 25px;
}

#chart_div_3, #chart_div_4, #chart_div_5, #chart_div_6 {
	border-radius: 9px;
	border: 1px solid var(--border-gray);
	overflow: hidden;
	/* background-color: var(--bg-gray); */
	background-color: var(--bg-gray);
}

#chart_div_1, #chart_div_2, #chart_div_3, #chart_div_4, #chart_div_6, #chart_div_2aux, .content_chart.stars {
	/* background-image: url('../img/load.gif'); */
	background-repeat: no-repeat;
	background-position: center;
}

#chart_div_1 .loading-dots, #chart_div_2 .loading-dots, #chart_div_3 .loading-dots, #chart_div_4 .loading-dots, #chart_div_6 .loading-dots, #chart_div_2aux .loading-dots, .content_chart.stars .loading-dots {
	top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    position: absolute;
}

.chart_div_2 .porc_chart_value {
	display: none;
}

#chart_div_2aux {
	position: absolute;
	top: 0px;
}

#first-campaign img {
	margin: 0 auto;
	display: block;
	width: 130px;
	margin-bottom: 20px;
}

#first-campaign .step2, #first-campaign .step3 {
	display: none;
}

#first-campaign .text {
	font-size: 16px;
	width: 80%;
	margin: 0 auto;
	margin-bottom: 30px;
	text-align: center;
}

#first-campaign h5 {
	font-size: 19px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}

.lblScore {

	margin-left: 3px;
	font-size: 18px;
	position: relative;
	top: 2px;
}

.campaign_inactive span.dot_inactive {
	background-color: var(--alert-color);
}

.ratio-info {
	margin-top: 20px;
	color: #3a310f;
	border: 1px #dac67b solid;
	background-color: #fff0b6;
	padding: 15px;
	border-radius: var(--border-radius);
	display: none;
}

.btnCancelAddAccount {
	border-radius: 100px;
}

.QTYFollowing, .QTYFollowers, .QTYRatio {
	font-weight: bold;
}

.content-detail {
	font-size: 12px;
	font-weight: normal;
	text-align: center;
	height: 20px !important;
}

.plans-dashboard .content-detail {
	background-color: #f5f5f5;
	height: 50px !important;
}

.plans-dashboard .content-detail td{
	border:none;
}

.toggle-control {
	position: relative;
	padding-left: 55px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.toggle-control input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.toggle-control input:checked ~ .control {
	background-color: #54a3d4;
}
.toggle-control input:checked ~ .control:after {
	left: 33px;
}
.toggle-control .control {
	position: absolute;
	top: 0;
	left: 0;
	height: 31px;
	width: 60px;
	border-radius: 25px;
	background-color: #54a3d4;
	transition: background-color 0.15s ease-in;
}
.toggle-control .control:after {
	content: "";
	position: absolute;
	left: 5px;
	top: 4px;
	width: 22px;
	height: 22px;
	border-radius: 25px;
	background: var(--white-color);
	transition: left 0.15s ease-in;
}

.content-annual-month {
	display: block;
	text-align: right;
	height: 50px;
	position: relative;
	top: -10px;
}

.content-annual-month div {
	display: inline-block;
}

.content-annual-month .text {
	position: relative;
	top: 30px;
	margin-left: 10px;
	font-weight: bold;
}

.content-annual-month .text p {
	font-weight: 100;
	font-style: italic;
}

.content-annual-month .text:first-child {
	margin-right: 10px;
	top: 10px;
}

.content-annual-month.popup {
	width: 90%;
	margin: 0 auto;
	top: -35px;
}

.welcome-username {
	margin: 0;
	font-size: 18px;
}

.welcome-purchase {
	margin-top: 5px;
}

h4.title-trial{
	font-weight: 700;
}

.back-testimonials {
	position: absolute;
	top: 0px;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100%!important;
	left: 0px;
}

.logo_login {
	display: inline-block;
	/* margin-bottom: 20px; */
}

html, .login-register, .container {
	height:100%;
}
.container {
	display:table;
	width: 100%;
	margin-top: -50px;
	padding: 50px 0 0 0;
	box-sizing: border-box;
}

.row_h {
	height: 100%;
	display: flex;
	margin-left: 0px;
	margin-right: 0px;
}

.row .no-float {
	display: table-cell;
	float: none;
}

#loading-message {
	text-align: center;
    padding: 40px 20px 20px;
    background-color: var(--bg-gray);
    max-width: 400px;
    margin: 20px auto;
    color: var(--primary-text-color);
    border-radius: 8px;
    display: block;
    border: 1px solid var(--border-gray);
}

#login-iframe-warning {
	display: none; 
	font-size: 14px; 
	color: var(--secondary-text-color); 
	margin-top: 20px; 
	 max-width: 500px; 
	margin: 10px auto;
}

.cover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(36,121,201, .92);
	z-index: 2;
}

.register-free-trial{
	background: var(--white-color);
	color: var(--orange-color);
	border-radius: var(--border-radius);
	display: block;
	padding: 10px;
	font-weight: 700;
	width: fit-content;
	margin: 0 auto;
	border: 1px solid var(--orange-color);
}

.login-x, .login-x .content {
	background-color: #000;
	color: var(--primary-text-color);
}

.login-register .testimonial {
	position: relative;
	background-color: transparent;
	color: #FFF;
	font-size: 27px;
	z-index: 3;
	top: 55%;
	transform: translateY(-70%);
	padding: 70px;
}

.login-register .testimonial i {
	font-size: 70px;
	color: #FFF;
}

.login-register .testimonial .customer {
	font-size: 17px;
	margin-top: 30px;
}

.login-register .testimonial .customer .name {
	margin-top: 6px;
}

.login-register .testimonial .customer a {
	color: #FFF;
	text-decoration: underline;
	font-size: 14px;
	position: relative;
	top: -9px;
}

.p-l-0 {
	padding-left: 0px !important;
}

.potential-month {
	font-size: 13px !important;
	display: inline-block !important;
	margin-left: 3px;
	color: #666;
}

.improve-ratio {
	position: absolute;
	top: -6px;
	right: -4px;
	font-size: 12px;
	color: #ffffff;
	font-weight: normal;
	background-color: var(--violet-color);
	border-radius: var(--border-radius);
	padding: 1px 10px;
}


.hibernating-panel {
	position: absolute;
	top: 0px;
	width: 98%;
	left: 0px;
	height: 94%;
	z-index: 10;
	text-align: center;
	padding-top: 20px;
	background-color: rgba(255, 255, 255, 0.9);
	font-weight: bold;
	display: none;
}

.hibernating-panel .lbl-warning-account{
	width: fit-content;
	margin: 0 auto;
	padding: 10px 40px;
	top: 50%;
	transform: translateY(-50%);
}

.improve-ratio:hover, .improve-ratio:focus {
	background-color: #6456b1;
	color: #FFF !important;
}

.icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}

.icon-quotes-left {
	font-size: 40px;
}

.table_invoices_content a {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
}

.table_invoices_content td {
  cursor: default !important;
  padding: 0px 10px !important;
}

.cleaned {
	background-color: #e8e8e8;
	color: #6f6f6f;
	border-radius: 100px;
	font-size: 11px;
	padding: 2px 6px;
	margin-left: 9px;
}

.cancel-model-options label {
	display: block;
	padding-top: 5px;
	font-size: 15px;
	font-weight: 300;
}

.cancel_modal_desc h4{
	padding-bottom: 10px;
	margin-top:0px;
}

.cancel-model-options input {
	display: inline-block;
	margin-right: 10px;
	margin-top: 0px;
	width:20px;
}

.cancel_modal_btn2{
	font-weight: 700;
}

#cancel_modal textarea {
	width: 100%;
	height: 130px;
	border: 1px #CCC solid;
}

.manage-account-delete, .btnDeleteAccount {
	background-color: transparent !important;
	border: 0;
	padding: 0;
	color: #c11010 !important;
	font-size: 12px;
	text-align: center;
	margin: 0 auto;
	margin-top: 10px;
	display: block;
}

span.last-update-tooltip {
	display: none;
	position: absolute;
	width: 10px;
	height: 10px;
	right: 31px;
	color: #a0a0a0;
	top: 7px;
}

.notification_dashboard {
	display: none;
	background-color: var(--bg-white);
	border-radius: var(--border-radius);
	margin: 0 auto;
	margin-bottom: 10px;
	padding: 20px 20px;
	border: 1px solid var(--border-gray);
}

.notification_dashboard img {
	max-width: 150px !important;
}

.notification_dashboard .confirm_hide {
	display: none;
}

.notification_dashboard_button_hide {
	background-color: transparent;
	border: 0;
	color: #36a5f1;
	margin-right: 2px;
}

.notification_dashboard_button_hide:hover {
	color: #2a8bcc;
}

.notification_dashboard_button_cancel {
	background-color: transparent;
	border: 0;
	margin-left: 2px;
}

.notification_dashboard_button_cancel:hover {
	color: #666;
}

.notification_dashboard_title {
	font-size: 19px;
	font-weight: bold;
	margin-bottom: 5px;
}

.notification_dashboard_img {
	width: 115%;
	padding-left: 10px;
}

.notification_dashboard_desc {
	font-size: 15px;
}

.notification_dashboard_button {
	  width: fit-content;
    background: linear-gradient(90deg, #a855f7 0%, #4f46e5 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    padding: 0px 20px;
    border-radius: 999px;
    display: inline-block;
    font-weight: 700;
}

.notification_dashboard_button span {
	width: fit-content;
  height: 40px;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.notification_dashboard_button:hover {
	box-shadow: rgb(0 0 0 / 6%) 0 4px 12px;
	transform: translateY(-1px);
	animation: none;
	color: #FFF;
}

.notification_dashboard_button_close {
    display: inline-block;
    border: 1px #9E9E9E solid;
    background-color: transparent;
    margin-top: 11px;
    color: #9E9E9E;
    width: 100%;
    font-size: 11px;
    max-width: 240px;
    border: none;
}

.vcenter {
	display: inline-block;
	vertical-align: middle;
	float: none;
}

.alert-success {
	padding: 8px !important;
	color: #267d00;
	font-weight: bold;
	border-radius: var(--border-radius);
}
.del {
	position: absolute;
	width: 45px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.table-referral-no-data {
	display: block;
	padding: 20px;
	width: 100%;
	text-align: center;
}

.new-item-menu {
	background: #139e52;
	color: #FFF;
	border-radius: 3px;
	padding: 0px 4px;
	right: 10px;
	font-size: 11px;
	margin-left: 3px;
	display: inline-block;
	padding-bottom: 1px;
}

.free-item-menu {
	background: #139e52;
	color: #FFF;
	border-radius: 3px;
	padding: 0px 4px;
	right: 10px;
	font-size: 11px;
	margin-left: 3px;
	display: inline-block;
	padding-bottom: 1px;
}

/* Referral modal redesign */
.referral-modal-dialog {
	width: 580px;
	max-width: 94%;
	margin: 60px auto;
}

.referral-modal-content {
	border-radius: 16px !important;
	overflow: hidden;
	border: none !important;
	box-shadow: 0 20px 60px rgba(0,0,0,0.18) !important;
}

.referral-close-btn {
	position: absolute;
	top: 14px;
	right: 18px;
	z-index: 10;
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: rgba(255,255,255,0.75);
	padding: 0;
}

.referral-close-btn:hover {
	color: #fff;
}

.referral-hero {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
	padding: 36px 36px 28px;
	text-align: center;
	color: #fff;
}

.referral-hero-icon {
	font-size: 40px;
	margin-bottom: 10px;
	line-height: 1;
}

.referral-hero-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 14px;
	color: #fff;
}

.referral-reward-badge {
	display: inline-block;
	background: linear-gradient(90deg, #f7971e, #ffd200);
	color: #1a1a2e;
	font-weight: 800;
	font-size: 15px;
	padding: 6px 20px;
	border-radius: 50px;
	margin-bottom: 14px;
	letter-spacing: 0.3px;
}

.referral-hero-desc {
	color: rgba(255,255,255,0.75);
	font-size: 13px;
	margin: 0;
	line-height: 1.6;
}

.referral-hero-desc a {
	color: #ffd200;
	text-decoration: underline;
}

.referral-body {
	padding: 28px 32px 32px;
	background: #fff;
}

.referral-link-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #888;
	margin-bottom: 8px;
}

.content-input-referral-link {
	display: flex;
	align-items: center;
	border: 1.5px solid var(--border-gray);
	border-radius: 10px;
	background: var(--bg-gray);
	padding: 8px 10px 8px 14px;
	gap: 8px;
}

.referral-link-icon {
	color: #aaa;
	font-size: 14px;
	flex-shrink: 0;
}

.input-referral-link {
	flex: 1;
	padding: 4px 0;
	font-size: 14px;
	border: 0;
	background-color: transparent;
	outline: none;
	color: var(--primary-text-color);
	min-width: 0;
}

.copied {
	background: #139e52;
	color: #FFF;
	padding: 3px 8px;
	font-size: 12px;
	border-radius: 6px;
	display: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.btnCopyReferralLink {
	flex-shrink: 0;
	padding: 7px 16px;
	border: none;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	background: #1a1a2e;
	border-radius: 8px;
	cursor: pointer;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: background 0.15s;
}

.btnCopyReferralLink:hover {
	background: #0f3460;
}

.referral-table-section {
	margin-top: 28px;
}

.referral-table-title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	color: #888;
	margin-bottom: 12px;
}

.table_referrals {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1.5px solid var(--border-gray);
	border-radius: 10px;
	overflow: hidden;
}

.table_referrals thead tr th {
	background: var(--bg-gray);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #777;
	padding: 10px 14px;
	border-bottom: 1.5px solid var(--border-gray);
}

.table_referrals tbody tr td {
	padding: 11px 14px;
	font-size: 14px;
	border-bottom: 1px solid var(--border-gray);
}

.table_referrals tbody tr:last-child td {
	border-bottom: none;
}

.table_referrals i {
	color: #009c4e;
}

#referral-program .panel-body h4 {
	font-weight: bold;
	margin-bottom: 5px;
}

.confirm_delete_account {
	margin-top: 20px;
	border: 1px #CCC solid;
	padding: 10px;
	border-radius: 7px;
	background-color: #f9f9f9;
	position: relative;
	display: none;
}

.confirm_delete_account_title {
	font-weight: bold;
	display: block;
}

.confirm_delete_account_desc {
	display: block;
}

.btnConfirmDeleteAccount {
	margin-top: 10px;
	border: 0;
	padding: 4px 20px;
	border-radius: var(--border-radius);
	background-color: #FF4F6C;
	color: #FFF;
}

/* Manage accounts modal redesign */
.manage-accounts-dialog {
	width: 540px;
	max-width: 94%;
	margin: 60px auto;
}

.manage-accounts-content {
	border-radius: 16px !important;
	overflow: hidden;
	border: none !important;
	box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

.manage-accounts-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 24px 20px;
	border-bottom: 1px solid var(--border-gray);
}

.manage-accounts-title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 3px;
	color: var(--primary-text-color);
}

.manage-accounts-subtitle {
	font-size: 13px;
	color: #888;
	margin: 0;
}

.manage-accounts-close {
	background: none;
	border: none;
	font-size: 20px;
	color: #aaa;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	flex-shrink: 0;
}

.manage-accounts-close:hover {
	color: #555;
}

.manage-accounts-body {
	padding: 12px 20px 20px;
}

.manage-account-item {
	padding: 14px 8px;
	border-bottom: 1px solid var(--border-gray);
}

.manage-account-item:last-child {
	border-bottom: none;
}

.manage-account-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.manage-account-avatar-wrap {
	flex-shrink: 0;
}

.manage-account-avatar {
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	object-fit: cover;
	display: block;
	margin: 0 !important;
}

.manage-account-name {
	flex: 1;
	font-size: 15px;
	font-weight: 600;
	color: var(--primary-text-color);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.manage-account-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	flex-shrink: 0;
}

.manage-account-reconnect {
	background: #1a1a2e !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 8px 16px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	white-space: nowrap;
	transition: background 0.15s !important;
}

.manage-account-reconnect:hover {
	background: #0f3460 !important;
}

.manage-account-delete {
	font-size: 12px !important;
	font-weight: 500 !important;
	cursor: pointer;
	text-decoration: none;
}

.manage-account-delete:hover {
	text-decoration: underline;
}

.icon_modal {
	background-color: var(--primary-color);
	margin: 0 auto;
	width: 140px;
	border-radius: 100px;
	padding: 25px;
}

.display-inline-block{
	display: inline-block;
}

.display-block {
	display: block;
}

.btnBuyOnlyOnePlan {
	display: none;
	width: fit-content;
	margin: 30px auto;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	cursor: pointer;
	border: none;
	text-overflow: clip;
	text-align: center;
	padding: 10px 30px;
	font-size: 17px;
	border-radius: var(--border-radius);
	text-overflow: clip;
	font-weight: 500;
	background-color: #36a5f1;
	color: #fff;
}

.btnPickPlan {
	max-width: 200px;
	margin: 30px auto;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	cursor: pointer;
	border: none;
	text-overflow: clip;
	text-align: center;
}

.btnLiftoffOld{
	padding: 15px 20px;
	font-size: 17px;
	border-radius: 10px;
	text-overflow: clip;
	font-weight: 500;
}

.btnLiftoffOld:hover{
	text-decoration: none;
	transform: scale(1.05);
	animation: none;
}

.btnLiftoffOld:active,.btnLiftoffOld:focus {
	color: initial;
}

.btnBlue{
	background: #277FD5;
	color: #fff;
	box-shadow: 0 6px 0 0 #1b4e80, 0 1px 3px 0 rgb(0 0 0 / 30%), 0 5px 10px 0 rgb(0 0 0 / 25%), 0 10px 10px 0 rgb(0 0 0 / 20%), 0 15px 20px 0 rgb(0 0 0 / 10%);
	webkit-box-shadow: 0 6px 0 0 #1b4e80, 0 1px 3px 0 rgb(0 0 0 / 30%), 0 5px 10px 0 rgb(0 0 0 / 25%), 0 10px 10px 0 rgb(0 0 0 / 20%), 0 15px 20px 0 rgb(0 0 0 / 10%);
}

.btnBlue:hover, .btnBlue:active,.btnBlue:focus {
	color: #fff;
}

.btnLiftoffNew:hover{
	box-shadow: rgb(0 0 0 / 6%) 0 4px 12px !important;
	top: -1px !important;
	animation: none !important;
}

.btnOrange{
	position: relative;
	background-color: transparent !important;
	padding: 0px;
	color: #fff;
}

.btnOrange:hover, .btnOrange:active,.btnOrange:focus {
	color: #fff;
}

.btnOrange .btn-span-one{
	color: #fff;
	background-color: #ff872b;
	box-shadow: 0 2px 4px rgb(50 50 93 / 10%), 0 2px 2px rgb(0 0 0 / 7%);
}

.btn-span-one {
	display: inline-block;
	text-align: center;
	font-size: 16px;
	text-decoration: none;
	padding: 10px 15px;
	border-radius: var(--border-radius) 0px 0px 5px;
	letter-spacing: 0.5px;
	vertical-align: top;
	cursor: pointer;
	font-weight: 500;
}

.btnOrange .btn-span-two {
	color: #fff;
	background: #dd7424;
	box-shadow: 0 2px 4px rgb(50 50 93 / 10%), 0 2px 2px rgb(0 0 0 / 7%);
}

.btn-span-two {
	display: inline-block;
	font-size: 16px;
	color: #fff;
	padding: 10px 15px;
	border-radius: 0px 5px 5px 0px;
	cursor: pointer;
	text-align: center;
}

.recommendation_best_campaign {
	font-size: 23px;
	position: absolute;
	margin-left: -28px;
	margin-top: -5px;
	display: none;
}

.input-login-password .form-group{
	margin-bottom: 10px;
}

.important-p{
	margin-bottom: 20px;
	background: #ececec;
	color: #848484;
	padding: 5px 10px;
	width: fit-content;
	text-align: right;
	display: block;
	position: relative;
	font-size: 14px;
	float: right;
}

.modal-title{
	font-weight: 700;
}

.modal-dialog .modal-body .modal-image img{
	max-width: 180px !important;
	margin: 0 auto;
	display: block;
}

.app_unfollow {
	display: none;
}

.app_insightx {
	display: none;
}

/* Settings dropdown hover */
.settings-dropdown-item:hover {
	background-color: var(--bg-gray);
}
#btnSettingsDropdown:hover {
	filter: brightness(0.9);
}

/* Power-ups Section */
.powerups-section {
	margin-top: 40px;
	margin-bottom: 40px;
	padding: 0 15px;
	display: none;
}

.powerups-title {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
}

.powerups-subtitle {
	text-align: center;
	color: #666;
	margin-bottom: 30px;
}

.powerup-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 20px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.powerup-card:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	transform: translateY(-2px);
}

.powerups-section .powerup-icon {
	margin-bottom: 16px;
}

.powerup-name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #333;
}

.powerup-description {
	color: #666;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 16px;
}

.powerup-features {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.powerup-features li {
	font-size: 13px;
	color: #555;
	margin-bottom: 8px;
}

.powerup-features li i {
	color: #4CAF50;
	margin-right: 8px;
}

.btn-powerup {
	width: 100%;
	padding: 12px 20px;
	font-weight: 600;
}

.powerup-price {
	text-align: center;
	color: #666;
	font-size: 13px;
	margin-top: 12px;
	margin-bottom: 0;
}

.step_line {
	height: 60px;
	background-color: #bfbfbf;
	width: 3px;
	position: absolute;
	top: 167px;
	left: 28px;
	z-index: 1;
	display: none;
}

.unfollow .step_line{
	height: 200px;
	top: 50px;
}

.shake {
	animation: shake 0.4s;
	animation-iteration-count: infinite;
}

.account_verified {
	display: inline-block;
	width: 20px;
	position: absolute;
	top: 16px;
	right: 11px;
}

.account_verified.unfollow {
	top: 4px;
	right: 2px;
	position: relative;
}

.login-register .account_verified {
	position: relative;
	left: 0px;
	top: 1px !important;
}

.account_name {
	display: inline-block;
	padding-top: 10px;
	margin-bottom: 0px;
	padding-left: 0px;
	font-size: 20px;
	font-weight: bold;
}

.center {
	margin: 0 auto;
}

.list_accounts.unfollow_power_up{
	width: 74%;
	margin-left: 1%;
}


.list_followings .name a {
	max-width: 280px;
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	vertical-align: middle;
	position: relative;
}

.btn-group>.btn+.dropdown-toggle {
	padding-right: 8px;
	background-color: #564a9c;
	padding-left: 8px;
	cursor: pointer;
}

.btn-group>.btn+.dropdown-toggle:hover {
	background-color: #4a4087;
}

#blue_account {
	margin-right: 4px;
	position: relative;
	top: -1px;
}

.embed_plans_dashboard, .embed_plans {
	opacity: 0;
}

.btnCheckIsBlue {
	border: 0;
	background-color: #8a8753;
	color: #FFF;
	border-radius: 4px;
	padding: 0px 14px;
}

.btnCheckIsVerification {
    background: none;
    border: none;
    margin: 0px;
    padding: 0px;
    text-decoration: underline;
}

.btnPauseSubscription, .btnInvoce, .btnHistoryInvoce, .btnUpdatePaymentMethod, .btnManageSubscription {
	display: inline-block;
	font-size: 13px;
	color: var(--primary-text-color);
	background: var(
	--bg-gray);
	padding: 10px;
	width: fit-content;
	border: 1px var(
	--border-gray) solid;
}

.btnPauseSubscription:hover, .btnInvoce:hover, .btnHistoryInvoce:hover, .btnUpdatePaymentMethod:hover, .btnManageSubscription:hover {
	background: #e6e6e6;
}

.btnAddAgency{
	display: block;
	font-size: 13px;
	color: #fff;
	background-color: #15a55a !important;
	width: fit-content;
	margin: 10px auto;
	margin-top: 0px;
}

.btnAddAgency:hover {
	background-color: #0d7e3c !important;
}

.btnPauseSubscriptio i {
	margin-right: 3px;
}

#plans .table_plan .normalHr{
	margin: 15px auto;
	padding: 0px;
	width: 80%;
}

.modal-responsive {
	width: 650px;
}

.list_modifiers {
	border: 1px #CCC solid;
	border-radius: 3px;
	padding: 10px;
	width: 100%;
	margin: 15px auto;
	text-align: center;
	font-size: 13px;
	font-weight: normal;
	background-color: #f3f3f3;
	height: 130px;
	overflow: scroll;
}

.list_modifiers label {
	font-size: 13px;
	border-bottom: 1px #CCC solid;
	width: 80%;
	padding-bottom: 6px;
	margin-bottom: 15px;
}

.list_modifiers p {
	margin: 0px;
	margin-bottom: 5px;
}

div.select_accounts {

	margin: 0 auto !important;
	display: block !important;
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}

.select_accounts .img_account_menu {
	left: 0px;
}

.select_accounts .name_account_menu {
	color: var(--primary-text-color);
	margin-left: 4px;
}

.select_accounts .verified_icon {
	width: 18px;
	position: relative;
	top: -2px;
}

.select_accounts .dropdown-toggle {
	padding: 10px;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
	color: #fff !important;
	text-decoration: none;
	background-color: var(--orange-color);
	outline: 0;
}

.dropdown-menu>.active>a .name_account_menu, .dropdown-menu>.active>a:hover .name_account_menu, .dropdown-menu>.active>a:focus .name_account_menu, .dropdown-menu > li > a:hover .name_account_menu {
	color: #fff !important;
}

.dropdown-menu > li > a:hover {
	background-color: var(--orange-color);
}

.lblAccountsWarning {
	color: #FFF;
	margin: 0 auto;
	display: block;
	width: 100%;
	text-align: center;
	border-top: 1px #757575 solid;
	padding-top: 10px;
	border-bottom: 1px #757575 solid;
	padding-bottom: 10px;
	background-color: #3f3f3f;
}

#cancel_modal_options .lbl_discount_active {
	display: none;
	border: 1px #ffdc93 solid;
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 3px;
	background-color: #fffbec;
}

.table .img_account_dashboard {
	width: 40px !important;
	height: 40px !important;
	min-width: 0px;
	min-height: 0px;
}

.list_accounts .table {
	background-color: var(--white-color);
}

.nav_screen_name {
	position: relative;
	top: 6px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	width: 128px;
	display: inline-block;
}

.table_exports {
	width: 100%;
	border-collapse: collapse;
}

.table_exports tr {
	border-bottom: 1pt solid var(--border-gray);
}

.table_exports tr td {
	padding-top: 10px;
	padding-bottom: 10px;
}

#manage-subscription .panel-body.data {
	display: none;
}

#manage-subscription .panel-body.loading {
	display: block;
	text-align: center;
}

#manage-subscription .days_left_content {
	display: inline-block;
	/* width: 100%; */
	/* margin: 0; */
	/* top: 0px; */
	width: 100%;
	margin-left: 0px;
}

#manage-subscription .downgrade-plan {
	margin-top: 10px;
	margin-bottom: 10px;
}

#manage-subscription .you_pay {
	display: none;
	font-weight: normal;
	font-size: 11px;
	border: 1px #CCC solid;
	border-radius: var(--border-radius);
	width: 70px;
	padding: 1px 0px;
	margin: 2px auto;
	color: #797979;
	background-color: #fbfbfb;
	padding-bottom: 3px;
	text-align: center;
}

#manage-subscription .btn {
	width: 100%;
	font-size: 13px;
}

#manage-subscription .next_payment {
	display: block;
	background-color: #efefef;
	font-size: 14px;
	color: var(--secondary-text-color);
	border-radius: var(--border-radius);
	padding: 10px 15px;
	margin: 20px 15px 15px;
}

#manage-subscription .next_payment_date, #manage-subscription .next_payment_amount {
	font-weight: bold;
}

#manage-subscription .lbl_popup {
	display: none;
	position: relative;
	width: 100%;
	margin: 10px auto;
	border-radius: var(--border-radius);
	border: 2px solid #54d375;
	font-size: 14px;
	background: #f3fef7;
	color: #1e4e19;
	font-weight: 499;
	padding: 7px;
}

#manage-subscription .btnAddAgency {
	display: none;
	width: 40%;
	margin: 15px auto 10px;
}

#manage-subscription .subscription_will_end {
	display: none;
	font-size: 13px;
	font-weight: 600;
	margin-top: 10px;
	border: 1px #d9c430 solid;
	border-radius: 3px;
	background-color: #fcffd9;
	padding: 6px;
}

.plan_actual_menu{
	font-size: 11px;
}

.shake {
	animation: shake 0.4s;
	animation-iteration-count: 3;
}

.btnsManageInvoce {
	margin-top: 10px;
}

.field_account {
	background-color: #e7e7e7;
	padding: 5px 15px 8px;
	border-radius: 100px;
	font-size: 14px;
}

.account_pic {
	border-radius: 100px;
}

.list_account_recommended_smart_campaign {
	list-style: none;
	border-bottom: 1px #e5e5e5 solid;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.list_accounts_recommended_smart_campaign {
	margin-top: 20px;
	margin-bottom: 20px;
}

.list_accounts_recommended_smart_campaign_loading {
	text-align: center;
	margin-top: 40px;
}

.list_accounts_recommended_smart_campaign_loading img {
	margin-left: 5px;
}

#newSmartCampaign .btnAddCampaign {
	display: none;
}

#newSmartCampaign .btnAddCampaignLink {
	background-color: #aaaaaa;
	border-radius: var(--border-radius);
	padding: 6px 13px;
	color: #FFF;
	text-decoration: none !important;
}

#newSmartCampaign .btnAddCampaignLink:hover {
	background-color: #888888;
}

#newSmartCampaign .btnAddCampaignLink i {
	margin-right: 6px;
}

.successCreateSmartCampaign {
	color: green;
	font-size: 23px;
	display: none;
}

.errorCreateSmartCampaign {
	display: none;
}

.list_fields_accounts {
	margin-top: 20px;
	margin-bottom: 20px;
}

.list_fields_accounts .field_account {
	background-color: #e7e7e7;
	padding: 5px 13px;
	border-radius: 100px;
	list-style: none;
	margin: 3px;
	display: inline-block;
}

.list_fields_accounts .field_account:hover {
	background-color: #cecece;
	cursor: pointer;
}

.list_accounts_recommended_smart_campaign_text, .list_fields_accounts_text {
	display: none;
	margin-top: 30px;
	margin-bottom: 40px;
}

.smart_campaign_error {
	display: none;
	border-radius: 3px;
	padding: 10px 10px !important;
	margin-top: 20px;
}

.btnAddSmartCampaign {
	display: none;
}

.contentBtnAddSmartCampaignInputAccount {
	position: absolute;
    right: -16px;
    top: 7px;
}

.btnAddSmartCampaignInputAccount svg {
	width: 18px;
    height: 18px;
}

.relative {
	position: relative;
}

.loading-animation {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}
.loading-dots {
	display: flex;
	gap: 8px;
	/* background-color: red; */
	width: fit-content;
	margin: 0 auto;
}
.dot {
	width: 12px;
	height: 12px;
	background: var(--violet-color);
	border-radius: 50%;
	animation: bounce 0.5s ease-in-out infinite;
}
.dot:nth-child(2) {
	animation-delay: 0.1s;
}
.dot:nth-child(3) {
	animation-delay: 0.2s;
}

#newaccesstwitter .modal-dialog {
	min-width: 90% !important;
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}
#newaccesstwitter .modal-content {border-radius: var(--border-radius);}

#newaccesstwitter .modal-title {
	text-align: center;
    margin-top: 10px;
}

#newaccesstwitter .expander {

	font-weight: normal;
}

#newaccesstwitter .btn.btn-primary {
	background-color: var(--orange-color);
	border-radius: var(--border-radius);
	font-weight: bold;
	letter-spacing: 0.2px;
	padding: 12px 60px;
	font-size: 18px;
	margin: 0 auto;
}

#newaccesstwitter .btn.btn-primary:hover {
	background-color: var(--orange-hover);
}

#newaccesstwitter .msgSaveCookieCredential {
	text-align: center !important;
}

#newaccesstwitter .important-p {
	background-color: transparent;
	float: none;
    text-align: center;
    width: 100%;
}

#newaccesstwitter input {padding: 25px 15px;border: 1px solid var(--border-gray);font-size: 16px;}

#newaccesstwitter input::placeholder {
    color: #a1a1a1;
}

#newaccesstwitter input:focus {
	border: 1px #344e94 solid;
}

#newaccesstwitter .input-group .input-group-addon {border-left: 1px var(--border-gray) solid;border-top: 1px var(--border-gray) solid;border-bottom: 1px var(--border-gray) solid;border-top-left-radius: 5px;border-bottom-left-radius: 5px;}

#newaccesstwitter .input_content {
	margin: 0 auto;
    width: 60%;
}

#newaccesstwitter #login-mode-1 {
	margin-bottom: 20px;
}

#newaccesstwitter .content_expander {
	margin-right: 0px;
}

#newaccesstwitter .challenge-detail {
	margin-top: 20px;
}

#newaccesstwitter .msgGetCookieCredential {
	text-align: center;
}

#newaccesstwitter .spinner {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: conic-gradient(
	  #139dfb 0%,
	  #139dfb 25%,
	  #0d3c5d 25%,
	  #0d3c5d 100%
	);
	mask: radial-gradient(circle, transparent 50%, black 51%);
	-webkit-mask: radial-gradient(circle, transparent 50%, black 51%);
	animation: spin 1s linear infinite;
}

.simple-keyboard .hg-button.blue-key {
	background: #1976d2 !important;
	color: #fff !important;
	border-radius: var(--border-radius) !important;
	border: none !important;
}

.simple-keyboard {
	display: fixed;
	z-index: 999999999;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}

.hg-theme-default .hg-button {
	height: 50px !important;
	font-size: 18px !important;
}

.safari-window {
	background: #999999;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	overflow: hidden;
	width: 100%;
	max-width: 1280px;
	overflow: hidden;
}

.safari-header {
	background: #f5f5f5;
	padding: 10px 15px;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	align-items: center;
}

.window-controls {
	display: flex;
	gap: 8px;
}

.control {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.close { background: #ff5f57; }
.minimize { background: #febc2e; }
.maximize { background: #28c840; }

.url-bar {
	flex: 1;
	margin: 0 15px;
	background: #e0e0e0;
	height: 24px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	padding: 0 10px;
	font-size: 13px;
	color: #666;
}

.canvas-container {
	width: 100%;
	display: flex;
	justify-content: center;
	background: #000;
	transform-origin: top center;
}

canvas {
	max-width: 1280px;
	height: auto;
	display: block;
}

#login-iframe .status {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 14px;
	display: none;
	z-index: 99999999999;
}

#login-iframe .status.error {
	background: #ff4444;
	color: white;
	display: block;
}

#login-iframe .status.connected {
	background: #44ff44;
	color: black;
	display: block;
}

.simple-keyboard {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: #d1d5db;
	padding: 2px;
	border-radius: 10px;
}

.simple-keyboard .hg-button {
	height: 42px !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	background: #ffffff !important;
	border-radius: var(--border-radius) !important;
	margin: 4px !important;
	font-size: 20px !important;
	color: #000000 !important;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
	transition: transform 0.1s ease, background-color 0.1s ease !important;
}

/* CONSOLIDATED: Moved to consolidated @media (max-width: 768px) block at end of file */

.simple-keyboard .special-key {
	background: #c7c7cc !important;
	color: #000000 !important;
}

.simple-keyboard .hg-button:active {
	background: #e5e5ea !important;
	transform: translateY(2px) !important;
	box-shadow: 0 0 1px rgba(0,0,0,0.04) !important;
}

.simple-keyboard .hg-row {
	display: flex !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
}

#login-iframe {
	width: fit-content;
	max-width: 1100px;
    margin: 0 auto;
	position: relative;
}

@media (max-width: 1280px) {
	#login-iframe {
		width: 100%;
	} 
}

@keyframes spin {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
}

#newaccesstwitter .msgGetCookieCredential {
	text-align: center;
    width: fit-content;
}

#newaccesstwitter .msgModalLogin {
	text-align: center;
}

#newaccesstwitter .expanded.expander {
    background-image: url(../img/expanded.gif);
}

#newaccesstwitter .collapsed.expander {
    background-image: url(../img/collapsed.gif);
    font-size: 20px;
    width: 100%;
}

#newaccesstwitter .panel-body.credentials .alert-phone {
	background-color: var(--yellowWarningBg);
}

#newaccesstwitter .close {
	opacity: 1;

}

#newCampaign .content_expander .row {
			margin-bottom: 10px;
}

@keyframes shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
	10% { transform: translate(-1px, -2px) rotate(-1deg); }
	20% { transform: translate(-3px, 0px) rotate(1deg); }
	30% { transform: translate(3px, 2px) rotate(0deg); }
	40% { transform: translate(1px, -1px) rotate(1deg); }
	50% { transform: translate(-1px, 2px) rotate(-1deg); }
	60% { transform: translate(-3px, 1px) rotate(0deg); }
	70% { transform: translate(3px, 1px) rotate(-1deg); }
	80% { transform: translate(-1px, -1px) rotate(1deg); }
	90% { transform: translate(1px, 2px) rotate(0deg); }
	100% { transform: translate(1px, -2px) rotate(-1deg); }
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0);
		} 40% {
			-webkit-transform: scale(1.0);
			transform: scale(1.0);
		}
	}

	@-webkit-keyframes animateNotificationIcon {
		0%   {
			-ms-transform: rotate(0deg);
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}

		25%  {
			-ms-transform: rotate(15deg);
			-webkit-transform: rotate(15deg);
			transform: rotate(15deg);
		}

		50%  {
			-ms-transform: rotate(0deg);
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}

		70%  {
			-ms-transform: rotate(-15deg);
			-webkit-transform: rotate(-15deg);
			transform: rotate(-15deg);
		}

		100%   {
			-ms-transform: rotate(0deg);
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}
	}

	@-webkit-keyframes animateEyeLeft {
		0%   {left:58px;}
		25%  {left:62px;}
		50%  {left:58px;}
		75%  {left:54px;}
		100%  {left:58px;}
	}

	@-webkit-keyframes animateEyeRight {
		0%   {left:84px;}
		25%  {left:88px;}
		50%  {left:84px;}
		75%  {left:80px;}
		100%  {left:84px;}
	}

	@media (max-width: 1362px) {	
		
	}

	@media (max-width: 772px) {

		.content-detail-subscription {
			margin-top: 60px;
		}

		#newCampaign .row {
			margin-left: 0px !important;
			margin-bottom: 0px !important;
		}

		#newCampaign form {
			padding-left: 0px;
		}

		.contentBtnAddSmartCampaignInputAccount {top: 45px;}

		.bio_condition, .bio_value, .lang_value {
			margin-top: 10px;
		}

		.modal-responsive {
			width: 100%;
			padding-right: 20px;
		}

		.modal-responsive .modal-body {
			padding: 30px 0px;
		}

		.modal-responsive .modal-footer .col-sm-4, .modal-responsive .modal-footer .col-sm-8{
			width: 100%;
			text-align: center;
		}

		.modal-responsive .modal-footer button{
			margin: 0 auto;
			display: block;
		}

		.only-desktop{
			display: none !important;
		}

		.only-mobile{
			display: block !important;
		}

		.only-mobile.days_left_content{
			display: inline-block;
		}

		.onboarding p{
			max-width: 350px;
		}

	}

	@media (max-width: 700px) {
		.next_run, .purge_active {
			top: 15px;
			border-radius: var(--border-radius);
		}

		.btn .btn-primary.btnAddAccount{
			top: 15px;
		}
	}

	/* CONSOLIDATED: Moved to consolidated @media (max-width: 994px) block */

	@media (max-width: 1300px){

		.dashboard_card_item .col-md-3{
			padding: 0px;
			width: 25%;
		}

		.testimonial-item{
			margin-bottom: 20px;
		}

		.testimonial-item p{
			max-width: 400px;
			margin: 0 auto;
			padding: 10px;
		}

	}

	/* CONSOLIDATED: Moved to consolidated @media (max-width: 994px) block */

	@media (max-width: 850px) {

		.users-notifications-menu {
			display: none;
		}

		.row .no-float {
			display: block;
		}

		.row_h {
			flex: none !important;
			display: block;
			height: inherit;
		}

		.login-register .testimonial {
			top: 0px;
			transform: none;
			text-align: center;
		}

		.cover {
			height: 100%;
		}

		.login-register .sm-st {
			max-width: 360px;
			margin: 0 auto;
			margin-bottom: 20px;
		}

		.lbl-alert, .lbl-warning {
			position: relative;
			margin: 0 auto;
			text-align: center;
			float: left;
			margin-top: 10px;
		}

		.account_name{
			display: block;
		}
	}

	.btnRecommendedPlan {
		position: relative;
		width: 105%;
		margin-left: -2.5%;
		color: #fff;
		top: 0;
		border-radius: var(--border-radius);
		padding: 20px;
		background-color: #00b654;
		box-shadow: 0 1px 2px rgba(0,0,0,.1);
		border-radius: var(--border-radius);
	}

	.btnBlue {
		background: #2f76c5;
		color: #fff;
		width: 100%;
		display: inline-block;
		text-align: left;
		padding-left: 30px;
		text-align: center;
		border-radius: var(--border-radius) !important;
		font-size: 17px;
		padding: 10px 0px;
		margin-top: 10px;
	}

	.speed {
		position: absolute;
		top: 0px;
		right: 20px;
		border-bottom-left-radius: 5px;
		border-bottom-right-radius: 5px;
		padding: 3px 6px;
		font-size: 12px;
		font-weight: bold;
		background-color: #d8d8d8;
		color: #777777;
	}

	.hibernation-plan {
		border: 1px var(--border-gray) solid;
		border-radius: var(--border-radius);
		margin-top: 30px;
		padding: 10px;
		padding-top: 6px;
		border-left: 5px var(
		--primary-color) solid;
		margin-bottom: 30px;
	}

	.hibernation-plan-img {
		width: 60px;
		display: inline-block;
		margin-left: 5px;
	}

	.hibernation-plan-column {
		display: inline-block;
		margin-left: 10px;
		position: relative;
		top: 12px;
		width: 82%;
	}

	.hibernation-plan-title {
		font-weight: bold;
		display: block;
		font-size: 15px;
	}

	.hibernation-plan-price {
		position: absolute;
		right: 0px;
		font-size: 20px;
		font-weight: bold;
		top: 10px;
	}

	.downgrade-plan {
		border: 1px var(--border-gray) solid;
		border-radius: var(--border-radius);
		margin-top: 20px;
		padding: 10px;
		padding-top: 6px;
		border-left: 5px var(--primary-color) solid;
		margin-bottom: 30px;
		width: 100%;
	}

	.downgrade-plan-img {
		width: 60px;
		display: inline-block;
		margin-left: 5px;
	}

	.downgrade-plan-column {
		display: inline-block;
		margin-left: 10px;
		position: relative;
		top: 12px;
		width: 82%;
	}

	.downgrade-plan-title {
		font-weight: bold;
		display: block;
		font-size: 15px;
	}

	.downgrade-plan-price {
		position: absolute;
		right: 0px;
		font-size: 20px;
		font-weight: bold;
		top: 50%;
		transform: translateY(-50%);
	}

	/* CONSOLIDATED: Moved to consolidated @media (max-width: 994px) block */
	/* CONSOLIDATED: Moved to consolidated @media (max-width: 480px) block at end of file */

	@media (max-width: 340px){

		.onboarding .item .btn{
			width: 180px;
		}

		.onboarding p{
			width: 180px;
		}

		.hibernation-plan-img {
			margin: 0 auto;
			display: block;
			width: 60px !important;
		}

		.hibernation-plan-column {
			width: 100% !important;
			margin: 0px;
		}

		.hibernation-plan-title, .hibernation-plan-desc {
			text-align: center;
			display: block;
		}

		.hibernation-plan-price {
			display: block;
			position: relative;
			text-align: center;
			height: 70px;
			top: 38px !important;
			font-size: 24px;
		}

		.hibernation-plan-price-old {
			top: -30px;
		}

	}

	#confetti-canvas {
		position: absolute;
		top: 0px;
		z-index: 1031 !important;
    max-width: 100%;
	}

/* ========================================
   4. MODERN DASHBOARD - DISEÑO MODERNO
   ======================================== */

body.skin-black {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-gray);
    color: var(--primary-text-color);
}

body.skin-black .header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-gray);
    padding: 0;
}

body.skin-black .sidebar {
    background: var(--bg-gray);

}

body.skin-black .sidebar .nav > li > a {
    color: #9CA3AF;
    padding: 12px 20px;
    transition: all 0.2s ease;
}

body.skin-black .sidebar .nav > li > a:hover,
body.skin-black .sidebar .nav > li.active > a {
    background: #374151;
    color: #ffffff;
}

body.skin-black .right-side {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 30px 0;
}

body.skin-black .content {
    background: transparent;
    padding: 0 16px;
    max-width: 1000px;
    margin: 0 auto;
}
@media(max-width:767px){
    body > .header .logo { left:50% !important; top:0 !important; width:auto !important; height:60px !important; transform:translateX(-50%); background:transparent !important; padding:0 !important; z-index:100000 !important; display:flex !important; align-items:center; justify-content:center; }
    body > .header .navbar { width:100% !important; }
}

body.skin-black .card_dashboard {
    background: var(--bg-gray);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

body.skin-black .card_dashboard:hover {text-decoration: none;color: inherit;border-color: var(--primary-hover);/* background-color: var(--border-gray); */}

body.skin-black .img_account_dashboard {
    width: 95px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
}

body.skin-black .account_name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 6px;
    align-items: center;
    gap: 6px;
}

body.skin-black .account_verified {
    width: 20px;
    height: 20px;
    margin-left: 4px;
}

body.skin-black .lbl-alert,
body.skin-black .lbl-warning {
    display: inline-block;
    width: fit-content;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

body.skin-black .lbl-alert {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fcd34d;
}

body.skin-black .lbl-alert a {
    text-decoration: underline;
    color: #b45309;
    font-weight: 500;
}

body.skin-black .lbl-alert .fa {
    margin-right: 4px;
}

body.skin-black .lbl-warning {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

body.skin-black .lbl-warning.warmingup {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #F59E0B;
}

body.skin-black .dashboard_card_item .sm-st-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-right: 10px;
    flex-shrink: 0;
}

body.skin-black .dashboard_card_item .sm-st-info span {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-text-color);
    display: block;
    line-height: 1.2;
}

body.skin-black .dashboard_card_item .sm-st-info label {
    font-size: 14px;
    color: var(--secondary-text-color);
    margin: 0;
    font-weight: 500;
    /* letter-spacing: 0.5px; */
    margin-top: 0px;
}

body.skin-black .charts_dashboard {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 8px;
    border: 1px solid var(--border-gray);

}

/* CONSOLIDATED: Moved to consolidated @media (max-width: 768px) block at end of file */

body.skin-black .sm-st {
    border-radius: var(--border-radius);
}

body.skin-black .sm-st-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-right: 15px;
}

body.skin-black .sm-st-icon.st-blue {
    background: var(--primary-color);
    color: #ffffff;
}

body.skin-black .sm-st-icon.st-red {
    background: var(--alert-color);
    color: #ffffff;
}

body.skin-black .sm-st-icon.st-violet {
    background: var(--violet-color);
    color: #ffffff;
}

body.skin-black .sm-st-info span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-text-color);
    display: block;
    position: relative;
    top: 3px;
}

body.skin-black .sm-st-info label {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

body.skin-black .btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    color: white;
}

body.skin-black .btn-primary:hover {
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
    color: white;
}

body.skin-black .btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    /* transition: all 0.2s ease; */
}

body.skin-black .form-control {
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

body.skin-black .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

body.skin-black .alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 16px 20px;
    margin-bottom: 20px;
}

body.skin-black .alert-warning {
    background: #FEF3C7;
    color: #92400E;
    border-left: 4px solid var(--borderYellow);
}

body.skin-black .alert-success {
    background: #D1FAE5;
    color: #065F46;
    border-left: 4px solid #10B981;
}

body.skin-black .alert-danger {
    background: var(--alert-color);
    color: var(--bg-white);
    border-left: 4px solid var(--alert-color);
}

body.skin-black .onboarding {
    margin-bottom: 30px;
    margin-top: 8px;
}

body.skin-black .onboarding h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-text-color);
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

body.skin-black .onboarding h1 {
    font-size: 17px;
    font-weight: 400;
    color: var(--secondary-text-color);
    margin-bottom: 24px;
}

body.skin-black .onboarding .item {
    margin-bottom: 6px;
    padding: 20px 24px 22px 68px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    border-left: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: relative;
}

body.skin-black .onboarding .item.step2 {
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.09);
    border-color: #ddd;
}

body.skin-black .onboarding .item > span:not(.onboarding-why-tooltip) {
    position: absolute;
    left: 18px;
    top: 20px;
    background: #111111;
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-block;
    line-height: 34px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 0;
}

body.skin-black .onboarding .item.done > span:not(.onboarding-why-tooltip) {
    background: #16a34a;
}

body.skin-black .onboarding .item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 6px;
    margin-top: 0;
    display: block;
    line-height: 34px;
    padding-right: 90px;
}

body.skin-black .onboarding .item p {
    color: var(--secondary-text-color);
    margin-bottom: 0;
    margin-left: 0 !important;
    width: auto !important;
    font-size: 14px;
    line-height: 1.65;
}

body.skin-black .onboarding .item .btn {
    display: block;
    margin-top: 14px;
    width: fit-content;
}

body.skin-black .onboarding .item .login-twitter.btn {
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    border-color: transparent;
    color: #ffffff;
}

body.skin-black .onboarding .item .login-twitter.btn:hover {
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
}

body.skin-black .onboarding .step_line {
    display: block;
    position: absolute;
    left: 34px;
    top: -10px;
    height: 10px;
    width: 2px;
    background: #e0e0e0;
}

body.skin-black .testimonial {
    margin: 20px 0 30px;
}

.highlight-violet {
    color: var(--violet-color);
    font-weight: 600;
}

body.skin-black .testimonial-heading h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-text-color);
    margin: 0 0 20px;
    text-align: center;
}

body.skin-black .testimonial-item {
    padding: 10px;
    display: flex;
}

body.skin-black .testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
    width: 100%;
}

body.skin-black .testimonial-quote-icon {
    color: var(--violet-color);
    font-size: 20px;
    opacity: 0.6;
}

body.skin-black .testimonial-item .testimonal {
    font-style: normal;
    color: var(--primary-text-color);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

body.skin-black .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

body.skin-black .testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

body.skin-black .testimonial-item .link {
    color: var(--violet-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* CONSOLIDATED: Media queries @media (max-width: 994px) consolidated below */

/* CONSOLIDATED: Moved to consolidated @media (max-width: 480px) block at end of file */

body.skin-black .text-muted {
    color: #6B7280 !important;
}

body.skin-black .text-primary {
    color: var(--primary-color) !important;
}

body.skin-black .text-success {
    color: #10B981 !important;
}

body.skin-black .text-warning {
    color: #F59E0B !important;
}

body.skin-black .text-danger {
    color: #EF4444 !important;
}

body.skin-black .bg-primary {
    background-color: var(--primary-color) !important;
}

body.skin-black .bg-light {
    background-color: #F8F9FA !important;
}

body.skin-black .bg-white {
    background-color: var(--white-color) !important;
}

/* ========================================
   5. LOGIN/REGISTER PAGES - DISEÑO MODERNO
   ======================================== */
/* Modern Login Design - Two Column Layout */

.bold {
    font-weight: 700 !important;
}

body.skin-black.login-register {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-white);
    min-height: 100vh;
    /* overflow-x: hidden; */
    /* overflow-y: auto; */
}

body.skin-black.login-register #preloader {
}

/* Main row container - solo en login */
body.skin-black.login-register .row_h {
    display: flex;
    height: 100vh;
    margin: 0;
}

/* Left Column - Login Form - selector específico */
body.skin-black.login-register .col-md-6.no-float:first-child {
    flex: 1;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    position: relative;
}

body.skin-black.login-register #container_main {
    display: block !important;
    width: 100%;
}

/* Logo and branding - solo en login */
body.skin-black.login-register .logo_login {
    /* margin-bottom: 20px; */
    border-radius: var(--border-radius);
    padding: 0;
    display: block;
}

body.skin-black.login-register .row_h .logo_login {
    text-align: left;
}

/* Brand name styling - solo en login */
body.skin-black.login-register .app_owlead {
    font-weight: bold;
    color: var(--primary-text-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

body.skin-black.login-register .row_h .app_owlead {
    text-align: left;
}

body.skin-black.login-register p.app_owlead {
    font-weight: normal;
    color: var(--secondary-text-color);
}

body.skin-black.login-register .app_owlead:first-of-type {
    margin-bottom: 12px;
    font-size: 30px;
}

body.skin-black.login-register p.app_owlead:first-of-type {
    font-size: 16px;
}

body.skin-black.login-register h6.app_owlead:first-of-type {
    font-size: 15px;
}

body.skin-black.login-register .app_owlead:last-of-type {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-text-color);
    margin-bottom: 40px;
}

body.skin-black.login-register.login-x .app_owlead:last-of-type {
	margin-bottom: 10px;
}

body.skin-black.login-register .app_unfollow {
    display: none;
}

body.skin-black.login-register .app_insightx {
    display: none;
}

/* Form styling - solo en login */
body.skin-black.login-register .sm-st {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

body.skin-black.login-register .form-group {
    margin-bottom: 24px;
}

body.skin-black.login-register .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-text-color);
    margin-bottom: 8px;
}

body.skin-black.login-register .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    background: var(--bg-gray);
    transition: border-color 0.2s ease;
}

body.skin-black.login-register .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

body.skin-black.login-register .form-control::placeholder {
    color: var(--secondary-text-color);
}

body.skin-black.login-register .form-control.code-input {
    text-align: center;
    font-size: 32px;
    letter-spacing: 18px;
    font-weight: 600;
    font-family: 'SFMono-Regular', Menlo, Consolas, 'Liberation Mono', monospace;
    padding: 18px 16px;
    padding-right: 0;
    height: auto;
}

body.skin-black.login-register .form-control.code-input::placeholder {
    color: #c9c9d1;
    font-weight: 500;
}

body.skin-black.login-register .alert {
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.45;
    margin: 12px 0 16px 0;
    border: 1px solid transparent;
}

body.skin-black.login-register .alert-danger {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #fecaca;
}

body.skin-black.login-register .alert-success {
    background: #f0fdf4;
    color: #15803d;
    border-color: #bbf7d0;
}

.bs-searchbox .form-control::placeholder {
    color: var(--secondary-text-color);
}

/* Terms and privacy text - solo en login */
body.skin-black.login-register .form-group[style*="font-size: 12px"] {
    font-size: 14px !important;
    color: var(--secondary-text-color);
    line-height: 1.5;
    margin-bottom: 20px;
}

body.skin-black.login-register .form-group[style*="font-size: 12px"] a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Login button - solo en login */
body.skin-black.login-register .btnLogin,
body.skin-black.login-register .btnSendCode,
body.skin-black.login-register .btnVerifyCode,
body.skin-black.login-register .btnCompleteRegistration {
    width: 100%;
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-size: var(--btn-font-size);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

body.skin-black.login-register .btnLogin:hover,
body.skin-black.login-register .btnSendCode:hover,
body.skin-black.login-register .btnVerifyCode:hover,
body.skin-black.login-register .btnCompleteRegistration:hover {
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
}

@media (max-width: 850px) {
    body.skin-black.login-register .col-md-6.no-float:first-child {
        align-items: flex-start;
        padding: 30px 20px;
    }
    body.skin-black.login-register .app_owlead:last-of-type {
        margin-bottom: 24px;
    }
    body.skin-black.login-register .row_h p.app_owlead:first-of-type {
        max-width: none;
        margin: 0 0 20px 0;
    }
    body.skin-black.login-register .row_h .logo_login {
        margin: 0 0 20px 0;
    }
    body.skin-black.login-register .sm-st {
        max-width: none;
        margin: 0;
    }
}

/* Additional links - solo en login */
body.skin-black.login-register a[href="/register"],
body.skin-black.login-register a[href="/login"],
body.skin-black.login-register a[href="/forgot"] {
    display: block;
    text-align: center;
    color: var(--secondary-text-color);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 3px;
    transition: color 0.2s ease;
}

body.skin-black.login-register a[href="/register"]:hover,
body.skin-black.login-register a[href="/login"]:hover,
body.skin-black.login-register a[href="/forgot"]:hover {
    color: var(--primary-color);
}

/* Right Column - Testimonial - solo en login */
body.skin-black.login-register .col-md-6.no-float:last-child {
    flex: 1;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    position: relative;
}

/* Hide cover and background image - solo en login */
body.skin-black.login-register .cover,
body.skin-black.login-register .back-testimonials {
    display: none;
}

/* Testimonial styling - solo en login */
body.skin-black.login-register .testimonial {
    max-width: 600px;
    text-align: left;
}

body.skin-black.login-register .testimonial .icon-quotes-left {
    font-size: 48px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

body.skin-black.login-register .testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--primary-text-color);
    margin-bottom: 32px;
    font-weight: 400;
}

/* Customer info - solo en login */
body.skin-black.login-register .customer {
    display: flex;
    align-items: center;
    /* gap: 16px; */
}

body.skin-black.login-register .testimonial-pic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.skin-black.login-register .testimonial-pic::before {
    content: '';
    width: 48px;
    height: 48px;
    background: #9CA3AF;
    border-radius: 50%;
}

body.skin-black.login-register .testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 4px;
}

body.skin-black.login-register .testimonial-site {
    font-size: 14px;
    color: var(--secondary-text-color);
    text-decoration: none;
}

body.skin-black.login-register .testimonial-site:hover {
    color: var(--primary-color);
}

/* Error messages - solo en login */
body.skin-black.login-register .msgErrorLogin,
body.skin-black.login-register .msgAlertErrorRegister {
    display: none;
    background: #FEF2F2;
    border: 1px solid var(--alert-color);
    color: var(--alert-color);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    font-size: 14px;
}

body.skin-black.login-register .msgErrorLogin.show,
body.skin-black.login-register .msgAlertErrorRegister.show {
    display: block;
}

/* CONSOLIDATED: Moved to consolidated @media (max-width: 768px) block at end of file */

/* CONSOLIDATED: Moved to consolidated @media (max-width: 480px) block at end of file */

/* CONSOLIDATED: Moved to consolidated @media (max-width: 360px) block at end of file */

/* ===== ESTILOS ESPECÍFICOS PARA LOGIN.HTML ===== */

body.skin-black.login-register [data-mobile-center] {
    text-align: center;
}

@media (min-width: 768px) {
    body.skin-black.login-register [data-mobile-center] {
        text-align: left !important;
    }
}

/* CONSOLIDATED: Moved to consolidated @media (max-width: 768px) block at end of file */

/* ===== ESTILOS ESPECÍFICOS PARA RESET.HTML Y FORGOT.HTML ===== */

body.skin-black.login-register .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
}

body.skin-black.login-register .container .sm-st {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

body.skin-black.login-register .container .form-group {
    margin-bottom: 24px;
}

body.skin-black.login-register .container .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-text-color);
    margin-bottom: 8px;
}

body.skin-black.login-register .container .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    background: var(--bg-gray);
    transition: border-color 0.2s ease;
}

body.skin-black.login-register .container .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

body.skin-black.login-register .container .btnForgot {
    width: 100%;
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

body.skin-black.login-register .container .btnForgot:hover {
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
}

/* CONSOLIDATED: Moved to consolidated @media (max-width: 768px) block at end of file */

/* CONSOLIDATED: Moved to consolidated @media (max-width: 480px) block at end of file */

/* CONSOLIDATED: Moved to consolidated @media (max-width: 360px) block at end of file */

/* ===== ESTILOS ESPECÍFICOS PARA REGISTER.HTML ===== */

body.skin-black.login-register .register-free-trial {
    color: var(--violet-color) !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

body.skin-black.login-register .input-group {
    display: flex;
    align-items: center;
}

body.skin-black.login-register .input-group-addon {
    background: var(--bg-gray);
    border: 1px solid var(--border-gray);
    border-right: none;
    padding: 12px 16px;
    border-radius: var(    --border-radius) 0 0 var(--border-radius);
    color: var(
    --secondary-text-color);
    font-weight: 500;
    height: auto;
    line-height: 1.5;
    display: flex;
    align-items: center;
    min-height: 48px;
    padding-right: 26px;
}

body.skin-black.login-register .input-group .form-control {
    border-radius: 0 5px 5px 0;
    border-left: none;
    min-height: 48px;
    display: flex;
    align-items: center;
}

body.skin-black.login-register .row .col-md-6 {
    padding-left: 8px;
    padding-right: 8px;
}

body.skin-black.login-register .row .col-md-6:first-child {
    padding-left: 0;
    padding-right: 8px;
}

body.skin-black.login-register .row .col-md-6:last-child {
    /* padding-left: 8px; */
    padding-right: 0;
}

body.skin-black.login-register .form-group.relative {
    width: auto !important;
    margin-bottom: 24px;
}

body.skin-black.login-register .form-group.relative label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--primary-text-color);
    cursor: pointer;
    margin-bottom: 0;
}

body.skin-black.login-register .form-group.relative input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

body.skin-black.login-register .account_verified {
    width: 16px;
    height: 16px;
    margin-left: 4px;
}

body.skin-black.login-register .btnRegister {
    width: 100%;
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-size: var(--btn-font-size);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

body.skin-black.login-register .btnRegister:hover {
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
}

body.skin-black.login-register .msgAddAccountError,
body.skin-black.login-register .msgAlertErrorRegister {
    display: none;
    background: #FEF2F2;
    border: 1px solid var(--alert-color);
    color: var(--alert-color);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    font-size: 14px;
}

body.skin-black.login-register .msgAddAccountError a,
body.skin-black.login-register .msgAlertErrorRegister a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: underline;
}


body.skin-black.login-register .msgAddAccountError.show,
body.skin-black.login-register .msgAlertErrorRegister.show {
    display: block;
}

body.skin-black.login-register .app_unfollow {
    display: none;
}

body.skin-black.login-register .app_insightx {
    display: none;
}

/* ========================================
   MEDIA QUERIES CONSOLIDADOS
   ======================================== */

/* Media Query: max-width 994px - TABLET/MOBILE */
@media (max-width: 994px) {
	/* Header y Navbar */
	body > .header .logo,
	body > .header .navbar {
		width: 100%;
		float: none;
		position: absolute;
		margin-left: 0px;
		z-index: 99999;
	}

	.navbar .navbar-nav > li {
		float: left;
	}

	.navbar-nav {
		margin: 0;
		float: left;
	}

	.navbar-nav > li > a {
		padding-top: 15px;
		padding-bottom: 15px;
		line-height: 20px;
	}

  .list_accounts.unfollow_power_up {
    width: 100%;
    margin: 0px;
  }

	.navbar .navbar-right {
		float: right;
	}

	.navbar-btn {
		display: block;
	}

	.row .no-float {
		width: 100%;
	}

	/* Dashboard Cards */
	.card_dashboard .col-md-2 {
		width: 100%;
	}

	.dashboard_card_item .col-md-3 {
		padding: 0px;
		width: inherit;
		text-align: center;
	}

	.dashboard_card_item .col-md-2 {
		padding: 0px;
		width: inherit;
	}

	.dashboard_card_item .sm-st {
		width: 200px;
	}

	.dashboard_card_item .sm-st {
		width: inherit !important;
	}

	.dashboard_card_item .sm-st-icon {
		float: none;
	}

	.card_dashboard label {
		width: 100%;
		text-align: center;
		margin-top: 10px;
		font-size: 12px !important;
	}

	.charts_dashboard {
		margin: 0 auto;
	}

	/* Days Left Content */
	.days_left_content {
		padding: 10px;
		top: 47px;
		position: relative;
	}

	.days_left_content p {
		margin-bottom: 0px;
	}

	/* Hibernation Plan */
	.hibernation-plan-price-old {
		position: absolute;
		top: -25px;
	}

	.hibernation-plan-price {
		top: 24px !important;
	}

	.hibernation-plan-img {
		width: 40px !important;
		margin-left: 0px;
	}

	.hibernation-plan {
		padding-bottom: 18px !important;
	}

	.hibernation-plan-column {
		width: 80% !important;
		margin-left: 6px;
	}

	.hibernation-plan-desc {
		font-size: 12px;
	}

	/* List Followings */
	.list_followings.sm-st {
		padding: 5px;
	}

	.list-group-item {
		padding: 10px 10px 0px 0px;
	}

	.list_followings .name a {
		display: block;
		margin-bottom: 10px;
	}

	.lblNotFollowYou {
		margin-left: 0px;
	}

	/* Detail PowerUp */
	.detail-powerup {
		margin-top: 70px;
		width: 100%;
	}

	.detail-powerup h2 {
		font-size: 24px;
	}

	/* Logo */
	.logo_login {
		margin-top: 30px;
		margin-bottom: 15px;
	}
	.logo_login .owlead-wordmark {
		font-size: 26px;
	}

	/* Notification Dashboard */
	.notification_dashboard {
		text-align: center;
		margin-top: 60px;
		margin-bottom: 20px;
	}

	.notification_dashboard .content_notification {
		flex-direction: column;
		align-items: center;
	}

	.notification_dashboard .content_notification > div {
		width: 100%;
		text-align: center;
	}

	.notification_dashboard img {
		width: 80px;
		margin: 0 auto 15px auto;
		display: block;
	}

	.notification_dashboard_img {
		padding-left: 0 !important;
	}

	.notification_dashboard_title {
		text-align: center;
		margin-top: 10px;
	}

	.notification_dashboard_desc {
		margin-top: 10px;
		font-size: 14px;
		text-align: center;
		padding: 0px 10px;
		margin-bottom: 15px;
	}

	.notification_dashboard_button {
		display: inline-block;
		width: 170px;
		margin-top: 0px;
	}

	.notification_dashboard_button_close {
		display: block;
		border: none;
		background-color: transparent;
		margin: 10px auto 0 auto;
		color: #9e9e9e;
		width: auto;
		max-width: none;
		font-size: 12px;
		text-align: center;
	}

	/* Testimonial */
	.testimonial p {
		font-size: 16px;
	}

	.testimonial a {
		font-size: 14px;
	}

	/* Plans Dashboard */
	.plans-dashboard {
		background-color: transparent;
	}

	/* Modals */
	#change-plan h5 {
		font-size: 14px;
	}

	#change-plan .col-lg-12,
	#change-plan .modal-body {
		padding-right: 0px !important;
		padding-left: 0px !important;
	}

	#change-plan .modal-dialog {
		width: 96% !important;
	}

	#newaccesstwitter .modal-dialog {
		width: 100% !important;
		margin: 0 !important;
		height: 100%;
	}
	#newaccesstwitter .modal-content {
		min-height: 100vh;
		border-radius: 0 !important;
		border: none;
	}

	/* Referral modal - mobile */
	.referral-modal-dialog {
		width: 94% !important;
		margin: 20px auto !important;
	}

	.referral-hero {
		padding: 24px 20px 20px;
	}

	.referral-body {
		padding: 20px 16px 24px;
	}

	.content-input-referral-link {
		flex-wrap: wrap;
		gap: 8px;
	}

	.input-referral-link {
		width: 100%;
		min-width: 0;
	}

	.btnCopyReferralLink {
		width: 100%;
		justify-content: center;
	}

	/* Manage accounts modal - mobile */
	.manage-accounts-dialog {
		margin: 20px auto !important;
	}

	.manage-accounts-header {
		padding: 18px 16px 16px;
	}

	.manage-accounts-body {
		padding: 8px 12px 16px;
	}

	.manage-account-row {
		flex-wrap: wrap;
	}

	.manage-account-actions {
		width: 100%;
		flex-direction: row;
		justify-content: flex-end;
		margin-top: 4px;
	}

	/* Notifications modal - mobile */
	.notif-modal-dialog {
		width: 94% !important;
		margin: 20px auto !important;
	}

	.notif-modal-header {
		padding: 18px 16px 16px;
		gap: 10px;
	}

	.notif-modal-body {
		padding: 8px 12px;
	}

	.notif-modal-footer {
		padding: 14px 16px 20px;
	}

	.popular {
		background: none;
		color: #f1863b;
		padding: 5px 10px;
		font-size: 11px;
		position: absolute;
		right: 5px;
		top: 5px;
		font-weight: 500;
	}

	/* Content */
	.content {
		padding: 0px 5px;
		width: 100% !important;
		margin: 0 auto;
	}

	.content-detail-subscription {
		margin-bottom: 0px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.box-campaigns {
		margin-top: 60px;
	}

	/* Extension Popup */
	.extension_popup {
		width: 96%;
	}

	.dashboard_card_item .col-md-3 {
		width: 87%;
	}

	/* Twitter */
	.twitter .only_twitter,
	a.twitter .only_twitter {
		display: inline-block;
	}

	.charts_dashboard {
		margin-left: 17px;
	}

	/* Warming Up */
	.warmingup.w-account {
		top: 17px;
	}

	/* Small Components */
	.sm-st,
	.content_chart,
	#chart_div_3,
	#chart_div_4,
	#chart_div_5,
	#chart_div_6,
	.content_stars,
	.panel {
		border-radius: 4px;
		font-size: 14px;
	}

	.content_chart,
	#chart_div_3,
	#chart_div_4,
	.content_stars {
		margin-bottom: 25px;
	}

	.content-block-charts {
		margin-bottom: 0px;
	}

	/* Onboarding */
	.onboarding {
		width: 90%;
	}

	.onboarding h1 {
		font-size: 28px;
	}

	.onboarding h2 {
		font-size: 17px;
	}

	.onboarding h3 {
		font-size: 23px;
		width: 76%;
		position: relative;
	}

	.onboarding .step2 h3 {
		top: 0px;
	}

	.onboarding p {
		margin-left: 60px;
		width: 240px;
		position: relative;
	}

	.onboarding .item span {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 17px;
	}

	.onboarding .item .btn {
		margin-bottom: 30px;
		display: block;
	}

	.onboarding .item.step3 {
		margin-top: 0px;
	}

	.onboarding .btn-extension {
		top: 250px;
		padding: 10px 20px;
	}

	.welcome-username {
		font-size: 14px !important;
	}

	.step_line {
		height: 60px;
		width: 2px;
		top: 146px;
		left: 20px;
	}

	/* Login/Register */
	.login-register h1 {
		font-size: 24px;
	}

	.login-register .testimonial-text {
		font-size: 20px !important;
	}

	.login-register .testimonial .customer div {
		margin: 3px;
	}

	.login-register .testimonial {
		padding: 20px;
	}

	.icon-quotes-left {
		font-size: 30px;
	}

	html,
	body,
	.container {
		height: inherit;
	}

	.btnMobile {
		padding: 19px 20px;
		color: #fff;
		width: 100%;
		display: inline-block;
		text-align: left;
	}

	/* Skin Black Theme */
	body.skin-black .card_dashboard {
		display: block;
	}

	.skin-black .logo {
		background: none;
		width: fit-content !important;
		left: 50%;
		transform: translateX(-50%);
	}

	.power-up-visit {
		padding: 6px 5px !important;
		margin-right: 3px;
		margin-top: 13px;
	}

	.list_accounts {
		margin-top: 50px;
	}

	body.skin-black .lbl-alert {
		display: block;
		margin: 0 auto;
		margin-left: 50%;
		transform: translateX(-50%);
		width: 100%;
		text-align: center;
	}

	body.skin-black .right-side {
		padding: 20px 15px;
	}

	body.skin-black .onboarding {
		padding: 0;
	}

	body.skin-black .onboarding .item {
		padding: 18px 16px 20px 58px;
		text-align: left;
	}

	body.skin-black .onboarding .item > span:not(.onboarding-why-tooltip) {
		left: 14px;
		top: 18px;
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 13px;
	}

	body.skin-black .onboarding .item h3 {
		line-height: 1.3;
		padding-right: 70px;
		font-size: 15px;
	}

	body.skin-black .onboarding .item p {
		font-size: 13px;
		text-align: left;
	}

	body.skin-black .onboarding .item .btn {
		margin-top: 8px;
		margin-bottom: 6px;
		top: 0;
		width: 100%;
	}

	body.skin-black .testimonial {
		padding: 20px;
	}
}

/* Media Query: max-width 768px - MOBILE */
@media (max-width: 768px) {
	/* Simple Keyboard */
	.simple-keyboard .hg-button {
		margin: 2px !important;
	}

	.dashboard_card_item {
		margin-left: 0px;
	}

	/* Skin Black - Dashboard Cards */
	body.skin-black .card_dashboard {
		display: block;
		padding: 0px;
	}

	body.skin-black .card_dashboard .sm-st {
		border: 0px;
		background: transparent;
		margin: 0px;
		padding: 6px;
	}

	body.skin-black .card_dashboard .row.display-flex {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	body.skin-black .card_dashboard .col-xs-6.col-sm-2 {
		width: 100%;
		margin-bottom: 16px;
	}

	body.skin-black .card_dashboard .col-xs-12.col-sm-10 {
		width: 100%;
		text-align: center;
		padding: 0px;
	}

	body.skin-black .img_account_dashboard {
		width: 60px;
		height: 60px;
	}

	body.skin-black .account_name {
		font-size: 16px;
		margin-left: 0;
		margin-bottom: 15px;
		justify-content: center;
	}

	body.skin-black .dashboard_card_item .sm-st {
		width: 100% !important;
		text-align: center;
		margin: 0 auto;
	}

	body.skin-black .dashboard_card_item .sm-st-icon {
		width: 40px;
		height: 40px;
		font-size: 21px;
		margin: 0 auto;
		margin-bottom: 11px;
	}

	body.skin-black .dashboard_card_item .sm-st-info span {
		font-size: 16px;
	}

	/* Login/Register Pages */
	body.skin-black.login-register .row_h {
		flex-direction: column;
	}

	body.skin-black.login-register .col-md-6.no-float:first-child {
		flex: 1;
		padding: 60px 50px !important;
		min-height: auto;
	}

	body.skin-black.login-register .col-xs-8.col-xs-offset-2,
	body.skin-black.login-register .col-xs-6.col-xs-offset-3,
	body.skin-black.login-register .col-xs-10.col-xs-offset-1 {
		text-align: center;
		width: 100% !important;
		margin-left: 0 !important;
		padding: 0 20px;
	}

	body.skin-black.login-register .logo_login {
		margin: 0 auto 20px auto;
		display: block;
	}

	body.skin-black.login-register .col-md-6.no-float:last-child {
		display: none;
	}

	body.skin-black.login-register .app_owlead:first-of-type {
		font-size: 24px;
	}

	body.skin-black.login-register p.app_owlead:first-of-type {
		font-size: 16px;
		max-width: 300px;
		margin: 0 auto;
		margin-bottom: 20px;
	}

	body.skin-black.login-register .testimonial-text {
		font-size: 18px;
	}

	body.skin-black.login-register #container_main {
		padding: 0 !important;
	}

	/* Container Styles */
	body.skin-black.login-register .container {
		padding: 50px 30px;
		margin: 0;
		max-width: 100%;
	}

	/* Register Page */
	body.skin-black.login-register .row .col-md-6 {
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 16px;
	}

	body.skin-black.login-register .login-value-prop {
		padding: 0 20px;
	}

	body.skin-black.login-register .col-xs-6.col-xs-offset-3 .sm-st {
		text-align: left;
	}
}

/* Media Query: max-width 480px - SMALL MOBILE */
@media (max-width: 480px) {
	/* Dropdown Menus */
	.dropdown-menu-right.notifications {
		right: -78px !important;
	}

	.navbar-nav > .notifications-menu > .dropdown-menu > li.header:after,
	.navbar-nav > .tasks-menu > .dropdown-menu > li.header:after,
	.navbar-nav > .messages-menu > .dropdown-menu > li.header:after {
		border-width: 0px !important;
	}

	.navbar-nav > .tasks-menu > .dropdown-menu {
		position: absolute;
		right: -120px;
		left: auto;
	}

	.navbar-nav > .notifications-menu > .dropdown-menu {
		position: absolute;
		right: -170px;
		left: auto;
	}

	.navbar-nav > .messages-menu > .dropdown-menu {
		position: absolute;
		right: -210px;
		left: auto;
	}

	/* Small Box */
	.small-box {
		text-align: center;
	}

	.small-box .icon {
		display: none;
	}

	.small-box p {
		font-size: 12px;
	}

	/* Login and Sliders */
	.login-x {
		padding-bottom: 200px;
	}

	.slick-dots {
		left: 0px;
		transform: none;
	}

	.slider-popups p {
		width: 100%;
		font-size: 15px;
	}

	.slider-popups h5 {
		font-size: 22px;
	}

	/* Modal */
	.modal-footer .col-md-12 {
		padding: 0px;
	}

	.modal-footer {
		padding-right: 0px !important;
	}

	/* Content */
	.content {
		width: 100% !important;
		margin: 0px auto;
	}

	/* Buttons */
	.btnPickPlan {
		min-width: fit-content;
		margin: 40px auto;
		width: 200px;
	}

	.login-twitter.btn {
		padding: 10px 25px;
	}

	/* Navigation */
	.skin-black .navbar .navbar-right > .nav {
		margin-right: 0px;
	}

	.nav > li > a {
		padding: 14px 10px;
	}

	body > .header .navbar {
		height: 50px;
	}

	/* Power Up */
	.power-up-visit {
		width: 130px;
		font-size: 12px;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	/* Subscription */
	.content-detail-subscription {
		padding: 20px;
		margin-bottom: 0px;
	}

	.content-detail-subscription h2 {
		font-size: 23px;
	}

	.border_bottom {
		padding: 15px;
	}

	/* Labels and Codes */
	.lbl-code {
		margin: 0 auto;
		width: 100%;
	}

	.lbl-code span {
		font-size: 11px;
		margin: 0;
		position: relative;
		top: 2px;
	}

	/* Content Buttons */
	.content-buttons a {
		margin-top: 0px;
		padding: 7px;
		font-size: 13px;
	}

	/* Testimonials */
	.testimonial div {
		margin-top: 0px;
		font-size: 13px;
	}

	/* Recaptcha */
	#recaptcha iframe {
		transform: scale(0.8);
		position: relative;
		left: -36px;
	}

	/* Next Run */
	.next_run a,
	.purge_active a {
		font-size: 15px;
	}

	/* Charts */
	.charts_dashboard {
		left: 50%;
		position: relative;
		transform: translateX(-50%);
	}

	/* Lists */
	.list_accounts.unfollow_power_up {
		width: 100%;
		background: none;
		margin: 0px;
	}

	/* Onboarding */
	.onboarding {
		margin-top: 30px;
		margin-left: 20px;
		margin-bottom: 50px;
	}

	.onboarding h1 {
		margin-bottom: 0px;
	}

	.onboarding .item {
		margin-bottom: 0px;
	}

	.onboarding .item.step2 {
		margin-top: 15px;
	}

	.onboarding .item.step3 {
		margin-top: 10px;
	}

	/* Skin Black Theme */
	body.skin-black .right-side {
		padding: 15px 0px;
	}

	body.skin-black .onboarding {
		padding: 15px;
	}

	/* Login/Register Pages */
	body.skin-black.login-register .col-md-6.no-float:first-child {
		padding: 40px 35px;
	}

	body.skin-black.login-register .col-xs-8.col-xs-offset-2,
	body.skin-black.login-register .col-xs-6.col-xs-offset-3,
	body.skin-black.login-register .col-xs-10.col-xs-offset-1 {
		padding: 0 25px;
	}

	body.skin-black.login-register .app_owlead:first-of-type {
		font-size: 24px;
	}

	body.skin-black.login-register .app_owlead:last-of-type {
		font-size: 14px;
	}

	body.skin-black.login-register .container {
		padding: 40px 25px;
		max-width: 100%;
	}
}

/* Media Query: max-width 360px - EXTRA SMALL MOBILE */
@media (max-width: 360px) {
	/* Login/Register Pages */
	body.skin-black.login-register .col-md-6.no-float:first-child {
		padding: 35px 30px;
		min-height: auto;
	}

	body.skin-black.login-register .col-xs-8.col-xs-offset-2,
	body.skin-black.login-register .col-xs-6.col-xs-offset-3,
	body.skin-black.login-register .col-xs-10.col-xs-offset-1 {
		padding: 0 20px;
	}

	body.skin-black.login-register .row_h {
		min-height: auto;
	}

	body.skin-black.login-register .container {
		padding: 35px 20px;
		max-width: 100%;
	}
}

/* Actions Console Styles */
#actionsConsole {
	position: fixed;
	bottom: 0px;
	left: 270px;
	width: 100%;
	max-width: 500px;
	/* background: transparent; */
	box-shadow: rgba(0, 0, 0, 0.5) 0px 18px 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease-in-out;
	z-index: 1050;
	max-height: 400px;
	display: none;
}

#actionsConsole .actions-console-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 15px;
	border-bottom: 1px solid var(--border-gray);
	background: var(--secondary-text-color);
	border-top-left-radius: var(
	--border-radius);
	border-top-right-radius: var(
	--border-radius);
}

#actionsConsole .actions-console-header h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
}

#closeActionsConsole {
	background: none;
	border: none;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
	padding: 5px 10px;
}

#actionsConsoleContent {
	overflow-y: auto;
	padding: 12px 15px;
	max-height: 350px;
	background: var(--white-color);
}

#actionsConsoleContent .actions-console-loading {
	text-align: center;
	color: #fff;
	padding: 20px 0;
}

#actionsConsoleContent .actions-console-empty {
	color: #ffaa00;
	padding: 10px 0;
}

#actionsConsoleContent .actions-console-error {
	color: #ff4444;
	padding: 10px 0;
}

#actionsConsoleContent .actions-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

#actionsConsoleContent .action-item {
	padding: 6px 0;
	border-bottom: 1px solid var(--border-gray);
	font-size: 12px;
}

#actionsConsoleContent .action-timestamp {
	color: var(--secondary-text-color);
}

#actionsConsoleContent .action-icon {
	margin-left: 8px;
	margin-right: 6px;
	font-size: 12px;
	display: inline-block;
}

#actionsConsoleContent .action-item .action-icon.action-color-cyan,
#actionsConsoleContent .action-item .action-icon.action-color-potential-users {
	color: var(--console-potential-users-color);
}

#actionsConsoleContent .action-item .action-icon.action-color-blue,
#actionsConsoleContent .action-item .action-icon.action-color-users-reached {
	color: var(--console-users-reached-color);
}

#actionsConsoleContent .action-item .action-icon.action-color-orange,
#actionsConsoleContent .action-item .action-icon.action-color-users-removed {
	color: var(--console-users-removed-color);
}

#actionsConsoleContent .action-item .action-icon.action-color-green,
#actionsConsoleContent .action-item .action-icon.action-color-users-connected {
	color: var(--console-users-connected-color);
}

#actionsConsoleContent .action-item .action-icon.action-color-likes {
	color: var(--console-likes-color);
}

#actionsConsoleContent .action-item .action-icon.action-color-replies {
	color: var(--console-replies-color);
}

#actionsConsoleContent .action-item .action-icon.action-color-retweets {
	color: var(--console-retweets-color);
}

#actionsConsoleContent .action-item .action-icon.action-color-white {
	color: var(--primary-text-color);
}

#actionsConsoleContent .action-text {
	font-weight: bold;
	margin-left: 0;
}

#actionsConsoleContent .action-separator {
	color: var(--primary-text-color);
}

#actionsConsoleContent .action-total {
	color: var(--primary-text-color);
}

#actionsConsoleContent .action-items-label {
	color: var(--secondary-text-color);
}

#actionsConsoleContent .action-color-cyan,
#actionsConsoleContent .action-color-potential-users {
	color: var(--console-potential-users-color);
}

#actionsConsoleContent .action-color-blue,
#actionsConsoleContent .action-color-users-reached {
	color: var(--console-users-reached-color);
}

#actionsConsoleContent .action-color-orange,
#actionsConsoleContent .action-color-users-removed {
	color: var(--console-users-removed-color);
}

#actionsConsoleContent .action-color-green,
#actionsConsoleContent .action-color-users-connected {
	color: var(--console-users-connected-color);
}

#actionsConsoleContent .action-color-likes {
	color: var(--console-likes-color);
}

#actionsConsoleContent .action-color-replies {
	color: var(--console-replies-color);
}

#actionsConsoleContent .action-color-retweets {
	color: var(--console-retweets-color);
}

#actionsConsoleContent .action-color-white {
	color: var(--primary-text-color);
}

#toggleActionsConsole,
#btnOpenBlacklist,
#btnOpenWhitelistFollows {
	padding: 6px 13px;
	background: var(--border-gray);
	color: var(--secondary-text-color);
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	z-index: 10;
}

#toggleActionsConsole:hover,
#btnOpenBlacklist:hover,
#btnOpenWhitelistFollows:hover {
	background: var(--secondary-text-color) !important;
	color: var(--bg-white);
}

@media screen and (max-width: 768px) {
	#toggleActionsConsole span,
	#btnOpenBlacklist span,
	#btnOpenWhitelistFollows span {
		display: none;
	}

	#toggleActionsConsole,
	#btnOpenBlacklist,
	#btnOpenWhitelistFollows {
		padding: 6px 10px;
		gap: 0;
	}
}

@media screen and (max-width: 992px) {
	#actionsConsole {
		left: 0px;
		width: 100%;
		max-width: 100%;
	}
}

/* ============ UNFOLLOW ACTIONS CONSOLE ============ */
#unfollowActionsConsole {
	position: fixed;
	bottom: 0px;
	left: 270px;
	width: 100%;
	max-width: 500px;
	background: var(--bg-white);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	display: none;
	transform: translateY(calc(100% + 15px));
	transition: transform 0.3s ease-in-out;
	border: 1px solid var(--border-gray);
	border-bottom: none;
}

#unfollowActionsConsole .actions-console-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 15px;
	border-bottom: 1px solid var(--border-gray);
	background: linear-gradient(135deg, var(--orange-color), #e65c00);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
}

#unfollowActionsConsole .actions-console-header h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}

#unfollowActionsConsole .actions-console-header button {
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 4px 8px;
	font-size: 16px;
	opacity: 0.8;
	transition: opacity 0.2s;
}

#unfollowActionsConsole .actions-console-header button:hover {
	opacity: 1;
}

#unfollowActionsConsoleContent {
	overflow-y: auto;
	padding: 12px 15px;
	max-height: 350px;
	background: var(--white-color);
}

#unfollowActionsConsoleContent .actions-console-loading {
	text-align: center;
	color: #fff;
	padding: 20px 0;
}

#unfollowActionsConsoleContent .actions-console-empty {
	color: var(--orange-color);
	padding: 10px 0;
}

#unfollowActionsConsoleContent .actions-console-error {
	color: #ff4444;
	padding: 10px 0;
}

#unfollowActionsConsoleContent .actions-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

#unfollowActionsConsoleContent .action-item {
	padding: 6px 0;
	border-bottom: 1px solid var(--border-gray);
	font-size: 12px;
}

#unfollowActionsConsoleContent .action-timestamp {
	color: var(--secondary-text-color);
}

#unfollowActionsConsoleContent .action-icon {
	margin-left: 8px;
	margin-right: 6px;
	font-size: 12px;
	display: inline-block;
}

#unfollowActionsConsoleContent .action-item .action-icon.action-color-scheduled {
	color: var(--orange-color);
}

#unfollowActionsConsoleContent .action-item .action-icon.action-color-unfollowed {
	color: var(--alert-color);
}

#unfollowActionsConsoleContent .action-item .action-icon.action-color-white {
	color: var(--primary-text-color);
}

#unfollowActionsConsoleContent .action-text {
	font-weight: bold;
	margin-left: 0;
}

#unfollowActionsConsoleContent .action-separator {
	color: var(--primary-text-color);
}

#unfollowActionsConsoleContent .action-total {
	color: var(--primary-text-color);
}

#unfollowActionsConsoleContent .action-items-label {
	color: var(--secondary-text-color);
}

#unfollowActionsConsoleContent .action-color-scheduled {
	color: var(--orange-color);
}

#unfollowActionsConsoleContent .action-color-unfollowed {
	color: var(--alert-color);
}

#unfollowActionsConsoleContent .action-color-white {
	color: var(--primary-text-color);
}

@media screen and (max-width: 992px) {
	#unfollowActionsConsole {
		left: 0px;
		width: 100%;
		max-width: 100%;
	}
}

/* ========================================
   METHOD SELECTOR - Login method picker
   ======================================== */
#method-selector,
#modal-method-selector {
	max-width: 700px;
	margin: 0 auto;
	padding: 30px 0 20px;
}

.method-options {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.method-card {
	flex: 1;
	max-width: 260px;
	padding: 28px 22px;
	border: 1px solid var(--border-gray);
	border-radius: 12px;
	background: var(--bg-white);
	cursor: pointer;
	text-align: center;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.method-card:hover {
	border-color: var(--violet-color);
	box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
	transform: translateY(-2px);
}

.method-icon {
	font-size: 40px;
	margin-bottom: 12px;
}

.method-card h5 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--primary-text-color);
}

.method-card p {
	font-size: 15px;
	line-height: 1.55;
	color: var(--secondary-text-color);
	margin: 0;
}

.method-back {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 18px;
	color: var(--secondary-text-color);
	cursor: pointer;
	text-decoration: none;
}

.method-back:hover {
	color: var(--primary-text-color);
	text-decoration: underline;
}

#extension-inline-instructions {
	max-width: 500px;
	margin: 0 auto;
	text-align: left;
}

#extension-inline-instructions p {
	color: var(--secondary-text-color);
	margin-bottom: 12px;
	font-size: 13px;
}

#extension-inline-instructions .ext-browser-btn {
	min-width: 100px;
}

@media screen and (max-width: 600px) {
	.method-options {
		flex-direction: column;
		align-items: center;
	}
	.method-card {
		max-width: 100%;
		width: 100%;
	}
}

/* Dashboard Greeting */
.dashboard-greeting {
	margin-bottom: 24px;
	padding: 0;
}
.dashboard-greeting .greeting-text {
	font-size: 24px;
	font-weight: 600;
	color: #1F2937;
	margin: 0 0 4px 0;
}
.dashboard-greeting .greeting-subtitle {
	font-size: 15px;
	color: #6B7280;
	margin: 0;
	font-weight: 400;
}

/* Dashboard Summary Bar */
.dashboard-summary {
	font-size: 14px;
	color: #6B7280;
	margin-bottom: 20px;
	padding: 12px 16px;
	background: var(--bg-gray);
	border: 1px solid var(--border-gray);
	border-radius: var(--border-radius);
}
.dashboard-summary .summary-separator {
	margin: 0 8px;
	color: #D1D5DB;
}

/* Dashboard Card Enhancements */
body.skin-black .card-followers {
	font-size: 13px;
	color: #6B7280;
	margin: 4px 0 0 0;
	font-weight: 500;
}
body.skin-black .card-cta {
	display: inline-block;
	font-size: 12px;
	color: #9CA3AF;
	margin-top: 12px;
	opacity: 0;
	transition: opacity 0.2s ease;
}
body.skin-black .card_dashboard:hover .card-cta {
	opacity: 1;
	color: var(--primary-color);
}
body.skin-black .card-cta .fa {
	font-size: 10px;
	margin-left: 2px;
	transition: transform 0.2s ease;
}
body.skin-black .card_dashboard:hover .card-cta .fa {
	transform: translateX(3px);
}

/* Audience Low Score Pill */
.audience-low-score-pill {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 600;
	color: #B45309;
	background: #FEF3C7;
	border: 1px solid #FDE68A;
	border-radius: 20px;
	padding: 2px 10px;
	white-space: nowrap;
}

/* Workspace Tabs */
.workspace-tabs-bar {
	display: flex;
	gap: 4px;
	background: #F3F4F6;
	border-radius: 10px;
	padding: 4px;
	margin: 0 16px 20px;
}
.workspace-tab {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 500;
	color: #6B7280;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
	white-space: nowrap;
}
.workspace-tab:hover {
	color: #374151;
	background: rgba(255,255,255,0.6);
	text-decoration: none;
}
.workspace-tab:focus {
	text-decoration: none;
}
.workspace-tab.active {
	color: #1D4ED8;
	background: #ffffff;
	font-weight: 600;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.workspace-tab.active:hover {
	color: #1D4ED8;
	background: #ffffff;
}
.workspace-tab .fa {
	font-size: 13px;
}
body.dark-mode .workspace-tabs-bar {
	background: #1F2937;
}
body.dark-mode .workspace-tab {
	color: #9CA3AF;
}
body.dark-mode .workspace-tab:hover {
	color: #E5E7EB;
	background: rgba(255,255,255,0.05);
}
body.dark-mode .workspace-tab.active {
	color: #60A5FA;
	background: #374151;
}
@media (max-width: 480px) {
	.workspace-tabs-bar {
		overflow-x: auto;
		margin: 0 8px 16px;
	}
	.workspace-tab {
		padding: 7px 12px;
		font-size: 12px;
	}
}

/* Analytics Tab */
.analytics-card {
	background: #fff;
	border: 1px solid var(--border-gray);
	border-radius: var(--border-radius);
	padding: 20px;
	margin-bottom: 16px;
}
.analytics-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 8px;
}
.analytics-card-title {
	font-size: 16px;
	font-weight: 600;
	color: #374151;
	margin: 0;
}
.analytics-card-meta {
	text-align: right;
}
.analytics-card-value {
	font-size: 18px;
	font-weight: 700;
	color: #1F2937;
	display: block;
	line-height: 1.2;
}
.analytics-card-desc {
	font-size: 12px;
	color: #9CA3AF;
}
.analytics-chart-container {
	min-height: 180px;
	position: relative;
}
.analytics-chart-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 180px;
}
.analytics-card .no-data-yet {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 180px;
	color: #9CA3AF;
	font-size: 14px;
	text-align: center;
}
.analytics-card .no-data-yet span {
	position: static;
	transform: none;
	min-width: 0;
	width: auto;
	max-width: 100%;
	border: none;
	padding: 20px;
	background: none;
}
.quality-bar-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.quality-bar-label {
	width: 110px;
	font-size: 13px;
	color: #6B7280;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.quality-bar-label .fa-star { color: #F59E0B; font-size: 11px; }
.quality-bar-stars { display: flex; gap: 1px; }
.quality-bar-level { font-size: 11px; color: #9CA3AF; }
.quality-bar-track {
	flex: 1;
	height: 24px;
	background: #F3F4F6;
	border-radius: 6px;
	overflow: hidden;
}
.quality-bar-fill {
	height: 100%;
	border-radius: 6px;
	transition: width 0.8s ease;
}
.quality-bar-fill.q5 { background: #10B981; }
.quality-bar-fill.q4 { background: #3B82F6; }
.quality-bar-fill.q3 { background: #8B5CF6; }
.quality-bar-fill.q2 { background: #F59E0B; }
.quality-bar-fill.q1 { background: #EF4444; }
.quality-bar-value {
	width: 80px;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	text-align: right;
	flex-shrink: 0;
}
.quality-bar-count { font-size: 11px; font-weight: 400; color: #9CA3AF; }
@media(max-width:639px){
	.quality-bar-row { gap:8px; }
	.quality-bar-label { width:auto; flex:0 0 auto; }
	.quality-bar-label .quality-bar-level { display:none; }
	.quality-bar-value { width:auto; flex:0 0 auto; min-width:48px; }
}
.quality-reference { font-size: 11px; color: #9CA3AF; margin: 12px 0 0; text-align: center; }
.quality-info-icon { font-size: 13px; color: #9CA3AF; margin-left: 5px; cursor: default; vertical-align: middle; }
.porc_chart_value { display: inline; font-size: 13px; margin-left: 4px; }
.porc_chart_value.green { color: #10B981; }
.porc_chart_value.red { color: #EF4444; }
.change-entity { font-size: 11px; }

/* Dark mode analytics */
body.dark-mode .analytics-card { background: #1F2937; border-color: #374151; }
body.dark-mode .analytics-card-title { color: #E5E7EB; }
body.dark-mode .analytics-card-value { color: #F9FAFB; }
body.dark-mode .quality-bar-track { background: #374151; }
body.dark-mode .quality-bar-value { color: #D1D5DB; }
body.dark-mode .quality-bar-label { color: #9CA3AF; }

/* ===== Dashboard Account Row Cards ===== */

/* Override old greeting styles */
.right-side .dashboard-greeting {
	margin-bottom: 6px;
	margin-top: 32px;
}
.right-side .dashboard-greeting .greeting-text {
	font-size: 26px;
	font-weight: 700;
	color: #111827;
	margin: 0;
	line-height: 1.2;
}

/* Summary bar: strip box, show as plain subtitle text */
.right-side .dashboard-summary {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	margin-bottom: 28px;
	margin-top: 4px;
	font-size: 15px;
	color: #6B7280;
	font-weight: 400;
}

/* Account cards container */
.accounts-grid {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 540px;
}
/* Neutralize Bootstrap col padding when not inside a .row */
.accounts-grid .col-md-12 {
	padding-left: 0;
	padding-right: 0;
}

/* Horizontal account row card */
.account-card-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	background: #ffffff;
	border: 1px solid var(--border-gray);
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	cursor: pointer;
}
.account-card-row:hover {
	text-decoration: none;
	color: inherit;
	border-color: var(--violet-color);
	box-shadow: 0 2px 8px rgba(139, 92, 246, 0.12);
}

/* Avatar */
.acr-avatar-img,
body.skin-black .acr-avatar-img {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	box-shadow: 0 0 0 1px var(--border-gray);
	flex-shrink: 0;
	display: block;
}

/* Name + handle block */
.acr-info {
	flex: 1;
	min-width: 0;
}
.acr-name {
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	line-height: 1.3;
	margin-bottom: 2px;
}
.acr-handle {
	font-size: 13px;
	color: #9CA3AF;
}
.acr-status {
	margin-top: 8px;
}
.acr-status .lbl-alert,
.acr-status .lbl-warning {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	top: 0;
}
.acr-status .lbl-alert .fa,
.acr-status .lbl-warning .fa {
	margin-right: 0;
}

/* CTA arrow */
.acr-action {
	flex-shrink: 0;
	font-size: 13px;
	color: #C0C7D0;
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
	transition: color 0.15s ease;
}
.acr-action-arrow {
	display: inline-block;
	transition: transform 0.2s ease;
}
.account-card-row:hover .acr-action {
	color: var(--violet-color);
}
.account-card-row:hover .acr-action-arrow {
	transform: translateX(4px);
}

@media (max-width: 768px) {
	.accounts-grid { max-width: 100%; }
	.account-card-row { padding: 14px 16px; }
}


/* ═══════════════════════════════════════════════════════════════════ */
/* Modal: Owlead Evolution Announcement (.evo-*)                       */
/* ═══════════════════════════════════════════════════════════════════ */

/* ─── Dialog shell ──────────────────────────────────────────────── */
.evo-dialog {
  max-width: 860px;
  width: 860px;
  margin: 32px auto;
}
@media (min-width: 768px) {
  .evo-dialog { width: 860px; max-width: 860px; }
}
@media (max-width: 768px) {
  .evo-dialog { margin: 0; max-width: 100%; height: 100%; }
}

.evo-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  background: #fff;
}
@media (max-width: 768px) {
  .evo-modal-content { border-radius: 0; min-height: 100vh; }
}

/* ─── Progress bar ──────────────────────────────────────────────── */
.evo-progress-track {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 20;
  background: rgba(0,0,0,.08);
}
.evo-progress-fill {
  height: 100%;
  background: #6366f1;
  transition: width .5s cubic-bezier(.4,0,.2,1);
  border-radius: 0 3px 3px 0;
}

/* ─── Close button ──────────────────────────────────────────────── */
.evo-close-btn {
  position: absolute; top: 14px; right: 14px; z-index: 30;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.2); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.evo-close-btn:hover { background: rgba(255,255,255,.35); transform: scale(1.1); }

/* ─── Slides wrapper & track ────────────────────────────────────── */
.evo-slides-wrapper { overflow: hidden; }
.evo-slides-track {
  display: flex;
  transition: transform .5s cubic-bezier(.77,0,.18,1);
}
.evo-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 768px) { .evo-slide { min-height: calc(100vh - 80px); } }

/* ─── Navigation bar ────────────────────────────────────────────── */
.evo-nav {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 16px 20px 20px;
  gap: 16px;
  background: inherit;
  transition: background .5s;
}

.evo-dots {
  display: flex; gap: 6px; align-items: center;
}
.evo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #d1d5db; cursor: pointer;
  transition: all .3s; border: none; padding: 0;
}
.evo-dot.active {
  width: 22px; border-radius: 4px;
  background: #6366f1;
}
.evo-dot:hover:not(.active) { background: #9ca3af; transform: scale(1.2); }

.evo-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid #e5e7eb; background: #fff;
  color: #374151; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; flex-shrink: 0;
}
.evo-arrow:hover:not(:disabled) { background: #f3f4f6; border-color: #d1d5db; transform: scale(1.05); }
.evo-arrow:disabled { opacity: .3; cursor: not-allowed; }

.evo-arrow-next {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-color: transparent; color: #fff;
}
.evo-arrow-next:hover:not(:disabled) { box-shadow: 0 4px 14px rgba(99,102,241,.4); }
.evo-arrow-next.evo-cta {
  width: auto; border-radius: 20px; padding: 0 20px;
  font-size: 13px; font-weight: 700; gap: 6px;
}

/* ─── Slide 0 — Letter ──────────────────────────────────────────── */
.evo-letter-slide {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 44px 52px 32px;
}
@media (max-width: 600px) { .evo-letter-slide { padding: 36px 24px 24px; } }

.evo-letter-paper { display: contents; }

/* Letterhead */
.evo-letter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.evo-letter-logo {
  height: 28px;
  width: auto;
  display: block;
}
.evo-letter-date {
  font-size: 12px;
  color: #9ca3af;
}
.evo-letter-divider {
  height: 1px;
  background: #f3f4f6;
  margin-bottom: 22px;
}

/* Letter body */
.evo-letter-body {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  flex: 1;
}
.evo-letter-salutation {
  font-weight: 600;
  color: #111827;
  margin: 0 0 14px;
}
.evo-letter-body p {
  margin: 0 0 11px;
}
.evo-letter-body p:last-child { margin-bottom: 0; }
.evo-letter-body strong { color: #111827; }

/* Signature */
.evo-letter-sig-wrap {
  margin-top: 20px;
}
.evo-letter-sig-name {
  font-family: 'Caveat', cursive;
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}
.evo-letter-sig-title {
  font-size: 12px;
  color: #9ca3af;
  letter-spacing: .2px;
}

/* ─── Feature slides ────────────────────────────────────────────── */
.evo-feat-slide {
  padding: 48px 52px 32px;
  position: relative; overflow: hidden;
  color: #fff;
}
@media (max-width: 600px) { .evo-feat-slide { padding: 48px 24px 28px; } }

.evo-feat-slide::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.06); pointer-events: none;
}

.evo-feat-icon-wrap {
  width: 72px; height: 72px; border-radius: 20px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; margin-bottom: 24px;
  flex-shrink: 0;
}
.evo-feat-tab-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; margin-bottom: 14px; color: rgba(255,255,255,.9);
}
.evo-feat-title {
  font-size: 30px; font-weight: 800; color: #fff;
  margin: 0 0 10px; line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
@media (max-width: 600px) { .evo-feat-title { font-size: 24px; } }
.evo-feat-subtitle {
  font-size: 15px; color: rgba(255,255,255,.8); margin: 0 0 28px;
  max-width: 480px; line-height: 1.6;
}
.evo-feat-bullets {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px;
}
.evo-feat-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
}
.evo-feat-bullet-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; margin-top: 1px;
}

/* ─── Slide-in animation ────────────────────────────────────────── */
.evo-slide-content { animation: evo-slide-in .45s cubic-bezier(.25,.8,.25,1) both; }

@keyframes evo-slide-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Slide backgrounds ─────────────────────────────────────────── */
/* All feature slides share the same dark base; only the accent light differs */
.evo-bg-superactions { background: #0f172a; background-image: radial-gradient(ellipse at 80% 20%, rgba(251,146,60,.18) 0%, transparent 55%); }
.evo-bg-audience     { background: #0f172a; background-image: radial-gradient(ellipse at 80% 20%, rgba(96,165,250,.18) 0%, transparent 55%); }
.evo-bg-contentlab   { background: #0f172a; background-image: radial-gradient(ellipse at 80% 20%, rgba(167,139,250,.18) 0%, transparent 55%); }
.evo-bg-insights     { background: #0f172a; background-image: radial-gradient(ellipse at 80% 20%, rgba(129,140,248,.18) 0%, transparent 55%); }
.evo-bg-cleanup      { background: #0f172a; background-image: radial-gradient(ellipse at 80% 20%, rgba(45,212,191,.18) 0%, transparent 55%); }
.evo-bg-analytics    { background: #0f172a; background-image: radial-gradient(ellipse at 80% 20%, rgba(52,211,153,.18) 0%, transparent 55%); }

/* ─── Slide counter ─────────────────────────────────────────────── */
.evo-slide-counter {
  position: absolute; top: 18px; left: 20px; z-index: 20;
  font-size: 11px; font-weight: 700; color: rgba(100,100,100,.5);
  letter-spacing: .5px;
}

/* ================================================================= */
/* Modal: Owlead 2.0 Migration (.mig-*)                              */
/* ================================================================= */

.mig-dialog {
  width: 520px;
  max-width: 95vw;
  margin: 60px auto;
}

.mig-content {
  background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 100%);
  border: none;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  overflow: hidden;
  position: relative;
}

/* Progress bar */
.mig-progress-track {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.08);
}
.mig-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #818cf8, #a78bfa);
  transition: width 0.6s cubic-bezier(.4,0,.2,1);
}

/* Body */
.mig-body {
  padding: 40px 40px 36px;
}

/* Header */
.mig-header {
  text-align: center;
  margin-bottom: 32px;
}
.mig-logo {
  height: 28px;
  margin-bottom: 14px;
}
.mig-badge {
  display: inline-block;
  background: linear-gradient(90deg, #818cf8, #a78bfa);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.mig-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}
.mig-subtitle {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  margin: 0;
}

/* Steps list */
.mig-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mig-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  opacity: 0.28;
  transition: opacity 0.4s ease;
}
.mig-step:last-child { border-bottom: none; }
.mig-step.mig-active { opacity: 1; }
.mig-step.mig-done   { opacity: 1; }

/* Icon area */
.mig-step-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

/* Spinner */
.mig-spinner {
  display: none;
  width: 18px;
  height: 18px;
}
.mig-active .mig-spinner { display: inline-block; }
.mig-spinner svg {
  width: 18px;
  height: 18px;
  animation: migSpin 0.9s linear infinite;
}
.mig-spinner svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-dasharray: 80;
  stroke-dashoffset: 60;
  stroke-linecap: round;
}

/* Check */
.mig-check {
  display: none;
  color: #10b981;
  font-size: 16px;
}
.mig-done .mig-spinner { display: none; }
.mig-done .mig-check   { display: block; }

/* Step text */
.mig-step-label {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}
.mig-active .mig-step-label { color: #fff; }
.mig-done   .mig-step-label { color: #10b981; }

/* Footer */
.mig-footer {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  animation: migFadeUp 0.5s ease both;
}
.mig-footer.mig-visible { display: flex; }

.mig-success-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-size: 14px;
  font-weight: 600;
}
.mig-success-msg .fa { font-size: 18px; }

.mig-cta-btn {
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.3px;
}
.mig-cta-btn:hover { opacity: .88; transform: translateY(-1px); }
.mig-cta-btn:active { transform: translateY(0); }

/* Keyframes */
@keyframes migSpin {
  to { transform: rotate(360deg); }
}
@keyframes migFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
