@import url("https://fonts.googleapis.com/css?family=Arimo:400,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800");

@font-face {
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    src: url("vendor/fontawesome-webfont.woff2?v=4.6.3") format("woff2"),
         url("vendor/fontawesome-webfont.woff?v=4.6.3") format("woff");
}

:root {
    --bg: #f7f7f7;
    --paper: #fff;
    --ink: #333;
    --muted: #777;
    --line: #dedede;
    --primary: #ff6300;
    --primary-dark: #272d33;
    --accent: #ec0000;
    --dark: #1c1c1c;
    --shadow: 0 7px 13px rgba(0, 0, 0, .12);
    --page-width: 1140px;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

.hidden {
    display: none !important;
}

html {
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Open Sans", Arial, Verdana, sans-serif;
    font-size: 14px;
    line-height: 24px;
    overflow-y: scroll;
}

a {
    color: inherit;
}

.body-inner {
    background: #fff;
    min-height: 100vh;
}

.work-page .body-inner {
    background: #fff;
}

.work-container {
    margin: 0 auto;
    max-width: var(--page-width);
    padding-inline: 15px;
    width: 100%;
}

.work-topbar {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    min-height: 56px;
}

.work-topbar .work-container {
    align-items: center;
    display: flex;
    gap: 16px;
    min-height: 56px;
}

.work-badge {
    background: #991b0a;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    letter-spacing: .02em;
    line-height: 1;
    padding: 10px 14px;
    text-transform: uppercase;
}

.work-mainbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.work-mainbar-inner {
    align-items: center;
    display: flex;
    gap: 24px;
    min-height: 104px;
}

.work-brand {
    color: var(--dark);
    display: grid;
    line-height: 1.1;
    margin-right: auto;
    text-decoration: none;
    text-transform: uppercase;
}

.work-brand span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
}

.work-brand strong {
    color: var(--dark);
    font-family: "Arimo", Arial, Verdana, sans-serif;
    font-size: 28px;
    letter-spacing: 0;
}

.work-menu-toggle {
    -webkit-appearance: none;
    appearance: none;
    background: var(--primary);
    border: 0;
    border-radius: 0;
    color: #fff;
    display: none;
    justify-items: center;
    min-height: 44px;
    padding: 11px;
    position: relative;
    width: 44px;
}

.work-page .work-menu-toggle,
.work-page .work-menu-toggle:hover,
.work-page .work-menu-toggle:focus {
    background: var(--primary);
    border: 0;
    color: #fff;
    outline: none;
}

.work-menu-toggle span:not(.sr-only) {
    background: #fff;
    display: block;
    height: 2px;
    left: 10px;
    position: absolute;
    transition: opacity .16s ease, transform .2s ease;
    transform-origin: center;
    width: 20px;
}

.work-menu-toggle span:not(.sr-only):nth-child(2) {
    top: 13px;
}

.work-menu-toggle span:not(.sr-only):nth-child(3) {
    top: 20px;
}

.work-menu-toggle span:not(.sr-only):nth-child(4) {
    top: 27px;
}

.work-menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.work-menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    opacity: 0;
}

.work-menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.work-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    justify-content: flex-end;
}

.work-nav form {
    margin: 0;
}

.work-nav a,
.work-nav button {
    background: transparent;
    border: 0;
    color: var(--dark);
    font-weight: 700;
    justify-content: center;
    min-height: 44px;
    padding: 10px 0;
    text-transform: uppercase;
}

.work-nav a:hover,
.work-nav a:focus,
.work-nav button:hover,
.work-nav button:focus,
.work-nav .active {
    background: transparent;
    color: var(--primary);
    outline: none;
}

.work-crumbbar {
    background: #f7f7f7;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.work-crumbbar-inner {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.work-crumbbar-inner .breadcrumb {
    margin: 0;
}

.work-crumb-actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.crumb-tool {
    background: transparent;
    border: 0;
    color: var(--primary);
    font: inherit;
    font-weight: 700;
    min-height: 0;
    padding: 0;
    text-transform: none;
    white-space: nowrap;
}

.crumb-tool:hover,
.crumb-tool:focus {
    background: transparent;
    color: var(--dark);
    outline: none;
}

.work-shell {
    margin: 0 auto;
    max-width: var(--page-width);
    padding: 30px 15px;
    width: 100%;
}

.work-page .panel {
    margin-inline: auto;
    max-width: none;
}

.work-page .button,
.work-page button {
    border-width: 2px;
}

.work-page .button:not(.primary):not(.danger):not(.secondary),
.work-page button:not(.primary):not(.danger):not(.secondary) {
    border-color: #cfcfcf;
}

.work-page .work-nav button,
.work-page .work-nav a {
    border-width: 0;
}

.work-page .work-menu-toggle,
.work-page .work-menu-toggle:hover,
.work-page .work-menu-toggle:focus,
.work-page .work-menu-toggle:active {
    background: var(--primary);
    border: 0;
    box-shadow: none;
    color: #fff;
    outline: none;
}

.container {
    margin: 0 auto;
    max-width: var(--page-width);
    padding-inline: 15px;
    width: 100%;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row:before,
.row:after,
.container:before,
.container:after,
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.row:after,
.container:after,
.clearfix:after {
    clear: both;
}

.col-xs-1,
.col-xs-11,
.col-xs-12,
.col-sm-2,
.col-sm-12,
.col-md-4,
.col-md-8,
.col-lg-4,
.col-lg-8,
.col-sm-10,
.col-md-2,
.col-md-10 {
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.col-xs-1,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-12 {
    width: 100%;
}

.header-row > .col-xs-11 {
    padding-left: 0;
}

.header-row > .header-right {
    padding-right: 0;
}

.col-xs-1,
.col-xs-11 {
    float: left;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

@media (min-width: 768px) {
    .col-sm-2,
    .col-sm-10 {
        float: left;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }
}

@media (min-width: 992px) {
    .col-md-2,
    .col-md-10 {
        float: left;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }
}

.site-header {
    background: #fff;
    padding: 15px 0 11px;
}

.header-row {
    min-height: 0;
}

.brand {
    color: var(--dark);
    display: inline-block;
    line-height: 24px;
    text-decoration: none;
    text-transform: uppercase;
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.logo-sm {
    color: var(--dark);
    display: inline;
    font-size: 20px;
    font-weight: 500;
    left: 2px;
    letter-spacing: 6px;
    line-height: 5px;
    padding: 0;
    position: relative;
    text-transform: uppercase;
}

.logo {
    color: var(--dark);
    display: inline;
    font-size: 40px;
    font-weight: 700;
    line-height: 25px;
    padding: 0;
    position: relative;
    text-transform: uppercase;
}

.logo-xs {
    color: var(--dark);
    display: block;
    font-size: 11px;
    font-weight: 500;
    left: 2px;
    letter-spacing: 6px;
    line-height: 14px;
    padding: 0;
    position: relative;
    top: 0;
    text-transform: uppercase;
}

.navbar-toggle {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 0;
    color: #fff;
    display: none;
    float: left;
    margin-right: 5px;
    margin-top: 10px;
    padding: 8px;
    transition: background-color .2s ease, border-color .2s ease;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.navbar-toggle .icon-bar {
    background: #fff;
    display: block;
    height: 2px;
    transition: opacity .18s ease, transform .22s ease;
    width: 20px;
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
}

.navbar-toggle[aria-expanded="true"] .icon-bar:nth-of-type(3) {
    opacity: 0;
}

.navbar-toggle[aria-expanded="true"] .icon-bar:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
}

.contest-nav nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: flex-start;
}

.main-nav,
.contest-nav {
    background: #fff;
}

.main-nav .container,
.contest-nav .container {
    display: block;
}

.main-nav > .container > .row,
.contest-nav nav {
    border-bottom: 1px solid var(--line);
    border-top: 3px solid var(--primary);
    width: 100%;
}

.main-nav > .container > .row {
    width: calc(100% + 30px);
}

.contest-nav nav {
    border-top: 0;
}

.site-nav-inner {
    position: relative;
}

.navbar-collapse {
    padding-left: 0;
}

ul.navbar-nav {
    display: inline-block;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    left: -1px;
    top: -1px;
}

ul.navbar-nav > li {
    display: inline-block;
    float: none;
    padding: 0;
    position: relative;
}

ul.navbar-nav > li + li {
    margin-left: 2px;
}

nav a,
nav button,
.button,
button {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 700;
    min-height: 42px;
    padding: 10px 14px;
    text-decoration: none;
    text-transform: uppercase;
}

nav a,
nav button {
    color: var(--dark);
    font-size: 13px;
    position: relative;
}

nav a:hover,
nav button:hover {
    color: var(--primary);
}

ul.navbar-nav > li > a,
.contest-nav nav a,
.contest-nav nav button {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 50px;
    margin: 0;
    min-height: 0;
    position: relative;
    text-transform: uppercase;
    transition: 350ms;
}

ul.navbar-nav > li > a {
    background: transparent;
    padding: 0 15px;
}

.contest-nav nav a,
.contest-nav nav button {
    padding: 0 15px;
}

ul.navbar-nav > li > a:before,
.contest-nav nav a:after,
.contest-nav nav button:after {
    border-bottom: 3px solid var(--primary);
    bottom: -1px;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transition: transform .25s ease, opacity .25s ease;
}

ul.navbar-nav > li:hover > a:before,
ul.navbar-nav > li > a:focus:before,
.contest-nav nav a:hover:after,
.contest-nav nav a:focus:after,
.contest-nav nav button:hover:after,
.contest-nav nav button:focus:after {
    opacity: 1;
    transform: scaleX(1);
}

.primary,
button.primary,
.button.primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.primary:hover,
button.primary:hover,
.button.primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

button.secondary,
.button.secondary {
    align-items: center;
    background: #e9e9e9;
    border-color: #d2d2d2;
    color: var(--dark);
    justify-content: center;
}

button.secondary:hover,
.button.secondary:hover {
    background: #dcdcdc;
    border-color: #c7c7c7;
    color: var(--dark);
}

button.danger,
.button.danger {
    background: #fff;
    border-color: #a52d24;
    color: #8f2019;
}

button.danger:hover,
.button.danger:hover {
    background: #8f2019;
    color: #fff;
}

.small {
    min-height: 34px;
    padding: 6px 10px;
}

.inline {
    display: inline;
}

.shell {
    margin: 0 auto;
    max-width: var(--page-width);
    padding: 30px 15px;
    width: 100%;
}

.kiosk-login-page .shell {
    padding-top: 36px;
}

.page-title {
    background: #f7f7f7;
    border-bottom: 1px solid #e7e7e7;
    padding: 16px 0 20px;
}

.breadcrumb {
    align-items: center;
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    color: var(--muted);
    font-size: 12px;
}

.breadcrumb li + li:before {
    color: var(--muted);
    content: ">";
    margin-right: 8px;
}

.breadcrumb a {
    color: var(--dark);
    font-weight: 700;
    text-decoration: none;
}

.contest-heading {
    border-bottom: 2px solid var(--dark);
    margin-top: 0;
}

.contest-heading h1 {
    background: var(--dark);
    color: #fff;
    display: inline-block;
    font-family: "Arimo", Arial, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    padding: 0 18px;
    position: relative;
    text-transform: uppercase;
}

.contest-heading h1:after {
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid var(--dark);
    bottom: -11px;
    content: "";
    left: 50%;
    margin-left: -11px;
    position: absolute;
}

.breadcrumb-before {
    margin-bottom: 18px;
}

.hero {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    display: grid;
    min-height: 300px;
    padding: clamp(24px, 5vw, 48px);
}

h1 {
    background: var(--dark);
    color: var(--dark);
    color: #fff;
    display: inline-block;
    font-family: "Arimo", Arial, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    margin: 0 0 26px;
    padding: 0 15px;
    text-transform: uppercase;
}

h2 {
    font-family: "Arimo", Arial, Verdana, sans-serif;
    font-weight: 700;
    margin-top: 30px;
}

.hero h1 + .lede,
.panel h1 + .muted {
    clear: both;
}

.lede {
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.55;
    max-width: 720px;
}

.eyebrow {
    color: var(--accent);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.centered-actions {
    justify-content: center;
}

.grid {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.admin-report-section {
    margin-top: 24px;
}

.report-card-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-card {
    align-content: start;
    border: 1px solid var(--line);
    display: grid;
    gap: 8px;
    padding: 16px;
}

.report-card > strong {
    color: var(--dark);
    font-size: 1.05rem;
}

.report-card > span {
    color: var(--muted);
}

.report-card .actions {
    align-items: flex-start;
    margin-top: 8px;
}

.payout-ticket-card {
    grid-column: 1 / -1;
}

.full-report-card {
    margin-top: 14px;
}

.responsive-table {
    overflow-x: auto;
}

.responsive-table table {
    border-collapse: collapse;
    width: 100%;
}

.responsive-table th,
.responsive-table td {
    border-bottom: 1px solid var(--line);
    padding: 9px 10px;
    text-align: left;
    vertical-align: top;
}

.payout-reprint-tools {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(150px, 180px) auto minmax(220px, 1fr) auto;
}

.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat,
.panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow);
}

.stat {
    display: grid;
    gap: 8px;
    padding: 20px;
}

.stat strong {
    color: var(--dark);
    font-size: 1.05rem;
    text-transform: uppercase;
}

.stat span,
.muted {
    color: var(--muted);
}

.panel {
    padding: clamp(18px, 4vw, 34px);
}

.subpanel {
    border-top: 1px solid var(--line);
    margin-top: 22px;
    padding-top: 22px;
}

.judging-results-form {
    margin-top: 16px;
}

.current-judging-class {
    background: #fff8f2;
    border-left: 4px solid var(--primary);
    display: grid;
    gap: 4px;
    margin-top: 24px;
    padding: 12px 14px;
}

.current-judging-class span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.current-judging-class strong {
    color: var(--dark);
}

.judging-award-panel {
    border-top: 0;
    margin-top: 14px;
    padding-top: 6px;
}

.judging-award-panel h2 {
    margin-top: 0;
}

.judging-progress {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.judging-progress-header {
    display: grid;
    gap: 2px;
}

.judging-progress-header strong {
    color: var(--dark);
    font-size: 1.05rem;
}

.judging-progress-header span {
    color: var(--muted);
}

.judging-progress-stats {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.judging-progress-stats div {
    background: #f8f8f8;
    border: 1px solid var(--line);
    display: grid;
    gap: 2px;
    padding: 10px 12px;
}

.judging-progress-stats strong {
    color: var(--dark);
    font-size: 1.05rem;
}

.judging-progress-stats span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.judging-progress-list {
    display: grid;
    gap: 6px;
}

.judging-progress-row {
    align-items: center;
    border: 1px solid var(--line);
    color: var(--ink);
    display: grid;
    gap: 10px;
    grid-template-columns: 112px minmax(0, 1fr) 52px;
    min-height: 44px;
    padding: 8px 10px;
    text-decoration: none;
}

.judging-progress-row:hover,
.judging-progress-row:focus {
    background: #fff8f2;
    border-color: var(--primary);
    outline: none;
}

.status-pill {
    background: #f0f0f0;
    color: var(--muted);
    display: inline-flex;
    font-size: .76rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1;
    padding: 6px 8px;
    text-transform: uppercase;
}

.status-complete .status-pill {
    background: #e3f2ea;
    color: #167149;
}

.status-partial .status-pill {
    background: #fff0df;
    color: #a84a00;
}

.status-not-judged .status-pill {
    background: #f3e7e7;
    color: #9d2222;
}

.status-badge {
    display: inline-flex;
    font-size: .74rem;
    font-weight: 700;
    line-height: 1;
    padding: 5px 7px;
    text-transform: uppercase;
    vertical-align: middle;
}

.exhibit-only-badge {
    background: #fff0df;
    color: #a84a00;
}

.judging-progress-count {
    color: var(--muted);
    font-weight: 700;
    text-align: right;
}

.judging-actions {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.judging-panel .judging-class-form {
    align-items: end;
    grid-template-columns: minmax(320px, 640px) auto;
    max-width: 860px;
}

.judging-panel .judging-class-form label {
    min-width: 0;
}

.judging-panel .judging-class-form .button {
    white-space: nowrap;
}

.pdf-report-page {
    background: #e6e0d6;
    color: #151515;
    min-height: 100vh;
    padding: 24px;
}

.pdf-toolbar {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 0 auto 18px;
    max-width: 8.5in;
}

.letter-report {
    background: #fff;
    box-shadow: 0 18px 45px rgba(33, 27, 20, 0.22);
    font-family: Arial, Verdana, sans-serif;
    margin: 0 auto;
    max-width: 8.5in;
    min-height: 11in;
    padding: 0.55in;
}

.tag-sheet-page {
    background: #fff;
    color: #151515;
    min-height: 100vh;
    padding: 20px;
}

.paper-tag-sheet {
    display: grid;
    gap: 0;
    grid-auto-rows: 5in;
    grid-template-columns: repeat(3, 2.55in);
    margin: 0 auto;
    max-width: 7.65in;
}

.paper-tag {
    border: 0;
    border-bottom: 1px dashed #222;
    border-right: 1px dashed #222;
    display: flex;
    flex-direction: column;
    font-family: Arial, Verdana, sans-serif;
    height: 5in;
    overflow: hidden;
    padding: .18in .18in;
    page-break-inside: avoid;
}

.paper-tag:nth-child(3n + 1) {
    border-left: 1px dashed #222;
}

.paper-tag:nth-child(-n + 3) {
    border-top: 1px dashed #222;
}

.paper-tag:nth-child(6n + 7) {
    break-before: page;
    page-break-before: always;
}

.paper-tag:nth-child(6n + 7),
.paper-tag:nth-child(6n + 8),
.paper-tag:nth-child(6n + 9) {
    border-top: 1px dashed #222;
}

.paper-tag-brand {
    display: flex;
    justify-content: center;
    text-align: center;
}

.paper-tag-brand img {
    display: block;
    height: .87in;
    margin: 0 auto;
    max-width: 2.6in;
    object-fit: contain;
    transform: translateX(.04in);
    width: 100%;
}

.paper-tag-meta {
    display: grid;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.22;
    margin: 8px 0 16px;
    text-align: center;
}

.paper-tag-item {
    align-items: baseline;
    display: flex;
    gap: 10px;
    margin: 0 0 14px;
}

.paper-tag-item span,
.paper-tag-block strong {
    font-weight: 700;
}

.paper-tag-item strong {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.02;
}

.paper-tag-block {
    display: grid;
    gap: 2px;
    margin: 0 0 15px;
}

.paper-tag-block strong,
.paper-tag-block span {
    font-size: 13px;
    line-height: 1.16;
}

.paper-tag-name {
    font-size: 23px;
    font-weight: 500;
    line-height: 1.08;
    margin: 2px 0 14px;
}

.paper-tag-description {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.14;
    margin: 0;
}

.report-header {
    border-bottom: 2px solid #1f1f1f;
    margin-bottom: 18px;
    padding-bottom: 12px;
    text-align: center;
}

.report-header p {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 3px;
}

.report-header h1 {
    font-size: 24px;
    margin: 12px 0 0;
}

.report-section {
    break-inside: avoid;
    margin: 0 0 18px;
    page-break-inside: avoid;
}

.report-section h2 {
    background: #f0ece4;
    border: 1px solid #cfc7bc;
    font-size: 17px;
    margin: 0 0 8px;
    padding: 6px 8px;
    text-align: center;
}

.report-class {
    margin: 0 0 8px;
}

.report-class h3,
.report-awards h3 {
    font-size: 14px;
    margin: 0 0 4px;
}

.report-class table {
    border-collapse: collapse;
    font-size: 12px;
    width: 100%;
}

.report-class th,
.report-class td {
    border-bottom: 1px solid #ddd6ca;
    padding: 3px 5px;
    text-align: left;
    vertical-align: top;
}

.report-class th {
    width: 80px;
}

.report-class td:first-of-type {
    white-space: nowrap;
    width: 58px;
}

.report-awards {
    border-top: 2px solid #1f1f1f;
    margin-top: 10px;
    padding-top: 7px;
}

.report-awards p,
.report-empty {
    font-size: 13px;
    margin: 0 0 5px;
}

.three-part {
    grid-template-columns: 2fr .8fr 1fr;
}

.contact-report {
    max-width: 11in;
    min-height: 8.5in;
    padding: 0.45in;
}

.contact-pdf-toolbar {
    max-width: 11in;
}

.contact-report-table {
    border-collapse: collapse;
    font-size: 10.5px;
    table-layout: fixed;
    width: 100%;
}

.contact-detail-table th:nth-child(1) { width: 22%; }
.contact-detail-table th:nth-child(2) { width: 8%; }
.contact-detail-table th:nth-child(3) { width: 7%; }
.contact-detail-table th:nth-child(4) { width: 17%; }
.contact-detail-table th:nth-child(5) { width: 22%; }
.contact-detail-table th:nth-child(6) { width: 24%; }

.payout-table th:nth-child(1) { width: 18%; }
.payout-table th:nth-child(2) { width: 53%; }
.payout-table th:nth-child(3) { width: 9%; }
.payout-table th:nth-child(4) { width: 20%; }

.contact-report-table th,
.contact-report-table td {
    border: 1px solid #d8d0c4;
    padding: 4px;
    text-align: left;
    vertical-align: top;
}

.contact-report-table th {
    background: #f0ece4;
}

.contact-report-table small {
    display: block;
    font-size: 9.5px;
    line-height: 1.25;
    margin-top: 2px;
}

.contact-report-table td:nth-child(5) {
    white-space: pre-line;
}

.contact-report .report-section {
    break-inside: auto;
    page-break-inside: auto;
}

.contact-report .report-section h2,
.contact-report-table tr {
    break-inside: avoid;
    page-break-inside: avoid;
}

.contact-report-table thead {
    display: table-header-group;
}

.payout-awards span {
    display: block;
    margin-bottom: 4px;
}

.payout-awards span:last-child {
    margin-bottom: 0;
}

.payout-summary {
    break-inside: auto;
    page-break-inside: auto;
}

.cash-summary {
    border: 2px solid #1f1f1f;
    break-inside: avoid;
    margin-top: 18px;
    padding: 12px;
}

.cash-summary h2 {
    margin-top: 0;
}

.cash-total {
    align-items: center;
    display: flex;
    font-size: 18px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cash-total strong {
    font-size: 24px;
}

.bill-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, 1fr);
}

.bill-grid div {
    border: 1px solid #bcb4a8;
    padding: 8px;
    text-align: center;
}

.bill-grid span,
.bill-grid small {
    display: block;
}

.bill-grid strong {
    display: block;
    font-size: 22px;
    margin: 3px 0;
}

.narrow {
    margin-inline: auto;
    max-width: 760px;
}

.rules-panel {
    margin-inline: auto;
    max-width: 860px;
}

.rules-panel h1 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 16px;
    padding-bottom: 0;
    text-align: center;
}

.rules-copy {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.55;
}

.rules-copy h2 {
    font-size: 1.1rem;
    margin: 20px 0 8px;
    text-align: center;
    text-transform: uppercase;
}

.rules-copy p {
    margin: 0 0 10px;
}

.rules-copy ol {
    margin: 0;
    padding-left: 22px;
}

.rules-copy li {
    margin-bottom: 7px;
}

.form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

input,
select,
textarea {
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 0;
    color: var(--ink);
    font: inherit;
    font-weight: 400;
    min-height: 40px;
    padding: 8px 12px;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: #b8b8b8;
    font-style: italic;
    opacity: 1;
}

.compact-field {
    justify-self: start;
    max-width: 260px;
    width: 100%;
}

.compact-field input,
input.age-input {
    max-width: 120px !important;
    width: 120px !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
}

input[type="checkbox"] {
    appearance: none;
    align-items: center;
    background: #fff;
    border: 2px solid var(--primary);
    display: inline-grid;
    flex: 0 0 auto;
    height: 16px;
    min-height: auto;
    padding: 0;
    place-content: center;
    width: 16px;
}

input[type="checkbox"]:checked {
    background: var(--primary);
}

input[type="checkbox"]:checked:after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    height: 8px;
    transform: rotate(45deg) translate(-1px, -1px);
    width: 4px;
}

textarea {
    min-height: 90px;
    resize: vertical;
}

.asp-registration-index .container {
    max-width: var(--page-width);
}

.asp-registration-index .page-title .col-sm-12,
.asp-registration-index .block-wrapper .col-lg-8,
.asp-registration-index .block-wrapper .col-md-8,
.asp-registration-index .block-wrapper .col-lg-4,
.asp-registration-index .block-wrapper .col-md-4 {
    padding-left: 0;
    padding-right: 0;
}

.asp-registration-index .sidebar-right .widget {
    margin-left: 30px;
}

.asp-registration-index .page-title {
    background: #fff;
    border-bottom: 0;
    padding: 0;
}

.asp-registration-index .breadcrumb {
    align-items: initial;
    background: none;
    color: #777;
    display: block;
    gap: 0;
    list-style: none;
    margin: 30px 0 -10px;
    padding: 0;
}

.asp-registration-index .breadcrumb li {
    color: #777;
    display: inline-block;
    font-size: 14px;
}

.asp-registration-index .breadcrumb li + li:before {
    color: #777;
    content: ">";
    margin-right: 0;
    padding: 0 8px;
}

.asp-registration-index .breadcrumb a {
    color: var(--primary);
    font-weight: 400;
    text-decoration: none;
}

.asp-registration-index .block-wrapper {
    padding: 30px 0 22px;
}

.asp-registration-index .block-title {
    border-bottom: 2px solid #1c1c1c;
    color: #fff;
    font-size: 14px;
    line-height: 100%;
    margin: 0 0 40px;
    text-transform: uppercase;
}

.asp-registration-index .block-title > span {
    background: #1c1c1c;
    color: #fff;
    display: inline-block;
    line-height: 20px;
    padding: 6px 15px;
    position: relative;
}

.asp-registration-index .block-title > span:after {
    border-color: #272727 transparent transparent transparent;
    border-style: solid;
    border-width: 10px;
    bottom: -20px;
    content: " ";
    height: auto;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    width: auto;
}

.asp-registration-index input.btn.btn-primary.solid.blank {
    background: #ff6300;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: "Open Sans", Arial, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    min-height: 0;
    padding: 12px 25px 10px;
    text-align: center;
    text-transform: uppercase;
    transition: 350ms;
    vertical-align: middle;
}

.asp-registration-index input.btn.btn-primary.solid.blank:hover,
.asp-registration-index input.btn.btn-primary.solid.blank:focus {
    background: #272d33;
    color: #fff;
    outline: none;
}

.asp-registration-index .list-pdf,
.asp-registration-index .list-pdf li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.asp-registration-index .list-pdf li {
    line-height: 24px;
    padding-top: 1px;
}

.asp-registration-index .list-pdf li:before {
    color: #575853;
    content: "\f1c1";
    display: inline;
    font-family: "FontAwesome";
    font-size: 18px;
    margin-right: 6px;
    position: relative;
    top: 1px;
}

.asp-registration-index .list-pdf a {
    color: var(--primary);
    text-decoration: none;
}

.asp-registration-index .list-pdf a:hover,
.asp-registration-index .list-pdf a:focus {
    color: #272d33;
    outline: none;
}

.student-name-list {
    min-height: 260px;
}

.split {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check {
    align-items: center;
    display: flex;
    gap: 10px;
}

.check input {
    min-height: auto;
}

.search {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.checkin-dashboard-panel {
    background: #f6f7f8;
    border: 1px solid #e4e6e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    margin-top: 18px;
    padding: 16px;
}

.dashboard-header {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.dashboard-header h2 {
    color: #292929;
    font-size: 1.1rem;
    margin: 0;
}

.live-status {
    align-items: center;
    color: #666;
    display: flex;
    gap: 8px;
    white-space: nowrap;
}

.live-status strong {
    color: #168a3e;
    font-size: .85rem;
    text-transform: uppercase;
}

.live-dot {
    background: #19a64a;
    border-radius: 50%;
    height: 9px;
    width: 9px;
}

.checkin-dashboard {
    display: grid;
    gap: 12px;
    grid-template-columns: 1.2fr 1fr .9fr;
    margin: 0;
}

.checkin-dashboard-card {
    align-content: start;
    background: #fff;
    border: 1px solid #e2e4e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    display: grid;
    gap: 8px;
    min-height: 175px;
    padding: 14px;
}

.checkin-dashboard-card > strong {
    color: #292929;
    font-family: "Arimo", Arial, Verdana, sans-serif;
    font-size: .98rem;
    text-transform: uppercase;
}

.checkin-dashboard-card p {
    color: #666;
    margin: 0;
    text-align: center;
}

.gauge-wrap {
    margin: 4px auto 0;
    max-width: 210px;
    position: relative;
    width: 100%;
}

.checkin-gauge-svg {
    display: block;
    height: auto;
    width: 100%;
}

.checkin-gauge-svg path {
    fill: none;
    stroke-linecap: round;
    stroke-width: 22;
}

.gauge-bg {
    stroke: #e8e9eb;
}

.gauge-progress {
    stroke: var(--primary);
}

.gauge-center {
    left: 50%;
    position: absolute;
    text-align: center;
    top: 64%;
    transform: translate(-50%, -50%);
}

.gauge-percent {
    color: var(--primary);
    font-family: "Arimo", Arial, Verdana, sans-serif;
    font-size: clamp(1.85rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1;
}

.gauge-label {
    color: #555;
    font-size: .9rem;
    margin-top: 3px;
}

.checkin-count {
    color: #777;
    font-family: "Arimo", Arial, Verdana, sans-serif;
    font-size: 1.3rem;
    text-align: center;
}

.checkin-count strong {
    color: #222;
    font-size: 1.7rem;
}

.checkin-count span {
    font-weight: 400;
}

.source-pie {
    align-items: center;
    background:
        radial-gradient(circle, #fff 0 48%, transparent 49%),
        conic-gradient(#222 0 var(--online-percent), var(--primary) var(--online-percent) 100%);
    border-radius: 50%;
    display: grid;
    height: 108px;
    justify-self: center;
    margin-top: 0;
    place-items: center;
    text-align: center;
    width: 108px;
}

.source-pie div {
    display: grid;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.source-pie strong {
    color: #222;
    font-size: 1.05rem;
}

.source-pie span {
    color: #666;
}

.source-legend {
    display: grid;
    gap: 0;
}

.source-legend > span {
    align-items: center;
    border-bottom: 1px solid #eee;
    color: #555;
    display: grid;
    gap: 8px;
    grid-template-columns: 28px 1fr 54px;
    padding: 6px 4px;
}

.source-label {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    text-align: center;
}

.source-legend > span > i {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    position: relative;
    z-index: 1;
}

.source-legend > span > strong {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    position: relative;
    z-index: 1;
}

.source-legend i {
    border-radius: 3px;
    display: inline-block;
    height: 13px;
    margin-right: 4px;
    width: 13px;
}

.source-legend .online {
    background: #222;
}

.source-legend .manual {
    background: var(--primary);
}

.source-total {
    color: #666;
    text-align: center;
}

.pending-card {
    align-content: center;
}

.pending-number {
    color: var(--primary);
    font-family: "Arimo", Arial, Verdana, sans-serif;
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.pending-divider {
    border-top: 1px solid #eee;
    margin: 4px 0 0;
}

.pending-percent {
    color: #666;
}

.pending-track {
    background: #e8e9eb;
    border-radius: 999px;
    height: 13px;
    overflow: hidden;
}

.pending-track span {
    background: var(--primary);
    border-radius: inherit;
    display: block;
    height: 100%;
}

.scan-qr-button {
    gap: 8px;
    white-space: nowrap;
}

.scan-qr-label {
    display: none;
}

.camera-icon {
    border: 2px solid currentColor;
    display: inline-block;
    height: 15px;
    position: relative;
    width: 20px;
}

.camera-icon:before {
    border: 2px solid currentColor;
    border-radius: 50%;
    content: "";
    height: 5px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
}

.camera-icon:after {
    border-bottom: 5px solid currentColor;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    content: "";
    left: 3px;
    position: absolute;
    top: -7px;
}

.section-class-controls {
    display: grid;
    gap: 16px;
}

.qr-card {
    display: grid;
    gap: 10px;
    justify-items: center;
    margin: 18px 0;
}

.qr-card.compact {
    margin: 12px 0 16px;
}

.qr-code {
    background: #fff;
    border: 1px solid var(--line);
    display: inline-grid;
    padding: 12px;
}

.qr-code.compact {
    padding: 8px;
}

.qr-code svg {
    display: block;
    height: auto;
    max-width: min(220px, 80vw);
}

.qr-code.compact svg {
    max-width: min(110px, 45vw);
}

.qr-scanner {
    border: 1px solid var(--line);
    display: grid;
    gap: 12px;
    margin: 0 0 12px;
    max-width: 520px;
    padding: 12px;
}

.qr-scanner[hidden] {
    display: none;
}

.qr-video-wrap {
    background: #111;
    display: grid;
    overflow: hidden;
    place-items: center;
    position: relative;
}

.qr-scanner video {
    background: #111;
    max-height: 240px;
    min-height: 160px;
    object-fit: cover;
    width: 100%;
}

.qr-target {
    border: 3px solid rgba(255, 255, 255, .9);
    box-shadow: 0 0 0 999px rgba(0, 0, 0, .25);
    height: min(42vw, 150px);
    max-height: 70%;
    max-width: 70%;
    pointer-events: none;
    position: absolute;
    width: min(42vw, 150px);
}

.section-heading {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.section-heading h1 {
    margin-bottom: 0;
}

.catalog-add,
.catalog-section {
    border-top: 3px solid var(--dark);
    margin-top: 24px;
    padding-top: 18px;
}

.catalog-intro {
    margin-bottom: 4px;
}

.catalog-intro + .catalog-add {
    margin-top: 8px;
}

.compact-form {
    gap: 12px;
}

.catalog-grid {
    display: grid;
    gap: 12px;
}

.section-fields {
    grid-template-columns: 1fr 2fr 110px;
}

.prize-fields {
    grid-template-columns: repeat(3, minmax(0, 180px));
}

.catalog-class-list {
    border-top: 1px solid var(--line);
    margin-top: 20px;
    padding-top: 14px;
}

.catalog-class-row,
.award-admin-row {
    align-items: end;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr auto;
    padding: 10px 0;
}

.catalog-class-form {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: 150px 1fr auto;
}

.add-class-form {
    background: #f4f1eb;
    margin-top: 12px;
    padding: 12px;
}

.delete-section-form {
    margin-top: 18px;
}

.award-admin-form {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: 1.4fr 2fr 120px 90px auto;
}

.printer-admin-list {
    display: grid;
    gap: 14px;
}

.printer-admin-form {
    align-items: end;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(140px, 1fr)) minmax(220px, 1.5fr) minmax(130px, .8fr);
    padding-top: 14px;
}

.printer-admin-form .check,
.printer-admin-form button {
    align-self: center;
}

.printer-direct-url {
    grid-column: 1 / -1;
    margin: 0;
}

.printer-direct-url code {
    overflow-wrap: anywhere;
}

.award-judging-list {
    display: grid;
    gap: 12px;
}

.award-judge-row {
    align-items: end;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(320px, 1.45fr) minmax(220px, .85fr) auto;
    padding: 12px 0;
}

.award-judge-row small {
    color: var(--muted);
    display: block;
    margin-top: 4px;
}

.staff-actions {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 18px;
}

.session-printer-form {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(240px, 420px) auto;
    margin: -8px 0 22px;
}

.printer-choice-actions {
    display: grid;
    gap: 12px;
}

.printer-use-form {
    align-items: end;
    grid-template-columns: minmax(240px, 1fr) auto;
}

.printer-skip-form {
    margin: 0;
}

.table-wrap {
    overflow-x: auto;
}

.control-tabs {
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 24px;
}

.control-tabs a {
    border: 1px solid transparent;
    border-bottom: 0;
    color: var(--ink);
    font-weight: 700;
    padding: 12px 14px;
    text-decoration: none;
    text-transform: uppercase;
}

.control-tabs a:hover,
.control-tabs a:focus {
    color: var(--primary);
    outline: none;
}

.control-tabs a.active {
    background: #fff;
    border-color: var(--line);
    color: var(--primary);
    margin-bottom: -1px;
}

.control-panel-tab-body {
    display: grid;
    gap: 22px;
}

.reset-contest-list {
    display: grid;
    gap: 18px;
}

.reset-contest-card {
    border: 1px solid var(--line);
    padding: 20px;
}

.reset-contest-card h3 {
    margin: 0 0 12px;
}

.reset-counts {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0 0 14px;
}

.reset-counts div {
    border: 1px solid var(--line);
    padding: 10px;
}

.reset-counts dt {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 4px;
}

.reset-counts dd {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.reset-form {
    margin-top: 12px;
    max-width: 560px;
}

.admin-tab-body {
    display: grid;
    gap: 22px;
}

.selected-printer-note {
    align-items: center;
    background: #fff7f0;
    border: 1px solid #ffd0b5;
    color: var(--ink);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
}

.selected-printer-note a {
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}

.selected-printer-note a:hover,
.selected-printer-note a:focus {
    color: var(--ink);
    outline: none;
}

.admin-report-section .selected-printer-note + h2 {
    margin-top: 12px;
}

table {
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 12px 10px;
    text-align: left;
}

th {
    color: var(--primary-dark);
    font-size: .82rem;
    text-transform: uppercase;
}

.log-table {
    font-size: 0.82rem;
    min-width: 980px;
}

.log-table th,
.log-table td {
    padding: 7px 8px;
    vertical-align: top;
}

.log-table th {
    font-size: 0.7rem;
}

.clickable-row {
    cursor: pointer;
}

.clickable-row:hover td,
.clickable-row:focus td {
    background: #fff4eb;
}

.clickable-row:focus {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.flash {
    background: #e7f3ee;
    border: 1px solid #9bcab8;
    border-radius: 0;
    margin-bottom: 16px;
    padding: 12px 14px;
}

.success {
    text-align: center;
}

.big-number {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
}

.confirmation-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 8px 0 18px;
    text-align: center;
}

.summary {
    display: grid;
    gap: 8px;
    grid-template-columns: max-content 1fr;
    margin: 20px auto;
    max-width: 520px;
    text-align: left;
}

.summary dt {
    color: var(--muted);
    font-weight: 700;
}

.cards {
    display: grid;
    gap: 10px;
}

.choice-grid {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.choice-card {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    display: grid;
    gap: 5px;
    padding: 18px;
    text-decoration: none;
}

.choice-card:hover,
.choice-card:focus {
    border-color: var(--primary);
    outline: none;
}

.choice-card strong {
    color: var(--dark);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
}

.choice-card span {
    color: var(--muted);
}

.bulk-form h2,
.group-batch h2 {
    font-size: 1rem;
    margin: 8px 0 0;
    text-transform: uppercase;
}

.bulk-item-list,
.group-check-form {
    display: grid;
    gap: 14px;
}

.bulk-item,
.group-contact-editor,
.group-batch {
    border: 1px solid var(--line);
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 16px;
}

.group-batch-header {
    align-items: end;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(500px, 1.25fr) minmax(220px, .65fr) auto;
}

.bulk-item legend {
    background: var(--dark);
    color: #fff;
    font-weight: 700;
    padding: 7px 12px;
    text-transform: uppercase;
}

.group-contact-editor legend {
    background: var(--dark);
    color: #fff;
    font-weight: 700;
    padding: 7px 12px;
    text-transform: uppercase;
}

.group-description-field {
    margin-top: 0;
}

.group-details-field {
    grid-column: 1 / -1;
    margin-top: 0;
}

.add-bulk-item {
    justify-self: start;
}

.group-result-list {
    margin-bottom: 20px;
}

.group-summary {
    margin-left: 0;
    margin-right: 0;
}

.group-select-all {
    align-items: center;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-weight: 700;
    margin: 4px 0 0;
    padding-top: 14px;
}

.group-entry-row {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 12px 0;
}

.group-entry-check {
    align-items: flex-start;
    cursor: pointer;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.group-entry-check input {
    margin-top: 3px;
}

.group-entry-check span {
    display: grid;
    gap: 3px;
}

.group-entry-name {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.group-entry-check small {
    color: var(--muted);
}

.group-entry-edit-toggle {
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1;
    min-height: 24px;
    padding: 0 4px;
}

.group-entry-edit-toggle:hover,
.group-entry-edit-toggle:focus {
    background: transparent;
    color: var(--primary);
    outline: none;
}

.group-entry-name-edit {
    margin-left: 28px;
}

.add-student-panel {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 12px;
    padding-top: 18px;
}

.new-student-list {
    display: grid;
    gap: 12px;
}

.new-student-row {
    border: 1px solid var(--line);
    display: grid;
    gap: 12px;
    padding: 12px;
}

.group-batch-class .section-class-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.staff-entry-list {
    display: grid;
    gap: 10px;
}

.staff-entry-result {
    align-items: stretch;
    display: block;
}

.staff-entry-card {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    display: grid;
    gap: 5px;
    padding: 12px;
    text-decoration: none;
}

.staff-entry-card:hover,
.staff-entry-card:focus {
    border-color: var(--primary);
    outline: none;
}

.staff-entry-card strong,
.staff-entry-card span,
.staff-entry-card small {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.staff-entry-card small {
    color: var(--muted);
}

.delete-entry-form {
    align-self: center;
    display: flex;
    margin: 0;
}

.icon-danger {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    color: #b42318;
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 0;
    width: 44px;
}

.icon-danger:hover,
.icon-danger:focus {
    border-color: #b42318;
    outline: none;
}

.danger-zone {
    border-top: 1px solid var(--line);
    margin-top: 18px;
    padding-top: 12px;
}

.danger-zone h2 {
    color: #7a271a;
    font-size: 16px;
    margin: 0 0 4px;
}

.danger-zone .muted {
    font-size: 14px;
    margin: 0 0 10px;
}

.delete-confirm-form {
    max-width: 520px;
}

.delete-confirm-row {
    align-items: end;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(120px, 180px) auto;
}

.delete-confirm-row label {
    margin: 0;
}

.delete-confirm-row input {
    width: 100%;
}

.outline-danger {
    background: #fff;
    border: 1px solid #b42318;
    color: #b42318;
    min-height: 40px;
    padding: 9px 12px;
}

.outline-danger .short-label {
    display: none;
}

.outline-danger:hover,
.outline-danger:focus {
    background: #b42318;
    color: #fff;
}

.address-field {
    display: grid;
    gap: 7px;
    position: relative;
}

.field-label-row {
    align-items: baseline;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    width: 100%;
}

.field-label-row label {
    display: block;
}

.distance-toggle-row {
    justify-content: flex-end;
}

.inline-toggle {
    background: transparent;
    border: 0;
    color: var(--primary);
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    min-height: auto;
    padding: 0;
    text-transform: uppercase;
}

.inline-toggle:hover,
.inline-toggle:focus {
    color: var(--ink);
    outline: none;
}

.address-suggestions {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    display: grid;
    left: 0;
    position: absolute;
    right: 0;
    top: calc(100% + 2px);
    z-index: 30;
}

.address-suggestions[hidden] {
    display: none;
}

.address-suggestion {
    background: #fff;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 0.96rem;
    font-weight: 500;
    min-height: 42px;
    padding: 10px 12px;
    text-align: left;
}

.address-suggestion:hover,
.address-suggestion:focus {
    background: #fff3ec;
    outline: none;
}

.address-suggestions-footer {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 12px;
    text-align: right;
}

.distance-panel {
    border: 1px solid var(--line);
    display: grid;
    gap: 10px;
    margin-top: 0;
    padding: 14px;
}

.distance-panel[hidden] {
    display: none;
}

.distance-panel h2 {
    font-size: 1rem;
    line-height: 1.25;
    margin: 0;
}

.distance-panel .section-heading {
    margin-bottom: 0;
}

.distance-panel .muted {
    margin: 3px 0 0;
}

.distance-summary {
    margin: 2px 0 0;
}

.distance-status {
    font-weight: 800;
}

.distance-status.within {
    color: #188038;
}

.distance-status.outside {
    color: #b42318;
}

.distance-status.unknown {
    color: #9a6700;
}

.distance-actions {
    margin-top: 0;
}

.distance-map {
    border: 1px solid var(--line);
    height: 360px;
    width: 100%;
}

.entry-card {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    display: grid;
    gap: 4px;
    grid-template-columns: 110px 1fr;
    padding: 12px;
}

.entry-card small {
    color: var(--muted);
    grid-column: 2;
}

.receipt {
    color: #000;
    font-family: "Courier New", monospace;
    margin: 0 auto;
    max-width: 320px;
    padding: 18px;
    text-align: center;
}

.receipt h1 {
    font-size: 1.4rem;
}

.receipt p {
    margin: 8px 0;
}

.receipt-code {
    font-size: 2rem;
    font-weight: 900;
}

.screen-only {
    margin-top: 20px;
}

.print-actions {
    display: grid;
    gap: 10px;
}

.print-status {
    color: #555;
    font-family: Arial, sans-serif;
    font-size: 13px;
}

.pagination {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 18px;
}

.pagination span {
    color: var(--muted);
    font-weight: 700;
}

.footer {
    background: var(--dark);
    color: #969696;
    padding: 28px 0;
}

.footer .container {
    display: grid;
    gap: 4px;
}

.footer strong {
    color: #fff;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .col-sm-2,
    .col-sm-10,
    .col-sm-12 {
        float: left;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-12 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-md-2,
    .col-md-4,
    .col-md-8,
    .col-md-10 {
        float: left;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }
}

@media (min-width: 1200px) {
    .col-lg-4,
    .col-lg-8 {
        float: left;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }
}

@media (max-width: 1199px) {
    .container {
        padding-inline: 30px;
    }

    .header-row {
        align-items: center;
        gap: 14px;
        min-height: 0;
    }

    .brand {
        flex-basis: auto;
        min-width: 0;
    }

    .logo-sm {
        font-size: 20px;
        letter-spacing: 6px;
    }

    .logo {
        font-size: 40px;
    }

    .logo-xs {
        letter-spacing: 6px;
    }

    .navbar-toggle {
        display: block;
        flex: 0 0 auto;
        z-index: 1;
    }

    .main-nav {
        display: block;
    }

    .navbar-collapse {
        display: block;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height .28s ease, opacity .18s ease;
    }

    .main-nav.is-open .navbar-collapse {
        max-height: 520px;
        opacity: 1;
    }

    .main-nav > .container > .row {
        border-bottom: 1px solid var(--line);
        border-top: 3px solid var(--primary);
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }

    nav {
        justify-content: flex-start;
    }

    .three,
    .split {
        grid-template-columns: 1fr;
    }

    .section-fields,
    .prize-fields,
    .catalog-class-form,
    .judging-panel .judging-class-form,
    .award-admin-form,
    .award-judge-row,
    .catalog-class-row,
    .award-admin-row,
    .bill-grid {
        grid-template-columns: 1fr;
    }

    ul.navbar-nav,
    .contest-nav nav {
        display: grid;
        float: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 7.5px;
        padding: 0 0 10px;
        left: 0;
        top: 0;
        width: 100%;
    }

    ul.navbar-nav > li,
    .contest-nav nav form {
        display: block;
        float: none;
        margin-left: 0;
    }

    ul.navbar-nav > li > a,
    .contest-nav nav a,
    .contest-nav nav button {
        border-top: 1px solid #f1f1f1;
        color: #333;
        display: block;
        line-height: normal;
        padding: 10px 15px;
        width: 100%;
    }

    ul.navbar-nav > li > a:before {
        border-bottom: 0;
    }
}

@media (max-width: 900px) {
    .work-container {
        padding-inline: 16px;
    }

    .work-mainbar-inner {
        align-items: flex-start;
        display: grid;
        gap: 14px;
        grid-template-columns: 1fr auto;
        min-height: 0;
        padding-bottom: 16px;
        padding-top: 18px;
    }

    .work-brand strong {
        font-size: 26px;
    }

    .work-menu-toggle {
        display: inline-grid;
    }

    .scan-qr-label {
        display: inline;
    }

    .work-nav {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height .28s ease, opacity .18s ease;
    }

    .work-nav.is-open {
        max-height: 360px;
        opacity: 1;
    }

    .work-nav a,
    .work-nav button {
        border-color: var(--line);
        justify-content: flex-start;
        width: 100%;
    }

    .work-nav form {
        width: 100%;
    }

    .work-shell {
        padding: 24px 16px;
    }

    .work-crumbbar-inner {
        align-items: center;
        gap: 10px;
    }

    .work-crumb-actions {
        justify-content: flex-end;
    }

    .checkin-dashboard {
        grid-template-columns: 1fr;
    }

    .checkin-dashboard-card {
        min-height: 0;
    }

    .group-check-form > .actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .group-check-form > .actions > * {
        justify-content: center;
        width: 100%;
    }

    .group-check-form > .actions > :nth-child(1),
    .group-check-form > .actions > :nth-child(4),
    .group-check-form > .actions > :nth-child(5) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .block-wrapper {
        padding: 24px 0;
    }

    .block-title {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .block-title span {
        padding: 0 14px;
    }

    .btn.btn-primary.solid.blank {
        font-size: 15px;
        min-height: 50px;
        padding: 13px 14px;
    }

    .work-shell {
        padding-bottom: 44px;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

    .work-page .panel {
        border: 0;
        box-shadow: none;
        padding-left: 16px;
        padding-right: 16px;
    }

    .control-tabs {
        display: grid;
        grid-template-columns: 1fr;
        margin-left: -16px;
        margin-right: -16px;
    }

    .control-tabs a {
        border: 0;
        border-bottom: 1px solid var(--line);
        padding-left: 16px;
        padding-right: 16px;
    }

    .control-tabs a.active {
        border-bottom: 1px solid var(--primary);
        margin-bottom: 0;
    }

    .reset-contest-card {
        border-left: 0;
        border-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .reset-counts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-row {
        align-items: flex-start;
    }

    .brand {
        width: 100%;
    }

    ul.navbar-nav,
    .contest-nav nav {
        grid-template-columns: 1fr;
    }

    .search {
        display: grid;
    }

    .checkin-dashboard-panel {
        border-left: 0;
        border-right: 0;
        box-shadow: none;
        padding: 16px;
    }

    .dashboard-header {
        align-items: flex-start;
        display: grid;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    .scan-qr-button {
        justify-content: center;
        width: 100%;
    }

    .section-heading {
        display: grid;
    }

    .section-heading .button {
        justify-content: center;
        width: 100%;
    }

    .judging-progress-stats,
    .judging-progress-row,
    .payout-reprint-tools,
    .checkin-dashboard,
    .report-card-grid {
        grid-template-columns: 1fr;
    }

    .judging-progress-row {
        align-items: start;
        gap: 6px;
    }

    .status-pill {
        justify-content: flex-start;
        width: fit-content;
    }

    .judging-progress-count {
        text-align: left;
    }

    .staff-actions {
        display: grid;
        margin: 2px 0 18px;
    }

    .staff-actions .button {
        justify-content: center;
        width: 100%;
    }

    .delete-confirm-row {
        grid-template-columns: minmax(120px, 1fr) auto;
    }

    .outline-danger .wide-label {
        display: none;
    }

    .outline-danger .short-label {
        display: inline;
    }

    .session-printer-form,
    .printer-use-form,
    .printer-admin-form {
        grid-template-columns: 1fr;
    }

    .pagination {
        display: grid;
        justify-content: stretch;
        text-align: center;
    }

    .pagination .button {
        justify-content: center;
    }

    .entry-card {
        grid-template-columns: 1fr;
    }

    .entry-card small {
        grid-column: auto;
    }

    .group-entry-row {
        grid-template-columns: 1fr;
    }

    .group-entry-name-edit {
        margin-left: 0;
    }

    .group-entry-edit-toggle {
        margin-left: 0;
    }

    .group-batch-header,
    .group-batch-class .section-class-controls {
        grid-template-columns: 1fr;
    }

    .group-check-form > .actions {
        grid-template-columns: 1fr;
    }

    .group-check-form > .actions > * {
        grid-column: 1;
    }
}

@media print {
    @page {
        margin: 0.45in;
        size: letter;
    }

    @page tag-sheet {
        margin: 0.35in;
        size: letter;
    }

    @page contact-landscape {
        margin: 0.35in;
        size: letter landscape;
    }

    body {
        background: #fff;
    }

    .screen-only {
        display: none;
    }

    .pdf-report-page {
        background: #fff;
        min-height: auto;
        padding: 0;
    }

    .letter-report {
        box-shadow: none;
        margin: 0;
        max-width: none;
        min-height: auto;
        padding: 0;
    }

    .tag-sheet-page {
        min-height: auto;
        padding: 0;
    }

    .paper-tag-sheet {
        max-width: none;
        page: tag-sheet;
    }

    .contact-report {
        page: contact-landscape;
    }

    .report-section h2 {
        background: #fff;
    }
}
