
/*** css for data notification div ***/
#dataNoteToast { display: none; }

#dataNoteToast{
  display: flex;
  align-items: center !important;
  width: 96%;
  box-sizing: border-box;
  padding: 14px;
  margin: 0px auto;
  margin-top: 15px;
  background: #f5f5f5;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  color: #2f2f2f;
}

#dataNoteToast .DataNotelLeftContent{
  display: flex;
  align-items: center !important;
  gap: 10px;
  flex: 1 1 auto !important;
  min-width: 0;
}


#dataNoteToast .data-note-icon{
  font-size: 16px;
  color: #7a7a7a;
  flex: 0 0 auto;
}

#dataNoteToast .DataNotelLeftContent span{
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}

#dataNoteToast .DataNoteRightContent{
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;   
  width: auto !important;      
  min-width: unset !important;
  margin-left: auto !important; 
}

#dataNoteToast .closeSpan{
  display: inline-flex;
  align-items: center !important;
  justify-content: center !important;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  color: #7a7a7a;
}

#dataNoteToast .closeSpan i{
  font-size: 16px;
  line-height: 1;
}

#dataNoteToast .closeSpan:hover{
  background: rgba(0,0,0,0.08);
  color: #555;
}

#data-note-container{
    width: 96%;
    margin: 0px auto;
}
/*** css for data notification div ***/