/***** Color Chart *****/
/*
Normal Text : #342f2d;
Hover Text : #093696;
*/
/***********************/

.cke_notification.cke_notification_warning { display: none; }

.board {
    display: inline-flex;
    flex-direction: column;
    padding-right: 30px;
    max-width: 865px;
}

.board_header {
    display: flex;
    width: 100%;
}

.board_title {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    padding: 30px 0;
    align-items: flex-start;

    font-weight: 500;
    font-size: 1rem;
    line-height: 2rem;

    border-top: 2px solid black;
    border-bottom: 1px solid #d8d8d8;
    gap: 10px;
}

.board .board_info {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;

    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #5d5d5d
}

.board .board_info input {
    border: transparent;
    background-color: transparent;
    width : 80px;
    height :fit-content;

    font-size: 14px;
    font-weight: 600;
    color: #5d5d5d;
    text-align: center; 
}

.board .board_info span:not(:last-child)::after{
    display: inline-block;
    width: 30px;
    text-align: center;
    content: "|";
    line-height: 18px;
}

.board_cnt i {
    color:#d8d8d8;
}

.board_subtitle textarea {
    width: 100%;
    resize: none;
    border-left: 5px solid var(--main-color);
    padding-left: 10px;

    text-align: left;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.board_subtitle textarea:disabled {
    background-color: transparent;
    border: transparent;
    border-left: 5px solid var(--main-color);
}


.board.news .board_content img {
    margin: 20px auto;
}
.board.news .board_content p {
    font-weight: 400;
    line-height: 1.5rem;
}

.board_product_desc {
    color: #5d5d5d;
    font-size: 14px;
    line-height: 22px;
    padding: 20px;
    border: 1px solid #dfdfdf;
}

.fileList {
    display: inline-flex;
    flex-direction: column;
}

.fileList .file a {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    padding: 7px 0;
    gap: 10px;
}

.fileList .file a span {
    font-size: 1rem;
    line-height: 1rem;
}

.img-thumbnail {
    width: 80px;
    height: 80px;
    padding: 10px;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
}

.fileList i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #d8d8d8;
}

.fileList a:hover i {
    color: #bfd5de;
}

.btnFileDel {
    background-color: transparent;
    font-size: 10px;
    color: red;
}

/** 이전글/다음글 표기 */
.prevNextBoard {
    margin: 30px 0;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.prevBoard, .nextBoard {
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #d8d8d8;
}

.prevNextTitle {
    font-size: 13px;
    color: #d8d8d8;
}

.prevTitle, .nextTitle,
.prevNoTitle, .nextNoTitle {
    font-size: 14px;
    margin-left: 40px;
}
.prevNoTitle, .nextNoTitle {
    color: #a8a8a8;
}

.board_icon_area {
    margin: 10px auto;
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
}

.board_icon_area a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    border-radius: 5px;

    background-color: #17619E;
    color: white;
    font-size: 0.8rem;
}

@media screen and (max-width: 860px) {
    .board {
        padding: 0 50px;
        gap: 20px;
    }

    .board_header {
        display: flex;
        width: 100%;
        margin: 50px auto 0;
        padding: 0 50px;
    }

    .board_title {
        width: 100%;
        padding: 30px 20px;
        font-size: 24px;
        line-height: 2.6rem;
        word-break: break-all;
    }

    .prevBoard, .nextBoard {
        padding: 20px;
    }

    .prevTitle, .nextTitle,
    .prevNoTitle, .nextNoTitle {
        font-size: 17px;
        margin-left: 30px;

        display: inline-block;
        overflow: hidden;
        max-width: 70%;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 640px) {
    .board {
        padding: 030px;
        gap: 20px;
    }

    .board_header {
        margin: 30px auto 0;
        padding: 0 30px;
    }

    .board_title {
        width: 100%;
        padding: 30px 20px;
        font-size: 24px;
        line-height: 2.6rem;
        word-break: break-all;
    }

    .board .board_info {
        font-size: 15px;
    }
    
    .board .board_info input {
        font-size: 15px;
        width: 85px;
    }

    .board .board_info span:not(:last-child)::after{
        width: 20px;
    }

    .board_subtitle textarea {
        width: 100%;
        resize: none;
        padding-left: 7px;
    
        font-weight: 600;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0;
        color: #093696;
    }

    .board_content p {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0;
        word-break: break-all;
    }

    .board_content p img{
        max-width: 100% !important;
        height: auto !important;
    }
}

/* Board Write */

.board-write {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}

#boardForm {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}

.board-write input[type="text"] {
    height: 32px;
    padding: 5px;
    font-size: 16px;
    border: 1px solid #CCCED1;
}

.board-write select {
    padding: 7px;
    font-size: 14px;
    border: 1px solid #CCCED1;
}

.board-write select:disabled {
    background-color: lightgray;
}

.board-write input[type="text"] {
    width: 100%;
    padding: 7px;
    font-size: 14px;
    letter-spacing: -2%;
    border: 1px solid #CCCED1;
}

.board-write .board_info {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    font-size: 16px;
    line-height: normal;
}

.board-write .board_info input {
    border: transparent;
    background-color: transparent;
    width : 96px;
    height :fit-content;

    font-weight: 500;
    font-size: 12px;
    color: #5d5d5d;
    text-align: center; 
}

.board-write .board_info .board_vcnt {
    display: inline-block;
    width: 80px;
    height :fit-content;
    padding: 7px;

    font-weight: 500;
    font-size: 12px;
    color: #5d5d5d;
    text-align: center; 
}

.board-write .board_info span:nth-child(-n+5)::after {
    display: inline-block;
    width: 20px;
    text-align: center;
    content: "|";
    font-size: 16px;
}

.board-write textarea {
    width: 100%;
    font-size: 14px;
    border: 1px solid #CCCED1;
}

.board-write .board_radio {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
}

.board-write input[type=radio]{                
    appearance:none;              
    width: 13px;                       
    height: 13px;                       
    border: 1px solid #d6d6d6;  
    border-radius: 50%;              
}
    
.board-write input[type=radio]:checked{      
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: var(--main-color);
    border: 2px solid #fff; 
    outline: 1px solid var(--main-color);
}

.board-write input[type=radio]:checked:disabled{      
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: gray;
    border: 2px solid #fff; 
    outline: 1px solid gray;
}

.board-write input[type="checkbox"] {
    accent-color: var(--main-color);
}

.board-write .attach_file_button_area {
    width: 100%;
    position: relative;
    display: inline-flex;
}

.board-write .attach_file_button_area .attach_file_button {
    display: inline-flex;
    flex-direction: row;
    gap: 5px;
    margin-left: 10px;
}

.board-write .attach_file_button_area .attach_file_button a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    width: 18px;
    height: 18px;
    border: 1px solid #a8a8a8;
    border-radius: 4px;
}

.board-write .multipleFile {
    line-height: 18px;
}

.board-write .multipleFile:nth-child(n+2) {
    margin-top: 5px;
}

.board_group {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 20px;
    padding: 30px;
    row-gap: 30px;

    border: 1px solid #E3E5E8;
}

.board_group label{
    margin-left: 20px;
    margin-right: 50px;
}

.inquiry_title {
    font-weight: 500;
    width: 15%;
    font-size: 14px;
    line-height: 32px;
}

.board_desc {
    display: inline-block;
    padding: 5px;
    border: 1px solid #edf1f7;
    background-color: #f9f9f9;
    font-size: 12px;
    letter-spacing: -0.5px;
}

@media screen and (max-width: 640px) {
    .board_group .width-50 {
        width: 100%;
        word-break: keep-all;
    }

    .board_group .width-50:nth-child(odd) {
        padding-right: 0;
    }

    .board-write .inquiry_title {
        width: 20%;
        margin-right: 10px;
        word-break: keep-all;
    }
}

/* Board Bottom Area */
.board_bottom {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}

.board_keyword {
}

.board_keyword span::before{
    content: "#";
}

.board_keyword span{
    display: inline-block;
    padding: 7px 12px;
    margin-right : 5px;
    margin-bottom: 10px;
    background-color: rgba(85, 141, 226, 0.15);
    border-radius: 100px;

    font-weight: 400;
    font-size: 12px;
    color: var(--main-color);
}

.board_url {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 14px;
}

.board_url span{
    display: inline-block;
    width: 100%;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    padding: 0 0 15px;
    line-height: 24px;

    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0;
    color: #5d5d5d;
}

.board_url i{
    display: inline-block;
    margin-right: 5px;
    padding: 5px;
    background-color: #e2efff;
    border-radius: 20px;
    font-size: 15px;
    color: var(--main-color);
}

.board_url a{
    padding-left: 5px;
    color: #5d5d5d;
}

.board-write .terms_wrap {
    width: 100%;
    text-align: center;
    margin: 30px auto;
}

.board-write .bigLoginBtn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 48px;
    margin: 0 auto 250px;
    padding: 12px 0px;

    outline: none;
    border: none;
    background: var(--main-color);
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}