﻿:root {
    --blue: #003b8f;
    --blue2: #002b6f;
    --blue-text: #0050a4;
    --gold: #f8b400;
    --bg: #eef2f7;
    --text: #061a38;
    --muted: #5f6d84;
    --border: #cfd9e8;
    --green: #008a3d;
    --green-bg: #effdf5;
    --red: #b42318;
    --red-bg: #fff1f1;
    --red-border: #f0c2c2;
    --info-bg: #e9f1ff;
    --info-border: #b8cce8;
    --info-text: #244f89;
    --amber: #744b00;
    --amber-bg: #fff0cb;
    --gray: #44546a;
    --gray-bg: #edf0f4;
    --navy: #071b3a;
    --text: #061a38;

}

body {
    background-color: var(--bg);
}

h1 {
    color: var(--blue2);
    font-size: 24px;
    font-weight: bold;
}

.serif-font, h1 {
    font-family: Georgia, Times New Roman, serif;
}

p {
    line-height: 1.4;
}

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

.dark-blue-text {
    color: var(--blue2);
}

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

.white-text {
    color: #FFFFFF;
}

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

.slate-text {
    color: #344767;
}

.white-muted-text {
    color: #dbe9ff;
}

.capitalize {
    text-transform: uppercase;
}

.courier {
    font-family: Courier New, monospace;
}

.small-text {
    font-size: 0.875rem;
}

.big-text {
    font-size: 1.125rem;
}

.extra-small-text {
    font-size: 0.7rem;
}

@media only screen and (max-width: 1024px) {
    h1, h2, h3, h4 {
        text-align: center;
    }
}

.letter-spaced {
    letter-spacing: 2px;
}

.text-align-right {
    text-align: right;
}

.plain-button {
    background: none;
    border: none;
}

.plain-button:hover {
    text-decoration: underline;
}

.yellow-button {
    color: black;
    border: 1px solid #b78300;
    background-color: var(--gold);
}

.outline-button.selected {
    color: white;
    background-color: var(--blue2);
}

.yellow-button:hover, .primary-button:hover, .outline-button:hover {
    filter: brightness(0.9);
}

@media only screen and (max-width:767px){
    .mobile-button {
        width: 100%;
        margin-top: 1rem;
    }
}

.k-notification.telerik-blazor.k-notification-primary {
    background-color: var(--blue2);
    color: white;
    border: none;
    border-left: 6px solid var(--gold);
    border-radius: 0px;
    position: relative;
    top: -2rem;
    left: -1rem;
}

.k-radio-list-item {
    margin: 0.5rem 1rem;
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    font-weight: bold;
}

.k-radio:checked, .k-radio.k-checked {
    color: var(--blue);
    background-color: white;
    border-color: var(--blue2);
}

.k-radio:checked::before, .k-radio.k-checked::before {
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.3' fill='%23ffffff'/%3e%3c/svg%3e")
}

.k-radio-list-item:has(.k-radio:checked) {
    background: #edf4ff;
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue) inset;
}


.k-radio-list-item label,
.k-radio-list-item .k-radio-label {
    display: block;
    width: 100%;
    cursor: pointer;
}

.telerik-blazor.k-textbox {
    padding: 0.2rem 1rem;
    border-radius: 0;
}

.telerik-blazor.k-combobox.k-input {
    height: 44px;
    border-radius: 0px;
    padding-left: 1rem;
}

.k-input:focus, .k-input.k-focus, .k-input.k-input-solid:focus, .k-input.k-input-solid.k-focus {
    box-shadow: 0 0 0 .05rem color-mix(in srgb, var(--kendo-color-primary, #0d6efd) 25%, transparent) !important;
}

.text-align-center {
    text-align: center;
}

.cursor-pointer {
    cursor: pointer;
}

.link-button {
    background: none;
    border: none;
}

.white-box {
    background: white;
    border: 1px solid var(--border);
}

.dim-blue-box {
    border: 1px solid var(--border);
    background: #f7f9fc;
}

.blue-box {
    background-color: #eef3fb;
}

.ls-1 {
    letter-spacing: 1px;
}

input[type="text"]:not(.k-input-inner), select {
    height: 40px;
    padding-left: 0.5rem;
    width: 100%;
    border: 1px solid var(--border);
}

.outline-button {
    border: 1px solid var(--blue2);
    color: var(--blue2);
    background-color: white;
}

.link-button {
    font-weight: bold;
    text-decoration: underline;
    background: unset;
    border: none;
    color: var(--blue);
}

.primary-button {
    color: white;
    background-color: var(--blue);
    border: var(--blue);
}

.outline-button, .link-button, .primary-button {
    max-width: 25rem;
    text-wrap: auto;
    font-weight: 500;
    height: 40px;
    width: 100%;
    border-radius: 0px;
}

.link-button:hover {
    text-decoration: underline;
}

.border-top {
    border-top: 1px solid var(--border);
}

.numbered-icon {
    color: var(--blue2);
    position: relative;
    width: 3.5rem;
}

.numbered-icon .k-icon.k-svg-icon.k-svg-i-circle {
    position: absolute;
    top: -22px;
    width: 3.5rem;
}

.numbered-icon .number {
    color: white;
    position: absolute;
    top: -19px;
    left: 24px;
}

.border-top-none {
    border-top: none;
}

.required::after {
    content: " *";
    color: red;
}

.validation-errors {
    padding: 1rem 2rem;
    margin-top: 2rem;
    background-color: var(--red-bg);
    border: 1px solid var(--red-border);
    font-weight: 500;
    color: red;
}

.validation-message {
    font-weight: 500;
}

.k-radio-label {
    margin-left: 0.5rem !important;
}

.tall-button {
    height: 48px;
}

.check-type-card {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 5px solid var(--blue);
    min-height: 20rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.check-type-card.vsc, .check-type-card.VulnerableSectorCheck {
    border-left-color: var(--gold);
}

.crc-tag, .npc-tag, .check-type-card.CriminalRecordCheck .tag, .check-type-card.NonParentCustody .tag, .blue-tag {
    background: var(--info-bg);
    color: var(--blue);
}

.crjmc-tag, .check-type-card.CriminalRecordAndJudicialMattersCheck .tag {
    background: var(--blue);
    color: white;
}

.vsc-tag, .check-type-card.VulnerableSectorCheck .tag {
    background: var(--gold);
    color: #111;
}

.w-fit-content {
    width: fit-content;
}

.flex-direction-column {
    flex-direction: column;
}

.h-stretch {
    height: stretch;
}

.section-heading.blue {
    border-left: 4px solid var(--blue);
}

.checkbox-div {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.checkbox-div label {
    font-weight: 500;
    font-size: 1.125rem;
    margin-left: 0.5rem;
    cursor: pointer;
    position: relative;
    top: -4px;
    vertical-align: top;
    display: inline;
}

p.confirmation.big-margin-bottom {
    margin-bottom: 4rem;
}

.checkbox-div input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    background-color: white;
}

.show-errors .checkbox-div input[type="checkbox"].invalid {
    border: 2px solid red;
}

.checkbox-div input[type="checkbox"]:checked {
    border-color: #1080A6;
    background-color: #1080A6;
}

.checkbox-div input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
