.privatemsgnew {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.privatemsgnew .newMsgTitle {
    font-family: "Metropolis Bold";
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.18px;
    text-align: left;
    color: #333333;
    display: flex;
    flex-wrap: wrap;
}

.privatemsgnew .newMsgIcon {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/plus_icon_white_v1.png);
    width: 40px;
    height: 40px;
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-color: #0d4962;
    border-radius: 50%;
}

.privatemsgnew .newMsgIcon .hLine {
    width: 100%;
    margin: 4px auto;
}

.privatemsgnew .newMsgIcon .selectPMType {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 215px;
    left: 35px;
    bottom: 110px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    background-color: white;
    height: 95px;
    padding: 10px 0;
    justify-content: space-around;
    transform: scale(1);
    transition: transform 45ms linear 0ms;
    /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px,
        rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.privatemsgnew .newMsgIcon.mobile .selectPMType {
    top: -110px;
    left: -190px;
}

.privatemsgnew .newMsgIcon .selectPMType.hide {
    transform: scale(0);
    transition: transform 45ms linear 0ms;
}

.privatemsgnew .newMsgIcon .selectPMType .pmTypeTitle {
    font-family: "Metropolis Regular";
    font-size: 16px;
    letter-spacing: 0.16px;
    text-align: center;
    color: #333333;
    padding: 5px 10px;
    margin: 0 10px;
    border-radius: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.privatemsgnew .newMsgIcon .selectPMType .pmTypeTitle:hover {
    background-color: #f0f0f0;
}

/* DARK MODE */
.dark .privatemsgnew .newMsgTitle,
.dark .privatemsgnew .newMsgIcon .selectPMType .pmTypeTitle {
    color: rgba(255, 255, 255, 0.87);
}
.dark .privatemsgnew .newMsgIcon {
    background-image: url(https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/plus_circle_icon_blue_DM_Accessibility_m_v1.png);
    background-size: 40px;
}
.dark .privatemsgnew .newMsgIcon .selectPMType,
.dark .privatemsgnew .newMsgIcon .selectPMType .pmTypeTitle:hover {
    background-color: #0d4962;
    border: 1px solid #0d4962;
}