.ConversationShell {
  background: #e5e5e5;
  border-right: 1px solid #d9d9d9;
  overflow: hidden;
  display:flex;
  flex-direction: column;

  &__loading{
    display: flex !important;
    justify-content: center !important;
    margin-top: 25% !important;
  }
  &__bar {
    background: white;
    height: 54px;
    display: flex;
    align-items: center;
    padding: 12px 23px;

    &__selectcontact {
      font-family: Inter;
      font-style: normal;
      font-weight: 600;
      font-size: 20px;
      line-height: 28px;
    }

    &__imgcontainer {
      width: 40px;
      height: 40px;
      position: relative;

      img {
        height: 100%;
        width: 100%;
        border-radius: 50%;
      }

      &__status_circle {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #00e676;
        border: 3px solid white;
        bottom: 0;
        right: 0;
        position: absolute;
      }
    }

    &__name {
      font-family: Inter;
      font-style: normal;
      font-weight: 600;
      font-size: 20px;
      line-height: 28px;
      color: #000000;
      padding-left: 16px;
      margin: 0;
    }

    &__panels {
      padding-left: 32px;
      :global .ant-tabs-nav {
        margin: 0 !important;
      }
      :global .ant-tabs-tab {
        padding: 0px 0px 20px 0px !important;
      }
      :global .ant-tabs-tab-btn {
        font-family: Inter;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 24px;
        color: #000000;
      }
    }
  }

  &__mobilebar{
    display: none;
    background: #096DD9;
    height: 9%;
    align-items: center;
    padding: 12px 23px;

    &__imgcontainer {
      width: 34px;
      height: 34px;
      position: relative;

      img {
        height: 100%;
        width: 100%;
        border-radius: 50%;
      }

      &__status_circle {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #00e676;
        border: 3px solid white;
        bottom: 0;
        right: 0;
        position: absolute;
      }
    }

    &__name {
      padding-left: 12px;
      font-family: Inter;
      font-style: normal;
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
      color: #FFFFFF;
      margin: 0;
      margin-right: auto;
    }

    &__icon{
      color: white !important;
      font-size: 17.25px;
      padding-right: 15px;
    }
  }
}

@media (max-width: 768px) {
  .ConversationShell {
    &__bar {
      display: none;
    }

    &__mobilebar{
      display: flex;
    }
  }
}
