:root {
  --main-bg-color: #22b573;
  --alt-bg-color: #8DC26F;
  --accent-color: rgb(40, 160, 160);
}
.badge.blue {
  background: rgba(30, 140, 190, 0.2);
  border: 1px solid rgba(0, 103, 153, 0.2);
  color: rgb(0, 103, 153);
}
.tooltip {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  cursor: help;
}
.ips .active th.check-column {
  padding-left: 7px;
}
.ips .inactive th.check-column {
  padding-left: 10px;
}
.submitbox .submitdelete {
  color: #a00;
}
.submitbox .submitdelete:hover {
  color: #dc3232;
}
.muted {
  opacity: 0.6;
  line-height: 1.2;
  padding-top: 4px;
}
.muted span {
  opacity: 0.4;
  padding: 0 2px;
}
small,
.text-small {
  font-size:85%;
}
#header-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header-logo > h1 {
  font-size: 4em;
  font-weight: 200;
}
#header-logo > img {
  max-width: 6rem;
  height: auto;
  padding: 1rem;
}
.chart-container {
  border-top:1px solid rgb(204 208 212 / 85%);
  border-bottom:1px solid rgb(204 208 212 / 85%);
  display:flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: flex-end;
  position: relative;
  height: 120px;
  /* background:rgb(250 250 250 / 50%); */
}
.chart-xaxis {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  margin-top: 10px;
}
.chart-xaxis > div {
  font-size: 75%;
  text-align: center;
  overflow: hidden;
  /* width: 10px; */
  /* border: 1px solid orange; */
  transform: rotate(-45deg);
}
.chart-grid {
  display:flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: absolute;
  width:100%; height:100%;
}
.chart-grid > div {
  width:100%;
  height:1px;
  background:rgba(0,0,0,0.1);
}
.bar {
  background-color: rgb(34,193,195);
  background: linear-gradient(0deg, var(--main-bg-color) 0, var(--alt-bg-color) 200px);
  /* border: 1px solid var(--accent-color); */
  /* box-shadow: 2px 2px 4px inset #00000024; */
  text-align:center;
  padding-top: 10px;
  color:white;
  width: 6px !important;
  border-radius: 3px;
  transform: translateY(2px);
  transition: background 0.2s;
}
.bar:hover{
  background: var(--accent-color);
}
@media screen and (max-width:782px) {
  .hide-on-mobile {
    display: none!important;
  }
  .widefat * {
    word-wrap: break-word;
  }
  #wpbody-content .wp-list-table.plugins td {
    display: table-cell;
  }
}

.auto-dismiss {
    animation: 1.2s slidein 4s ease alternate both;
}
@keyframes slidein {
  0% {
    opacity: 1;
    transform: translate(0,0);
    margin-top: 0px;
  }
  60% {
    opacity: 0;
    transform: translate(0,-20px);
    margin-top: 0px;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    margin-top: -50px;
  }
}
