#appr_header {
    display: flex;
    align-items: center;
    padding: 24px 32px 16px 32px;
    //height: 65px;
    background-color: var(--color-bg-subtler);

    h3 {
        font-family: Pretendard, sans-serif;
        font-size: 1.125rem;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: -0.02em;
        color: var(--color-text-bold);
    }
}

#appr_container {
    height: 100%;
    overflow-y: scroll;
    background-color: var(--color-bg-subtler);
}

.approval_wrapper {
    display: flex;
    flex-direction: column;
    padding: 15px 32px 32px 32px;
    height: 100%;
    min-width: 1236px;
}

.bookmark_box {
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-primary-subtler);
    padding: 20px 24px 14px 24px;
    border-radius: 16px;
    margin-bottom: 29px;
    height: 179px;
}

.sub_title {
    font-family: "Pretendard", sans-serif;
    margin-bottom: 9px;
}

.sub_title > span {
    font-size: 0.875rem;
    color: var(--color-text-primary-dark);
    line-height: 24px;
    font-weight: 500;
}

.info_icon {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    aspect-ratio: 1;
    vertical-align: sub;
    color: var(--color-icon-primary-on-subtle);
    cursor: pointer;

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

.info_icon::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-image: url('../../img/svg/info.svg');
    background-color: var(--color-icon-primary-on-subtle);
}

.info_tooltip {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: flex-start;
    background: var(--color-bg-default);
    border-radius: 8px;
    font-family: Pretendard, sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.24px;
    color: var(--color-text);
    padding: 11px 12px;
    width: max-content;
    vertical-align: middle;
    cursor: auto;
    box-shadow: 1px 1px 8px 0 rgba(31, 31, 31, 0.149);

    & > div {
        width: 14px;
        height: 14px;
        margin-right: 6px;
        color: var(--color-text-primary);
    }
}

.info_tooltip_desc {
    white-space: pre-wrap;
}

.bookmark_block {
    display: flex;
    gap: 0 18px;
    justify-content: center;
}

.bookmark_card_list {
    display: none;

    &.visible {
        display: flex;
        gap: 0 18px;
        justify-content: flex-start;
    }
}

.bookmark_modal_container {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #0000004D;
    z-index: 9999;
}

.modal_content {
    width: 524px;
    /*height: 573px;*/
    border-radius: 16px;
    padding: 29px 24px 32px 24px;
    background-color: var(--color-bg-default);
}

.modal_header {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.modal_header_title {
    font-family: 'Pretendard', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    letter-spacing: -0.32px;
    color: var(--color-text);
}

.modal_close_btn {
    position: absolute;
    top: -6px;
    right: 6px;
    width: 12px;
    height: 12px;
    border: none;
    background: none;
    cursor: pointer;
}

.modal_form_list_block {
    height: 348px;
    overflow-y: scroll;
    background-color: var(--color-bg-subtler);
}

.modal_form_list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    padding: 22px 24px 12px 24px;
    margin-bottom: 12px;
    border-radius: 20px;
}

#observe_section {
    height: 12px;
}

.modal_form_list > .form_item {
    display: flex;
    color: var(--color-text);
    font-family: Pretendard, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    width: 100%;
    height: fit-content;

    & + & {
        margin-top: 16px;
    }
}


.modal_desc_block {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.modal_desc_block > img {
    margin-right: 8px;
}

.modal_desc {
    color: var(--color-text);
    font-family: Pretendard, sans-serif;
    font-size: 0.813rem;
    font-style: normal;
    font-weight: 400;
    line-height: 157.143%;
    letter-spacing: -0.28px;
    vertical-align: text-top;
}

.modal_footer {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.modal_footer > button {
    border: none;
    font-family: Pretendard, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.32px;
    padding: 8px 26px;
    border-radius: 8px;
    cursor: pointer;
}

.modal_save_btn {
    background-color: var(--color-button-bg-primary-fill);
    color: var(--color-text-inverse);
}

.modal_cancel_btn {
    background-color: var(--color-button-bg-secondary-fill);
    border: var(--color-button-border-secondary);
    color: var(--color-text);
}


#appr_list_area {
    display: block;
    height: 100%;
}

.appr_list {
    display: flex;
    flex-direction: column;
}

#sentinel {
    height: 10px;
}