@charset "UTF-8";

@font-face {
    font-family: "Paperlogy";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2")
    format("woff2");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Paperlogy";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2")
    format("woff2");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Paperlogy";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2")
    format("woff2");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Paperlogy";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2")
    format("woff2");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Paperlogy";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2")
    format("woff2");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Paperlogy";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2")
    format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Paperlogy";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2")
    format("woff2");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Paperlogy";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2")
    format("woff2");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Paperlogy";
    src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-1Thin.woff2")
    format("woff2");
    font-weight: 100;
    font-style: normal;
}

.button,
::file-selector-button {
    inline-size: fit-content;
    touch-action: manipulation;
    user-select: none;
}
p,
li,
dt,
dd,
blockquote,
.no-orphan {
    text-wrap: pretty;
}
img {
    max-width: 100%;
    object-fit: cover;
}
a:not([class]) {
    text-decoration-thickness: max(0.08em, 1px);
    text-underline-offset: 0.15em;
}
:focus-visible {
    --outline-size: max(2px, 0.15em);
    outline: var(--outline-size) solid #4a4c4e;
    outline-offset: var(--outline-size);
}
:target {
    scroll-padding-block-start: 2rem;
}
:focus {
    scroll-padding-block-end: 8vh;
}
:root {
    --VolvoBlue: #001a72;

    --iconGray: #8e96a7;
    --textGray: #5c667e;

    --black: #222;
    --white: #fff;
    --lightGray: #767676;

    --blue: #2390e9;
    --blueBG: #e8f4ff;
    --red: #ea4c4c;
    --redBG: #fceaea;
    --green: #5aab4a;
}
html,
body {
    font-family: Paperlogy, Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo",
    "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", sans-serif;
    font-size: 16px;
    color: #222;
    scroll-behavior: smooth;
}
@media (max-width: 1024px) {
    html,
    body {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    html,
    body {
        font-size: 14px;
    }
}

body {
    background: linear-gradient(288deg, #cfd6ec 0%, #e3e3e3 100%);
    background-size: 300% 300%;
    animation: GradientAnimation 6s ease infinite;
    overflow: hidden;
}
.container {
    display: grid;
    /*grid-template-columns: calc(100% - 36rem) minmax(auto, 35rem);*/
    /*grid-template-columns: calc(100% - 44rem) minmax(auto, 43rem);*/
    grid-template-columns: calc(100% - 47rem) minmax(auto, 46rem);
    gap: 1rem;
    height: 100dvh;
    padding: 1.5rem;
}
@keyframes GradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
@media (max-width: 1439px) {
    body {
        overflow: auto;
    }
    .container {
        grid-template-columns: 100%;
        height: auto;
    }
}

.stop-scroll {
    height: 100%;
    overflow: hidden;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    cursor: pointer;
    background-repeat: no-repeat;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    line-height: normal;
    transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.button::before {
    background-repeat: no-repeat;
    background-position: center;
}
.button:hover {
    box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.08);
    transform: translateY(-2px);
}
.button.align::before {
    content: "";
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url("../images/ic_align_default.svg");
    background-size: 1.125rem;
}
.button.schedule::before {
    content: "";
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url("../images/ic_schedule.svg");
    background-size: 1.125rem;
}
.button.reserve::before {
    content: "";
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url("../images/ic_reserve.svg");
    background-size: 1.125rem;
}
.button.weather::before {
    content: "";
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url("../images/ic_weather.svg");
    background-size: 1.125rem;
}
.button.refresh {
    text-indent: -9999px;
    aspect-ratio: 1;
    background-image: url("../images/ic_refresh.svg");
    background-position: center;
}
.button.refresh:hover {
    transform: rotate(180deg);
}
.button.task {
    gap: 0.25rem;
    background-color: var(--black);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
}
.button.task::before {
    content: "";
    display: block;
    width: 0.4375rem;
    height: 0.4375rem;
    background-image: url("../images/ic_plus_w.svg");
}
.button.save {
    background-color: var(--black);
    color: var(--white);
    padding: 0.375rem 0.875rem 0.375rem 0.75rem;
    gap: 0.25rem;
}
.button.save::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background-image: url("../images/ic_save_w.svg");
    background-size: 1rem;
}
.button.delete {
    background-color: var(--red);
    color: var(--white);
    padding: 0.375rem 0.875rem 0.375rem 0.75rem;
    gap: 0.25rem;
}
.button.delete::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background-image: url("../images/ic_delete_w.svg");
    background-size: 1rem;
}
.button.excel {
    border: 1px solid #d7d7d7;
    background-color: #eee;
    padding: 0.375rem 0.875rem 0.375rem 0.75rem;
    gap: 0.4rem;
}
.button.excel::before {
    content: "";
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background-image: url("../images/file_ic_excel.svg");
    background-size: 1.2rem;
}
.button.excel:hover {
    border-color: #aaa;
    background-color: #fff;
}

.button.excel-icon {
    text-indent: -9999px;
    display: block;
    width: 1.025rem;
    height: 1.025rem;
    background-image: url("../images/file_ic_excel.svg");
    background-position: center;
    background-size: contain;
    margin-right: 0.75rem;
}

.button.setting-icon {
    text-indent: -9999px;
    display: block;
    width: 1.025rem;
    height: 1.025rem;
    background-image: url("../images/ic_setting.svg");
    background-position: center;
    background-size: contain;
    margin-right: 0.75rem;
}

.button.close {
    text-indent: -9999px;
    width: 1.5rem;
    background-image: url("../images/ic_close.svg");
    background-position: center;
    background-size: contain;
}
.button.edit {
    text-indent: -9999px;
    width: 1.5rem;
    background-image: url("../images/ic_edit.svg");
    background-position: center;
    background-size: contain;
}
.button.attachment {
    text-indent: -9999px;
    width: 1.5rem;
    aspect-ratio: 1;
    background-image: url("../images/ic_attachment.svg");
    background-position: center;
    background-size: contain;
}
.button.upload {
    text-indent: -9999px;
    width: 1.5rem;
    aspect-ratio: 1;
    background-color: var(--iconGray);
    background-image: url("../images/ic_upload_w.svg");
    background-position: center;
}

input:not([type="checkbox"], [type="radio"], [type="button"]),
select,
textarea {
    border-radius: 0.25rem;
    border: 1px solid #ddd;
    height: 2.25rem;
    padding: 0 1rem;
    transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
    font-size: 0.875rem;
    /* width: 100%; */
}
input:focus,
select:focus,
textarea:focus {
    border-color: var(--black);
    outline: 0;
}
input::placeholder,
textarea::placeholder {
    color: var(--lightGray);
}
input:disabled,
input:read-only,
textarea:read-only {
    background-color: #f9f9f9;
}
.invalid,
input.invalid:not([type="checkbox"], [type="radio"]) {
    border-color: #e87472;
    background-color: #fff6f4;
}
.invalid:focus {
    border-color: #e87472;
    box-shadow: 0 0 8px 0 #ffeae5;
}
/* input[type="number"]{
    text-align: right;
    padding: 0 0.5rem;
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} */

.checkbox,
.radiobox {
    flex: 1 0 0;
}
.checkbox input[type="checkbox"],
.radiobox input[type="radio"] {
    display: none;
}
.checkbox input[type="checkbox"] + label,
.radiobox input[type="radio"] + label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    height: 2.25rem;
    padding: 0 0.75rem;
    min-width: 4rem;
    border-radius: 0.25rem;
    border: 1px solid #ddd;
    cursor: pointer;
    white-space: nowrap;
    color: var(--lightGray);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: normal;
}
.checkbox input[type="checkbox"]:checked + label,
.radiobox input[type="radio"]:checked + label {
    border: 2px solid #222;
    background-color: var(--white);
    color: var(--black);
    font-weight: 800;
}

input[type="date"],
input.js_datepicker,
input.js_datetimepicker {
    position: relative;
    background: url("../images/ic_calendar.svg") no-repeat right 0.7rem center /
    1.2rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--lightGray);
    min-width: 9rem;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: transparent;
    cursor: pointer;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' viewBox='0 0 8 7' fill='none'%3E%3Cpath d='M4 6.94113L7.4641 0.941132H0.535898L4 6.94113Z' fill='%238E96A7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    padding-right: 2rem;
    line-height: 2.07rem;
    font-weight: 500;
}
select:disabled {
    background: #f9f9f9;
}

textarea {
    padding: 0.65rem 1rem;
    width: 100%;
    font-size: 0.875rem;
    min-height: 5rem;
}

.input-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.input-form dl {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.input-form dt {
    flex: 0 0 auto;
    width: 12.5rem;
    min-height: 2.25rem;
    display: flex;
    align-items: center;
    color: var(--textGray);
    font-size: 0.8125rem;
    font-weight: 500;
}
.input-form dd {
    flex: 1;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.875rem;
    min-height: 2.25rem;
}

.attach-file {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fill, minmax(10.375rem, auto));
    width: 100%;
}
.attach-file .attach-file-block {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0.75rem 0.75rem 3.5rem;
    border-radius: 0.25rem;
    border: 1px solid #ddd;
    position: relative;
}

.attach-file .attach-file-block::before {
    content: "";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: var(--fileImg, url("../images/file_ic_default.svg"));
}

.attach-file .attach-file-block[data-ext="pdf"] {
    --fileImg: url("../images/file_ic_pdf.svg");
}
.attach-file .attach-file-block[data-ext="xlsx"],
.attach-file .attach-file-block[data-ext="xls"],
.attach-file .attach-file-block[data-ext="xlsm"],
.attach-file .attach-file-block[data-ext="xla"],
.attach-file .attach-file-block[data-ext="xlam"],
.attach-file .attach-file-block[data-ext="xml"],
.attach-file .attach-file-block[data-ext="csv"] {
    --fileImg: url("../images/file_ic_excel.svg");
}
.attach-file .attach-file-block[data-ext="doc"],
.attach-file .attach-file-block[data-ext="docx"] {
    --fileImg: url("../images/file_ic_word.svg");
}
.attach-file .attach-file-block[data-ext="pptx"],
.attach-file .attach-file-block[data-ext="ppt"],
.attach-file .attach-file-block[data-ext="pptm"],
.attach-file .attach-file-block[data-ext="potx"] {
    --fileImg: url("../images/file_ic_ppt.svg");
}
.attach-file .attach-file-block[data-ext="txt"] {
    --fileImg: url("../images/file_ic_notepad.svg");
}
.attach-file .attach-file-block[data-ext="jpg"],
.attach-file .attach-file-block[data-ext="jepg"],
.attach-file .attach-file-block[data-ext="png"],
.attach-file .attach-file-block[data-ext="gif"],
.attach-file .attach-file-block[data-ext="tiff"],
.attach-file .attach-file-block[data-ext="bmp"],
.attach-file .attach-file-block[data-ext="svg"],
.attach-file .attach-file-block[data-ext="webp"] {
    --fileImg: url("../images/file_ic_img.svg");
}
.attach-file .attach-file-block[data-ext="zip"],
.attach-file .attach-file-block[data-ext="apk"],
.attach-file .attach-file-block[data-ext="rar"],
.attach-file .attach-file-block[data-ext="7z"],
.attach-file .attach-file-block[data-ext="tar"],
.attach-file .attach-file-block[data-ext="egg"],
.attach-file .attach-file-block[data-ext="alz"] {
    --fileImg: url("../images/file_ic_zip.svg");
}
.attach-file .attach-file-block[data-ext="mp4"],
.attach-file .attach-file-block[data-ext="mov"],
.attach-file .attach-file-block[data-ext="wmv"],
.attach-file .attach-file-block[data-ext="avi"],
.attach-file .attach-file-block[data-ext="avchd"],
.attach-file .attach-file-block[data-ext="swf"],
.attach-file .attach-file-block[data-ext="mkv"] {
    --fileImg: url("../images/file_ic_video.svg");
}

.attach-file a {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    padding-left: 3.5rem;
    border-radius: 0.25rem;
    border: 1px solid #ddd;
    position: relative;
}

.attach-file a::before {
    content: "";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: var(--fileImg, url("../images/file_ic_default.svg"));
}

.attach-file a[href$=".pdf"] {
    --fileImg: url("../images/file_ic_pdf.svg");
}
.attach-file a[href$=".xlsx"],
.attach-file a[href$=".xls"],
.attach-file a[href$=".xlsm"],
.attach-file a[href$=".xla"],
.attach-file a[href$=".xlam"],
.attach-file a[href$=".xml"],
.attach-file a[href$=".csv"] {
    --fileImg: url("../images/file_ic_excel.svg");
}
.attach-file a[href$=".doc"],
.attach-file a[href$=".docx"] {
    --fileImg: url("../images/file_ic_word.svg");
}
.attach-file a[href$=".pptx"],
.attach-file a[href$=".ppt"],
.attach-file a[href$=".pptm"],
.attach-file a[href$=".potx"] {
    --fileImg: url("../images/file_ic_ppt.svg");
}
.attach-file a[href$=".txt"] {
    --fileImg: url("../images/file_ic_notepad.svg");
}
.attach-file a[href$=".jpg"],
.attach-file a[href$=".jepg"],
.attach-file a[href$=".png"],
.attach-file a[href$=".gif"],
.attach-file a[href$=".tiff"],
.attach-file a[href$=".bmp"],
.attach-file a[href$=".svg"],
.attach-file a[href$=".webp"] {
    --fileImg: url("../images/file_ic_img.svg");
}
.attach-file a[href$=".zip"],
.attach-file a[href$=".apk"],
.attach-file a[href$=".rar"],
.attach-file a[href$=".7z"],
.attach-file a[href$=".tar"],
.attach-file a[href$=".egg"],
.attach-file a[href$=".alz"] {
    --fileImg: url("../images/file_ic_zip.svg");
}
.attach-file a[href$=".mp4"],
.attach-file a[href$=".mov"],
.attach-file a[href$=".wmv"],
.attach-file a[href$=".avi"],
.attach-file a[href$=".avchd"],
.attach-file a[href$=".swf"],
.attach-file a[href$=".mkv"] {
    --fileImg: url("../images/file_ic_video.svg");
}
.attach-file__name {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 90%;
}
.attach-file__info {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    position: relative;
}
.attach-file__info span {
    color: var(--lightGray);
    font-size: 0.6875rem;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.attach-file__info::before {
    content: "";
    display: block;
    width: 0.1875rem;
    height: 0.1875rem;
    background-color: #bbb;
    border-radius: 50%;
}
.attach-file__info span:first-child {
    order: -1;
}
.attach-file__btns {
    display: flex;
    gap: 10px;
    padding-left: 10px;
    font-size: 12px;
    position: absolute;
    right: 0;
}
.attach-file__btns .file-btn:hover {
    text-decoration: underline;
    cursor: pointer;
}
.attach-file__btns .preview_btn {
    position: relative;
}
.attach-file__btns .preview_btn::after {
    content:'';
    width:1px;
    height:10px;
    display: block;
    position: absolute;
    right: -6px;
    top: 2px;
    background-color: #777777;
}

.attach-file__close {
    position: absolute;
    top: 4px;
    right: 4px;
    cursor: pointer;
    padding: 2px;
    color: #777777;
    background-color: #fff;
    font-size: 18px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.attach-file__close:hover {
    background-color: rgba(153, 153, 153, 0.5);
    color: #fff;
    transition: 0.3s;
}
.filebox {
    display: flex;
    grid-column: 1 / -1;
}
.filebox .upload-name {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.filebox label {
    background-color: var(--iconGray);
    color: var(--white);
    border-radius: 0 0.25rem 0.25rem 0;
    padding: 0 1rem;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}
.filebox input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}

.comment-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}
.comment-area {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.comment-wrap:has(.comment-area__empty) {
    gap: 1.2rem;
}
.comment-area__empty {
    font-size: 0.875rem;
    text-align: center;
    color: var(--lightGray);
}
.comment-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comment-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.comment-user .assignee__profile,
.comment-write .assignee__profile {
    width: 1.75rem;
}
.comment-user strong {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: normal;
}
.comment-user span {
    color: var(--lightGray);
    font-size: 0.75rem;
    line-height: normal;
}
.comment-date {
    color: var(--lightGray);
    font-size: 0.75rem;
    line-height: normal;
}
.comment-content p {
    font-size: 0.875rem;
    line-height: 1.5;
}
.comment-attach .attach-file {
    display: flex;
    gap: 0.5rem 1rem;
    flex-wrap: wrap;
}
.comment-attach .attach-file a {
    flex: 0 1 auto;
    flex-direction: row;
    border-radius: 0;
    border: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}
.comment-attach .attach-file a::before {
    position: static;
    transform: none;
    width: 1rem;
    height: 1rem;
    margin-right: 0.375rem;
}
.comment-attach .attach-file__name {
    font-size: 0.75rem;
    overflow: visible;
    max-width: none;
}
.comment-write {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.comment-write__box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    border-radius: 0.25rem;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
}
.comment-write__box textarea {
    border: 0;
    padding: 0;
    padding-right: 3.5rem;
    min-height: 2.5rem;
    overflow: hidden;
    resize: none;
}
.comment-write__btn {
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.comment-write__btn input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}

.tooltip {
    position: fixed;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    border-radius: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--white);
    font-size: 0.8125rem;
    line-height: 1.5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-width: 30rem;
    top: 0;
    left: 0;
}
.tooltip.active {
    opacity: 1;
}

.tooltip th {
    width: 72px;
    font-weight: 700;
    font-size: 0.8125rem;
}
.tooltip td {
    font-size: 0.75rem;
}

.left-area {
    position: relative;
    height: calc(100dvh - 3rem);
    container: leftArea / inline-size;
}
.right-area {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 3rem);
}
@media (max-width: 1439px) {
    .right-area {
        height: auto;
    }
}

.tool-wrap {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    /*max-width: calc(100% - 340px);*/
    max-width: calc(100% - 330px);
}
.tool-wrap .button {
    height: 2.25rem;
    padding: 0rem 1.1rem 0rem 1rem;
    gap: 0.4rem;
    background-color: var(--white);
    color: var(--black);
}
.search-input {
    position: relative;
    /*width: 16.25rem;*/
    width: 10.25rem;
}
.search-input input {
    background-color: var(--white);
    border-radius: 5rem;
    width: 100%;
    padding: 0 2rem 0 1rem;
    border: 0;
}
.search-input a {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: -9999px;
    width: 1.5rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: url("../images/ic_search_w.svg") var(--iconGray) no-repeat center /
    0.875rem;
}
@container leftArea (max-width: 1070px) {
    .tool-wrap .button {
        text-indent: -9999px;
        aspect-ratio: 1;
        gap: 0;
        padding: 0;
    }
}

.tabs {
    display: flex;
}
.tabs li {
    position: relative;
}
.tabs li::after {
    content: "";
    display: block;
    width: 1.4375rem;
    height: 1.4375rem;
    position: absolute;
    left: 100%;
    bottom: 0;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='23' viewBox='0 0 23 23' fill='none'%3E%3Cpath d='M0 0C0 0 0 9 7 16C14 23 23 23 23 23H0V0Z' fill='white' /%3E%3C/svg%3E");
}
.tabs li::after {
    opacity: 0.25;
}
.tabs li.active::after {
    opacity: 0.3;
}
.tabs li:last-child.active::after {
    opacity: 0.55;
}
.tabs li:has(+ .active)::after {
    opacity: 0.35;
    transform: scaleX(-1);
    left: auto;
    right: 0;
}
.tabs a {
    display: flex;
    align-items: center;
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.25);
    height: 3rem;
    padding: 0 2.5rem;
    border-radius: 1.5rem 1.5rem 0rem 0rem;

}
.tabs .active a {
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.55);
}
.kpi_tabs a {
    border: 1px solid #e9e9ec;
    border-bottom: none;
    height: 3.825rem;
}
.kpi_tabs.tabs .active a {
    background-color: #e9e9ec;
}

#hc_kpi_detail_area {
    display: grid;
    grid-template-rows: 1fr;
    width: 1300px;
    max-width: 1344px;
    padding: 8px;
    border: 1px solid #e9e9ec;
    row-gap: 8px;
}

#hc_kpi_detail_contents {
    display: grid;
    grid-template-columns: minmax(300px, auto) auto;
    margin-bottom: 4px;
}

/*🐰status 필터*/
.st-filter {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 16px;
}
.st-filter p{
    font-weight: 500;
    font-size: 13px;
    padding-right: 8px;
}
.st-filter select{
    background-color: #fff;
    outline: none;
    border: none;
}
.st-filter select:focus {
    outline: 0;
}
/*🐰필터끝🐰*/
.tabs-content {
    flex: 1;
    height: calc(100% - 3.25rem);
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 1.5rem;
    border-top-left-radius: 0;
}
.tabs-content > div {
    display: none;
    height: 100%;
}

.task-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.status-summary {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem 0 1rem;
}
.status-summary li {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--textGray);
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: normal;
}
.status-summary span {
    display: flex;
    padding: 0.125rem 0.25rem;
    border-radius: 0.375rem;
    background-color: #b2b7c0;
    color: var(--white);
    font-weight: 700;
}
.task-list-wrap {
    overflow: scroll;
    height: calc(100% - 1.75rem);
    background: url("../images/task_line_bg.svg") repeat;
    background-attachment: local;
    margin-left: 1rem;
}
.task-status-wrap {
    overflow-y: scroll;
    max-height:740px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 33.3%);
}
.task-list-wrap::-webkit-scrollbar,
.task-status-wrap::-webkit-scrollbar {
    /* width: 0.5rem; */
    width: 14px;
    height: 14px;
    background-color: transparent;
}
.task-list-wrap::-webkit-scrollbar-track,
.task-status-wrap::-webkit-scrollbar-track {
    background-color: transparent;
}
.task-list-wrap::-webkit-scrollbar-thumb,
.task-status-wrap::-webkit-scrollbar-thumb {
    /* border-radius: 1.4375rem;
      background-color: transparent; */
    outline: none;
    border-radius: 10px;
    border: 4px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.15);
}
.task-list-wrap::-webkit-scrollbar-thumb:hover,
.task-status-wrap::-webkit-scrollbar-thumb:hover {
    border: 4px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.3);
}
.task-list-wrap::-webkit-scrollbar-button,
.task-status-wrap::-webkit-scrollbar-button {
    display: none;
}
.task-list-wrap::-webkit-scrollbar-corner,
.task-status-wrap::-webkit-scrollbar-corner {
    background: transparent;
}
.task-section {
    display: flex;
    align-items: center;
    position: relative;
}
.task-section.no-assignee {
    padding-left: 12.5rem;
}
.task-status-wrap .task-section {
    flex-direction: column;
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.task-status-wrap .task-section:hover {
    background-color: hsla(0, 0%, 0%, 0.025);
}
.task-status-wrap .task-section:first-child {
    border-left: 0;
}
.task-assignee {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 12rem;
    padding: 0.5rem 0.625rem;
    border-radius: 15rem;
    background: rgba(255, 255, 255, 0.9);
}
.task-section .task-assignee {
    position: sticky;
    left: 0;
    z-index: 1;
    margin: 0.5rem;
    margin-left: 0;
    flex-shrink: 0;
}
.assignee__profile {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 3rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #ddd;
    overflow: hidden;
}
.assignee__profile img {
    width: 93%;
}
.task-assignee__name {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
}
.task-assignee__name > div {
    display: flex;
    align-items: center;
    gap: 0 0.375rem;
    flex-wrap: wrap;
}
.task-assignee__name strong {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: normal;
}
.task-assignee__name span {
    color: var(--lightGray);
    font-size: 0.6875rem;
    line-height: normal;
}
.task-status {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15rem;
    padding: 0.45rem 0.75rem 0.45rem 0.85rem;
    position: sticky;
    top: 1rem;
    z-index: 1;
    color: var(--textGray);
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1;
    box-shadow: 0 0 1rem hsla(0, 0%, 0%, 0.04);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.task-status span {
    display: flex;
    padding: 0.25rem 0.3rem 0.2rem;
    border-radius: 0.375rem;
    background-color: #b2b7c0;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
    font-size: 0.8em;
}
.task-list {
    display: flex;
    gap: 1.6rem;
    padding: 0.5rem;
    padding-left: 2rem;
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
}
.task-status-wrap .task-list {
    flex-direction: column;
    border-left: 0;
    width: 100%;
    padding: 1rem;
}
.task-box {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.75rem 0.875rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    width: 16.875rem;
    cursor: pointer;
    transition: 0.1s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.task-box:hover {
    box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.08);
    transform: translateY(-2px);
}
.task-box.action_plan::before {
    content: "";
    display: block;
    position: absolute;
    right: -0.35rem;
    top: -0.2rem;
    width: 1.2rem;
    height: 1.2rem;
    transform: rotate(-45deg);
    border-radius: 0.5rem;
    background-color: var(--VolvoBlue);
}
.task-box.action_plan::after {
    content: "A";
    display: block;
    position: absolute;
    right: 0;
    top: 0px;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 900;
    line-height: normal;
}
.task-box span {
    width: 1.2rem;
    height: 1.2rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    transform: rotate(-45deg);
}
.task-box span > i {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 900;
    line-height: normal;
    transform: rotate(45deg);
}

.task-box span:first-child {
    position: absolute;
    top: -0.2rem;
    left: -10px;
}
.task-box span:nth-child(2) {
    position: absolute;
    top: 1.2rem;
    left: -10px;
}

.task-box .new-mark {
    background-color: #FF308A;
}
.task-box .reply-mark {
    background-color: #48CE00;
}
.task-box__top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}
.task-status-wrap .task-box__top {
    flex-wrap: wrap;
}
.task-box__bottom {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.task-status-wrap .task-box {
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem 0.75rem;
}
.task-box .comment-user {
    border-top: 1px solid #e9e9e9;
    padding-top: 0.5rem;
    flex-wrap: wrap;
}
.task-box .comment-user strong {
    font-size: 0.8rem;
}
.task-priority {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}
.task-priority.high {
    color: var(--red);
}
.task-priority.medium {
    color: var(--green);
}
.task-priority.low {
    color: var(--blue);
}
.task-priority::before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-position: center;
}
.task-priority.high::before {
    width: 0.5rem;
    height: 0.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' viewBox='0 0 8 7' fill='none'%3E%3Cpath d='M4 0.5L7.4641 6.5H0.535898L4 0.5Z' fill='%23EA4C4C'/%3E%3C/svg%3E");
}
.task-priority.medium::before {
    width: 0.3125rem;
    height: 0.3125rem;
    transform: rotate(-45deg);
    background-color: var(--green);
}
.task-priority.low::before {
    width: 0.5rem;
    height: 0.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' viewBox='0 0 8 7' fill='none'%3E%3Cpath d='M4.07104 6.5L7.53515 0.5H0.606943L4.07104 6.5Z' fill='%232390E9'/%3E%3C/svg%3E");
}
.task-box__date {
    color: #444;
    font-size: 0.625rem;
    line-height: normal;
    padding-right: 0.3rem;
    white-space: nowrap;
}
.task-box__status {
    display: flex;
    padding: 0.16rem 0.5rem 0.25rem;
    border-radius: 6rem;
    border: 1px solid #ccc;
    font-size: 0.625rem;
    font-weight: 500;
    line-height: normal;
}
.task-box__title {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: normal;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1024px) {
    .task-list-wrap {
        background-size: 7px 75px;
    }
}

.board-wrap {
    display: flex;
    gap: 1rem;
}
.board-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.55);
    flex: 1;
    width: calc(50% - 0.5rem);
    margin-bottom: 1rem;
}
.board-box h2 {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    line-height: normal;
    font-size: 0.95rem;
    position: relative;
}
.board-box h2::before {
    content: "";
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.125rem;
}
.board-box.notice h2::before {
    background-image: url("../images/ic_notice.svg");
}
.board-box.message h2::before {
    background-image: url("../images/ic_message.svg");
}
.board-box button.modify__btn {
    position: absolute;
    right: 2px;
    font-size: 12px;
    color: #767676;
    font-weight: 400;
    cursor: pointer;
}
.board-box ul li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.board-box ul li a {
    display: block;
    padding: 0.5rem 0.25rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    color: #444;
    font-size: 0.8rem;
    line-height: normal;
}
.board-box ul li:last-child a {
    padding-bottom: 0.15rem;
}

.kpi-wrap {
    flex: 1;
    border-radius: 1.5rem;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 0.75rem;
    padding-right: 0;
    overflow: hidden;
    overflow-y: scroll;
}
.kpi-wrap:has(.kpi-alarm) {
    padding-top: 0.5rem;
}
.kpi-wrap::-webkit-scrollbar {
    width: 0.75rem;
    height: 0.75rem;
    background-color: transparent;
}
.kpi-wrap::-webkit-scrollbar-track {
    background-color: transparent;
}
.kpi-wrap::-webkit-scrollbar-thumb {
    outline: none;
    border-radius: 10px;
    border: 3px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0);
}
.kpi-wrap:hover::-webkit-scrollbar-thumb {
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.15);
}
.kpi-wrap::-webkit-scrollbar-thumb:hover {
    border: 3px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.3);
}
.kpi-wrap::-webkit-scrollbar-button {
    display: none;
}
.kpi-wrap::-webkit-scrollbar-corner {
    background: transparent;
}
.kpi-wrap ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, auto));
    gap: 0.5rem;
    height: 100%;
    grid-template-rows: repeat(auto-fit, minmax(7rem, auto));
}
.kpi-wrap .help {
    position: absolute;
    right: 0.425rem;
    top: 0.725rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    width: 1.1rem;
    height: 1.1rem;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 0.25);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
}
.kpi-wrap li {
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.kpi-wrap li:hover {
    box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.1);
    transform: translateY(-3px);
}
.kpi-wrap li > a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.kpi-tit {
    font-size: 0.8125rem;
    line-height: normal;
    margin-bottom: 0.4rem;
}
.kpi-val {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.kpi-val strong {
    font-weight: 700;
    line-height: normal;
}
.kpi-val span {
    color: #989898;
    text-align: right;
    font-size: 0.7rem;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}
.kpi-graph {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-top: 0.5rem;
}
.kpi-graph__chart {
    max-height: 1.25rem;
    overflow: hidden;
}
.kpi-graph__num {
    display: flex;
    gap: 0.125rem;
    align-items: center;
    padding: 0.25rem 0.4375rem;
    border-radius: 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    line-height: normal;
}
.kpi-graph__num::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
}
.kpi-graph__num.increase {
    background-color: var(--blueBG);
    color: var(--blue);
}
.kpi-graph__num.increase::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' viewBox='0 0 8 7' fill='none'%3E%3Cpath d='M4 0.833313L7.4641 6.83331H0.535898L4 0.833313Z' fill='%232390E9'/%3E%3C/svg%3E");
}
.kpi-graph__num.decrease {
    background-color: var(--redBG);
    color: var(--red);
}
.kpi-graph__num.decrease::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' viewBox='0 0 8 7' fill='none'%3E%3Cpath d='M4 6.83331L7.4641 0.833313H0.535898L4 6.83331Z' fill='%23EA4C4C'/%3E%3C/svg%3E");
}

.kpi-alarm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    text-align: center;
    /*margin-bottom: 0.5rem;*/
    color: var(--iconGray);
}
.kpi-alarm::before {
    content: "!";
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0.9rem;
    height: 0.9rem;
    color: rgba(0, 0, 0, 0.25);
    font-size: 0.8em;
    font-weight: 900;
    line-height: normal;
}

@media (max-width: 1439px) {
    .kpi-wrap {
        padding-right: 0.75rem;
        overflow: visible;
        overflow-y: visible;
    }
    .kpi-wrap ul {
        height: auto;
    }
}

.weather-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 0;
}
.weather-wrap li {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-radius: 0.5rem;
    padding: 0.75rem;
    width: 6rem;
}
.weather-wrap .today {
    background-color: #f5f7fd;
}
.weather-date {
    font-size: 0.8rem;
    color: var(--textGray);
    text-align: center;
}
.today .weather-date {
    color: var(--black);
    font-weight: 500;
}
.weather-icon {
    text-indent: -9999px;
    height: 3.5rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.weather-icon.sunny {
    background-image: url("../images/weather_sunny.png");
}
.weather-icon.cloude {
    background-image: url("../images/weather_cloude.png");
}
.weather-icon.cloudy {
    background-image: url("../images/weather_cloudy.png");
}
.weather-icon.rainy {
    background-image: url("../images/weather_rainy.png");
}
.weather-icon.snowy {
    background-image: url("../images/weather_snowy.png");
}
.weather-temperature {
    display: flex;
    gap: 0.15rem;
    justify-content: center;
    color: #ddd;
    font-size: 0.9rem;
}
.weather-temperature span {
    font-weight: 700;
}
.weather-temperature span::after {
    content: "°";
}
.weather-temperature .lowest {
    color: var(--blue);
}
.weather-temperature .highest {
    color: var(--red);
}

/* ********* 팝업 레이어 ********* */
.popup-layer {
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.window-popup {
    position: relative;
    inset: inherit;
}
.popup-layer__dim {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 0%, 0.05);
}
.window-popup .popup-layer__dim {
    display: none;
}
.popup-layer__con {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    border-radius: 1.5rem;
    box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    max-height: 95%;
    max-width: 75%;
}
.popup-layer.mini .popup-layer__con {
    width: 35rem;
}
.window-popup .popup-layer__con {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-height: none;
}

.popup-layer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
}
.popup-layer__top .action_plan {
    color: var(--VolvoBlue);
    font-size: 0.8125rem;
    font-weight: 900;
    line-height: normal;
    position: relative;
    padding-left: 0.45rem;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
}
.popup-layer__top .action_plan::before {
    content: "";
    display: block;
    position: absolute;
    left: -0.45rem;
    top: -0.2rem;
    width: 1.5rem;
    height: 1.5rem;
    transform: rotate(-45deg);
    border-radius: 0.5rem;
    background-color: var(--VolvoBlue);
}
.popup-layer__top .action_plan::after {
    content: "A";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 900;
    line-height: normal;
}
.popup-layer__title {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: normal;
}
.popup-layer__btn {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.375rem;
}
.popup-layer__btn .close {
    margin-left: 0.5rem;
}

.popup-layer__section {
    padding: 1.2rem 0.75rem 1.2rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
}
.popup-layer__section::-webkit-scrollbar {
    width: 0.75rem;
    height: 0.75rem;
    background-color: transparent;
}
.popup-layer__section::-webkit-scrollbar-track {
    background-color: transparent;
}
.popup-layer__section::-webkit-scrollbar-thumb {
    outline: none;
    border-radius: 10px;
    border: 3px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0);
}
.popup-layer__section:hover::-webkit-scrollbar-thumb {
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.15);
}
.popup-layer__section::-webkit-scrollbar-thumb:hover {
    border: 3px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.3);
}
.popup-layer__section::-webkit-scrollbar-button {
    display: none;
}
.popup-layer__task-title {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0 0 0.5rem 0;
    position: relative;
    margin-bottom: 1rem;
}
.popup-layer__task-title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--black);
    transition: 0.3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.popup-layer__task-title:has(input:read-only)::after {
    width: 0;
}
.popup-layer__task-title input {
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: text;
    border-radius: 0;
    height: auto;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: normal;
}
.popup-layer__task-title button:not(.button) {
    display: none;
    background-color: var(--iconGray);
    border-radius: 5rem;
    padding: 0.25rem 0.75rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
}
.popup-layer__task-title button.complete {
    background-color: var(--black);
}

@media (max-width: 1400px) {
    .popup-layer__con {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .popup-layer.mini .popup-layer__con {
        width: 90%;
    }
}

/* popup 수정-2025-12-10 */
.popup-layer__box {
    display: flex;
}
.task__form {
    border-right: 1px solid #dddddd;
}
.p_section1 {
    min-width: 572px;
    max-width: 572px;
    max-height: 600px;
    width: 100%;
    overflow-y: scroll;
}
.p_section2 {
    min-width: 454px;
    max-width: 454px;
    max-height: 600px;
    width: 100%;
    height: 100%;
}
.tagify {
    --tag-border-radius: 93px;
    --tag-hover: #222222;
    --tag-remove-bg: #ea4c4c;
    --tag-remove-btn-bg--hover: #ffffff;
    font-size: 13px;
    width: 100%;
}
.tagify__tag:hover {
    --tag-text-color: #ffffff;
    --tag-remove-btn-color: #ffffff;
}
.tagify__tag__removeBtn:hover {
    --tag-remove-btn-color: red;
    --tag-text-color: #ffffff;
    background: #ffa2a2;
    color: #ffff;
}
.tagify__tag__removeBtn:hover + div > span {
    opacity: 0.7;
}

.tagify__dropdown__wrapper {
    font-size: 0.875rem;
}

.comment-wrap {
    max-height: 500px;
    overflow-y: scroll;
    padding-right: 10px;
}

.comment-wrap__empty {
    position: relative;
    min-height:400px;
}
.comment-area__empty {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 13px;
}

.comment-wrap::-webkit-scrollbar,
.comment-wrap::-webkit-scrollbar {
    /* width: 0.5rem; */
    width: 14px;
    height: 14px;
    background-color: transparent;
}
.comment-wrap::-webkit-scrollbar-track,
.comment-wrap::-webkit-scrollbar-track {
    background-color: transparent;
}
.comment-wrap::-webkit-scrollbar-thumb,
.comment-wrap::-webkit-scrollbar-thumb {
    /* border-radius: 1.4375rem;
      background-color: transparent; */
    outline: none;
    border-radius: 10px;
    border: 4px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.15);
}
.comment-wrap::-webkit-scrollbar-thumb:hover,
.comment-wrap::-webkit-scrollbar-thumb:hover {
    border: 4px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.3);
}
.comment-wrap::-webkit-scrollbar-button,
.comment-wrap::-webkit-scrollbar-button {
    display: none;
}
.comment-wrap::-webkit-scrollbar-corner,
.comment-wrap::-webkit-scrollbar-corner {
    background: transparent;
}

.reply__form {
    position: sticky;
    bottom: 0;
    z-index: 9999;
    background-color: #ffff;
    margin-top: 15px;
    padding-top: 10px;
}

.ui-datepicker {
    z-index: 10 !important;
    border: 0 !important;
    padding: 0 1rem;
    width: auto;
    border-radius: 0.5rem;
    box-shadow: 0 8px 16px hsla(0deg, 0%, 0%, 10%);
}
.ui-datepicker .ui-datepicker-header {
    padding: 0.8rem 0;
    background: var(--white);
    border: 0;
    border-bottom: 1px solid #ededed;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ui-datepicker .ui-datepicker-header::before,
.ui-datepicker .ui-datepicker-header::after {
    display: none;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    cursor: pointer;
}
.ui-datepicker .ui-icon {
    background-position: center;
    background-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
}
.ui-datepicker .ui-datepicker-prev span {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg id='chevron-left'%3E%3Cpath id='Vector' d='M15 18L9 12L15 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    position: static;
    margin: 0;
}
.ui-datepicker .ui-datepicker-next span {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg id='chevron-right'%3E%3Cpath id='Vector' d='M9 18L15 12L9 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    position: static;
    margin: 0;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover {
    border: 0;
    background: var(--white);
}
.ui-datepicker .ui-datepicker-prev {
    order: 1;
}
.ui-datepicker .ui-datepicker-next {
    order: 3;
}
.ui-datepicker .ui-datepicker-title {
    margin: 0;
    line-height: normal;
    order: 2;
    display: flex;
    gap: 0.3rem;
}
.ui-datepicker .ui-datepicker-title select {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: normal;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: auto;
}
.ui-datepicker th {
    color: #666;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.45px;
}
.ui-state-default,
.ui-widget-content .ui-state-default {
    border: 0;
    background: #fff;
    color: #101010;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 0.6rem;
}
.ui-datepicker td:hover .ui-state-default,
.ui-state-highlight,
.ui-widget-content .ui-state-highlight {
    border-radius: 7rem;
    background: #ebeef8;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-datepicker td:hover .ui-state-active {
    border-radius: 7rem;
    background: var(--VolvoBlue);
    color: var(--white);
}

.tabulator {
    border: none !important;
}

.tabulator * {
    font-family: Paperlogy, Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.tabulator .tabulator-header {
    border-bottom: unset;
}

.tabulator .tabulator-header .tabulator-col {
    background-color: #f3f3f3;
    border-top: 2px solid #444;
    border-bottom: 1px solid #444;
    box-sizing: border-box;
    color: var(--highcharts-neutral-color-100);
    font-weight: bold;
    font-size: 1em;
}

.tabulator .tabulator-header .tabulator-col-group-cols .tabulator-col {
    background-color: #f3f3f3;
    border-top: unset;
    border-bottom: 1px solid #444;
    box-sizing: border-box;
    color: var(--highcharts-neutral-color-100);
    font-weight: bold;
    font-size: 1em;
}

.tabulator .tabulator-header .tabulator-col:last-of-type {
    border-right: unset;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
    padding: 0;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
    vertical-align: middle;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    display: block;
    /*word-break:break-all;*/
    /*white-space: break-spaces;*/
}

.tabulator .tabulator-tableholder .tabulator-placeholder {
    justify-content: unset;
}

.tabulator .tabulator-row {
    background-color: #fff;
    border-bottom: #ddd 1px solid;
}
@media (hover: hover) and (pointer: fine) {
    .tabulator-row.tabulator-selectable:hover {
        background-color: #e9eeff;
        cursor: pointer;
    }
}
.tabulator-row.tabulator-selected {
    background-color: #9abcea7a;
}

.tabulator .tabulator-row .tabulator-cell {
    vertical-align: middle;
    font-size: 0.8rem;
    text-align: center;
    padding: 0.5rem 1rem;
}

.tabulator .tabulator-row .tabulator-cell:last-of-type {
    border-right: unset;
}

.tabulator .tabulator-tableholder {
    background-color: #fff;
}

/* 끝 */
