/* S : 기본 색상 */
    :root
    {
        --primary:#07743B;
        --primary-hover: #056834;
        --primary-bg: #E0F7E6;
        --primary-bg-hover: #cfeed7;
        --secondary: #6B7A8E;
        --secondary-hover: #546478;
        --txt-color: #23232C;
    }
/* E : 기본 색상 */


/* S : 헤더 */
#header .logo img {
    height: 35px;
}
/* E : 헤더 */


/* S : 메인 */
    /* S : 학생 퀵 메뉴 */
        aside.quick-menu ul li i {
            color: var(--primary);
        }

        aside.quick-menu ul li span {
            color: var(--primary);
        }
    /* E : 학생 퀵 메뉴 */


    /* S : 메인 인디케이터 */
    .main_stats {
        position: fixed;
        z-index: 10;
        left: 30px;
        top: 50%;
        width: 150px;
    }

    /* E : 메인 인디케이터 */


    /* S : 메인 플로팅버튼 */
    .float-list {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        position: fixed;
        z-index: 10;
        right: 30px;
        top: 50%;
    }

    .float-list li {
        width: fit-content;
        min-width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 6px;
        border: 1px solid rgba(100, 237, 214, 0.2);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
        transition: all 0.2s;
    }

    .float-list li:hover {
        padding: 0 15px;
        background: #fff;
    }

    .float-list li:hover .ico-sm {
        display: none;
    }

    .float-list li .hover {
        display: none;
    }

    .float-list li:hover .hover {
        display: block;
    }

    .float-list li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .float-list li a i {
        color: var(--primary);
    }

    .float-list li a span {
        padding-left: 10px;
        font-weight: 600;
    }
    @media only screen and (max-width: 759px){
        .float-list {
            flex-direction: row;
            top: unset;
            right: 30px;
            bottom: 30px;

        }
    }
    /* E : 메인 플로팅버튼 */


    /* S : 슬라이드 내용 */
    #mainvswrap .txtbox {
        top: 35%;
    }

    #mainvswrap .txtbox h1,
    #mainvswrap .txtbox p,
    .titlebox h1,
    .titlebox p {
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    }

    #mainvswrap .txtbox p>span.block,
    .titlebox p>span.block {
        display: block;
        font-size: inherit;
    }

    /* E : 슬라이드 내용 */

    /* S : 메인 이동 버튼 */
    #mainvswrap .bnrbox {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 30px 50px;
        padding: 30px;
        background: linear-gradient(45deg, #149e53, #055843);
        border-radius: 6px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
        opacity: 0.95;
    }

    #mainvswrap .bnrbox>li {
        display: flex;
        align-items: center;
        gap: 30px;
        border-radius: 4px;
        opacity: 0.75;
        transition: all 0.3s;
    }

    #mainvswrap .bnrbox>li::after {
        content: "";
        display: inline-block;
        width: 1px;
        height: 15px;
        margin-right: 30px;
        background-color: #fff;
        opacity: 0.5;
    }

    #mainvswrap .bnrbox>li:nth-child(4)::after {
        display: none;
    }

    #mainvswrap .bnrbox>li:hover {
        opacity: 1;
        text-shadow: 0 2px 5px rgba(1, 27, 15, 0.8);
        transition: all 0.3s;
    }

    #mainvswrap .bnrbox>li>a {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
        color: #fff;
        font-size: 20px;
    }

    #mainvswrap .bnrbox>li>a>i.fa-regular {
        color: #fff;
        font-size: 20px;
    }

    @media only screen and (max-width: 759px) {
        #mainvswrap .txtbox {
            top: 20%;
        }

        #mainvswrap .txtbox p {
            font-size: 15px;
        }

        #mainvswrap .txtbox p>span.block,
        .titlebox p>span.block {
            display: inline;
        }

        #mainvswrap .bnrbox {
            width: calc(100% - 80px);
            flex-direction: column;
            margin: 30px auto;
            padding: 5px 0;
        }

        #mainvswrap .bnrbox>li {
            width: 100%;
            flex-direction: column;
            align-items: baseline;
            gap: 0;
        }

        #mainvswrap .bnrbox>li::after {
            display: block;
            margin-right: 0;
            width: 100%;
            height: 1px;
            opacity: 0.3;
        }

        #mainvswrap .bnrbox>li>a {
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 20px 30px;
            font-size: 18px;
        }

        #mainvswrap .bnrbox>li>a>i.fa-regular {
            width: 25px;
            font-size: 18px;
        }

    }

    /* E : 메인 이동 버튼 */

    .main_inner {
        position: relative;
        top: 50%;
        margin: 0 auto;
        padding: 0;
        transform: translateY(-50%);
    }
    #eduwrap {
        height: 100vh;
        background: url(/platform/img/main/hive2/sub_01.jpg) no-repeat center / cover;
    }
    #coopewrap {
        height: 100vh;
        background: url(/platform/img/main/hive2/sub_02.jpg) no-repeat center / cover;
    }
    #boardwrap {
        height: 100vh;
        background: url(/platform/img/main/hive2/sub_03.jpg) no-repeat center / cover;
    }
    @media only screen and (max-width: 1199px){
        .main_inner {
            width: 100%;
            padding: 60px 20px 40px 20px;
        }
        #boardwrap .notice .bdlist {
            min-height: 130px;
        }
    }
/* E : 메인 */


/* S : label 아이콘 */
    .checkbox input:checked + label:before {
        background: url('/platform/img/hive2/checkbox_on.svg');
    }

    .radio input:checked + label:before {
        background: url('/platform/img/hive2/radio_on.svg');
    }
/* E : label 아이콘 */


/* S : sub-banner 이미지 */
    #subvs {
        height: 380px;
        position: relative;
    }
    .sub_v_03 {
        background: url(/platform/img/sub/subbnr01.jpg) no-repeat center / cover;
    }
    .sub_v_05 {
        background: url(/platform/img/sub/subbnr02.jpg) no-repeat center / cover;
    }
/* S : sub-banner 이미지 */


/* S : 가이드박스 아이콘 */
    .guide-box p.tit::before {
        background: url('/mysite/img/hive2/ico_info.svg') center center no-repeat;
    }
/* E : 가이드박스 아이콘 */


/* S : 타이틀 아이콘 */
    .con-box p.tit::before,
    .content-wrap p.tit::before,
    .input-container p.tit::before,
    .table-wrap p.tit::before {
        background: url('/mysite/img/hive2/ico_title.svg') center center no-repeat;
    }

    .con-box p.sub-tit::before {
        background: url('/mysite/img/hive2/ico_circle.png') center center no-repeat;
    }
/* E : 타이틀 아이콘 */


/* S : 테이블 스타일 별 색상 */
    .sub_box .table_type01 th {
        background: #EBF5F4;
        color: #3a4d48;
        font-weight: 600;
        vertical-align: middle;
        text-align: center;
    }
/* E : 테이블 스타일 별 색상 */


/* S : 소개-인사말 */
    .company .company_img {
        position: relative;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    .company .company_img>.logo {
        position: absolute;
        left: 50%;
        top: 45%;
        transform: translate(-50%, -50%);
    }

    .company .company_text{
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
    }
    .company .company_text .tit-wrap{
        margin: 40px 0 60px;
        padding: 40px 0;
        border: 1px solid #ddd;
        border-left: 0;
        border-right: 0;
    }
    #subbody .subcon .company .company_text .tit-wrap > p {
        text-align: center;
    }
    .company .company_text .tit-wrap .main-tit {
        font-size: 2em;
        font-weight: 600;
    }
    .company .company_text .tit-wrap .sub-tit {
        font-size: 1.5em;
        font-weight: 600;
    }
    .company .company_text .tit-wrap .sub-tit span {
        font-size: 1em;
        font-weight: 600;
    }
    .company .company_text .con-wrap h5 {
        font-weight: 600;
        margin: 10px 0;
    }
    .txt-green{
        color: var(--primary);
    }
/* E : 소개-인사말 */


/* S : 온라인교육콘텐츠 */
    .sub_box .edu_container .item .edu_table ul .edu.blue .edu_tit,
    .sub_box .edu_module .edu_module_tit.blue {
        background: #0e914d;
    }
    .sub_box .edu_container .item .edu_table ul .edu.pink .edu_tit,
    .sub_box .edu_module .edu_module_tit.pink,
    .sub_box .text_list_2.pink ul>li:before {
        background: #107742;
    }
/* E : 온라인교육콘텐츠 */

