/*
	Cheshire Hike Track
*/

/* CSS Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }

/* Overall */
body { font-family: 'Nunito Sans'; background: #F8FAFC; font-size: 16px; line-height: 1.4; color: #111; }
body.log-inauth { background: #F8FAFC; }
body.log-intext { background: #F8FAFC; }
body.log-incomplete { background: #F8FAFC; }
body.registerstart { background: #111; }
body.registeremail { background: #111; }
body.registertext { background: #111; }
body.registercomplete { background: #111; }
input:focus, select:focus, textarea:focus, button:focus { outline: none; }
input, select, button { font-family: 'Nunito Sans'; font-size: 16px; }
strong { font-weight: 700; }

.grey_text { color: #64748B; }

.toast { background: #ED3F23; padding: 20px; color: #fff; border-radius: 6px; margin: -5px 0 30px 0; }
.toast.response { display: none; color: #EF4444; background: #ffe4e4; }
.toast.green { color: #10B981; background: #d7f5eb; }
.toast.welcome { color: #fff; background: #1a73e8; margin: 0; padding: 30px; }
.toast.negative { color: #EF4444; background: #ffe4e4; margin: 0; padding: 30px; }
.staging { display: none; position: fixed; z-index: 100; bottom: 20px; right: 20px; background: #b72525; color: #fff; font-size: 14px; line-height: 14px; border-radius: 100px; padding: 14px 20px; text-decoration: none; margin: 2px 0 0 20px; }
.pop { position: fixed; z-index: 100; bottom: -100px; left: 50%; transform: translateX(-50%); background: #1a73e8; color: #fff; border-radius: 100px; padding: 15px 25px; text-decoration: none; text-align: center; width: 80%; }
.pop.green { background: #10B981; }
.pop.blue { background: #1a73e8; }
.pop.red { color: #EF4444; background: #ffe4e4; }

input[readonly], select[readonly] { background-color: #eee; color: #777; cursor: not-allowed; }
.null { cursor: default; }

/* Animations */
.live i { animation: blinker 2s linear infinite }
.live.refresh i { animation: none; }
@keyframes blinker { 50% { transform: scale(1.2); } }
@keyframes pulse-ring { 0% { transform: scale(.33); } 80%, 100% { opacity: 0; } }

.issue.blood-red { animation: blood-red-blinker 1s linear infinite }
@keyframes blood-red-blinker { 50% { background: #8c2020; } }

@keyframes shimmer { 100% { transform: translateX(100%); } }

.notification.new { animation: notify 0.4s linear; animation-fill-mode: forwards; }
@keyframes notify { 0% { height: 0px; opacity: 0; } }
@keyframes notify { 100% { opacity: 1; height: 100px; } }
.notification.new span { animation: fadein 1s linear; animation-fill-mode: forwards; }
@keyframes fadein { 0% { opacity: 0; } }
@keyframes fadein { 100% { opacity: 0.6; } }

.loader {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid;
  border-color: #000 #0000;
  animation: l1 1s infinite;
}
@keyframes l1 {to{transform: rotate(.5turn)}}

/* TV */
.tv { box-sizing: border-box; padding: 40px 50px; width: 100%; height: 100%; position: absolute; top: 0; left: 0; bottom: 0; background: #833AB4; background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%); }
.tv h3 { color: #fff; font-weight: 900; font-size: 40px; margin: 0 0 20px 0; }
.tv .blocks { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; align-items: stretch; }
.tv .block { background: #fff; padding: 20px; border-radius: 6px; text-align: center; }
.tv .block h4 { font-weight: 900; font-size: 30px; color: 111; }
.tv .block h5 { font-size: 20px; color: 111; }
.tv.pathfinder-plus { background: #2A7B9B; background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%); }
.tv.explorer { background: #020024; background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%); }

/* Dialog */
.whiteout { display: none; position: fixed; z-index: 90; background: #fff; opacity: 0.9; width: 100%; height: 100vh; top: 0; left: 0; }
.blackout { display: none; position: fixed; z-index: 90; background: #111; opacity: 0.9; width: 100%; height: 100vh; top: 0; left: 0; z-index: 199; }
.dialog { display: none; position: fixed; z-index: 100; top: 50%; left: 50%; transform: translate(-50%,-50%); background: #fff; text-align: left; padding: 40px; border-radius: 6px; width: 400px; border: 1px solid #E2E8F0; }
.dialog p { margin: 0 0 30px 0; }
.dialog h3 { font-weight: 700; font-size: 26px; line-height: 32px; margin: 0 0 20px 0; }
.dialog label { display: block; margin: 5px 0 10px 0; width: 100%; font-weight: normal; text-align: left; border-radius: 6px; }
.dialog small { margin: 0 0 20px 0; display: block; background: #F8FAFC; border-radius: 6px; padding: 20px; }
.dialog input, .dialog select, .dialog textarea { display: inline-block; margin: 0 0 20px 0; width: 100%; border: 1px solid #CBD5E1; padding: 12px; box-sizing: border-box; border-radius: 6px; }
.dialog .or { margin-bottom: 20px; display: block; width: 100%; background: #f1f1f1; padding: 10px 0; text-align: center; border-radius: 6px; }
.dialog input.identifier { background: #CBD5E1; font-family: 'SF Mono', 'Segoe UI Mono', 'Menlo', 'Consolas', 'Courier New', monospace; }
.dialog input.sunday_start_time { background: #eee; font-family: 'SF Mono', 'Segoe UI Mono', 'Menlo', 'Consolas', 'Courier New', monospace; pointer-events: none; }
.dialog textarea { height: 100px; }
.dialog .buttons { float: right; }
.dialog .button { line-height: 16px; margin: 0 0 0 10px; border-radius: 6px; text-decoration: none; float: left; width: auto; background: #10B981; color: #fff; font-weight: 700; border: 0; padding: 15px 18px; cursor: pointer; }
.dialog .button.close { background: #F1F5F9; color: #475569; }
.dialog .button:hover { background: #1e9d73; }
.dialog .button.close:hover { background: #F1F5F9; opacity: 0.75; }
.dialog .button:disabled { background: #ccc; }
.dialog .button.red { background: #EF4444; color: #fff; }
.dialog .button.red:hover { background: #d24a4a; }
.dialog .list .item { text-decoration: none; display: inline-block; width: 142px; margin: 0 0 10px 0; border-radius: 6px; background: #F1F5F9; color: #475569; padding: 20px 25px; }
.dialog .list .item:hover { background: #f7fbff; }
.dialog .list .item p { margin: 0; color: #000; }
.dialog .list .item p.sub { opacity: 0.75; font-size: 13px; }
.dialog .list .item:last-child { margin-bottom: 20px; }
.dialog .list .item:nth-child(2n) { margin-right: 10px; }
.dialog .list .item.selection { width: auto; padding: 11px 12px; margin-right: 10px!important; }
.dialog .list .item.selected { background: #10B981; }
.dialog .list .item.selected p { color: #fff; }
.dialog .hide { display: none; }
.dialog.message { display: none; background: #111; z-index: 200; }
.dialog.message h3, .dialog.message p { color: #fff; }
.dialog.message .button { margin-left: 0; }

/* Log In */
.log_in { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: #fff; text-align: left; padding: 40px; border-radius: 6px; width: 65%; max-width: 400px; border: 1px solid #E2E8F0; }
.log_in img { width: 90px; margin: 0 0 20px 20px; float: right; }
.log_in h1 { font-weight: 700; font-size: 26px; line-height: 32px; margin: 0 0 20px 0; }
.log_in h1 span { font-weight: 900; }
.log_in .alert { line-height: 18px; margin: 0 0 30px 0; background: #ed3f23; border-radius: 3px; padding: 10px; color: #fff; font-weight: 700; font-size: 12px; }
.log_in p { line-height: 22px; margin: 0 0 30px 0; }
.log_in p.bottom { margin-bottom: 0; font-size: 15px; margin: 25px 0 0 0; }
.log_in p.bottom a { color: inherit; }
.log_in p.bottom.second { margin-top: 5px; }
.log_in label { display: block; margin: 5px 0 10px 0; width: 100%; font-weight: normal; text-align: left; border-radius: 6px; }
.log_in label a { float: right; color: #000; font-size: 14px; text-decoration: none; border-bottom: 1px solid #000; }
.log_in input, .log_in select { display: inline-block; margin: 0 0 20px 0; width: 100%; border: 1px solid #CBD5E1; padding: 12px; box-sizing: border-box; border-radius: 6px; }
.log_in .button { background: #10B981; color: #fff; font-weight: 700; border: 0; padding: 15px 0; cursor: pointer; margin-bottom: 0; }
.log_in .button:hover { background: #1e9d73; }
.log_in .button:disabled { background: #ccc; }

/* Header Bar */
.header_bar { background: #fff; border-bottom: 1px solid #E2E8F0; padding: 20px 35px; box-sizing: border-box; z-index: 20; position: fixed; top: 0; left: 0; width: 100%; font-weight: 600; }
.header_bar .right { float: right; }
.header_bar p { display: inline-block; margin: 10px 0 0 0; }
.header_bar p > i { margin: 0 5px; font-size: 15px; line-height: 15px; }
.header_bar p small { font-weight: 700; }
.header_bar p.name { border: 1px solid #E2E8F0; padding: 9px 13px; border-radius: 6px; margin: 0 15px 0 0; }
.header_bar p strong { font-weight: 800; }
.header_bar a { color: #111; text-decoration: none; margin: 0 0 0 20px; }
.header_bar .right .links { float: right; margin-top: 10px; }
.header_bar .right .links i { margin: 0 4px 0 0; color: #111; }
.header_bar .right .links i.change-role { margin-right: 10px; }

/* Side Bar */
.sidebar { height: 100vh; overflow-y: scroll; background: #fff; position: fixed; left: 0; top: 0; width: 225px; z-index: 5; border-right: 1px solid #E2E8F0; height: 100vh; box-sizing: border-box; padding: 90px 0 25px 0; font-weight: 600; }
.sidebar h3 { padding: 0 0 0 25px; color: #999; margin: 20px 0 5px 0; font-size: 14px; }
.sidebar .item { color: #334155; text-decoration: none; padding: 10px 0 10px 30px; display: block; border-left: 3px solid #fff; }
.sidebar .item i { display: none; font-size: 13px; float: left; line-height: 22px; min-width: 20px; color: #111; text-align: center; margin-right: 10px; }
.sidebar .item p { padding-top: 2px; font-size: 15px; }
.sidebar .item.active { background: #F8FAFC; }
.sidebar .item.disabled { pointer-events: none; opacity: 0.25; }
.sidebar .item.sub { padding-left: 60px; font-weight: normal; padding-top: 8px; padding-bottom: 8px; }

/* Container */
.container { padding: 130px 50px 50px 275px; }
.container h1 { font-size: 28px; font-weight: 700; margin: 0 0 20px 0; width: 50%; }
.container .action { text-decoration: none; background: #10B981; color: #fff; font-weight: 700; padding: 15px 20px; float: right; box-sizing: border-box; border-radius: 6px; }
.container .action .button:hover { background: #1e9d73; }
.container .action.gap { margin-left: 10px; }

.container .intro { color: #64748B; max-width: 800px; }

.container.instructions h1 { width: 100%; }
.container.instructions h3 { font-size: 22px; font-weight: 700; margin: 30px 0 5px 0; }
.container.instructions p { color: #64748B; color: #334155; margin: 0 0 20px 0; }
.container.instructions ul { list-style-type: square; padding: 0 0 0 20px; }
.container.instructions ul li { color: #334155; padding: 0 0 0 10px; margin: 0 0 10px 0;}

/* Search */
.container .search { margin-top: 30px; position: relative; width: 300px; display: inline-block; }
.container .search input { width: 100%; border: 1px solid #CBD5E1; border-radius: 6px; padding: 15px 15px 15px 40px; box-sizing: border-box; }
.container .search i { position: absolute; top: 18px; left: 15px; color: #94A3B8; }

/* Filter */
.container .filter { margin-top: 30px; position: relative; width: 300px; display: inline-block; }
.container .filter select { width: 100%; border: 1px solid #CBD5E1; border-radius: 6px; padding: 0 15px 0 15px; box-sizing: border-box; height: 53px; }

/* Counter */
.container .counter { display: inline-block; margin-top: 30px; padding: 0 0 0 40px; }

/* Refresh */
.container .import { float: right; margin-top: 45px; color: #aaa; text-decoration: underline; }

/* Tabs */
.container .tabs { margin: 30px 0 10px 0; border-bottom: 1px solid #E2E8F0; float: left; width: 100%; }
.container .tabs a { padding: 15px 20px 15px 18px; float: left; border-bottom: 2px solid transparent; color: #64748B; text-decoration: none; }
.container .tabs a.active { color: #10B981; border-bottom-color: #10B981; }
.container .tabs a.active.red { color: #EF4444; border-bottom-color: #EF4444; }
.container .tabs a.right { float: right; }
.container .tabs a span { margin: 3px 0 0 0; float: left; }
.container .tabs a i { font-size: 22px; float: left; margin: 2px 10px 0 0; }

/* Tables */
.container .list { margin-top: 30px; display: flex; flex-direction: column; width: 100%; }
.container .row { display: flex; color: inherit; text-decoration: none; }
.container .row:hover .column { background: #f8fafc; }
.container .row.button:hover .column { background: #fff; }
.container .row .column { flex: 1; padding: 15px; }
.container .row .column.large { flex: 1.5; }
.container .row .column.mini { flex: 0.5; }
.container .row .column.width-a { flex: 1; }
.container .row .column.width-b { flex: 1.5; }
.container .row .column.width-c { flex: 3; }
.container .row.top .column { font-weight: 600; }
.container .row.top .column.tags { text-indent: -10px; }
.container .row.normal { font-weight: 600; background: #fff; border: 1px solid #E2E8F0; border-radius: 6px; font-weight: normal; margin-bottom: 8px; }
.container .row.normal .column { padding: 15px 15px; }
.container .row p { float: left; padding: 8px 10px; margin: 5px 10px 5px 0; border: 1px solid transparent; }
.container .row p.tag { border-radius: 6px; color: #10B981; background: #d7f5eb; font-weight: 600; }
.container .row p.tag.button { background: #10B981; color: #fff; }
.container .row p.tag.grey { color: #475569; background: #F1F5F9; }
.container .row p.tag.red { color: #EF4444; background: #ffe4e4; }
.container .row p.tag.orange { color: #C2410C; background: #FFEDD5; }
.container .row p.tag.outline { border-color: #E2E8F0; color: #000; background: none; font-weight: normal; }
.container .row p.tag.button:hover { background: #0aa06e; }
.container .row p.tag.orange.button:hover { background: #FFEDD5; }

.report .columns { display: flex; gap: 30px; align-items: flex-start; }
.report .column { flex: 1; margin: 30px 0 0 0; width: 100%; background: #fff; box-sizing: border-box; border: 1px solid #E2E8F0; border-radius: 6px; font-weight: normal; padding: 30px; }
.report .column .table { float: left; width: 100%; }
.report .column h3 { font-size: 20px; font-weight: 700; margin: 0 0 20px 0; }
.report .column .table.wide .line { grid-template-columns: repeat(12, 1fr); }
.report .column .table.wider .line { grid-template-columns: repeat(13, 1fr); }
.report .column .line { display: grid; grid-template-columns: repeat(3, 1fr); }
.report .column .line p { box-sizing: border-box; width: 100%; height: 40px; border-top: 1px solid #E2E8F0; border-left: 1px solid #E2E8F0; padding: 10px; font-size: 14px; }
.report .column .line p:last-child { border-right: 1px solid #E2E8F0; }
.report .column .line.header p { font-weight: 700; background: #e2ecfa; }
.report .column .line:last-child p { border-bottom: 1px solid #E2E8F0; }
.report .column .line i { color: #73a4e5; margin-left: 5px; }

.issues .column { min-height: calc(100vh - 300px); position: relative; }
.issues .column h3 { margin-bottom: 20px; }
.issues .column .loader { position: absolute; top: 30px; right: 33px; z-index: 1; opacity: 0.25; }
.issues .card { display: block; text-decoration: none; color: #111; position: relative; z-index: 2; margin: 20px 0 10px 0; width: 100%; background: #fff; box-sizing: border-box; border: 1px solid #E2E8F0; border-radius: 6px; padding: 20px; }
.issues .card h4 { font-size: 18px; font-weight: 700; margin: 0 0 5px 0; }
.issues .card small { float: right; color: #999; }
.issues .card .pen { float: right; color: #999; text-decoration: none; font-size: 14px; cursor: pointer; }
.issues .card .watching { float: right; color: #999; text-decoration: none; font-size: 14px; }
.issues .card .watching i { margin: 0 0 0 3px; }
.issues .card .watching span { display: none; color: #10B981; }
.issues .card .watching.selected { color: #10B981; }
.issues .card .watching.selected span { display: inline; }
.issues .card p { font-size: 16px; color: #64748B; }
.issues .card p.watched { font-size: 14px; margin-top: 7px; opacity: 0.7; }
.issues .card .tag { font-size: 14px; display: inline-block; padding: 6px 8px; margin: 0 0 10px 0; border-radius: 6px; color: #475569; background: #F1F5F9; }
.issues .card.grade-1 { background: #ffe4e4; }
.issues .card.grade-1 .tag { color: #fff; background: #EF4444; }
.issues .card.grade-2 .tag { color: #EF4444; background: #ffe4e4; }
.issues .card.grade-3 .tag { color: #C2410C; background: #FFEDD5; }
.issues .ajax-load-dashboard-emergencies { opacity: 0; }
.issues .ajax-load-dashboard-incidents { opacity: 0; }
.issues .ajax-load-dashboard-alerts { opacity: 0; }

.route { scrollbar: none; overflow-x: scroll; box-sizing: border-box; float: left; width: 100%; padding: 25px 0 15px 25px; margin: 25px 0 25px 0; background: #fff; border-radius: 6px; border: 1px solid #E2E8F0; }
.route::-webkit-scrollbar { display: none; }
.route h3 { font-size: 20px; font-weight: 700; margin: 0 0 0 0; }
.route .distance { float: left; width: 100%; margin: 25px 0 0 0; width: 1100px; overflow-x: scroll; padding: 0 0 0 10px; }
.route .location { height: 90px; width: 150px; float: left; white-space: nowrap; overflow-x: visible; position: relative; }
.route .location p { font-size: 14px; font-weight: 500; }
.route .location small { box-sizing: border-box; padding-left: 12px; float: left; width: 100%; margin: 35px 0 0 0; font-size: 11px; text-align: center; text-indent: 5px; }
.route .location .dot { position: absolute; left: 0; top: 50%; transform: translateX(0) translateY(-50%); width: 20px;
  height: 20px; background: #fff; border: 1px solid #aebbce; border-radius: 100px; }
.route .location.active .dot { background: #1a73e8; border-color: #1a73e8; } 
.route .location.active .dot:before { content:''; position:relative; display:block; width:200%; height:200%; box-sizing:border-box; margin-left:-50%; margin-top:-50%; border-radius:45px; background-color:#01a4e9; animation:pulse-ring 1.5s cubic-bezier(0.215,0.61,0.355,1) infinite; } 
.route .location.active .dot:after { content:''; position:absolute; left:0; top:0; display:block; width:100%; height:100%; background-color:#1a73e8; border-radius:15px; box-shadow:0 0 8px rgba(0,0,0,.3); animation:pulse-dot 1.5s cubic-bezier(0.455,0.03,0.515,0.955) -.4s infinite; }
.route .location .line { position: absolute; top: 43px; left: 22px; width: 100%; height: 5px; background: #aebbce; }
.route .location.active .line { background: #1a73e8; }
.route .location.active .line.closing { opacity: 0.1; }
.route .location.active .line.low { opacity: 0.2; }
.route .location.active .line.medium { opacity: 0.5; }
.route .location.active .line.high { opacity: 1; }
.route.pathfinder .distance { width: 1650px; }
.route.pathfinder-plus .distance { width: 1800px; }
.route.explorer .distance { width: 1800px; }

.narrow { display: flex; justify-content: center; align-items: center; height: 100%; }
.narrow .narrow_inner { width: 600px; display: flex; flex-direction: column; gap: 20px; } 
.narrow .narrow_box { background: #fff; padding: 30px; border: 1px solid #E2E8F0; border-radius: 6px; box-sizing: border-box; }
.narrow .narrow_box .photo { width: 120px; height: 120px; overflow: hidden; border-radius: 200px; margin-right: 30px; display: inline-block; float: left; display: flex; align-items: center; justify-content: center; background: #F8FAFC; }
.narrow .narrow_box .photo i { font-size: 50px; opacity: 0.3; position: absolute; z-index: 5; }
.narrow .narrow_box .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; position: relative; z-index: 10; }
.narrow .narrow_box h2 { font-size: 28px; font-weight: 700; margin: 13px 0 0 0; }
.narrow .narrow_box h2.standalone { margin-top: 0; margin-bottom: 15px; float: left; clear: left; position: relative; }
.narrow .narrow_box p { margin: 5px 0 0 0; }
.narrow .narrow_box p.clear { clear: left; }
.narrow .narrow_box .button { line-height: 18px; margin: 29px 0 0 0; float: right; color: #1a73e8; font-weight: 700; }
.narrow .narrow_box.detail .action { float: right; line-height: 16px; margin: 0 0 0 10px; border-radius: 6px; text-decoration: none; width: auto; background: #10B981; color: #fff; font-weight: 700; border: 0; padding: 15px 18px; cursor: pointer; }
.narrow .narrow_box.detail .action:hover { background: #1e9d73; }
.narrow .narrow_box.detail .action.grey { background: #F1F5F9; color: #475569; }
.narrow .narrow_box.detail .action.grey:hover { background: #f7fbff; }
.narrow .narrow_box.detail .action.disabled { background: #ccc; }
.narrow .narrow_box.detail .action.red { background: #EF4444; color: #fff; }
.narrow .narrow_box.detail .action.red:hover { background: #d24a4a; }
.narrow .narrow_box.detail .action.working { pointer-events: none; opacity: 0.3; }
.narrow .narrow_box.detail .note:last-child { padding-bottom: 0; border-bottom: 0; margin-bottom: 0; }
.narrow .narrow_box.detail .note h5 { margin-bottom: 0; max-width: 430px; }
.narrow .narrow_box.detail .note { float: left; width: 100%; border-bottom: 1px solid #E2E8F0; padding: 0 0 20px 0; margin-bottom: 20px; }
.narrow .narrow_box.detail h3 { font-size: 20px; font-weight: 600; color: #334155; margin-bottom: 15px; float: left; clear: left; position: relative; }
.narrow .narrow_box.detail h3.margin { margin-bottom: 30px; }
.narrow .narrow_box.detail h6 { color: #64748B; font-size: 15px; line-height: 30px; float: left; clear: left; }
.narrow .narrow_box.detail p { color: #64748B; font-size: 15px; line-height: 22px; float: left; clear: left; max-width: 60%; }
.narrow .narrow_box.detail h5 { color: #334155; margin-bottom: 15px; float: left; clear: left; position: relative; }
.narrow .narrow_box.detail h5.block { background: #F8FAFC; height: 20px; width: 200px; border-radius: 6px; position: relative; overflow: hidden; }
.narrow .narrow_box.detail h5.block:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, #f1f1f1, transparent); transform: translateX(-100%); animation: shimmer 1.2s infinite; }
.narrow .narrow_box.detail h5 i { font-size: 18px; position: absolute; right: -25px; top: 1px; }
.narrow .narrow_box.detail h5.issue { font-weight: 600; color: #EF4444; }
.narrow .narrow_box.detail h5.issue i { color: #EF4444; }
.narrow .narrow_box.detail h5.none { margin-bottom: 0; }
.narrow .narrow_box.detail h5 a { color: inherit; }
.narrow .narrow_box.detail h5 a i { font-size: 12px; margin: 4px 0 0 0; }
.narrow .narrow_box.detail .edit { color: #10B981; text-decoration: none; margin-top: -10px; float: right; }
.narrow .narrow_box.detail .item { display: block; float: left; width: 100%; }
.narrow .narrow_box.detail .item.progress { padding-left: 25px; position: relative; margin-bottom: 15px; }
.narrow .narrow_box.detail .item.progress .dot { position: absolute; top: 8px; left: 0; width: 12px; height: 12px; background: #64748B; border-radius: 100px; z-index: 1; }
.narrow .narrow_box.detail .item.progress .line { position: absolute; top: 10px; left: 5px; width: 2px; height: 60px; background: #ddd; }
.narrow .narrow_box.detail .item.progress:last-child .line { display: none; }
.narrow .narrow_box.detail .item.progress h6 { font-size: 16px; margin-bottom: 5px; float: left; margin-right: 20px; }
.narrow .narrow_box.detail .item.progress h5 { font-size: 14px; color: #C2410C; background: #FFEDD5; padding: 6px 8px; border-radius: 6px; clear: none; }
.narrow .narrow_box.detail .item.progress.complete .dot { background: #10B981; }
.narrow .narrow_box.detail .item.progress.complete .line { background: #84dabd; }
.narrow .narrow_box.detail .item.progress.complete h5 { color: #10B981; background: #d7f5eb; }

.narrow .narrow_box.detail .item:last-child h5 { margin-bottom: 5px; }
.narrow .narrow_box h4 { font-size: 20px; font-weight: 600; margin: 5px 0; }
.narrow .narrow_box p.intro { margin: 10px 0 30px 0; max-width: 400px; }
.narrow .narrow_box p.no_margin { margin-bottom: 0; }
.narrow .narrow_box .department { float: left; width: 100%; margin: 0 0 20px 0; }
.narrow .narrow_box .department.disable { opacity: 0.5; pointer-events: none; }
.narrow .narrow_box .department.box { border: 1px solid #E2E8F0; background: #F8FAFC; padding: 30px; border-radius: 6px; box-sizing: border-box; }
.narrow .narrow_box .department h4 { font-size: 18px; margin-bottom: 5px; }
.narrow .narrow_box .department.box h4 { margin-top: 0; }
.narrow .narrow_box .heading { width: 100%; float: left; margin: 40px 0 20px 0; font-weight: 600; }
.narrow .narrow_box .heading:first-child { margin-top: 15px; }
.narrow .narrow_box .tags { margin: 10px 0 0 0; float: left; width: 100%; }
.narrow .narrow_box .tag { cursor: pointer; float: left; padding: 8px 10px; margin: 5px 10px 5px 0; border-radius: 6px; color: #475569; background: #F1F5F9; border: 1px solid #E2E8F0; }
.narrow .narrow_box .tag.green { color: #fff; background: #10B981; border-color: #10B981; }
.narrow .narrow_box .save { text-decoration: none; float: right; padding: 15px 18px; margin: 0 0 0 50px; border-radius: 6px; background: #10B981; color: #fff; font-weight: 700; }
.narrow .narrow_box .save.waiting { color: #475569; background: #F1F5F9; }
.narrow .narrow_box p.intro.alt { max-width: none; margin: 15px 0 0 0; }
.narrow .narrow_box small { border: 1px solid #E2E8F0; margin: 20px 0 0 0; max-width: 800px; line-height: 26px; padding: 10px 15px; border-radius: 6px; background: #fff; display: inline-block; }
.narrow .narrow_box .video_container { position: relative; margin: 30px 0 0 0; }
.narrow .narrow_box .video_container video { width: 100%; height: auto; border-radius: 6px; }
.narrow .narrow_box .video_container i { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 150px; opacity: 0.75; color: #fff; }

/* Responsive */

@media only screen and (max-width: 1150px) {
	body { width: 100%; font-size: 14px; }
	input, select, .log_in p.bottom { font-size: 14px; }
	.toast { padding: 15px; }
	.log_in { top: 30px; transform: translate(-50%, 0); }
	.dialog { top: 30px; transform: translate(-50%, 0); max-width: 65%; }
	.header_bar { padding-left: 25px; padding-right: 25px; text-align: center; }
	.header_bar .mobile_wrapper { max-width: 400px; display: inline-block; }
	.header_bar p { margin-top: 5px; text-align: left; float: left; }
	.header_bar p.name { border: none; padding: 0; font-weight: normal; }
	.header_bar .right { width: 100%; }
	.header_bar .right .links { margin-top: 0; }
	.header_bar .right .links span { display: none; }
	.container { width: 100%; padding-left: 25px; padding-right: 25px; padding-top: 165px; box-sizing: border-box; }
	.narrow .narrow_inner { max-width: 500px; width: 100%; }
	.container h1 { font-size: 24px; }
	.container .search { margin-top: 25px; width: 100%; }
	.container .search input { font-size: 14px; }
	.container .filter { display: none; }
	.container .counter { padding: 0; text-align: right; width: 100%; margin-top: 20px; }
	.container .row .column.width-a { flex: 1; }
	.container .row .column.width-b { flex: 1; }
	.container .row .column.width-c { flex: 1; }
	.container .row .column.hide { display: none; }
	.container .row.top .column.tags { text-indent: 0; }
	.container .row p { margin: 2px; padding: 0; }
	.container .row p.tag.outline { border: 0; display: inline; }
	.container .row p.tag.outline::after { content: ",\00a0"; }
	.container .row p.tag.outline:last-child::after { content: none; }
	.container .row p.tag { background: none; }
	.container .row p.tag.button { background: none; text-decoration: underline; color: inherit; }
	.container .row p.tag.button:hover { background: none; }
	.container .row p.tag.orange { background: none; }
	.container .tabs { overflow-x: scroll; white-space: nowrap; -webkit-overflow-scrolling: touch; display: flex; margin-top: 20px; }
	.container .tabs a { padding-left: 13px; padding-right: 15px; text-align: center; }
	.container .tabs a i { font-size: 18px; margin: 0 0 7px 0; float: none; display: block; text-align: center; width: 100%; }
	.container .tabs::-webkit-scrollbar { display: none; }
	.container .import { display: none; }
	.narrow .narrow_box { padding: 25px; }
	.narrow .narrow_box .photo { width: 75px; height: 75px; margin-right: 20px; margin-bottom: 0; }
	.narrow .narrow_box h2 { margin-top: 0; font-size: 20px; }
	.narrow .narrow_box.detail h6 { font-size: 13px; line-height: 24px; }
	.narrow .narrow_box h4 { font-size: 18px; }
	.narrow .narrow_box p.intro { margin-bottom: 25px; }
	.narrow .narrow_box .department.box { padding: 20px; }
	.narrow .narrow_box .department h4 { margin-bottom: 0; }
	.narrow .narrow_box .department.box h4 { font-size: 16px; }
	.sidebar { position: fixed; top: 85px; width: 100%; left: 0; height: auto; padding: 12px 50px 12px 0; border: 0; border-bottom: 1px solid #E2E8F0; overflow-x: scroll; white-space: nowrap; -webkit-overflow-scrolling: touch; display: flex; }
	.sidebar::-webkit-scrollbar { display: none; }
	.sidebar .item { float: left; margin: 0 10px 0 20px; padding: 0; font-weight: 700; }
	.sidebar .item.active { background: #fff; color: #1a73e8; }
	.sidebar .item.sub { display: none; }
	.sidebar .item i { float: none; display: inline; margin: 0 5px 0 0; font-size: 14px; }
	.sidebar .item p { display: inline; }
	.sidebar .fade-left, .sidebar .fade-right { position: fixed; top: 90px; width: 20px; height: 30px; pointer-events: none; z-index: 2; }
	.sidebar .fade-left { left: 0; background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0)); }
	.sidebar .fade-right { width: 80px; right: 0; background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0)); }
	.sidebar h3 { display: none; }
	.report .columns { flex-direction: column; }
}
