@charset "UTF-8";

.content__table--circle {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 10px;
    background-color: var(--indicator-point-color);
}

.indicator--accelerating {
    --indicator-point-color: #76caff;
}

.indicator--education {
    --indicator-point-color: #b57eff;
}

.indicator--mentoring {
    --indicator-point-color: #41d3b5;
}

.indicator--network {
    --indicator-point-color: #ff85aa;
}

.indicator--enter {
    --indicator-point-color: #f4c00c;
}

.indicator--eterprise {
    --indicator-point-color: #B235CB;
}




[data-cts-type='template/list'] {
    display: none !important;
}




/* 자동 로그아웃 안내 팝업 ----- */
.layer-container {
    position: fixed;
    top: 200px;
    left: 500px;
    width: 500px;
    height: 372px;
    /*height: 500px;*/
    transition: opacity .15s ease-in-out;
    cursor: pointer;
    z-index: 100;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    opacity: 0;
    display: none;
}

.layer-content {
    background-color: white;
    width: 100%;
    height: 100%;
}

.layer-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.layer-content .auto_logout__wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.layer-content .auto_logout__wrap .logout_title {
    display: flex;
    justify-content: center;
    font-size: 23px;
    font-weight: 600;
    width: 100%;
    height: 80px;
    padding: 30px;
    border: 1px solid #efefef;
}

.layer-content .auto_logout__wrap .logout_title > p > span {
    color: var(--color-primary);
}

.layer-content .auto_logout__wrap .logout_content > div:nth-child(1) {
    padding: 30px 0;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.layer-content .auto_logout__wrap .logout_content > div:nth-child(2) {
    line-height: 25px;
    margin: 5px 0;
}

.layer-content .auto_logout__wrap .logout_content > .button__wrap {
    margin-top: 35px;
    text-align: center;
}

.layer-content .auto_logout__wrap .logout_content > .button__wrap > div > button {
    white-space: nowrap;
}

.layer-content .auto_logout__wrap .logout_content > .button__wrap > div.logout_prepare > button {


}

.layer-content .auto_logout__wrap .logout_content > .button__wrap > div > button:first-child {
    margin-right: 20px;
}

.logout_ok {
    display: none;
}

.layer-popup-close {
    position: absolute;
    /*bottom: 0;*/
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: white;
    color: black;
    /*width: 35px;*/
    /*height: 35px;*/
    width: 70px;
    height: 79px;
}

.layer-popup-close:after {
    display: inline-block;
    content: "\00d7";
    font-size: 37px;
    font-weight: 200;
}

@media screen and (max-width: 767px) {
    /* Mobile */
    .layer-container {
        max-width: 500px;
        width: 100%;
        left: 0;
        top: 130px;

    }
}




/* common__button ----- */
.common__button {
    position: relative;
    min-width: 220px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    user-select: none;
    display: inline-block;
    /* line-height: 60px; */
    line-height: 1;
    padding: 18px 71px;
    /* border-radius: 5px; */
    font-family: 'SUIT';
    border-radius: 8px;
    font-size: 22px;
    overflow: hidden;
    outline: none;
    border: none;
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    letter-spacing: -0.01em;
}

.common__button:hover {
    filter: brightness(90%);
    color: #fff;
}

.common__button.button__md {
    font-size: 18px;
    letter-spacing: -0.01em;
    line-height: 48px;
    height: 50px;
    padding: 0 25px;
    min-width: initial;
    font-weight: 500;
}

.common__button.button__sm {
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    padding: 0 25px;
    min-width: initial;
}

.common__button.button__sx {
    font-size: 14px;
    line-height: 35px;
    height: 35px;
    padding: 0 10px;
    min-width: initial;
}

@media screen and (max-width: 1024px) {
    .common__button {
        font-size: 15px !important;
    }

    .common__button:not(:is([class*='button__'], [class*='-btn'], .common__tiny)) {
        min-width: 125px !important;
        line-height: 1 !important;
        /* line-height: 40px; */
        padding: 11px 35px !important;
    }

    .common__button.button__md {
        height: 40px;
        line-height: 38px;
        min-width: initial;
    }

    .common__button.button__sm {
        font-size: 14px;
        line-height: 30px;
        height: 30px;
        padding: 0 13px;
    }
}

.common__button.color-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.common__button.color-lightgray {
    background-color: #f2f2f2;
    border-color: #f2f2f2;
    color: #282828;
}

.common__button.color-lightgray2 {
    background-color: #f9f9f9;
    border-color: #f9f9f9;
    color: #282828;
}

.common__button.color-gray {
    background-color: #d8d8d8;
    border-color: #d8d8d8;
    color: #545454;
}

.common__button.color-darkgray {
    background-color: #a0a0a0;
    border-color: #a0a0a0;
    color: #fff;
}

.common__button.color-blue {
    background-color: #5279d6;
    border-color: #5279d6;
    color: #fff;
}

.common__button.color-skyblue {
    background-color: #D8F3FE;
    border-color: #D8F3FE;
    color: #04AAEB;
}

.common__button.color-purple {
    background-color: var(--color-primary-purple);
    border-color: var(--color-primary-purple);
    color: #fff;
}

.common__button.color-purple-500 {
    background-color: var(--color-purple-500);
    border-color: var(--color-purple-500);
    color: #fff;
}

.common__button.color-darkpurple {
    background-color: #6a00bc;
    border-color: #6a00bc;
    color: #fff;
}

.common__button.color-pink {
    background-color: #ff7fa6;
    border-color: #ff7fa6;
    color: #fff;
}

.common__button[class*="outline-"] {
    background: #fff;
}

.common__button.outline-gray {
    border: 1px solid #d0d0d0;
    color: #282828;
}

.common__button.outline-darkgray {
    border: 1px solid #a2a2a2;
    color: #282828;
}

.common__button.outline-purple {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.common__button.outline-purple:hover {
    filter: brightness(100%);
    font-weight: 700;
}

.common__button.outline-lightpurple {
    border: 1px solid #bbabff;
    color: #4d28a1;
}

.common__button.outline-black {
    border: 1px solid #000000;
    color: black;
}