/***** Color Chart *****/
/*
Normal Text : #342f2d;
Hover Text : #093696;
*/
/***********************/

.job {
    display: inline-flex;
    flex-direction: column;
    padding-right: 30px;
    gap: 30px;
}

.job_title {
    width: 90%;
    font-family: 'NanumSquareNeoBold';
    font-size: 30px;
    line-height: 2.6rem;
}

.job_info {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 15px;

    font-family: 'NanumSquareNeoBold';
    font-size: 12px;
    color: #5d5d5d;
}

.job .job_info input {
    border: transparent;
    background-color: transparent;
    width : 72px;
    height :fit-content;

    font-family: 'NanumSquareNeoBold';
    font-size: 12px;
    color: #5d5d5d;
}

.job .job_info span:nth-child(-n+3)::after{
    display: inline-block;
    width: 20px;
    text-align: center;
    content: "|";
}

.job_subtitle textarea {
    width: 98%;
    resize: none;
    border-left: 5px solid #093696;
    padding-left: 10px;

    text-align: left;
    font-family: 'NanumSquareNeoBold';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -1px;
}

.job_subtitle textarea:disabled {
    background-color: transparent;
    border: transparent;
    border-left: 5px solid #093696;
}

.job_content {
    padding-bottom: 50px;
    border-bottom: 1px solid #5d5d5d;
}

.job_content p {
    font-family: 'NanumSquareNeo';
    font-size: 16px;
    line-height: 1.6rem;
    letter-spacing: -0.5px;
}

.job_content span {
    line-height: 1.6rem;
}

/* job Write */

.job-write {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}

#jobForm {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.job-write .job_info_group {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 20px;
    padding: 30px;
    row-gap: 20px;

    border: 1px solid #E3E5E8;
    border-radius: 10px;
}

.job-write .job_info_group .company_img{
    display: inline-flex;
    flex-direction: row;
    width: 100%;
}

.job-write .job_info_group #companyImgFile{
    width: calc(100% - 200px);
}

.job-write .job_info_group img{
    display: inline-block;
    width: 200px;
    height: 100px;
}

.job-write .job_info_group.job_company_info {
    position: relative;
}

.job-write .job_info_group #companyModifyCheck {
    position: absolute;
    top: 140px;
    left: 25px;
}

.job-write .job_info_group input[type="text"]{
    font-size: 14px;
}

.job-write input[type="text"] {
    width: 100%;
    padding: 7px;
    font-size: 14px;
    letter-spacing: -2%;
    border: 1px solid #CCCED1;
}

.job-write select {
    width: 100%;
    padding: 7px;
    font-size: 14px;
    letter-spacing: -0.5px;
    border: 1px solid #CCCED1;
}

.job-write .job_info input {
    border: transparent;
    background-color: transparent;
    width : 80px;
    height :fit-content;

    font-family: 'NanumSquareNeoBold';
    font-size: 12px;
    color: #5d5d5d;
}

.job-write .job_info span:nth-child(-n+5)::after {
    display: inline-block;
    width: 20px;
    text-align: center;
    content: "|";
}

.job-write .job_radio {
    display: inline-flex;
    width: 100%;
    height: 32px;
    align-items: center;
    margin-bottom: 5px;
    gap: 7px;
    font-size: 14px;
}

.job-write input[type=radio]{                
    appearance:none;              
    width: 13px;                       
    height: 13px;                       
    border: 1px solid #d6d6d6;  
    border-radius: 50%;              
}
    
.job-write input[type=radio]:checked{      
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #093696;
    border: 2px solid #fff; 
    outline: 1px solid #093696;
}

.job-write input[type=radio]:checked:disabled{      
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: gray;
    border: 2px solid #fff; 
    outline: 1px solid gray;
}

#companySearchArea {
    position : relative;
    width: 60%;
    margin-left: 5px;
}

#searchInput {
    width: 100%;
    padding: 7px;
}

#initSearchInput {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}

#searchResult {
    width: 100%;
}

#searchResult span {
    width: 100%;
    position: absolute;
    display: inline-block;
    padding: 5px;
    border: 1px solid #dedede; 
}

#searchResult span:hover {
    cursor: pointer;
    background-color: #e2efff;
}

.job-write input[type="checkbox"] {
    accent-color: #093696;
}

.job_desc {
    display: inline-block;
    padding: 5px;
    border: 1px solid #edf1f7;
    background-color: #f9f9f9;
    font-size: 12px;
    letter-spacing: -0.5px;
}

/* job Bottom Area */
.job_bottom {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}

.job_keyword {
    margin-bottom: 20px;
}

.job_keyword span::before{
    content: "#";
}

.job_keyword span{
    display: inline-block;
    padding: 7px 12px;
    margin-right : 5px;
    background-color: #f1f1f0;
    border: 1px solid #093696;

    font-family: 'NanumSquareNeoBold';
    font-size: 12px;
    color: #093696;
}

.job_url {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 14px;
}

.job_url span{
    display: inline-block;
    width: 100%;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    padding: 0 0 15px;
    line-height: 24px;

    font-family: 'NanumSquareNeoBold';
    font-size: 0.8rem;
    letter-spacing: 0;
    color: #5d5d5d;
}

.job_url i{
    display: inline-block;
    margin-right: 5px;
    padding: 5px;
    background-color: #e2efff;
    border-radius: 20px;
    font-size: 15px;
    color: #093696;
}

.job_url a{
    padding-left: 5px;
    color: #5d5d5d;
}

.job_button {
    display: inline-flex;
    justify-content: flex-end;
    gap: 10px;
}

/*********************** Job View ***********************/
#job_card_header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    margin: 0 auto;

    flex-direction: row;
    justify-content: space-between;
}

#job_card_white {
    width: 75%;
    color: black;
}

#job_card_white.card_box_top_blue{
    padding-right: 100px !important;
}


#job_card_blue {
    width: 32%;
    height: 380px;
    margin-top: 20%;
    margin-left: -50px;
    padding: 50px;

    background: linear-gradient(180deg, #093696 0%, #001A52 100%);
    border-radius: 10px;

    color: white;
}

#job_card_blue th {
    font-family: 'NanumSquareNeoExtraBold';
    color: white;
}

#job_card_blue td {
    color: white;
}

.job_title {
    width: 100%;
    font-family: 'NanumSquareNeoExtraBold';
    font-size: 32px;
    line-height: 54px;
    word-break: keep-all;

    margin-bottom: 40px;
}

.job_subtitle {
    display: inline-flex;
    height: 33px;
    font-family: 'NanumSquareNeoExtraBold';
    font-size: 32px;
    color: black;

    margin-top: 100px;
    margin-bottom: 30px;
}

.job_subtitle span {
    margin-left : 15px;
    margin-top: -1px;
}

.job_company_title {
    font-family: 'NanumSquareNeo';
    color: #352F2D;
    font-size: 20px;
    line-height: 36px;
}

.job_info_subtitle {
    display: inline-flex;
    height: 22px;
    font-family: 'NanumSquareNeoExtraBold';
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 30px;
}

.job_icon ul {
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;

    margin-top: 40px;
}

.job_icon ul li{
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    width: 25%;
}

.job_icon img {
    height: fit-content;
}

.job_icon h2{
    display: inline-block;
    margin: 0 0 0 15px;

    font-family: 'NanumSquareNeoBold';
    font-size: 16px;
    line-height: 150%;
    color: rgba(0,0,0,0.6);
    letter-spacing: -4%;
}

.job_icon_title {
    font-family: 'NanumSquareNeoExtraBold';
    color: black;
}

.job_addr {
    display: inline-flex;
    gap: 10px;

    font-family: 'NanumSquareNeoExtraBold';
    font-size: 20px;
    color: black;

    margin-bottom: 30px;
}

.job_addr img{
    height: fit-content;
}

.job_addrArea {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.job_addrArea button{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.company_logo {
    width: 20%;
}

#dday_set {
    height:fit-content;
    margin: auto 40px;
    min-width: 16.5%;
    text-align: center;
    text-wrap: nowrap;
}

.dday_area {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 65px;
}

.dday_text {
    margin: 0;
    font-family: 'NanumSquareNeoHeavy';
    font-size: 68px;
    line-height: 30px;
    letter-spacing: -5px;

    color: #093696;

    -webkit-text-stroke: 10px solid #093696;
}

.dday_detail {
    margin: 10px auto;
    text-align: center;

    font-family: 'NanumSquareNeoExtraBold';
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -2%;
    color: #352F2D;
}

.dday_detail span:not(:nth-child(2)) {
    margin-left: -5px;
}

.apply_information {
    display: inline-flex;
    align-items: center;
    margin: 10px 0;
    height: 14px;

    color: rgba(0,0,0,0.4);
}

.job_notice {
    margin-top: 100px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;

    font-family: 'NanumSquareNeoBold';
    font-size: 16px;
    line-height: 24px;

    color: rgba(0,0,0,0.4);
}

.job_notice_company_name {
    color: #093696;
}

@media screen and (max-width:980px) {
    #job_card_white.card_box_top_blue{
        padding-right: 70px !important;
    }

    #job_card_blue {
        width: 30%;
        height: fit-content;
        margin-top: 25%;
        margin-left: -30px;
        padding: 30px;
    }

    .job_icon ul li{
        height: 36px;
    }
    
    .job_icon h2{
        height: 36px;
        margin: 0 0 0 10px;

        font-size: 14px;
        line-height: 20px;
    }
}
@media screen and (max-width : 680px) {
    #job_card_white {
        width: 100%;
    }

    #job_card_white.card_box_top_blue {
        padding: 30px !important;
    }

    #job_card_blue {
        display: none;
    }

    .job_company_title {
        font-size : 18px;
    }

    .job_title {
        font-size: 26px;
        line-height: 42px;
    }

    .mob_reverse {
        display: inline-flex;
        flex-direction: column-reverse;
    }

    .job_icon ul {
        margin-top: 0;
        flex-wrap: wrap;
    }

    .job_icon ul li{
        width: 45%;
        height: max-content;
        justify-content: flex-start;
        margin-bottom: 66px;
    }

    .job_icon ul li:nth-child(odd){
        width: 55%;
    }

    .job_icon h2 {
        font-size: 13px;
        word-break: keep-all;
    }

    .job_icon_area {
        min-width: 50px;
        display: inline-flex;
        justify-content: center;
    }

    .job_info .open_table {
        border: none;
        flex-direction: column;
        width: 100%;
    }

    .job_info .open_table div {
        width: 100%;
        padding: 10px 0 20px;
    }

    .job_info .open_table div:nth-child(2) {
        padding: 0;
        border: none;
    }
    
    .job_subtitle {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    .job_subtitle img {
        height: 24px;
        border-radius: 0;
    }

    .card_box_top_blue .board_content {
        width: 100%;
    }

    .card_box_top_blue .board_content img {
        width: 100% !important;
        height: auto !important;
    }

    .job_addr {
        font-size: 14px;
        line-height: 1.5rem;
        word-break: keep-all;
    }

    #company_info2 {
        flex-direction: column;
        gap: 0;
    }

    #company_info2 .company_logo {
        margin: 20px 0 !important;
    }

    #company_info2 .divide_line_horizonal, #company_info2 .detail_table_second .job_info_subtitle {
        display: none;
    }

    #company_info2 .detail_table_second {
        margin-left: 0;
    }

    #job_end_time {
        flex-direction: column;
    }

    #job_end_time .divide_line_horizonal {
        display: none;
    }

    #job_end_time .detail_table_second{
        margin-left: 0;
    }

    #job_end_time .long_text {
        width: 60%;
    }
}