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

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    opacity: 0.25;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 500;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
    text-decoration-skip-ink: none;
}

ol,
ul {
    padding-left: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

    ol ol,
    ul ul,
    ol ul,
    ul ol {
        margin-bottom: 0;
    }

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 0.875em;
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

pre,
code,
kbd,
samp {
    font-size: 1em;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}

    pre code {
        font-size: inherit;
        color: inherit;
        word-break: normal;
    }

code {
    font-size: 0.875em;
    word-wrap: break-word;
}

a > code {
    color: inherit;
}

kbd {
    padding: 0.1875rem 0.375rem;
    font-size: 0.875em;
    border-radius: 0.25rem;
}

    kbd kbd {
        padding: 0;
        font-size: 1em;
    }

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: left;
}

th {
    text-align: inherit;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

    button:focus:not(:focus-visible) {
        outline: 0;
    }

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

select {
    word-wrap: normal;
}

    select:disabled {
        opacity: 1;
    }

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}

iframe {
    border: 0;
}

summary {
    display: list-item;
    cursor: pointer;
}

progress {
    vertical-align: baseline;
}

/* utils */

.d-grid {
    display: grid !important;
}

.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

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

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

/* text */

html, body {
    font-family: 'inter-regular', sans-serif !important;
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 20px;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #252c32;
}

h1,
h2 {
    line-height: 24px;
}

h1 {
    font-size: 18px;
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 14px;
    line-height: 20px;
}

txt-pr,
txt-tab-header,
txt-tab-footer,
txt-tab-body,
txt-label-m {
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 20px;
}

txt-pr {
    font-weight: 400;
    color: #252c32;
}

txt-tab-header {
    font-weight: 400;
    color: #84919a;
}

txt-tab-footer {
    font-weight: 600;
    color: #252c32;
}

txt-tab-body {
    font-weight: 400;
    color: #252c32;
    word-break: break-all;
}

txt-label-m {
    font-weight: 400;
    color: #84919a;
}

txt-label-s {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #84919a;
}

txt-error {
    font-size: 14px;
    line-height: 21px;
    color: #F76659;
}

txt-success {
    font-size: 10px;
    line-height: 16px;
    color: #87D19E;
}

txt-warning {
    font-size: 12px;
    line-height: 16px;
    color: #EFC016;
}

.txt-truncate {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.txt-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

a {
    height: 20px;
    font-size: 14px;
    line-height: 20px;
}

    a:link {
        color: #4094F7;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    a:focus {
        text-decoration: underline;
    }

    a:active {
        color: #023997;
        text-decoration: underline;
    }

    a:disabled {
        color: #84919A;
        text-decoration: none;
    }

.txt-state {
    width: max-content;
    border-radius: 10px;
    background-color: #eef0f2;
    padding: 0 8px;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #5b6871;
}

txt-tab-header {
    font-size: 14px;
    line-height: 20px;
    color: #84919A;
}

txt-tab-footer {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #252C32
}

txt-tab-body {
    font-size: 14px;
    line-height: 20px;
    color: #252C32;
}

html, body {
    margin: 0;
    height: 100%;
    width: 100%;
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    box-sizing: border-box;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(26, 32, 36, 0.2);
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
}


#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.mp-0 {
    margin: 0;
}

.mtp-0 {
    margin-top: 0;
}

.mep-0 {
    margin-right: 0;
}

.mbp-0 {
    margin-bottom: 0;
}

.msp-0 {
    margin-left: 0;
}

.mxp-0 {
    margin-right: 0;
    margin-left: 0;
}

.myp-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mp-4 {
    margin: 4px;
}

.mtp-4 {
    margin-top: 4px;
}

.mep-4 {
    margin-right: 4px;
}

.mbp-4 {
    margin-bottom: 4px;
}

.msp-4 {
    margin-left: 4px;
}

.mxp-4 {
    margin-right: 4px;
    margin-left: 4px;
}

.myp-4 {
    margin-top: 4px;
    margin-bottom: 4px;
}

.mp-8 {
    margin: 8px;
}

.mtp-8 {
    margin-top: 8px;
}

.mep-8 {
    margin-right: 8px;
}

.mbp-8 {
    margin-bottom: 8px;
}

.msp-8 {
    margin-left: 8px;
}

.mxp-8 {
    margin-right: 8px;
    margin-left: 8px;
}

.myp-8 {
    margin-top: 8px;
    margin-bottom: 8px;
}

.mp-16 {
    margin: 16px;
}

.mtp-16 {
    margin-top: 16px;
}

.mep-16 {
    margin-right: 16px;
}

.mbp-16 {
    margin-bottom: 16px;
}

.msp-16 {
    margin-left: 16px;
}

.mxp-16 {
    margin-right: 16px;
    margin-left: 16px;
}

.myp-16 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.mp-24 {
    margin: 24px;
}

.mtp-24 {
    margin-top: 24px;
}

.mep-24 {
    margin-right: 24px;
}

.mbp-24 {
    margin-bottom: 24px;
}

.msp-24 {
    margin-left: 24px;
}

.mxp-24 {
    margin-right: 24px;
    margin-left: 24px;
}

.myp-24 {
    margin-top: 24px;
    margin-bottom: 24px;
}

.mp-32 {
    margin: 32px;
}

.mtp-32 {
    margin-top: 32px;
}

.mep-32 {
    margin-right: 32px;
}

.mbp-32 {
    margin-bottom: 32px;
}

.msp-32 {
    margin-left: 32px;
}

.mxp-32 {
    margin-right: 32px;
    margin-left: 32px;
}

.myp-32 {
    margin-top: 32px;
    margin-bottom: 32px;
}

.mp-48 {
    margin: 48px;
}

.mtp-48 {
    margin-top: 48px;
}

.mep-48 {
    margin-right: 48px;
}

.mbp-48 {
    margin-bottom: 48px;
}

.msp-48 {
    margin-left: 48px;
}

.mxp-48 {
    margin-right: 48px;
    margin-left: 48px;
}

.myp-48 {
    margin-top: 48px;
    margin-bottom: 48px;
}

.pp-0 {
    padding: 0;
}

.ptp-0 {
    padding-top: 0;
}

.pep-0 {
    padding-right: 0;
}

.pbp-0 {
    padding-bottom: 0;
}

.psp-0 {
    padding-left: 0;
}

.pxp-0 {
    padding-right: 0;
    padding-left: 0;
}

.pyp-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.pp-4 {
    padding: 4px;
}

.ptp-4 {
    padding-top: 4px;
}

.pep-4 {
    padding-right: 4px;
}

.pbp-4 {
    padding-bottom: 4px;
}

.psp-4 {
    padding-left: 4px;
}

.pxp-4 {
    padding-right: 4px;
    padding-left: 4px;
}

.pyp-4 {
    padding-top: 4px;
    padding-bottom: 4px;
}

.pp-8 {
    padding: 8px;
}

.ptp-8 {
    padding-top: 8px;
}

.pep-8 {
    padding-right: 8px;
}

.pbp-8 {
    padding-bottom: 8px;
}

.psp-8 {
    padding-left: 8px;
}

.pxp-8 {
    padding-right: 8px;
    padding-left: 8px;
}

.pyp-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.pp-16 {
    padding: 16px;
}

.ptp-16 {
    padding-top: 16px;
}

.pep-16 {
    padding-right: 16px;
}

.pbp-16 {
    padding-bottom: 16px;
}

.psp-16 {
    padding-left: 16px;
}

.pxp-16 {
    padding-right: 16px;
    padding-left: 16px;
}

.pyp-16 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.pp-24 {
    padding: 24px;
}

.ptp-24 {
    padding-top: 24px;
}

.pep-24 {
    padding-right: 24px;
}

.pbp-24 {
    padding-bottom: 24px;
}

.psp-24 {
    padding-left: 24px;
}

.pxp-24 {
    padding-right: 24px;
    padding-left: 24px;
}

.pyp-24 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.pp-32 {
    padding: 32px;
}

.ptp-32 {
    padding-top: 32px;
}

.pep-32 {
    padding-right: 32px;
}

.pbp-32 {
    padding-bottom: 32px;
}

.psp-32 {
    padding-left: 32px;
}

.pxp-32 {
    padding-right: 32px;
    padding-left: 32px;
}

.pyp-32 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.pp-48 {
    padding: 48px;
}

.ptp-48 {
    padding-top: 48px;
}

.pep-48 {
    padding-right: 48px;
}

.pbp-48 {
    padding-bottom: 48px;
}

.psp-48 {
    padding-left: 48px;
}

.pxp-48 {
    padding-right: 48px;
    padding-left: 48px;
}

.pyp-48 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.gap-p-0 {
    gap: 0;
}

.g-colp-0 {
    column-gap: 0;
}

.g-rowp-0 {
    row-gap: 0;
}

.gap-p-4 {
    gap: 4px;
}

.g-colp-4 {
    column-gap: 4px;
}

.g-rowp-4 {
    row-gap: 4px;
}

.gap-p-8 {
    gap: 8px;
}

.g-colp-8 {
    column-gap: 8px;
}

.g-rowp-8 {
    row-gap: 8px;
}

.gap-p-16 {
    gap: 16px;
}

.g-colp-16 {
    column-gap: 16px;
}

.g-rowp-16 {
    row-gap: 16px;
}

.gap-p-24 {
    gap: 24px;
}

.g-colp-24 {
    column-gap: 24px;
}

.g-rowp-24 {
    row-gap: 24px;
}

.gap-p-32 {
    gap: 32px;
}

.g-colp-32 {
    column-gap: 32px;
}

.g-rowp-32 {
    row-gap: 32px;
}

.gap-p-48 {
    gap: 48px;
}

.g-colp-48 {
    column-gap: 48px;
}

.g-rowp-48 {
    row-gap: 48px;
}



/* overflow */

.ovflow-hid {
    overflow: hidden;
}

.ovflow-auto {
    overflow: auto;
}

.ovflow-hid-y {
    overflow-y: hidden;
}

.ovflow-hid-x {
    overflow-x: hidden;
}

.ovflow-auto-y {
    overflow-y: auto;
}

.ovflow-auto-x {
    overflow-x: auto;
}



/* containers */


.ct-main {
    width: 100%;
    height: 100%;
}

.ct-header {
    width: 100%;
    height: 56px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.12);
    align-items: center;
    padding: 0 16px;
}

.ct-page {
    width: 100%;
    height: calc(100% - 56px);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ct-page-header {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 16px;
    justify-content: space-between;
}

.ct-page-body {
    width: 100%;
    padding: 8px;
    background-color: #F6FCFF;
    overflow: auto;
}

.ct-page-body-1h {
    height: calc(100% - 50px);
}

.ct-page-body-2h {
    height: calc(100% - 98px);
}

.ct-page-body-3h {
    height: calc(100% - 146px);
}


.ct-list {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}

.ct-list-item {
    width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #E5E9EB;
    border-radius: 4px;
    gap: 16px;
    background-color: white;
    flex-shrink: 0;
}

.ct-list-item-hover:hover {
    border: 1px solid #9BCFFD;
}

.ct-list-item-drop-hover {
    border: 1px solid #9BCFFD;
}

.ct-list-item-selected {
    border: 1px solid #84919A;
}

.row-g16 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.row-g32 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

/* borders */

.border-tp {
    border: 1px solid transparent;
}

.border-base {
    border: 1px solid #E5E9EB;
}

.border-base-t {
    border-top: 1px solid #E5E9EB;
}

.border-base-b {
    border-bottom: 1px solid #E5E9EB;
}

.border-base-s {
    border-left: 1px solid #E5E9EB;
}

.border-base-e {
    border-right: 1px solid #E5E9EB;
}

.border-hover:hover {
    border-color: #9BCFFD;
}

.border-active {
    border-color: #84919A !important;
}

.border-select {
    border-color: #0e73f6 !important;
}

.bor-round-4 {
    border-radius: 4px;
}

.bor-round-8 {
    border-radius: 8px;
}

.signature-line {
    border-bottom: 1px black solid;
    width: 192px;
}

/* background color */

.bgc-white {
    background-color: #fff;
}

.bgc-pr {
    background-color: #f6fcff;
}

.bgc-hover:hover {
    background-color: #f6f8f9;
}
