.form-control-primary {
    margin: 10px;
    opacity: 0.2;
    border-radius: 2px;
  }

  .sidebar {
    left: 0;
    bottom: 0;
    top: 0;
    z-index: 100;
    border-right: 1px solid #d1d1d1;
    width: 255px !important;
    height: 100vh;
  }

  .left-sidebar {
    position: sticky;
    top:0;
    height: calc(100vh - 105px)
  }

  .sidebar-nav li .nav-link {
    color: #333;
    font-weight: 500;
  }

  .main {
    float: right;
    width: calc(100% - 255px);
    padding: 0;
  }
  main .card {
    margin: 20px 0;
  }
.navbar-brand{
  margin:10px;
}
.dashboar-title{
  padding: 0;
  margin: 0 0 0 8px;
  line-height: 2;
  font-size: 16px;
  font-weight: 600;
}
.display-block{
  display: block !important;
}
.hamburger-menu-icon{
    margin: 0 10px 0 0;
    border: 2px solid #909090;
    padding: 8px 10px;
    cursor: pointer;
    color: #909090;
}
.width100{
  width: 100%;
}
.hide-im{
  display: none!important;
}
.dbg-light{
  background-color: #ededed;
}
.nav-link{
  cursor: pointer;
}
.menu-logo{
    /*margin: 10px 0;*/
    margin: 10px 0 -5px;
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    border-radius: 50% !important;
}
.dashboard-logo-div{
  text-align: center;
}

.temp-overlay {
  height: 100%;
  width: 100%;
  display: block;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #c1c1c1;
  background-color: #c1c1c1;
}

.temp-overlay-content {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  height: 100%;
}

.temp-overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.temp-overlay a:hover, .temp-overlay a:focus {
  color: #f1f1f1;
}

.temp-overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .temp-overlay a {font-size: 20px}
  .temp-overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}
body, html {
  height: 100%;
  margin: 0;
}

.bgimg {
  background-color: #c1c1c1;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  color: white;
  font-family: "Courier New", Courier, monospace;
  font-size: 25px;
}

.topleft {
  position: absolute;
  top: 0;
  left: 16px;
}

.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
}

.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

hr {
  margin: auto;
  width: 40%;
}
.Dashboard_main_div{
  height: calc(100vh - 170px);
  overflow-y: auto;
}
.pointer{
  cursor: pointer;
}
.popup_view_width{
  max-width: 80%;
}

.chat-body {
    padding: 30px 5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 480px;
    overflow: auto;

    .message-content {
      max-width: 90%;
      width: 100%;
      margin-bottom: 15px;
      &.sender {
          text-align: right;
          align-self: flex-end;
        .msg-block {
          background-color: #707070;
          text-align: left;
        }
      }
      &.receiver {
        label {
          text-align: left;
        }
        .msg-block {
          background-color: #707070 ;
          text-align: left;
        }
      }
      label {
        font-size: 14px;
        font-family: 'Fira Sans', sans-serif;
        font-weight: 400;
        letter-spacing: 0;
        color: #B5B5B5;
        margin-bottom: 5px;
      }
      .msg-block {
        padding: 15px 8px;
        border-radius: 5px;
        p{
          color: #fff;
          font-size: 15px;
          font-family: 'Fira Sans', sans-serif;
          font-weight: 400;
        }
      }
    }
  }
  .chat-footer {
      padding: 10px 0;
      border-bottom: 2px solid rgba(0, 0, 0, 0.1);
      input {
        border: none;
      }
      .btn {
        background: #FF9797;
        color: #fff;
        border-radius: 5px;
        i {
          font-size: 30px;
        }
      }
    }
