.flex-view {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.flex-col-1 {
    flex-basis: calc(100% * (1/12));
    margin-left: 2px;
}

@media only screen and (max-width: 1440px) {
    .flex-col-1 {
        flex-basis: calc(100% * (3/24));
        margin-left: 2px;
    }
}

@media only screen and (max-width: 1024px) {
    .flex-col-1 {
        flex-basis: calc(100% * (5/24));
        margin-left: 2px;
    }
}



.flex-col-3 {
    flex-basis: calc(100% * (3/12));
    margin-left: 2px;
}

.flex-col-4 {
    flex-basis: calc(100% * (4/12));
    margin-left: 2px;
}

.flex-col-5 {
    flex-basis: calc(100% * (5/12));
    margin-left: 2px;
}


.flex-col-11 {
    flex-basis: calc(100% * (11/12));
    margin-left: 2px;
}

.top-content {
    height: 100%;
    background-color: white;
}

.main-content {
    flex: 1 1 auto;
    display: flex;
    overflow: hidden;
    z-index: 3;
    background-color: white;
    padding: 4px 0 2px 0;
}

.main-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.subnav {
    flex-basis: 6%;
}

.chat-header {
    justify-content: space-between;
}





