.display-none{
    display: none;
}

.role-badge{
    display: inline-block;
    padding: 5px;
    margin-bottom: 5px;
    font-weight: 600;
    font-family: 'IBM Plex Sans';
    border-radius: 5px;
}

.float-right{
    float: right;
}

.cursor{
    cursor: pointer;
}

#notification-data-view{
    overflow: auto;
}

.image-logo {
    image-rendering: -webkit-optimize-contrast;
}

img { 
    image-rendering: -webkit-optimize-contrast; 
}

p {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  .table > :not(caption) > * > * {
    padding: .4rem .75rem;
  }

   /* notes section  */
   
  .internal-note-section:last-child{
    border-bottom: none !important;
  }
  .internal-notes .card{
    border-top: none !important;
    border-color: #ced4da !important;
    border-radius: 0 !important;
    background-color:  #EEEEF9 !important;
  }
  .internal-note-section h6{
    font-size: 13px;
  }
  .shared-notes .card{
    border-top: none !important;
    border-color: #ced4da !important;
    border-radius: 0 !important;
    background-color:  #EEEEF9 !important;
  }
  .shared-notes .card .card-header{
    background-color: #673ab7;
  }
  .shared-notes h6{
    color: #fff;
  } 
  .nav-tabs .nav-link.active{
    background-color: #EEEEF9;
    border-bottom: 1px solid #eeeef9;
  }
  .border-bottom {
    border-bottom: 1px solid #d2d2d2 !important;
  }

  .shared-notes .chat-conversation .right .conversation-list .ctext-wrap .ctext-wrap-content { 
    background-color: #fff;
  }
  .shared-notes .chat-conversation .right .conversation-list .ctext-wrap .ctext-wrap-content:before{
    border-top-color : #fff;
    border-left-color : #fff;
  }


  /* cusotm ::-webkit-search-results-decoration */
  .form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem;
    width: 100%;
  }

  .radiotextsty {
    color: #000;
    font-size: 15px;
  }
  
  .customradio {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .customradio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 50%;
    border:1px solid #00BCD4;
  }
  
  /* On mouse-over, add a grey background color */
  .customradio:hover input ~ .checkmark {
    background-color: transparent;
  }
  
  /* When the radio button is checked, add a blue background */
  .customradio input:checked ~ .checkmark {
    background-color: white;
    border:1px solid #BEBEBE;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .customradio input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .customradio .checkmark:after {
    top: 2px;
    left: 3px;
    width: 13px;
    height: 14px;
    border-radius: 50%;
    background: #00BCD4;
  }