.MultipleToggle{
    background:rgb(235,235,235);
    height:80%;
    width:100%;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
  
    .mtbtn{
        box-sizing: border-box;
        height:80%;
        border-radius: 5px;
        border:none;
        margin:2px;
        background:none;
        color:#777;
        font-size:13px;
        &:hover{
            cursor:pointer;
            background:rgb(245,245,245);
        }
        &.selected{
            background:#fff;
            color:#145894;;
        }
    }
}