.infobox
{
  position: relative;
  text-align: left;
  font-size: 10px;
  width: 20px;
  height: 20px;
  background: #2e95d3;
  color: white;
  font-weight: 300;
  display: inline-block;
  padding-left: 7px;
  padding-top: 4px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid white;
  vertical-align: middle;
  cursor: pointer;
  margin-left: 10px;
  z-index: 10;
}
.infobox.right
{
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 15px;
}

.infotext
{
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.2s;
  width: 300px;
  background: rgb(209,209,209);
  background: linear-gradient(0deg, rgba(209,209,209,1) 0%, rgba(255,255,255,1) 100%);
  border: 1px solid #353536;
  box-shadow: 2px 2px 5px #353536;
  min-height: 40px;
  border-radius: 5px;
  padding: 5px;
  font-size: 12px;
  color: black;
  font-family: sans-serif;
  top: 17px;
  left: -180px;
  padding-top: 10px;
  z-index: inherit;
}
.infotext.showed
{
  visibility: visible;
  opacity: 1;
}
.infotext .fas
{
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  color: #353536;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.close
{
  position: absolute;
  top: 0px;
  right: 10px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.infotext .fas:hover, .close:hover
{
  opacity: 1;
}