.LeadDetails {
    display: flex;
}

.LeadDetails .leadInteractions {
    width: calc(100% - 500px);
    padding: 0px 15px;
    border-right: 1px solid #ffffff36;
}

.LeadDetails .leftColumn {
    width: 250px;
    border-right: 1px solid #ffffff36;
    /* margin-right: 15px; */
    padding-right: 15px;
    height: calc(100vh - 66px);
    overflow: auto;
}

.LeadDetails .leadActions {
    padding: 0px 15px;
    width: 250px;
}

.leadInteractions h3,.leadInteractions .btn {
    margin: 0px;
}

.leadInteractions .flex.between {
    align-items: center;
}

.leadInteractionCard {
    background: #ffffff26;
    padding: 15px;
    font-size: 14px;
    border-radius: 5px;
    margin-top: 15px;
    position: relative;
}

.leadInteractionCard h5 {
    margin: 0px;
}

div#LeadInteractionList {
    height: calc(100vh - 120px);
    overflow: auto;
    margin-top: 10px;
}

.editBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    background: #5b5b5b;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    cursor: pointer;
}

.leadInteractionCard:hover .editBtn {
    opacity: 1;
    pointer-events: all;
}

.taskItem .flex {
    font-size: 11px;
    margin-bottom: 5px;
}

.taskItem {
    border: 1px solid #ffffff2e;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}