:root {
    --afkw-background-color: #00bf72;
    --afkw-background: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
    --afkw-background2: linear-gradient(to right top, #008793, #00bf72, #a8eb12);
    --afkw-gradient-hov: linear-gradient(to right, hsl(190 100% 60%), hsl(150 100% 50%));
    --afkw-bg1: rgba(255, 255, 255, 0.6);
    --afkw-color1: #00bf72;
    --afkw-color1-hov: #008793;
    --afkw-red: #b91c1c;
    --afkw-red-hov: #9a3412;
    --afkw-gray: rgb(243 244 246);
    --afkw-gray1: rgb(229 231 235);
    --afkw-gray2: #d1d5db;
    --afkw-shadow:  3px 3px 0px rgba(0, 0, 0, 0.05);
}

.afkw-container  {
    font-family: 'Poppins', sans-serif;
    line-height: 150%;
    background-color: var(--afkw-background-color);
    background: var(--afkw-background);
    border-radius: 0;
    margin: 2px 0 0 -18px;
    padding: 20px;
}
.container-fluid.afkw-container .afkw-logo {
    display: inline-block;
    font-size: 25px;
    color: var(--afkw-color1);
    text-transform: uppercase;
    font-weight: 700;
    padding: 20px 0;
    text-decoration: none;
    outline: none;
}
.container-fluid.afkw-container .afkw-logo:focus {
  outline: none;
}
a .afkw-logo {
  text-decoration: none!important;
}
.afkw-inner-container  {
    background-color: #fff;
    border-radius: 0;
    padding: 15px 30px 15px 30px;
    margin: auto;
}
/*****************************************
                TABS
*****************************************/
.afkw-tab.nav-tab {
    padding: 10px 30px;
    font-size: 15px;
    background-color: var(--afkw-gray1);
    color: #333;
    border: none;
    border-radius: 0px;
    transition: all 0.3s ease-out;
    box-shadow: var(--afkw-shadow);
}
.afkw-tab.nav-tab:hover, .afkw-tab.nav-tab.nav-tab-active {
    background-color: var(--afkw-color1);
    color: #fff;
    border: none;
}
.nav-tab-wrapper, .wrap h2.nav-tab-wrapper, h1.nav-tab-wrapper {
    border-bottom: 0;
}

/*****************************************
                Segment
*****************************************/
.afkw-segment {
    position: relative;
    padding: 30px;
    background-color: #fff;
    border: 1px solid var(--afkw-gray1);
    margin: 25px 0;
    border-radius: 0px;
    box-shadow: var(--afkw-shadow);
}
.afkw-segment h2 {
    position: relative;
    display: inline-block;
    z-index: 0;
    margin: auto;
    font-size: 18px;
    text-transform: uppercase;
}
.sidebar .afkw-segment h2 {
  font-size: 14px;
}
/*****************************************
                Form
*****************************************/
.afkw-container .afkw-input,
.afkw-container .afkw-select,
.afkw-container .afkw-textarea {
    width: 100%;
    padding: 2px 10px;
    color: #333;
    border: 1px solid var(--afkw-gray2);
    border-radius: 0px;
}
.afkw-container .afkw-textarea {
    height:120px;
    padding: 10px;
}
.afkw-container .afkw-disabled {
    background-color: #f9fffe;
}

.afkw-container .afkw-submit, .afkw-btn {
    display: block;
    width: 100%;
    background-color: var(--afkw-color1);
    color: #fff;
    border: 0;
    border-radius: 0px;
    padding: 8px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    box-shadow: var(--afkw-shadow);
    transition: all 0.3s ease-out;
}

.afkw-container .afkw-submit:hover, .afkw-btn:hover {
    background-color: var(--afkw-color1-hov);
    color: #fff;
    cursor: pointer;
}

.afkw-btn.bulk {
    display: inline-block;
    width: auto;
    font-size: 24px;
    padding: 10px 50px;
}
.afkw-btn.del {
    display: inline-block;
    width: auto;
    font-size: 10px;
    padding: 4px 8px;
    color: #fff;
    background-color: var(--afkw-red);
}
.afkw-btn.danger {
    background-color: var(--afkw-red);
}
.afkw-btn.danger:hover {
    background-color: var(--afkw-red-hov);
}
.afkw-btn.disabled {
    opacity: 0.6
}
/*****************************************
            TOGGLE CHECKBOX
*****************************************/
.afkw-container .afkw-toggle {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 36px;
}
  
.afkw-container .afkw-toggle input {
    display:none;
}
  
.afkw-container .afkw-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
  
.afkw-container .afkw-toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 5px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.afkw-container input:checked + .afkw-toggle-slider {
    background-color: var(--afkw-color1);
}

.afkw-container input:focus + .afkw-toggle-slider {
    box-shadow: 0 0 1px var(--afkw-color1);
}

.afkw-container input:checked + .afkw-toggle-slider:before {
    -webkit-transform: translateX(33px);
    -ms-transform: translateX(33px);
    transform: translateX(33px);
}
  
.afkw-container .afkw-toggle-slider.afkw-toggle-round {
    border-radius: 0px;
}

.afkw-container .afkw-toggle-slider.afkw-toggle-round:before {
    border-radius: 0px;
}
/*****************************************
                ALERTS
*****************************************/
.afkw-alert {
    padding: 10px;
    padding-left: 15px;
    border-left: 4px solid #3b8fd2;
    margin: 10px 0 5px;
    line-height: 150%;
    color: #fff;
    border-radius: 0px;
    margin-bottom: 15px;
    box-shadow: var(--afkw-shadow);
}
.afkw-alert a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dotted;
}
.afkw-alert.afkw-info {
    background-color: #47A8F5;
}
.afkw-alert.afkw-success {
    background-color: #29ce76;
    border-color: #1baa5e;
}
.afkw-alert.afkw-error {
  background-color: var(--afkw-red);
  border-color: var(--afkw-red-hov);
}
.afkw-alert.afkw-note a {
    color: #333;
}
.afkw-alert.afkw-note {
    color: #333;
    background-color: #fff;
    border-color: #333;
}
.afkw-alert.afkw-note .closebtn {
    color: #333;
}
.closebtn {
    color: white;
    float: right;
    font-size: 22px;
    line-height: 18px;
    cursor: pointer;
    transition: 0.3s;
}
.closebtn:hover {
    color: black;
}
.afkw-comment {
    font-size: 12px;
    margin-bottom: 0;
    color: #888;
}

/*****************************************
                Tooltip
*****************************************/
[tooltip] {
    position: relative; /* opinion 1 */
  }
  
  /* Applies to all tooltips */
  [tooltip]::before,
  [tooltip]::after {
    text-transform: none; /* opinion 2 */
    font-size: .9em; /* opinion 3 */
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
  }
  [tooltip]::before {
    content: '';
    border: 5px solid transparent; /* opinion 4 */
    z-index: 1001; /* absurdity 1 */
  }
  [tooltip]::after {
    content: attr(tooltip); /* magic! */
    
    /* most of the rest of this is opinion */
    font-family: Helvetica, sans-serif;
    text-align: center;
    
    /* 
      Let the content set the size of the tooltips 
      but this will also keep them from being obnoxious
      */
    min-width: 3em;
    max-width: 70em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 1.2ch 1.5ch;
    border-radius: .3ch;
    box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
    background: #333;
    color: #fff;
    z-index: 1000; /* absurdity 2 */
  }
  
  /* Make the tooltips respond to hover */
  [tooltip]:hover::before,
  [tooltip]:hover::after {
    display: block;
  }
  
  /* don't show empty tooltips */
  [tooltip='']::before,
  [tooltip='']::after {
    display: none !important;
  }
  
  /* FLOW: UP */
  [tooltip]:not([flow])::before,
  [tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #333;
  }
  [tooltip]:not([flow])::after,
  [tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
  }
  [tooltip]:not([flow])::before,
  [tooltip]:not([flow])::after,
  [tooltip][flow^="up"]::before,
  [tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
  }
  
  /* FLOW: DOWN */
  [tooltip][flow^="down"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #333;
  }
  [tooltip][flow^="down"]::after {
    top: calc(100% + 5px);
  }
  [tooltip][flow^="down"]::before,
  [tooltip][flow^="down"]::after {
    left: 50%;
    transform: translate(-50%, .5em);
  }
  
  /* FLOW: LEFT */
  [tooltip][flow^="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #333;
    left: calc(0em - 5px);
    transform: translate(-.5em, -50%);
  }
  [tooltip][flow^="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-.5em, -50%);
  }
  
  /* FLOW: RIGHT */
  [tooltip][flow^="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #333;
    right: calc(0em - 5px);
    transform: translate(.5em, -50%);
  }
  [tooltip][flow^="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(.5em, -50%);
  }

  /* KEYFRAMES */
  @keyframes tooltips-vert {
    to {
      opacity: .9;
      transform: translate(-50%, 0);
    }
  }
  
  @keyframes tooltips-horz {
    to {
      opacity: .9;
      transform: translate(0, -50%);
    }
  }
  
  /* FX All The Things */ 
  [tooltip]:not([flow]):hover::before,
  [tooltip]:not([flow]):hover::after,
  [tooltip][flow^="up"]:hover::before,
  [tooltip][flow^="up"]:hover::after,
  [tooltip][flow^="down"]:hover::before,
  [tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
  }
  
  [tooltip][flow^="left"]:hover::before,
  [tooltip][flow^="left"]:hover::after,
  [tooltip][flow^="right"]:hover::before,
  [tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
  }


.afkw-progress-container {
    box-shadow: var(--afkw-shadow);
}

.afkw-progress-container, .afkw-progress {
    background-color: #eee;
    position: relative;
    height: 15px;
    width: 100%;
}
  
  .afkw-progress {
    background-color: var(--afkw-color1);
    width: 0;
    transition: width 0.4s linear;
  }
  
  .afkw-percentage {
    background-color: var(--afkw-color1);
    box-shadow: var(--afkw-shadow);
    color: #fff;
    font-size: 12px;
    padding: 4px;
    position: absolute;
    top: 20px;
    left: 0;
    transform: translateX(-50%);
    width: 40px;
    text-align: center;
    transition: left 0.4s linear;
  }
  
  .afkw-percentage::after {
    background-color: var(--afkw-color1);
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    height: 10px;
    width: 10px;
    z-index: -1;
  }

  .afkw-progress.del {
    background-color: var(--afkw-red);
  }
  .afkw-percentage.del {
    background-color: var(--afkw-red);
  }
  .afkw-percentage.del::after {
    background-color: var(--afkw-red);
  }

  ul.afkw-sync-items li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em 0.5em 0.5em 1em;
    background-color: var(--afkw-gray);
  }

  .afkw-log {
    background-color: #111;
    margin-top: 15px;
    color: lime;
    padding: 20px 20px 10px;
    font-family: monospace;
    height: 150px;
    overflow: auto;
}
.afkw-log .done {
    color: yellow;
}
ul.afkw-log li.error {
    color: red;
}
ul.afkw-log li ul {
    list-style-type: disc;
    margin-left: 15px;
}

[v-cloak] {
    display: none;
}

.afkw-date {
  display: inline-block;
  margin-left: 10px;
  background: #ecfccb;
  color: #65a30d;
  padding: 5px 6px 3px;
  box-shadow: var(--afkw-shadow);
}

.afkw-coverage {
  background-color: var(--afkw-gray);
  box-shadow: var(--afkw-shadow);
  margin: 20px 0;
  padding: 16px;
}

.afkw-coverage-header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.afkw-coverage-header h3 {
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
}

.afkw-coverage-header span {
  background-color: #fff;
  color: #333;
  font-weight: 700;
  padding: 4px 8px;
}

.afkw-coverage-bar {
  background-color: #fff;
  height: 12px;
  overflow: hidden;
}

.afkw-coverage-bar span {
  background-color: var(--afkw-color1);
  display: block;
  height: 100%;
  transition: width 0.3s ease-out;
}

.afkw-coverage-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.afkw-coverage-grid div {
  background-color: #fff;
  padding: 12px;
}

.afkw-coverage-grid strong,
.afkw-coverage-grid span {
  display: block;
}

.afkw-coverage-grid strong {
  color: var(--afkw-color1-hov);
  font-size: 22px;
  line-height: 1.2;
}

.afkw-coverage-grid span {
  color: #333;
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 782px) {
  .afkw-coverage-grid {
    grid-template-columns: 1fr;
  }
}

/*****************************************
                LOGS
*****************************************/
.afkw-log-item {
  font-family: monospace;
  font-size: 13px;
  line-height: 20px;
  padding: 10px 0 10px 0;
  color: #000;
}
.afkw-log-item a {
  border-bottom: 1px dashed #000;
  font-weight: 700;
}
.afkw-log-item:nth-child(odd) {
  background-color: var(--afkw-gray);
}
.afkw-log-item a.del {
  display: none;
}
.afkw-log-item:hover a.del {
  display: inline;
  color: var(--afkw-red);
  border-bottom: 1px solid;
}

.afkw-container .afkw-log-item .afkw-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 18px;
}
.afkw-container .afkw-log-item .afkw-toggle-slider:before {
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 4px;
}

.afkw-log-item button {
  display: inline-block;
  border: 0;
  padding: 3px 5px;
  font-size: 10px;
  line-height: 100%;
  background-color: var(--afkw-red);
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}
.afkw-log-header, .afkw-sync {
  background-color: var(--afkw-gray);
  min-height: 50px; 
  padding: 0; 
  font-weight: 400
}
.afkw-sync {
  padding: 1rem 1rem 1.5rem;
}

.afkw-log {
  background-color: #111;
  color: lime;
  padding: 20px 20px 10px;
  font-family: monospace;
  height: 150px;
  overflow: auto;
}
.afkw-log .done {
  color: yellow;
}
ul.afkw-log li.error {
  color: red;
}
ul.afkw-log li ul {
  list-style-type: disc;
  margin-left: 15px;
}

.col-xs-1.afkw-col {
  -ms-flex-preferred-size: 5.33333333%;
  flex-basis: 5.33333333%;
  max-width: 5.33333333%;
}

.afkw-stats {
  background-color: var(--s-primary);
  padding: 10px;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
}

.afkw-checkbox {
  display: inline-block;
  background-color: var(--afkw-gray1);
  padding: 8px 8px 6px;
  margin-bottom: 4px;
  line-height: 100%;
}

.afkw-title {
  font-size: 24px;
}

.afkw-stats {
  background-color: var(--afkw-gray);
  padding: 10px;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
}

.afkw-sync-pro {
  background-color: var(--afkw-background-color);
  background: var(--afkw-background2);
  color: #fff;
  padding: 25px;
  margin: 20px 0 30px;
  box-shadow: var(--afkw-shadow);
}
.afkw-sync-pro > h2 {
  font-size: 18px;
  color: #fff;
  line-height: 80%;
  margin: 0;
}
.afkw-sync-pro a {
  color: #fff;
}
.afkw-sync-pro .afkw-toggle-slider {
  background-color: #00A184;
}
.afkw-container input:checked + .afkw-toggle-slider {
  background-color: #63D93A;
}

.multiselect-tags-search, .multiselect-tags-search:focus  {
  border: 0px solid !important;
  box-shadow: 0 0 0 0px !important;
}
.multiselect, .multiselect-tag, .multiselect-wrapper {
  border-radius: 0!important;
}
.multiselect-tag {
  font-size: 0.65rem!important;
  font-weight: 400!important;
}
.multiselect-wrapper {
  padding: 5px 0;
}
