:root {
--tc-red:    #c0392b;
--tc-red-lt: #fef2f2;
--tc-red-bd: #fcd5d5;
--tc-bg:     #f5f4f0;
--tc-white:  #ffffff;
--tc-surface:#fafafa;
--tc-bd:     #e8e8e8;
--tc-bd2:    #f0f0f0;
--tc-t1:     #111111;
--tc-t2:     #555555;
--tc-t3:     #888888;
--tc-t4:     #bbbbbb;
--tc-mono:   'Courier New', Courier, monospace;
} .tc-coupons { margin: 0; } .tc-layout-list { display: flex; flex-direction: column; gap: 2px; }
.tc-layout-list .tc-card:first-child { border-radius: 10px 10px 0 0; }
.tc-layout-list .tc-card:last-child  { border-radius: 0 0 10px 10px; border-bottom: none; } .tc-layout-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 10px;
}
.tc-layout-grid .tc-card { border-radius: 10px; } .tc-layout-twocol .tc-card { border-bottom: 1px solid var(--tc-bd2); }
.tc-layout-twocol .tc-card:last-child { border-bottom: none; } .tc-card {
background: var(--tc-white);
border: 1px solid var(--tc-bd);
display: flex;
align-items: stretch;
position: relative;
overflow: hidden;
transition: background .1s;
min-width: 0;
}
.tc-card:hover { background: var(--tc-surface); }
.tc-card.tc-expired { opacity: .52; } .tc-bdg {
position: absolute;
top: 10px; right: 10px;
font-size: 10px; font-weight: 500;
padding: 2px 7px; border-radius: 3px;
z-index: 1;
}
.tc-bdg-hot  { background: var(--tc-red-lt); color: var(--tc-red); }
.tc-bdg-new  { background: #eff6ff; color: #1d4ed8; }
.tc-bdg-app  { background: #f0fdf4; color: #166534; }
.tc-bdg-ship { background: #fffbeb; color: #92400e; }
.tc-bdg-exp  { background: #f5f5f5; color: #999; } .tc-card-brand {
flex: 0 0 68px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 16px 8px;
gap: 5px;
border-right: 1px solid var(--tc-bd2);
}
.tc-brand-ico {
width: 32px; height: 32px;
border-radius: 7px;
display: flex; align-items: center; justify-content: center;
color: #fff; font-size: 10px; font-weight: 500;
flex-shrink: 0;
}
.tc-brand-name { font-size: 9px; color: var(--tc-t4); text-align: center; line-height: 1.3; word-break: keep-all; } .tc-card-body {
flex: 1; min-width: 0;
padding: 16px 18px;
display: flex; flex-direction: column;
justify-content: center; gap: 5px;
}
.tc-card-title {
font-size: 13px; font-weight: 500; color: var(--tc-t1);
letter-spacing: -.2px;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
text-decoration: none;
}
.tc-card-title:hover { color: var(--tc-red); }
.tc-card-cond {
font-size: 12px; color: var(--tc-t3);
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tc-card-meta { display: flex; gap: 10px; }
.tc-card-meta span { font-size: 11px; color: var(--tc-t4); white-space: nowrap; }
.tc-card-meta b { color: var(--tc-t3); font-weight: 500; } .tc-card-action {
flex: 0 0 148px;
border-left: 1px solid var(--tc-bd2);
padding: 16px;
display: flex; flex-direction: column;
align-items: flex-end; justify-content: center;
gap: 8px;
}
.tc-discount {
font-size: 17px; font-weight: 500; color: var(--tc-red);
letter-spacing: -.5px; white-space: nowrap; line-height: 1.1;
}
.tc-code-row { display: flex; align-items: center; gap: 5px; }
.tc-code {
font-family: var(--tc-mono);
font-size: 11px; font-weight: 500;
background: var(--tc-bg); border: 1px solid #ddd;
border-radius: 3px; padding: 4px 8px;
color: #333; letter-spacing: .5px;
white-space: nowrap; flex-shrink: 0;
} .tc-copy-btn {
display: inline-flex; align-items: center; justify-content: center;
padding: 5px 12px;
background: #222; color: #fff !important;
border: none; border-radius: 3px;
font-size: 11px; font-weight: 500;
cursor: pointer; white-space: nowrap; flex-shrink: 0;
user-select: none; transition: background .12s;
}
.tc-copy-btn:hover { background: #444; }
.tc-copy-btn.copied { background: #2d7a3e !important; } .tc-link-btn {
display: inline-flex; align-items: center;
padding: 5px 11px;
background: var(--tc-bg); border: 1px solid #ddd;
border-radius: 3px; font-size: 11px; font-weight: 500;
color: #555 !important; text-decoration: none;
white-space: nowrap; flex-shrink: 0;
transition: border-color .12s;
}
.tc-link-btn:hover { border-color: #999; color: #222 !important; } .tc-twocol-wrap { margin-bottom: 24px; }
.tc-twocol-header {
display: flex; align-items: baseline; justify-content: space-between;
margin-bottom: 14px;
}
.tc-twocol-title { font-size: 15px; font-weight: 500; color: var(--tc-t1); letter-spacing: -.4px; }
.tc-more { font-size: 12px; color: var(--tc-t4); text-decoration: none; }
.tc-more:hover { color: var(--tc-t2); }
.tc-twocol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tc-col-section {
background: var(--tc-white); border: 1px solid var(--tc-bd);
border-radius: 10px; overflow: hidden;
}
.tc-col-hd {
padding: 14px 18px; border-bottom: 1px solid var(--tc-bd2);
display: flex; align-items: center; gap: 8px;
}
.tc-col-ico { font-size: 16px; flex-shrink: 0; }
.tc-col-nm  { font-size: 13px; font-weight: 500; color: var(--tc-t1); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tc-col-ct  { font-size: 11px; color: var(--tc-t4); white-space: nowrap; flex-shrink: 0; }
.tc-col-more { font-size: 11px; color: var(--tc-red); text-decoration: none; white-space: nowrap; flex-shrink: 0; } .tc-cat-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.tc-cat-tab {
padding: 6px 14px; border-radius: 20px;
border: 1px solid var(--tc-bd); font-size: 13px;
color: var(--tc-t3); text-decoration: none;
background: var(--tc-white); transition: all .12s;
white-space: nowrap;
}
.tc-cat-tab:hover, .tc-cat-tab.current {
background: var(--tc-red); color: #fff; border-color: var(--tc-red);
} .tc-hot-banner {
background: var(--tc-white); border: 1px solid var(--tc-bd);
border-radius: 10px; padding: 16px 18px; margin-bottom: 20px;
}
.tc-hot-banner h3 { font-size: 15px; font-weight: 500; margin-bottom: 12px; color: var(--tc-t1); }
.tc-hot-list { display: flex; flex-direction: column; gap: 10px; }
.tc-hot-item { display: flex; align-items: center; gap: 10px; }
.tc-hot-info { flex: 1; min-width: 0; }
.tc-hot-info strong { display: block; font-size: 13px; font-weight: 500; color: var(--tc-t1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tc-hot-info span   { font-size: 12px; color: var(--tc-red); font-weight: 500; } .tc-page-wrap {
max-width: 1100px;
margin: 0 auto;
padding: 20px 24px 40px;
} .tc-bc {
display: flex; align-items: center; gap: 6px;
font-size: 12px; color: #bbb; margin-bottom: 18px;
}
.tc-bc a { color: #bbb; text-decoration: none; }
.tc-bc a:hover { color: #555; }
.tc-bc-current { color: #555; } .tc-detail-grid {
display: grid;
grid-template-columns: 1fr 220px;
gap: 22px;
}
.tc-detail-main {}
.tc-detail-sidebar {} .tc-hero-box { background: #fff; border-radius: 10px; border: 1px solid #e8e8e8; overflow: hidden; margin-bottom: 14px; }
.tc-hero-top { padding: 20px 24px 16px; border-bottom: 1px solid #f0f0f0; }
.tc-hero-tags { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; flex-wrap: wrap; }
.tc-htag { padding: 3px 9px; background: #f5f4f0; border: 1px solid #e0e0e0; border-radius: 3px; font-size: 11px; color: #666; white-space: nowrap; }
.tc-htag-hot  { background: #fef2f2; border-color: #fcd5d5; color: var(--tc-red); font-weight: 500; }
.tc-htag-new  { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; font-weight: 500; }
.tc-htag-ship { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.tc-htag-date { font-size: 11px; color: #bbb; margin-left: auto; white-space: nowrap; }
.tc-hero-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.tc-hero-ico { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 500; flex-shrink: 0; }
.tc-hero-h1  { font-size: 18px; font-weight: 500; color: #111; letter-spacing: -.5px; margin: 0 0 4px; line-height: 1.3; }
.tc-hero-sub { font-size: 13px; color: #888; }
.tc-hero-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #bbb; flex-wrap: wrap; }
.tc-hero-meta strong { color: #888; font-weight: 500; }
.tc-dot { color: #ddd; } .tc-code-area  { padding: 16px 24px; background: #fafafa; }
.tc-code-label { font-size: 10px; font-weight: 500; color: #bbb; letter-spacing: .7px; text-transform: uppercase; margin-bottom: 10px; }
.tc-code-main  { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.tc-code-dashed { flex: 1; min-width: 160px; background: #fff; border: 1.5px dashed #ccc; border-radius: 6px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.tc-code-big   { font-family: var(--tc-mono); font-size: 18px; font-weight: 500; color: #111; letter-spacing: 2px; white-space: nowrap; }
.tc-code-hint  { font-size: 11px; color: #ccc; white-space: nowrap; }
.tc-copy-lg    { padding: 10px 20px !important; font-size: 13px !important; border-radius: 5px !important; flex-shrink: 0; }
.tc-link-goto  { background: #222 !important; color: #fff !important; text-decoration: none; display: inline-flex; align-items: center; }
.tc-discount-big { text-align: right; flex-shrink: 0; }
.tc-disc-num   { font-size: 26px; font-weight: 500; color: var(--tc-red); letter-spacing: -1.5px; line-height: 1; }
.tc-disc-sub   { font-size: 11px; color: #bbb; margin-top: 2px; }
.tc-cond-tags  { display: flex; gap: 6px; flex-wrap: wrap; }
.tc-ctag { padding: 4px 10px; background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; font-size: 11px; color: #666; white-space: nowrap; } .tc-content-block { background: #fff; border-radius: 10px; border: 1px solid #e8e8e8; padding: 24px; margin-bottom: 14px; }
.tc-prose-section { margin-bottom: 24px; }
.tc-prose-section:last-child { margin-bottom: 0; }
.tc-prose-section h2 { font-size: 15px; font-weight: 500; color: #111; letter-spacing: -.4px; margin: 0 0 12px; padding-bottom: 10px; border-bottom: 1px solid #f0f0f0; }
.tc-prose-section p  { font-size: 13px; color: #555; line-height: 1.8; letter-spacing: -.1px; margin-bottom: 10px; }
.tc-tip-box { background: #fff8f8; border-left: 3px solid #e74c3c; border-radius: 0 6px 6px 0; padding: 11px 16px; margin-top: 12px; font-size: 12px; color: #7a3030; line-height: 1.7; } .tc-steps {}
.tc-step { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid #f5f5f5; }
.tc-step:last-child { border-bottom: none; }
.tc-step-num   { width: 26px; height: 26px; border-radius: 5px; background: #222; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; flex-shrink: 0; margin-top: 1px; }
.tc-step-title { font-size: 13px; font-weight: 500; color: #111; letter-spacing: -.2px; margin-bottom: 2px; }
.tc-step-desc  { font-size: 12px; color: #777; line-height: 1.65; } .tc-faq-list {}
.tc-faq-item { border-bottom: 1px solid #f0f0f0; padding: 12px 0; cursor: pointer; }
.tc-faq-item:last-child { border-bottom: none; }
.tc-faq-q { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; font-weight: 500; color: #111; letter-spacing: -.2px; }
.tc-faq-mark  { color: var(--tc-red); flex-shrink: 0; width: 14px; margin-top: 1px; }
.tc-faq-arrow { font-size: 10px; color: #ccc; margin-left: auto; flex-shrink: 0; transition: transform .2s; }
.tc-faq-a { font-size: 12px; color: #777; line-height: 1.7; margin-top: 8px; padding-left: 22px; display: none; }
.tc-faq-item.open .tc-faq-a     { display: block; }
.tc-faq-item.open .tc-faq-arrow { transform: rotate(180deg); } .tc-related-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 14px; }
.tc-related-card { background: #fafafa; border: 1px solid #e8e8e8; border-radius: 8px; padding: 14px; text-decoration: none; display: block; transition: background .1s; }
.tc-related-card:hover { background: #f0efeb; }
.tc-related-ico   { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 500; margin-bottom: 8px; }
.tc-related-cat   { font-size: 10px; color: #bbb; margin-bottom: 3px; white-space: nowrap; }
.tc-related-title { font-size: 12px; font-weight: 500; color: #111; letter-spacing: -.2px; line-height: 1.4; margin-bottom: 6px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.tc-related-disc  { font-size: 13px; font-weight: 500; color: var(--tc-red); white-space: nowrap; } .tc-share-bar { display: flex; align-items: center; gap: 8px; padding: 18px 0 4px; border-top: 1px solid #f0f0f0; margin-top: 4px; flex-wrap: wrap; }
.tc-share-label  { font-size: 12px; color: #bbb; white-space: nowrap; flex-shrink: 0; }
.tc-share-kakao  { padding: 7px 14px; background: #FEE500; border: 1px solid #D4BE00; border-radius: 4px; font-size: 12px; color: #3C1E1E; font-weight: 500; cursor: pointer; white-space: nowrap; }
.tc-share-link   { padding: 7px 14px; background: #fff; border: 1px solid #ddd; border-radius: 4px; font-size: 12px; color: #444; cursor: pointer; white-space: nowrap; }
.tc-share-x      { padding: 7px 14px; background: #111; border: 1px solid #111; border-radius: 4px; font-size: 12px; color: #fff; cursor: pointer; white-space: nowrap; }
.tc-share-report { padding: 7px 14px; background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; font-size: 12px; color: #aaa; cursor: pointer; white-space: nowrap; margin-left: auto; } .tc-sidebar-widget { background: #fff; border-radius: 8px; border: 1px solid #e8e8e8; padding: 16px; margin-bottom: 12px; }
.tc-sticky { position: sticky; top: 20px; }
.tc-sw-label { font-size: 10px; font-weight: 500; color: #bbb; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 10px; }
.tc-sw-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13px; font-weight: 500; color: #111; }
.tc-sw-disc  { font-size: 20px; font-weight: 500; color: var(--tc-red); letter-spacing: -1px; margin-bottom: 8px; }
.tc-sw-code  { width: 100%; background: #f5f4f0; border: 1px dashed #ccc; border-radius: 5px; padding: 9px 12px; font-family: var(--tc-mono); font-size: 13px; font-weight: 500; color: #111; text-align: center; letter-spacing: 2px; margin-bottom: 8px; box-sizing: border-box; }
.tc-sw-link-btn { display: block; width: 100%; padding: 9px; background: #222; color: #fff !important; border-radius: 5px; font-size: 12px; font-weight: 500; text-align: center; text-decoration: none; box-sizing: border-box; }
.tc-sw-exp { font-size: 11px; color: #ccc; text-align: center; margin-top: 7px; }
.tc-sw-item { display: flex; align-items: center; gap: 9px; padding: 9px 0; border-bottom: 1px solid #f5f5f5; text-decoration: none; transition: opacity .1s; }
.tc-sw-item:last-child { border-bottom: none; }
.tc-sw-item:hover { opacity: .75; }
.tc-sw-item-info {}
.tc-sw-item-title { font-size: 12px; color: #333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 155px; }
.tc-sw-item-disc  { font-size: 11px; color: var(--tc-red); font-weight: 500; } .tc-archive-header { margin-bottom: 16px; }
.tc-archive-title  { font-size: 20px; font-weight: 500; color: #111; letter-spacing: -.5px; margin: 0 0 4px; display: flex; align-items: baseline; gap: 10px; }
.tc-archive-count  { font-size: 14px; color: var(--tc-red); font-weight: 400; }
.tc-archive-date   { font-size: 12px; color: #bbb; }
.tc-filter-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.tc-filter-btn { padding: 5px 12px; background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; font-size: 12px; color: #666; text-decoration: none; transition: all .12s; white-space: nowrap; }
.tc-filter-btn.on, .tc-filter-btn:hover { background: #222; color: #fff; border-color: #222; }
.tc-filter-pills { display: flex; gap: 6px; margin-left: auto; flex-wrap: wrap; }
.tc-filter-pill { padding: 5px 12px; background: #fff; border: 1px solid #e0e0e0; border-radius: 20px; font-size: 12px; color: #666; text-decoration: none; transition: all .12s; white-space: nowrap; }
.tc-filter-pill.on { background: var(--tc-red-lt); color: var(--tc-red); border-color: var(--tc-red-bd); }
.tc-pagination { text-align: center; padding: 20px 0; }
.tc-pagination .page-numbers { padding: 6px 12px; border: 1px solid #e0e0e0; border-radius: 4px; font-size: 13px; color: #555; text-decoration: none; margin: 0 2px; display: inline-block; }
.tc-pagination .current { background: #222; color: #fff; border-color: #222; } .tc-empty { color: var(--tc-t4); font-size: 13px; padding: 20px; text-align: center; } @media (max-width: 768px) {
.tc-card-brand { flex: 0 0 56px; }
.tc-card-action { flex: 0 0 120px; padding: 12px; }
.tc-discount { font-size: 15px; }
.tc-twocol-grid { grid-template-columns: 1fr; }
.tc-layout-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}
@media (max-width: 480px) {
.tc-card-body { padding: 12px; }
.tc-card-action { flex: 0 0 110px; }
.tc-layout-grid { grid-template-columns: 1fr; }
}#ez-toc-container{background:#f9f9f9;border:1px solid #aaa;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05);display:table;margin-bottom:1em;padding:10px 20px 10px 10px;position:relative;width:auto}div.ez-toc-widget-container{padding:0;position:relative}#ez-toc-container.ez-toc-light-blue{background:#edf6ff}#ez-toc-container.ez-toc-white{background:#fff}#ez-toc-container.ez-toc-black{background:#000}#ez-toc-container.ez-toc-transparent{background:none}div.ez-toc-widget-container ul{display:block}div.ez-toc-widget-container li{border:none;padding:0}div.ez-toc-widget-container ul.ez-toc-list{padding:10px}#ez-toc-container ul ul,.ez-toc div.ez-toc-widget-container ul ul{margin-left:1.5em}#ez-toc-container li,#ez-toc-container ul{padding:0}#ez-toc-container li,#ez-toc-container ul,#ez-toc-container ul li,div.ez-toc-widget-container,div.ez-toc-widget-container li{background:0 0;list-style:none;line-height:1.6;margin:0;overflow:hidden;z-index:1}#ez-toc-container .ez-toc-title{text-align:left;line-height:1.45;margin:0;padding:0}.ez-toc-title-container{display:table;width:100%}.ez-toc-title,.ez-toc-title-toggle{display:inline;text-align:left;vertical-align:middle}.ez-toc-btn,.ez-toc-glyphicon{display:inline-block;font-weight:400}#ez-toc-container.ez-toc-black a,#ez-toc-container.ez-toc-black a:visited,#ez-toc-container.ez-toc-black p.ez-toc-title{color:#fff}#ez-toc-container div.ez-toc-title-container+ul.ez-toc-list{margin-top:1em}.ez-toc-wrap-left{margin:0 auto 1em 0!important}.ez-toc-wrap-left-text{float:left}.ez-toc-wrap-right{margin:0 0 1em auto!important}.ez-toc-wrap-right-text{float:right}#ez-toc-container a{color:#444;box-shadow:none;text-decoration:none;text-shadow:none;display:inline-flex;align-items:stretch;flex-wrap:nowrap}#ez-toc-container a:visited{color:#9f9f9f}#ez-toc-container a:hover{text-decoration:underline}#ez-toc-container a.ez-toc-toggle{display:flex;align-items:center}.ez-toc-widget-container ul.ez-toc-list li::before{content:' ';position:absolute;left:0;right:0;height:30px;line-height:30px;z-index:-1}.ez-toc-widget-container ul.ez-toc-list li.active{background-color:#ededed}.ez-toc-widget-container li.active>a{font-weight:900}.ez-toc-btn{padding:6px 12px;margin-bottom:0;font-size:14px;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.ez-toc-btn:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.ez-toc-btn:focus,.ez-toc-btn:hover{color:#333;text-decoration:none}.ez-toc-btn.active,.ez-toc-btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.ez-toc-btn-default{color:#333;background-color:#fff;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);text-shadow:0 1px 0 #fff;background-image:-webkit-gradient(linear,left 0,left 100%,from(#fff),to(#e0e0e0));background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-moz-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);background-repeat:repeat-x;border-color:#ccc}.ez-toc-btn-default.active,.ez-toc-btn-default:active,.ez-toc-btn-default:focus,.ez-toc-btn-default:hover{color:#333;background-color:#ebebeb;border-color:#adadad}.ez-toc-btn-default.active,.ez-toc-btn-default:active{background-image:none;background-color:#e0e0e0;border-color:#dbdbdb}.ez-toc-btn-sm,.ez-toc-btn-xs{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.ez-toc-btn-xs{padding:1px 5px}.ez-toc-btn-default:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.active,.ez-toc-btn:active{background-image:none}.ez-toc-btn-default:focus,.ez-toc-btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.ez-toc-pull-right{float:right!important;margin-left:10px}#ez-toc-container label.cssicon,#ez-toc-widget-container label.cssicon{height:30px}.ez-toc-glyphicon{position:relative;top:1px;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;line-height:1;-moz-osx-font-smoothing:grayscale}.ez-toc-glyphicon:empty{width:1em}.ez-toc-toggle i.ez-toc-glyphicon,label.cssicon .ez-toc-glyphicon:empty{font-size:16px;margin-left:2px}#ez-toc-container input,.ez-toc-toggle #item{position:absolute;left:-999em}#ez-toc-container input[type=checkbox]:checked+nav,#ez-toc-widget-container input[type=checkbox]:checked+nav{opacity:0;max-height:0;border:none;display:none}#ez-toc-container .ez-toc-js-icon-con,#ez-toc-container label{position:relative;cursor:pointer;display:initial}#ez-toc-container .ez-toc-js-icon-con,#ez-toc-container .ez-toc-toggle label,.ez-toc-cssicon{float:right;position:relative;font-size:16px;padding:0;border:1px solid #999191;border-radius:5px;cursor:pointer;left:10px;width:35px}div#ez-toc-container .ez-toc-title{display:initial}.ez-toc-wrap-center{margin:0 auto 1em!important}#ez-toc-container a.ez-toc-toggle{color:#444;background:inherit;border:inherit}#ez-toc-container .eztoc-toggle-hide-by-default,label.cssiconcheckbox{display:none}.ez-toc-widget-container ul li a{padding-left:10px;display:inline-flex;align-items:stretch;flex-wrap:nowrap}.ez-toc-widget-container ul.ez-toc-list li{height:auto!important}.ez-toc-icon-toggle-span{display:flex;align-items:center;width:35px;height:30px;justify-content:center;direction:ltr}