.drop-down__appr-line-block {
    position: absolute;
}

.preview_approval_line {
    position: absolute;
    display: flex;
    box-shadow: 3px 3px 10px 0px rgba(31, 31, 31, 0.15);
    border-radius: 12px;
    opacity: 1;
    background: var(--color-bg-default);
    box-sizing: border-box;
    border: 1px solid var(--color-divider);
}

.drop-down__appr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Pretendard, sans-serif;
    width: 100px;
}

.drop-down__cl-name {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--color-bg-subtle);
    border-radius: 4px;
    text-align: center;
    font-size: 0.813rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.2px;
    color: var(--color-text-bold);
    width: 80px;
    margin-bottom: 16px;
    height: 40px;
    padding: 4px 8px;

    &.current {
        background-color: var(--color-bg-primary);
        color: var(--color-text-inverse);
    }

    .drop-down__arrow {
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 18px;
        height: 14px;
        background-color: inherit;
        mask: url("../../img/svg/ic_polygon_down.svg") no-repeat;
    }

    span {
        white-space: nowrap;
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
    }

}

.drop-down__profile-img-block {
    width: 34px;
    height: 34px;
    position: relative;
    margin-bottom: 8px;
}

.drop-down__profile-img {
    width: 100%;
    height: 100%;
    border-radius: 13px;
    overflow: hidden;

    &.current {
        outline: 2px solid var(--color-border-primary);
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }
}

.drop-down__check-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    outline: 1px solid var(--color-border-inverse);
    border-radius: 100%;
    top: -6px;
    right: -9px;
    z-index: 1;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-image: url("../../img/svg/ic_check_fill.svg");
    mask-size: 16px 16px;
    background-color: var(--color-icon-primary);

    //img {
    //    width: 100%;
    //    height: 100%;
    //    object-fit: cover;
    //}
}

//.drop-down__check-icon::before {
//    mask-position: center;
//    mask-repeat: no-repeat;
//    mask-image: url("../../img/svg/ic_check_fill.svg");
//    mask-size: 16px 16px;
//    background-color: var(--color-icon-primary);
//}

.drop-down__arrow-icon {
    mask-position: center;
    mask-repeat: no-repeat;
    background-color: var(--color-icon-primary);
    width: 24px;
    height: 24px;
    align-self: center;

    &.ellipsis_icon {
        mask-image: url("../../img/svg/ic_meatballs.svg");
        mask-size: 12px 3px;
    }

    &.parallel {
        mask-image: url("../../img/svg/parallel.svg ");
        mask-size: 2px 14px;
    }

    &.send {
        mask-image: url("../../img/svg/send.svg");
        mask-size: 10px 14px;
    }

    &.sequence {
        mask-image: url("../../img/svg/sequence.svg");
        mask-size: 13px 14px;
    }
}

.drop-down__name-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Pretendard, sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    line-height: 150%;
    text-align: center;
    letter-spacing: -0.2px;
    color: var(--color-text);
    margin-bottom: 4px;
    column-gap: 4px;
}

.drop-down__name {
    display: flex;
    align-items: flex-end;
    column-gap: 4px;
    max-width: 100px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    font-size: 0.813rem;
    line-height: 150%;
}

.drop-down__pos-name {
    font-size: 0.75rem;
}

.drop-down__opinion-icon {
    width: 24px;
    height: 24px;

    img {
        width: 12px;
        height: 12px;
        object-fit: cover;
    }
}

.drop-down__chat-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    mask-size: 12px 12px;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-image: url('../../img/svg/ic_chat.svg');
    background-color: var(--color-icon);
}

.drop-down__dept-name-block {
    display: flex;
    align-items: center;
    line-height: 16px;
    margin-bottom: 2px;
    font-size: 0.75rem;
    color: var(--color-text-subtle);

    &::before {
        content: '(';
    }

    &::after {
        content: ')';
    }
}

.drop-down__dept-name {
    color: var(--color-text-subtle);
    max-width: 80px;
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.02em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

.drop-down__appr-date-block {
    height: 16px;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 16px;
    letter-spacing: -0.02em;
    color: var(--color-text-subtle);

    span {
        & + & {
            margin-left: 6px;
        }
    }
}