/*------------------------------------------------------
· 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: 4;
    --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: 100%;
    height: auto;
    margin-top: 125px;
}

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

.board-output-frame article {
    position: relative;
    width: calc((100% - (90px * (var(--set-list-count) - 1))) / var(--set-list-count));
    height: auto;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
}

.board-output-frame article::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 85%;
    height: 90%;
    border-radius: 19px;
    background: #000;
    transition: all .3s;
}

.empty_list::before {
    display: none !important;
}

.empty_list {
    width: 100% !important;
    height: auto !important;
    font-size: clamp(.875rem, .625vw, 1.5rem) !important;
    text-align: center !important;
    padding: 20px 30px !important;
    background: rgba(255, 255, 255, .05) !important;
    border-radius: 500px !important;
    cursor: auto !important;
}

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

.board-ouput-notiSet {
    position: absolute;
    left: 50%;
    top: calc(370px / 7);
    transform: translateX(-50%);
    padding: 12px 22px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(5px);
    border-radius: 100px;
    gap: 14px;
    z-index: 2;
    transition: all .3s;
}

.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 {
    position: absolute;
    left: calc(30px - 5px);
    top: calc(30px - 5px);
    width: 10%;
    height: 10%;
    z-index: 2;
}

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

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

.board-output-modify {
    position: absolute;
    right: calc(30px - 5px);
    top: calc(30px - 5px);
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: transparent;
    transition: all 0.5s;
    border: 2px solid #505050;
    z-index: 2;
}

.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-ouput-thumbnail-wrap {
    position: relative;
    width: 100%;
    height: 370px;
    padding: 30px;
    overflow: hidden;
    display: flex;
    border-radius: 18px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.board-ouput-thumbnail-wrap::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    z-index: 1;
}

.board-ouput-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    box-shadow: 3px 3px 20px #000;
    z-index: 1;
    transform: scale(1);
    filter: grayscale(0);
    transition: all .4s ease-in-out;
}

.board-ouput-thumbnail-active .board-ouput-thumbnail::after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .85));
    border-radius: 18px;
    z-index: 1;
    transition: all .3s;
}

.board-ouput-thumbnail-passive {
    border: 1px solid #141414;
}

.board-ouput-thumbnail-empty {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: #111111 url(../img/logo_ori_white.svg) center center no-repeat;
    background-size: 60% auto;
}

.board-ouput-icon-play {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    display: flex;
    z-index: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(2px);
    border-radius: 100px;
    opacity: 0;
    transition: all .3s;
}

.board-ouput-icon-play i {
    font-size: 20px;
    color: var(--signature-color);
}

.board-ouput-icon-mark {
    position: absolute;
    left: calc(40px + 10px);
    top: calc(370px - 167px);
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(2px);
    z-index: 1;
    transition: all .3s;
}

.board-ouput-icon-mark i {
    font-size: 18px;
    color: var(--signature-color);
}

.board-ouput-title {
    position: absolute;
    left: calc(40px + 10px);
    top: calc(370px - 99px);
    width: 62%;
    height: 2.8125rem;
    overflow: hidden;
    padding: 0 21px;
    border-radius: 100px;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.board-ouput-title-symbol {
    width: auto;
    height: 47%;
}

.board-ouput-title-symbol img {
    width: auto;
    height: 100%;
}

.board-ouput-title h1 {
    width: auto;
    height: auto;
    font-size: clamp(.875rem, .625vw, 1.5rem);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .3s;
}

.board-ouput-category {
    position: absolute;
    left: calc(40px + 10px);
    top: calc(370px / 7);
    padding: 10px 21px;
    display: flex;
    border-radius: 100px;
    background: var(--signature-color);
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: all .3s;
}

.board-ouput-category h2 {
    font-size: clamp(.875rem, .625vw, 1.5rem);
    font-weight: 600;
}

.board-ouput-text {
    display: none;
}

.board-ouput-add {
    display: none;
}


.board-ouput-add p::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 5px;
    height: 5px;
    background: var(--signature-color);
    border-radius: 100px;
}

.board-ouput-add p:nth-child(1) {
    margin-top: 0;
}

.board-ouput-date {
    position: absolute;
    right: calc(40px + 10px);
    top: calc(370px - 99px);
    width: 5.3125rem;
    height: clamp(2.25rem, 1.7578vw, 4.1875rem);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background: var(--signature-color);
    border-radius: 100px;
    z-index: 1;
    transition: all .3s;
}

.board-ouput-date p {
    font-size: clamp(.875rem, .625vw, 1.5rem);
    font-weight: 300;
    color: #fff;
}

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

.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-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;
}

.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: var(--signature-color);
    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;
}

/* 게시판 게시물 팝업 */
.board-popup-wrap {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: -1;
    opacity: 0;
}

.board-popup-wrap {

}

.board-popup-close {
    position: absolute;
    left: 50%;
    bottom: 8vh;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    padding: 14px 27px;
    background: #141414;
    border-radius: 100px;
    cursor: pointer;
    opacity: 1;
    transition: all .3s;
}

.board-popup-close p {
    font-size: clamp(.875rem, .7031vw, 1.6875rem);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.board-popup-list-wrap {
    position: relative;
    width: 85%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.board-popup-list-frame {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 7vw;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    opacity: 0;
}

.board-popup-list-prev {
    left: 0;
}

.board-popup-list-next {
    right: 0;
}

.board-popup-list-in-frame {
    position: relative;
    width: 7vw;
    height: 30vh;
    padding-top: 5vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
}

.board-popup-list-thumbnail {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    filter: grayscale(0);
    transform: scale(1);
    transition: all .3s;
}

.board-popup-list-prev .board-popup-list-thumbnail::before,
.board-popup-list-next .board-popup-list-thumbnail::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.board-popup-list-prev .board-popup-list-thumbnail::before {
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .9));
}

.board-popup-list-next .board-popup-list-thumbnail::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .9), transparent);
}

.board-popup-list-icon {
    position: relative;
}

.board-popup-list-icon i {
    font-size: 35px;
    color: var(--signature-color);
}

.board-popup-list-in-frame p {
    position: relative;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 1;
    transition: all .3s;
}

.board-popup-list-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 70%;
    bottom: auto;
    margin: 0 auto;
    transform: translateY(-50%);
    width: 1px;
    height: 42%;
    background: #fff;
    opacity: 0;
    transition: all .3s;
}

.board-popup-list-line span {
    display: block;
    width: 1px;
    height: 0;
    background: var(--signature-color);
    transition: all .5s ease-in-out;
}

.board-popup-list-frame h1 {
    margin-top: 4vh;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: clamp(.875rem, .7031vw, 1.6875rem);
    font-weight: 200;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all .3s;
}

.board-popup-current-frame {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
    cursor: pointer;
    opacity: 0;
}

.board-popup-current-video {
    width: 100%;
    height: auto;
}

.board-popup-current-video iframe {
    width: 100%;
    height: auto;
    border-radius: clamp(.625rem, .7813vw, 1.875rem);
    overflow: hidden;
}

.board-popup-current-frame p {
    font-size: clamp(1.125rem, .8594vw, 2.0625rem);
    font-weight: 700;
    text-align: center;
    color: var(--signature-color);
    margin-top: 4vh;
}

.board-popup-current-frame h1 {
    width: 70%;
    overflow: hidden;
    margin: 0 auto;
    font-size: clamp(1rem, .8594vw, 2.0625rem);
    font-weight: 500;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 1vh;
}

.board-popup-current-frame h2 {
    width: 70%;
    overflow: hidden;
    margin: 0 auto;
    font-size: clamp(.875rem, .7813vw, 1.875rem);
    font-weight: 400;
    text-align: center;
    color: #737373;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 2vh;
}

/* 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-modify.roll {
    background: #fff;
    border: 2px solid #fff;
}

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

.board-output-frame article.roll .board-ouput-thumbnail-check {
    transform: scale(1.5);
    filter: grayscale(1);
}

.board-output-frame article.roll .board-ouput-thumbnail::after {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0));
}

.board-output-frame article.roll .board-ouput-icon-play  {
    opacity: 1;
}

.board-output-frame article.roll .board-ouput-notiSet,
.board-output-frame article.roll .board-ouput-category,
.board-output-frame article.roll .board-ouput-date,
.board-output-frame article.roll .board-ouput-icon-mark {
    opacity: 0;
}

.board-output-frame article.roll .board-ouput-title {
    width: 100%;
}

.board-output-frame article.roll .board-ouput-title h1 {
    text-decoration-line: underline;
    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: underline;
    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);
}

.board-popup-close.roll {
    background: var(--signature-color);
}

.board-popup-list-prev.roll .board-popup-list-thumbnail::before,
.board-popup-list-next.roll .board-popup-list-thumbnail::before {
    width: 0;
}

.board-popup-list-frame.roll .board-popup-list-in-frame p {
    opacity: 0;
}

.board-popup-list-frame.roll .board-popup-list-line {
    opacity: 1;
}

.board-popup-list-frame.roll .board-popup-list-line span {
    height: 100%;
}

.board-popup-list-frame.roll .board-popup-list-thumbnail {
    transform: scale(1.1);
    filter: grayscale(1);
}

.board-popup-list-frame.roll h1 {
    font-weight: 600;
    color: var(--signature-color);
}

/* **************************************************************
    0) Responsive Area
************************************************************** */
@media all and (max-width: 2215px) {
    :root {
        --set-list-count: 3;
    }
}

@media all and (max-width: 1440px) {
    :root {
        --set-list-count: 2;
    }

    .board-popup-list-frame {
        display: none;
    }

    .board-popup-current-frame {
        width: 90%;
    }
}

@media all and (max-width: 1050px) {
    :root {
        --set-list-count: 1;
    }

    .board-ouput-thumbnail-wrap {
        height: 28.125rem;
        padding: .9375rem;
    }

    .board-ouput-icon-mark {
        top: calc(28.125rem - 167px);
    }

    .board-ouput-date,
    .board-ouput-title {
        top: calc(28.125rem - 99px);
    }
}

@media all and (max-width: 850px) {
    .board-output-bottom-search {
        display: none;
    }

    .board-output-bottom {
        justify-content: center;
    }
}

@media all and (max-width: 500px) {
    .board-ouput-category {
        left: 50%;
        top: calc(28.125rem / 7);
        transform: translateX(-50%);
    }

    .board-ouput-icon-mark {
        display: none;
    }
    
    .board-ouput-date {
        top: auto;        
        left: 50%;
        bottom: calc(28.125rem / 7);
        transform: translateX(-50%);
    }

    .board-ouput-title {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 70%;
    }

    .board-ouput-title {
        justify-content: center;
    }
}