* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f3f3f3;
    color: #111111;
    font-family: "Malgun Gothic", "Apple SD Gothic Neo", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.at-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.pc-header {
    background: #ffffff;
    border-bottom: 1px solid #dde1e8;
}

.pc-header .at-container,
.m-header .at-container {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pc-header .at-container {
    min-height: 190px;
    padding: 30px 0 32px;
    position: relative;
    justify-content: center;
}

.pc-header .header-telegram {
    position: absolute;
    left: 0;
    top: 30px;
}

.pc-header .header-keyword {
    position: absolute;
    right: 0;
    top: 50%;
    width: 300px;
    transform: translateY(-50%);
}

.header-logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-logo-img {
    display: block;
    width: 280px;
    height: auto;
    max-height: 86px;
    object-fit: contain;
}

.header-shortcut-links,
.mobile-shortcut-links {
    display: grid;
    gap: 6px;
    justify-items: start;
}

.mobile-shortcut-links {
    display: none;
}

.header-shortcut-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 280px;
    height: 44px;
    padding: 0 14px;
    border: 0;
    border-radius: 4px;
    background: #f33222;
    color: #ffffff;
    font-family: "Malgun Gothic", "Apple SD Gothic Neo", Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.telegram-shortcut {
    background: #075bb7;
    color: #ffffff;
}

.telegram-mark {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #1688d8;
    flex: 0 0 auto;
}

.telegram-mark svg {
    width: 14px;
    height: 14px;
    display: block;
    fill: currentColor;
}

.thisTime,
.m-time {
    display: grid;
    gap: 4px;
    color: #1c2d4f;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

.today,
.today2 {
    min-width: 280px;
    color: #111111;
    font-size: 22px;
    font-weight: 900;
    white-space: nowrap;
}

.clock,
.clock2 {
    color: #f37021;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.m-header {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #dde1e8;
}

.at-menu {
    min-height: 10px;
    background: #222936;
}

.jusohub-main {
    padding-bottom: 38px;
}

.at-footer {
    margin-top: 0;
    border-top: 1px solid #eef0f2;
    background: #ffffff;
}

.footer-info-band {
    position: relative;
    background: #ffffff;
}

.footer-info-inner {
    min-height: 106px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.footer-info-inner p {
    margin: 0;
    color: #161616;
    font-size: 15px;
    font-weight: 900;
}

.footer-info-inner span {
    color: #8f8f8f;
    font-size: 11px;
    font-weight: 800;
}

.footer-top-button {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 2px solid #9a9a9a;
    background: #ffffff;
    color: #999999;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

html.jusohub-popup-open,
body.jusohub-popup-open {
    overflow: hidden;
}

#hd_pop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    margin: 0;
    pointer-events: none;
}

#hd_pop::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
}

#hd_pop.jusohub-popup-visible::before {
    opacity: 1;
    pointer-events: auto;
}

#hd_pop .hd_pops {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto;
    z-index: 10001;
    width: 400px;
    max-width: calc(100vw - 48px);
    max-height: calc(100vh - 48px);
    overflow: hidden;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.42);
    pointer-events: auto;
}

#hd_pop .hd_pops_con {
    width: 100% !important;
    height: auto !important;
    max-height: calc(100vh - 94px);
    overflow: auto;
    background: #ffffff;
}

#hd_pop .hd_pops_con img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
}

#hd_pop .hd_pops_footer {
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    width: 100%;
    height: 48px;
    min-height: 48px;
    box-sizing: border-box;
    padding: 8px 12px;
    background: #202c3d;
    color: #ffffff;
}

#hd_pop .hd_pops_footer button {
    position: static !important;
    flex: 0 0 auto !important;
    min-width: 0;
    margin: 0;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

#hd_pop .hd_pops_footer .hd_pops_reject {
    flex: 0 0 auto !important;
    text-align: left;
    justify-content: flex-start;
}

#hd_pop .hd_pops_footer .hd_pops_reject strong {
    display: none;
}

#hd_pop .hd_pops_footer .hd_pops_reject::after {
    content: none;
    display: none;
}

#hd_pop .hd_pops_footer .hd_pops_close {
    position: static !important;
    flex: 0 0 auto;
    text-align: right;
    justify-content: flex-end;
}

#hd_pop .hd_pops_footer .hd_pops_close::after {
    content: none;
    display: none;
}

@media (max-width: 900px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    html.jusohub-popup-open,
    body.jusohub-popup-open {
        overflow: hidden;
    }

    #thema_wrapper,
    .wrapper {
        max-width: 100%;
        overflow-x: clip;
    }

    #hd_pop {
        position: fixed;
        inset: 0;
        z-index: 10000;
        width: 100%;
        max-width: 100%;
        height: 100%;
        margin: 0;
        pointer-events: none;
    }

    #hd_pop::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.58);
        opacity: 0;
        pointer-events: none;
    }

    #hd_pop.jusohub-popup-visible::before {
        opacity: 1;
    }

    #hd_pop .hd_pops {
        top: 50% !important;
        width: 400px !important;
        max-width: calc(100vw - 48px);
        max-height: calc(100vh - 48px);
        border-radius: 10px;
        transform: translate(-50%, -50%);
    }

    #hd_pop .hd_pops_con {
        max-height: calc(100vh - 94px);
    }

    #hd_pop .hd_pops_footer {
        display: flex !important;
        justify-content: space-between !important;
        min-height: 48px !important;
        height: 48px;
        box-sizing: border-box;
        align-items: center !important;
        padding: 8px 12px !important;
        background: #1f2937;
        color: #ffffff;
        font-size: 13px;
    }

    #hd_pop .hd_pops_footer button {
        position: static !important;
        top: auto !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
        display: flex !important;
        flex: 0 0 auto !important;
        align-items: center;
        height: 100% !important;
        padding: 0 6px !important;
        font-size: 13px !important;
        transform: none !important;
        line-height: normal !important;
        white-space: nowrap;
        font-weight: 600 !important;
    }

#hd_pop .hd_pops_footer .hd_pops_reject::after,
#hd_pop .hd_pops_footer .hd_pops_close::after {
        content: none !important;
        display: none !important;
}

    #hd_pop .hd_pops_footer .hd_pops_close {
        position: static !important;
        top: auto !important;
        right: auto !important;
        width: auto !important;
        height: 100% !important;
        transform: none !important;
        display: flex !important;
    }

    #hd_pop .hd_pops_footer .hd_pops_reject {
        flex: 0 0 auto !important;
        justify-content: flex-start !important;
    }

    #hd_pop .hd_pops_footer .hd_pops_close {
        justify-content: flex-end !important;
    }

    @supports selector(:has(*)) {
        #hd_pop:has(.hd_pops:not([style*="display: none"]))::before {
            opacity: 1;
        }
    }

    .hd_pops {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto;
        z-index: 10001;
        width: min(86vw, 360px);
        max-width: calc(100vw - 40px);
        max-height: calc(100vh - 48px);
        overflow: hidden;
        transform: translate(-50%, -50%);
        border: 0;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
        pointer-events: auto;
    }

    .hd_pops.jusohub-popup-queued {
        display: none !important;
    }

    .hd_pops_con {
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
        max-height: calc(100vh - 106px);
        overflow: auto;
        background: #ffffff;
    }

    .hd_pops_con p,
    .hd_pops_con a {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .hd_pops_con a:has(img) {
        display: block;
        line-height: 0;
    }

    .hd_pops_con img + br {
        display: none;
    }

    .hd_pops_con img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }

    .hd_pops_footer {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 0;
        background: #172233;
        color: #ffffff;
    }

    .hd_pops_footer button {
        min-width: 0;
        margin: 0;
        padding: 0 18px;
        border: 0;
        background: transparent;
        color: #ffffff;
        font-size: 0;
        font-weight: 900;
        line-height: 1.2;
        white-space: normal;
    }

    .hd_pops_footer .hd_pops_reject {
        flex: 1 1 auto;
        text-align: left;
    }

    .hd_pops_footer .hd_pops_reject strong {
        display: none;
    }

    .hd_pops_footer .hd_pops_reject::after {
        content: "오늘 그만보기";
        font-size: 13px;
    }

    .hd_pops_footer .hd_pops_close {
        position: static;
        flex: 0 0 auto;
        text-align: right;
    }

    .hd_pops_footer .hd_pops_close::after {
        content: "닫기 ×";
        font-size: 13px;
    }

    .pc-header {
        display: none;
    }

    .m-header {
        display: block;
    }

    .m-header .at-container {
        min-height: 146px;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 6px;
        padding: 6px 0;
    }

    .mobile-shortcut-links {
        display: grid;
        justify-items: stretch;
        gap: 4px;
    }

    .mobile-shortcut-links .header-shortcut-link {
        width: 100%;
        height: 24px;
        padding: 0 10px;
        border: 1px solid #e0e0e0;
        border-radius: 0;
        font-size: 13px;
    }

    .header-wrap {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 6px;
    }

    .m-time {
        grid-column: 3;
        justify-self: end;
    }

    .m-header .header-logo {
        grid-column: 2;
        justify-self: center;
    }

    .header-logo a {
        justify-content: center;
    }

    .m-header .site-logo-img {
        width: 135px;
        height: auto;
        max-height: 42px;
    }

    .m-time {
        font-size: 14px;
    }

    .today2 {
        display: none;
        min-width: 0;
        font-size: 12px;
    }

    .clock2 {
        display: none;
        font-size: 16px;
    }

}

@media (max-width: 620px) {
    #hd_pop .hd_pops {
        top: 50% !important;
        width: 100% !important;
        max-width: 360px;
        max-height: calc(100vh - 24px);
        border-radius: 10px;
        transform: translate(-50%, -50%) !important;
    }

    .at-container {
        width: min(100% - 20px, 1120px);
    }

    .footer-top-button {
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 22px;
    }
}

@media (max-width: 360px) {
    .header-wrap {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 5px;
    }

    .m-header .site-logo-img {
        width: 126px;
        height: auto;
        max-height: 39px;
    }

    .today2 {
        font-size: 11px;
    }

    .clock2 {
        font-size: 15px;
    }
}

/* Keep the popup footer controls pinned to opposite edges on every mobile browser. */
#hd_pop .hd_pops_footer {
    position: relative !important;
    display: block !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 !important;
}

#hd_pop .hd_pops_footer .hd_pops_reject,
#hd_pop .hd_pops_footer .hd_pops_close {
    position: absolute !important;
    top: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
}

#hd_pop .hd_pops_footer .hd_pops_reject {
    right: auto !important;
    left: 18px !important;
    text-align: left !important;
}

#hd_pop .hd_pops_footer .hd_pops_close {
    right: 18px !important;
    left: auto !important;
    text-align: right !important;
}

#hd_pop .hd_pops_footer .hd_pops_reject::after,
#hd_pop .hd_pops_footer .hd_pops_close::after {
    font-size: 13px !important;
    line-height: 48px !important;
}

#hd_pop .hd_pops_footer .hd_pops_reject > span,
#hd_pop .hd_pops_footer .hd_pops_close > span {
    display: block !important;
    color: #ffffff !important;
    font-size: 13px !important;
    line-height: 48px !important;
    white-space: nowrap !important;
}

/* BEGIN JUSOONGIL01 ADDRESS POPUP */
/* Scoped to popup content so other GnuBoard popups are unchanged. */
#hd_pop:has(.ongil-address-popup-v2) {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000 !important;
    background: rgba(5, 13, 24, 0.52) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

#hd_pop .hd_pops:has(.ongil-address-popup-v2) {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    width: 360px !important;
    max-width: calc(100vw - 20px) !important;
    height: auto !important;
    overflow: hidden !important;
    border: 1px solid rgba(122, 136, 152, 0.75) !important;
    border-radius: 12px !important;
    transform: translate(-50%, -50%) !important;
    box-shadow: 0 28px 80px rgba(2, 10, 22, 0.36) !important;
}

#hd_pop .hd_pops:has(.ongil-address-popup-v2) .hd_pops_con {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
}

.ongil-address-popup-v2,
.ongil-address-popup-v2 * {
    box-sizing: border-box;
}

.ongil-address-popup-v2 {
    width: 100%;
    font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

.ongil-address-popup-v2 .ongil-card {
    width: 100%;
    overflow: hidden;
    background: #041426;
}

.ongil-address-popup-v2 .ongil-head {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 7px 10px;
    background: radial-gradient(circle at 18% 14%, rgba(22, 209, 234, 0.14), transparent 28%), radial-gradient(circle at 78% 20%, rgba(21, 111, 218, 0.11), transparent 26%), linear-gradient(135deg, #041328, #071d38 52%, #021121);
    color: #fff;
}

.ongil-address-popup-v2 .ongil-mark {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
}

.ongil-address-popup-v2 .ongil-mark img {
    display: block;
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.ongil-address-popup-v2 .ongil-heading,
.ongil-address-popup-v2 .ongil-copy {
    min-width: 0;
    flex: 1;
}

.ongil-address-popup-v2 .ongil-title {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.ongil-address-popup-v2 .ongil-subtitle {
    margin: 2px 0 0;
    color: #16d1ea;
    font-size: 7.5px;
    font-weight: 700;
    line-height: 1.3;
    word-break: keep-all;
}

.ongil-address-popup-v2 .ongil-body {
    padding: 5px 8px 7px;
    background: radial-gradient(circle at 15% 0%, rgba(22, 209, 234, 0.07), transparent 28%), linear-gradient(180deg, #071a31, #041426);
}

.ongil-address-popup-v2 .ongil-list {
    display: grid;
    gap: 5px;
}

.ongil-address-popup-v2 .ongil-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 39px;
    padding: 5px 8px 5px 10px;
    border: 1px solid rgba(121, 149, 176, 0.34);
    border-radius: 9px;
    background: linear-gradient(135deg, #0b2139, #08192d);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 6, 15, 0.16);
}

.ongil-address-popup-v2 .ongil-row.current {
    border-color: #1989df;
    background: radial-gradient(circle at 12% 15%, rgba(22, 209, 234, 0.09), transparent 34%), linear-gradient(135deg, #0d2948, #081a2f);
}

.ongil-address-popup-v2 .ongil-copy,
.ongil-address-popup-v2 .ongil-label,
.ongil-address-popup-v2 .ongil-domain {
    display: block;
}

.ongil-address-popup-v2 .ongil-label {
    margin-bottom: 2px;
    color: #91a1b1;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.1;
}

.ongil-address-popup-v2 .ongil-domain {
    overflow: hidden;
    color: #fff;
    font-size: 11.5px;
    font-weight: 900;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ongil-address-popup-v2 .current .ongil-domain {
    color: #54d9ed;
}

.ongil-address-popup-v2 .ongil-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 43px;
    height: 21px;
    padding: 0 7px;
    border-radius: 999px;
    background: #156fda;
    color: #fff;
    font-size: 7.5px;
    font-weight: 900;
    white-space: nowrap;
}

.ongil-address-popup-v2 .ongil-arrow {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: #21c8e3;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.ongil-address-popup-v2 .ongil-row.lifetime {
    border-color: #d8dee5;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 7, 18, 0.12);
}

.ongil-address-popup-v2 .lifetime .ongil-label {
    color: #74808d;
}

.ongil-address-popup-v2 .lifetime .ongil-domain {
    color: #17324e;
}

.ongil-address-popup-v2 .lifetime .ongil-arrow {
    background: #edf2f7;
    color: #156fda;
}

.ongil-address-popup-v2 .ongil-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 13px;
    margin-left: 3px;
    padding: 1px 4px;
    border-radius: 9px;
    background: #156fda;
    color: #fff;
    font-size: 7px;
    font-weight: 900;
    vertical-align: middle;
}

.ongil-address-popup-v2 .ongil-guide {
    margin: 4px 2px 0;
    color: #2bcde5;
    font-size: 7.5px;
    font-weight: 700;
    line-height: 1.3;
    word-break: keep-all;
}

#hd_pop .hd_pops:has(.ongil-address-popup-v2) .hd_pops_footer {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    padding: 0 !important;
    background: #1d2b3f !important;
}

#hd_pop .hd_pops:has(.ongil-address-popup-v2) .hd_pops_footer button {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    padding: 0 10px !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 11.5px !important;
    font-weight: 850 !important;
    line-height: 42px !important;
    text-align: center !important;
    inset: auto !important;
}

#hd_pop .hd_pops:has(.ongil-address-popup-v2) .hd_pops_footer button + button {
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#hd_pop .hd_pops:has(.ongil-address-popup-v2) .hd_pops_footer button > span {
    display: block !important;
    color: #fff !important;
    font-size: 11.5px !important;
    line-height: 42px !important;
    white-space: nowrap !important;
}

#hd_pop .hd_pops:has(.ongil-address-popup-v2) .hd_pops_footer button::after {
    content: none !important;
}

/* Match the final Address Time popup on desktop and mobile. */
#hd_pop .hd_pops:has(.ongil-address-popup-v2) {
    width: 400px !important;
    max-width: calc(100vw - 32px) !important;
    height: 365.625px !important;
}

#hd_pop .hd_pops:has(.ongil-address-popup-v2) .hd_pops_con {
    height: 317.625px !important;
}

.ongil-address-popup-v2,
.ongil-address-popup-v2 .ongil-card {
    height: 100%;
}

.ongil-address-popup-v2 .ongil-head {
    gap: 10px;
    min-height: 77.625px;
    padding: 11px 14px;
}

.ongil-address-popup-v2 .ongil-mark,
.ongil-address-popup-v2 .ongil-mark img {
    width: 38px;
    height: 38px;
}

.ongil-address-popup-v2 .ongil-mark {
    flex-basis: 38px;
}

.ongil-address-popup-v2 .ongil-title {
    font-size: 18px;
}

.ongil-address-popup-v2 .ongil-subtitle {
    margin-top: 3px;
    font-size: 9px;
}

.ongil-address-popup-v2 .ongil-body {
    height: 240px;
    padding: 8px 14px 10px;
}

.ongil-address-popup-v2 .ongil-list {
    gap: 5px;
}

.ongil-address-popup-v2 .ongil-row {
    gap: 10px;
    min-height: 59px;
    padding: 7px 10px 7px 12px;
    border-radius: 10px;
}

.ongil-address-popup-v2 .ongil-label {
    margin-bottom: 3px;
    font-size: 9px;
}

.ongil-address-popup-v2 .ongil-domain {
    font-size: 14px;
}

.ongil-address-popup-v2 .ongil-status {
    min-width: 55px;
    height: 26px;
    padding: 0 9px;
    font-size: 9px;
}

.ongil-address-popup-v2 .ongil-arrow {
    width: 28px;
    height: 28px;
    font-size: 20px;
}

.ongil-address-popup-v2 .ongil-badge {
    min-height: 15px;
    margin-left: 3px;
    padding: 1px 5px;
    font-size: 8px;
}

.ongil-address-popup-v2 .ongil-guide {
    height: 14px;
    margin: 5px 2px 0;
    font-size: 8px;
    line-height: 14px;
}

#hd_pop .hd_pops:has(.ongil-address-popup-v2) .hd_pops_footer,
#hd_pop .hd_pops:has(.ongil-address-popup-v2) .hd_pops_footer button {
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
}

#hd_pop .hd_pops:has(.ongil-address-popup-v2) .hd_pops_footer button {
    padding: 0 12px !important;
    font-size: 12px !important;
    line-height: 48px !important;
}

#hd_pop .hd_pops:has(.ongil-address-popup-v2) .hd_pops_footer button > span {
    font-size: 12px !important;
    line-height: 48px !important;
}

/* GnuBoard hides the popup node only. Remove the modal veil at the same time. */
#hd_pop:has(.hd_pops[style*="display: none"] .ongil-address-popup-v2) {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    pointer-events: none !important;
}
/* END JUSOONGIL01 ADDRESS POPUP */

/* Official Telegram channel shortcuts */
.telegram-channel-guide {
    background: #2c8fd7;
    color: #ffffff;
}

.telegram-mark {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    background: #2aabee;
    color: #ffffff;
}

.telegram-mark .telegram-official-logo {
    display: block;
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
    .mobile-shortcut-links .telegram-mark {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .mobile-shortcut-links .telegram-mark .telegram-official-logo {
        width: 12px;
        height: 12px;
    }
}