.fullHeightSection .tabWrapper .scrollList {
  height: auto;
  position: relative;
  max-height: calc(100vh - 260px);
  overflow: auto;
}

.ineractionMsg.convertedToOpportunity {
  background: #ab1e3b6b;
}

.noteSmallDetail {
  display: flex;
  position: absolute;
  bottom: -15px;
  font-size: 10px;
  justify-content: space-between;
  left: 10px;
  right: 10px;
  opacity: .5;
}

.linkedAccounts{
display: grid;
flex-direction: column;
gap: 6px;
width: 213px;
margin-top: 35px;
}

.linkedAccounts>div{
display: flex;
justify-content: space-between;
}

.linkedAccounts i {
  color: #00d300;
  font-size: 16px;
}

.centeredDetails {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #ffffff0f;
  box-sizing: border-box;
  padding: 30px;
  padding-top: 20px;
  width: 450px;
  margin: auto;
  margin-top: 50px;
  border-radius: 20px;
}


.loader {
width: 48px;
height: 48px;
display: inline-block;
position: relative;
}
.loader::after,
.loader::before {
content: '';  
box-sizing: border-box;
width: 48px;
height: 48px;
border-radius: 50%;
border: 2px solid #FFF;
position: absolute;
left: 0;
top: 0;
animation: animloader 2s linear infinite;
}
.loader::after {
animation-delay: 1s;
}

@keyframes animloader {
0% {
  transform: scale(0);
  opacity: 1;
}
100% {
  transform: scale(1);
  opacity: 0;
}
}