/*
	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 */
:root { --brand: #36277D; --brand-dark: #291D62; --brand-soft: #EEEAF8; --brand-soft-hover: #E3DDF4; --brand-border: #AFA4D5; --brand-pulse: #6C5BB8; }
body { font-family: 'Nunito Sans'; background: #F8FAFC; font-size: 16px; line-height: 1.4; color: #111; }
html.dialog-open, body.dialog-open { overflow: hidden; }
body::before { content: ""; position: fixed; z-index: 89; inset: 0; background: rgba(226,232,240,0.68); opacity: 0; visibility: hidden; backdrop-filter: grayscale(100%) blur(1px); -webkit-backdrop-filter: grayscale(100%) blur(1px); pointer-events: none; transition: opacity 0.2s ease, visibility 0s linear 0.2s; }
body.dialog-open::before { opacity: 1; visibility: visible; transition: opacity 0.2s ease; }
body[class^="log-in"], body[class^="register"] { min-height: 100vh; padding: 40px 20px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #F8FAFC 0%, var(--brand-soft) 100%); }
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; margin: -5px 0 30px 0; }
.toast.response { display: none; color: #EF4444; background: #ffe4e4; }
.toast.green { color: #10B981; background: #d7f5eb; }
.toast.welcome { color: #fff; background: var(--brand); 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; 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: var(--brand); color: #fff; padding: 15px 25px; text-decoration: none; text-align: center; width: 80%; }
.pop.green { background: #10B981; }
.pop.blue { background: var(--brand); }
.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)}}

.page-loading { display: flex; position: fixed; z-index: 1000; inset: 0; box-sizing: border-box; padding: 30px; background: #F8FAFC; align-items: center; justify-content: center; flex-direction: column; text-align: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s ease, visibility 0s linear 0.25s; }
.page-loading.active { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 0.25s ease; }
.page-loading .loader { width: 30px; border: 4px solid #d8d8d8; border-top-color: #111; margin-bottom: 30px; animation: page-loading-spinner 0.8s linear infinite; }
.page-loading p { margin: 0; color: #111; font-size: 20px; font-weight: 600; }
@keyframes page-loading-spinner { to { transform: rotate(360deg); } }

/* 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; 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; inset: 0; background: transparent; cursor: default; }
.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%); width: min(440px, calc(100vw - 40px)); max-height: calc(100vh - 40px); overflow-y: auto; box-sizing: border-box; padding: 32px; background: #fff; border: 1px solid #CBD5E1; border-top: 3px solid var(--brand); box-shadow: 0 20px 50px rgba(15,23,42,0.22); text-align: left; }
.dialog p { margin: 0 0 24px 0; color: #475569; font-size: 15px; line-height: 1.5; }
.dialog h3 { margin: 0 0 10px 0; color: #1E293B; font-weight: 750; font-size: 22px; line-height: 28px; }
.dialog h3 { padding-right: 40px; }
.dialog .dialog-close { width: 32px; height: 32px; position: absolute; top: 18px; right: 18px; display: flex; align-items: center; justify-content: center; color: #64748B; background: #F8FAFC; border: 1px solid #CBD5E1; font-family: inherit; font-size: 22px; font-weight: 400; line-height: 1; cursor: pointer; }
.dialog .dialog-close:hover { color: var(--brand); background: var(--brand-soft); border-color: var(--brand-border); }
.dialog label { display: block; margin: 0 0 7px 0; width: 100%; color: #475569; font-size: 13px; font-weight: 700; text-align: left; }
.dialog .hint { padding: 20px; color: #fff; margin: -5px 0 20px 0; color: #EF4444; background: #ffe4e4; }
.dialog small { margin: 0 0 20px 0; display: block; background: #F8FAFC; padding: 20px; }
.dialog input, .dialog select, .dialog textarea { display: inline-block; margin: 0 0 18px 0; width: 100%; border: 1px solid #CBD5E1; background: #fff; padding: 12px; box-sizing: border-box; }
.dialog input:focus, .dialog select:focus, .dialog textarea:focus { outline: 0; border-color: var(--brand); box-shadow: inset 3px 0 0 var(--brand-soft); }
.dialog input[readonly] { color: #64748B; background: #F1F5F9; }
.dialog .or { margin-bottom: 20px; display: block; width: 100%; background: #f1f1f1; padding: 10px 0; text-align: center; }
.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 { display: flex; justify-content: flex-end; gap: 10px; }
.dialog .button { line-height: 16px; margin: 0; text-decoration: none; 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; 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; }
.dialog.message .dialog-close { color: #fff; background: #1E293B; border-color: #475569; }
.dialog.message .dialog-close:hover { color: #fff; background: #334155; border-color: #64748B; }

/* Log In */
.log_in { width: 100%; max-width: 480px; max-height: calc(100vh - 80px); overflow-y: auto; box-sizing: border-box; padding: 40px; background: #fff; border: 1px solid #CBD5E1; border-top: 3px solid var(--brand); box-shadow: 0 18px 45px rgba(15,23,42,0.12); text-align: left; }
.log_in img { width: 82px; margin: 0 0 20px 24px; float: right; }
.log_in h1 { color: #1E293B; font-weight: 750; font-size: 26px; line-height: 32px; margin: 0 0 14px 0; }
.log_in h1 span { font-weight: 900; }
.log_in .alert { line-height: 18px; margin: 0 0 30px 0; background: #ed3f23; padding: 10px; color: #fff; font-weight: 700; font-size: 12px; }
.log_in p { color: #475569; font-size: 15px; line-height: 23px; margin: 0 0 28px 0; }
.log_in p.auth-step { margin: 0 0 8px 0; color: var(--brand); font-size: 12px; font-weight: 800; line-height: 16px; }
.log_in p.bottom { margin-bottom: 0; font-size: 15px; margin: 25px 0 0 0; }
.log_in p.bottom a { color: var(--brand); font-weight: 700; }
.log_in p.bottom.second { margin-top: 5px; }
.log_in label { display: block; margin: 0 0 7px 0; width: 100%; color: #475569; font-size: 13px; font-weight: 700; text-align: left; }
.log_in label a { float: right; color: var(--brand); font-size: 13px; text-decoration: none; border-bottom: 1px solid var(--brand-border); }
.log_in label a:hover { color: var(--brand-dark); border-bottom-color: var(--brand); }
.log_in input, .log_in select { display: inline-block; margin: 0 0 18px 0; width: 100%; border: 1px solid #CBD5E1; background: #fff; padding: 12px; box-sizing: border-box; }
.log_in input:focus, .log_in select:focus { outline: 0; border-color: var(--brand); box-shadow: inset 3px 0 0 var(--brand-soft); }
.log_in input[readonly] { color: #64748B; background: #F1F5F9; }
.log_in input[name="code"], .log_in input[name="sms"] { font-size: 20px; font-weight: 700; letter-spacing: 0.25em; text-align: center; }
.log_in .auth-code-destination { margin: -8px 0 24px 0; padding: 14px 16px; display: flex; align-items: center; gap: 14px; background: var(--brand-soft); border: 1px solid var(--brand-border); border-left: 3px solid var(--brand); }
.log_in .auth-code-destination i { width: 24px; flex: 0 0 24px; color: var(--brand); font-size: 20px; text-align: center; }
.log_in .auth-code-destination strong, .log_in .auth-code-destination span { display: block; }
.log_in .auth-code-destination strong { margin-bottom: 2px; color: #1E293B; font-size: 14px; line-height: 19px; }
.log_in .auth-code-destination span { color: #475569; font-size: 13px; line-height: 18px; overflow-wrap: anywhere; }
.log_in .button { background: var(--brand); color: #fff; font-weight: 700; border: 0; padding: 15px 0; cursor: pointer; margin-bottom: 0; }
.log_in .button:hover { background: var(--brand-dark); }
.log_in .button:disabled { color: #94A3B8; background: #E2E8F0; }
.log_in .toast { margin: 0 0 24px 0; }

/* Header Bar */
.header_bar { height: 72px; background: #fff; border-bottom: 3px solid var(--brand); box-sizing: border-box; z-index: 20; position: fixed; top: 0; left: 0; width: 100%; display: flex; align-items: stretch; font-weight: 600; }
.header_bar .identity { display: flex; align-items: stretch; }
.header_bar .product { width: 225px; box-sizing: border-box; display: flex; align-items: center; margin: 0; padding: 0 22px; color: #0F172A; font-size: 17px; white-space: nowrap; }
.header_bar .product strong { margin-left: 5px; color: var(--brand); font-weight: 900; }
.header_bar .right { margin-left: auto; padding-right: 22px; display: flex; align-items: stretch; }
.header_bar p.name { margin: 14px 0 14px 16px; padding: 0 14px; display: flex; align-items: center; color: #475569; background: #F8FAFC; border: 1px solid #CBD5E1; font-size: 14px; }
.header_bar .right .links { height: 100%; display: flex; align-items: stretch; }
.header_bar a { box-sizing: border-box; padding: 0 18px; display: flex; align-items: center; justify-content: center; gap: 7px; color: #475569; text-decoration: none; }
.header_bar a:hover { color: var(--brand); background: var(--brand-soft); }
.header_bar a.log-out { height: 40px; margin: auto 0 auto 8px; padding: 0 16px; color: var(--brand); background: #fff; border: 1px solid var(--brand-border); font-size: 14px; font-weight: 700; }
.header_bar a.log-out:hover { color: var(--brand-dark); background: var(--brand-soft); }
.header_bar .header-role-switcher { margin: auto 0; position: relative; }
.header_bar .header-current-role { height: 40px; max-width: 180px; box-sizing: border-box; margin: auto 0; padding: 0 12px; display: flex; align-items: center; overflow: hidden; color: #475569; background: #F8FAFC; border: 1px solid #CBD5E1; font-size: 14px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.header_bar .role-dropdown-toggle { height: 40px; max-width: 180px; padding: 0 12px; display: flex; align-items: center; gap: 10px; color: #334155; background: #fff; border: 1px solid #CBD5E1; font-size: 14px; font-weight: 700; cursor: pointer; }
.header_bar .role-dropdown-toggle span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.header_bar .role-dropdown-toggle i { color: #94A3B8; font-size: 10px; }
.header_bar .role-dropdown-toggle:hover, .header_bar .role-dropdown-toggle[aria-expanded="true"] { color: var(--brand); border-color: var(--brand-border); }
.header_bar .role-dropdown-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.header_bar .role-dropdown-menu { width: 250px; position: absolute; top: calc(100% + 14px); right: 0; padding: 18px; box-sizing: border-box; background: #fff; border: 1px solid #CBD5E1; border-top: 3px solid var(--brand); box-shadow: 0 12px 30px rgba(15,23,42,0.14); }
.header_bar .role-dropdown-menu h3 { margin: 0 0 12px 0; color: #0F172A; font-size: 15px; font-weight: 700; }
.header_bar .role-options { margin-bottom: 14px; border-top: 1px solid #E2E8F0; }
.header_bar .role-option { padding: 10px; display: flex; align-items: center; gap: 9px; color: #475569; border-right: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; border-left: 3px solid #E2E8F0; font-size: 13px; cursor: pointer; }
.header_bar .role-option input { position: absolute; opacity: 0; pointer-events: none; }
.header_bar .role-option-marker { width: 10px; height: 10px; box-sizing: border-box; border: 1px solid #94A3B8; }
.header_bar .role-option:hover { color: #0F172A; background: #F8FAFC; }
.header_bar .role-option.selected { color: var(--brand); background: var(--brand-soft); border-left-color: var(--brand); font-weight: 700; }
.header_bar .role-option.selected .role-option-marker { background: var(--brand); border-color: var(--brand); box-shadow: inset 0 0 0 2px #fff; }
.header_bar .role-dropdown-menu .change-role { width: 100%; padding: 11px 14px; color: #fff; background: var(--brand); border: 0; font-weight: 700; cursor: pointer; }
.header_bar .role-dropdown-menu .change-role:hover { background: var(--brand-dark); }
.header_bar .role-dropdown-menu .change-role:disabled { color: #94A3B8; background: #E2E8F0; cursor: default; }
.header_bar .right .links i { color: inherit; font-size: 12px; }

/* 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; box-sizing: border-box; padding: 90px 10px 25px 10px; font-weight: 600; }
.sidebar h3 { padding: 0 12px; color: #64748B; margin: 28px 2px 10px 2px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; line-height: 1; }
.sidebar h3::after { content: ""; height: 1px; flex: 1; background: #D8D2EA; }
.sidebar h3:first-of-type { margin-top: 20px; }
.sidebar .item { color: #334155; text-decoration: none; padding: 9px 12px; margin: 2px 0; display: block; transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease; }
.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:not(.disabled):hover { color: #0F172A; background: #F1F5F9; }
.sidebar .item.active { color: var(--brand); background: var(--brand-soft); box-shadow: inset 3px 0 0 var(--brand); }
.sidebar .item.overview { color: var(--brand); background: #fff; border: 1px solid var(--brand-border); font-weight: 750; }
.sidebar .item.overview:not(.disabled):hover { color: var(--brand-dark); background: var(--brand-soft-hover); }
.sidebar .item.overview.active { color: #fff; background: var(--brand); border-color: var(--brand); box-shadow: none; }
.sidebar .item.disabled { pointer-events: none; opacity: 0.25; }
.sidebar .item.sub { padding-left: 42px; font-weight: normal; padding-top: 8px; padding-bottom: 8px; }

/* Container */
.container { padding: 130px 50px 50px 275px; }
.container h1 { font-size: 27px; font-weight: 750; line-height: 1.25; margin: 0 0 12px 0; width: 50%; }
.container .action { text-decoration: none; background: var(--brand); color: #fff; font-weight: 700; padding: 15px 20px; float: right; box-sizing: border-box; }
.container .action:hover { background: var(--brand-dark); }
.container .action.gap { margin-left: 10px; }
.container .action.blue { background: var(--brand); }
.container .action.blue:hover { background: var(--brand-dark); }

.container .intro { max-width: 760px; padding-left: 14px; color: #475569; border-left: 2px solid #D8D2EA; font-size: 15px; line-height: 1.55; }
.container .intro.cache-note { width: fit-content; max-width: 800px; box-sizing: border-box; font-size: 14px; color: #475569; background: var(--brand-soft); border-left: 3px solid var(--brand); padding: 18px 20px 18px 52px; margin: 24px 0 0 0; position: relative; }
.container .intro.cache-note i { font-size: 20px; position: absolute; left: 20px; top: 50%; transform: translateY(-50%); }
.container .intro.cache-note .link { color: inherit; }
.container .intro.cache-note form { display: inline; }
.container .intro.cache-note button.link { margin: 0; padding: 0; color: var(--brand); background: none; border: 0; border-bottom: 1px solid var(--brand-border); font: inherit; font-weight: 700; line-height: inherit; cursor: pointer; }
.container .intro.cache-note button.link:hover { color: var(--brand-dark); border-bottom-color: var(--brand); }

.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: 24px; position: relative; width: 300px; display: inline-block; vertical-align: top; }
.container .search input { width: 100%; height: 50px; border: 1px solid #CBD5E1; background: #fff; padding: 0 15px 0 40px; box-sizing: border-box; }
.container .search input:focus { border-color: #94A3B8; box-shadow: none; }
.container .search i { position: absolute; top: 18px; left: 15px; color: #94A3B8; }

/* Filter */
.container .filter { margin: 24px 0 0 6px; position: relative; width: 300px; display: inline-block; vertical-align: top; }
.container .filter select { width: 100%; border: 1px solid #CBD5E1; background: #fff; padding: 0 15px; box-sizing: border-box; height: 50px; }
.container .filter select:focus { border-color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand); }

/* Counter */
.container .counter { display: inline-block; margin-top: 24px; padding: 15px 0 0 24px; color: #64748B; font-size: 14px; vertical-align: top; }
.container .counter span { color: #0F172A; font-weight: 700; }

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

/* Tabs */
.container .tabs { margin: 28px 0 0 0; border-bottom: 1px solid #CBD5E1; float: left; width: 100%; }
.container .tabs a { padding: 14px 18px; float: left; border-bottom: 3px solid transparent; color: #64748B; text-decoration: none; }
.container .tabs a:hover { color: #0F172A; background: #F1F5F9; }
.container .tabs a.active { color: var(--brand); border-bottom-color: var(--brand); background: none; }
.container .tabs a.active.red { color: #EF4444; border-bottom-color: #EF4444; background: none; }
.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: 24px; display: flex; flex-direction: column; width: 100%; border-top: 3px solid var(--brand); }
.container .row { display: flex; color: inherit; text-decoration: none; }
.container .row:hover .column { background: #FAF9FD; }
.container .row.button { cursor: pointer; }
.container .row.button:hover .column { background: #FAF9FD; }
.container .row .column { flex: 1; display: flex; align-items: center; flex-wrap: wrap; padding: 14px 15px; box-sizing: border-box; border-left: 1px solid #E2E8F0; }
.container .row .column:last-child { border-right: 1px solid #E2E8F0; }
.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 { color: #475569; background: #F8FAFC; border-bottom: 1px solid #CBD5E1; font-size: 14px; font-weight: 700; }
.container .row.top .column.sort { cursor: pointer; user-select: none; }
.container .row.top .column.sort::after { content: "\2195"; margin-left: auto; padding-left: 8px; color: #94A3B8; font-size: 13px; font-weight: 600; }
.container .row.top .column.sort:hover, .container .row.top .column.sort:focus { color: var(--brand); background: var(--brand-soft); }
.container .row.top .column.sort:focus { outline: none; box-shadow: inset 0 0 0 1px var(--brand-border); }
.container .row.top .column.sort[aria-sort="ascending"]::after { content: "\2191"; color: var(--brand); }
.container .row.top .column.sort[aria-sort="descending"]::after { content: "\2193"; color: var(--brand); }
.container .row.top .column.tags { text-indent: 0; }
.container .row .column.tags { gap: 6px; }
.container .row.normal { background: #fff; border-bottom: 1px solid #E2E8F0; font-weight: normal; }
.container .row.normal .column { padding: 14px 15px; }
.container .row p { float: left; padding: 8px 10px; margin: 5px 10px 5px 0; border: 1px solid transparent; }
.container .row .column > p:not(.tag) { float: none; padding: 0; margin: 0; border: 0; }
.container .row p.tag { float: left; display: inline-block; margin: 0; padding: 4px 7px; border: 1px solid #A7F3D0; color: #047857; background: #ECFDF5; font-size: 12px; font-weight: 700; line-height: 16px; }
.container .row p.tag.button { background: var(--brand); border-color: var(--brand); color: #fff; }
.container .row p.tag.grey { color: #475569; background: #F8FAFC; border-color: #CBD5E1; }
.container .row p.tag.red { color: #B91C1C; background: #FEF2F2; border-color: #FECACA; }
.container .row p.tag.orange { color: #9A3412; background: #FFF7ED; border-color: #FED7AA; }
.container .row p.tag.outline { border-color: #CBD5E1; color: #334155; background: #fff; font-weight: 600; }
.container .row p.tag.more { color: var(--brand); background: var(--brand-soft); border-color: var(--brand-border); }
.container .row .row-action { padding: 1px 0 2px 0; display: inline-block; color: var(--brand); border-bottom: 1px solid var(--brand-border); font-size: 14px; font-weight: 700; line-height: 20px; }
.container .row:hover .row-action { color: var(--brand-dark); border-bottom-color: var(--brand); }
.container .row p.tag.button:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.container .row p.tag.orange.button:hover { background: #FFEDD5; }

.report > h1 { width: 100%; }
.report > .intro { margin: 0; }
.report .columns { display: flex; gap: 20px; align-items: flex-start; }
.report .column { flex: 1; margin: 30px 0 0 0; width: 100%; background: #fff; box-sizing: border-box; border: 1px solid #CBD5E1; border-top: 3px solid var(--brand); font-weight: normal; }
.report .column .table { width: 100%; }
.report .column h3 { font-size: 17px; font-weight: 700; margin: 0; padding: 18px 20px; border-bottom: 1px solid #CBD5E1; }
.report .column .table.wide .line { grid-template-columns: repeat(12, 1fr); }
.report .column .table.wider .line { grid-template-columns: repeat(13, 1fr); }
.report .column .table.col-8 .line { grid-template-columns: repeat(8, 1fr); }
.report .column .table.col-9 .line { grid-template-columns: repeat(9, 1fr); }
.report .column .table.col-10 .line { grid-template-columns: repeat(10, 1fr); }
.report .column .table.col-11 .line { grid-template-columns: repeat(11, 1fr); }
.report .column .table.col-12 .line { grid-template-columns: repeat(12, 1fr); }
.report .column .table.col-13 .line { grid-template-columns: repeat(13, 1fr); }
.report .column .table.col-14 .line { grid-template-columns: repeat(14, 1fr); }
.report .column .table.col-15 .line { grid-template-columns: repeat(15, 1fr); }
.report .column .table.col-16 .line { grid-template-columns: repeat(16, 1fr); }
.report .column .table.col-17 .line { grid-template-columns: repeat(17, 1fr); }
.report .column .table.col-18 .line { grid-template-columns: repeat(18, 1fr); }
.report .column .table.col-19 .line { grid-template-columns: repeat(19, 1fr); }
.report .column .line { display: grid; grid-template-columns: repeat(3, 1fr); }
.report .column .line p { box-sizing: border-box; width: 100%; min-height: 42px; display: flex; align-items: center; border-right: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0; padding: 11px 12px; font-size: 14px; }
.report .column .line p:last-child { border-right: 0; }
.report .column .line p a { color: inherit; position: relative; text-decoration: none; }
.report .column .line p a i { color: #111; position: absolute; font-size: 12px; right: -22px; top: 1px;  margin: 2px 0 0 0; }

.report .column .line.header p { color: #475569; font-size: 14px; font-weight: 700; background: #F8FAFC; padding-top: 12px; padding-bottom: 10px; }
.report .column .line.header p.sort { cursor: pointer; user-select: none; }
.report .column .line.header p.sort::after { content: "\2195"; margin-left: auto; padding-left: 8px; color: #94A3B8; font-size: 13px; font-weight: 600; }
.report .column .line.header p.sort:hover, .report .column .line.header p.sort:focus { color: var(--brand); background: var(--brand-soft); }
.report .column .line.header p.sort:focus { outline: none; box-shadow: inset 0 0 0 1px var(--brand-border); }
.report .column .line.header p.sort[aria-sort="ascending"]::after { content: "\2191"; color: var(--brand); }
.report .column .line.header p.sort[aria-sort="descending"]::after { content: "\2193"; color: var(--brand); }
.report .column .line:last-child p { border-bottom: 0; }
.report .column .line i { color: #10B981; margin-left: 5px; }
.report .column .line p.off-route { background: #E2E8F0; color: #8b9198; }
.report .column .line p.missed { background: #fbe4db; color: #C2410C; }

.report .column .table.medium-small-large-large-small .line { grid-template-columns: 1fr 0.6fr 2fr 2fr 0.6fr; }
.report .column .table.medium-small-large-small .line { grid-template-columns: 1fr 0.6fr 2fr 0.6fr; }

.report .column.girlguiding h3 { color: #F050A0; }
.report .column.girlguiding .line.header p { background: #ffd9ec; }

.report.single-rows .columns { display: grid; grid-template-columns: repeat(1, 1fr); }
.report.single-rows .column { flex: none; margin-top: 0; }
.report.single-rows .column:first-child { margin-top: 30px; }
.report.single-rows .column .line { grid-template-columns: repeat(4, 1fr); }

.issues .column { min-height: calc(100vh - 300px); position: relative; padding: 20px; }
.issues .column h3 { margin: 0 -20px 20px -20px; padding: 0 20px 18px 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; 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: 12px; font-weight: 700; line-height: 16px; display: inline-block; padding: 4px 7px; margin: 0 0 10px 0; 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: 30px 0 30px 30px; margin: 25px 0 25px 0; background: #fff; border: 1px solid #E2E8F0; }
.route::-webkit-scrollbar { display: none; }
.route h3 { font-size: 20px; font-weight: 600; color: #334155; margin-bottom: 30px; float: left; clear: left; position: relative; }
.route .distance { float: left; width: 100%; width: 1100px; overflow-x: scroll; padding: 0 0 0 10px; }
.route .distance .inner { height: 70px; }
.route .distance .inner:first-child { margin-bottom: 80px; }
.route .location { height: 70px; width: 165px; float: left; white-space: nowrap; overflow-x: visible; position: relative; }
.route .location p { font-size: 15px; font-weight: 600; }
.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: 34px; width: 20px; height: 20px; background: #fff; border: 1px solid #aebbce; border-radius: 100px; z-index: 1; }
.route .location.active .dot { background: var(--brand); border-color: var(--brand); }
.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:var(--brand-pulse); 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:var(--brand); 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: var(--brand); }
.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 .location .text { position: absolute; top: 25px; left: 57px; padding: 10px; background: #fff; font-size: 15px; }
.route.pathfinder .distance { width: 1485px; }
.route.pathfinder-plus .distance { width: 1800px; }
.route.explorer .distance { width: 1800px; }
.route .location.role-11 .line { transform: rotate(90deg); top: auto; bottom: 99px; left: -64px; width: 150px; }
.route .location.role-11 p { margin-left: -45px; }
.route .location.role-11 .text { top: -50px; left: -25px; }
.route .location.role-12 { display: none; }

.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 #CBD5E1; box-sizing: border-box; }
.narrow .narrow_box.profile { border-top: 3px solid var(--brand); display: flow-root; }
.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: 26px; font-weight: 750; margin: 13px 0 0 0; color: #1E293B; }
.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 p a { color: #64748B; }
.narrow .narrow_box .button { line-height: 18px; margin: 29px 0 0 0; float: right; color: var(--brand); font-weight: 700; }
.narrow .narrow_box.detail .action { float: right; line-height: 16px; margin: 0 0 0 10px; 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 { margin: 1px 0 0 16px; padding: 0 0 2px 0; color: var(--brand); background: none; border-bottom: 1px solid var(--brand-border); font-size: 14px; line-height: 20px; }
.narrow .narrow_box.detail .action.grey:hover { color: var(--brand-dark); background: none; border-bottom-color: var(--brand); }
.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: 17px; font-weight: 700; color: #1E293B; margin-bottom: 18px; float: left; clear: left; position: relative; }
.narrow .narrow_box.detail h3.margin { margin-bottom: 30px; }
.narrow .narrow_box.detail h6 { color: #64748B; font-size: 13px; font-weight: 600; line-height: 20px; 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.no_margin { margin-bottom: 0; }
.narrow .narrow_box.detail h5.block { background: #F8FAFC; height: 20px; width: 200px; 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:not(.progress):not(.note):not(.hide):not(:has(> h3)) { padding: 12px 0; border-top: 1px solid #E2E8F0; box-sizing: border-box; }
.narrow .narrow_box.detail > .item:not(.progress):not(.note):not(.hide):not(:has(> h3)) h5 { margin-bottom: 0; }
.narrow .narrow_box.detail .item.hide { display: none; }
.narrow .narrow_box.detail .item.progress { padding-left: 25px; position: relative; height: 100px; }
.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: 100px; border-left: 2px solid #ddd; }
.narrow .narrow_box.detail .item.progress:last-child .line { display: none; }
.narrow .narrow_box.detail .item.progress h6 { font-size: 16px; float: left; margin-right: 20px; }
.narrow .narrow_box.detail .item.progress h5 { font-size: 14px; color: #C2410C; background: #FFEDD5; padding: 6px 8px; clear: none; }
.narrow .narrow_box.detail .item.progress h5.extra { border: 1px solid var(--brand); color: var(--brand); padding: 5px 8px; background: none; margin-left: 10px; }
.narrow .narrow_box.detail .item.progress.complete .dot { background: #10B981; }
.narrow .narrow_box.detail .item.progress.complete .line { border-left-color: #84dabd; }
.narrow .narrow_box.detail .item.progress.complete h5 { color: #10B981; background: #d7f5eb; }
.narrow .narrow_box.detail .item.progress.complete h5.extra { background: #10B981; border-color: #10B981; color: #fff; }
.narrow .narrow_box.detail .item.progress.missed h5 { background: #C2410C; color: #fff; }
.narrow .narrow_box.detail .item.progress.missed .dot { background: #C2410C; }
.narrow .narrow_box.detail .item.progress.missed .line { border-left-style: dashed; }
.narrow .narrow_box.detail .item.progress:has(+ .item.progress.missed) .line { border-left-style: dashed; border-left-color: #ddd; }
.narrow .narrow_box.detail .item.progress span.distance { position: absolute; top: -51px; left: 25px; font-size: 13px; padding: 3px 8px 2px 8px; background: #eee; color: #64748B; }
.narrow .narrow_box.detail .item.progress span.vehicle { position: absolute; top: 44px; left: -12px; background: #fff; color: var(--brand); padding: 7px 5px 6px 5px; border-radius: 100%; z-index: 1; font-size: 21px; line-height: 17px; }
.narrow .narrow_box.detail .item.progress span.vehicle span { display: block; position: absolute; top: 3px; right: 50px; background: var(--brand); color: #fff; font-size: 14px; padding: 7px 5px 7px 10px; white-space: nowrap; }
.narrow .narrow_box.detail .item.progress span.vehicle:hover span { display: block; }
.narrow .narrow_box.detail .item.progress span.vehicle span::after { content: ""; position: absolute; top: 50%; right: -15px; transform: translateY(-50%); width: 0; height: 0; border-top: 15px solid transparent; border-bottom: 15px solid transparent; border-left: 15px solid var(--brand); }
.narrow .narrow_box.detail .item.progress span.vehicle.first-aid i { color: #C2410C; }
.narrow .narrow_box.detail .item.progress span.vehicle.first-aid span { background: #C2410C; color: #FFEDD5; }
.narrow .narrow_box.detail .item.progress span.vehicle.first-aid span::after { border-left-color: #C2410C; }
.narrow .narrow_box.detail .item.progress:last-child { height: auto; }

.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; 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: 6px 8px; margin: 4px 6px 4px 0; color: #475569; background: #F8FAFC; border: 1px solid #CBD5E1; font-size: 13px; font-weight: 600; line-height: 16px; }
.narrow .narrow_box .tag.green { color: #fff; background: #10B981; border-color: #10B981; }
.narrow .narrow_box.roles { display: flow-root; }
.narrow .narrow_box.roles .department.box { margin-bottom: 12px; padding: 18px; background: #fff; border-color: #CBD5E1; }
.narrow .narrow_box.roles .department.box h4 { margin-bottom: 12px; color: #1E293B; font-size: 15px; font-weight: 700; }
.narrow .narrow_box.roles .tags.selectable { margin: 0; display: grid; grid-template-columns: 1fr; gap: 7px; }
.narrow .narrow_box.roles .tags.selectable .heading { grid-column: 1 / -1; width: auto; margin: 12px 0 2px 0; padding-top: 12px; float: none; color: #64748B; border-top: 1px solid #E2E8F0; font-size: 12px; font-weight: 700; }
.narrow .narrow_box.roles .tags.selectable .heading:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.narrow .narrow_box.roles .tags.selectable .tag { min-height: 38px; margin: 0; padding: 8px 9px; display: flex; align-items: center; float: none; box-sizing: border-box; color: #475569; background: #fff; border-color: #E2E8F0; border-left-width: 3px; }
.narrow .narrow_box.roles .tags.selectable .tag::before { content: ""; width: 10px; height: 10px; margin-right: 8px; flex: 0 0 10px; box-sizing: border-box; border: 1px solid #94A3B8; }
.narrow .narrow_box.roles .tags.selectable .tag:hover { color: #0F172A; background: #F8FAFC; }
.narrow .narrow_box.roles .tags.selectable .tag.green { color: var(--brand); background: var(--brand-soft); border-color: #E2E8F0; border-left-color: var(--brand); font-weight: 700; }
.narrow .narrow_box.roles .tags.selectable .tag.green::before { background: var(--brand); border-color: var(--brand); box-shadow: inset 0 0 0 2px #fff; }
.narrow .narrow_box .save { text-decoration: none; float: right; padding: 15px 18px; margin: 0 0 0 50px; 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; 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; }
.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; }
	body[class^="log-in"], body[class^="register"] { padding: 20px 15px; align-items: flex-start; }
	.log_in { max-height: none; padding: 28px 24px; }
	.log_in img { width: 65px; margin-left: 18px; }
	.dialog { top: 20px; transform: translate(-50%, 0); width: calc(100vw - 30px); max-width: none; max-height: calc(100vh - 40px); padding: 25px; }
	.header_bar { height: 85px; }
	.header_bar .identity { min-width: 0; }
	.header_bar .product { width: auto; padding: 0 16px; font-size: 0; }
	.header_bar .product strong { margin: 0; font-size: 15px; }
	.header_bar p.name { display: none; }
	.header_bar .right { width: auto; flex: 0 0 auto; }
	.header_bar .right .links { margin-top: 0; }
	.header_bar a { padding: 0 12px; }
	.header_bar a.log-out span { display: none; }
	.header_bar .role-dropdown-toggle { max-width: 115px; padding: 0 9px; gap: 7px; font-size: 12px; }
	.header_bar .header-current-role { max-width: 115px; padding: 0 9px; font-size: 12px; }
	.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 .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.roles .tags.selectable { grid-template-columns: 1fr; }
	.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: 8px 50px 8px 12px; 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; flex: 0 0 auto; margin: 0 3px; padding: 7px 11px; font-weight: 700; }
	.sidebar .item.overview { color: var(--brand); background: #fff; border: 1px solid var(--brand-border); }
	.sidebar .item.active, .sidebar .item.overview.active { color: #fff; background: var(--brand); border-color: var(--brand); box-shadow: none; }
	.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; }
	.narrow .narrow_box.detail .item.progress span.vehicle span { display: none!important; }
}
