.responsive-svg-container {
    width: 100%;
    max-width: 1200px;
} 

.tick text { 
    font-size: 20px !important;
}

/* Tooltip */
.wrapper .tooltip {
    position: absolute;
    /* display: inline-block; */
    color: black;
    border: 1px solid #00000011;
    border-radius: 4px;
    padding:  5px;
    background-color: white;
    font-family: 'Inconsolata';
}

.tooltip h4, .tooltip p {
    margin: 0px auto;
    text-align: center;
}

.tooltip h4 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;

}

.tooltip p{
    font-size: 13px;
}

/* Snackbar */
#snackbar {
    visibility: hidden;
    min-width: 200px;
    background-color: #fff;
    border: 1px solid #00000011;
    color: #333;
    text-align: center;
    border-radius: 4px;
    padding:  5px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-family: 'Inconsolata' ;
    line-height: 1;
  }
  
  #snackbar.show {
    visibility: visible;
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
  
  #snackbar h4, #snackbar span {
    margin: 0px auto;
    text-align: center;
  }
  
  #snackbar h4 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  #snackbar span{
    font-size: 13px;
  }
  
  #snackbar p {
    margin-bottom: 0;
  }