/*------------------------------------------------------
· Innoteco Temporary Page Ver 1.0
· Type : custom.css
· Author : Albatrosss Pictures Kim Hyun Gyu
· Data : 2005.05.14
· Copyright @ 2005 Innoteco Temporary Page all rights reserved
---------------------------------------------------------
· SUMMARY:
0) Responsive Area
1) Import Font
2) Basic Set
3) Header
4) Quick Btn
5) Aside
6) GNB
7) Footer
8) Intro
9) Main
10) Sub
---------------------------------------------------------*/

@charset "utf-8";

:root {
    --set-list-count: 6;

    --board-list-checkbox-size: clamp(14px, .7813vw, 1.875rem);

    --board-bottom-btn-stroke-size: 1.5px;
    --board-bottom-btn-circle-size: 46px;

    --board-write-intro-stroke-size: 1px;
}

/* #################################### 02.Common Set #################################### */
.board-function {
    width: auto;
    height: auto;
    display: flex;
    margin-top: 125px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border: 2px solid #1b1b1b;
    border-radius: 500px;
    opacity: 0;
}

.board-function > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 23px 0;
}

.board-function > ul > li {
    position: relative;
    height: 100%;
    padding: 0 33px 0 33px;
    cursor: pointer;
}

.board-function > ul > li::before {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: rgba(255, 255, 255, 0.15);
    width: 1px;
    height: 100%;
}

.board-function > ul > li:last-child::before {
    display: none;
}

.board-function > ul > li > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 37px;
}

.board-function > ul > li > ul > li:first-child {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.board-function > ul > li > ul > li input {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 0;
    cursor: pointer;
}

.board-function > ul > li > a,
.board-function > ul > li > ul > li label,
.board-function > ul > li > ul > li button {
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-family-base);
    font-weight: 400;
    background: none;
    cursor: pointer;
    transition: all .3s;
}

.board-function > ul > li > ul > li:first-child input[type="checkbox"] {
    width: 20px;
    height: 20px;
    appearance: none;
    transition: all 0.3s;
    background: #fff;
    border: 4px solid #fff;
    border-radius: 300px;
    cursor: pointer;
}

.board-function > ul > li > ul > li:first-child input[type="checkbox"]:checked {
    background: var(--signature-color);
    border: 4px solid #fff;
}


/* 게시판 게시물 레이아웃 */
.board-output-wrap {
    position: relative;
    width: 75%;
    height: auto;
    margin: 125px auto 0 auto;
}

.board-output-frame {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    border-top: 2px solid var(--signature-color);
}

.board-output-frame article {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    padding: 28px;
    overflow: hidden;
    border-bottom: 1px solid #2d2d2d;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.board-output-frame article::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    transition: all .3s;
    background: transparent;
    z-index: -1;
}

.empty_list {
    display: block !important;
    text-align: center !important;
    cursor: auto !important;
}

.board-ouput-contents-left {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
}

.board-ouput-notiSet {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
    z-index: 1;
}

.board-ouput-notiSet-common {
    background: #121212;
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}

.board-ouput-secret i {
    font-size: 20px;
}

.board-ouput-noti i {
    font-size: 20px;
    animation-name: board-noti;
    animation-duration: .7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.1, -0.3, 0.2, 0);
}

@keyframes board-noti {
    from {
        color: #fff;
    }
    to {
        color: var(--signature-color);
    }
}

.board-ouput-new span {
    display: block;
    width: 11px;
    height: 11px;
    background: var(--signature-color);
    border-radius: 100px;
    animation-name: board-new-contents;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.1, -0.3, 0.2, 0);
}

@keyframes board-new-contents {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.board-ouput-checkbox { 
    width: var(--board-list-checkbox-size);
    height: var(--board-list-checkbox-size);
}

.board-ouput-checkbox input[type="checkbox"] {
    width: var(--board-list-checkbox-size);
    height: var(--board-list-checkbox-size);
    appearance: none;
    transition: all 0.3s;
    background: #fff;
    border: 4px solid #fff;
    border-radius: 300px;
    cursor: pointer;
}

.board-ouput-checkbox input[type="checkbox"]:checked {
    background: var(--signature-color);
    border: 4px solid #fff;
}

.board-ouput-checkbox label {
    display: none;
}

.board-ouput-contents-subject {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.board-output-modify.roll {
    background: #fff;
    border: 2px solid #fff;
}

.board-output-modify a {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.board-output-modify i {
    font-size: 15px;
    color: #fff;
    transition: all 0.5s;
}

.board-output-modify.roll i {
    color: #000;
}

.board-ouput-category {
    display: inline-block;
    border-radius: 100px;
    padding: 6px 19px;
    background: var(--signature-color);
}

.board-ouput-category h2 {
    font-size: 16px;
    font-weight: 600;
}

.board-ouput-subject {
    width: 830px;
    height: auto;
}

.board-ouput-subject a {
    font-size: 18px;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all .3s;
}

.board-ouput-contents-right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

.board-ouput-date p {
    font-size: 20px;
    text-align: center;
    font-weight: 400;
    color: #535353;
}

.board-output-modify {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: transparent;
    transition: all 0.5s;
    border: 2px solid #505050;
    z-index: 1;
}

.empty_list {
    width: 100%;
    height: auto;
    padding: 28px;
    text-align: center;
    font-size: 18px;
    font-weight: 200;
    border-bottom: 1px solid #2d2d2d;
}

/* 게시판 하단 넘버&검색 */
.board-output-bottom {
    width: 75%;
    height: 55px;
    margin: 93px auto 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.board-output-num-wrap {
    width: auto;
    height: calc(55px - 9px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.board-output-num-title {
    position: relative;
    width: auto;
    height: 100%;
}

.board-output-num-title img {
    width: auto;
    height: 100%;
}

.board-output-num-wrap span {
    width: calc(55px - 9px);
    height: 1px;
    background: #3b3b3b;
}

.board-output-num-frame {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.board-output-num-frame strong,
.board-output-num-frame a {
    font-size: 18px;
    font-weight: 400;
    width: calc(55px - 9px);
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 300px;
}

.board-output-num-frame i,
.board-output-num-frame strong,
.board-output-num-frame a {
    transition: all .3s;
}

.board-output-num-frame a:first-child,
.board-output-num-frame strong,
.board-output-num-frame a:last-child {
    background: #121212;
}

.board-output-num-frame strong {
    color: var(--signature-color);
    font-weight: 600;
}

.board-output-num-frame i {
    font-size: 14px;
    color: #8b8b8b;
}

.board-output-num-frame strong.roll,
.board-output-num-frame a.roll {
    background: #fff;
    color: #000;
}

.board-output-num-frame a.roll i {
    color: #000;
}

.board-output-bottom-search {
    width: auto;
    height: 100%;
}

.board-output-bottom-search fieldset {
    width: auto;
    height: 100%;
}

.board-output-bottom-search form {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.board-output-bottom-search select {
    font-size: 18px;
    text-align: center;
    font-weight: 200;
    color: #fff;
    width: 150px;
    height: 100%;
    background: transparent;
    border-bottom: 1px solid #2d2d2d;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}

.board-output-bottom-search select:focus {
    border-bottom: 1px solid var(--signature-color);
}

.board-output-bottom-search option {
    font-size: 1rem;
    color: #000;
}

.board-output-bottom-search-bar {
    position: relative;
    width: 400px;
    height: 100%;
    margin-left: 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.board-output-bottom-search-bar input,
.board-output-bottom-search-bar input::placeholder {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-family-base);
}

.board-output-bottom-search-bar input {
    width: 100%;
    height: 100%;
    padding: 0 calc(40px + 30px) 0 30px;
    outline: none;
    background: transparent;
    color: #fff;
    border-bottom: 1px solid #2d2d2d;
    transition: all 0.3s;
}

.board-output-bottom-search-bar input::placeholder {
    color: #757575;
    transition: all 0.3s;
}

.board-output-bottom-search-bar input:focus {
    border-bottom: 1px solid var(--signature-color);
}

.board-output-bottom-search-bar button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    margin: auto 0;
    width: calc(70px - 30px);
    height: calc(70px - 30px);
    background: transparent;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 300px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.board-output-bottom-search-bar i {
    font-size: 20px;
    color: #fff;
    transition: all 0.3s;
}

/* 게시판 보기 */
.board-function-view-subject-wrap {
    width: 100%;
    height: auto;
    border-top: 2px solid var(--signature-color);
    border-bottom: 1px solid #2d2d2d;
    padding: 35px;
    margin-top: 125px;
}

.board-function-view-subject-top {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 21px;
}

.board-function-view-top {
    position: relative;
    width: 70px;
    height: 100%;
    overflow: hidden;
    border-radius: 500px;
}

.board-function-view-top img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
}

.board-function-view-bottom {
    width: calc(100% - 70px - 21px);
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.board-function-view-subject-category {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: #141414;
}

.board-function-view-subject-category p {
    font-size: 18px;
    font-weight: 600;
    color: var(--signature-color);
}

.board-function-view-subject-title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.board-function-view-subject-title h1 {
    font-size: 20px;
    font-weight: 200;
}

.board-function-view-subject-bottom {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    border-top: 1px dashed #2d2d2d;
    margin-top: 25px;
    padding-top: calc(25px - 3px);
}

.board-function-view-subject-bottom {
    font-size: 18px;
    color: #2d2d2d;
}

.board-function-view-subject-bottom p {
    color: #fff;
}

.board-function-view-img {
    margin-top: 100px;
}

.board-function-view-img a {
    width: 35%;
    height: auto;
    margin: 0 auto;
}

.board-function-view-img img {
    width: 100%;
    height: auto;
}

.board-function-view-info {
    margin-top: 100px;
    padding: 0 35px;
}

.board-function-view-info p {
    font-size: 20px;
    font-weight: 200;
}

.board-function-view-add {
    padding: 0 35px;
    margin-top: 100px;
}

.board-function-view-add i {
    font-size: 13px;
    color: var(--signature-color);
}

.board-function-view-add p {
    font-size: 18px;
    font-weight: 200;
    padding: 23px;
    border-top: 1px dashed #2d2d2d;
    border-bottom: 1px dashed #2d2d2d;
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
}

.board-function-view-add p:first-child {
    margin-top: 0;
}

.board-function-view-attach {
    padding: 35px;
    margin-top: 100px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .1), transparent);
    border-radius: 16px;
}

.board-function-view-attach-file {
    margin-top: 100px;
}

.board-function-view-attach-link {
    margin-top: 50px;
}

.board-function-view-attach-link a {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all .3s;
}

.board-function-view-attach-title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 11px;
}

.board-function-view-attach-title i {
    font-size: 20px;
    color: #545454;
}

.board-function-view-attach-title h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--signature-color);
}

.board-function-view-attach ul {
    width: 100%;
    height: auto;
    margin-top: 22px;
}

.board-function-view-attach li {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 17px;
    border-bottom: 1px dashed #2d2d2d;
    padding-top: 16px;
    padding-bottom: 16px;
}

.board-function-view-attach li:first-child {
    padding-top: 0;
}

.board-function-view-attach li:last-child {
    border: none;
    padding-bottom: 0;
}

.board-function-view-attach-thumb {
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 500px;
}

.board-function-view-attach-thumb img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
}

.board-function-view-attach-thumb-info {
    width: calc(100% - 50px - 17px);
    height: 43px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}

.board-function-view-attach-thumb-info a {
    font-size: 17px;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all .3s;
}

.board-function-view-attach a {
    font-size: 17px;
}

.board-function-view-attach p {
    color: var(--signature-color);
    margin-top: 6px;
}

.board-function-view-comment {
    margin-top: 100px;
    border: 1px solid red;
    display: none;
}

.board-function-view-page {
    position: relative;
    width: 100%;
    height: calc((45px * 2) + 25px);
    padding-top: 45px;
    margin-top: 100px;
    border-top: 1px solid #212121;
}

.board-function-view-page-set {
    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: auto 0;
}

.board-function-view-page-left {
    right: auto;
    top: 0;
    bottom: 0;
    left: 0;
}

.board-function-view-page-right {
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
}

.board-function-view-page-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--board-bottom-btn-circle-size);
    height: var(--board-bottom-btn-circle-size);
}

.board-function-view-page-left .board-function-view-page-circle {
    left: 10px;
}

.board-function-view-page-right .board-function-view-page-circle {
    right: 10px;
}

.board-function-view-page-circle svg {
    width: 100%;
    height: 100%;
}

.board-function-view-page-circle circle {
    fill: none;
    stroke: url(#gradient_intro_board);
    stroke-width: var(--board-bottom-btn-stroke-size);
    r: calc((var(--board-bottom-btn-circle-size) / 2) - (var(--board-bottom-btn-stroke-size) / 2) - var(--board-bottom-btn-stroke-size));
}

.board-function-view-page-arrow {
    position: relative;
}

.board-function-view-page-arrow i {
    opacity: 1;
    font-size: 13px;
    color: #4d4d4d;
}

.board-function-view-page-btn {
    position: relative;
    width: calc(15vw - 26px);
    cursor: pointer;
    z-index: 1;
}

.board-function-view-page-left .board-function-view-page-btn {
    text-align: right;
    padding-left: 26px;
}

.board-function-view-page-left .board-function-view-page-btn::before {
    right: 0;
}

.board-function-view-page-right .board-function-view-page-btn {
    text-align: left;
    padding-right: 26px;
}

.board-function-view-page-right .board-function-view-page-btn::before {
    left: 0;
}

.board-function-view-page-btn h3 {
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--signature-color);
}

.board-function-view-page-btn a {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 5px;
    text-decoration-color: var(--signature-color);
}

.board-function-view-page-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 45px;
    bottom: auto;
    margin: 0 auto;
    width: 34px;
    height: 25px;
}

.board-function-view-page-list a {
    position: relative;
    width: 100%;
    height: 100%;
}

.board-function-view-page-list span {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: auto;
    bottom: auto;
    margin: 0 auto;
    width: 100%;
    height: 1px;
    background: #fff;
}

.board-function-view-page-list span:nth-child(4),
.board-function-view-page-list span:nth-child(5),
.board-function-view-page-list span:nth-child(6) {
    width: 0;
    background: var(--signature-color);
}
.board-function-view-page-list span:nth-child(1),
.board-function-view-page-list span:nth-child(4) {
    top: 0;
    bottom: auto;
}

.board-function-view-page-list span:nth-child(2),
.board-function-view-page-list span:nth-child(5) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.board-function-view-page-list span:nth-child(3),
.board-function-view-page-list span:nth-child(6) {
    top: auto;
    bottom: 0;
}

/* 게시판 쓰기 */
.board-write-intro {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    z-index: 2;
}

.board-write-intro-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 250px;
    display: flex;
    z-index: 1;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.board-write-intro-line-common {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.board-write-intro-line-common svg {
    width: 100%;
    height: 100%;
}

.board-write-intro-line-common line {
    fill: none;
    stroke: url(#gradient_intro_board);
    stroke-width: var(--board-write-intro-stroke-size);
}

.board-write-intro-line-2 {
    transform: rotate(300deg);
}

.board-write-intro-line-3 {
    transform: rotate(45deg);
}

.board-write-intro-logo {
    width: 280px;
    height: auto;
}

.board-write-intro-logo img {
    width: 100%;
    height: auto;
}

.board-write-intro-text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.board-write-intro-text h1 {
    font-size: 30px;
    font-weight: 600;
}

.board-write-intro-text p {
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4d4d4d;
}

.board-write-intro-loadingbar {
    position: relative;
    width: 100%;
    height: 1px;
}

.board-write-intro-loadingbar::before, 
.board-write-intro-loadingbar::after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
}

.board-write-intro-loadingbar::before {
    width: 100%;
    background: #4d4d4d;
}

.board-write-intro-loadingbar::after {
    width: 0;
    background: var(--signature-color);
}









.board-write-wrap {
    position: relative;
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding-top: 100px;
}

.ratio-video-board-write {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    filter: blur(16px);
}

.ratio-video-board-write::before, 
.ratio-video-board-write::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ratio-video-board-write::before {
    left: 0;
    background: linear-gradient(90deg, #000, transparent);
}

.ratio-video-board-write::after {
    right: 0;
    background: linear-gradient(-90deg, #000, transparent);
}

.board-write-input-frame {
    position: relative;
    width: 100%;
    height: auto;
    min-height: calc(100svh - 200px);
}

.board-write-input-frame form {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.board-write-input-left {
    position: relative;
    width: 40%;
    padding: 100px 0;
}

.board-write-input-left::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 1px;
    background: var(--signature-color);
    z-index: 1;
}

.board-write-input-right {
    width: 50%;
    padding: 80px;
    background: linear-gradient(90deg, transparent, rgb(0 0 0 / 70%));
    backdrop-filter: blur(16px);
    border-radius: 40px;
}

.board-wirte-common-magin {
    margin-top: 60px;
}

.board-wirte-input-pos input,
.board-wirte-input-pos input::placeholder {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-family-base);
}

.board-wirte-input-pos input {
    width: 100%;
    height: 100%;
    padding: 20px;
    outline: none;
    background: transparent;
    color: #fff;
    border-bottom: 1px solid #2d2d2d;
    transition: all 0.3s;
}

.board-wirte-input-pos input::placeholder {
    color: #757575;
    transition: all 0.3s;
}

.board-wirte-input-pos input:focus {
    border-bottom: 1px solid var(--signature-color);
}

.board-write-title h1 {
    font-size: 50px;
    font-weight: 100;
}

.board-write-title p {
    font-size: 22px;
    font-weight: 400;
    color: #4d4d4d;
    text-transform: uppercase;
}

.board-write-title h2 {
    font-size: 30px;
    font-weight: 500;
    margin-top: 65px;
}

.board-write-category {
    width: 150px;
    height: 50px;
    margin-top: 100px;
}

.board-write-category select {
    font-size: 18px;
    text-align: center;
    font-weight: 200;
    color: #fff;
    width: 100%;
    height: 100%;
    background: transparent;
    border-bottom: 1px solid #2d2d2d;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}

.board-write-category option {
    font-size: 1rem;
    color: #000;
}

.board-write-category select:focus {
    border-bottom: 1px solid var(--signature-color);
}

.board-write-option {
    width: 100%;
    height: auto;
    margin-top: 50px;
}

.board-write-option ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 22px;
}

.board-write-option li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

.board-write-option label {
    font-size: 18px;
    font-weight: 200;
    cursor: pointer;
}

.board-write-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    appearance: none;
    transition: all 0.3s;
    background: #fff;
    border: 4px solid #fff;
    border-radius: 300px;
    cursor: pointer;
}

.board-write-option input[type="checkbox"]:checked {
    background: var(--signature-color);
    border: 4px solid #fff;
}

.board-write-autosave > button {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    background: transparent;
    padding: 20px;
    border-top: 1px solid #4d4d4d;
    cursor: pointer;
}

.board-write-autosave button span {
    font-weight: 600;
    color: var(--signature-color);
}

.board-write-autosave-list {
    width: 100%;
    height: auto;
    border-top: 1px solid var(--signature-color);
    display: none;
}

.board-write-autosave-list ul {
    width: 100%;
    height: auto;
}

.board-write-autosave-list li {
    border-bottom: 1px dashed #2d2d2d;
    padding: 20px;
}

.board-write-autosave-list li:last-child {
    border-bottom: 0;
}

.board-write-autosave-list a {
    font-size: 18px;
    font-weight: 600;
}

.board-write-autosave-list a i {
    font-size: 18px;
    color: #4d4d4d;
    margin-right: 9px;
}

.board-write-autosave-list li span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #4d4d4d;
    margin-top: 3px;
}

.board-write-autosave-list li span button {
    font-size: 18px;
    font-weight: 500;
    color: red;
    background: transparent;
    cursor: pointer;
}

.board-write-autosave-btn {
    display: flex;
    padding: 20px;
    border-top: 1px solid #2d2d2d;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
}

.autosave_btn_common {
    transition: all .3s;
}

.board-write-autosave-btn button {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background: #161616;
    border-radius: 300px;
    padding: 21px 23px;
    line-height: 0;
    cursor: pointer;
}

.board-write-input-text textarea {
    width: 100%;
    height: auto;
    font-size: 18px;
    font-family: var(--font-family-base);
    font-weight: 400;
    color: #757575;
    background: transparent;
    border-bottom: 1px solid #4d4d4d;
    padding: 20px;
    resize: none;
    overflow: hidden;
    field-sizing: content;
    transition: all 0.3s;
}

.board-write-input-text textarea::placeholder {
    font-family: var(--font-family-base);
    font-size: 18px;
    color: #757575;
    font-weight: 400;
    transition: all .3s;
}

.board-write-input-text textarea:focus {
    color: #fff;
    outline: none;
    border-top: 1px solid var(--signature-color);
    border-bottom: 1px solid var(--signature-color);
}

.board-write-input-info {
    padding: 13px 25px;
    background: #1b1b1b;
    border-radius: 100px;
    display: inline-block;
}

.board-write-input-info p {
    font-size: 15px;
    font-weight: 300;
}

.board-write-input-list {
    margin-top: 25px;
    border-top: 1px solid var(--signature-color);
}

.board-write-input-list > ul {
    width: 100%;
    height: auto;
}

.board-write-input-list > ul > li {
    border-bottom: 1px solid #4d4d4d;
    padding: 20px;
}

.board-write-input-list-empty {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 17px;
}

.board-write-input-list-empty label {
    font-size: 16px;
    font-weight: 600;
}

.board-write-input-list-attact-info input[type="checkbox"] {
    width: 16px;
    height: 16px;
    appearance: none;
    transition: all 0.3s;
    background: #fff;
    border: 3px solid #fff;
    border-radius: 300px;
    cursor: pointer;
}

.board-write-input-list-attact-info input[type="checkbox"]:checked {
    background: var(--signature-color);
    border: 3px solid #fff;
}

.board-write-input-list-attact-file {
    width: 100%;
    height: auto;
    border-top: 1px dashed #4d4d4d;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
}

.board-write-input-list-attact-img {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    overflow: hidden;
}

.board-write-input-list-attact-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
}

.board-write-input-list-attact-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.board-write-input-list-attact-info span:nth-child(1) {
    color: #4d4d4d;
    margin: 0 9px;
}

.board-write-input-list-attact-info span:nth-child(2) {
    color: var(--signature-color);
    margin-left: 5px;
}

.board-write-input-captcha {
    width: 100%;
    height: auto;
}

.board-write-input-captcha fieldset {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
}

.board-write-input-captcha legend {
    width: 100%;
    padding-bottom: 13px;
    margin-bottom: 16px;
    border-bottom: 1px solid #4d4d4d;
}

.board-write-input-captcha label {
    font-size: 18px;
    font-weight: 600;
}

.board-write-input-captcha img {
    width: auto;
    height: 46px;
} 

.board-write-input-captcha input,
.board-write-input-captcha input::placeholder {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-family-base);
}

.board-write-input-captcha input {
    width: 125px;
    height: 46px;
    padding: 0 20px;
    outline: none;
    background: transparent;
    color: #fff;
    border-bottom: 1px solid #2d2d2d;
    text-align: center;
    transition: all 0.3s;
}

.board-write-input-captcha input::placeholder {
    color: #757575;
    transition: all 0.3s;
}

.board-write-input-captcha input:focus {
    border-bottom: 1px solid var(--signature-color);
}

.board-write-input-captcha button {
    font-size: 14px;
    color: #fff;
    background: #161616;
    border-radius: 300px;
    padding: 18px 24px;
    line-height: 0;
    cursor: pointer;
    transition: all .3s;
}

.board-write-btn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.board-write-btn a,
.board-write-btn button {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #161616;
    border-radius: 300px;
    padding: 23px 24px;
    line-height: 0;
    cursor: pointer;
    transition: all .3s;
}

/* Hover Set */
.board-function > ul > li > a.roll,
.board-function > ul > li > ul > li label.roll,
.board-function > ul > li > ul > li button.roll {
    color: var(--signature-color);
}

.board-output-frame article.roll::before {
    background: #070707;
}

.board-output-frame article.roll .board-ouput-subject a {
    text-decoration-color: var(--signature-color);
}

.board-output-bottom-search select.roll {
    border-bottom: 1px solid #fff;
}

.board-output-bottom-search-bar input.roll {
    border-bottom: 1px solid #fff;
}

.board-output-bottom-search-bar input.roll::placeholder {
    color: #fff;
}

.board-output-bottom-search-bar button.roll {
    background: var(--signature-color);
}

.board-output-bottom-search-bar button.roll i {
    color: #fff;
}

.board-function-view-attach-link a.roll,
.board-function-view-attach-thumb-info a.roll {
    text-decoration-color: var(--signature-color);
}

.board-wirte-input-pos input.roll {
    border-bottom: 1px solid #fff;
}

.board-wirte-input-pos input.roll::placeholder {
    color: #fff;
}

.board-write-input-text textarea.roll {
    border-bottom: 1px solid #fff;
}

.board-write-input-text textarea.roll::placeholder {
    color: #fff;
}

.board-write-category select.roll {
    border-bottom: 1px solid #fff;
}

.board-write-autosave-btn button.roll {
    background: var(--signature-color); 
}

.board-write-input-captcha input.roll {
    border-bottom: 1px solid #fff;
}

.board-write-input-captcha input.roll::placeholder {
    color: #fff;
}

.board-write-input-captcha button.roll {
    background: var(--signature-color);
}

.board-write-btn a.roll,
.board-write-btn button.roll {
    background: var(--signature-color);
}