#pagetitle {
    font-weight: bold;
}
main {
    width: auto;
}
#mainContent {
    max-width: 300px;
}
#logo {
    width: 100%;
    border-width: 0;
}
@media screen and (max-width: 599px) {
    #mobile-header {
        height: 50px;
    }
    #mobile-header > div {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        background-color: white;
        cursor: pointer;
        z-index: 100;
        box-shadow: 0 0 10px rgba(0,0,0, 0.1);
        font-weight: bold;
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
    }
    #mobile-header > div img {
        height: 24px;
        width: 24px;
        margin: 10px;
        vertical-align: middle;
    }
    #mobile-header > div #logo {
        width: 40px;
        margin: 10px;
    }
    #user-status {
        background-color: #f8f8f8;
        border-radius: 6px;
        padding: 10px;
        width: 100%;
    }
    #user-status > a {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 10px 20px;
        font-weight: bold;
        color: black;
    }
    #main-navigation {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        background-color: white;
        padding: 20px;
    }
    #main-navigation.open {
        display: block;
    }
    #main-navigation #site-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 0 20px 0;
    }
    #main-navigation #site-header #logo {
        width: 180px;
    }
    #main-navigation #site-header #site-title {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    #main-navigation #site-header #site-title div {
        display: block;
        font-size: 14px;
        font-weight: bold;
    }
    #main-navigation #site-header #site-title .close {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
    }
    #main-navigation #site-header #site-title .close img {
        width: 16px;
        height: 16px;
        margin: 14px;
    }
    menu {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    menu li {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    menu li a {
        display: block;
        padding: 10px 20px;
    }
    menu li a.active {
        background-color: #353D8A;
        color: white;
    }
    menu li a.inpath {
        background-color: #C6CCF3;
    }
}
@media screen and (min-width: 600px) {
    #mobile-header {
        display: none;
    }
    #user-status {
        max-width: 300px;
        position: relative;
    }
    #user-status.open menu {
        display: block;
    }
    #user-status > a {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        border-color: #353D8A;
        cursor: pointer;
    }
    #user-status menu {
        display: none;
        position: absolute;
        background-color: white;
        width: 100%;
        padding: 6px 0;
        z-index: 100;
        margin: 10px 0 0 0;
        box-shadow: 0 0 10px rgba(0,0,0, 0.1);
        border-radius: 6px;
    }
    #user-status menu li {
        display: block;
        margin: 0;
        padding: 8px 10px;
        list-style-type: none;
    }
    #main-navigation #site-header {
        display: flex;
        align-items: center;
        gap: 14px;
        justify-content: space-between;
        padding: 20px 0;
    }
    #main-navigation #site-header #logo {
        width: 180px;
    }
    #main-navigation #site-header #site-title {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    #main-navigation #site-header #site-title div {
        display: block;
        font-size: 14px;
        font-weight: bold;
    }
    #main-navigation #site-header #site-title .close {
        display: none;
    }
    #main-navigation > menu {
        border-radius: 6px;
        box-shadow: 0 0 10px rgba(0,0,0, 0.2);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin: 0;
        padding: 0;
        background-color: white;
        overflow: hidden;
    }
    #main-navigation > menu li {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    #main-navigation > menu li a {
        display: block;
        padding: 10px 20px;
    }
    #main-navigation > menu li a.active {
        background-color: #353D8A;
        color: white;
    }
    #main-navigation > menu li a.inpath {
        background-color: #C6CCF3;
    }
}
.button {
    display: block;
    font-size: 14px;
    appearance: none;
    border-style: solid;
    border-width: 1px;
    border-color: lightgray;
    border-radius: 6px;
    padding: 7px 16px;
    margin: 10px 0px;
    box-shadow: 2px 2px 4px rgba(0,0,0, 0.1);
    background-color: white;
    color: black;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    position: relative;
    overflow: hidden;
}
.button:hover {
    color: black;
    background-color: #f8f8f8;
}
.button.disabled {
    opacity: 0.3;
    background-color: white !important;
    cursor: default;
}
.box {
    border-width: 1px;
    border-color: #ccc;
    padding: 12px 20px;
    box-shadow: 5px 5px 30px rgba(0,0,0, 0.1);
    background-color: white;
    margin: 20px 0px;
    max-width: 300px;
}
.box h1 {
    display: block;
    color: #353D8A;
    font-size: 18px;
    margin: 8px 0px 20px 0px;
    padding: 0;
}
.rightalign {
    display: flex;
    flex-direction: row-reverse;
}
#centered {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}
#centered main {
    min-width: 300px;
}
#centered main #logo {
    display: block;
    margin: auto;
    max-width: 300px;
    margin-bottom: 40px;
}
#centered main #help {
    margin-top: 40px;
}
#help {
    text-align: center;
    font-size: 12px;
}
#help div {
    margin-top: 3px;
}
@media screen and (min-width: 600px) {
    .twocolumns {
        column-count: 2;
        column-gap: 30px;
        min-width: 560px;
    }
}
#cookiesNotEnabled {
    max-width: 300px;
}
@media screen and (min-width: 600px) {
    .orders-list .hstack > *:nth-child(1) {
        flex-basis: 140px;
        flex-grow: 0;
    }
    .orders-list .hstack > *:nth-child(2) {
        flex-basis: 130px;
        flex-grow: 0;
    }
    .orders-list .hstack > *:nth-child(3) {
        flex-basis: 200px;
    }
}
@media screen and (min-width: 600px) {
    .jobs-list .hstack > *:nth-child(1) {
        flex-basis: 140px;
        flex-grow: 0;
    }
    .jobs-list .hstack > *:nth-child(2) {
        flex-basis: 130px;
        flex-grow: 0;
    }
    .jobs-list .hstack > *:nth-child(3) {
        flex-basis: 200px;
    }
    .jobs-list .hstack > *:nth-child(4) {
        flex-basis: 200px;
    }
    .jobs-list .hstack > *:nth-child(5) {
        flex-basis: 200px;
    }
    .jobs-list .hstack > *:nth-child(6) {
        flex-basis: 200px;
    }
}
#app-content {
    background-color: #f8f8f8;
    min-height: 100vh;
}
#main-content {
    background-color: white;
    padding-bottom: 20px;
}
#main-content main {
    margin: 20px 0;
}
#email-verification-status {
    margin: 10px 0;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
}
@media screen and (max-width: 599px) {
    .hstack {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin: 5px 0;
    }
}
@media screen and (min-width: 600px) {
    .hstack {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    .hstack.resize > * {
        flex-grow: 1;
    }
    .hstack.space {
        justify-content: space-between;
    }
    .hstack.center {
        align-items: center;
    }
    .hstack.top {
        align-items: flex-start;
    }
    .hstack.bottom {
        align-items: flex-end;
    }
    .hstack.stretch {
        align-items: stretch;
    }
    .hstack.stretch > * {
        flex-basis: 1px;
    }
}
.vstack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vstack.space {
    justify-content: space-between;
}
.vstack.center {
    align-items: center;
}
.vstack.leading {
    align-items: flex-start;
}
.vstack.trailing {
    align-items: flex-end;
}
.role-button {
    display: block;
    margin: 10px 0;
    padding: 10px 16px;
    border-width: 1px;
    border-color: lightgray;
    border-radius: 4px;
    border-style: solid;
}
.role-button .title {
    display: block;
    font-size: 14px;
    font-weight: bold;
}
.role-button:hover {
    box-shadow: 0 0 10px #ddd;
}
#step-progress {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
#step-progress .step {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-width: 2px;
    border-style: solid;
    border-color: lightgray;
    border-radius: 50%;
    font-weight: bold;
    color: lightgray;
}
#step-progress .active {
    background-color: #353D8A;
    border-color: #353D8A;
    color: white;
}
#step-progress .done {
    background-color: lightgray;
    color: white;
}
#step-progress .separator {
    display: block;
    content: "";
    width: 20px;
    height: 2px;
    background-color: lightgray;
    top: 15px;
}
.form-row {
    margin-bottom: 20px;
}
#status-banner {
    margin: 10px 0;
    padding-left: 20px;
    box-shadow: 0 0 10px rgba(0,0,0, 0.1);
    border-radius: 6px;
    background-color: lightgray;
}
#status-banner.error {
    background-color: red;
}
#status-banner.success {
    background-color: green;
}
#status-banner span {
    display: block;
    background-color: white;
    padding: 10px;
}
.form-autosave-info {
    font-size: 12px;
    color: gray;
}
.job-attachments .file-description {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.job-attachments .file-description *:first-child {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 2px;
}
.job-attachments .file-description *:first-child div {
    font-weight: bold;
}
.job-attachments .file-description *:first-child span {
    color: lightgray;
}
.job-attachments .file-description textarea {
    margin: 0;
}
@media screen and (max-width: 599px) {
    .list > header {
        display: none;
    }
}
@media screen and (min-width: 600px) {
    .list > header {
        font-weight: bold;
        padding: 10px 0;
    }
    .list > header * {
        text-overflow: ellipsis;
        overflow: hidden;
    }
}
.list .no-entries {
    padding: 10px 0;
}
.list .row .hstack > * {
    text-overflow: ellipsis;
    overflow: hidden;
}
.list .row > *:first-child {
    display: block;
    padding: 10px 0;
}
.list .row a {
    color: black;
}
.list .row a:hover {
    background-color: #f8f8f8;
    color: black;
}
.row-with-title {
    margin: 14px 0;
}
.row-with-title > *:first-child {
    margin: 4px 0;
    font-weight: bold;
}
.passwordview {
    display: inline-block;
    margin: 4px 0;
}
.limited-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
#main-footer {
    padding: 20px 0;
    color: gray;
    line-height: 24px;
}
#main-footer menu {
    margin: 0;
    padding: 0;
}
#main-footer a {
    color: gray;
}
#main-footer a:hover {
    text-decoration: underline;
}
.big-radio-picker label {
    padding: 10px;
    border-style: solid;
    border-color: lightgray;
    border-width: 1px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 2px 2px 4px rgba(0,0,0, 0.1);
    cursor: pointer;
}
.big-radio-picker label:hover {
    background-color: #f8f8f8;
}
.big-radio-picker label input {
    display: block;
    float: left;
    margin-right: 10px;
}
@media screen and (max-width: 599px) {
    .big-radio-picker {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}
@media screen and (min-width: 600px) {
    .big-radio-picker {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    .big-radio-picker label {
        width: 200px;
        height: 80px;
    }
    .big-radio-picker label input {
        margin-bottom: 40px;
    }
}
fieldset.default-fieldset {
    appearance: none;
    border-style: none;
    outline: none;
    margin: 0 0 10px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
fieldset.default-fieldset legend {
    display: block;
    font-weight: bold;
    font-size: 12px;
    break-inside: avoid;
    margin-bottom: 10px;
}
fieldset.default-fieldset label {
    font-size: inherit;
    font-weight: inherit;
}
fieldset.default-fieldset input {
    margin-right: 5px;
}
.nested-object {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 10px;
    margin: 8px 0;
}
.form-section {
    padding: 20px 0;
    border-top-style: solid;
    border-width: 3px;
    border-color: #f8f8f8;
}
.key-info {
    max-width: 300px;
}
.file-preview {
    width: 200px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(1,1,1, 0.05);
}
.file-preview img {
    max-width: 200px;
    max-height: 120px;
}
.button:hover .big-dashboard-button .background {
    filter: brightness(90.0%);
}
.button:hover .big-dashboard-button .title {
    background-color: #f8f8f8;
}
.big-dashboard-button {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2vw;
    font-size: 20px;
    padding: 10px;
}
.big-dashboard-button .background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    transition: all 0.15s ease-in-out;
}
.big-dashboard-button .title {
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    z-index: 100;
    transition: all 0.15s ease-in-out;
}
.big-dashboard-button .icon-placeholder {
    height: 24vw;
    max-height: 200px;
    width: auto;
}
.big-dashboard-button img {
    height: 24vw;
    max-height: 200px;
    width: auto;
    display: block;
    margin: auto;
}
@media screen and (max-width: 599px) {
    #status-info {
        margin: 5px 0;
    }
}
#status-info {
    background-color: #f8f8f8;
    border-radius: 30px;
    padding: 4px;
    border-width: 2px;
    border-color: white;
    border-style: solid;
    width: fit-content;
    min-width: 120px;
}
#status-info div {
    display: flex;
    gap: 10px;
    align-items: center;
}
#status-info div span {
    white-space: nowrap;
    margin-right: 10px;
}
#status-info div img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
.error-info {
    color: red;
    background-color: red;
    border-radius: 4px;
    padding: 10px;
    background-color: rgba(255,0,0, 0.1);
    border-style: solid;
    border-width: 1px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.error-info a {
    background-color: red;
    color: white !important;
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
}
.modal-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}
.modal-dialog.open {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-dialog .overlay {
    background-color: black;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
}
.modal-dialog .content {
    width: 100vw;
    max-width: 500px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0, 1.0);
    z-index: 100;
}
#admin-navigation {
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0, 0.2);
    height: 100vh;
}
#admin-navigation > header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    justify-content: space-between;
    padding: 20px;
    align-items: flex-start;
}
#admin-navigation > header .navigation-title {
    font-weight: bold;
}
#admin-navigation > menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    background-color: white;
    overflow: hidden;
    margin: 10px;
}
#admin-navigation > menu li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#admin-navigation > menu li a {
    display: block;
    padding: 10px;
    border-radius: 6px;
}
#admin-navigation > menu li a.active {
    background-color: #353D8A;
    color: white;
}
#admin-navigation > menu li a.inpath {
    background-color: #C6CCF3;
}
#admin-navigation > menu li menu {
    padding-left: 20px;
}
#admin-content {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
}
#admin-content aside {
    width: 200px;
    flex-grow: 0;
}
#admin-content main {
    padding: 20px;
    flex-grow: 1;
}
.badge {
    font-size: 12px;
    border-radius: 10px;
    padding: 2px 6px;
    margin-left: 6px;
    background-color: #353D8A;
    border-width: 1px;
    border-color: white;
    border-style: solid;
    color: white !important;
    vertical-align: middle;
}
@media screen and (min-width: 600px) {
    .orders-admin-list .hstack > *:nth-child(1) {
        flex-basis: 140px;
        flex-grow: 0;
    }
    .orders-admin-list .hstack > *:nth-child(2) {
        flex-basis: 130px;
        flex-grow: 0;
    }
    .orders-admin-list .hstack > *:nth-child(3) {
        flex-basis: 130px;
        flex-grow: 0;
    }
    .orders-admin-list .hstack > *:nth-child(4) {
        flex-basis: 600px;
    }
}
@media screen and (min-width: 600px) {
    .jobs-admin-list .hstack > *:nth-child(1) {
        flex-basis: 140px;
        flex-grow: 0;
    }
    .jobs-admin-list .hstack > *:nth-child(2) {
        flex-basis: 130px;
        flex-grow: 0;
    }
    .jobs-admin-list .hstack > *:nth-child(3) {
        flex-basis: 200px;
    }
    .jobs-admin-list .hstack > *:nth-child(4) {
        flex-basis: 120px;
        flex-grow: 0;
    }
    .jobs-admin-list .hstack > *:nth-child(5) {
        flex-basis: 120px;
        flex-grow: 0;
    }
    .jobs-admin-list .hstack > *:nth-child(6) {
        flex-basis: 200px;
    }
}
@media screen and (min-width: 600px) {
    .properties-admin-list .hstack > *:nth-child(1) {
        flex-basis: 300px;
    }
    .properties-admin-list .hstack > *:nth-child(2) {
        flex-basis: 300px;
    }
    .properties-admin-list .hstack > *:nth-child(3) {
        flex-basis: 300px;
    }
    .properties-admin-list .hstack > *:nth-child(4) {
        flex-basis: 300px;
    }
}
@media screen and (min-width: 600px) {
    .users-list .hstack > *:nth-child(1) {
        flex-basis: 120px;
    }
    .users-list .hstack > *:nth-child(2) {
        flex-basis: 130px;
        flex-grow: 0;
    }
    .users-list .hstack > *:nth-child(3) {
        flex-basis: 200px;
    }
    .users-list .hstack > *:nth-child(4) {
        flex-basis: 130px;
    }
    .users-list .hstack > *:nth-child(5) {
        flex-basis: 140px;
        flex-grow: 0;
    }
    .users-list .hstack > *:nth-child(6) {
        flex-basis: 100px;
        flex-grow: 0;
    }
}
#order-admin-panel {
    min-width: 250px;
    max-width: 250px;
}
.file-icon {
    width: 20px;
    height: 26px;
    flex-shrink: 0;
    flex-grow: 0;
    background: no-repeat url('/assets/images/file-icon.svg');
}
#job-admin-panel {
    min-width: 250px;
    max-width: 250px;
}
.timeline {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}
.timeline textarea {
    height: 100px;
}
.timeline .file-view {
    margin: 4px 0;
}
.timeline .file-description {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.timeline .file-description *:first-child {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 2px;
}
.timeline .file-description *:first-child div {
    font-weight: bold;
}
.timeline .file-description *:first-child span {
    color: lightgray;
}
.timeline .file-description textarea {
    margin: 0;
}
.timeline .load-error {
    background-color: #F9E927;
    border-radius: 10px;
    padding: 10px;
    white-space: pre-line;
}
.timeline .message {
    margin: 0 0 0 40px;
}
.timeline .message.from-couterpart {
    margin: 0 40px 0 0;
}
.timeline .message .creator {
    font-size: 10px;
    color: gray;
}
.timeline .message .date {
    font-weight: bold;
    font-size: 10px;
    margin-right: 10px;
}
.timeline .message .text {
    background-color: #C6CCF3;
    border-radius: 10px;
    padding: 10px;
    display: block;
    margin-top: 5px;
    white-space: pre-line;
}
.timeline .message.from-couterpart .text {
    background-color: #f8f8f8;
    color: black;
}
* {
    box-sizing: border-box;
}
@font-face {
    font-family: Inter;
    src: url(/assets/fonts/Inter/Inter-Latin-Normal-100-900.woff2) format('woff2');
    font-weight: 100 900;
}
hr {
    margin: 0;
    display: block;
    height: 1px;
    background-color: #ccc;
    border-width: 0;
}
html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: Inter;
    font-size: 14px;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
label {
    display: block;
    font-weight: bold;
    font-size: 12px;
    break-inside: avoid;
}
input:is([type="text"], [type="number"], [type="password"], [type="email"], [type="search"], [type="tel"], [type="url"]) {
    appearance: none;
    border-style: solid;
    border-width: 1px;
    border-color: lightgray;
    border-radius: 6px;
    padding: 7px 10px;
    margin: 4px 0;
    font-size: 14px;
    outline: none;
    display: block;
    width: 100%;
    transition: width 0.2s;
}
input:is([type="text"], [type="number"], [type="password"], [type="email"], [type="search"], [type="tel"], [type="url"]):not(.no-warning):invalid {
    width: calc(100% - 30px);
    display: inline-block;
}
input:is([type="text"], [type="number"], [type="password"], [type="email"], [type="search"], [type="tel"], [type="url"]):not(.no-warning):invalid + span {
    height: 0;
    float: right;
}
input:is([type="text"], [type="number"], [type="password"], [type="email"], [type="search"], [type="tel"], [type="url"]):not(.no-warning):invalid + span::after {
    position: relative;
    padding: 10px 1px;
    content: '⚠️';
    float: right;
    pointer-events: none;
}
textarea {
    appearance: none;
    border-style: solid;
    border-width: 1px;
    border-color: lightgray;
    border-radius: 6px;
    padding: 7px 10px;
    margin: 4px 0;
    font-size: 14px;
    outline: none;
    display: block;
    width: 100%;
    transition: width 0.2s;
    display: block;
    width: 100%;
    field-sizing: content;
}
textarea:not(.no-warning):invalid {
    width: calc(100% - 30px);
    display: inline-block;
}
textarea:not(.no-warning):invalid + span {
    height: 0;
    float: right;
}
textarea:not(.no-warning):invalid + span::after {
    position: relative;
    padding: 10px 1px;
    content: '⚠️';
    float: right;
    pointer-events: none;
}
select {
    appearance: none;
    border-style: solid;
    border-width: 1px;
    border-color: lightgray;
    border-radius: 6px;
    padding: 7px 10px;
    margin: 4px 0;
    font-size: 14px;
    outline: none;
    display: block;
    width: 100%;
    transition: width 0.2s;
}
select:not(.no-warning):invalid {
    width: calc(100% - 30px);
    display: inline-block;
}
select:not(.no-warning):invalid + span {
    height: 0;
    float: right;
}
select:not(.no-warning):invalid + span::after {
    position: relative;
    padding: 10px 1px;
    content: '⚠️';
    float: right;
    pointer-events: none;
}
a {
    color: #353D8A;
    text-decoration: none;
}
a:hover {
    color: #4E60D1;
}
pre {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 32px;
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
}
h2 {
    font-size: 28px;
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
}
h3 {
    font-size: 24px;
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
}
h4 {
    font-size: 20px;
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
}
h5 {
    font-size: 16px;
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
}