.taskCheckbox {
    height: 20px;
    width: 20px;
    border: 1px solid #ffffff59;
    border-radius: 25px;
    margin-right: 10px;
    cursor: pointer;
}

.taskMsg {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
    background: #ffffff25;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 2px;
    position: relative;
}

.taskMsg img {
    height: 30px;
    width: 30px;
    border-radius: 40px;
    margin-right: 10px;
}

.taskMsg .flex.between {
    width: 100%;
}

.taskMsg small {
    font-size: 10px;
    justify-content: start;
}

.ineractionMsg {
    background: #ffffff12;
    padding: 7px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
    position: relative;
    font-size: 11px;
}

.tabHeaders>div {
    margin-right: 20px;
    opacity: .6;
    cursor: pointer;
}

.tabHeaders {
    display: flex;
    margin: 7px 0px;
    margin-bottom: 10px;
}

.tabHeaders>div.selected {
    opacity: 1;
    font-weight: bold;
    border-bottom: 1px solid white;
}

.tabHeaders>div:hover {
    opacity: .8;
}

.tabWrapper>div {
    display: none;
}

.tabWrapper>div.active {
    display: block;
}

.btn.smallAddBtn.addInteractionBtn {
    position: absolute;
    right: 3px;
    top: 3px;
}

.taskMsg i {
    font-size: 20px;
    margin-right: 15px;
}

.taskMsg:hover {
    background: #ffffff20;
}

.taskMsg>div:last-of-type {
    width: 91%;
}

.taskCheckbox i {
    font-size: 12px;
    margin: 0px;
    display: none;
}

.taskCheckbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.taskCheckbox.complete {
    background: #00800069;
}

.taskCheckbox.complete i {
    display: block;
}

.dateLineBreak {
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 45px;
    opacity: .5;
}

.dateLineBreak:first-of-type {
    margin-top: 8px;
}

.tabWrapper {
    max-height: calc(100% - 27px);
    position: relative;
    overflow: auto;
}

.contactsList, .opportunitiesList,.filesList {
    overflow: auto;
    max-height: calc(100% - 21px);
}