@charset "UTF-8";
/* CSS Document Hello Mum */

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  font-weight: bold; }
  .logo img {
    height: 44px; }


  .logo__mark {
    display: inline-flex;
    align-items: center;
    margin-right: 5px; 
color:rgb(216,66,39);

}
    .logo__mark .greater-icon {
      width: 0.95rem;
      height: 100%;
}
      .logo__mark .greater-icon path {
        stroke: currentColor;
        stroke-width: 8px;
}
  .logo__text {
    color:rgb(216,66,39);
	  font-size: 30px;
}
  .logo__cursor {
    display: inline-block;
    width: 10px;
    height: 2rem;
    background: rgb(216,66,39);
    margin-left: 5px;
    border-radius: 1px;
    animation: cursor 1s infinite; }

@keyframes cursor {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 0px;

  background-color: black;
  color: #fff;
	
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
	font-size: 11px;
}

.dot {

 /* height: 5px;
  width: 5px;
  background: rgb(216,66,39);
  border-radius: 1%;
	position: absolute;
    bottom: 0px;
	display:inline-block;
    width:250px;
	*/
	bottom: 0px;
	height: 5px;
  width:250px;
	background: rgb(216,66,39);
	position: absolute;
    white-space: nowrap;
    overflow:hidden !important;
	
   /* 
	overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
	
	*/
	
}

ul.leaders {
    max-width: 80em;
    padding: 0;
    overflow-x: hidden;
	color: rgb(216,66,39);
    list-style: none}
ul.leaders li:before {
  
	float: left;
    width: 0;
    white-space: nowrap;
	
    content:
 ". . . . . . . . . . . . . . . . . . . . "
 ". . . . . . . . . . . . . . . . . . . . "
 ". . . . . . . . . . . . . . . . . . . . "
 ". . . . . . . . . . . . . . . . . . . . "}
 ul.leaders span:first-child {

	padding-right: 0.33em;
    background: black}

ul.leaders span + span {
    float: right;
    padding-left: 0.33em;
    background: black}

