header {
    z-index: 4000 !important;
}

header~.ui.text.container {
    padding-top: 100px;
    padding-bottom: 0;
    margin-bottom: 36px;
    max-width: 730px !important;
}

header~.ui.text.container>.article h2.ui.dividing.header {
    border-top: 5px solid #282828;
    border-bottom: none;
    padding-top: 40px;
    font-size: 38px;
    line-height: 57px;
}

.authors {
    font-size: 13px !important;
    width: 100%;
    padding-bottom: 10px;
}

.authors .section {
    text-decoration: none;
    color: inherit !important;
    font-weight: normal;
}

.authors .divider {
    margin: 0 9px 0 10px !important;
}

.authors .date {
    margin-left: 35px;
}

.cp.info {
    display: none;
}

.cp.info.active {
    display: block;
}

.cp.info p {
    font-size: 13px !important;
    padding: 15px 25px;
    margin: 0 !important;
}

.note-meta {
    display: flex;
    border-bottom: 1px solid black;
}

.stamp-contain {
    position: absolute;
    right: 20px;
    margin-top: -10px;
    -webkit-tap-highlight-color: transparent;
}

.stamp-contain .fi {
    animation: fadein 0.5s;
}

.stamp-contain .fo {
    animation: fadeout 0.5s;
}

.stamp-contain svg {
    width: 30px;
    margin-top: -20px;
}

.stamp-contain img {
    width: 40px !important;
    margin-top: -10px !important;
}

@media screen and (max-width: 768px) {
    .stamp-contain {
        right: 10px;
    }

    header~.ui.text.container {
        padding-top: 45px;
    }

    header~.ui.text.container>.article h2.ui.dividing.header {
        font-size: 32px;
        padding-top: 25px;
        line-height: 1.45;
        padding-right: 35px;
    }
}

@media screen and (min-width:660px) and (max-width:850px) {

    header~.ui.text.container {
        max-width: 650px !important;
        padding-left: 25px;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
        visibility: hidden;
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
        visibility: visible;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}

.article-content {
    max-width: 620px;
    min-height: 500px;
}

.note-content {
    width: 100%;
    margin-top: 60px;
    overflow-wrap: anywhere;
}

.gear-wrapper>.dark-mode-btn {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.dark-mode-btn>.toggle {
    height: 28px;
    width: 54px;
    background-color: #D9D9D9;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dark-mode-btn>.toggle.on {
    background-color: #A195F1;
}

.dark-mode-btn>.toggle::before {
    content: "";
    display: block;
    height: 22px;
    width: 22px;
    border-radius: 20px;
    background-color: white;
    position: absolute;
    top: 3px;
    left: 4px;
    transform: translate(0);
    transition: transform 0.3s ease;
}

.dark-mode-btn>.toggle.on::before {
    transform: translate(24px);
}

.gear-wrapper>div>.title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.gear-wrapper>div>.info {
    font-size: 13px;
    color: #666666;
}

.letter.small {
    font-size: 15px;
    color: #9E9E9E;
    padding-right: 5px;
}

.letter.big {
    font-size: 21px;
    color: #9E9E9E;
    padding-left: 7px;
}

.letter {
    margin-top: -5px;
}

.ui.slider>.labels {
    font-size: 12px;
}

.ui.labeled.slider>.labels .label {
    padding: 0;
}

.ui.labeled.ticked.slider>.labels .label:after {
    height: 12px;
    background: #D9D9D9;
    top: 105%;
}

.ui.slider .inner .track {
    background-color: #D9D9D9;
    border-radius: 0px;
    height: 4px !important;
    top: 50%;
}

.ui.slider .inner .track-fill {
    background-color: #A195F1;
    border-radius: 0px;
    height: 4px !important;
    top: 50%;
}

.ui.slider .inner .thumb {
    height: 20px;
    width: 20px;
    background-color: white;
    border: 3px solid #d9d9d9;
    top: 2.5px;
    box-shadow: none;
}

.ui.slider {
    position: relative;
}

.ui.slider>.line {
    height: 12px;
    border-right: 1px solid #D9D9D9;
    position: absolute;
    top: 24px;
}

.ui.slider>.line.first {
    left: 52px;
}

.ui.slider>.line.second {
    left: 94px;
}

.ui.slider:not(.disabled) .inner .thumb:hover {
    background-color: white;
}

.slider-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media screen and (max-width: 850px) {
    #mobileMenu>.menu:first-child .logo.image {
        margin-top: 1px;
    }

    .slider-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
    }


    .gear-wrapper>.dark-mode-btn {
        padding-bottom: 22px;
        margin-bottom: 22px;
        border-bottom: 1px solid #D9D9D9;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .dark-mode-btn>.toggle {
        height: 34px;
        width: 64px;
        background-color: #D9D9D9;
        border-radius: 20px;
        position: relative;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .dark-mode-btn>.toggle.on {
        background-color: #A195F1;
    }

    .dark-mode-btn>.toggle::before {
        content: "";
        display: block;
        height: 26px;
        width: 26px;
        border-radius: 20px;
        background-color: white;
        position: absolute;
        top: 4px;
        left: 4px;
        transform: translate(0);
        transition: transform 0.3s ease;
    }

    .dark-mode-btn>.toggle.on::before {
        transform: translate(30px);
    }

    .gear-wrapper>div>.title {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -0.3px;
    }

    .gear-wrapper>div>.info {
        font-size: 13px;
        color: #666666;
    }

    .letter.small {
        font-size: 15px;
        color: #9E9E9E;
        padding-right: 5px;
    }

    .letter.big {
        font-size: 21px;
        color: #9E9E9E;
        padding-left: 7px;
    }

    .letter {
        margin-top: -5px;
    }

    .ui.labeled.ticked.slider>.labels .label:after {
        height: 12px;
        background: #D9D9D9;
    }

    .ui.slider .inner .track {
        background-color: #D9D9D9;
        border-radius: 0px;
        height: 4px !important;
        top: 50%;
    }

    .ui.slider .inner .track-fill {
        background-color: #A195F1;
        border-radius: 0px;
        height: 4px !important;
        top: 50%;
    }

    .ui.slider .inner .thumb {
        height: 20px;
        width: 20px;
        background-color: white;
        border: 3px solid #d9d9d9;
        top: 2.5px;
    }
}

.gallery {
    text-align: right;
    position: relative;
    width: 60%;
    margin-left: auto;
}

.gallery .navs {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    width: calc(100% + 48px);
    margin-right: -24px;
    /* margin-right: 71px; */
    /* width: calc(50% + 48px); */
    z-index: 2;
    justify-content: space-between;
}

.gallery .navs:after {
    padding-top: calc((100% * 3 / 4) - 24px);
    display: block;
    content: '';
}

.gallery .count {
    position: absolute;
    right: 0;
    display: flex;
    align-items: flex-end;
    width: calc(100% + 48px);
    margin-right: -24px;
    z-index: 2;
    justify-content: space-between;
}

.gallery .count:after {
    padding-top: calc((100% * 3 / 4) - 24px);
    display: block;
    content: '';
}

.gallery .count .numbers {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    text-align: center;
    background-color: transparent;
    padding-bottom: 12px;
}

.gallery .count .numbers .total {
    border-top: 2px solid black;
}

.gallery .nav .icon {
    margin-right: 0 !important;
}

.gallery .nav {
    border: 1px solid black;
    background-color: rgba(255, 255, 255, .8);
    font-size: 24px;
    line-height: 48px;
    text-align: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
}

.gallery .nav:first-of-type {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery .nav .left-angle-icon {
    width: 15px;
    height: 15px;
    border-top: 1px solid rgb(40, 40, 40);
    border-left: 1px solid rgb(40, 40, 40);
    transform: rotate(-45deg);
    margin-left: 7px;
}

.gallery .nav:last-of-type {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.gallery .nav .right-angle-icon {
    width: 15px;
    height: 15px;
    border-top: 1px solid rgb(40, 40, 40);
    border-left: 1px solid rgb(40, 40, 40);
    transform: rotate(135deg);
    margin-right: 6px;
}

.gallery .slides {
    /* width: 50%; */
    margin-left: auto;
    display: flex;
    flex-wrap: nowrap;
    /* margin-right: 95px; */
    overflow: hidden;
}

.gallery .slide {
    min-width: 100%;
    transition: all 0.5s ease;
}

.gallery .slide .image {
    width: 100%;
    display: block;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.gallery .slide .image:after {
    padding-top: calc(100% * 3 / 4);
    display: block;
    content: '';
}

.gallery .slide .caption {
    display: block;
    text-align: left;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 300;
}

.view-banner-wrapper {
    background-color: white;
    position: relative;
    z-index: 200;
    padding: 50px 0;
}

.view-banner-wrapper .ui.container>div>h3 {
    margin-bottom: 30px;
}

.view-banner>a,
.view-banner>a>img {
    width: 100%;
}

@media screen and (max-width: 601px) {
    .view-banner-wrapper .ui.container {
        margin: 0 !important;
    }

    .view-banner-wrapper .ui.container>div>h3 {
        width: auto;
        margin-left: 16px;
        margin-bottom: 20px;
    }
}


@media screen and (max-width: 767px) {
    .gallery {
        width: 100%;
    }

    .gallery .count .numbers {
        padding-right: 28px;
    }

    .gallery .slide .image {
        width: 100%;
        margin-right: 0;
    }

    .gallery .slide .caption {
        width: 100%;
        margin-top: 10px;
        font-size: 13px;
    }

    .gallery .navs {
        width: 100%;
        margin-right: 0;
    }

    .gallery .navs:after {
        padding-top: calc(100% * 3 / 4);
    }
}

.fader {
    margin-top: -500px;
    height: 500px;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .95) 60%);
    z-index: 200;
}

.banner-background {
    z-index: 2002;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 60px 0 30px;
    background-color: #DFBA93;
    background-image: url(/assets/image/free_banner_bg-pc.svg);
    background-repeat: no-repeat;
    background-size: auto 345px;
    background-position: center;
}

.free-link-banner {
    z-index: 2002;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.free-link-banner .banner-content-black {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 40px 0 64px 0;
}

.free-link-banner .banner-content-orange {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #FF6B27;
    color: #000;
    text-align: center;
    padding: 40px 20px 64px 20px;
    position: relative;
}

.free-link-banner .only-graphic {
    background-image: url(/assets/image/free-link/only.png);
    background-size: cover;
    background-position: center;
    width:80px;
    height: 80px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(calc(-50% - 120px));
}

.free-link-banner .img-box {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 20px;
}

.free-link-banner .img-box.edward {
    background-image: url(/assets/image/free-link/edward.png);
    width: 100%;
    max-width: 440px;
    height: 288px;
    margin-top: 24px;
    padding-bottom: 12px;
}

.free-link-banner .img-box.tony {
    background-image: url(/assets/image/free-link/tony.png);
    width: 100%;
    max-width: 440px;
    height: 340px;
    margin-bottom: 24px;
}

.free-link-banner .list-box {
    width: 100%;
    height: 140px;
    max-width: 340px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 20px;
}


@media screen and (max-width: 380px) {
    .free-link-banner .list-box {
        height: 120px;
        background-size: contain;
    }
}


.free-link-banner .list-box.one {
    background-image: url(/assets/image/free-link/list-1.png);
    margin-bottom: 16px;
}

.free-link-banner .list-box.two {
    background-image: url(/assets/image/free-link/list-2.png);
}

.free-link-banner .banner-divider {
    width: 100%;
    height: 1px;
    background-color:#444444;
    margin: 12px 0;
    max-width: 440px;
}

.free-link-banner .dots {
    background-image: url(/assets/image/free-link/dots.svg);
    background-size: cover;
    background-position: center;
    width: 5px;
    background-repeat: no-repeat;
    height: 27px;
}

.free-link-banner .banner-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
}

.free-link-banner .banner-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
}

.free-link-banner .free-link-button-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.free-link-banner .membership-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
}

.free-link-banner .free-link-button {
    background-color: #FF5332;
    color: white;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    width: 100%;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 340px;
}

.free-link-banner .free-link-button.black {
    background-color: #000;
}

.free-link-banner .free-link-button:hover {
    background-color: #DC4225;
    transition: background-color 0.3s ease;
}

.free-link-banner .free-link-button.black:hover {
    background-color: #333;
    transition: background-color 0.3s ease;
}

.free-link-banner .free-info {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    color: #8A8A8A;
    text-align: center;
    margin-top: 14px;
    letter-spacing: -0.3px;
    display: block;
}

.banner-background.temp {
    padding: 60px 0 40px 0;
}

.banner .content .content-text.temp>.header {
    margin-bottom: 15px !important;
}

.banner-background.temp .banner-text {
    margin-bottom: 50px;
}

.banner-background .info {
    color: rgba(19,19,19,.5) !important;
    margin-top: 10px;
}

@media screen and (max-width: 700px) {
    .content-text.temp {
        margin-left: 0px !important;
    }

    .banner-background.temp .banner-text {
        background-size: auto 312px;
        margin-bottom: 15px !important;
    }

    .banner-background.temp {
        padding: 50px 0 30px 0;
    }
}

/* footer{
    z-index: 3000;
} */
.join.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #282828;
    background-color: white !important;
    z-index: 200 !important;
    position: relative;
    border-bottom: 1px solid black;
}

.event.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #121212;
    z-index: 200;
    width: 100%;
}

.join.button span::after {
    content: '';
    background: url('/assets/icon/scrap/bold-right-angle-white.svg') no-repeat;
    display: inline-block;
    width: 11px;
    height: 13px;
    margin-left: 10px;
}

.join.banner>.dividing.header {
    width: 100%;
    border-bottom: 0;
    line-height: 1.7 !important;
    text-align: center;
    font-size: 26px;
    margin-top: 70px;
    margin-bottom: 0;
}

.banner .content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.join.banner .content {
    padding: 30px 0 120px 0;
    display: flex;
    flex-direction: column !important;
    align-items: center;
}

.banner .content .content-text>.header {
    margin-bottom: 25px !important;
    line-height: 1.5 !important;
    color: #121212;
    font-size: 26px;
    margin: 0;
    letter-spacing: -0.3px;
}

.banner .content .content-text>p:not(.header) {
    line-height: 1.6 !important;
    text-align: center;
    font-size: 18px;
    letter-spacing: -0.3px;
    word-break: keep-all;

}

.banner-text {
    margin-bottom: 60px;
    line-height: 1.6;
}

.join-banner-text {
    margin-bottom: 60px;
    line-height: 1.8;
}

.ui.dividing.header {
    padding-bottom: 0px;
}

.button-wrapper {
    margin: 30px 0px 25px 0px;
}

.button-wrapper .button {
    padding: 15px 50px;
    color: white;
    background-color: #191919;
    font-weight: bold;
}

@media screen and (max-width: 480px) {
    .event.banner .button-wrapper {
        width: 100%;
    }

    .button-wrapper .button {
        padding: 14px 30px 14px 35px;
        display: inline-block;
        width: 100%;
    }
}

.button-wrapper .button:hover {
    background-color: #565656;
    transition: 0.3s ease;
}

.content-text.temp {
    margin-left: 50px;
}

.banner .content .content-text>.info {
    font-size: 14px !important;
    color: #666666;
}

.banner .dot.icon {
    margin-left: 10px !important;
    margin-right: 8px !important;
    position: relative;
    padding: 0;
    width: 4px;
    height: 4px !important;
    top: -4px;
    background-color: black;
    border-radius: 999px;
}

.banner .inverted.dot.icon {
    background-color: white;
}

.button:hover .dot.icon {
    background-color: white;
}

.join-button {
    /* background-color: #282828; */
    background-color: #FF3D00;
    color: white;
    padding: 12px 30px;
    font-weight: bold;
}

.join-button:hover,
.shot-button:hover {
    /* color: #282828; */
    color: #FF3D00;
    background-color: #282828;
    /* background-color:#c4c4c4; */
}

.shot-remain-text {
    margin-bottom: 60px;
    line-height: 1.7;

}

.shot-button {
    background-color: #282828;
    color: white;
    padding: 12px 90px;
    font-weight: bold;
    outline: none;
    border: none;
    cursor: pointer;
    width: 100%;
}

.copyright-warning {
    position: relative;
    right: 0;
    text-align: right;
    line-height: 1.2rem !important;
    font-size: 11.2px !important;
    font-weight: 300 !important;
}

.about-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 25px calc((100% - 780px)/2);
    z-index: 1000;
    position: relative;
    background-color: #F2F2F2;
    color: #191919;
}

.about-banner:hover,
.about-banner:visited {
    color: #191919 !important;
}

.about-banner .content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 50px;
}

.about-banner .content .left {
    display: flex;
    flex-direction: row;
    align-items: center;
    letter-spacing: -0.3px;
}

.about-banner .content .left .text {
    margin-left: 30px;
}

.about-banner .content .left .text>p {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}

.about-banner .content .left .text>span {
    font-size: 18px;
    font-weight: 500;
}

.about-longblack {
    width: 100%;
    z-index: 1000;
    position: relative;
    background-color: black;
}

.about-longblack>a {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-longblack .mobile {
    display: none;
}

@media screen and (max-width:768px) {
    .about-longblack .desktop {
        display: none;
    }

    .about-longblack .mobile {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .join.banner>.dividing.header {
        font-size: 24px;
    }

    .banner .content>p:not(.header) {
        font-size: 16px;
    }

    .join-button {
        font-size: 16px;
    }

    .theme.black .hmenu {
        border-top: 1px solid rgb(40, 40, 40) !important;
    }
}

#timer {
    font-size: 52px;
    font-weight: 600;
}

.timer-item {
    position: relative;
    top: -6px;
    display: inline-block;
    width: 70px;
    font-size: 55px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    text-align: center;
}

.timer-item-divide {
    position: relative;
    top: -8px;
    display: inline-block;
    width: 15px;
    font-size: 52px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    text-align: center;
}

.timer-day-container {
    color: #FF4B22;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.timer-day-container.hide {
    display: none;
}

.lottie.mobile,
.right .mobile-only,
.left .text .desktop-only {
    display: none !important;
}

@media screen and (max-width: 1150px) {
    .banner .content>.header {
        margin-bottom: 20px !important;
        font-size: 24px;
    }

    .banner-text {
        font-size: 18px !important;
    }

    .timer-item {
        font-size: 45px;
        width: 50px;
    }

    .timer-item-divide {
        font-size: 42px;
    }

    .button-wrapper {
        margin: 30px 0px 25px 0px;
    }
}

@media screen and (max-width: 900px) {
    .about-banner .content {
        padding: 0 50px;
    }

}

@media screen and (max-width: 700px) {
    .lottie.desktop {
        display: none !important;
    }

    .lottie.mobile {
        display: block !important;
    }

    .left .text .desktop-only,
    .right .desktop-only {
        display: none;
    }

    .left .text .mobile-only,
    .right .mobile-only {
        display: block;
    }

    .banner-background {
        flex-direction: column;
    }

    .join.button {
        font-size: 16px;
    }

    .banner-background {
        padding: 70px 0 30px 0;
    }

    .banner .content .content-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .banner .content .content-text>.header {
        margin-bottom: 25px !important;
        font-size: 24px;
        margin: 0;
    }

    .about-banner .content {
        padding: 0 20px;
    }

    .banner-text {
        margin-bottom: 0px;
    }

    .banner-left {
        display: none !important;
    }

    .banner-right {
        font-size: 20px !important;
        width: 100%;
        display: flex;
        justify-content: space-between !important;
    }

    .mobile-only .date {
        font-size: 15px !important;
        letter-spacing: -0.5px;
        font-weight: 400;
    }
}

.layout-logo-companion {
    z-index: 4001 !important;
    position: relative;
}

.top-banner-wrapper {
    /* background-color: #DFBA93; */
    background-color: #FF6B27;
    position: fixed;
    bottom: 0px;
    z-index: 1999;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 0 0 50px;
    height: 54px;
    transition: opacity 0.2s ease-in;
    opacity: 1;
}

.top-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* background-color: #DFBA93; */
    background-color: #FF6B27;
    color: #191919;
    width: 100%;
    padding: 7px calc((100% - 780px)/2);
    white-space: nowrap;
}

.top-banner-wrapper:hover,
.top-banner:hover {
    color: #191919;
    /* background-color: #C9A784; */
    background-color: #E65A1B;
    cursor: pointer;
}

.clock {
    width: 20px;
    margin-right: 10px;
}

.banner-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.banner-left>span {
    font-size: 16px;
}

#timer2 .timer-item {
    font-size: 20px;
    width: 20px;
    top: 0;
}

#timer2 .timer-item-divide {
    font-size: 20px;
    top: -2px;
}

.banner-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.banner-right .mobile-only {
    display: none;
    letter-spacing: -0.3px;
}

.banner-right .right-angle-icon {
    margin-left: 14px;
}

/* slider : splide */

.ui.page.dimmer {
    z-index: 2000;
}

#popupDimmer {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background-color: rgb(40, 40, 40);
    top: 0;
    left: 0;
    z-index: 1000;
}

.close-banner {
    position: relative;
    z-index: 1100;
}

.lb-container.ui.mini.modal {
    position: relative;
    z-index: 4000;
    border-radius: 10px;
    width: 350px;
}

.lb-container.hidden {
    display: none;
}

.click-modal {
    position: fixed;
    bottom: 80px;
}

.lb-modal {
    position: relative;
    width: 100%;
    height: 430px;
}

.popup-ad {
    width: 100%;
    height: 100%;
}

.popup-ad.mobile {
    display: none;
}

@media screen and (max-width: 480px) {

    .splide__slide.ad>a {
        height: 100%;
    }

    .link.desktop {
        display: none;
    }

    .popup-ad.mobile {
        display: block;
        object-fit: cover;
    }
}

.splide {
    height: 100%;
}

.splide__pagination {
    bottom: 75px;
}

.splide__arrow {
    background-color: white;
    height: 2.5em;
    width: 2.5em;
}

.splide__arrow,
.splide__arrow:hover:not(:disabled) {
    opacity: 1;
    transition: all 0.5s ease;
}

.splide__arrow:disabled {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.splide__arrow--next {
    right: -45px;
}

.splide__arrow--next>img {
    width: 25px;
    margin-left: 25px;
}

.splide__arrow--prev>img {
    width: 25px;
    margin-right: 25px;
    transform: rotate(180deg);
}

.splide__arrow--prev {
    left: -45px;
}

.splide__arrow--next.mobile-only {
    top: 45px;
    right: 10px;
}

.splide__arrow--prev.mobile-only {
    top: 45px;
    left: 10px;
}

.splide__track {
    border-radius: 8px;
    height: 100%;
}

.splide__slide {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    /* padding: 65px 0 40px 0; */
    letter-spacing: -0.4px;
    overflow: hidden;
    background-color: white;
}

.splide__pagination__page.is-active {
    transform: none;
    background-color: #191919 !important;
}

.splide__pagination__page {
    background-color: #D9D9D9;
    opacity: 0.9;
    height: 6px;
    width: 6px;
    margin: 4px;
}

.splide__pagination__page:focus-visible,
.splide__pagination__page:focus {
    outline: 0px !important;
}

.splide__slide .lottie {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
}

.splide__slide.red .lottie {
    background-color: #FF4B22;
}

.splide__slide.brown .lottie {
    background-color: #D6B38E;
}

.splide__slide.blue .lottie {
    background-color: #6E76FE;
}

.splide__slide .content {
    background-color: white;
    width: 100%;
    padding: 35px 0;
}

.splide__slide>h3,
.splide__slide>div>h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 0;
}

.splide__slide>p,
.splide__slide>div>p {
    line-height: 1.6 !important;
    margin-top: 5px;
    font-size: 16px;
}

.lb-bottom {
    background-color: white;
    height: 56px;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 1000;
    border-top: 1px solid #DCDCDC;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.note-banner .lb-bottom {
    justify-content: space-between !important;
}

.note-banner .lb-bottom .disable-banner {
    cursor: pointer;
}

.lb-bottom .close,
.lb-bottom .timer {
    font-size: 16px;
    color: #666666;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.lb-bottom .timer.hide {
    display: none;
}

.lb-bottom .close.hide {
    display: none;
}

.lb-bottom .close.active {
    display: block;
}

.lb-bottom .timer .text {
    margin-left: -2px;
}

.lb-bottom .close:hover {
    cursor: pointer;
}

/* mobile */
@media screen and (max-width: 480px) {
    .lb-modal {
        position: fixed;
        transition: all 800ms cubic-bezier(0.86, 0, 0.07, 1);
        bottom: -100%;
        width: 100%;
        height: 380px;
        z-index: 2000;
    }

    .splide__slide .content {
        padding: 25px 0;
    }

    .splide__pagination {
        bottom: 70px;
    }

    .lb-container.modal-open .lb-modal {
        bottom: 0;
    }

    .splide__slide {
        border-top-right-radius: 12px;
        border-top-left-radius: 12px;
    }

    .splide__slide .lottie {
        height: 158px;
    }

    .lb-bottom {
        height: 56px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .lb-bottom>div {
        margin-bottom: 5px;
    }

    .splide__arrows {
        display: none;
    }
}

.splide__arrow {
    background-color: rgba(255, 255, 255, 0);
}

@media screen and (max-width: 850px) {

    .top-banner-wrapper {
        padding: 0 0 0 25px;
    }

    .top-banner {
        padding: 10px calc((100% - 620px)/2);
    }

    footer>.column {
        padding: 40px 40px 150px 4px !important;
    }

}

@media screen and (max-width: 768px) {
    .top-banner-wrapper {
        bottom: 0px;
        padding: 0 20px;
    }

    .top-banner {
        padding: 13px calc((100% - 620px)/2);
    }

    footer>.column {
        padding: 40px 40px 150px 20px !important;
    }

}

@media screen and (max-width: 767px) {
    .top-banner-wrapper {
        bottom: 0px;
    }

}

@media screen and (max-width: 480px) {

    .top-banner-wrapper {
        height: 66px;
    }

    .top-banner-wrapper.two-weeks {
        height: 72px;
    }

    .banner-right {
        font-size: 20px;
        width: 100%;
        display: flex;
        justify-content: space-between !important;
    }

    .banner-right .mobile-only {
        display: inline;
        font-size: 18px;
    }

    .banner-right .desktop-only {
        display: none;
    }

    .banner-left {
        display: none;
    }

    .clock {
        margin-right: 8px;
        width: 16px;
    }

    #timer2 {
        margin-top: -2px;
    }

    #timer2 .timer-item {
        font-size: 16px;
        width: 15px;
        top: 0;
    }

    #timer2 .timer-item-divide {
        font-size: 16px;
        width: 10px;
        margin-right: -3px;
        top: -1px;
    }

    .about-banner .content .left .text>p {
        font-size: 22px;
    }

    .about-banner .content .left .text {
        margin-left: 20px;
    }

}


#previewBox {
    position: fixed;
    height: auto;
    z-index: 1101;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1201px) {
    #previewBox {
        width: 60%;
    }
}

@media screen and (max-width: 601px) {
    #previewBox {
        width: 90%;
    }
}

#previewBox img {
    width: 100%;
    border: 2px solid rgb(120, 120, 120);
    box-shadow: 0px 0px 10px rgb(40, 40, 40, 0.3);
    object-fit: contain;
}

#previewBox img+p {
    color: white;
}

#previewDimmer {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background-color: rgb(40, 40, 40);
    top: 0;
    left: 0;
    z-index: 1100;
}

#resultBox {
    position: fixed;
    height: auto;
    z-index: 1101;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1201px) {
    #resultBox {
        width: 60%;
    }
}

@media screen and (max-width: 601px) {
    #resultBox {
        width: 90%;
    }
}

#resultBox img {
    width: 100%;
    object-fit: contain;
}

.resultDimmer {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: transparent;
    /* background-color: rgba(0, 0, 0, 0.7); */
    opacity: 1;
    top: 0;
    left: 0;
    z-index: 1000;
}

.next.articles {
    padding: 50px 0;
    width: 100%;
    background-color: white;
    position: relative;
    z-index: 200;
}

.next.articles>.container>h3 {
    font-size: 24px;
}

.mygrid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 30px;
}

.notecard {
    position: relative;
}

.notecard .image {
    display: flex !important;
    aspect-ratio: 4/3;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.notecard .dminus {
    position: absolute;
    border: 1px solid black;
    width: 75px;
    height: 75px;
    margin-top: -32.5px;
    z-index: 2;
    background-color: white;
    border-radius: 999px;
    display: flex;
    align-items: center;
    left: calc(50% - 32.5px);
    transition: all 0.2s ease;
    opacity: 1;
    visibility: visible;
}

.notecard.active .dminus {
    opacity: 0;
    visibility: hidden;
}

.notecard .dminus>p {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    font-family: "acumin-pro", sans-serif !important;
}

.notecard .dminus>p>i {
    font-family: "acumin-pro", sans-serif !important;
}

.mycell .notecard:not(.active) .image .cover p {
    visibility: hidden;
}

.mycell .notecard.active .image .cover p {
    color: inherit;
    width: 100%;
    text-align: center;
    font-size: 19px;
    visibility: visible;
}

.mycell:nth-of-type(1) .notecard .image {
    align-items: end;
}

.mycell:nth-of-type(1) .notecard .image .cover {
    display: block;
    width: 100%;
    height: 62%;
    background-color: rgba(159, 233, 158);
    opacity: 0.9;
    transition: all 0.2s ease;
    color: transparent;
}

.mycell:nth-of-type(1) .notecard.active .image .cover {
    height: 100%;
    opacity: 1;
    color: black;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.mycell:nth-of-type(2) .notecard .image .cover {
    display: block;
    width: 62%;
    height: 100%;
    background-color: rgba(255, 81, 38);
    opacity: 0.9;
    transition: all 0.2s ease;
    color: transparent;
}

.mycell:nth-of-type(2) .notecard.active .image .cover {
    width: 100%;
    opacity: 1;
    color: black;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.notecard a {
    text-decoration: none !important;
}

.notecard h4 {
    font-size: 18px;
}

.notecard h5 {
    margin: 0;
    padding: 13px 0px;
    word-break: keep-all;
    font-size: 21px !important;
    text-align: left;
    color: black;
    line-height: 1.6;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.notecard .authors {
    width: 100%;
    padding-top: 13px;
    margin-top: 13px;
    border-top: 1px solid rgb(150, 150, 150);
    text-align: left !important;
    color: black;
}

@media screen and (max-width: 767px) {
    .mygrid {
        grid-template-columns: 1fr;
    }
}

.controls .share+.popup {
    transition: all 0.2s ease;
    margin-left: 10px !important;
    margin-right: 3px !important;
}

.controls .share+.popup .content {
    white-space: nowrap !important;
}

.controls .bookmark+.popup {
    transition: all 0.2s ease;
    margin-left: 10px !important;
    margin-right: 3px !important;
}

.controls .bookmark+.popup .content {
    white-space: nowrap !important;
}

/* 이어읽기 toast progress*/
.moveto-read-point {
    margin-left: 100px;
    margin-right: 0px !important;
    font-weight: bold !important;
    color: #A586FC !important;
    background-color: #282828 !important;
}

.toast-progress {
    margin-right: 0px !important;
    margin-left: 0px !important;
}


.moveto-read-point:hover {
    background-color: #282828 !important;
    color: #B8A3F5 !important;
}

.ui.toast {
    margin-right: 0;
    padding: 8px 2px 8px 16px !important;
    background-color: #282828;
    color: white !important;
}

.read-toast {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 0px !important;
    white-space: nowrap;
    font-size: 16px !important;
}

.ui.toast-container .toast-box :not(.comment) .actions:not(.basic):not(.attached) {
    margin: 0 0 0 50px !important;
    border-top: 0px !important;
    background-color: #282828;
}

.ui.toast-container .toast-box>.compact {
    width: 100% !important;
}

.ui.toast-container .toast-box :not(.comment) .actions {
    padding: 0 !important;
}

.ui.progress .bar {
    background-color: #A586FC !important;
}

.ui.toast-container.bottom.left {
    left: 55px !important;
}

@media screen and (max-width: 850px) {
    .ui.toast-container.bottom.left {
        left: 55px !important;
        bottom: 62px !important;
    }
}

@media screen and (max-width: 480px) {
    .ui.toast-container.bottom.left {
        left: 20px !important;
        bottom: 52px !important;
    }

    .ui.toast-container .toast-box :not(.comment) .actions:not(.basic):not(.attached) {
        margin: 0 0 0 30px !important;
        border-top: 0px !important;
        background-color: #282828;
    }
}

@media screen and (max-width: 380px) {
    .ui.toast-container .toast-box :not(.comment) .actions:not(.basic):not(.attached) {
        margin: 0 0 0 15px !important;
    }
}


@media screen and (max-width: 360px) {
    .ui.toast-container .toast-box :not(.comment) .actions:not(.basic):not(.attached) {
        margin: 0 0 0 0px !important;
    }
}

/* 모달 팝업 */
.free-link-content {
    font-size: 20px;
    text-align: center;
    letter-spacing: -0.5px;
}

.free-link-content>p {
    font-size: 16px;
    text-align: center;
    word-break: keep-all;
    line-height: 1.6;
    margin-top: 20px;
}

.ui.button.positive,
.ui.button.negative {
    font-size: 16px;
}

.ui.button.negative {
    background-color: #CACBCD;
}

.app-modal>.content {
    padding: 30px !important;
}

.ui.modal.tiny.app-modal {
    width: 350px !important;
}

.ticket-code {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #9560EE;
    line-height: 1.6;
}

/* 챌린지 모달 */

.weekend-complete-content {
    text-align: center;
    padding-top: 10px;
}

.weekend-complete-content .ui.image {
    width: 150px;
    display: inline-block;
}

.weekend-complete-content .ui.large.header {
    line-height: 1.4;
}

.challenge-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.challenge-info {
    font-size: 14px;
    color: #666666;
}


@media only screen and (min-width: 768px) {
    .ui.mini.modal {
        width: 350px !important;
    }
}

@media only screen and (max-width: 480px) {

    .free-link-content {
        font-size: 18px;
        text-align: center;
        letter-spacing: -0.5px;
    }

    .free-link-content>p {
        font-size: 14px;
        text-align: center;
        word-break: keep-all;
        line-height: 1.6;
        margin-top: 10px;
    }

    .ui.modal.tiny.app-modal {
        width: 310px !important;
        min-width: 310px !important;
    }

    .weekend-complete-content .ui.image {
        width: 130px;
    }

    .ui.button.positive,
    .ui.button.negative {
        font-size: 14px;
    }

    .weekend-complete-content .ui.large.header {
        font-size: 22px;
    }

    .ticket-code {
        font-size: 14px;
    }
}

.ui.modal {
    word-break: keep-all;
    line-height: 1.6;
}

.ui.modal>.center.aligned {
    border-radius: 5px !important;
}

.modal-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    margin-top: 10px;
}

.modal-text {
    font-size: 18px;
    margin-bottom: 15px;
}

.modal-info {
    font-size: 16px;
    color: #191919;
    line-height: 1.6;
}

.freelink-remain {
    color: #FF552A;
    font-weight: 700;
    margin-top: 10px;
}

.clipboard-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    background-color: #E7E7E7;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#clipboard,
#clipboard2,
#re-clipboard {
    background-color: #E7E7E7;
    height: 42px;
    border: 0;
    outline: 0;
    width: 100%;
    padding: 0 20px;
    color: #666666;
    font-weight: 600;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#clipboard :focus,
#clipboard1 :focus,
#re-clipboard:focus {
    outline: 0;
}

.copy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: #282828;
    border: 0;
    outline: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.copy-btn:hover {
    background-color: #565656;
    cursor: pointer;
}

.copy-btn>img {
    width: 22px;
    margin-top: 2px;
}

.clipboard-wrapper .popup {
    color: #9560EE;
    border: 1px solid #9560EE;
    padding: 8px 12px;
    background-color: #EFE6FF;
    font-weight: 600;
    box-shadow: 0 2px 4px 0 rgb(34 36 38 / 8%), 0 2px 10px 0 rgb(34 36 38 / 8%);
    -webkit-box-shadow: 0 2px 4px 0 rgb(34 36 38 / 8%), 0 2px 10px 0 rgb(34 36 38 / 8%);
}

.clipboard-wrapper .popup:before {
    -webkit-box-shadow: 1px 1px 0 0 #9560EE;
    box-shadow: 1px 1px 0 0 #9560EE;
}

.clipboard-wrapper .ui.top.popup:before {
    background-color: #EFE6FF;
}

#clipModal .close.icon>img,
#re-clipModal .close.icon>img,
#freeClipModal .close.icon>img {
    width: 15px;
}

#clipModal .close,
#re-clipModal .close,
#freeClipModal .close {
    top: 7px;
    right: 0;
}

@media only screen and (max-width: 767.98px) {
    #clipModal .close {
        right: 0 !important;
    }

    #re-clipModal .close {
        right: 0 !important;
    }

    .ui.mini.modal {
        width: 380px;
        margin: 0;
    }
}

@media only screen and (max-width: 480px) {
    .ui.mini.modal {
        width: 310px !important;
        min-width: 310px !important;
    }

    #clipModal .center.aligned.content,
    #re-clipModal .center.aligned.content {
        padding: 20px !important;
    }

    .modal-title {
        font-size: 18px;
        margin-bottom: 14px;
        margin-top: 15px;
    }

    .modal-info {
        font-size: 16px;
        color: #191919;
        line-height: 1.6;
    }

    .clipboard-wrapper .popup {
        padding: 5px 7px;
        font-weight: 600;
    }

    .copy-btn:active {
        background-color: #565656;
    }
}

/* 노트 앞 삽입 메시지 */
.prepend-article {
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.prepend-article>.text {
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    padding: 14px 20px;
    margin-left: auto;
    margin-right: 20px;
    width: 50%;
    background-color: #E7E7E7 !important;
    border-radius: 4px;
    letter-spacing: -0.1px;
}

.prepend-article>.text:hover {
    background-color: #C4C4C4 !important;
}

.prepend-article>.text.with.link {
    background-image: url("/assets/icon/link-right-angle.svg");
    background-repeat: no-repeat;
    background-position: center right 18px;
    background-size: 10px;
}

.prepend-article+.article-content>.note-content {
    margin-top: 0;
}

@media only screen and (max-width: 767.98px) {
    .prepend-article>.text {
        margin-left: 0;
        width: 100%;
        margin-right: 0;
    }

    .prepend-article {
        padding-top: 16px;
        padding-bottom: 28px;
    }
}

.hidden {
    height: 100%;
    min-height: 100%;
    overflow: hidden !important;
    touch-action: none;
}

.dimmed.dimmable>.ui.animating.dimmer,
.dimmed.dimmable>.ui.visible.dimmer,
.ui.active.dimmer {
    justify-content: center;
}

.appended.linker {
    display: flex;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 36px !important;
    justify-content: right;
    align-items: center;
}

.appended.linker>a {
    display: block;
    padding: 20px 0px 20px 80px;
    margin-left: auto;
    width: 60%;
    text-decoration: none;
    background-color: #E7E7E7;
    background-image: url('/assets/icon/slackLink-icon_230119.svg');
    background-repeat: no-repeat;
    background-size: 46px;
    background-position: 20px;
    border-radius: 8px;
}

.appended.linker>a:hover {
    background-color: #C4C4C4 !important;
}

.appended.linker>a>.contain {
    display: flex;
    flex-direction: column;
    align-content: center;
    padding: 0 !important;
    padding-right: 40px !important;
    background-image: url(/assets/icon/arrow-icon.svg);
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: right 20px center;
}

.appended.linker>a>.contain>span {
    font-weight: normal !important;
    color: #666;
}

.appended.linker>a>.contain>.title {
    font-weight: bold !important;
    font-size: 16px;
    color: #000;
}

@media screen and (max-width:767px) {
    .appended.linker>a {
        width: 100% !important;
    }
}

.ui.popup {
    padding: 9px 12px;
    letter-spacing: -0.5px;
    max-height: 42px;
    margin-top: -8px !important;
}

.ui.bottom.popup {
    margin: 5px 0 0 10px !important;
    letter-spacing: -0.5px;
    padding: 9px 10px !important;
}

.ui.right.center.popup {
    margin: 0 0 0 20px;
}

.ui.left.center.popup {
    margin-top: 1px !important;
}

.ui.top.left.popup {
    margin-left: 8px !important;
    margin-bottom: -3px !important;
}

@media screen and (max-width:850px) {
    .ui.bottom.popup {
        margin: 5px 0 0 -8px !important;
    }
}

/* @media screen and (max-width:768px){
    .ui.left.center.popup{margin: -10px 15px 0px 0;}
} */

.gallery .slide .caption {
    margin-top: 10px;
}

/* dark-mode */
body.dark-mode>#app {
    background-color: #191919;
    transition: all 0.5s ease;
}

body.dark-mode .ui.breadcrumb.authors {
    color: #D9D9D9;
}

body.dark-mode>header~.ui.text.container>.article h2.ui.dividing.header {
    border-top: 5px solid #C4C4C4;
}

body.dark-mode .note-meta {
    border-bottom: 1px solid #C4C4C4;
}

body.dark-mode .article blockquote::before {
    border-left: 1px solid #C4C4C4;
}

body.dark-mode .ui.breadcrumb .divider {
    color: #C4C4C4
}

body.dark-mode .prepend-article>.text {
    background-color: #303030 !important;
    color: #D9D9D9 !important;
}

body.dark-mode .prepend-article>.text:hover {
    background-color: #282828 !important;
}

body.dark-mode .prepend-article>.text.with.link {
    background-image: url("/assets/icon/link-right-angle-white.svg")
}

body.dark-mode h2.ui.header {
    color: #D9D9D9;
}

body.dark-mode .article h3 {
    color: #D9D9D9;
}

body.dark-mode .article h4 {
    color: #D9D9D9;
}

body.dark-mode .article h5 {
    color: #D9D9D9;
}

body.dark-mode .article strong {
    color: #D9D9D9;
}

body.dark-mode .article p {
    color: #D9D9D9;
}

body.dark-mode .article .size-small {
    color: #D9D9D9;
}

body.dark-mode .article a {
    color: #D9D9D9;
}

body.dark-mode .article a:hover {
    color: #8A8A8A;
}

body.dark-mode .article .size-footnote {
    color: #8A8A8A;
}

body.dark-mode .article .editor-figure figcaption {
    color: #8A8A8A;
    font-weight: 500;
}


body.dark-mode .appended.linker>a {
    background-color: #303030;
}

body.dark-mode .appended.linker>a>.contain {
    background-image: url('/assets/icon/arrow-icon-white.svg');
}

body.dark-mode .appended.linker>a>.contain>.title {
    color: white;
}

body.dark-mode .appended.linker>a>.contain>span {
    color: #9E9E9E;
}

body.dark-mode .appended.linker>a:hover {
    background-color: #282828 !important;
}

body.dark-mode .gear-wrapper>div>.title {
    color: #F2F2F2;
}

body.dark-mode .gear-wrapper>div>.info {
    color: #AEAEAE;
}

body.dark-mode .ui.slider .inner .track {
    background-color: #AEAEAE;
}

body.dark-mode .ui.slider .inner .thumb {
    border: 3px solid #AEAEAE;
}

body.dark-mode .gear-wrapper>.dark-mode-btn {
    border-bottom: 1.5px solid #666666;
}

body.dark-mode .dark-mode-btn>.toggle.on,
.ui.slider .inner .track-fill {
    background-color: #9282FD;
}

body.dark-mode .ui.slider>.line {
    border-color: #AEAEAE;
}

body.dark-mode .gallery .count .numbers {
    color: white;
}

body.dark-mode .gallery .count .numbers .total {
    border-top: 2px solid white;
}

body.dark-mode .fader {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(48, 48, 48, 0.95) 60%);
}

body.dark-mode .join.banner {
    background-color: #303030 !important;
    color: white;
}

body.dark-mode .join.banner>.dividing.header {
    color: white;
}

body.dark-mode .join-button {
    background-color: #FF5226;
    transition: all 0.3s ease;
}

body.dark-mode .join-button:hover {
    background-color: #808080;
    color: white;
}

body.dark-mode .next.articles {
    background-color: #191919;
}

body.dark-mode .next.articles>.container>h3 {
    color: white;
}

body.dark-mode .notecard h5 {
    color: white;
}

@media screen and (max-width: 767px) {
    body.dark-mode .gallery .count .numbers {
        color: black;
    }

    body.dark-mode .gallery .count .numbers .total {
        border-top: 2px solid black;
    }
}

/* dark mode : ui popup */

body.dark-mode .ui.popup {
    background-color: #4F4F4F;
    border: 1px solid #4F4F4F;
    color: #E7E7E7;
}

body.dark-mode .ui.popup:before {
    background-color: #4F4F4F !important;
}

body.dark-mode .ui.right.center.popup:before {
    box-shadow: -1px 1px 0 0 #4F4F4F;
    -webkit-box-shadow: -1px 1px 0 0 #4F4F4F;
}

body.dark-mode .ui.top.left.popup:before {
    box-shadow: -1px -1px 0 0 #4F4F4F;
    -webkit-box-shadow: -1px -1px 0 0 #4F4F4F;
}

body.dark-mode .ui.bottom.left.popup:before {
    box-shadow: -1px -1px 0 0 #4F4F4F;
    -webkit-box-shadow: -1px -1px 0 0 #4F4F4F;
}

body.dark-mode .ui.left.center.popup:before {
    box-shadow: -1px 1px 0 0 #4F4F4F;
    -webkit-box-shadow: -1px 1px 0 0 #4F4F4F;
}

.ui.popup>.content {
    white-space: nowrap;
}

/* dark mode : memo modal */
body.dark-mode .ui.memo-modal {
    background-color: #4F4F4F;
}

body.dark-mode .ui.memo-modal>.highlighted-wrapper {
    color: #f2f2f2;
    border-bottom: 1px solid #666666;
}

body.dark-mode .ui.memo-modal>.content {
    background-color: #4F4F4F;
    color: #FFFFFF;
}

body.dark-mode .ui.memo-modal>.close {
    background: url('/assets/icon/x-white-bold.svg') no-repeat;
}

body.dark-mode .ui.memo-modal>.content>.header {
    color: #FFFFFF;
}

body.dark-mode .ui.modal.memo-modal>.content .form textarea {
    background-color: #5B5B5B;
    color: #FFFFFF;
}

body.dark-mode .ui.modal.memo-modal>.content>.form>.field>.length {
    background-color: #5B5B5B;
    color: #8A8A8A;
}

body.dark-mode .ui.modal.memo-modal>.actions>.remove-memo {
    background-color: #4F4F4F;
}

body.dark-mode .ui.modal.memo-modal>.actions>.negative.button {
    background-color: #c4c4c4;
}

body.dark-mode .ui.modal.memo-modal>.actions>.positive.button:hover {
    background-color: #666666;
    color: #f2f2f2 !important;
}

body.dark-mode .ui.modal.memo-modal>.actions>.negative.button:hover {
    background-color: #666666;
    color: #f2f2f2 !important;
}

/* dark mode : toast */

body.dark-mode .success.ui.toast {
    background-color: #4F4F4F;
    color: #c4c4c4;
}

body.dark-mode .success.ui.toast>.content {
    color: #c4c4c4;
}

body.dark-mode .success.ui.toast.error {
    background-color: #FF7C55;
}

body.dark-mode .success.ui.toast.error>.content {
    color: #191919;
}

/* font-size f1 */
#app.f1 .article p {
    font-size: 16px;
}

#app.f1 .gallery .slide .caption {
    font-size: 13px;
}

/* font-size f2 */
#app.f2 .article p {
    font-size: 18px;
}

#app.f2 .gallery .slide .caption {
    font-size: 13px;
}

/* font-size f3 */
#app.f3 .article h3 {
    font-size: 33px;
}

#app.f3 .article h4 {
    font-size: 29px;
}

#app.f3 .article p {
    font-size: 20px;
}

#app.f3 .article .size-small {
    font-size: 15px;
}

#app.f3 .article .editor-figure figcaption {
    font-size: 15px;
    margin-top: 10px;
}

#app.f3 .article .size-footnote {
    font-size: 16px;
    margin: 10px 0 5px 0;
}

#app.f3 .gallery .slide .caption {
    font-size: 15px;
}

/* font-size f4 */
#app.f4 .article h3 {
    font-size: 33px;
}

#app.f4 .article h4 {
    font-size: 29px;
}

#app.f4 .article p {
    font-size: 22px;
}

#app.f4 .article .size-small {
    font-size: 15px;
}

#app.f4 .article .editor-figure figcaption {
    font-size: 15px;
    margin-top: 10px;
}

#app.f4 .article .size-footnote {
    font-size: 16px;
    margin: 8px 0;
}

#app.f4 .gallery .slide .caption {
    font-size: 15px;
}

/* Event modal */
#scrapEventModal {
    padding: 40px 20px;
    text-align: center;
    color: #191919;
    background-color: #DDFF72;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#scrapEventModal>div {
    line-height: 1.6;
    word-break: keep-all;
}

#scrapEventModal>.header {
    font-size: 22px;
    font-weight: 700;
    padding: 0;
    border-bottom: 0px;
    margin-bottom: 15px;
    background-color: #DDFF72;
}

#scrapEventModal>.text {
    font-size: 16px;
    margin-bottom: 20px;
}

#scrapEventModal>.scrapEvent-gift {
    background: url('/assets/image/scrapEvent-gift.png') no-repeat;
    background-size: contain;
    width: 224px;
    height: 188px;
    margin: 0 auto;
}

#scrapEventModal>.eventLink {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    background-color: #282828;
    color: white;
    margin: 20px 0 10px 0;
}

#scrapEventModal>.eventLink:visited {
    color: white;
}

#scrapEventModal>.eventLink:hover {
    background-color: #4B4B4B;
    transition: all ease 0.3s;
}

#scrapEventModal>.date {
    font-size: 14px;
    font-weight: 600;
}

#scrapEventModal>.neverSeeAgain {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: none;
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}

#scrapEventModal>.neverSeeAgain:hover {
    cursor: pointer;
}

#scrapEventModal>.close {
    position: absolute;
    top: 15px !important;
    right: 0px !important;
    background-image: url('/assets/icon/x-black-bold.svg');
    background-repeat: no-repeat;
    background-size: 15px 15px;
}

#scrapEventModal>.lottie-wrapper {
    display: block;
    height: 176px;
}

#lottie-scrap-event {
    width: 256px;
    margin: 0 auto;
}

@media screen and (max-width: 480px) {
    #scrapEventModal {
        padding: 30px 20px;
    }

    #scrapEventModal>.header {
        font-size: 20px;
    }

    #scrapEventModal>.eventLink {
        margin: 20px 0 15px 0;
    }
}

.scrap.context.menu {
    background-color: #303030;
    display: flex;
    position: fixed;
    margin: 0;
    border-radius: 6px;
    border: none;
    z-index: 999;
}

.scrap.context.menu.hidden {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .scrap.context.menu {
        top: 30px;
    }
}

.scrap.context.menu>a {
    background-color: #303030;
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.2px;
    padding: 18px 20px;
}

.scrap.context.menu>a:hover {
    background-color: #666666 !important;
    color: white !important;
    transition: all 0.1s ease;
}

.scrap.context.menu>a:first-of-type {
    border-right: 1px solid #5D5D5D;
}

.scrap.context.menu>.do-memo,
.scrap.context.menu>.show-set-memo {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.scrap.context.menu>.show-set-memo.edit {
    color: #B4BBFC !important;
}

.scrap.context.menu>.cancel-scrap,
.scrap.context.menu>.cancel-scrap:hover {
    color: #B4BBFC !important;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.ui.modal.memo-modal {
    max-width: 400px;
    position: relative;
}

.ui.modal.memo-modal>.close {
    background: url('/assets/icon/x-black-bold.svg') no-repeat;
    background-size: contain;
    width: 17px;
    height: 17px;
    position: absolute;
    top: 22px !important;
    right: 22px !important;
}

.ui.modal.memo-modal>.highlighted-wrapper {
    font-size: 14px;
    color: #8a8a8a;
    padding: 20px 0 15px 0;
    margin: 0 20px;
    line-height: 1.7;
    border-bottom: 1px solid #dddddd;
    letter-spacing: -0.2px;
    word-break: normal;
}

.ui.modal.memo-modal>.highlighted-wrapper>.content {
    display: inline-block;
    max-width: 300px;
}

@media screen and (max-width:480px) {
    .ui.modal.memo-modal>.highlighted-wrapper>.content {
        max-width: 250px;
    }
}

.ui.modal.memo-modal>.highlighted-wrapper>.content::after {
    content: "...";
}

.ui.modal.memo-modal>.content>.header {
    font-size: 16px;
    font-weight: 700;
    color: #191919;
    padding: 15px 20px 0 20px;
}

.ui.modal.memo-modal>.header>span {
    font-size: 14px;
    letter-spacing: -0.2px;
}

.ui.modal.memo-modal>.actions {
    z-index: 1000;
    background-color: transparent;
    width: 100%;
    border: none;
    display: flex;
    align-items: center;
    padding: 17px !important;
}

.ui.modal.memo-modal>.actions>.button {
    font-weight: 600;
    font-size: 16px;
    padding: 12px 18px;
    letter-spacing: -0.2px;
    margin: 0;
}

.ui.modal.memo-modal>.actions>.remove-memo {
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    background: url('/assets/icon/scrap/scrap-delete.svg') no-repeat;
    background-size: contain;
    margin: 0 0 0 5px;
    display: inline-block;
}

.ui.modal.memo-modal>.actions>.remove-memo.disabled {
    display: none;
}

.ui.modal.memo-modal>.actions>.remove-memo:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.ui.modal.memo-modal>.actions>.positive.button {
    background-color: #191919;
    margin-left: 12px;
}

.ui.modal.memo-modal>.actions>.positive.button.disabled {
    background-color: #BAB9B9;
    color: #D2D2D2;
    opacity: 1;
}

.ui.modal.memo-modal>.actions>.negative.button {
    background-color: #F2F2F2;
    color: #191919;
    margin-left: auto;
}

.ui.modal.memo-modal>.actions>.positive.button:hover {
    background-color: #C4C4C4;
    color: #282828 !important;
}

.ui.modal.memo-modal>.actions>.negative.button:hover {
    background-color: #C4C4C4;
}

.ui.modal.memo-modal>.content {
    padding: 0 !important;
}

.ui.modal.memo-modal>.content>.form>.field {
    padding: 15px 20px 0 20px;
}

.ui.modal.memo-modal>.content .form textarea {
    line-height: 1.8;
    background-color: #F9F9F9;
    border: none;
    resize: none;
    min-height: 200px;
    font-size: 16px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.ui.modal.memo-modal>.content>.form>.field>.length {
    display: block;
    font-size: 12px;
    color: #8a8a8a;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.top.center.ui.toast-container {
    margin-top: 65px;
}

.success.ui.toast {
    background-color: #f2f2f2;
    color: #666666;
    font-size: 16px;
    padding: 14px 20px !important;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.success.ui.toast.error {
    background-color: #FF7C55;
}

.success.ui.toast.error>.content {
    color: #fafafa;
}

.success.ui.toast>.content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #666666;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.2px;
}

.ui.avatar.image {
    border-radius: 0;
    margin-right: 15px;
    position: relative !important;
}

.ui.image.avatar+.content {
    padding-left: 0px !important;
}

@media only screen and (max-width: 480px) {
    .ui.modal.memo-modal {
        max-width: 90vw;
    }

    .ui.modal.memo-modal>.content .form textarea {
        min-height: 130px;
        height: 130px;
    }
}

body * {
    user-select: none !important;
    -webkit-user-select: none !important;
}

article>.ui.dividing.header>* {
    user-select: text !important;
    -webkit-user-select: text !important;
}

.memo-modal * {
    user-select: auto !important;
    -webkit-user-select: auto !important;
}

.note-content,
.note-content * {
    user-select: text !important;
    -webkit-user-select: text !important;
}

.scrap.context.menu,
.scrap.context.menu * {
    user-select: none !important;
    -webkit-user-select: none !important;
}

.clipboard-wrapper * {
    user-select: auto !important;
    -webkit-user-select: auto !important;
}

.note-content img {
    user-select: none !important;
    -webkit-user-select: none !important;
}

.note-content .highlighted {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    font-weight: inherit !important;
    background-color: #E4E7FC;
    padding-top: 1px;
    padding-bottom: 1px;
    padding-right: 2px;
}

.note-content .highlighted.memo.icon:after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -8px;
    right: -13px;
    background: url('/assets/icon/scrap/memo-icon-light.svg') no-repeat;
    background-color: transparent;
    background-size: contain;
    width: 14px;
    height: 14px;
    z-index: 100;
}

/* dark mode : highlighted */
body.dark-mode .highlighted {
    color: #191919 !important;
    background-color: #B4BBFC;
}

body.dark-mode .note-content .highlighted.memo.icon:after {
    background-image: url('/assets/icon/scrap/memo-icon-dark.svg');
}

body.dark-mode .highlighted .size-small {
    color: #191919 !important;
}

body.dark-mode .scrap.context.menu>a {
    background-color: #4f4f4f;
}

body.dark-mode .scrap.context.menu>a:hover {
    background-color: #666666 !important;
    transition: all 0.2s ease;
}

/*노트 내 상단 공지사항 배너*/
.notice-banner .mobile {
    display: none;
}

@media screen and (max-width: 600px) {
    .notice-banner .desktop {
        display: none;
    }

    .notice-banner .mobile {
        display: flex;
    }

    .notice-banner .mobile div {
        min-height: 250px;
    }
}

@media screen and (max-width: 350px) {
    .notice-banner .mobile div {
        min-height: 220px;
    }
}

.join-event-info {
    margin-top: -55px;
    margin-bottom: 50px;
}

.join-button.join-event {
    padding: 15px 40px;
}

.join-button.join-event span::after {
    content: "";
    background: url('/assets/icon/scrap/bold-right-angle-white.svg') no-repeat;
    width: 10px;
    height: 13px;
    display: inline-block;
    margin-left: 7px;
}

.join-button.join-event:hover span::after {
    background: url('/assets/icon/scrap/bold-right-angle.svg') no-repeat;
}

span.join-event.date {
    color: #999999;
    font-size: 16px;
    margin-top: 15px;
}

@media screen and (max-width: 480px) {
    span.join-event.date {
        font-size: 14px;
    }
}

/* 로그인 버튼 */
.login-button {
    display: inline;
    text-align: center;
    color: #191919;
    margin-top: 20px;
    font-size: 18px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.login-button:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media screen and (max-width: 480px) {
    .login-button {
        font-size: 16px;
    }
}

.note-banner img {
    object-fit: contain;
}

.control-contain {
    position: fixed;
    top: 0;
    width: 55px;
    right: calc((100% - 850px) / 2);
    transition: opacity 0.2s ease-in;
    z-index: 100;
}

.read-progress {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #78424d;
    z-index: 100;
}

.read-progress .bar {
    background-color: #a494f8;
    width: 100%;
}

@media screen and (max-width:820px) {
    .read-progress.hide {
        display: none;
    }
}

.configuration {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 105;
    background-color: transparent;
}

.configuration .controls {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    position: relative;
}

.configuration .controls>div {
    width: 55px;
    height: 55px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    /* transition: all 0.5s ease; */
}

.configuration .controls>div.bookmark {
    display: flex;
    align-items: center;
    z-index: 2;
}

.configuration .controls>div.bookmark>span {
    background-image: url('/assets/icon/bookmark-line-w_230119.svg');
    background-position: 0 0;
    background-size: 34px 28px;
    width: 34px;
    height: 28px;
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.configuration .controls>div.bookmark.on span {
    background-image: url('/assets/icon/bookmark-active-w_230119.svg');
}

.configuration .controls>a.scrap {
    background: url('/assets/icon/scrap/dark-scrap-line.svg') no-repeat;
    background-size: 28px 28px;
    background-position: center center;
    width: 55px;
    height: 55px;
    z-index: 2;
    position: relative;
}

.configuration .controls>a.scrap>.new-dot {
    background: url('/assets/icon/new_mobile.svg') no-repeat;
    width: 16px;
    height: 16px;
    background-size: contain;
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 8px;
}

@media screen and (max-width: 850px) {
    .configuration .controls>a.scrap {
        width: 42px;
        height: 42px;
        margin-left: 7px;
    }

    .configuration .controls>a.scrap>.new-dot {
        top: 4px;
        right: 0px;
    }
}

.configuration .controls>div.gear {
    background-image: url('/assets/icon/setting-line-w_230119.svg');
    background-size: 28px 28px;
    z-index: 2;
}

.configuration .controls>div.gear.on {
    background-image: url('/assets/icon/setting-active-w_230119.svg');
    background-size: 28px 28px;
    z-index: 2;
}

.configuration .controls>div.gear.on~div.font {
    height: 55px;
    visibility: visible;
}

.configuration .controls>div.font.sizedown:active,
.configuration .controls>div.font.sizeup:active {
    background-color: #b4b4b4;
}

.configuration .controls>div.share {
    background-image: url('/assets/icon/share-line-w_230119.svg');
    background-size: 28px 28px;
    z-index: 2;
}

.configuration .controls>.gear-overlay {
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.configuration .controls>.gear-overlay.visible {
    visibility: visible;
}

.configuration .controls>.gear-overlay>div.gear-wrapper {
    visibility: hidden;
    position: absolute;
    top: 42%;
    right: calc(50% - 350px);
    transform: translateX(-50%);
    transform: translateY(-15px);
    width: 230px;
    min-height: 210px;
    padding: 18px 18px 0 18px;
    background-color: white;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.configuration .controls>.gear-overlay.visible>div.gear-wrapper {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

body.dark-mode .configuration .controls>.gear-overlay>div.gear-wrapper {
    background-color: #4F4F4F;
    border: 1px solid #4F4F4F;
}

@media screen and (max-width: 850px) {
    .control-contain {
        position: fixed;
        width: 100%;
        top: 60px;
        right: auto !important;
        left: 0 !important;
        z-index: 4000;
    }

    .read-progress {
        width: 100%;
        height: 6px !important;
        background-color: rgb(120, 66, 77);
        margin-top: -1px;
    }

    .read-progress .bar {
        height: 100% !important;
    }

    .ui.container.biz .read-progress {
        display: none;
    }

    .configuration {
        visibility: hidden;
        opacity: 0;
        z-index: 4001;
        width: 100%;
        height: 60px;
        align-items: center;
        justify-content: end;
        background-color: #282828;
        margin-top: -60px;
    }

    .configuration.visible {
        visibility: visible;
        display: flex;
        opacity: 1;
        transition: all 0.2s ease-in-out;
    }

    .configuration.hide {
        visibility: hidden;
        display: flex;
        opacity: 0;
        transition: all 0.2s ease-in-out;
    }

    .configuration .controls {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        -webkit-tap-highlight-color: transparent;
        padding: 0 16px 0 12px;
    }

    .configuration .controls>div {
        width: 42px;
        height: 42px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        cursor: pointer;
        /* transition: all 0.5s ease; */
    }

    .configuration .controls>div.bookmark {
        display: flex;
        flex: none;
        align-items: center;

    }

    .configuration .controls>div.bookmark>span {
        background-image: url('/assets/icon/bookmark-line-w_230119.svg');
        background-position: 0 0;
        background-size: 34px 28px;
        width: 34px;
        height: 28px;
        display: block;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }

    .configuration .controls>div.bookmark.on span {
        background-image: url('/assets/icon/bookmark-active-w_230119.svg');
    }

    .configuration .controls>div.gear {
        margin-left: auto;
        background-image: url('/assets/icon/dark-setting-line-m.svg');
        background-size: 32px 32px;
        -webkit-tap-highlight-color: transparent;
    }

    .configuration .controls>div.gear.on {
        margin-left: auto;
        background-image: url('/assets/icon/dark-setting-active-m.svg');
        background-size: 32px 32px;
        -webkit-tap-highlight-color: transparent;
    }

    .configuration .controls>.gear-overlay {
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        visibility: hidden;
        z-index: 1;
        transform: translateX(0);
    }

    .configuration .controls>.gear-overlay>div.gear-wrapper {
        visibility: hidden;
        position: absolute;
        top: 70px;
        right: 15px;
        background-color: white;
        border: 1px solid #D9D9D9;
        border-radius: 6px;
        width: 230px;
        min-height: 210px;
        transform: translateY(-15px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .configuration .controls>.gear-overlay.visible>div.gear-wrapper {
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }

    .configuration .controls>div.font.sizedown {
        background-image: url(/assets/icon/font_down.svg);
        background-color: #969696;
        background-size: 37px 37px;
        height: 42px;
        width: 0;
        visibility: hidden;
    }

    .configuration .controls>div.font.sizeup {
        background-image: url(/assets/icon/font_up.svg);
        background-color: #969696;
        background-size: 37px 37px;
        height: 42px;
        width: 0;
        visibility: hidden;
    }

    .configuration .controls>div.gear.on~div.font {
        width: 42px;
        height: 42px;
        visibility: visible;
    }

    .configuration .controls>div.font.sizedown:active,
    .configuration .controls>div.font.sizeup:active {
        background-color: #b4b4b4;
    }

    .configuration .controls>div.share {
        flex: none;
        background-image: url('/assets/icon/share-line-w_230119.svg');
        background-size: 30px 30px;
        margin-left: 7px;
    }

    body.dark-mode .read-progress .bar {
        background-color: #9282FD;
    }

    body.dark-mode .read-progress {
        background-color: #703E47;
    }

    body.dark-mode .configuration {
        background-color: #282828;
    }

    body.dark-mode .configuration .controls>div.bookmark.on span {
        background-image: url('/assets/icon/bookmark-active-w_230119.svg');
    }

    body.dark-mode .configuration .controls>div.bookmark>span {
        background-image: url('/assets/icon/bookmark-line-w_230119.svg');
    }

    body.dark-mode .configuration .controls>div.share {
        background-image: url('/assets/icon/share-line-w_230119.svg');
    }

    body.dark-mode .configuration .controls>div.gear {
        background-image: url('/assets/icon/dark-setting-line-m.svg');
    }

    body.dark-mode .configuration .controls>div.gear.on {
        background-image: url('/assets/icon/dark-setting-active-m.svg');
    }
}

.share-recommend {
    display: block;
    margin-bottom: 36px;
}

.note-content a[href^="#longblack/"] {
    color: #9282FD !important;
}

.app-modal .button.orange {
    background-color: #FF5930 !important;
}

/* note labels */
.note-labels {
    display: flex;
    padding: 0;
    margin: 0 !important;
    margin-top: 22px !important;
}

.note-labels+.header,
.commercial-title-sticker+.header {
    margin-top: 0 !important;
}

.note-labels>li {
    list-style: none;
    padding: 6px 24px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background-color: #f2f2f2;
    color: #c8c8c8 !important;
    line-height: 24px;
}

.note-labels>li.active {
    background-color: #191919;
    color: #ff512d !important;
}

.note-labels>li>a {
    font-weight: 800;
    font-size: 20px;
    color: inherit;
    text-decoration: none;
    line-height: 24px;
}

.note-labels>li:not(.active)>a {
    filter: grayscale(100%) brightness(0.8);
}

.note-labels>li.commercial>a {
    display: flex;
    align-items: center;
    margin: 0;
    margin-top: 4px;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.note-labels>li.commercial>a>img {
    height: 28px;
}

@media screen and (max-width: 768px) {
    .note-labels {
        margin-top: 0 !important;
    }

    .note-labels>li {
        padding: 2px 18px;
        line-height: 14px;
    }

    .note-labels>li>a {
        font-weight: 800;
        font-size: 14px;
        color: inherit;
        text-decoration: none;
        line-height: 14px;
    }
}

/* series */
.series-list {
    display: flex;
    background-color: white;
    position: relative;
    z-index: 200;
    padding-top: 50px;
}

.series-list ul {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
}

.series-list ul>li {
    padding: 20px 0;
    border-bottom: 1px solid #d9d9d9;
    background-image: url(/assets/icon/arrow-icon.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: right center;
}

.series-list ul>li:last-child {
    border-bottom: none;
}

.series-list ul>li:first-child {
    padding-top: 0;
    background-image: none !important;
    border-bottom: 1px solid #191919;
    border-width: 2px;
}

.series-list ul>li>a {
    display: flex;
    width: 100%;
    gap: 20px;
    align-items: center;
    color: #191919;
    font-weight: 600;
    font-size: 22px;
}

.series-list ul>li.current>a {
    align-items: flex-start;
}
.series-list ul>li.scheduled {
    filter: grayscale(100%) opacity(40%);
}

.series-list ul>li>a>img {
    width: 160px;
}

.series-list ul>li>a>.info {
    display: flex;
    flex-direction: column;
}

.series-list ul>li>a>.info .title {
    width: 70%;
    overflow: hidden;
    height: 72px;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.series-list ul>li>a>.info .label>span {
    display: inline-block;
    border-radius: 999px;
    background-color: #ff512d;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .series-list ul>li {
        background-image: none;
    }

    .series-list ul>li>a>img {
        width: 120px;
    }

    .series-list ul>li.current>a {
        align-items: center;
    }

    .series-list ul>li>a>.info .title {
        width: 100%;
        height: 82px;
        font-size: 18px;
        -webkit-line-clamp: 3;
    }

    .series-list ul>li>a>.info .label {
        position: absolute;
        left: 18px;
        margin-top: -50px;
    }

    .series-list ul>li.current {
        padding-top: 50px;
    }
}

body.dark-mode .series-list {
    background-color: #191919;
    color: #d9d9d9;
}

body.dark-mode .series-list ul>li {
    background-image: url(/assets/icon/arrow-icon-white.svg);
    border-bottom: 1px solid #444;
}

body.dark-mode .series-list ul>li:first-child {
    border-bottom: 1px solid #d9d9d9;
}

body.dark-mode .series-list ul>li>a {
    color: #d9d9d9;
}

@media screen and (max-width: 768px) {
    body.dark-mode .series-list ul>li {
        background-image: none;
    }
}

/* commercial sticker */
.commercial-title-sticker {
    position: absolute;
    right: 0;
    margin-top: -70px;
}

.commercial-title-sticker>img {
    width: 180px !important;
}

@media screen and (max-width: 767px) {
    .commercial-title-sticker {
        right: -50px;
        margin-top: -50px;
    }

    .commercial-title-sticker>img {
        width: 120px !important;
    }
}

.commercial-sticker {
    position: absolute;
    left: calc(50% + 265px);
    margin-top: -80px;
    z-index: 201;
    animation: sticker-anim 2s ease 0s infinite normal forwards;
}

@keyframes sticker-anim {

    0%,
    100% {
        transform: translateY(0) rotate(0);
        transform-origin: 50% 50%;
    }

    15% {
        transform: translateY(-30px) translateX(20px) rotate(6deg);
    }

    30% {
        transform: translateY(15px) translateX(-10px) rotate(-6deg);
    }

    45% {
        transform: translateY(-15px) translateX(10px) rotate(3.6deg);
    }

    60% {
        transform: translateY(9px) translateX(-7px) rotate(-2.4deg);
    }

    75% {
        transform: translateY(-6px) translateX(4px) rotate(1.2deg);
    }
}

.commercial-sticker>img {
    width: 160px;
}

@media screen and (max-width: 767px) {
    .commercial-sticker {
        right: -30px;
        left: auto;
    }
}

/* 노트 앞 광고 삽입 메시지 */
.prepend-article {
    width: 100%;
    padding: 20px;
    background-color: #f2f2f2;
    margin: 20px 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.prepend-article p {
    font-size: 14px !important;
    width: 100%;
    margin: 0 !important;
}

.prepend-article p:first-child {
    border-bottom: 1px solid #d9d9d9;
    text-align: left;
    padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .prepend-article p:first-child {
        word-break: keep-all;
        padding-right: 20px;
    }
}

.prepend-article p:nth-child(2) {
    text-align: right;
    padding-top: 10px;
}

.prepend-article p:nth-child(2)>a {
    display: inline-block;
    color: #666;
    text-decoration: none !important;
    font-weight: normal;
    padding-right: 10px;
    background-image: url("/assets/icon/link-right-angle.svg");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 6px;
}

.prepend-article+.article-content>.note-content {
    margin-top: 0;
}

body.dark-mode .prepend-article {
    background-color: #333;
}

body.dark-mode .prepend-article p:nth-child(2)>a {
    color: #999;
}

body.dark-mode .prepend-article p:first-child {
    border-bottom: 1px solid #666;
}

body.dark-mode .note-labels>li {
    background-color: #333;
}

body.dark-mode .note-labels>li.active {
    background-color: #444;
}

body.dark-mode .note-labels>li.active>a {
    color: #ff512d !important;
}

@media screen and (max-width: 480px) {
    .banner-background {
        background-image: url(/assets/image/free_banner_bg-mo.svg);
        background-size: 375px 400px;
        height: 400px;
    }
    .banner .content .content-text>.header {
        margin-bottom: 10px !important;
    }
    .banner .content .content-text>.banner-text {
        font-size: 16px !important;
    }
    .banner-background .button-wrapper {
        margin: 80px 0px 0;
    }
}
