@charset "utf-8";

/* reset css */
@import url(./images/reset.css);

/* 웹폰트 */
@import url(//fonts.googleapis.com/css?family=Noto+Sans+KR|Meddon);

:root {
    --fontE: 'Calibri', 'Noto Sans KR', sans-serif;
    --fontK: 'Noto Sans KR', sans-serif;
    --fontA: 'Calibri', 'Noto Sans KR', sans-serif;
}

/* 전체 폰트 */
html,
body,
th,
td,
input,
select,
textarea,
button,
body blockquote,
body blockquote p,
body figure figcaption,
code {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.8;
    font-family: var(--fontA);
    color: var(--text);
}

/* ================ 
 *
 *   기본 설정
 *
 * ================ */
/* 링크 */
a,
a:link {
    text-decoration: none;
    color: var(--text);
    transition: color .4s;
}

a:hover,
a:focus {
    color: var(--point);
}

/* 입력창 폰트 색상 */
::-webkit-input-placeholder {
    color: var(--text);
}

:-moz-placeholder {
    color: var(--text);
}

:-ms-input-placeholder {
    color: var(--text);
}

::placeholder {
    color: var(--text);
}

/* 마우스 드래그 블럭 */
::selection {
    color: var(--point);
    background-color: var(--text);
}

::-moz-selection {
    color: var(--point);
    background-color: var(--text);
}

/* 스크롤바 */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: var(--point4);
    border-left: 1px solid;
    border-color: var(--text);
}

::-webkit-scrollbar-thumb {
    background-color: var(--point2);
    border: 1px solid;
    border-right: 0;
    border-color: var(--text);
    border-radius: 5px;
}

body {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: var(--bg);
}

/* ================ 
 *
 *   스킨 시작
 *
 * ================ */
#container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

:before,
:after {
    font-family: 'fontAwesome';
}

.window,
#tt-body-page #content:not(.cmtopen) #rp .cmt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 5px;
    border: 1px solid;
    border-color: var(--text);
    overflow: hidden;
    max-width: calc(84vw - 70px);
    max-height: 83vh;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: width 1s, height 1s;
}

.window-title {
    position: relative;
    border-bottom: 1px solid;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    min-height: 34px;
}

.window-title > span {
    width: 70px;
    transition: 1s;
    cursor: move;
    height: 100%;
}

.window-title > p {
    cursor: move;
    letter-spacing: 1px;
    font-weight: bold;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.window-button {
    display: flex;
    margin-left: 20px;
    z-index: 1;
    height: 100%;
    align-items: center;
}

.window-button .window-buttons {
    position: relative;
    border: 1px solid;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    cursor: pointer;
    background-color: var(--point);
    transition: .4s;
}

.window-button .window-button2 {
    background-color: var(--point2);
    margin-left: 15px;
}

.window-button .window-button3 {
    background-color: var(--point3);
    margin-left: 15px;
}

.window-button .window-buttons:hover {
    background-color: var(--point4);
}

.window > .window-article,
#tt-body-page #content:not(.cmtopen) #rp .window-article {
    position: relative;
    width: 100%;
    padding: 20px;
    flex-grow: 1;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.window:after,
#tt-body-page #content:not(.cmtopen) #rp .cmt:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background-color: var(--con);
}

.window > .window-title:after,
#tt-body-page #content:not(.cmtopen) #rp .window-title:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: var(--point2);
}

.parent.minimize {
    width: 200px !important;
    height: 34px !important;
}

.parent.minimize .window-title > span {
    width: 0;
}

.parent.minimize #opencmt {
    padding-right: 20px;
    width: 40px;
}

.parent.minimize .sub {
    display: none !important;
}

.parent.maximize {
    width: 100% !important;
    height: 100% !important;
}

body.back .window > *:after,
body.back #header:after,
body.back .catebox:after,
body.back .catebox .sub_category_list:after,
body.back .YACSSTooltip:after,
body#tt-body-page.back #content:not(.cmtopen) #rp .window-title:after,
body.back #aside:after {
    opacity: .7;
    backdrop-filter: blur(10px);
}

body.back .iconbox svg {
    opacity: .7;
}

body.back .iconbox > div:hover svg {
    opacity: 1;
}

body.back .window:after,
body#tt-body-page.back #content:not(.cmtopen) #rp .cmt:after {
    opacity: .6;
    backdrop-filter: blur(10px);
}

body.back ::-webkit-scrollbar {
    background-color: rgba(255, 255, 255, 0.2);
}

body.back ::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
}

body.back .pagination a span {
    opacity: 0.6;
}

body.back .pagination a span:not(.selected):hover {
    opacity: 1;
}

.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    background-color: transparent !important;
    opacity: 0;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -7px;
    left: 0;
}

.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}

/* ================ 
 *
 *   헤더
 *
 * ================ */
#header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    justify-content: space-between;
    padding: 0 20px;
    cursor: default;
    border-bottom: 1px solid;
    font-weight: bold;
    z-index: 9999;
}

#header:after,
.YACSSTooltip:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: var(--point2);
}

#header .center {
    flex-grow: 1;
    height: 100%;
}

#header .toggle,
#header .title a,
#header .left > .search-box,
#header .left > .blogmenu a,
#header .intro,
#header .sns,
#header .theme,
#header .battery,
#header .clock,
#header .side {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    position: relative;
}

#header a:hover,
#header .toggle:hover,
#header .search-box:hover,
#header .side:hover {
    color: var(--point3);
}

#header,
#header > div,
#header .left > .blogmenu > ul,
.search-box,
.sns a {
    display: flex;
    align-items: center;
}

#header .toggle {
    position: relative;
    cursor: pointer;
    transition: .4s;
    height: 100%;
}

#header .toggle:after {
    content: '\f204';
}

#header .toggle:hover:after,
#header .toggle.open:after {
    content: '\f205';
    color: var(--point3);
}

/* 타이틀 */
#header .title {}

#header .title img {
    max-height: 30px;
}

#header .intro {
    word-break: normal;
    word-wrap: break-word;
}

/* ---------------
    카테고리
--------------- */
.catebox {
    position: absolute;
    top: 100%;
    left: 10px;
    z-index: 999;
    width: 200px;
    display: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.1);
    border-top: 1px solid;
    border-color: var(--text);
    border-radius: 0 0 5px 5px;
    border: 1px solid;
}

.catebox:after,
.sub_category_list:after {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: var(--point2);
    z-index: -1;
    border-radius: 0 0 5px 5px;
}

.catebox .scroll > .cate + .tt_category:last-child .category_list > li:last-child .link_item,
.catebox .scroll > .tt_category:only-child .category_list > li:last-child .link_item,
.catebox .scroll > :last-child,
.catebox:not(.master) .scroll > .guestBook,
.catebox:not(.master).last .category_list > li:last-child .link_item {
    border-radius: 0 0 5px 5px;
    overflow: hidden;
}

.catebox .cate a,
.catebox .link_tit,
.catebox .link_item,
.catebox .link_sub_item,
.catebox .blogmenu a {
    display: block;
    transition: background-color .4s, color .4s;
    padding: 15px 40px 15px 20px;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catebox .cate a:hover,
.catebox .link_tit:hover,
.catebox .link_item:hover,
.catebox .link_sub_item:hover,
.catebox .blogmenu a:hover {
    background-color: var(--point);
    color: var(--point2) !important;
}

.catebox .category_list > li {
    position: relative;
}

.catebox .category_list > li.mc .link_item:after {
    content: '\f105';
    position: absolute;
    right: 20px;
}

.catebox .sub_category_list {
    position: absolute;
    top: -1px;
    left: 100%;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 5px 5px 5px;
    border: 1px solid;
    overflow: hidden;
    transition-property: opacity;
}

.sub_category_list:after {
    border-radius: 0 5px 5px 0;
}

.catebox:not(.all) .link_tit,
.catebox .sub_category_list {
    display: none;
}

/* 검색 */
.search-box {
    padding-right: 0 !important;
}

.search-box > i {
    cursor: pointer;
    transition: .4s;
    min-height: 40px;
    display: flex;
    align-items: center;
    padding-right: 12px;
}

.search-box .input {
    max-width: 0;
    overflow: hidden;
    transition: .4s;
}

.search-box .input.open {
    max-width: 150px;
    margin-right: 10px;
}

.search-box input {
    background-color: var(--point);
    border-radius: 20px;
    padding: 2px 10px;
    width: 100%;
    margin-right: 12px;
    border: 1px solid;
    border-color: var(--text);
    color: var(--point2);
}

.search-box input:focus:-moz-placeholder {
    color: transparent;
    transition: color .4s;
}

.search-box input:focus::placeholder {
    color: transparent;
    transition: color .4s;
}

.search-box input:focus:-ms-input-placeholder {
    color: transparent;
    transition: color .4s;
}

.search-box input:focus::placeholder {
    color: transparent;
    transition: color .4s;
}

.search-box button {
    transition: .4s;
}

/* sns */
.sns {
    cursor: default;
}

.sns a:not(:last-child) {
    margin-right: 10px;
}

/* 배터리 */
@keyframes battery-charging {
    0% {
        content: "\f244";
    }

    20% {
        content: "\f243";
    }

    40% {
        content: "\f242";
    }

    60% {
        content: "\f241";
    }

    80% {
        content: "\f240";
    }
}

.battery .fa-battery-charging:before {
    content: "\f244";
    animation: 10s battery-charging infinite;
    vertical-align: middle;
}

/* 날짜, 시간 */
.clock .time {
    margin-right: 10px;
}

/* 사이드바 */
#header .side {
    transition: .4s;
    cursor: pointer;
}

#header .side i {
    font-weight: bold;
}

/* ================ 
 *
 *   콘텐츠 영역
 *
 * ================ */
#content {
    --margin: 20px;
    position: relative;
    flex-grow: 1;
    padding: 65px calc(120px + 70px) 20px 2.5vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: auto;
}

#content #article {
    flex-grow: 1;
}

#content #article.center {
    position: relative;
}

#content.overlap .window:not(.center) {
    position: absolute;
}

#content:not(.overlap) #article:not(.center) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    position: relative;
}

#content:not(.overlap) .window:not(.center) {
    margin: 0 var(--margin) var(--margin) 0;
    position: relative;
    left: 0;
}

#content:not(.overlap) .window:not(.center):nth-child(2n) {
    align-self: center;
}

#content:not(.overlap) .window:not(.center):nth-child(3n) {
    margin-bottom: calc(var(--margin)*2);
    align-self: flex-end;
    margin-right: calc(var(--margin) * 2);
}

#content:not(.overlap) .window:not(.center):nth-child(4n) {
    margin-top: var(--margin);
    align-self: flex-start;
    margin-left: auto;
}

/* ---------------
    바탕화면
--------------- */
#content .iconbox {
    position: fixed;
    top: 5vh;
    right: 100px;
    width: 70px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1.3;
}

#content .iconbox a:hover,
#content .iconbox > div:hover {
    color: var(--point2);
}

#content .iconbox > div {
    margin: 3vh 0;
    cursor: pointer;
}

#content .iconbox > div:hover svg {
    animation: shake .2s ease .4s 2;
}

#content .iconbox svg {
    width: 100%;
    height: auto;
    transition: .4s;
}

@keyframes shake {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0);
    }

    75% {
        transform: rotate(-10%);
    }

    100% {
        transform: rotate(0);
    }
}

#content .iconbox .name {
    transition: .4s;
}

/* ---------------
    팝업창
--------------- */
.popbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    background-color: var(--point4);
    display: none;
}

.popbox .window {
    position: absolute !important;
    width: auto !important;
    left: auto !important;
    top: auto !important;
}

.popbox .blank {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.popbox :after,
#header.on:after,
#header.on :after {
    opacity: 1 !important;
}

/* ---------------
    목록 공통
--------------- */
.myoskin ol {
    display: flex;
    flex-flow: row wrap;
    align-content: baseline;
    flex-grow: 1;
}

.myoskin .item {
    position: relative;
    margin: 0 var(--margin) var(--margin) 0;
    vertical-align: top;
}

.myoskin .item a {
    display: block;
}

.myoskin .item .thumbox {
    position: relative;
    transition: .4s;
}

.myoskin:not(.myo_ins) .item:hover .thumbox {
    transform: scale(1.05)
}

.myoskin .item:not(.you) .thumbox:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--point2);
    opacity: 0;
    transition: .4s;
}

.myoskin .item:hover .thumbox:after {
    opacity: .5;
}

.myoskin .item .thumbox img {
    width: 100%;
}

.myoskin .item .info {
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    transition: .4s;
}

.myoskin .item:hover .info {
    color: var(--point);
}

.myoskin:not(.myo_ins) .item .heart,
.myoskin .item .blog-img {
    display: none;
}

.myoskin .item .title img {
    width: auto !important;
    height: auto !important;
}

.myoskin .item .title i {
    margin-left: 3px;
}

.myoskin .item .cnt:empty {
    display: none !important;
}

.myoskin .item .cnt:not(:empty) {
    font-size: .7em;
    transition: .4s;
    color: var(--point3);
    white-space: nowrap;
    margin-left: 3px;
}

/* 노이미지 */
.noimg {
    display: none !important;
}

:not(.thum) + .noimg {
    display: inline-block !important;
}

/* 목록 없음 */
.myoskin .empty > ul {
    display: none;
}

#tt-body-category .empty .category,
#tt-body-search .empty .search,
#tt-body-archive .empty .archive,
#tt-body-tag .empty .tag {
    display: block;
}

/* 1열 */
#content.in1 .myo_ins:not(.you-player) .item,
#content.yin1 .myo_ins.you-player .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: calc(var(--margin) * 2);
}

#content.in1 .myo_ins:not(.you-player) .item:last-child,
#content.yin1 .myo_ins.you-player .item:last-child {
    margin-bottom: 0 !important;
}

/* 2열 */
#content.n2 .myo_gal:not(.hover):not(.you-player) .item,
#content.hn2 .myo_gal.hover:not(.you-player) .item,
#content.in2 .myo_ins:not(.you-player) .item,
#content.wn2 .myo_web:not(.you-player) .item,
#content.yn2 .myo_gal:not(.hover).you-player .item,
#content.yhn2 .myo_gal.hover.you-player .item,
#content.yin2 .myo_ins.you-player .item,
#content.ywn2 .myo_web.you-player .item {
    width: calc((100% - var(--margin)) / 2);
}

#content.n2 .myo_gal:not(.hover):not(.you-player) .item:nth-child(2n),
#content.hn2 .myo_gal.hover:not(.you-player) .item:nth-child(2n),
#content.in2 .myo_ins:not(.you-player) .item:nth-child(2n),
#content.wn2 .myo_web:not(.you-player) .item:nth-child(2n),
#content.yn2 .myo_gal:not(.hover).you-player .item:nth-child(2n),
#content.yhn2 .myo_gal.hover.you-player .item:nth-child(2n),
#content.yin2 .myo_ins.you-player .item:nth-child(2n),
#content.ywn2 .myo_web.you-player .item:nth-child(2n) {
    margin-right: 0;
}

#content.n2 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 2):nth-child(2n + 1),
#content.n2 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 1):nth-child(2n + 2),
#content.hn2 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 2):nth-child(2n + 1),
#content.hn2 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 1):nth-child(2n + 2),
#content.in2 .myo_ins:not(.you-player) .item:nth-last-child(-n + 2):nth-child(2n + 1),
#content.in2 .myo_ins:not(.you-player) .item:nth-last-child(-n + 1):nth-child(2n + 2),
#content.wn2 .myo_web:not(.you-player) .item:nth-last-child(-n + 2):nth-child(2n + 1),
#content.wn2 .myo_web:not(.you-player) .item:nth-last-child(-n + 1):nth-child(2n + 2),
#content.yn2 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 2):nth-child(2n + 1),
#content.yn2 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 1):nth-child(2n + 2),
#content.yhn2 .myo_gal.hover.you-player .item:nth-last-child(-n + 2):nth-child(2n + 1),
#content.yhn2 .myo_gal.hover.you-player .item:nth-last-child(-n + 1):nth-child(2n + 2),
#content.yin2 .myo_ins.you-player .item:nth-last-child(-n + 2):nth-child(2n + 1),
#content.yin2 .myo_ins.you-player .item:nth-last-child(-n + 1):nth-child(2n + 2),
#content.ywn2 .myo_web.you-player .item:nth-last-child(-n + 2):nth-child(2n + 1),
#content.ywn2 .myo_web.you-player .item:nth-last-child(-n + 1):nth-child(2n + 2) {
    margin-bottom: 0 !important;
}

/* 3열 */
#content.n3 .myo_gal:not(.hover):not(.you-player) .item,
#content.hn3 .myo_gal.hover:not(.you-player) .item,
#content.in3 .myo_ins:not(.you-player) .item,
#content.wn3 .myo_web:not(.you-player) .item,
#content.yn3 .myo_gal:not(.hover).you-player .item,
#content.yhn3 .myo_gal.hover.you-player .item,
#content.yin3 .myo_ins.you-player .item,
#content.ywn3 .myo_web.you-player .item {
    width: calc((100% - var(--margin) * 2) / 3);
}

#content.n3 .myo_gal:not(.hover):not(.you-player) .item:nth-child(3n),
#content.hn3 .myo_gal.hover:not(.you-player) .item:nth-child(3n),
#content.in3 .myo_ins:not(.you-player) .item:nth-child(3n),
#content.wn3 .myo_web:not(.you-player) .item:nth-child(3n),
#content.yn3 .myo_gal:not(.hover).you-player .item:nth-child(3n),
#content.yhn3 .myo_gal.hover.you-player .item:nth-child(3n),
#content.yin3 .myo_ins.you-player .item:nth-child(3n),
#content.ywn3 .myo_web.you-player .item:nth-child(3n) {
    margin-right: 0;
}

#content.n3 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 3):nth-child(3n + 1),
#content.n3 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 2):nth-child(3n + 2),
#content.n3 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 1):nth-child(3n + 3),
#content.hn3 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 3):nth-child(3n + 1),
#content.hn3 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 2):nth-child(3n + 2),
#content.hn3 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 1):nth-child(3n + 3),
#content.in3 .myo_ins:not(.you-player) .item:nth-last-child(-n + 3):nth-child(3n + 1),
#content.in3 .myo_ins:not(.you-player) .item:nth-last-child(-n + 2):nth-child(3n + 2),
#content.in3 .myo_ins:not(.you-player) .item:nth-last-child(-n + 1):nth-child(3n + 3),
#content.wn3 .myo_web:not(.you-player) .item:nth-last-child(-n + 3):nth-child(3n + 1),
#content.wn3 .myo_web:not(.you-player) .item:nth-last-child(-n + 2):nth-child(3n + 2),
#content.wn3 .myo_web:not(.you-player) .item:nth-last-child(-n + 1):nth-child(3n + 3),
#content.yn3 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 3):nth-child(3n + 1),
#content.yn3 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 2):nth-child(3n + 2),
#content.yn3 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 1):nth-child(3n + 3),
#content.yhn3 .myo_gal.hover.you-player .item:nth-last-child(-n + 3):nth-child(3n + 1),
#content.yhn3 .myo_gal.hover.you-player .item:nth-last-child(-n + 2):nth-child(3n + 2),
#content.yhn3 .myo_gal.hover.you-player .item:nth-last-child(-n + 1):nth-child(3n + 3),
#content.yin3 .myo_ins.you-player .item:nth-last-child(-n + 3):nth-child(3n + 1),
#content.yin3 .myo_ins.you-player .item:nth-last-child(-n + 2):nth-child(3n + 2),
#content.yin3 .myo_ins.you-player .item:nth-last-child(-n + 1):nth-child(3n + 3),
#content.ywn3 .myo_web.you-player .item:nth-last-child(-n + 1):nth-child(3n + 3),
#content.ywn3 .myo_web.you-player .item:nth-last-child(-n + 2):nth-child(3n + 2),
#content.ywn3 .myo_web.you-player .item:nth-last-child(-n + 1):nth-child(3n + 3) {
    margin-bottom: 0;
}

/* 4열 */
#content.n4 .myo_gal:not(.hover):not(.you-player) .item,
#content.hn4 .myo_gal.hover:not(.you-player) .item,
#content.wn4 .myo_web:not(.you-player) .item,
#content.yn4 .myo_gal:not(.hover).you-player .item,
#content.yhn4 .myo_gal.hover.you-player .item,
#content.ywn4 .myo_web.you-player .item {
    width: calc((100% - var(--margin) * 3) / 4);
}

#content.n4 .myo_gal:not(.hover):not(.you-player) .item:nth-child(4n),
#content.hn4 .myo_gal.hover:not(.you-player) .item:nth-child(4n),
#content.wn4 .myo_web:not(.you-player) .item:nth-child(4n),
#content.yn4 .myo_gal:not(.hover).you-player .item:nth-child(4n),
#content.yhn4 .myo_gal.hover.you-player .item:nth-child(4n),
#content.ywn4 .myo_web.you-player .item:nth-child(4n) {
    margin-right: 0;
}

#content.n4 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 4):nth-child(4n + 1),
#content.n4 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 3):nth-child(4n + 2),
#content.n4 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 2):nth-child(4n + 3),
#content.n4 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 1):nth-child(4n + 4),
#content.hn4 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 4):nth-child(4n + 1),
#content.hn4 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 3):nth-child(4n + 2),
#content.hn4 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 2):nth-child(4n + 3),
#content.hn4 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 1):nth-child(4n + 4),
#content.wn4 .myo_web:not(.you-player) .item:nth-last-child(-n + 4):nth-child(4n + 1),
#content.wn4 .myo_web:not(.you-player) .item:nth-last-child(-n + 3):nth-child(4n + 2),
#content.wn4 .myo_web:not(.you-player) .item:nth-last-child(-n + 2):nth-child(4n + 3),
#content.wn4 .myo_web:not(.you-player) .item:nth-last-child(-n + 1):nth-child(4n + 4),
#content.yn4 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 4):nth-child(4n + 1),
#content.yn4 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 3):nth-child(4n + 2),
#content.yn4 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 2):nth-child(4n + 3),
#content.yn4 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 1):nth-child(4n + 4),
#content.yhn4 .myo_gal.hover.you-player .item:nth-last-child(-n + 4):nth-child(4n + 1),
#content.yhn4 .myo_gal.hover.you-player .item:nth-last-child(-n + 3):nth-child(4n + 2),
#content.yhn4 .myo_gal.hover.you-player .item:nth-last-child(-n + 2):nth-child(4n + 3),
#content.yhn4 .myo_gal.hover.you-player .item:nth-last-child(-n + 1):nth-child(4n + 4),
#content.ywn4 .myo_web.you-player .item:nth-last-child(-n + 4):nth-child(4n + 1),
#content.ywn4 .myo_web.you-player .item:nth-last-child(-n + 3):nth-child(4n + 2),
#content.ywn4 .myo_web.you-player .item:nth-last-child(-n + 2):nth-child(4n + 3),
#content.ywn4 .myo_web.you-player .item:nth-last-child(-n + 1):nth-child(4n + 4) {
    margin-bottom: 0;
}

/* 5열 */
#content.n5 .myo_gal:not(.hover):not(.you-player) .item,
#content.hn5 .myo_gal.hover:not(.you-player) .item,
#content.yn5 .myo_gal:not(.hover).you-player .item,
#content.yhn5 .myo_gal.hover.you-player .item {
    width: calc((100% - var(--margin) * 4) / 5);
}

#content.n5 .myo_gal:not(.hover):not(.you-player) .item:nth-child(5n),
#content.hn5 .myo_gal.hover:not(.you-player) .item:nth-child(5n),
#content.yn5 .myo_gal:not(.hover).you-player .item:nth-child(5n),
#content.yhn5 .myo_gal.hover.you-player .item:nth-child(5n) {
    margin-right: 0;
}

#content.n5 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 5):nth-child(5n + 1),
#content.n5 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 4):nth-child(5n + 2),
#content.n5 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 3):nth-child(5n + 3),
#content.n5 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 2):nth-child(5n + 4),
#content.n5 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 1):nth-child(5n + 5),
#content.hn5 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 5):nth-child(5n + 1),
#content.hn5 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 4):nth-child(5n + 2),
#content.hn5 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 3):nth-child(5n + 3),
#content.hn5 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 2):nth-child(5n + 4),
#content.hn5 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 1):nth-child(5n + 5),
#content.yn5 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 5):nth-child(5n + 1),
#content.yn5 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 4):nth-child(5n + 2),
#content.yn5 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 3):nth-child(5n + 3),
#content.yn5 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 2):nth-child(5n + 4),
#content.yn5 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 1):nth-child(5n + 5),
#content.yhn5 .myo_gal.hover.you-player .item:nth-last-child(-n + 5):nth-child(5n + 1),
#content.yhn5 .myo_gal.hover.you-player .item:nth-last-child(-n + 4):nth-child(5n + 2),
#content.yhn5 .myo_gal.hover.you-player .item:nth-last-child(-n + 3):nth-child(5n + 3),
#content.yhn5 .myo_gal.hover.you-player .item:nth-last-child(-n + 2):nth-child(5n + 4),
#content.yhn5 .myo_gal.hover.you-player .item:nth-last-child(-n + 1):nth-child(5n + 5) {
    margin-bottom: 0;
}

/* 6열 */
#content.n6 .myo_gal:not(.hover):not(.you-player) .item,
#content.hn6 .myo_gal.hover:not(.you-player) .item,
#content.yn6 .myo_gal:not(.hover).you-player .item,
#content.yhn6 .myo_gal.hover.you-player .item {
    width: calc((100% - var(--margin) * 5) / 6);
}

#content.n6 .myo_gal:not(.hover):not(.you-player) .item:nth-child(6n),
#content.hn6 .myo_gal.hover:not(.you-player) .item:nth-child(6n),
#content.yn6 .myo_gal:not(.hover).you-player .item:nth-child(6n),
#content.yhn6 .myo_gal.hover.you-player .item:nth-child(6n) {
    margin-right: 0;
}

#content.n6 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 6):nth-child(6n + 1),
#content.n6 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 5):nth-child(6n + 2),
#content.n6 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 4):nth-child(6n + 3),
#content.n6 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 3):nth-child(6n + 4),
#content.n6 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 2):nth-child(6n + 5),
#content.n6 .myo_gal:not(.hover):not(.you-player) .item:nth-last-child(-n + 1):nth-child(6n + 6),
#content.hn6 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 6):nth-child(6n + 1),
#content.hn6 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 5):nth-child(6n + 2),
#content.hn6 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 4):nth-child(6n + 3),
#content.hn6 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 3):nth-child(6n + 4),
#content.hn6 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 2):nth-child(6n + 5),
#content.hn6 .myo_gal.hover:not(.you-player) .item:nth-last-child(-n + 1):nth-child(6n + 6),
#content.yn6 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 6):nth-child(6n + 1),
#content.yn6 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 5):nth-child(6n + 2),
#content.yn6 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 4):nth-child(6n + 3),
#content.yn6 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 3):nth-child(6n + 4),
#content.yn6 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 2):nth-child(6n + 5),
#content.yn6 .myo_gal:not(.hover).you-player .item:nth-last-child(-n + 1):nth-child(6n + 6),
#content.yhn6 .myo_gal.hover.you-player .item:nth-last-child(-n + 6):nth-child(6n + 1),
#content.yhn6 .myo_gal.hover.you-player .item:nth-last-child(-n + 5):nth-child(6n + 2),
#content.yhn6 .myo_gal.hover.you-player .item:nth-last-child(-n + 4):nth-child(6n + 3),
#content.yhn6 .myo_gal.hover.you-player .item:nth-last-child(-n + 3):nth-child(6n + 4),
#content.yhn6 .myo_gal.hover.you-player .item:nth-last-child(-n + 2):nth-child(6n + 5),
#content.yhn6 .myo_gal.hover.you-player .item:nth-last-child(-n + 1):nth-child(6n + 6) {
    margin-bottom: 0;
}

/* ---------------
    갤러리형
--------------- */
.myo_gal .item {
    position: relative;
    z-index: 1;
}

.myo_gal .item .thumbox {
    transition: transform .4s;
    position: relative;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.myo_gal:not(.hover) .item .thumbox:before,
.myo_gal:not(.hover) .item .thumbox > div:before {
    content: '';
    background-color: var(--point);
    height: 10px;
    border-radius: 5px 5px 0 0;
    width: 30%;
    position: absolute;
    top: -7px;
    left: 2.5%;
    z-index: -1;
}

.myo_gal:not(.hover) .item .thumbox:after,
.myo_gal:not(.hover) .item .thumbox > div:after {
    content: '';
    position: absolute;
    top: -3px;
    left: 2.5%;
    background-color: var(--point);
    height: 10px;
    border-radius: 0 5px 0 0;
    width: 95%;
    z-index: -1
}

.myo_gal:not(.hover) .item .thumbox > div:before,
.myo_gal:not(.hover) .item .thumbox > div:after {
    background-color: var(--text);
    z-index: -2;
    left: calc(2.5% - 1px);
}

.myo_gal:not(.hover) .item .thumbox > div:before {
    top: -8px;
    width: calc(30% + 2px);
    border-radius: 6px 6px 0 0;
}

.myo_gal:not(.hover) .item .thumbox > div:after {
    top: -4px;
    width: calc(95% + 2px);
    border-radius: 0 6px 0 0;
}

.myo_gal:not(.hover) .item .thumbox .thumbnail {
    position: relative;
    overflow: hidden;
    border: 1px solid;
    border-color: var(--text);
    border-radius: 5px;
}

#content:not(.galR) .myo_gal:not(.hover) .item .thumbox .thumbnail {
    padding-top: 70%;
}

#content:not(.galR) .myo_gal:not(.hover) .item .thumbox .thumbnail .centered {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

#content:not(.galR) .myo_gal:not(.hover) .item .thumbox .thumbnail .centered img,
#content:not(.galR) .myo_gal:not(.hover) .item .thumbox .framebox {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#content:not(.galR) .myo_gal:not(.hover) .item .thumbox .thumbnail .centered img.portrait {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
}

#content:not(.galR) .myo_gal:not(.hover) .item .thumbox .thumbnail .centered img.landscape {
    width: auto !important;
    max-width: none !important;
    height: 100% !important;
}

.myo_gal .item .info {
    text-align: center;
    margin-top: 12px;
    position: relative;
    line-height: 1.4;
}

.myo_gal .item .title {
    display: -webkit-inline-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    margin: 0 auto;
    max-width: 70%;
    font-weight: bold;
}

.myo_gal:not(.hover) .item .cnt:not(:empty) {
    position: absolute;
    bottom: 2px;
    min-width: auto;
    color: var(--point3);
    background-color: transparent;
}

.myo_gal .item:hover .cnt {
    color: var(--point2);
}

.myo_gal .item .cate-date,
.myo_gal .item .date,
.myo_gal .item .text {
    display: none;
}

/* ------------------------------
    갤러리형 - 마우스 오버
------------------------------ */
.myo_gal.hover .item .thumbox {
    overflow: hidden;
    border: 1px solid;
    border-color: var(--text);
}

.myo_gal.hover .item .info {
    position: absolute;
    opacity: 0;
    transition: .4s;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.myo_gal.hover .item:hover .info {
    opacity: 1;
}

.myo_gal.hover .item .title-cnt {
    background-color: var(--point);
    padding: 3px 5px;
    border: 1px solid;
    border-color: var(--text);
    border-radius: 5px;
}

.myo_gal.hover .item .title {
    max-width: inherit;
    color: var(--point2);
    font-size: .85em;
}

.myo_gal.hover .cnt:not(:empty) {
    vertical-align: middle;
    position: absolute;
    background-color: var(--point);
    font-size: .7em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 50px;
    transition: .4s;
    color: var(--point2);
    white-space: nowrap;
    margin: 0;
    top: 5px;
    right: 5px;
    border: 1px solid;
    border-color: var(--text);
    min-width: 16px;
}

.myo_gal.hover .item.you .info {
    display: none;
}

/* ---------------
    인별형
--------------- */
.myo_ins .item {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--con);
}

.myo_ins .item a {
    border: 1px solid;
    border-color: var(--text);
    border-radius: 5px;
    overflow: hidden;
    transition: .4s;
}

.myo_ins .item .heart > i:first-child {
    transition: .4s;
}

.myo_ins .item:hover .heart > i:first-child {
    color: var(--point3);
}

.myo_ins .item:hover .heart > i:first-child:before {
    content: '\f004';
}

.myo_ins .item a {
    display: flex;
    flex-direction: column;
}

.myo_ins .item .info {
    order: -1;
    border-bottom: 1px solid;
    border-color: var(--text);
}

.myo_ins .item .title-cnt {
    display: flex;
    align-items: center;
    padding: 8px 10px;
}

.myo_ins .item .blog-img {
    flex: 0 0 20px;
    height: 20px;
    overflow: hidden;
    display: block;
    border-radius: 50px;
    margin-right: 10px;
    border: 1px solid;
    border-color: var(--text);
}

.myo_ins .item .blog-img img {
    width: 100%;
}

.myo_ins .item .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    line-height: 1;
    font-weight: bold;
}

.myo_ins .item .thumbox {}

.myo_ins .item .heart {
    font-size: 1.3em;
    padding: 8px 10px;
    line-height: 1;
    color: var(--text);
    border-top: 1px solid;
    border-color: var(--text);
}

.myo_ins .item .heart > i:not(:last-child) {
    margin-right: 13px;
}

.myo_ins .item .heart > i:last-child {
    float: right;
}

.myo_ins .item .text,
.myo_ins .item .cate-date {
    display: none;
}

/* ---------------
    목록형
--------------- */
.myo_bbs .item {
    margin-right: 0;
    width: 100%;
}

.myo_bbs .item .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.myo_bbs .item .title-cnt {
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.myo_bbs .item .title {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
    font-weight: bold;
}

.myo_bbs .item .cate-date {
    display: flex;
    padding-left: 15px;
    max-width: 190px;
}

.myo_bbs .item .title:before {
    content: '\f016';
    margin-right: 15px;
}

.myo_bbs .item:hover .title:before {
    content: '\f061';
    color: var(--point);
}

.myo_bbs .item .cate {
    max-width: 100px;
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.myo_bbs .item .cnt {
    position: static;
    margin-left: 15px;
}

.myo_bbs .item .cate-date .cnt,
.myo_bbs .item .thumbox,
.myo_bbs .item .text {
    display: none;
}

.myo_bbs .item:last-child {
    margin-bottom: 0;
}

/* ---------------
    웹진형
--------------- */
#content.wn2 .myo_web .item .thumbox {
    flex: 0 0 26%;
}

#content.wn3 .myo_web .item .thumbox {
    flex: 0 0 27%;
}

#content.wn4 .myo_web .item .thumbox {
    flex: 0 0 37%;
}

.myo_web .item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.myo_web .item .thumbox {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid;
    border-color: var(--text);
    align-self: flex-start;
}

.myo_web .item .thumbox > div {
    position: relative;
    overflow: hidden;
}

.myo_web .item .thumbox .thumbnail {
    padding-top: 100%;
}

.myo_web .item .thumbox .thumbnail .centered {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

.myo_web .item.you .thumbox .thumbnail .centered {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.myo_web .item .thumbox .thumbnail .centered img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.myo_web .item .thumbox .thumbnail .centered img.portrait {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
}

.myo_web .item .thumbox .thumbnail .centered img.landscape,
.myo_web .item .thumbox .thumbnail .centered .framebox {
    width: auto !important;
    max-width: none !important;
    height: 100% !important;
}

.myo_web .item .info {
    flex-grow: 1;
    padding-left: 10px;
    overflow: hidden;
}

.myo_web .item .title,
.myo_web .item .text {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    position: relative;
    line-height: 1.3;
    vertical-align: middle;
    max-width: 90%;
}

.myo_web .item .title {
    display: -webkit-inline-box;
    font-weight: bold;
}

.myo_web .item .cate-date,
.myo_web .item .text {
    color: var(--point);
    font-size: .8em;
}

.myo_web .item .cate-date {
    display: flex;
    align-items: center;
}

.myo_web .item .cate {
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--point4);
}

.myo_web .item .text {
    display: -webkit-box;
}

.myo_web .item .title-cnt .cnt,
.myo_web .item .date {
    display: none;
}

/* ----------------------
    보호글 비밀번호 입력창
------------------------- */
.pass {
    -ms-display: flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.pass form {
    width: 200px;
    margin: auto;
}

.pass input,
.pass button {
    margin: 5px 0;
    padding: 5px 0;
}

.pass input {
    width: 100%;
    border: 0;
    background: transparent;
}

.pass button {
    width: 100%;
    border: 1px solid;
    letter-spacing: 3px;
    padding: 10px;
    transition: .4s;
    border-radius: 5px;
    background-color: var(--point);
    color: var(--point2);
    border-color: var(--text);
    font-weight: bold;
    cursor: pointer;
}

.pass button:hover {
    background-color: var(--point4);
}

.pass input[required] + label {
    display: block;
    height: 48px;
    margin-top: -48px;
    margin-bottom: 0;
    pointer-events: none;
    line-height: 1;
}

.pass input[required] + label:before {
    content: attr(placeholder);
    display: inline-block;
    height: 48px;
    line-height: 48px;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .8em;
}

.pass input[required]:focus + label:before,
.pass input[required]:valid + label:before {
    -webkit-transform: translate(0, -24px) scale(1, 1);
    transform: translate(0, -24px) scale(1, 1);
    font-style: italic;
}

/* ---------------
    본문 영역
--------------- */
/* ---------------
    본문 타이틀
--------------- */
.titlebox {}

.titlebox .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.titlebox .window-button > div {
    position: relative;
}

.titlebox .window-button .sub {
    position: absolute;
    top: calc(100% + 5px);
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--point3);
    border-radius: 5px;
    border: 1px solid;
    border-color: var(--text);
    font-size: .8em;
    display: none;
}

.titlebox .window-button .sub p,
.titlebox .window-button .sub a {
    padding: 2px 10px;
    display: block;
    transition: .4s;
}

.titlebox .window-button .sub p:hover,
.titlebox .window-button .sub a:hover {
    color: var(--point2);
}

/* ---------------
    본문
--------------- */
.text-item {
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.text-item h1,
.text-item h2,
.text-item h3,
.text-item h4 {
    padding: 0 5px;
    position: relative;
    display: table;
    z-index: 1;
    font-weight: bold !important;
}

.text-item h1:after,
.text-item h2:after,
.text-item h3:after,
.text-item h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: var(--point2);
    z-index: -1;
    max-height: calc(100% / 2);
    border-radius: 5px;
}

.text-item u {
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(to right, var(--point) 0%, var(--point) 100%);
    background-size: 100% 2px;
    background-position: center 100%;
    background-repeat: no-repeat;
    transition: .4s ease-out;
}

.text-item u:hover {
    color: var(--point2);
    background-size: 100% 100%;
}

.text-item u:hover::before {
    transform: translateY(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
}

.text-item hr,
.text-item hr[data-ke-style],
#tt-body-page hr[data-ke-style] {
    border: 0;
    border-top: 1px solid;
    border-color: var(--text) !important;
    background-image: none;
}

.text-item ul,
.text-item li {
    list-style: inherit;
}

.text-item ul {
    list-style: disc inside;
}

.text-item ol {
    list-style: inside decimal;
}

.text-item iframe,
.text-item embed,
.text-item table {
    width: 100%;
}

.text-item table .imageblock {
    width: 100% !important;
}

.text-item table[border^='1'],
.text-item table[border^='1'] tr,
.text-item table[border^='1'] td,
.text-item table.txc-table,
.text-item .txc-table tr,
.text-item .txc-table td {
    border: 1px solid;
    border-color: var(--text);
    border-spacing: 0;
}

/* 아이프레임 */
.framebox {
    position: relative !important;
    height: 0;
    margin: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.framebox.ver {
    padding-bottom: 177.77%;
}

.framebox iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    vertical-align: top;
}

/* 각주 */
.footnote a,
.footnotes a {
    color: var(--point) !important;
}

.footnote a {
    font-family: var(--fontA) !important;
    font-size: .8em;
    vertical-align: top;
}

.footnote a:before {
    content: '(' !important;
    display: inline-block !important;
    border: 0 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    transition: none !important;
    background-color: transparent !important;
}

.footnote a:after {
    content: ')'
}

.footnote a:hover,
.footnotes a:hover {
    color: var(--point3) !important;
}

/* 링크 */
.text-item > a[href^='http'],
.text-item .tt_article_useless_p_margin > a[href^='http'],
.text-item p a,
.text-item span a,
.text-item .tx-link,
.text-item blockquote a,
.lst .text a {
    position: relative;
    color: var(--point);
}

.text-item > a[href^='http']:hover,
.text-item .tt_article_useless_p_margin > a[href^='http']:hover,
.text-item p a:hover,
.text-item span a:hover,
.text-item .tx-link:hover,
.text-item blockquote a:hover,
.lst .text a:hover {
    color: var(--point4);
}

.text-item > a[href^='http']:before,
.text-item .tt_article_useless_p_margin > a[href^='http']:before,
.text-item p a:before,
.text-item span a:before,
.text-item .tx-link:before,
.text-item blockquote a:before,
.lst .text a:before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 10px;
    border: 1px solid;
    border-color: var(--text);
    background-color: var(--point3);
    display: inline-block;
    margin-right: 3px;
    transition: .4s;
}

.text-item > a[href^='http']:hover:before,
.text-item .tt_article_useless_p_margin > a[href^='http']:hover:before,
.text-item p a:hover:before,
.text-item span a:hover:before,
.text-item .tx-link:hover:before,
.text-item blockquote a:hover:before,
.lst .text a:hover:before {
    background-color: var(--point4);
}

.figure.fileblock a,
#tt-body-page figure.fileblock a:before,
.text-item .tx-link.imgblock:before,
.text-item .footnote a:before,
.text-item .footnotes a:before,
.text-item .another_category a:before {
    display: none;
}

.text-item a .imageblock img {
    transition: .4s;
}

.text-item a .imageblock img:hover {
    opacity: 0.5;
}

figure[data-ke-type='opengraph'],
#tt-body-page figure[data-ke-type='opengraph'] {
    position: relative;
    z-index: 1;
    margin: 0;
}

figure[data-ke-type='opengraph'] div.og-image {
    width: 100px;
    border-color: var(--text);
}

figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
    overflow: hidden;
    height: 100px;
    border: 1px solid;
    border-color: var(--text);
    border-radius: 5px;
    background-color: var(--point);
}

figure[data-ke-type='opengraph'] a::before,
#tt-body-page figure[data-ke-type='opengraph'] a::before {}

figure[data-ke-type='opengraph'] div.og-text {
    left: 101px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

figure[data-ke-type='opengraph'] div.og-text p.og-title,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title {
    font-weight: bold;
    font-size: 1.2em;
    color: var(--point2);
    margin-bottom: 0 !important;
    transition: .4s;
    font-family: var(--fontA);
}

figure[data-ke-type='opengraph'] a:hover div.og-text p.og-title,
#tt-body-page figure[data-ke-type='opengraph'] a:hover div.og-text p.og-title {
    color: var(--text);
}

figure[data-ke-type='opengraph'] div.og-text p.og-desc,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-desc {
    color: var(--point2);
    font-family: var(--fontA);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-size: .9em;
}

figure[data-ke-type='opengraph'] div.og-text p.og-host,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host {
    color: var(--point2);
    margin-bottom: 0 !important;
    bottom: 10px;
    font-family: inherit;
    position: static;
    font-size: .8em;
}

/* 이미지, 동영상 설명글 */
figure[data-ke-type='video'] {
    margin-bottom: 0 !important;
}

figure.imageblock figcaption,
figure.imagegridblock figcaption,
figure[data-ke-type='video'] figcaption,
.text-item .imageblock .cap1,
.text-item .imageblock > span:nth-child(2) {
    font-size: 1rem;
    color: var(--point);
    text-align: center;
}

figure figcaption:empty,
figure[data-ke-type='video'] figcaption:empty {
    display: none;
}

.text-item .imageblock,
.text-item .imageblock .cap1,
.text-item .imageblock > span:nth-child(2) {
    width: auto !important;
}

/* 인용구 */
.text-item blockquote,
.text-item blockquote p {
    font-style: italic;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
}

.tx-quote-tistory:before,
blockquote[data-ke-style='normal']:before,
#tt-body-page blockquote[data-ke-style='normal']:before,
blockquote[data-ke-style='style2']:before,
#tt-body-page blockquote[data-ke-style='style2']:before {
    content: '\e67f';
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 0;
}

.tx-quote-tistory:after,
blockquote[data-ke-style='normal']:after,
#tt-body-page blockquote[data-ke-style='normal']:after,
blockquote[data-ke-style='style2']:after,
#tt-body-page blockquote[data-ke-style='style2']:after {
    content: '\e67e';
    font-family: 'themify';
    position: absolute;
    right: 0;
    bottom: 0;
}

.tx-quote-tistory,
blockquote[data-ke-style='normal'],
#tt-body-page blockquote[data-ke-style='normal'],
blockquote[data-ke-style='style2'],
#tt-body-page blockquote[data-ke-style='style2'] {
    position: relative;
    height: auto;
    margin: 5%;
    padding: 1em 2em;
    font-style: italic;
    font-size: inherit;
}

/* 인용구2 */
blockquote[data-ke-style='box'],
#tt-body-page blockquote[data-ke-style='box'],
blockquote[data-ke-style='style3'],
#tt-body-page blockquote[data-ke-style='style3'] {
    padding: 10px;
    border: 1px solid;
    border-color: var(--text);
    font-size: inherit;
    line-height: inherit;
    border-radius: 5px;
    background-color: var(--point4);
    color: var(--point2);
}

blockquote[data-ke-style='box'] a,
#tt-body-page blockquote[data-ke-style='box'] a,
blockquote[data-ke-style='style3'] a,
#tt-body-page blockquote[data-ke-style='style3'] a {
    color: var(--point2);
}

blockquote[data-ke-style='box'] a:hover,
#tt-body-page blockquote[data-ke-style='box'] a:hover,
blockquote[data-ke-style='style3'] a:hover,
#tt-body-page blockquote[data-ke-style='style3'] a:hover {
    color: var(--point3);
}

blockquote[data-ke-style='box'] a:hover:before,
#tt-body-page blockquote[data-ke-style='box'] a:hover:before,
blockquote[data-ke-style='style3'] a:hover:before,
#tt-body-page blockquote[data-ke-style='style3'] a:hover:before {
    background-color: var(--point);
}

/* 더보기 */
.text-item .btn_less::before {
    display: none;
}

.text-item .btn_more::before {
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    vertical-align: inherit;
}

.text-item .btn_more,
.text-item .btn_less:first-child,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
div[data-ke-type='moreLess'] .btn-toggle-moreless {
    font-size: inherit;
    font-family: inherit;
    height: auto;
    transition: background-color .4s, color .4s;
    margin: 0;
    width: auto;
    border: 1px solid;
    border-color: var(--text);
    padding: 10px;
    background-color: var(--point3);
    color: var(--point2);
    line-height: 1;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    border-radius: 5px;
}

.text-item .btn_more {
    margin-bottom: 10px;
}

#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
div[data-ke-type='moreLess'] .btn-toggle-moreless {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.text-item .btn_more:hover,
.text-item .btn_less:first-child:hover,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:hover,
div[data-ke-type='moreLess'] .btn-toggle-moreless:hover,
.text-item .btn_less:first-child,
#tt-body-page div[data-ke-type='moreLess'].open .btn-toggle-moreless,
.text-item div[data-ke-type="moreLess"].open .btn-toggle-moreless {
    background-color: var(--point);
    color: var(--point2);
    border-color: var(--text);
}

.text-item .btn_less:first-child,
#tt-body-page div[data-ke-type='moreLess'].open .btn-toggle-moreless,
.text-item div[data-ke-type="moreLess"].open .btn-toggle-moreless {
    border-bottom: 0;
    border-radius: 5px 5px 0 0;
}

.text-item .btn_more:before,
.text-item .btn_less:first-child span:before,
.text-item .btn-toggle-moreless:before {
    content: '\f07b';
    margin-right: 5px;
    font-size: .85em;
}

.text-item .btn_less:first-child span:before,
#tt-body-page div[data-ke-type='moreLess'].open .btn-toggle-moreless:before,
.text-item div[data-ke-type="moreLess"].open .btn-toggle-moreless:before {
    content: '\f07c';
}

.text-item .btn_less:first-child:hover,
#tt-body-page div[data-ke-type='moreLess'].open .btn-toggle-moreless:hover,
.text-item div[data-ke-type="moreLess"].open .btn-toggle-moreless:hover {
    color: var(--text);
    background-color: var(--point);
}

.text-item .moreless_content,
div[data-ke-type='moreLess'].open .moreless-content,
#tt-body-page div[data-ke-type='moreLess'].open .moreless-content {
    position: relative;
    overflow: hidden;
}

.text-item .moreless_content {
    margin-bottom: 10px;
}

.text-item .btn_less:last-child,
div[data-ke-type='moreLess'].open .moreless-content .more-less,
#tt-body-page div[data-ke-type='moreLess'].open .moreless-content .more-less {
    color: inherit;
    font-size: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-block;
    margin: 0;
    height: auto;
    width: auto;
    text-align: center;
    z-index: 1;
}

.text-item .btn_less:last-child {
    bottom: 1px;
    right: 1px;
}

.text-item .btn_less:last-child:after,
div[data-ke-type='moreLess'].open .moreless-content .more-less:after,
#tt-body-page div[data-ke-type='moreLess'].open .moreless-content .more-less:after {
    content: '\f00d';
    cursor: pointer;
    color: var(--point2);
    background-color: var(--point);
    line-height: 1;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px 0 5px 0;
    border-left: 1px solid;
    border-top: 1px solid;
    border-color: var(--text);
    font-size: 1.3rem;
    text-align: center;
    vertical-align: top;
}

.txt_view {
    display: none;
}

.text-item .moreless_content .more-txt,
.text-item .moreless-content,
div[data-ke-type='moreLess'] .moreless-content,
#tt-body-page div[data-ke-type='moreLess'] .moreless-content {
    border: 1px solid;
    padding: 10px;
    line-height: inherit;
    background-color: var(--point2);
    border-color: var(--text);
    color: var(--text);
    border-radius: 0 5px 5px 5px;
}

/* 이미지 슬라이드 */
figure.imageslideblock div.image-container {
    width: auto !important;
    max-width: 100%;
    max-height: none;
    min-width: auto;
    min-height: auto;
}

figure.imageslideblock figcaption {
    color: var(--point);
    font-size: 1rem;
    padding: 0;
}

/* 파일 첨부 */
figure.fileblock,
#tt-body-page figure.fileblock {
    border: 1px solid;
    border-color: var(--text);
    z-index: 1;
    background-color: var(--point3);
    border-radius: 5px;
    overflow: hidden;
}

figure.fileblock a:before,
#tt-body-page figure.fileblock a:before {
    content: ''
}

figure.fileblock .desc,
#tt-body-page figure.fileblock .desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

figure.fileblock .filename,
#tt-body-page figure.fileblock .filename {
    font-size: inherit;
    color: var(--point2);
    font-weight: bold;
    height: auto;
    margin: 0;
}

figure.fileblock .name,
#tt-body-page figure.fileblock .name {
    transition: .4s;
}

figure.fileblock:hover .name,
#tt-body-page figure.fileblock:hover .name {
    color: var(--point4);
}

figure.fileblock .size,
#tt-body-page figure.fileblock .size {
    font-size: .8rem;
    font-family: inherit;
    color: var(--point2);
    line-height: 1;
}

.text-item .imageblock > a > img {
    display: none;
}

.text-item .imageblock > a:after {
    content: '\f0c7';
    margin-left: 5px;
    font-size: .8em;
}

/* ---------------
    공감 버튼
--------------- */
body .container_postbtn {
    line-height: normal;
    padding: 0;
    margin-top: 25px;
}

body .container_postbtn .postbtn_like,
body .container_postbtn .btn_menu_toolbar {
    width: auto;
    height: 30px;
    line-height: inherit;
    padding: 0 10px;
    background-color: var(--point2);
    border-color: var(--text);
    border-radius: 5px;
}

body .container_postbtn .postbtn_like,
body .container_postbtn .postbtn_like .wrap_btn {
    display: flex;
    align-items: center;
}

body .container_postbtn .postbtn_like + .btn_menu_toolbar {
    display: inline-flex;
    align-items: center;
}

body .container_postbtn .btn_menu_toolbar .txt_state {
    font-size: 11px !important;
    font-family: 'Calibri', 'Noto Sans KR', sans-serif;
    transition: color .4s;
    color: var(--text);
    margin-bottom: 2px;
}

body .container_postbtn .btn_menu_toolbar .txt_state:before {
    content: '\f234';
    margin-right: 3px;
}

body .container_postbtn .btn_menu_toolbar.following .txt_state:before {
    content: '\e60a';
}

body .container_postbtn .btn_menu_toolbar.following .ico_check_type1 {
    margin: 0 0 0 5px;
}

body .container_postbtn .btn_menu_toolbar .ico_check_type1 {
    margin: 0 0 0 5px;
}

body .container_postbtn .btn_post {
    padding: 0 10px 0 0;
}

body .container_postbtn .wrap_btn:last-child .btn_post {
    padding-right: 0;
}

body .container_postbtn .btn_post .txt_like {
    font-size: 11px !important;
    font-family: 'Calibri', 'Noto Sans KR', sans-serif !important;
    vertical-align: middle;
    padding-left: 5px;
    transition: .4s;
}

body .container_postbtn .btn_post .ico_postbtn {
    position: relative;
    margin: 0 !important;
    text-indent: inherit !important;
    background-image: none;
    vertical-align: middle;
    overflow: visible;
    width: 12px;
    font-size: 0;
}

.container_postbtn .btn_post .empathy_up_without_ani .ico_like {
    color: var(--point3) !important;
}

body .container_postbtn .btn_post:hover .txt_like,
body .container_postbtn .btn_post:hover .ico_postbtn:after,
body .container_postbtn .btn_menu_toolbar:hover .txt_state {
    color: var(--point) !important;
}

body .container_postbtn .btn_post .ico_postbtn:after {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: .4s;
}

body .container_postbtn .btn_post .like_on .ico_like:after {
    content: '\f21e'
}

body .container_postbtn .btn_post .ico_like:after {
    content: '\f004'
}

body .container_postbtn .btn_post .ico_share:after {
    content: '\f1e0';
}

body .container_postbtn .btn_post .ico_statistics:after {
    content: '\f080';
}

body .container_postbtn .btn_post .ico_etc:after {
    content: '\f141';
}

body .container_postbtn .btn_post .txt_like.uoc-text {
    display: none;
}

/* ---------------
    본문 하단 태그
--------------- */
.tags {
    margin-top: 20px;
    cursor: default;
}

.tags .title {
    margin-right: 15px;
    display: none;
}

.tags .tag {
    color: transparent !important;
}

.tags a {
    white-space: nowrap;
    background-color: var(--point);
    border-radius: 5px;
    border: 1px solid;
    border-color: var(--text);
    color: var(--point2);
    padding: 3px 5px;
    transition: .4s;
    margin-right: 10px;
    margin: 5px 5px 0 0;
    display: inline-block;
}

.tags a:hover {
    background-color: var(--point2);
    color: var(--point);
}

/* ------------------
    카테고리의 다른 글
--------------------- */
#morebox.more_off {
    display: none;
}

#morebox {
    margin-top: 30px;
}

#morebox > .title {
    margin-bottom: 20px;
}

#morebox > .title,
#content.cmtopen .cmt > p {
    font-weight: bold;
}

#morebox > .title:before,
#content.cmtopen .cmt > p:before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 10px;
    border: 1px solid;
    border-color: var(--text);
    background-color: var(--point4);
    display: inline-block;
    margin-right: 3px;
    transition: .4s;
}

#morebox.myoskin:not(.myo_bbs) .item {
    width: calc((100% - var(--margin) * 3) / 4) !important;
    margin: 0 var(--margin) 0 0 !important;
}

#morebox.myoskin .item:not(.myo_bbs):nth-child(4n) {
    margin-right: 0 !important;
}

/* ---------------
    댓글 펼침
--------------- */
#opencmt {
    z-index: 1;
    font-size: .85em;
    width: 70px;
    white-space: nowrap;
    text-align: left;
    transition: 1s;
}

#opencmt .cnt:not(:empty) {
    margin-left: 5px;
}

#content:not(.cmtopen) .cmt > p,
#opencmt + span,
body:not(#tt-body-page) #content:not(.cmtopen) #rp .cmt,
#tt-body-page #content:not(.cmtopen) #rp .cmt {
    display: none;
}

/* ---------------
    댓글, 방명록
--------------- */
#content.cmtopen .cmt .lst > div {
    display: flex;
}

#tt-body-page .cmt .window-article,
#tt-body-guestbook .cmt .window-article {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}

#tt-body-page .cmt .window-article .lst,
#tt-body-guestbook .cmt .window-article .lst {
    flex-grow: 1;
    overflow: hidden;
    overflow-y: auto;
}

#tt-body-page #content:not(.cmtopen) .cmt .window-article .lst,
#tt-body-guestbook .cmt .window-article .lst,
#tt-body-page #content:not(.cmtopen) .cmt .window-article .write,
#tt-body-guestbook .cmt .window-article .write {
    padding: 20px;
}

#tt-body-page .cmt .window-article .write,
#tt-body-guestbook .cmt .window-article .write {
    margin: 0;
}

#tt-body-page .cmt .window-article .lst + form .write,
#tt-body-guestbook .cmt .window-article .lst + form .write {
    border-top: 1px solid;
}

body:not(#tt-body-guestbook) #content.cmtopen .cmt .write {
    margin: 0 -20px;
    padding: 20px 20px 0;
}

/* 댓글, 방명록 작성 */
.write {
    margin-top: 25px;
    position: relative;
}

.write textarea {
    padding: 10px 10px 10px 45px;
    height: 43px;
    min-height: 43px;
    width: calc(100% - 53px);
    max-width: calc(100% - 53px);
    min-width: calc(100% - 53px);
    position: relative;
    display: block;
    vertical-align: top;
    transition: .4s;
    background-color: var(--point2);
    border: 1px solid;
    border-color: var(--text);
    border-radius: 25px;
    resize: both;
    overflow: hidden;
    overflow-y: auto;
}

.write textarea::-webkit-scrollbar {
    width: 0;
}

.write textarea:active,
.write textarea:focus {
    height: 150px;
}

.write .textarea {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.write textarea::-webkit-resizer {
    opacity: 0;
}

.write .textarea:after {
    content: "";
    z-index: 1;
    position: absolute;
    right: 53px;
    bottom: 0;
    pointer-events: none;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 7px 7px;
    border-color: transparent transparent var(--point2) transparent;
}

.write button {
    padding: 5px;
    transition: .4s;
    width: 100%;
    background-color: var(--point2);
    color: var(--text);
    border: 1px solid;
    border-color: var(--text);
    height: 43px;
    border-radius: 50px;
    margin-left: 10px;
    cursor: pointer;
}

.write button:hover {
    background-color: var(--point);
    color: var(--point2);
}

.write .inputbox {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 5px;
}

.write .inputbox > input,
.write .secret {
    margin-right: 5px;
    text-align: center;
    overflow: hidden;
    height: 33px;
}

.write .inputbox input {
    background-color: var(--point2);
    border: 1px solid;
    border-color: var(--text);
    border-radius: 5px;
    flex-grow: 1;
}

.write .inputbox input:last-child {
    margin-right: 0;
}

.write .inputbox input:focus:-moz-placeholder {
    color: transparent;
    transition: color .4s;
}

.write .inputbox input:focus::placeholder {
    color: transparent;
    transition: color .4s;
}

.write .inputbox input:focus:-ms-input-placeholder {
    color: transparent;
    transition: color .4s;
}

.write .inputbox input:focus::placeholder {
    color: transparent;
    transition: color .4s;
}

.write .secret {
    position: absolute;
    z-index: 1;
    overflow: visible;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 40px;
    top: 20px;
}

#content.cmtopen .write .secret {
    left: 20px;
}

.write .inputbox input[name="secret"] {
    visibility: hidden;
}

.write input[name="secret"]:after {
    content: "\f13e";
    transition: .4s;
    visibility: visible;
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transform: translateY(-50%);
}

.write input[name="secret"]:checked:after {
    content: "\f023";
    color: var(--point);
}

/* 댓글, 방명록 목록 */
.cmt {
    width: 100%;
    flex-direction: column;
}

body:not(#tt-body-page) #rp .cmt,
#tt-body-page #content.cmtopen #rp .cmt {
    margin-top: 25px;
}

body:not(#tt-body-page) #rp .window-title,
#tt-body-page #content.cmtopen #rp .window-title {
    display: none;
}

#rp.order .lst {
    flex-direction: column-reverse;
}

.lst {
    display: flex;
    flex-direction: column;
}

.lst > ul {
    padding: 25px 0;
    border-bottom: 1px dashed;
    border-color: var(--point);
}

#rp:not(.order) .lst > ul:first-child,
#rp.order .lst > ul:last-child,
#tt-body-guestbook .lst > ul:first-child {
    padding-top: 0;
}

#rp:not(.order) .lst > ul:last-child,
#rp.order .lst > ul:first-child,
#tt-body-guestbook .lst > ul:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

#content.cmtopen #rp:not(.order) .lst > ul:last-child,
#content.cmtopen #rp.order .lst > ul:first-child {
    padding-bottom: 25px;
}

.lst ul > li {
    display: flex;
    max-width: calc(100% - 60px);
}

.lst .name {
    font-weight: bold;
    margin-bottom: 5px;
}

.lst .text {
    background-color: var(--point);
    padding: 10px;
    border-radius: 10px 25px 25px;
    display: inline-block;
    vertical-align: middle;
    min-width: 45px;
    border: 1px solid;
    border-color: var(--text);
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.lst li:not(.rp_admin):not(.guest_admin) .text a {
    color: var(--point2);
}

.lst li:not(.rp_admin):not(.guest_admin) .text a:hover {
    color: var(--point4);
}

.lst li > div:nth-child(2) > div {
    display: flex;
    align-items: flex-end;
}

.lst .info {
    position: relative;
    margin-left: 15px;
    cursor: default;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.lst .info > a,
.lst .info .date a:after {
    opacity: 0;
    transition: .4s;
    font-size: .8em;
    cursor: pointer;
}

.lst li:hover .info > a,
.lst li:hover .info .date a:after {
    opacity: 1;
}

.lst .info > a:first-child {
    margin-right: 7px;
}

.lst .info .date {
    font-size: .8em;
    word-break: keep-all;
    word-wrap: break-word;
}

.lst .info .date a {
    position: absolute;
    top: 3px;
    left: 8px;
    visibility: hidden;
    margin-left: 30px;
    font-size: 0;
}

.lst .date a:after {
    content: '\f05e';
    font-family: 'fontAwesome';
    visibility: visible;
    font-size: .8rem !important;
    display: inline-block;
}

.lst .rp_admin,
.lst .guest_admin {
    flex-direction: row-reverse;
    margin-left: auto;
}

.lst .rp_admin .name,
.lst .guest_admin .name {
    text-align: right;
}

.lst .rp_admin .text,
.lst .guest_admin .text {
    border-radius: 25px 10px 25px 25px;
    background-color: var(--point2);
}

.lst .rp_admin > div:nth-child(2) > div,
.lst .guest_admin > div:nth-child(2) > div {
    flex-direction: row-reverse;
}

.lst .rp_admin .info,
.lst .guest_admin .info {
    margin: 0 15px 0 0;
    text-align: right;
}

.lst .rp_admin .info .date a,
.lst .guest_admin .info .date a {
    left: auto;
    right: 40px;
    margin: 0;
}

.lst .rp_admin .pro,
.lst .guest_admin .pro {
    margin: 0 0 0 15px !important;
}

.lst .reply > li {
    margin-top: 25px;
}

.profile .lst .pro {
    flex: 0 0 45px;
    height: 45px;
    align-self: flex-end;
    margin-right: 15px;
    border: 1px solid;
    border-radius: 50px;
    overflow: hidden;
}

.profile .lst .pro img[src*="profile_default"] + div {
    background-color: var(--point2);
    width: 100%;
    height: 100%;
    display: block;
}

.profile .lst .rp_admin .pro img[src*="profile_default"] + div,
.profile .lst .guest_admin .pro img[src*="profile_default"] + div {
    background-color: var(--point);
}

.lst .you > div {
    flex-grow: 1;
}

.lst .you .text {
    display: block;
    width: 100%;
}

body:not(.profile) .lst .pro,
.lst .pro img[src*="profile_default"],
.lst .name img[alt="BlogIcon"] {
    display: none;
}

.tt_more_preview_comments_text {
    border: 1px solid;
    border-color: var(--text);
    padding: 10px;
    border-radius: 20px;
    background-color: var(--point3);
    color: var(--point2);
    transition: .4s;
}

.tt_more_preview_comments_text:hover {
    background-color: var(--point4);
}

#tt-body-page #content:not(.cmtopen) .cmt {
    position: fixed;
}

/* ---------------
    태그 클라우드
--------------- */
#tagcloud {
    position: relative;
}

#tagcloud ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: unset;
    justify-content: center;
    align-items: unset;
}

#tagcloud li {
    margin: 0 20px 20px 0;
    text-align: center;
    font-weight: bold;
    max-width: 70px;
}

#tagcloud li svg {
    width: 100%;
    transition: .4s;
}

#tagcloud li:hover svg {
    transform: scale(1.1);
}

#tagcloud li p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#tagcloud li a {
    display: block;
}

#tagcloud li .cloud1 svg path[d^="M11"] {
    fill: var(--point3) !important;
}

#tagcloud li .cloud2 svg path[d^="M11"] {
    fill: var(--con) !important;
}

#tagcloud li .cloud3 svg path[d^="M11"] {
    fill: var(--point4) !important;
}

#tagcloud li .cloud4 svg path[d^="M11"] {
    fill: var(--point) !important;
}

#tagcloud li .cloud5 svg path[d^="M11"] {
    fill: var(--point2) !important;
}

/* ---------------
    페이지네이션
--------------- */
.pagination {
    cursor: default;
    text-align: center;
    font-family: var(--fontA);
    line-height: 1;
}

.pagination a span {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 100px;
    transition: .4s;
    font-size: 0;
    vertical-align: middle;
    background-color: var(--point2);
    border: 1px solid;
    border-color: var(--text);
}

.pagination a span:not(.selected):hover {
    background-color: var(--point4);
}

.pagination a {
    margin: 0 5px;
    vertical-align: middle;
}

.pagination .prev,
.pagination .next {
    display: none;
}

.pagination .prev:not([href]),
.pagination .next:not([href]) {
    opacity: 0.5;
}

.pagination a span.selected,
#myoList .pagination a span.selected {
    background-color: var(--point3);
    opacity: 1;
}

/* ================ 
 *
 *   사이드바
 *
 * ================ */
#aside {
    position: fixed;
    right: -300px;
    height: 100%;
    z-index: 999;
    width: 300px;
    border-left: 1px solid;
    border-color: var(--text);
    cursor: default;
    transition: right .4s;
}

#aside:after {
    content: '';
    background-color: var(--point4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

#aside.open {
    right: 0;
}

#aside > div {
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 60px 20px 20px;
}

#aside section {
    position: relative;
}

#aside section:not(:last-child) {
    margin-bottom: 5px;
}

#aside section.minimize {
    width: 100% !important;
}

#aside section .window-title {
    text-align: left;
}

#aside section .window-title > p {
    cursor: default;
}

#aside section .window-article {
    padding: 10px 20px;
    line-height: 2.2;
    align-content: flex-start;
    justify-content: normal;
}

#aside section .window-article .info .title:before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 10px;
    border: 1px solid;
    border-color: var(--text);
    background-color: var(--point3);
    display: inline-block;
    margin-right: 10px;
    transition: .4s;
}

#aside section .window-article .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
}

#aside section .window-article .info .title {
    flex-grow: 1;
    font-size: .9em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#aside section .window-article .info span + span,
#aside section .window-article .info span + span:last-child span {
    margin-left: 5px;
    font-size: .7em;
    color: var(--point4);
}

#aside section .item .cnt span:empty {
    display: none;
}

#aside.side-thum section .myoskin {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
}

#aside.side-thum section .myoskin .item {
    width: calc((100% - 10px) / 2);
    margin: 0 10px 10px 0;
}

#aside.side-thum section .myoskin .item:nth-child(2n) {
    margin-right: 0;
}

#aside.side-thum section .myoskin .item:nth-last-child(2),
#aside.side-thum section .myoskin .item:last-child {
    margin-bottom: 0;
}

#aside.side-thum section .myoskin .item .thumbox {
    transition: transform .4s;
    position: relative;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1;
    margin-top: 8px;
}

#aside.side-thum section .myoskin .item .thumbox:before,
#aside.side-thum section .myoskin .item .thumbox > div:before {
    content: '';
    background-color: var(--point);
    height: 10px;
    border-radius: 5px 5px 0 0;
    width: 30%;
    position: absolute;
    top: -7px;
    left: 2.5%;
    z-index: -1;
}

#aside.side-thum section .myoskin .item .thumbox:after,
#aside.side-thum section .myoskin .item .thumbox > div:after {
    content: '';
    position: absolute;
    top: -3px;
    left: 2.5%;
    background-color: var(--point);
    height: 10px;
    border-radius: 0 5px 0 0;
    width: 95%;
    z-index: -1;
}

#aside.side-thum section .myoskin .item .thumbox > div:before,
#aside.side-thum section .myoskin .item .thumbox > div:after {
    background-color: var(--text);
    z-index: -2;
    left: calc(2.5% - 1px);
}

#aside.side-thum section .myoskin .item .thumbox > div:before {
    top: -8px;
    width: calc(30% + 2px);
    border-radius: 6px 6px 0 0;
}

#aside.side-thum section .myoskin .item .thumbox > div:after {
    top: -4px;
    width: calc(95% + 2px);
    border-radius: 0 6px 0 0;
}

#aside.side-thum section .myoskin .item .thumbox .thumbnail {
    position: relative;
    overflow: hidden;
    border: 1px solid;
    border-color: var(--text);
    border-radius: 5px;
}

#aside.side-thum section .thumbox + .info {
    display: block;
    text-align: center;
    overflow: hidden;
    width: 100%;
    margin-top: 8px;
}

#aside.side-thum section .thumbox + .info .title:before {
    display: none;
}

#aside.side-thum section .thumbox + .info .title {
    display: -webkit-inline-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    margin: 0 auto;
    max-width: 70%;
    font-weight: bold;
    white-space: normal;
    line-height: 1.4;
}

#aside.side-thum section .thumbox + .info .cnt span {
    position: absolute;
    bottom: 2px;
    min-width: auto;
    color: var(--point3) !important;
}

/* ---------------
    달력
--------------- */
/* 달력 월 표시 */
#aside .calendar .cal_month {
    cursor: default;
    padding: 0px 8px;
}

#aside .calendar .cal_month a {
    color: var(--point4);
}

#aside .calendar .cal_month a:hover {
    color: var(--point3);
}

#aside .calendar .cal_month .month {
    font-weight: bold;
    letter-spacing: 2px;
}

#aside .calendar .cal_month .prev {
    float: left;
}

#aside .calendar .cal_month .next {
    float: right;
}

/* 달력 요일 표시(th 영역) */
#aside .calendar thead tr th span {
    background-color: var(--point);
    border: 1px solid;
    border-color: var(--text);
    line-height: 1;
    border-radius: 5px;
    color: var(--point2);
    font-size: .8em;
    width: calc(100% - 2px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 0;
    font-weight: bold;
}

#aside .calendar .cal_week1:last-child span {
    background-color: var(--point4);
}

/* 달력 일요일 표시(th 영역) */
#aside .calendar .cal_week2 span {
    background-color: var(--point3);
}

/* 달력 Day(td 영역) */
#aside .calendar .cal_day {
    text-align: center;
    cursor: default;
    font-size: .85em;
}

/* 달력 Day, 일요일 (td 영역) */
#aside .calendar .cal_day_sunday {
    color: var(--point3);
}

#aside .calendar .cal_day_sunday a {
    color: var(--point);
}

/* 달력 지난 달 날짜 표시(td) */
#aside .calendar .cal_day1 {}

/* 달력 다음 달 날짜 표시(td) */
#aside .calendar .cal_day2 {}

/* 달력 이번 달 날짜 표시(td) */
#aside .calendar .cal_day3:last-child {
    color: var(--point4);
}

/* 달력 오늘 날짜 표시(td) */
#aside .calendar .cal_day4 span {
    color: var(--text) !important;
}

#aside .calendar .cal_day4 span {
    position: relative;
    z-index: 1;
    min-width: 13px;
    line-height: 1;
    padding: 1px;
    text-align: center;
    display: inline-block;
}

#aside .calendar .cal_day4 span:after {
    content: '';
    position: absolute;
    left: -1px;
    top: -1px;
    background-color: var(--point2);
    height: 100%;
    width: 100%;
    z-index: -2;
    border-radius: 15px;
    border: 1px solid;
    border-color: var(--text);
}

/* 달력 글쓴 날 링크 스타일 */
#aside .calendar a.cal_click {
    font-weight: bold;
}

#aside .calendar a.cal_click:link {
    color: var(--point);
}

#aside .calendar a.cal_click:visited {
    color: var(--point4);
}

#aside .calendar a.cal_click:hover {
    color: var(--point3) !important;
}

/* ---------------
    태그 클라우드
--------------- */
#aside .tagbox .window-article {
    display: flex;
    flex-flow: row wrap;
    justify-content: normal;
}

#aside .tagbox .window-article a {
    padding: 3px;
    text-align: center;
    border: 1px solid;
    border-color: var(--text);
    line-height: 1;
    margin: 0 3px 3px 0;
    border-radius: 20px;
    min-width: 28px;
    font-size: .85em;
    transition: .4s;
}

#aside .tagbox .window-article .cloud1 {
    background-color: var(--text);
    color: var(--point2);
}

#aside .tagbox .window-article .cloud2 {
    background-color: var(--point3);
    color: var(--point2);
}

#aside .tagbox .window-article .cloud3 {
    background-color: var(--point4);
    color: var(--point2);
}

#aside .tagbox .window-article .cloud4 {
    background-color: var(--point);
    color: var(--point2);
}

#aside .tagbox .window-article .cloud5 {
    background-color: var(--point2);
}

#aside .tagbox .window-article a:hover {
    background-color: var(--con);
    color: var(--text);
    font-weight: bold;
}

/* ---------------
    카운터
--------------- */
#aside .counter .window-article .info:first-child {
    align-items: flex-end;
}

#aside .counter .window-article .info:first-child span:last-child {
    font-size: 2.5rem;
    line-height: 1;
}

#aside .counter .window-article .info span:last-child {
    font-size: 1rem;
    font-weight: bold;
}

/* ---------------
    트위터 위젯
--------------- */
#aside .twt {
    height: 30vh;
}

/* ================ 
 *
 *   푸터
 *
 * ================ */
#footer {}

/* ================ 
 *
 *   기타
 *
 * ================ */
/* 테마 모드 */
.theme {
    width: 37px;
}

.theme a {
    position: absolute;
    cursor: pointer;
    line-height: 1;
    vertical-align: middle;
}

.theme-light .theme .true,
.theme-dark .theme .false {
    display: none;
}

.theme a i {
    vertical-align: bottom;
}

/* 부드러운 화면 전환 */
.smooth-screen #loding {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg);
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.smooth-screen #loding .pulse-container {
    width: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadein 2000ms ease-out;
    -moz-animation: fadein 2000ms ease-out;
    -webkit-animation: fadein 2000ms ease-out;
    -o-animation: fadein 2000ms ease-out;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pulse-bubble {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid;
}

.pulse-bubble-1 {
    animation: pulse .4s ease 0s infinite alternate;
    background-color: var(--point4);
}

.pulse-bubble-2 {
    animation: pulse .4s ease .2s infinite alternate;
    background-color: var(--point2);
}

.pulse-bubble-3 {
    animation: pulse .4s ease .4s infinite alternate;
    background-color: var(--point3);
}

@keyframes pulse {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: .25;
        transform: scale(.75);
    }
}

/* 새 글 아이콘 */
.new {
    color: var(--point3);
    margin-left: 5px;
    font-size: .8em;
    animation: animated-cursor 1500ms steps(30, end) infinite;
}

@keyframes animated-cursor {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* 툴팁 */
.YACSSTooltip {
    z-index: 99999;
    background-color: transparent !important;
    overflow: hidden;
    border-color: var(--text) !important;
    line-height: 1;
    color: var(--text) !important;
    font-weight: bold;
    white-space: nowrap !important;
    font-size: .8rem;
}

/* ie */
#ie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 1.3em;
    padding: 5px;
    background-color: #000;
    border-radius: 0 0 10px 10px;
    color: #fff;
    z-index: 9999999999999;
    text-align: center;
}

#ie a {
    font-weight: bold;
    color: #ff0;
}

/* --------------------
    카피라이트 삭제 금지
----------------------- */
.copy {
    position: fixed;
    bottom: 10px;
    right: 15px;
    font-size: 8px;
    font-family: 'Meddon', cursive;
    text-align: center;
}

.copy:hover {
    color: var(--point2) !important;
}

/* ---------------
    커버 영역
--------------- */
#content:not(.overlap) #cover {
    flex-direction: row;
    justify-content: center;
    align-content: flex-start;
    align-items: baseline;
    position: relative;
}

#cover {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
}

#cover section {
    margin-bottom: var(--margin);
}

#cover section:last-child {
    margin-bottom: 0 !important;
}

#cover section:after {
    content: '';
    display: block;
    clear: both;
}

#cover .c-title > span:empty {
    display: none;
}

#cover + #article {
    flex-grow: unset;
    display: none;
}

/* 슬라이드 공통 */
#cover {
    --result: calc(var(--margin) / 2);
}

#cover #c-slider2 .myo_gal:not(.hover) .item,
#cover #c-slider3 .myo_gal:not(.hover) .item {
    padding-top: 10px;
}

#cover #c-slider2 .myo_gal:not(.hover) .item .title,
#cover #c-slider3 .myo_gal:not(.hover) .item .title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
}

#cover #c-slider3 .slick-slide > div:first-child .item {
    margin-bottom: var(--margin) !important;
}

#cover section:not(#c-slider):not(#c-notice) .slick-slide {
    margin: 0 calc(var(--result) * 1);
}

#cover section:not(#c-slider):not(#c-notice) .slick-slider .slick-list {
    margin: 0 calc(var(--result) * -1);
}

#cover .slick-slider .slick-prev,
#cover .slick-slider .slick-next {
    font-size: 0;
    position: absolute;
    top: 50%;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 9999999;
    opacity: 0;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    color: var(--point);
    transition: .4s;
    width: 30px;
    height: 30px;
    overflow: hidden;
}

#cover .slick-slider .slick-prev:before,
#cover .slick-slider .slick-next:before {
    font-family: 'themify';
    font-size: 1rem;
    display: inline-block;
    transition: .4s;
}

#cover .slick-slider .slick-prev:after,
#cover .slick-slider .slick-next:after {
    opacity: 0.8;
    width: 30px;
    height: 30px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#cover .slick-slider .slick-prev:before {
    content: '\e64a';
}

#cover .slick-slider .slick-next:before {
    content: '\e649';
}

#cover .slick-slider .slick-prev:hover:before,
#cover .slick-slider .slick-next:hover:before {
    color: var(--point);
}

#cover section:hover .slick-slider .slick-prev,
#cover section:hover .slick-slider .slick-next {
    opacity: 1;
}

#cover .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
}

#cover .slick-dots button {
    font-size: 0;
    vertical-align: top;
}

#cover .slick-dots > li {
    margin: 0 5px;
    vertical-align: top;
}

#cover .slick-dots button {
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background-color: var(--point2);
    border: 1px solid;
    border-color: var(--text);
    transition: .4s;
    cursor: pointer;
    vertical-align: top;
}

#cover .slick-dots .slick-active button {
    background-color: var(--point3);
}

#cover .slick-dots li:hover button {
    background-color: var(--point4);
}

/* 슬라이드1 */
#c-slider {
    height: auto !important;
}

#c-slider > ul {
    padding: 0;
}

#c-slider .slick-slide {
    counter-increment: num;
}

#c-slider .item {
    position: relative;
    vertical-align: top;
}

#c-slider .thumbox {
    transition: .4s;
}

#c-slider:hover .thumbox {
    opacity: .2;
    filter: blur(3px);
}

#c-slider .item .thumbox {
    position: relative;
    overflow: hidden;
    transition: .4s;
}

#c-slider #myoList:not(.c-you-player) .item .thumbox .thumbnail,
#c-slider #myoList.c-you-player .item:not(.you) .thumbnail {
    padding-bottom: 56.25%;
}

#c-slider #myoList:not(.c-you-player) .item .thumbox .thumbnail > *,
#c-slider #myoList.c-you-player .item:not(.you) .thumbnail > * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#c-slider #myoList.c-you-player .item .inline-YTPlayer {
    max-width: none !important;
}

#c-slider #myoList.c-you-player .item .ytbg {
    height: auto !important;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

#c-slider #myoList.c-you-player .item .ytbg > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
    overflow: visible !important;
}

#c-slider #myoList.c-you-player .item .ytbg > div iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* width: 100% !important; */
    /* height: 100% !important; */
    margin: 0 !important;
    min-width: 100% !important;
    min-height: 100% !important;
}

#c-slider .thum,
#c-slider .noimg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

#c-slider .item .info {
    color: var(--point2);
    transition: .4s;
    position: absolute;
    top: calc(50% - 1.2em);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: 1px 0px 0px var(--text), -1px 0px 0px var(--text), 0px 1px 0px var(--text), 0px -1px 0px var(--text);
    letter-spacing: 3px;
    opacity: 0;
    font-style: italic;
}

#c-slider:hover .item .info {
    opacity: 1;
}

#c-slider .item .info:before {
    content: counter(num, decimal-leading-zero);
    font-size: 1.2em;
    line-height: 1;
    transition: transform 0.5s 0.5s, opacity 0.2s 0.5s, -webkit-transform 0.5s 0.5s;
    will-change: transform, opacity;
    transform: translateY(-30px);
    display: block;
    opacity: 0;
    margin-bottom: 10px;
}

#c-slider .item .info .title {
    text-align: center;
    font-size: 2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: keep-all;
    overflow-wrap: anywhere;
    overflow: hidden;
    line-height: 1.3;
    transition: transform 0.5s 0.8s, opacity 0.5s 0.8s;
    will-change: transform, opacity;
    opacity: 0;
    transform: translateY(-30px);
    color: var(--point2);
}

#c-slider .slick-current .item .info:before,
#c-slider .slick-current .item .info .title {
    opacity: 1;
    transform: translateY(0);
}

#c-slider .slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -8px);
    opacity: 0;
    transition: transform 0.5s 0.8s, opacity 0.5s 0.8s;
    will-change: transform, opacity;
    transition-delay: .5s;
}

#c-slider:hover .slick-dots {
    opacity: 1;
    transform: translate(-50%, 0);
}

#c-slider .c-you-player .item.you .framebox > div {
    max-width: none !important;
}

#c-slider .c-you-player .item.you .framebox iframe {
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

/* 커버 - 슬라이더2, 슬라이더3 */
#c-slider2 .item {
    margin: 0;
}

#c-slider2 .item:hover .thumbox,
#c-slider3 .item:hover .thumbox {
    transform: none;
}

#c-slider3 .item {
    margin-right: 0;
}

#c-slider3 .slick-slide > div:last-child .item {
    margin-bottom: 0;
}

/* 커버 공지 */
#c-notice {
    position: relative;
}

#c-notice .thumbox img {
    margin-bottom: 10px;
}

#c-notice a:not([href^='http']) {
    display: none;
}

#c-notice a {
    margin-top: 20px;
    color: var(--point2);
    background-color: var(--point3);
    padding: 3px 5px;
    border: 1px solid;
    border-color: var(--text);
    border-radius: 20px;
    display: inline-block;
    line-height: 1;
    font-weight: bold;
    transition: .4s;
}

#c-notice a:hover {
    background-color: var(--point);
}

#c-notice .slick-slider {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#c-notice .slick-dots {
    margin-top: var(--margin);
}

#c-notice .slick-dots li {
    margin: 0 10px 0 0;
    counter-increment: num;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#c-notice .slick-dots li:after {
    content: counter(num, decimal-leading-zero);
    font-size: .6em;
}

#c-notice .slick-dots button {
    margin-right: 3px;
}

/* 커버 트위터 위젯 */
#cover #c-twt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

#cover #c-twt > ul {
    height: 30vh;
    overflow: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    flex-grow: 1;
}

@media screen and (min-width: 1025px) {
    .m {
        display: none !important;
    }
}

/* 태블릿 영역 */
@media screen and (max-width: 1024px) {
    body {
        background-image: none !important;
    }

    .mbg {
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-position: center center;
        z-index: -1;
    }

    .parent.center {
        width: 90%;
        left: 5%;
    }

    #tt-body-index .window .window-title,
    #tt-body-category .window .window-title {
        text-align: left;
    }

    #tt-body-index .window .window-title > span,
    #tt-body-category .window .window-title > span {
        display: none;
    }

    #header .left > .blogmenu,
    #header .right .intro {
        display: none;
    }

    #content .iconbox {
        width: 50px;
    }

    #content.wn4 .myo_web:not(.you-player) .item,
    #content.ywn4 .myo_web.you-player .item {
        width: calc((100% - var(--margin)) / 2) !important;
        margin: 0 var(--margin) var(--margin) 0 !important;
    }

    #content.wn4 .myo_web:not(.you-player) .item:nth-child(2n),
    #content.ywn4 .myo_web.you-player .item:nth-child(2n) {
        margin-right: 0 !important;
    }

    #content.wn4 .myo_web:not(.you-player) .item:nth-last-child(-n + 2):nth-child(2n + 1),
    #content.wn4 .myo_web:not(.you-player) .item:nth-last-child(-n + 1):nth-child(2n + 2),
    #content.ywn4 .myo_web.you-player .item:nth-last-child(-n + 2):nth-child(2n + 1),
    #content.ywn4 .myo_web.you-player .item:nth-last-child(-n + 1):nth-child(2n + 2) {
        margin-bottom: 0 !important;
    }

    .myo_bbs .item .cate {
        display: none
    }

    .myo_bbs .item .date {
        display: block;
        margin: 0;
    }

    #content #cover .myo_gal .item {
        width: calc((100% - var(--margin)) / 2) !important;
        margin: 0 var(--margin) var(--margin) 0 !important;
    }

    #content #cover .myo_gal .item:nth-child(2n) {
        margin-right: 0 !important;
    }

    #content #cover .myo_gal .item:nth-last-child(-n + 2):nth-child(2n + 1),
    #content #cover .myo_gal .item:nth-last-child(-n + 1):nth-child(2n + 2) {
        margin-bottom: 0 !important;
    }

    #content #cover .myo_bbs .item .cate {
        display: none;
    }

    #content #cover .myo_web .item,
    #content #cover .myo_ins .item {
        width: 100% !important;
        margin: 0 0 var(--margin) 0 !important;
    }

    #content #cover .myo_web .item:last-child,
    #content #cover .myo_ins .item:last-child {
        margin-bottom: 0 !important;
    }

    #content #cover #c-slider2 .item,
    #content #cover #c-slider3 .item {
        width: 100% !important;
    }

    #content #cover #c-slider3 .slick-slide > div:first-child .item {
        margin-bottom: var(--margin) !important;
    }
}

@media screen and (min-width: 426px) and (max-width: 768px) {}

@media screen and (min-width: 426px) {

    .search-box.m,
    .top.m {
        display: none !important;
    }
}

@media screen and (max-width: 425px) {
    #container {
        height: auto;
    }

    #header {
        position: fixed;
    }
	
    #content:before {
        content:'';
        display:block;
        height: 41px;
    }
	
    .window {
        width: 100% !important;
        margin: 0 0 var(--margin) 0 !important;
        max-width: 100%;
        max-height: none;
        position: relative !important;
        left: 0 !important;
    }

    #header .left .search-box,
    #header .battery,
    #header .date,
    #content .iconbox {
        display: none;
    }

    #header .toggle {
        padding-left: 0;
    }

    #header .clock,
    #header .clock .time {
        margin: 0;
    }

    #header .side {
        padding-right: 0;
    }

    #header .catebox {
        width: 45%
    }

    #header .tt_category + .cate a {
        border-radius: 0;
    }

    #header .catebox .guestBook {
        border-radius: 0;
    }

    #header .catebox .search-box {
        display: block;
    }

    #header .catebox .search-box > i {
        display: none;
    }

    #header .catebox .search-box .input {
        max-width: 100%;
        padding: 15px 20px;
    }

    #header .catebox .search-box .input input {
        margin: 0;
        font-weight: bold;
        color: var(--point2);
        border-radius: 5px;
    }

    .search-box input:-moz-placeholder {
        color: var(--point2);
    }

    .search-box input::placeholder {
        color: var(--point2);
    }

    .search-box input:-ms-input-placeholder {
        color: var(--point2);
    }

    .search-box input::placeholder {
        color: var(--point2);
    }

    #content {
        padding: var(--margin) var(--margin) calc(var(--margin) * 2);
    }

    #content .myoskin:not(.myo_bbs) .item {
        width: calc((100% - var(--margin)) / 2) !important;
        margin: 0 var(--margin) var(--margin) 0 !important;
    }

    #content .myoskin:not(.myo_bbs) .item:nth-child(2n) {
        margin-right: 0 !important;
    }

    #content .myoskin:not(.myo_bbs) .item:nth-last-child(-n + 2):nth-child(2n + 1),
    #content .myoskin:not(.myo_bbs) .item:nth-last-child(-n + 1):nth-child(2n + 2) {
        margin-bottom: 0 !important;
    }

    #tt-body-page #content:not(.cmtopen) #rp .cmt {
        max-width: calc(100% - 50px);
        position: fixed;
        top: 100px;
        left: 30px;
    }

    .lst ul > li {
        max-width: 100%;
    }

    .top {
        right: 15px;
        bottom: 25px;
        width: 50px;
        position: fixed;
        display: none;
        z-index: 999999;
    }

    .top svg {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 375px) {
    #header .clock {
        display: none;
    }
}
