/* Tooltip container */
@media (max-width: 1000px) {
  .tooltip .tooltiptext {
	  display:none;
  }
}
/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: #1b1111f2;
    color: #fff;
	font-size: 11px;
  /*  inline-size: auto; */
    text-align: center;
    padding: 5px 10px;
    border-radius: 3px;
    position: absolute;
    z-index: 1;
    /* bottom: 125%; */
    top: -5px;
    left: 135%;
    /* left: 50%; */
    margin-left: -60px;
    /* opacity: 0; */
    transition: opacity 0.3s;
}
.tooltip .tooltiptext .list{
color:#8cbb8c;
display: block;
}
/* Tooltip arrow */
.tooltip .tooltiptext::after {
	content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #1b1111f2 transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}