@charset "utf-8";

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

/* 전체 폰트 */
html,
th,
td,
input,
select,
textarea,
button,
blockquote,
blockquote p,
#tt-body-page blockquote,
#tt-body-page blockquote p,
#tt-body-page blockquote[data-ke-style='box'],
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
figure figcaption,
figure[data-ke-type='video'] figcaption,
code {
    font-family: 'Calibri', 'Noto Sans KR', sans-serif;
    line-height: 1.7;
    font-size: 11px;
    color: #bbb;
    color: var(--text);
}

/* CSS리셋 */
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
    margin: 0;
    padding: 0;
    outline: none;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
details,
menu,
figure,
figcaption {
    display: block;
}

button,
input[type=submit],
input[type=reset],
input[type=button] {
    overflow: visible;
    cursor: pointer;
}

input[type=text],
input[type=email],
input[type=password],
input[type=submit],
textarea {
    -webkit-appearance: none;
}

input,
select,
textarea,
button {
    background: transparent;
    border: 0;
    outline: none;
}

button {
    overflow: visible;
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
}

img,
fieldset {
    border: none;
    vertical-align: top;
}

iframe,
embed {
    width: 100%;
}

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

table[border^="1"],
table[border^="1"] tr,
table[border^="1"] td {
    border: 1px solid;
    border-color: #bad2f6;
    border-color: var(--gra1);
    border-spacing: 0;
}

table,
tr,
td {
    border-spacing: 1px;
    border: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

/* 기본 설정 */
body {
    background-color: #FFF8F4;
    background-color: var(--bg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

a {
    color: #bbb;
    color: var(--text);
    text-decoration: none;
    transition: color .4s;
}

a:hover {
    color: #ffb88d;
    color: var(--gra2);
}

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

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

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

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

/* 마우스 드래그 블럭 */
::selection {
    color: #fff;
    color: var(--gra3);
    background-color: #bad2f6;
    background-color: var(--gra1);
}

::-moz-selection {
    color: #fff;
    color: var(--gra3);
    background-color: #bad2f6;
    background-color: var(--gra1);
}

/* 스크롤바 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #FFF8F4;
    background-color: var(--bg);
}

::-webkit-scrollbar-thumb {
    background-color: #ffb88d;
    background-color: var(--scroll);
    border-radius: 10px;
}

/* 밑줄 */
u {
    text-decoration: none;
    position: relative;
    background: -webkit-linear-gradient(left, var(--gra1) 0%, var(--gra2) 100%);
    background: -o-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: -moz-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
    background-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: -webkit-linear-gradient(0deg, #bad2f6, #ffb88d);
    background-image: -webkit-linear-gradient(0deg, var(--gra1), var(--gra2));
    background-size: 100% 2px;
    background-position: center 100%;
    background-repeat: no-repeat;
    transition: .4s ease-out;
}

u:hover {
    color: #fff;
    color: var(--gra3);
    background-size: 100% 100%;
}

/* 전체 박스 */
#container {
    margin: 100px auto 50px;
    display: -webkit-flex;
    display: flex;
    -weblot-flex-direction: row;
    flex-direction: row;
    width: 100%;
}

.smooth-screen #container,
.smooth-screen .copy,
.smooth-screen .myoskin .item,
.smooth-screen .noti,
.smooth-screen #article {
    animation: fadein 1000ms ease-out;
    -moz-animation: fadein 1000ms ease-out;
    -webkit-animation: fadein 1000ms ease-out;
    -o-animation: fadein 1000ms 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;
    }
}

#container #header,
#container #footer {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    width: 20%;
    overflow: hidden;
    position: relative;
}

#container #content {
    padding: 0 30px;
    overflow: hidden;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex: 0 0 60%;
    flex: 0 0 60%;
}

.gra,
#myo_web.inner .item .info .title,
body.over .framebox {
    background: -webkit-linear-gradient(left, var(--gra1) 0%, var(--gra2) 100%);
    background: -o-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: -moz-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
    background-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: -webkit-linear-gradient(0deg, #bad2f6, #ffb88d);
    background-image: -webkit-linear-gradient(0deg, var(--gra1), var(--gra2));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.title.gra,
#myo_gal .item a > .title,
#myo_web.inner .item .info .title {
    display: block;
    padding: 5px 15px;
    border-radius: 15px;
    color: #fff;
    color: var(--gra3);
    font-weight: bold;
    font-size: 1.1em;
    letter-spacing: 5px;
    text-indent: 5px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin-bottom: 15px;
}

.gra2,
#header .box:first-child .tagbox ul,
.text-item p a,
.myoskin .item .cate-date,
.lst .text a,
.text-item h1,
.text-item h2,
.text-item h3,
.text-item h4 {
    background: -webkit-linear-gradient(left, var(--gra1) 0%, var(--gra2) 100%);
    background: -o-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: -moz-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
    background-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: -webkit-linear-gradient(0deg, #bad2f6, #ffb88d);
    background-image: -webkit-linear-gradient(0deg, var(--gra1), var(--gra2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #bad2f6;
    color: var(--gra1);
    transition: color .4s;
    font-weight: bold;
}

.gra3,
.moreless_content,
.moreless-content,
#tt-body-page blockquote[data-ke-style='box'],
blockquote[data-ke-style='box'],
#tt-body-page blockquote[data-ke-style='style3'],
blockquote[data-ke-style='style3'] {
    position: relative;
    z-index: 100;
}

.gra3:before,
.gra3:after,
.moreless_content::before,
.moreless-content:before,
#tt-body-page blockquote[data-ke-style='box']:before,
blockquote[data-ke-style='box']:before,
#tt-body-page blockquote[data-ke-style='style3']:before,
blockquote[data-ke-style='style3']:before,
figure[data-ke-type='opengraph']:before,
#tt-body-page figure[data-ke-type='opengraph']:before,
figure.fileblock:before,
#tt-body-page figure.fileblock:before,
.container_postbtn .postbtn_like:before,
.container_postbtn .btn_menu_toolbar:before,
.moreless_content::after,
.moreless-content:after,
#tt-body-page blockquote[data-ke-style='box']:after,
blockquote[data-ke-style='box']:after,
#tt-body-page blockquote[data-ke-style='style3']:after,
blockquote[data-ke-style='style3']:after,
figure[data-ke-type='opengraph']:after,
#tt-body-page figure[data-ke-type='opengraph']:after,
figure.fileblock:after,
#tt-body-page figure.fileblock:after,
.container_postbtn .postbtn_like:after,
.container_postbtn .btn_menu_toolbar:after {
    content: '';
    position: absolute;
    border-radius: 15px;
    display: block;
    z-index: -111;
}

.gra3:before,
.moreless_content::before,
.moreless-content:before,
#tt-body-page blockquote[data-ke-style='box']:before,
blockquote[data-ke-style='box']:before,
#tt-body-page blockquote[data-ke-style='style3']:before,
blockquote[data-ke-style='style3']:before,
figure[data-ke-type='opengraph']:before,
#tt-body-page figure[data-ke-type='opengraph']:before,
figure.fileblock:before,
#tt-body-page figure.fileblock:before,
.container_postbtn .postbtn_like:before,
.container_postbtn .btn_menu_toolbar:before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-linear-gradient(left, var(--gra1) 0%, var(--gra2) 100%);
    background: -o-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: -moz-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
    background-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: -webkit-linear-gradient(0deg, #bad2f6, #ffb88d);
    background-image: -webkit-linear-gradient(0deg, var(--gra1), var(--gra2));
    content: '';
    z-index: -2;
}

.gra3:after,
.moreless_content::after,
.moreless-content:after,
#tt-body-page blockquote[data-ke-style='box']:after,
blockquote[data-ke-style='box']:after,
#tt-body-page blockquote[data-ke-style='style3']:after,
blockquote[data-ke-style='style3']:after,
figure[data-ke-type='opengraph']:after,
#tt-body-page figure[data-ke-type='opengraph']:after,
figure.fileblock:after,
#tt-body-page figure.fileblock:after,
.container_postbtn .postbtn_like:after,
.container_postbtn .btn_menu_toolbar:after {
    background-color: #fff;
    background-color: var(--con);
    top: 1px;
    bottom: 1px;
    left: 1px;
    right: 1px;
    z-index: -1;
}

/* 박스 형태 */
.box,
#footer .tagbox {
    padding: 15px 0;
}

#footer .box + .tagbox,
.box:first-child {
    padding-top: 0;
}

.box:empty {
    display: none;
}

.box,
#footer .tagbox {
    background-color: #fff;
    background-color: var(--con);
    border-radius: 1.3em;
}

#header .box,
#footer .box,
#footer .tagbox {
    padding: 10px !important;
}

#content .box {
    padding: 15px !important;
}

/* 헤더 */
#header > div > *,
#header .box > *,
#header .scroll > *,
#footer .scroll > *,
#footer .box > * {
    margin-bottom: 10px;
    cursor: default;
    z-index: 1;
}

#header .scroll > *:last-child,
#header .box > *:last-child,
#footer .box > *:last-child {
    margin-bottom: 0;
}

#header .logo {}

#header .logo a {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
}

#header .logo a > .gra {
    text-align: center;
    max-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 10px;
    padding: 3px;
    transition: padding .4s;
    -webkit-flex: 0 0 40px;
    flex: 0 0 40px;
}

#header .logo a .gra .gra {
    width: 100%;
    height: 100%;
    background-blend-mode: hard-light;
    border-radius: 100%;
    display: inline-block;
    vertical-align: top;
}

#header .logo:hover a > .gra {
    padding: 0;
}

#header .logo img {
    max-width: 100%;
}

#header .logo .title {
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 2px;
    text-indent: 2px;
    transition: color .4s;
}

#header .logo:hover .title {
    color: #ffb88d;
    color: var(--gra2);
}

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

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

/* 카테고리 */

li.category,
.blogmenu li,
.category_list > li:not(.mc),
.category_list > li .mc-wrap {
    position: relative;
    z-index: 1;
    transition: .4s;
}

li.category:after,
.blogmenu li:after,
.category_list > li:not(.mc):after,
.category_list > li .mc-wrap:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(left, var(--gra1) 0%, var(--gra2) 100%);
    background: -o-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: -moz-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
    background-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: -webkit-linear-gradient(0deg, #bad2f6, #ffb88d);
    background-image: -webkit-linear-gradient(0deg, var(--gra1), var(--gra2));
    opacity: 0;
    transition: .4s;
    z-index: -1;
    border-radius: 10px;
    content: '';
}

li.category:hover,
.blogmenu li:hover,
.category_list > li:not(.mc):hover,
.category_list > li:hover .mc-wrap {
    padding: 0 10px;
}

li.category:hover:after,
.blogmenu li:hover:after,
.category_list > li:not(.mc):hover:after,
.category_list > li:hover .mc-wrap:after {
    opacity: 1;
}

.category_list > li,
.category_list > li > div,
.sub_category_list > li {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sub_category_list {
    margin: 10px 0;
    -webkit-text-fill-color: inherit;
}

.link_sub_item {
    white-space: nowrap;
    word-wrap: break-word;
    word-break: keep-all;
    transition: .4s;
    padding-left: 23px;
}

li.category a,
.blogmenu a,
.category_list > li:not(.mc) .link_item,
.link_sub_item {
    display: block;
}


.category_list > li,
.category_list > li .mc-wrap,
.sub_category_list > li {
    background: -webkit-linear-gradient(left, var(--gra1) 0%, var(--gra2) 100%);
    background: -o-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: -moz-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
    background-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: -webkit-linear-gradient(0deg, #bad2f6, #ffb88d);
    background-image: -webkit-linear-gradient(0deg, var(--gra1), var(--gra2));
    -webkit-background-clip: text;
}


.category_list > li .mc-wrap.on,
.category_list > li .mc-wrap.on a.link_item {
    -webkit-text-fill-color: transparent;
    color: #ffb88d;
    color: var(--gra2);
    font-weight: bold;
}

.sub_category_list > li a.link_sub_item {
    -webkit-text-fill-color: transparent;
    color: #bad2f6;
    color: var(--gra1);
    font-weight: bold;
}

.category.notice.on,
.category.notice.on a,
.category.guest.on,
.category.guest.on a,
.category_list > li.on,
.category_list > li.on a.link_item,
.sub_category_list > li:hover a.link_sub_item,
.sub_category_list > li.on a.link_sub_item {
    -webkit-text-fill-color: inherit;
    color: #ffb88d;
    color: var(--gra2);
}

.blogmenu li:hover,
.blogmenu li:hover a,
.category.notice:hover,
.category.notice:hover a,
.category.guest:hover,
.category.guest:hover a,
.category_list > li:hover .mc-wrap,
.category_list > li:hover .mc-wrap a.link_item,
.category_list > li:hover,
.category_list > li:hover a.link_item {
    color: #fff;
    color: var(--gra3);
    -webkit-text-fill-color: inherit;
}

.new {
    -webkit-text-fill-color: inherit;
    color: #ffb88d;
    color: var(--gra2);
    margin-left: 5px;
    font-size: .8em;
    animation: animated-cursor 1500ms steps(30, end) infinite;
}

#myo_gal .item .title .new,
#myo_web .item .title .new {
    color: #fff;
    color: var(--gra3);
}

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

    to {
        opacity: 0;
    }
}

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

.catebox .link_tit {
    margin-bottom: 10px;
    display: block;
}

#header,
#footer {
    counter-reset: chapter 0;
}

.catebox .link_tit:before,
li.category:before,
.blogmenu li:before,
.category_list > li:not(.mc):before,
.category_list > li .mc-wrap:before {
    counter-increment: chapter;
    content: counter(chapter) ". ";
    float: left;
    margin-right: 5px;
    z-index: 1;
}

/* 사이드바 태그 */
.intro + .tagbox {
    margin-top: -5px;
}

.logo + .tagbox .title,
.intro + .tagbox .title {
    display: none;
}

#header .tagbox ul,
#footer .tagbox ul {
    line-height: 1.3;
}

.tagbox a {
    margin-right: 3px;
    white-space: nowrap;
    word-wrap: break-word;
    word-break: keep-all;
    transition: color .4s;
}

#header .box:first-child .tagbox a {
    -webkit-text-fill-color: transparent;
    color: #bad2f6;
    color: var(--gra1);
}

.tagbox a:before {
    content: '#';
}

#header .box:first-child .tagbox ul,
#header .box:first-child .tagbox a:hover {
    -webkit-text-fill-color: inherit;
    color: #ffb88d;
    color: var(--gra2);
}

/* 검색 */
.search {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 4px 10px;
    color: #fff;
    color: var(--gra3);
    border-radius: 15px;
    overflow: hidden;
}

.search input {
    color: #fff;
    color: var(--gra3);
    width: 100%;
}

/* 입력창 폰트 색상 */
.search input::-webkit-input-placeholder {
    color: #fff;
    color: var(--gra3);
}

.search input:-moz-placeholder {
    color: #fff;
    color: var(--gra3);
}

.search input:-ms-input-placeholder {
    color: #fff;
    color: var(--gra3);
}

.search input::placeholder {
    color: #fff;
    color: var(--gra3);
}

.search button {
    vertical-align: middle;
    color: #fff;
    color: var(--gra3);
    margin-left: 10px;
}

/* sns */
.sns > div {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
}

.sns:empty,
.sns ul:empty {
    display: none;
}

.sns .gra2,
.sns a:hover:after {
    color: #ffb88d;
    color: var(--gra2);
    -webkit-text-fill-color: inherit;
}

/* 메인 영역 */
#content {}

.myoskin ol:after {
    display: block;
    clear: both;
    content: '';
    overflow: auto;
}

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

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

/* 썸네일 공통 */
.thumbox {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    height: 100%;
    width: 100%;
    display: block;
}

body.over .thumbox .gra {
    border-radius: 15px;
    display: block;
    width: 100%;
    //mix-blend-mode: hard-light;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.7;
    transition: .4s;
    z-index: 1;
}

.thumbox img {
    width: 100%;
    border-radius: 15px;
}

.item:hover .thumbox .gra {
    opacity: 0;
}

/* 목록 공통 */
.myoskin .item a > .title {
    display: none;
}

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

.myoskin .item a > .title i {
    font-size: .8em;
}

.myoskin .item a {
    display: block;
}

.myoskin .item .cate-date {
    padding-right: 1px;
}

.myoskin .item .cate:before,
.myoskin .item .date:before {
    content: '#';
    margin-right: 1px;
}

.myoskin .item .cate {
    margin-right: 15px;
}

.myoskin .item .cnt {
    white-space: nowrap;
    float: right;
}

.myoskin .item .cnt:after {
    content: "\f08a";
    font-family: fontAwesome;
    margin-left: 5px;
    font-size: .8em;
}

.myoskin .item .framebox,
.myo-side-thum .item .framebox {
    padding-bottom: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.myoskin .item.you .gra,
.myo-side-thum .item.you .gra {
    display: none;
}

/* 갤러리형 */
#myo_gal .item {}

#myo_gal .item .thumbox {
    margin: 15px 0;
}

#myo_gal .item .info .text,
#myo_gal .item .info .title {
    display: none;
}

/* 갤러리형 1열 */
#myo_gal.n1 .item {
    margin-bottom: 50px;
}

/* 갤러리형 2열 */
#myo_gal.n2 .item {
    margin: 0 15px 15px 0;
    width: calc((100% - 15px) / 2);
    float: left;
}

#myo_gal.n2 .item:nth-child(2n) {
    margin-right: 0;
}

#myo_gal .item .cate {
    display: none;
}

/* 갤러리형 3열 */
#myo_gal.n3 .item {
    margin: 0 15px 15px 0;
    width: calc((100% - 30px) / 3);
    float: left;
}

#myo_gal.n3 .item:nth-child(3n) {
    margin-right: 0;
}

#myo_gal.n3 .item .cate {
    display: none;
}

/* 목록형 */
#myo_bbs .item {
    margin-bottom: 10px;
}

#myo_bbs .item .thumbox,
#myo_bbs .item .title-cnt .cnt,
#myo_bbs .item .text {
    display: none;
}

/* 웹진형 */
#myo_web .item {
    margin-bottom: 10px;
}

#myo_web .item a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

#myo_web .item .thumbox {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    position: relative;
}

body.galR #myo_web .item .thumbnail {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 15px;
}

body.galR #myo_web .item .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%);
}

body.galR #myo_web .item .centered img {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: .4s;
}

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

body.galR #myo_web .item .centered img.landscape {
    width: auto !important;
    max-width: none !important;
    height: 100% !important;
}

body.galR #myo_web .item:hover .centered img {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

body.galR #myo_web .item .thumbox .gra {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#myo_web .item .info {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    padding-left: 20px;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

#myo_web .item .info .title {
    font-size: 1.1em;
}

#myo_web .item .info .text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 72px;
    overflow: hidden;
    margin-bottom: 4%;
}

/* 보호글 */
body #article.pass {
    -ms-display: flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 10vh 15px !important;
    margin-bottom: 50px;
}

.pass input {
    padding: 5px 0;
}

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

.pass .gra {
    display: block;
    border-radius: 20px;
}

.pass button {
    width: 100%;
    letter-spacing: 3px;
    text-indent: 3px;
    padding: 10px;
    transition: color .4s;
    color: #fff;
    color: var(--gra3);
}

.pass .gra:hover button {
    color: #ffb88d;
    color: var(--gra2);
}

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

/* 본문 영역 */
#article:empty {
    display: none;
}

#article {
    margin-bottom: 50px;
}

#article .box {
    padding: 15px 0;
    margin-bottom: 10px;
}

#tt-body-page #article {
    margin-bottom: 0;
}

#tt-body-page #article .box {
    padding-top: 0;
}

/* 본문 타이틀 영역 */
.titlebox {
    margin-bottom: 15px;
}

.titlebox .admin {
    margin-bottom: 10px;
}

.titlebox .admin a {
    margin-right: 15px;
}

.titlebox .cate:before,
.titlebox .date:before,
.titlebox .admin a:before {
    content: '#';
    margin-right: 1px;
}

/* 본문 */
.text-item {
    word-break: normal;
    word-wrap: break-word;
}

.text-item h1,
.text-item h2,
.text-item h3,
.text-item h4 {
    border-bottom: 2px solid;
    border-color: transparent;
    border-image: linear-gradient(45deg, #bad2f6, #ffb88d);
    border-image: linear-gradient(45deg, var(--gra1), var(--gra2));
    border-image-slice: 0 0 1 0;
}

.text-item p a:before,
.tx-link:before {
    content: "\e62d";
    font-family: 'themify';
    margin-right: 5px;
}

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

.tx-link.imgblock:before {
    display: 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 .imageblock span:first-child {
    display: inline-block;
    background: -webkit-linear-gradient(left, var(--gra1) 0%, var(--gra2) 100%);
    background: -o-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: -moz-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
    background-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: -webkit-linear-gradient(0deg, #bad2f6, #ffb88d);
    background-image: -webkit-linear-gradient(0deg, var(--gra1), var(--gra2));
}

.text-item .imageblock span img {
    //mix-blend-mode: hard-light;
}

.text-item .imageblock span img:hover {
    mix-blend-mode: normal;
}

.text-item .imageblock.floatLeft span {
    margin-right: 10px;
}

.text-item .imageblock.floatLeft span img {
    margin-right: 0 !important;
}

.text-item .imageblock.floatRight span {
    margin-left: 10px;
}

.text-item .imageblock.floatRight span img {
    margin-left: 0 !important;
}

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

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

.framebox iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    //mix-blend-mode: hard-light;
}

.framebox iframe:hover {
    mix-blend-mode: normal;
}

/* 링크 */
.text-item p a:hover {
    -webkit-text-fill-color: inherit;
    color: #ffb88d;
    color: var(--gra2);
}

.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;
    border-radius: 15px;
    z-index: 1;
}

figure[data-ke-type='opengraph'] div.og-image {
    width: 100px;
    border-color: transparent;
    border-image: linear-gradient(45deg, #bad2f6, #ffb88d);
    border-image: linear-gradient(45deg, var(--gra1), var(--gra2));
    border-image-slice: 1;
}

figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
    overflow: hidden;
    border-color: transparent;
    height: 100px;
    border-radius: 15px;
}

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

figure[data-ke-type='opengraph'] div.og-text {
    left: 101px;
    padding: 10px 10px 0 10px;
    background: -webkit-linear-gradient(left, var(--gra1) 0%, var(--gra2) 100%);
    background: -o-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: -moz-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
    background-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: -webkit-linear-gradient(0deg, #bad2f6, #ffb88d);
    background-image: -webkit-linear-gradient(0deg, var(--gra1), var(--gra2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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,
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: #ffb88d;
    color: var(--gra2);
    margin-bottom: 0 !important;
}

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: #bad2f6;
    color: var(--gra1);
    font-size: inherit;
}

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 {
    font-size: inherit;
    bottom: 10px;
    font-family: inherit;
    position: static;
}

/* 동영상 */
#tt-body-page figure[data-ke-type='video'][data-video-host] iframe {
    vertical-align: top;
}

/* 이미지, 동영상 설명글 */
#tt-body-page figure figcaption,
#tt-body-page figure[data-ke-type='video'] figcaption {
    font-size: .8rem;
    color: #ffb88d;
    color: var(--gra2);
}

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

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

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

/* 인용구2 */
#tt-body-page blockquote[data-ke-style='box'],
blockquote[data-ke-style='box'],
#tt-body-page blockquote[data-ke-style='style3'],
blockquote[data-ke-style='style3'] {
    padding: 10px;
    background-color: transparent;
    border: 0;
    color: inherit;
}

#tt-body-page blockquote[data-ke-style='box'] a {}

/* 더보기 */
.btn_more,
.btn_less span {
    transition: .4s;
}

.btn_more:hover,
.btn_less span:hover {
    opacity: .5;
}

.btn_less::before {
    display: none;
}

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

.btn_more,
.btn_less,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
div[data-ke-type='moreLess'] .btn-toggle-moreless {
    display: block;
    font-size: inherit;
    color: #ffb88d;
    color: var(--gra2);
    height: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn_more:before,
.btn_less span:before,
a.btn-toggle-moreless:before {
    content: '\f107';
    font-family: 'fontAwesome';
    margin-right: 5px;
}

.btn_less:last-child span:before {
    content: '\f106';
}

.btn_less:first-child {
    border-bottom: 1px solid;
    border-color: transparent;
    border-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
    border-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    border-image-slice: 1;
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.btn_less:last-child {
    border-top: 1px solid;
    border-color: transparent;
    border-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
    border-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    border-image-slice: 1;
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.moreless_content,
.moreless-content,
#tt-body-page blockquote[data-ke-style='box'],
blockquote[data-ke-style='box'],
#tt-body-page blockquote[data-ke-style='style3'],
blockquote[data-ke-style='style3'] {
    padding: 10px;
    line-height: inherit;
}

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

/* 파일 첨부 */
figure.fileblock,
#tt-body-page figure.fileblock {
    background-color: transparent;
    border: 1px solid;
    border-color: transparent;
    z-index: 1;
}

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

figure.fileblock .size,
#tt-body-page figure.fileblock .size {
    font-size: .9rem;
    color: #bad2f6;
    color: var(--gra1);
    font-family: inherit;
}

.article .imageblock > a > img {
    display: none;
}

.article .imageblock > a:before {
    content: "\f019";
    font-family: 'fontAwesome';
    margin-right: 5px;
}

/* 공감 */
.container_postbtn {
    padding: 0 !important;
    margin-top: 25px;
}

.container_postbtn .postbtn_like,
.container_postbtn .btn_menu_toolbar {
    color: #bbb !important;
    color: var(--text) !important;
    border-color: transparent !important;
    position: relative;
    z-index: 1;
}

.container_postbtn .postbtn_like {
    float: none !important;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

.container_postbtn .postbtn_like > div,
.container_postbtn .btn_menu_toolbar > * {
    float: none;
    transition: .4s;
}

.container_postbtn .postbtn_like > div:hover,
.container_postbtn .btn_menu_toolbar:hover > * {
    border-color: #ffb88d !important;
    border-color: var(--gra2) !important;
    color: #ffb88d !important;
    color: var(--gra2) !important;
}

body .container_postbtn .btn_post .txt_like {
    vertical-align: middle !important;
    font-family: 'Calibri', 'Noto Sans KR', sans-serif !important;
}

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

.container_postbtn .postbtn_ccl {
    position: absolute !important;
    right: 0 !important;
    top: 0;
}

.container_postbtn .btn_post .ico_postbtn,
.container_postbtn .btn_menu_toolbar.following .ico_check_type1 {
    background-image: none;
    position: relative;
    margin: 0 !important;
    height: 14px !important;
    text-indent: inherit !important;
    overflow: visible;
    vertical-align: middle;
}

.container_postbtn .btn_menu_toolbar.following .ico_check_type1 {
    height: 7px !important
}

.container_postbtn .btn_post .ico_postbtn:after,
.container_postbtn .btn_menu_toolbar.following .ico_check_type1:after {
    content: "\e635";
    display: inline-block;
    font-family: 'themify';
    position: absolute;
    left: 0;
    font-size: 13px;
    vertical-align: middle;
    line-height: 1;
}

.container_postbtn .btn_post .empathy_up_without_ani .ico_postbtn:after {
    content: "\e634";
    color: #ffb88d;
    color: var(--gra2);
}

.container_postbtn .btn_post .ico_share:after {
    content: "\e72e";
}

.container_postbtn .btn_post .ico_statistics:after {
    content: "\e6ba"''
}

.container_postbtn .btn_post .ico_etc:after {
    content: "\e6e1";
}

.container_postbtn .btn_menu_toolbar.following .ico_check_type1:after {
    content: "\e64c";
    line-height: inherit;
    margin-left: 3px;
}

/* 본문 하단 태그 */
.tags {
    color: transparent !important;
    margin-top: 25px;
}

.tags a:before {
    content: '#';
    margin-right: 1px;
}

.tags a {
    white-space: nowrap;
    -webkit-text-fill-color: transparent;
    color: #bad2f6;
    color: var(--gra1);
    transition: .4s;
    margin-right: 5px;
}

.tags.gra2,
.tags a:hover {
    -webkit-text-fill-color: inherit;
    color: #ffb88d;
    color: var(--gra2);
}

/* 카테고리 글 더보기 */
#more_off {
    display: none;
}

.morebox {
    margin: 10px 0;
    overflow: hidden;
}

.morebox:after {
    content: '';
    display: block;
    clear: both;
    overflow: hidden;
}

.morebox > .title {
    font-size: 1.2em;
    letter-spacing: 5px;
    text-indent: 5px;
    text-align: center;
    margin-bottom: 15px;
    cursor: default;
}

.morebox a {
    display: block;
}

.morebox img {
    width: 100%;
}

/* 카테고리 글 더보기 갤러리형 */
#article #myo_gal .item {
    float: left;
    margin-right: 2%;
    width: 23.5%;
}

#article #myo_gal .item:nth-child(4n) {
    margin-right: 0;
}

#article #myo_gal .item .thumbox {
    margin: 0;
}

#article #myo_gal .item .info {
    text-align: center;
    padding-top: 5px;
}

#article #myo_gal .item .info .title {
    color: #bad2f6;
    color: var(--gra1);
}

#article #myo_gal .item .date {
    display: none;
}

/* 카테고리 글 더보기 목록형 */
#article #myo_bbs .item .info {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

#article #myo_bbs .item .info .date:before {
    content: '';
}

/* 댓글 오픈 */
.opencmt {
    margin: 10px 0;
    text-align: center;
}

.opencmt a {}

.opencmt a:hover {
    -webkit-text-fill-color: inherit;
    color: #ffb88d;
    color: var(--gra2);
}

/* 댓글, 방명록 작성 */
#rp > div {
    display: none;
}

.write .textarea {
    margin-bottom: 10px;
}

.write textarea {
    padding: 10px;
    height: 100px;
    min-height: 100px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    position: relative;
    z-index: 100;
    display: block;
    vertical-align: top;
}

.write button {
    color: #fff;
    color: var(--gra3);
    line-height: 1;
    padding: 8px 20px;
    border-radius: 25px;
    width: 100%;
    transition: .4s;
}

.write button:hover {
    color: #ffb88d;
    color: var(--gra2);
}

.write .input + button.gra {
    width: inherit;
}

.write .inputbox {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.write .inputbox .input {
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.write .input .gra3 {
    display: inline-block;
    margin-right: 15px;
    max-width: 36%;
}

.write input {
    padding: 3px 10px;
    width: 100%;
    height: 27px;
}

.write .input .secret {
    margin-right: 0;
}

.write .input .gra3 label {
    width: 27px;
    height: 27px;
    line-height: 27px;
    text-align: center;
    display: inline-block;
}

.write .inputbox input[name="secret"] {
    display: none;
}

.write input[name="secret"] + label {}

.write input[name="secret"] + label:after {
    content: "\f13e";
    font-family: 'fontAwesome';
    transition: color .4s;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.write input[name="secret"]:checked + label:after {
    content: "\f023";
    font-family: 'fontAwesome';
    color: #ffb88d;
    color: var(--gra2);
}

/* 댓글, 방명록 목록 */
.lst {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-top: 10px;
}

.lst > ul,
.lst li {
    position: relative;
}

.lst > ul {
    margin-bottom: 10px;
    padding: 10px 0;
}

#tt-body-index .lst > ul:last-child,
#tt-body-index.order .lst > ul:first-child,
#tt-body-category .lst > ul:last-child,
#tt-body-category.order .lst > ul:first-child #tt-body-page .lst > ul:last-child,
#tt-body-page.order .lst > ul:first-child {
    margin-bottom: 0;
}

#tt-body-page.order .lst {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.lst > ul:last-child {
    padding-bottom: 0;
    border: 0;
}

.lst .name:before {
    font-family: "themify";
    font-size: .8em;
    margin-right: 5px;
}

.lst .rp_admin .name:before,
.lst .guest_admin .name:before {
    content: "\e642";
}

.lst .rp_secret .name:before,
.lst .guest_secret .name:before,
.lst .hiddenComment .name:before {
    content: "\e62b";
}

.lst .name {
    font-weight: bold;
}

.lst .name img[alt=BlogIcon],
.lst .pro {
    display: none;
}

.lst .date:before {
    content: '';
    width: 1px;
    height: 10px;
    margin: 0 5px;
    display: inline-block;
}

.lst .date {
    font-size: .8em;
}

.lst .date a {
    visibility: hidden;
    margin-left: 15px;
    font-size: 0;
}

.lst .date a:after {
    content: '\f05e';
    font-family: "FontAwesome";
    visibility: visible;
    font-size: 10px;
}

.lst .text {
    margin-bottom: 5px;
    word-break: normal;
    word-wrap: break-word;
    padding: 10px;
}

.lst .text a:hover {
    -webkit-text-fill-color: inherit;
    color: #ffb88d;
    color: var(--gra2);
}

.lst .text a:before {
    content: "\e62d";
    font-family: 'themify';
    margin-right: 5px;
}

.lst .rp_admin .text,
.lst .guest_admin .text {
    background: -webkit-linear-gradient(left, var(--gra1) 0%, var(--gra2) 100%);
    background: -o-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: -moz-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
    background: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
    background-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
    background-image: -webkit-linear-gradient(0deg, #bad2f6, #ffb88d);
    background-image: -webkit-linear-gradient(0deg, var(--gra1), var(--gra2));
    border-radius: 15px;
    color: #fff;
    color: var(--gra3);
    padding: 10px;
}

.lst .rp_admin .text:before,
.lst .rp_admin .text:after,
.lst .guest_admin .text:before,
.lst .guest_admin .text:after {
    display: none;
}

.lst .rp_admin .text a,
.lst .guest_admin .text a {
    -webkit-text-fill-color: inherit;
    color: #fff;
    color: var(--gra3);
    transition: .4s;
}

.lst .rp_admin .text a:hover,
.lst .guest_admin .text a:hover {
    opacity: 0.5;
}

.lst .text img {
    max-width: 100%;
}

.lst .info {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 10px;
}

.lst .date,
.lst .admin {
    opacity: 0;
    transition: .4s;
}

.lst li:hover .date,
.lst li:hover .admin {
    opacity: 1;
}

.lst .admin {
    margin-left: auto;
}

.lst .admin a {
    margin-left: 15px;
}

.reply {
    margin-top: 15px;
}

.reply.rp_admin,
.reply.guest_admin {
    margin-left: 50px;
    position: relative;
}

/* 프로필 사진 */
.profile .lst .pro {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    left: 0 !important;
    border-radius: 100%;
    display: inline-block;
    overflow: hidden;
}

.profile .lst .pro > img {
    //mix-blend-mode: hard-light;
    width: 100%;
    height: 100%;
}

.profile .lst .guest,
.profile .lst .reply {
    padding-left: 50px;
}

/* 공지 */
.noti {
    margin: 10px 0;
}

.noti:first-child {
    margin-top: 0;
}

.noti .title {
    margin: 0;
}

.noti .date {
    display: none;
}

/* 태그 클라우드 */
#tagcloud {
    clear: both;
}

#tagcloud ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    -webkit-text-fill-color: inherit;
}

#tagcloud ul li a {
    -webkit-text-fill-color: transparent;
    color: #bad2f6;
    color: var(--gra1);
}

#tagcloud ul li a:hover {
    -webkit-text-fill-color: inherit;
    color: #ffb88d;
    color: var(--gra2);
}

#tagcloud li {
    margin-right: 3px;
}

#tagcloud li .cloud1 {
    font-size: 2em;
}

#tagcloud li .cloud2 {
    font-size: 1.8em;
}

#tagcloud li .cloud3 {
    font-size: 1.6em;
}

#tagcloud li .cloud4 {
    font-size: 1.4em;
}

/* 페이지네이션 */
.myoskin + #articleWrap + .pagination {
    margin: 0;
}

#articleWrap + .pagination {
    margin-top: 50px;
}

.pagination {
    cursor: default;
    text-align: center;
}

.pagination .gra2 {
    width: 100%;
    display: block;
    text-align: center;
}

.pagination .num {
    text-align: center;
}

.pagination .prev {
    float: left;
}

.pagination .next {
    float: right;
}

.pagination .num a {
    padding: 0 5px;
}

.pagination a span,
.pagination .prev,
.pagination .next,
.pagination .more-btn {
    -webkit-text-fill-color: transparent;
    color: #bbb;
    color: var(--text);
    transition: .4s;
}

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

.prev:after {
    content: '\f104';
    font-family: fontAwesome;
}

.next:after {
    content: '\f105';
    font-family: fontAwesome;
}

.pagination a span.selected {
    -webkit-text-fill-color: inherit;
    color: #ffb88d;
    color: var(--gra2);
}

.pagination a span:hover,
.pagination .prev:hover,
.pagination .next:hover,
.pagination .more-btn:hover {
    -webkit-text-fill-color: inherit;
    color: #ffb88d;
    color: var(--gra2);
}

.pagination .current {
    display: none !important;
}

.pagination .more-btn {
    display: inline;
}

/* 사이드바 */
#footer .catebox {
    margin-bottom: 0;
}

.side > p:empty {
    display: none;
}

.side > p {
    padding: 4px 10px !important;
    font-size: inherit !important;
}

.myo-side-thum .side.popularPost ul,
.myo-side-thum .side.recentPost ul {
    display: flex;
    flex-wrap: wrap;
}

.myo-side-thum .side .item {
    margin: 0 15px 15px 0;
    width: calc((100% - 15px) / 2) !important;
    display: block !important;
}

.myo-side-thum .side .item:nth-child(2n) {
    margin-right: 0 !important;
}

.myo-side-thum .side .item .thumbox + .info {
    display: none;
}

.myo-side-thum .side .item:nth-last-child(-n+2):nth-child(2n+1),
.myo-side-thum .side .item:nth-last-child(-n+1):nth-child(2n+2) {
    margin-bottom: 0 !important;
}

.side ul:after {
    content: '';
    clear: both;
    display: block;
}

.side .cnt:after {
    margin-left: 0;
}

.side:not(#calendar) > ul > li,
.side .info {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.side > ul > li a {
    display: block;
    width: 100%;
}

.side:not(#calendar) > ul > li > span,
.side > ul > li:hover,
.side > ul > li:hover a {
    color: #ffb88d;
    color: var(--gra2);
}

.side:hover td,
.side:hover td a {
    color: #bbb;
    color: var(--text);
}

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

.cnt {
    white-space: nowrap;
    color: #ffb88d;
    color: var(--gra2);
}

/* 사이드바 달력 */
/* 달력 월 표시 */
.cal_month {
    margin-bottom: 10px;
    cursor: default;
    padding: 0px 8px;
}

.cal_month .prev {
    float: left;
}

.cal_month .next {
    float: right;
}

/* 달력 요일 표시(th 영역) */
.cal_week1 {
    padding: 2px 0 0;
}

/* 달력 일요일 표시(th 영역) */
.cal_week2 {
    color: #ffb88d;
    color: var(--gra2);
    padding: 2px 0 0;
}

/* 달력 Day(td 영역) */
.cal_day {
    text-align: center;
    cursor: default;
}

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

.cal_day_sunday a {
    color: #ffb88d;
    color: var(--gra2);
}

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

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

/* 달력 이번 달 날짜 표시(td) */
.cal_day3 {}

/* 달력 오늘 날짜 표시(td) */
.cal_day4 {
    -webkit-text-fill-color: inherit !important;
    color: #ffb88d !important;
    color: var(--gra2) !important;
    position: relative;
    z-index: 1;
}

.cal_day4:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ffb88d;
    background-color: var(--gra2);
    height: 100%;
    width: 100%;
    opacity: 0.3;
    z-index: -2;
    border-radius: 5px;
}

/* 달력 글쓴 날 링크 스타일 */
a.cal_click:link {
    transition: .4s;
    font-weight: bold;
    color: #ffb88d !important;
    color: var(--gra2) !important;
}

a.cal_click:visited {
    font-weight: bold;
    color: #ffb88d !important;
    color: var(--gra2) !important;
    transition: .4s;
}

a.cal_click:hover {
    color: var(--gra1) !important;
}

/* 탑버튼 */
.top {
    z-index: 999;
    font-size: 1.7rem;
    text-align: center;
    padding: 0 !important;
}

.top > span,
#header .top .box,
#footer .top .box {
    padding: 0 !important;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.top:hover > span > span {
    -webkit-text-fill-color: inherit;
    color: #ffb88d;
    color: var(--gra2);
}

/* 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: 10px;
    font-size: 8px;
    font-family: 'Meddon', cursive;
    text-align: center;
}


/* 모바일 영역 */
@media screen and (max-width: 768px) {
    .copy {
        margin-bottom: 15px;
        position: static;
        text-align: center;
    }
}

@media screen and (min-width: 426px) {
    nav {
        display: none;
    }
}

@media screen and (max-width: 425px) {
    html {
        min-height: 100vh;
    }

    body {
        background-image: none;
    }

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

    #container {
        display: inherit;
        margin: 0;
        padding: 15px !important;
        min-height: 94vh;
    }

    #container #header,
    #container #footer {
        width: auto;
        overflow: inherit;
    }

    #container #content {
        padding: 0;
    }

    #content .box {
        padding: 10px !important
    }

    #myo_gal.n3 .item,
    #article #myo_gal .item {
        margin: 0 15px 15px 0 !important;
        width: calc((100% - 15px) / 2) !important;
    }

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

    #myo_web .item a {
        display: block;
    }

    #myo_web .item .thumbox img {
        height: 20vh;
        -o-object-fit: cover;
        object-fit: cover;
    }

    #myo_web .item .info {
        padding: 10px 0 0;
    }

    .write .inputbox .input {
        -webkit-flex: 0 0 70%;
        flex: 0 0 70%;
        width: 70%;
    }

    .write .input .gra3:not(:last-child) {
        max-width: 100%;
        margin: 0 5px 5px 0;
        width: calc(100% - 35px);
    }

    .write .input .gra3:first-child:not(:last-child) {
        display: block;
        width: 100%;
    }

    .write .input + button.gra {
        width: 100%;
        height: 64px;
        border-radius: 15px;
        margin-left: 10px;
    }

    .top {
        right: 15px;
        bottom: 15px;
        width: 30px;
        height: 30px;
        line-height: 32px;
        font-size: 1.4rem;
        position: fixed;
        display: none;
    }

    nav {
        position: fixed;
        right: 15px;
        top: 15px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        z-index: 9999999999;
    }

    nav div {
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        position: relative;
        border-radius: 100% !important;
        margin-left: 10px;
        padding: 0 !important;
    }

    nav div:after,
    .top:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: -webkit-linear-gradient(left, var(--gra1) 0%, var(--gra2) 100%);
        background: -o-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
        background: -moz-linear-gradient(right, var(--gra1) 0%, var(--gra2) 100%);
        background: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
        background-image: linear-gradient(to right, #bad2f6 0%, #ffb88d 100%);
        background-image: linear-gradient(to right, var(--gra1) 0%, var(--gra2) 100%);
        background-image: -webkit-linear-gradient(0deg, #bad2f6, #ffb88d);
        background-image: -webkit-linear-gradient(0deg, var(--gra1), var(--gra2));
        background-size: 200%;
        -webkit-filter: blur(5px);
        filter: blur(5px);
        border-radius: 100%;
        z-index: -1;
        content: '';
    }

    nav .box span:after {
        content: '';
        font-family: fontAwesome;
    }

    nav .box .search-icon:after {
        content: '\f002';
    }

    nav .box .nav-icon:after {
        content: '\f0c9';
    }

    nav .box.open span:after {
        content: '\f00d';
    }

    nav div.open span,
    nav div:hover span {
        -webkit-text-fill-color: inherit;
        color: #ffb88d;
        color: var(--gra2);
    }

    html.open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .page_cover.open {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #bad2f6;
        background-color: var(--gra1);
        opacity: 0.8;
        z-index: 999 !important;
        margin: 0 !important;
    }

    .fixed {
        width: 70% !important;
        overflow: hidden !important;
        height: 100%;
        position: fixed !important;
        top: 0px;
        left: -75%;
        margin: 0;
        z-index: 999999 !important;
        transition: All 0.2s ease;
        -webkit-transition: All 0.2s ease;
        -moz-transition: All 0.2s ease;
        -o-transition: All 0.2s ease;
        background-color: #FFF8F4;
        background-color: var(--bg);
        text-align: inherit;
        line-height: 2.8;
    }

    .fixed.open {
        left: 0;
    }

    .fixed .scroll {
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        padding: 15px 15px 10px 10px;
    }

    .fixed .scroll::-webkit-scrollbar,
    .catebox .scroll::-webkit-scrollbar {
        width: 0;
    }

    .sub_category_list > li a.link_sub_item {
        font-weight: normal;
        -webkit-text-fill-color: inherit;
    }

    .fixed .title.gra {
        line-height: 1.7;
    }

}
