.mm-chatgraph{
    color: hsl(184, 30%, 70%);
    background: hsl(230deg 29% 19% / 0%);
}
.viz svg{
    height: 26vw;
}
.viz{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.viz svg .label.label-percentage text{
    font-weight: 100 !important;
}
.viz svg .legend{
    display: none;
}
.viz svg .tick line{
    display: none;
}
.viz svg .axis.axis-percentage g:nth-child(1) path {
    stroke-dasharray: 0 !important;
  }
.viz svg .axis.axis-percentage g:nth-child(2) {
    display: none;
  }
  .viz svg .axis.axis-percentage g:nth-child(3) {
    display: none;
  }
  .viz svg .axis.axis-percentage g:nth-child(4) {
    display: none;
  }
  .viz svg .axis.axis-percentage g:nth-child(5) {
    display: none;
  }
  .viz svg .axis.axis-percentage g:nth-child(6) text {
    display: none;
  }
  .viz svg .axis.axis-percentage g:nth-child(7) {
    display: none;
  }
  .viz svg .axis.axis-percentage g:nth-child(8) {
    display: none;
  }
  .viz svg .axis.axis-percentage g:nth-child(9) {
    display: none;
  }
  .viz svg .axis.axis-percentage g:nth-child(10) {
    display: none;
  }
  .viz svg .axis.axis-percentage g:nth-child(11) path {
    stroke-dasharray: 0 !important;
  }
  .viz svg .axis.axis-count g:nth-child(1) path {
    stroke-dasharray: 0 !important;
  }
  .viz svg .axis.axis-count g:nth-child(1) text {
    display: none;
  }
  .viz svg .axis.axis-count g:nth-child(2) {
    display: none;
  }
  .viz svg .axis.axis-count g:nth-child(3) {
    display: none;
  }
  .viz svg .axis.axis-count g:nth-child(4) {
    display: none;
  }
  .viz svg .axis.axis-count g:nth-child(5) {
    display: none;
  }
  .viz svg .axis.axis-count g:nth-child(6) text {
    display: none;
  }
  .viz svg .axis.axis-count g:nth-child(7) {
    display: none;
  }
  .viz svg .axis.axis-count g:nth-child(8) {
    display: none;
  }
  .viz svg .axis.axis-count g:nth-child(9) {
    display: none;
  }
  .viz svg .axis.axis-count g:nth-child(10) {
    display: none;
  }
  .viz svg .axis.axis-count g:nth-child(11) path {
    stroke-dasharray: 0 !important;
  }
.viz svg .label.label-count text{
    font-weight: 100 !important;
}
svg text {
  fill: currentColor;
  text-shadow: 0 0 1px hsla(0, 0%, 0%, 0.25);
  letter-spacing: 0.01rem;
}
@keyframes dashOffset {
  to {
    stroke-dashoffset: -11;
  }
}

.mm-chatbanner{
    padding: 0vw 13.3vw 0vw 13.3vw;
    font-family: Montserrat;
}
.mm-chatContent{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 8vw 0;
    gap: 4vw;
}
.mm-chatbanner-content h2{
    color: #201E1F;
    font-weight: 400;
    font-size: 2.89vw;
    line-height: 1.22;
}
.mm-chatbanner-content h2 span{
    color: #EF0D33;
    font-weight: 600;
}
.mm-chatbanner-content p{
    padding-top: 1vw;
    color: #626262;
    font-size: .792vw;
    padding-right: 5vw;
    line-height: 1.4;
}
.mm-chatbanner-content p a{
    color: #EF0D33;
    font-weight: 500;
    text-decoration: underline;
}
.mm-chatHighlightText{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw;
    margin-top: 2vw;
}
.data-point{
  cursor: pointer;
}
.mm-chatHighlightText span:hover{
    background: #edd4e4;
}
.mm-chatHighlightText span{
    font-size: .88vw;
    font-weight: 500;
    color: #D1439C;
    background: #F9E8F3;
    padding: .8vw 1.5vw;
    border-radius: 4px;
    text-align: center;
    
}

@media only screen and (max-width: 500px){
  .mm-chatgraph{
    overflow-x: scroll;
  }
  .mm-chatgraph::-webkit-scrollbar{
    width: 0px;
  }
  .mm-chatgraph::-webkit-scrollbar-thumb{
    background: #ff000000;
  }
  .viz{
    width: 140vw;
  }
    .viz svg{
        height: unset;
    }
    .mm-chatbanner{
        padding: 20.2vw 6.3vw 20.3vw 6.3vw;
    }
    .mm-chatContent{
        grid-template-columns: auto;
    }
    .mm-chatbanner-content h2{
        font-size: 6.67vw;
    }
    .mm-chatbanner-content p{
        font-size: 3.49vw;
        padding-top: 5.5vw;
    }
    .mm-chatHighlightText span{
        font-size: 3.49vw;
        padding: 2.8vw 1.5vw;
    }
    .mm-chatHighlightText{
        margin-top: 6vw;
        gap: 3vw 2vw;
    }
}