        :root {
            --gold: #d4af77;
            --green: #30b559;
            --green-dark: #269f4a;
            --navy: #0f172a;
            --ink: #1f2937;
            --soft: #f8fafc;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            color: var(--ink);
            background: #f8fafc;
        }

        .nav-link {
            transition: color .2s ease, opacity .2s ease;
        }

        .nav-link:hover {
            color: var(--gold);
        }

        .gold-text { color: var(--gold); }

        .hero-shell {
            background:
                radial-gradient(circle at top left, rgba(212, 175, 119, 0.18), transparent 35%),
                radial-gradient(circle at 85% 20%, rgba(48, 181, 89, 0.16), transparent 24%),
                linear-gradient(135deg, #111827 0%, #0f172a 45%, #0b1220 100%);
        }

        .hero-card {
            background: rgba(255,255,255,.06);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,.12);
            box-shadow: 0 25px 60px rgba(0,0,0,.28);
        }

        .gold-ring {
            box-shadow: 0 0 0 1px rgba(212, 175, 119, .35) inset;
        }

        .cta-primary {
            background: linear-gradient(180deg, rgba(45, 187, 87, .97), rgba(38, 170, 81, .97));
            transition: transform .18s ease, box-shadow .18s ease;
        }

        .cta-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 30px rgba(48,181,89,.22);
        }

        .cta-secondary {
            border: 1px solid rgba(255,255,255,.2);
            background: rgba(255,255,255,.04);
            transition: background .2s ease, border-color .2s ease;
        }

        .cta-secondary:hover {
            background: rgba(255,255,255,.08);
            border-color: rgba(212,175,119,.55);
        }

        .feature-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            box-shadow: 0 18px 40px rgba(15,23,42,.06);
            transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
        }

		.feature-card a {
			border: 1px solid #33bb5c;
			border-radius: 12px;
			padding: 6px 12px;
		}
		.feature-card a:hover {
			background: #ebebeb;
			border-color: #b7b7b7;
			color: #757575;
		}

        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 24px 50px rgba(15,23,42,.1);
            border-color: rgba(212,175,119,.45);
        }

        .feature-icon {
            width: 3.4rem;
            height: 3.4rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .soft-panel {
            background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
            border: 1px solid #e2e8f0;
        }

		.section-soft .cta-secondary {
			display: block;
			color: #32b95b;
		}
		.section-soft .cta-secondary {
			border: 1px solid #7eea9f;
			background: none;
		}
		.section-soft .cta-secondary:hover {
			border: 1px solid #32b95b;
		}
		.section-soft .cta-secondary i.fa {
			margin: 0px 0 0 0.3rem;
		}


        .mini-step {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 2rem;
            height: 2rem;
            border-radius: 999px;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(180deg, rgba(45, 187, 87, .97), rgba(38, 170, 81, .97));
            box-shadow: 0 10px 20px rgba(48,181,89,.18);
        }

        .seo-copy p + p { margin-top: .9rem; }

        .footer-link:hover { color: var(--gold); }

		nav .bg-emerald-500 {
			background: linear-gradient(180deg, rgba(45, 187, 87, .97), rgba(38, 170, 81, .97));
		}
		nav .text-emerald-400 {
			color: rgb(50 186 91) !important;
		}

		.feature-card .text-emerald-600 {
			color: rgb(50 186 91);
		}
		.hero-shell .text-emerald-400 {
			color: rgb(43 178 84);
		}
		.hero-shell a.cta-secondary {
			border: none;
			background: none;
		}
		.section-soft {
			padding-top: 5.5rem;
			padding-bottom: 6.5rem;
		}
		.section-soft a.bg-emerald-500 {
			background: linear-gradient(180deg, rgba(45, 187, 87, .97), rgba(38, 170, 81, .97));
			display: inline-block;

		}

		.small-features.flex {
			display: none;
		}

    .hero-preview-wrap {
        perspective: 1600px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100%;
		position: relative;
		visibility: visible !important;
    }
	.hero-preview-wrap::before {
		content: "";
		position: absolute;
		width: 280px;
		height: 280px;
		right: 40px;
		top: 60px;
		background: radial-gradient(circle, rgba(212,175,119,0.16), transparent 70%);
		filter: blur(14px);
		pointer-events: none;
	}

    .hero-inmate-card {
        width: 710px;
        max-width: 100%;
        border: 1.5px solid #21a652;
        border-radius: 28px;
        overflow: hidden;
        background: #ffffff;
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.28),
            0 10px 24px rgba(0, 0, 0, 0.18);
        transform: rotateY(-18deg) rotateX(7deg) rotateZ(-1deg) translateY(8px);
        transform-origin: center center;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
		scale: 89%;
    }

    .hero-inmate-header {
        background: linear-gradient(180deg, rgba(45, 187, 87, .97), rgba(38, 170, 81, .97));
        color: #fff;
        padding: 22px 34px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .hero-inmate-title {
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
    }

    .hero-inmate-name {
        font-size: 18px;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #fff;
    }

    .hero-inmate-id {
        font-size: 14px;
        line-height: 1.2;
        font-weight: 700;
        color: #fff;
        opacity: 0.98;
    }

    .hero-inmate-chevron {
        font-size: 22px;
        color: #fff;
        flex-shrink: 0;
    }

    .hero-inmate-info {
        background: #ffffff;
        padding: 26px 34px 22px 34px;
        display: grid;
        grid-template-columns: 1fr 0.9fr;
        gap: 24px;
        border-bottom: 1px solid #d7e7dd;
    }

    .hero-label {
        display: block;
        font-size: 14px;
        font-weight: 800;
        color: #06845b;
        margin-bottom: 8px;
    }

    .hero-info-text {
        color: #334155;
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-charge-list {
        background: #edf7f0;
    }

    .hero-charge-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        padding: 18px 24px;
        border-bottom: 1px solid #d7e7dd;
        font-size: 16px;
        color: #243444;
    }

    .hero-charge-row:last-child {
        border-bottom: 1px solid #d7e7dd;
    }

    .hero-charge-price {
        font-weight: 800;
        color: #059669;
        white-space: nowrap;
    }

    .hero-fees {
        background: #ffffff;
        padding: 22px 34px 28px 34px;
    }

    .hero-fees-title {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #069669;
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 22px;
    }

    .hero-fee-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px;
        padding: 0 0 16px 0;
        font-size: 16px;
        color: #334155;
    }

    .hero-fee-row:last-child {
        padding-bottom: 0;
    }

    .hero-total {
        background: linear-gradient(180deg, rgba(45, 187, 87, .97), rgba(38, 170, 81, .97));
        color: #fff;
        padding: 20px 34px 26px 34px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 24px;
    }

    .hero-total-label {
        font-size: 13px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 8px;
        color: rgba(255,255,255,.96);
    }

    .hero-total-amount {
        font-size: 40px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #fff;
    }

    .hero-pay-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        min-width: 200px;
        padding: 18px 28px;
        border-radius: 24px;
        border: 1px solid #fff;
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        text-transform: uppercase;
        text-decoration: none;
        transition: background 0.2s ease, transform 0.2s ease;
		pointer-events: none;
    }

	footer .text-emerald-400 {
		color: rgb(50 186 91);
	}

	@media (min-width: 1280px) {
		.force.pb-26 {
			padding-bottom: 6.5rem;
		}
	}


    @media (max-width: 1279px) {
        .hero-preview-wrap {
            margin-top: 14px;
        }

        .hero-inmate-card:hover {
            transform: none;
        }
    }

    @media (max-width: 640px) {
        .hero-inmate-header,
        .hero-inmate-info,
        .hero-fees,
        .hero-total {
            padding-left: 20px;
            padding-right: 20px;
        }

        .hero-inmate-info {
            grid-template-columns: 1fr;
        }

        .hero-charge-row,
        .hero-fee-row,
        .hero-total {
            gap: 16px;
        }

        .hero-total {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-pay-btn {
            width: 100%;
            min-width: 0;
        }

        .hero-total-amount {
            font-size: 34px;
        }
		.section-soft .cta-primary {
			width: 100%;
		}

    }

/* TYPO3 integration helpers */
body {
    font-family: 'Inter', system-ui, sans-serif !important;
    color: var(--ink) !important;
    background: #f8fafc !important;
    padding-top: 0 !important;
}

.cbo-site-nav ul,
.cbo-site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cbo-site-nav .navbar-brand,
.cbo-site-nav .navbar-brand:hover,
.cbo-site-nav .navbar-brand:focus {
    display: inline-flex;
    align-items: center;
    padding: 0;
    height: auto;
    float: none;
    color: inherit;
    text-decoration: none;
}

.cbo-site-nav .navbar-brand img {
    display: block;
    max-height: 48px;
    width: auto;
}

.cbo-main-menu > li,
.cbo-mobile-menu > li {
    list-style: none;
}

.cbo-main-menu > li > a,
.cbo-mobile-menu > li > a {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease, opacity .2s ease;
}

.cbo-main-menu > li > a:hover,
.cbo-main-menu > li.active > a,
.cbo-mobile-menu > li > a:hover,
.cbo-mobile-menu > li.active > a {
    color: rgb(50 186 91) !important;
}

.cbo-main-menu > li.dropdown-submenu > a > span {
    display: inline;
}

.cbo-language-switch a,
.cbo-language-switch button {
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
}

.cbo-language-menu {
    display: flex;
    align-items: stretch;
}

.cbo-language-menu .language-item {
    display: flex;
}

.cbo-language-menu .language-item > a,
.cbo-language-menu .language-item.unavailable {
    min-width: 3rem;
    padding: .25rem 1rem;
    align-items: center;
    justify-content: center;
}

.cbo-language-menu .language-item.active {
    background: linear-gradient(180deg, rgba(45, 187, 87, .97), rgba(38, 170, 81, .97));
}

.cbo-language-menu .language-item.unavailable {
    color: #94a3b8;
    cursor: not-allowed;
    opacity: .65;
}

.cbo-header-phone a {
    color: #fff;
    text-decoration: none;
}

.cbo-header-phone a:hover {
    color: rgb(50 186 91);
}

.cbo-site-footer a {
    color: inherit;
    text-decoration: none;
}

.cbo-footer-list li + li {
    margin-top: .75rem;
}

.cbo-footer-list a {
    display: block;
    color: rgb(203 213 225);
}

.cbo-footer-list a:hover,
.footer-link:hover {
    color: var(--gold) !important;
}

.cbo-feature-section {
    margin-bottom: 0;
}

.hero-inmate-card,
.hero-inmate-card:hover,
.hero-inmate-card:focus {
    color: inherit;
    text-decoration: none;
}

.hero-pay-btn {
    pointer-events: none;
}

.cbo-main-content {
    min-height: 58vh;
}

.cbo-content-panel h1,
.cbo-content-panel h2,
.cbo-content-panel h3 {
    color: var(--navy);
}

.cbo-content-panel p,
.cbo-content-panel li {
    color: #475569;
    line-height: 1.7;
}

.scrollup {
    display: none;
}

@media (max-width: 767px) {
    .cbo-site-nav .navbar-brand img {
        max-height: 42px;
    }
}

/* --------------------------------------------------------------------------
   Tailwind fallback subset for TYPO3
   The redesign HTML uses Tailwind utility classes. On TYPO3 the CDN runtime may
   not always generate/apply those classes, so the required utilities are defined
   here as static CSS. This keeps the design independent from the CDN script.
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

/* display */
.block { display: block !important; }
.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.grid { display: grid !important; }
.hidden { display: none !important; }

/* layout */
.relative { position: relative !important; }
.sticky { position: sticky !important; }
.top-0 { top: 0 !important; }
.z-10 { z-index: 10 !important; }
.z-50 { z-index: 50 !important; }
.overflow-hidden { overflow: hidden !important; }

/* sizing / containers */
.max-w-2xl { max-width: 42rem !important; }
.max-w-4xl { max-width: 56rem !important; }
.max-w-5xl { max-width: 64rem !important; }
.max-w-7xl { max-width: 80rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* spacing */
.-mt-10 { margin-top: -2.5rem !important; }
.mt-3 { margin-top: .75rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-10 { margin-top: 2.5rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.pt-2 { padding-top: .5rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.pt-16 { padding-top: 4rem !important; }
.pb-20 { padding-bottom: 6.5rem !important; }
.py-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.p-7 { padding: 1.75rem !important; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: .75rem !important; }

/* flex/grid */
.flex-col { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-4 { gap: 1rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-10 { gap: 2.5rem !important; }
.gap-x-2 { column-gap: .5rem !important; }
.gap-x-3 { column-gap: .75rem !important; }
.gap-x-6 { column-gap: 1.5rem !important; }
.gap-x-8 { column-gap: 2rem !important; }
.gap-y-3 { row-gap: .75rem !important; }
.gap-y-4 { row-gap: 1rem !important; }

/* borders / backgrounds */
.border { border-width: 1px !important; border-style: solid !important; }
.border-t { border-top-width: 1px !important; border-top-style: solid !important; }
.border-white\/10 { border-color: rgba(255,255,255,.10) !important; }
.border-slate-600 { border-color: #475569 !important; }
.border-slate-700 { border-color: #334155 !important; }
.border-slate-800 { border-color: #1e293b !important; }
.bg-\[\#0f172a\] { background-color: #0f172a !important; }
.bg-emerald-500 { background-color: #10b981 !important; }
.bg-white\/5 { background-color: rgba(255,255,255,.05) !important; }
.rounded-full { border-radius: 9999px !important; }
.rounded-3xl { border-radius: 1.5rem !important; }
.rounded-\[2rem\] { border-radius: 2rem !important; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1) !important; }

/* typography */
.text-center { text-align: center !important; }
.text-xs { font-size: .75rem !important; line-height: 1rem !important; }
.text-sm { font-size: .875rem !important; line-height: 1.25rem !important; }
.text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
.text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; }
.text-5xl { font-size: 3rem !important; line-height: 1 !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.leading-7 { line-height: 1.75rem !important; }
.leading-8 { line-height: 2rem !important; }
.leading-tight { line-height: 1.25 !important; }
.tracking-tight { letter-spacing: -0.025em !important; }
.text-white { color: #fff !important; }
.text-slate-200 { color: #e2e8f0 !important; }
.text-slate-300 { color: #cbd5e1 !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-slate-600 { color: #475569 !important; }
.text-emerald-400 { color: #34d399 !important; }
.text-emerald-600 { color: #059669 !important; }

/* Bootstrap reset/compat for the new design */
#cbo-site a:hover,
#cbo-site a:focus {
    text-decoration: none;
}

#cbo-site .hero-shell h1,
#cbo-site .section-soft h2,
#cbo-site .feature-card h3 {
    margin-top: 0;
    margin-bottom: 0;
}

#cbo-site .section-soft h2 {
	font-size: 2.6rem;
}

#cbo-site .hero-shell p,
#cbo-site .section-soft p,
#cbo-site .feature-card p,
#cbo-site .cbo-site-footer p {
    margin-bottom: 0;
}

#cbo-site .section-soft p {
	margin-top: 1rem;
}

#cbo-site .cbo-site-nav {
    margin-bottom: 0 !important;
    border: 0 !important;
    min-height: 0 !important;
}

#cbo-site .cbo-main-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: 0 !important;
    line-height: 1.25rem;
    font-weight: 700;
}

#cbo-site .cbo-mobile-menu > li > a {
    display: block;
    padding: 0 !important;
    line-height: 1.25rem;
}

#cbo-site .cbo-language-switch {
    line-height: 1;
}

#cbo-site .cbo-language-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    color: #fff !important;
    font-weight: 700;
}

#cbo-site .cta-primary,
#cbo-site .cta-secondary {
    min-height: 3.75rem;
}

#cbo-site .feature-card {
    min-height: 100%;
}

#cbo-site .feature-icon img {
    max-width: 100%;
    height: auto;
}

#cbo-site div.content-wrapper {
    padding-top: 25px;
}

#cbo-site .soft-panel {
    border-radius: 2rem;
}

#cbo-site .section-soft p, #cbo-site .feature-card p, #cbo-site .cbo-site-footer p {
	font-size: 1rem;
}
#cbo-site div.content-inmate-input {
    background: transparent;
	padding: 0;
}
#cbo-site .search-inmate-form-wrapper {
	padding: 25px 22px 30px;
    margin-top: 36px;
    border-radius: 12px;
    background: #efefef;
}
#cbo-site .search-inmate-form-wrapper > div {
	font-size: 1.0rem;
}
#cbo-site div.content-state-selector div select,
#cbo-site div.content-jail-selector div select {
	padding: 10px;
    margin-left: 10px;
    min-width: 170px;
    min-height: 33px;
    border-radius: 5px;
	font-size: 1rem;
	border: 1px solid #747474;
}
#cbo-site div.content-inmate-input input[type=text] {
	min-width: 170px;
    min-height: 33px;
    border-radius: 5px;
	font-size: 1rem;
	border: 1px solid #747474;
	padding: 10px;
}
#cbo-site div.text-inline-left {
    min-width: 30%;
}
#cbo-site a.inmate-listing-find-button {
	font-size: 1.125rem;
    line-height: 1.75rem;
	padding-top: 1rem;
    padding-bottom: 1rem;
	padding-left: 2.5rem;
    padding-right: 2.5rem;
	border-radius: 1.5rem;
	--tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
	width: auto;
    margin-top: 30px;
    margin-bottom: 10px;
}

.find-step-label {
    display: inline-block;
    padding: 4px 11px;
    background: #e8ffef;
    border-radius: 10px;
    border: 1px solid #33ba5b;
    margin-right: 0.8rem;
    color: #33ba5b !important;
    font-weight: 600;
    font-size: 1rem;
}

#cbo-site div.list-inmate-header-left > h4,
#cbo-site div.list-inmate-header-right > h4 {
	color: #fff;
}
#cbo-site div.list-inmate-header-right > h4 {
    font-weight: normal;
}
#cbo-site div.list-inmate-wrapper {
	border-radius: 1rem;
}
#cbo-site div.list-inmate-header {
    border-radius: 1rem 1rem 0 0;
	padding: 16px 32px;
}
#cbo-site div.inmate-details-container {
    padding: 16px 32px;
}
#cbo-site div.list-charges-row {
    padding: 13px 32px;
}
#cbo-site div.list-inmate-header.eligible-no h4 {
	color: #555555;
}
#cbo-site div.list-inmate-header.eligible-yes {
    background: #40cf79;
}
#cbo-site div.list-inmate-header.eligible-yes:hover,
#cbo-site div.list-inmate-header.eligible-yes.active {
    background: #04c852 !important;
}

#cbo-site .inmate-details-total-payment-wrapper {
	margin-left: -32px;
    margin-right: -32px;
    position: relative;
    bottom: -15px;
    padding-left: 32px;
    padding-right: 2px;
    padding-bottom: 15px;
	border-radius: 0 0 1rem 1rem;
	margin-top: 28px;
    background: #04c852 !important;
    color: #fff;
}
#cbo-site .inmate-details-total-payment-wrapper div.inmate-details-left-total {
	width: auto;
	float: left;
}
#cbo-site .inmate-details-total-payment-wrapper div.inmate-total-payment-left {
	border: none;
}
#cbo-site .inmate-details-total-payment-wrapper div.inmate-total-payment-left > h4 {
	font-size: 1.5rem;
}
#cbo-site .inmate-details-total-payment-wrapper div.inmate-details-right.inmate-details-right-pay {
	float: right;
    width: auto;
    position: relative;
    right: 28px;
}
#cbo-site .inmate-details-total-payment-wrapper div.inmate-details-right.inmate-details-right-pay .inmate-total-payment-right {
	float: left;
    border: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    border-radius: 20px;
    padding: 12px 26px 13px;
    margin-top: 26px;
    margin-bottom: 12px;
    background-color: #2cc76a;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
#cbo-site .inmate-details-total-payment-wrapper div.inmate-details-right.inmate-details-right-pay .inmate-total-payment-right:hover {
	background-color: #3ad377;
}
#cbo-site form#paymentForm a.before-surety-option-btn,
#cbo-site form#paymentForm a.continue-payment-after-surety-option-btn,
#cbo-site form#paymentForm a.continue-to-payment-nondyn-btn {
	margin-top: 30px;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 1rem;
}
#cbo-site form#paymentForm a.continue-to-payment-nondyn-btn {
	margin-top: 0;
}
#cbo-site .section-soft .pay-inmate-surety-options > p:first-child {
	margin-bottom: 1rem;
}
#cbo-site .section-soft .pay-inmate-surety-options > input[type='radio'] {
	margin: 5px 0 14px;
}
#cbo-site .section-soft .pay-inmate-surety-options > p:nth-child(8) {
	margin-top: -2px;
}
#cbo-site div.authorization-wrapper {
    margin-top: 36px;
    padding: 15px 25px 18px;
    background: #E6E6E6;
    margin-bottom: 40px;
    border-radius: 10px;
}
#cbo-site div.pay-inmate-surety-options label {
	font-size: 16px;
}
#cbo-site .pay-inmate-wrapper .non-dynamic-charges-form-wrapper p {
	border-radius: 10px;
}
#cbo-site .pay-inmate-wrapper div.form-row-wrapper div.form-cell-left,
#cbo-site .payment-form-container div.form-row-wrapper div.form-cell-left {
	border-radius: 7px 0 0 7px;
    font-size: 16px;
	height: 57px;
}
#cbo-site .pay-inmate-wrapper div.form-row-wrapper div.form-cell-right,
#cbo-site .payment-form-container div.form-row-wrapper div.form-cell-right {
	font-size: 16px;
	border-radius: 0 7px 7px 0;
	padding: 10px 20px 8px;
	height: 57px;
}
#cbo-site .payment-form-wrapper .pay-details-wrapper > .inmate-details-container.inmate-details-fees {
	font-size: 16px;
}
#cbo-site .payment-form-wrapper .pay-details-wrapper > .inmate-details-container.inmate-details-fees:first-child {
	border-radius: 11px 11px 0 0;
	margin-top: 10px;
}
#cbo-site .payment-form-wrapper .inmate-details-container.inmate-details-totals {
	border-radius: 0 0 11px 11px;
}
#cbo-site .payment-form-wrapper .inmate-details-container.inmate-details-totals h4 {
	font-weight: 600;
}
#cbo-site .pay-inmate-wrapper div.form-row-wrapper input,
#cbo-site .payment-form-container div.form-row-wrapper input,
#cbo-site .pay-inmate-wrapper div.form-row-wrapper select,
#cbo-site .payment-form-container div.form-row-wrapper select {

}
#cbo-site .inmate-total-payment-left.inmate-total-payment-left-payscreen-text {

}
#cbo-site .inmate-total-payment-left.inmate-total-payment-left-payscreen-text > p {
	margin-top: 0;
}
#cbo-site .inmate-total-payment-right.inmate-total-payment-right-payscreen.submit-payment-button {
	font-size: 1.3rem;
    height: 52px;
	padding: 11px 28px 10px;
}
#cbo-site .inmate-total-payment-left.inmate-total-payment-left-payscreen {
	height: 52px;
}
#cbo-site .inmate-total-payment-left.inmate-total-payment-left-payscreen > h4 {
	font-size: 1.3rem;
}
#cbo-site .payment-form-container div.form-row-wrapper div.form-cell-right.form-cell-right-city {
	border-radius: 0;
}
#cbo-site .payment-form-container div.form-row-wrapper div.form-cell-right.form-cell-right-state {
	border-radius: 0;
}
#cbo-site .payment-form-container div.form-row-wrapper div.form-cell-right.form-cell-right-zip {
	border-radius: 0 7px 7px 0;
}
#cbo-site #paymentForm .pay-inmate-wrapper.pay-inmate-wrapper-green > div:first-child {
	border-radius: 7px 7px 0 0;
}
#cbo-site #paymentForm .pay-inmate-wrapper.pay-inmate-wrapper-green > div:last-child {
	border-radius: 0 0 7px 7px;
}
#cbo-site #paymentForm .pay-inmate-wrapper.pay-inmate-wrapper-green > div:last-child > .inmate-details-left > h4,
#cbo-site #paymentForm .pay-inmate-wrapper.pay-inmate-wrapper-green > div:last-child > .inmate-details-right > h4 {
	font-weight: 600;
}



/* RESPONSIVENESS */

@media (min-width: 640px) {
    .sm\:flex { display: flex !important; }
    .sm\:flex-row { flex-direction: row !important; }
	.home-cta.flex {
		flex-direction: row !important;
		flex-wrap: nowrap;
		align-items: center;
	}
}

@media (min-width: 768px) {
    .md\:flex { display: flex !important; }
    .md\:hidden { display: none !important; }
    .md\:flex-row { flex-direction: row !important; }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
    .md\:p-10 { padding: 2.5rem !important; }
    .md\:pt-20 { padding-top: 5rem !important; }
    .md\:text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
    .md\:text-6xl { font-size: 3.75rem !important; line-height: 1 !important; }
	.hide-on-desktop {
		display: none !important;
	}
}

@media (min-width: 1024px) {
    .lg\:flex { display: flex !important; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 767px) {
    #cbo-site .hero-shell h1 {
        font-size: 2.65rem !important;
        line-height: 1.08 !important;
    }

    #cbo-site .section-soft h2 {
        font-size: 2.25rem !important;
    }
	.hide-on-mobile {
		display: none !important;
	}
	.cbo-mobile-language {
		max-width: 100px;
        margin: 0 auto;
	}
	#mobileMenu {
		border-bottom: 1px solid #ccc;
		text-align: center;
	}
}


/* --------------------------------------------------------------------------
   Critical responsive safety overrides
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
    #cbo-site .md\:flex { display: flex !important; }
    #cbo-site .md\:hidden { display: none !important; }
    #cbo-site .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    #cbo-site .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
    #cbo-site .md\:text-6xl { font-size: 3.75rem !important; line-height: 1 !important; }
    #cbo-site .hide-on-mobile { display: flex !important; }
    #cbo-site .cbo-mobile-toggle { display: none !important; }
    #cbo-site .home-cta.flex { flex-direction: row !important; }
}

@media (min-width: 1024px) {
    #cbo-site .lg\:flex { display: flex !important; }
    #cbo-site .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 767px) {
    #cbo-site .hide-on-mobile { display: none !important; }
    #cbo-site .cbo-mobile-toggle { display: inline-flex !important; }
	#cbo-site .cbo-mobile-toggle {
        display: inline-flex !important;
        background: #0f172a !important;
        border: none;
    }
	footer.cbo-site-footer {
		text-align: center;
	}
	#cbo-site .hero-shell {
		text-align: center;
	}
	#cbo-site .hero-shell > div {
		padding-top: 2.6rem !important;
	}
	#cbo-site .feature-card {
		min-height: 100%;
		text-align: center;
	}
	#cbo-site .feature-card a {
		padding: 12px 23px;
		font-size: 16px;
	}
	#cbo-site .feature-card > div.mt-6.flex.items-center.justify-between {
		justify-content: center !important;
	}
	#cbo-site > .cbo-main-content {
		padding-top: 2.5rem;
	}
	#cbo-site div.content-wrapper.content-state-selector div.text-inline-left h4,
	#cbo-site div.content-wrapper.content-jail-selector div.text-inline-left h4,
	#cbo-site div.content-inmate-input > div h4 {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
		align-items: center;
	}
	#cbo-site div.content-inmate-input > div h4 {

	}
	#cbo-site div.content-wrapper.content-state-selector div.text-inline-left h4 > .find-step-label,
	#cbo-site div.content-wrapper.content-jail-selector div.text-inline-left h4 > .find-step-label,
	#cbo-site div.content-inmate-input > div h4 > .find-step-label {
		display: inline;
		padding: 10px 0 11px;
		background: #e8ffef;
		border-radius: 10px;
		border: 1px solid #33ba5b;
		margin-right: 0.8rem;
		color: #33ba5b !important;
		font-weight: 600;
		font-size: 1rem;
		min-width: 45px !important;
		text-align: center;
	}
	#cbo-site a.inmate-listing-find-button {
		width: 100%;
	}
	#cbo-site div.list-inmate-header-left {
        width: 70%;
    }
	#cbo-site div.list-inmate-header-right {
		width: 30%;
	}
	#cbo-site div.list-inmate-header-right > h4 {
		display: none;
	}
	#cbo-site .inmate-details-total-payment-wrapper {
		margin-top: 99px;
		margin-left: -21px;
        margin-right: -21px;
	}
	#cbo-site .inmate-details-total-payment-wrapper div.inmate-total-payment-left > h4 {
		font-size: 1.5rem;
		margin-left: 36px;
        text-align: center;

	}
	#cbo-site .inmate-details-total-payment-wrapper div.inmate-details-right.inmate-details-right-pay .inmate-total-payment-right {
		margin-left: 28px;
		display: block;
		width: calc(100% - 31px);
		margin-top: 1px;
	}
	#cbo-site .inmate-details-total-payment-wrapper div.inmate-details-left-total {
		width: 100%;
		float: left;
		text-align: center;
		margin-left: -18px;
	}
	#cbo-site div.inmate-details-right {
		width: 30%;
		float: left;
		text-align: right;
	}
	#cbo-site div.list-inmate-content-right {
		width: 30%;
		float: left;
		text-align: right;
	}
	#cbo-site .confirm-statements label.normal-text {
        width: 88%;
		margin-bottom: 16px;
	}
	#cbo-site #paymentForm .pay-inmate-wrapper.pay-inmate-wrapper-green > div:last-child .inmate-details-left {
		width: 63%;
	}
	#cbo-site #paymentForm .pay-inmate-wrapper.pay-inmate-wrapper-green > div:last-child .inmate-details-right {

	}
	#cbo-site .pay-inmate-wrapper div.form-row-wrapper div.form-cell-left, #cbo-site .payment-form-container div.form-row-wrapper div.form-cell-left {
		border-radius: 7px 7px 0 0;
	}
	#cbo-site .pay-inmate-wrapper div.form-row-wrapper div.form-cell-right, #cbo-site .payment-form-container div.form-row-wrapper div.form-cell-right {
		font-size: 16px;
		border-radius: 0 0 7px 7px;
	}
	#cbo-site .payment-form-container div.form-row-wrapper div.form-cell-right.form-cell-right-zip {
		border-radius: 0 0 7px 7px;
	}
	#cbo-site div.form-row-wrapper .g-recaptcha.pull-right {
		    float: none !important;
			position: relative;
			left: -9px;
	}
	#cbo-site .inmate-total-payment-left.inmate-total-payment-left-payscreen-text > p {
		margin-top: 0;
		text-align: center;
		margin-left: 19px;
	}
	#cbo-site div.inmate-details-container {
		padding: 16px 21px;
	}
	#cbo-site div.pay-inmate-wrapper-green {
		border-radius: 7px 7px 0 0;
	}
	a.continue-payment-after-surety-option-btn {
		/*display: inline-block;*/
		width: 100%;
		margin-top: 0;
	}
}
