.feedmenu {
    display: none;
}

.privatemsg.me .feedmenu {
    width: 20px;
    height: 20px;
}

.comment.meComment.hover .feedmenu,
.post.mePost.hover .feedmenu,
.privatemsg.me.hover .feedmenu {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1.3px;
    color: #333;
    cursor: pointer;
}

.feedmenu .hLine {
    width: 85%;
    height: 0.3px;
    margin: 10px auto;
    opacity: 0.35;
    background-color: #707070;
}

.feedmenu .selectEditDelete {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 110px;
    left: 60%;
    bottom: -12px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    background-color: white;
    height: 86px;
    padding: 10px 0;
    justify-content: space-around;
    transform: scale(1);
    transition: transform 45ms linear 0ms;
    z-index: 1;
}

.privatemsg .feedmenu .selectEditDelete {
    position: relative;
    left: -340px;
    top: 20px;
    width: 336px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privatemsg .feedmenu .hLine {
    min-height: 1px;
    width: 100%;
    opacity: 1;
    background-color: #fff;
}

.feedmenu .selectEditDelete.hide {
    transform: scale(0);
    transition: transform 45ms linear 0ms;
}

.feedmenu .selectEditDelete .typeTitle {
    font-family: "Metropolis Light";
    font-size: 18px;
    font-weight: 300;
    line-height: 1.21;
    letter-spacing: 2.16px;
    text-align: left;
    color: #333333;
    border-radius: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    text-align: center;
}

/* DARK MODE */
.dark .post.mePost.hover .feedmenu,
.dark .feedmenu .selectEditDelete .typeTitle {
    color: rgb(255, 255, 255, 0.87);
}

.dark .feedmenu .selectEditDelete {
    border: 1px solid #0d4962;
    background-color: #031821;
}

.dark .privatemsg .feedmenu .hLine {
    background-color: #707070;
}