@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Roboto:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 12px;
    min-height: 100%;
}

body {
    display: block !important;
    font-family: century-gothic, sans-serif;
    font-weight: 400;
    min-height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    background: var(--background);
    color: var(--foreground);
    --x: 0;
    --y: 0;
    --background: var(--bs-body-bg);
    --foreground: var(--bs-body-color);
    --lightGreen: #e2ff99;
    --primaryLight: white;
    --primary: #f6131e;
    --primaryDark: #d90812;
    --lightWarning: #ffe5c2;
    --defaultPadding: 0.5em;
    --inputPadding: 0.1em;
    --warning: #feb248;
    --darkWarning: #fb8b24;
    --lightDanger: #f7a1b2;
    --danger: #ed254e;
    --darkDanger: #d01137;
    --lightSuccess: #c2ffc2;
    --success: #00cc00;
    --darkSuccess: #008f00;
    --secondary: #f6131e;
    --lightSecondary: #f6131e;
    --darkSecondary: #d90812;
    --blue: #0e00a3;
    --darkBlue: #07004d;
    --lightBlue: #a299ff;
    --iceWhite: #ebf2fa;
    --info: #c1dbe3;
    --darkInfo: #9cc6d3;
    --dark: #08415c;
}

.mt-1 {
    margin-top: 0.2em;
}

.mt-2 {
    margin-top: 0.4em;
}

.mt-3 {
    margin-top: 0.6em;
}

.mt-4 {
    margin-top: 0.8em;
}

.mt-5 {
    margin-top: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
    font-family: century-gothic, sans-serif;
    font-weight: 300;
    margin: 0 0 1rem 0;
    padding: 0;
}

p {
    margin: 0 0 1em 0;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
    font-weight: 400;
}

h5 {
    font-size: 16px;
    font-weight: 400;
}

h6 {
    font-size: 14px;
    font-weight: 500;
}

.app-row {
    display: flex;
    flex: 1 1 auto;
    flex-basis: 10%;
    align-items: center;
    justify-items: center;
}


.worksafe-header {
    background: url(./img/Fleet-Serv.png) no-repeat 0 0;
    width: 257px;
    height: 75px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

    .worksafe-header:hover,
    .worksafe-header:focus {
        background: url(./img/Fleet-Serv.png) no-repeat 50% 0;
    }

main {
    padding: var(--defaultPadding);
    margin: auto;
}

nav.appnav {
    position: -webkit-sticky;
    position: sticky;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.7));
    top: 0;
    z-index: 100;
    display: flex;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    flex: 0 0 auto;
    flex-flow: row nowrap;
    list-style: none;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: space-between;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    nav.appnav .nav {
        display: flex;
        flex: 1 1 auto;
        flex-flow: row wrap;
        list-style: none;
        align-items: flex-start;
        justify-items: stretch;
        justify-content: space-between;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

.user-favourite {
    display: none !important;
}

.nav > .nav-item {
    display: block;
    flex: auto;
    height: 100%;
    list-style: none;
    list-style-type: none;
}

@media screen and (min-width: 768px) {
    body {
        --defaultPadding: 2em;
        --inputPadding: 1.5em;
    }

    app {
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        align-items: stretch;
        height: 100vh;
    }

    .user-favourite {
        display: block !important;
    }

    nav.appnav:not(.preference-top) {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 257px;
        flex-flow: column nowrap;
        justify-content: start;
        align-items: stretch;
        flex-grow: 0;
        flex-shrink: 0;
        box-shadow: none;
        padding: 0 1em 0 1em;
    }

        nav.appnav:not(.preference-top) .nav {
            display: flex;
            flex: 0 0 auto;
            flex-flow: column nowrap;
            justify-items: start;
            align-items: flex-start;
            justify-content: start;
        }

            nav.appnav:not(.preference-top) .nav .nav-item {
                width: 100%;
                margin-top: 0.25em;
            }

                nav.appnav:not(.preference-top) .nav .nav-item.bottom {
                    display: flex;
                    margin: 0 auto;
                    align-self: flex-end;
                }

                nav.appnav:not(.preference-top) .nav .nav-item > .nav-link {
                    width: 100%;
                }

    app:not(.preference-top) {
        display: block;
        margin: 0;
        height: 100%;
        flex-flow: row nowrap;
    }

    main:not(.preference-top) {
        margin-left: 271px;
        flex: auto;
        flex-grow: 0;
        flex-shrink: 0;
        height: auto;
    }
}

a,
.nav-link,
.button {
    transition: all 0.3s ease-in-out !important;
}

.button {
    background-image: linear-gradient(135deg, var(--iceWhite), #c0c0c0 33%, white, var(--iceWhite) 66%, #c0c0c0, var(--iceWhite) 100%);
}

    .button span,
    .nav-link span {
        position: relative;
        pointer-events: none;
    }

    .button::before,
    .nav-link::before,
    input[type="submit"]::before,
    input[type="reset"]::before {
        --size: 0;
        content: "";
        position: absolute;
        left: var(--x);
        top: var(--y);
        width: var(--size);
        height: var(--size);
        background: radial-gradient(circle closest-side, rgba(255, 255, 255, 0.55), transparent);
        transform: translate(-50%, -50%);
        transition: width 0.2s ease, height 0.2s ease;
    }

    .button:hover::before,
    .nav-link:hover::before,
    input[type="submit"]:hover::before,
    input[type="reset"]:hover::before {
        --size: 300px;
    }

.button,
input[type="submit"],
input[type="reset"] {
    overflow: hidden;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--bs-body-color);
    padding: calc(var(--inputPadding) / 2) var(--inputPadding);
    border-radius: 0.7em;
    transition: all 0.3s ease-in-out;
    border: 0;
    cursor: pointer;
    background-size: 300% auto;
    outline: 0;
    box-shadow: 1px 1px 3px var(--bs-body-color);
}

    .button:hover,
    input[type="submit"]:hover,
    input[type="reset"]:hover {
        box-shadow: 1px 1px 5px var(--bs-body-color);
    }

    .button:active,
    .button:focus,
    input[type="submit"]:active,
    input[type="reset"]:active,
    input[type="submit"]:focus,
    input[type="reset"]:focus {
        box-shadow: 1px 1px 5px inset var(--bs-body-color);
    }

        .button:active:hover,
        .button:focus:hover,
        input[type="submit"]:active:hover,
        input[type="reset"]:active:hover {
            box-shadow: 1px 1px 2px inset var(--bs-body-color);
        }

    .button.primary,
    .button.calltoact,
    input[type="submit"] {
        background: linear-gradient(135deg, var(--primary), var(--primaryDark));
    }

.rounded {
    border-radius: 1em;
}

.calltoact {
    font-size: 1.5em;
}

.inline-nav {
    display: flex;
    flex: 1 0 auto;
    flex-flow: row wrap;
    list-style: none;
    list-style-image: none;
}

.app-tabs {
    display: block;
}

    .app-tabs > ul {
        display: flex;
        flex: 0 0 auto;
        flex-flow: row nowrap;
        margin: 0;
        align-items: stretch;
        z-index: 5;
        padding: 0 1em 0 1em;
    }

        .app-tabs > ul > li {
            list-style: none;
            display: block;
            text-align: center;
            font-size: 0.8em;
            margin-right: 0.1em;
            list-style-image: none;
            list-style-type: none;
        }

        .app-tabs > ul li .nav-link {
            border-radius: 0.5em 0.5em 0 0 !important;
            padding: 0.5em 1em !important;
            height: 100%;
        }

        .app-tabs > ul > li > .active {
            color: var(--bs-body-color);
        }

    .app-tabs > .tab-body {
        border-radius: 1em 1em;
        padding: 0.5em 0 1em 0;
        display: block;
    }

    .nav .nav-item > .nav-link,
    .app-tabs > ul .nav-item > .nav-link,
    .inline-nav .nav-item > .nav-link {
        display: block;
        overflow: hidden;
        position: relative;
        color: var(--bs-body-color);
        width: 100%;
        padding: 1em 0.5em;
        border-bottom:3px solid transparent;
        background-position: top center;
        text-decoration: none;
        border-radius: 0.7em;
        transition: all 0.5s ease-in-out;
    }

    .nav .nav-item > .active,
    .app-tabs > ul .nav-item > .active,
    .inline-nav .nav-item > .active {
        color: var(--bs-body-color);
        border-bottom-color: var(--primary);
        font-weight: 500;
    }

    .nav .nav-item > .nav-link:hover,
    .app-tabs > ul > .nav-item > .nav-link:hover,
    .inline-nav .nav-item > .nav-link:hover {
        font-weight: 500;
        border-bottom-color:var(--primary);
        filter: drop-shadow(1px);
    }

.hero {
    color: var(--bs-body-bg);
    text-align: center;
    padding: 3em;
    border-radius: 5em;
    margin-bottom: 2em;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

    .hero * {
        z-index: 3;
    }

    .hero p {
        font-size: 2em;
    }

.linked-item ~ .linked-item {
    margin-top: 5em;
}

.hero.heavy-lifting {
    background-image: url(./img/heavy-lifting.jpg);
}

.hero.paperwork {
    background-image: url(./img/paperwork.jpg);
}

.hero.handshake {
    background-image: url(./img/handshake.jpg);
}

.hero.contact-us {
    background-image: url(./img/contact-us.jpg);
}

.table {
    width: 100%;
    display: table;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 1em;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.4);
}
.table > thead {
    position:sticky;
    top:0;
}

    .table > thead > tr > th {
        vertical-align: top;
        padding: 0.5em 1em;
        text-align: center;
        font-weight: bold;
        font-size: 0.9em;
        color: var(--bs-body-color);
        background: var(--bs-tertiary-bg);
        border: 1px solid var(--bs-border-color);
        border-right: 0;
    }

    .table > tbody > tr:last-child {
        border-top: 1px solid var(--bs-border-color) !important;
    }

    .table > thead > tr > :first-child {
        border-top-left-radius: 1em;
    }

    .table > thead > tr > :last-child {
        border-top-right-radius: 1em;
    }

    .table > tbody > tr:last-of-type > :first-child {
        border-bottom-left-radius: 1em;
    }

    .table > tbody > tr:last-of-type > :last-child {
        border-bottom-right-radius: 1em;
    }

    .table > tbody > tr > th {
        vertical-align: top;
        padding: 0.5em 1em;
        text-align: left;
        font-weight: bold;
        color: var(--bs-body-color);
        border: 1px solid var(--bs-border-color);
        border-right: 0;
        border-bottom-color: transparent;
    }

    .table > tbody > tr > td {
        vertical-align: top;
        padding: 0.5em 1em;
        border: 1px solid var(--bs-border-color);
        border-right: 0;
        border-bottom-color: transparent;
    }

    .table > tbody > tr {
        transition: all 0.2s ease-in-out;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01) 50%, transparent 50%, transparent);
        background-size: auto 200%;
        background-position: center 100%;
        display: table-row;
        vertical-align: inherit;
        border-color: inherit;
    }

    .table > :last-child > :last-child > td,
    .table > :last-child > :last-child > th {
        border-bottom-color: var(--bs-border-color);
    }

    .table > tbody > tr:hover {
        background-position: center top;
    }

    .table.selectable > tbody > tr:hover {
        cursor: pointer;
    }

    .table > tbody > tr:hover > td,
    .table > tbody > tr:hover > th {
        border-bottom-color: var(--bs-border-color);
    }

.text-success {
    color: var(--lightGreen);
}

.center {
    text-align: center;
}

.form-group {
    background-image: linear-gradient(to bottom, rgba(250, 255, 255, 0.7), rgba(240, 240, 235, 0.7));
    padding: 1em 2em;
    color: black;
    text-align: left;
    border-radius: 1em;
}

.form-row {
    width: 100%;
    display: flex;
    align-items: center;
    flex-flow: nowrap row;
    flex: 1 1 auto;
    justify-content: space-between;
}

.select-group {
    display: flex;
    flex-flow: row nowrap;
    flex: 1 1 auto;
    width: 100%;
}

    .select-group > div.select-caption {
        flex-shrink: 0;
    }

    .select-group > button {
        display: block;
        border-radius: 0.25em;
        padding: 0.5em 1em;
        font-size: 14px;
        border: 0 solid transparent;
        border-bottom: 3px solid transparent;
        color: var(--bs-body-color);
        background: var(--bs-body-bg);
        transition: all ease-in-out 0.3s;
    }

        .select-group > button.sm {
            font-size: 12px;
        }

        .select-group > button.active, .select-group > button:hover {
            color: var(--bs-body-color);
            background: var(--bs-primary-bg);
            font-weight: 500;
            outline: 0;
            border-bottom:3px solid var(--primary);
        }



.app-input-group {
    display: flex;
    flex-flow: row nowrap;
    flex: 1 1 auto;
    padding: 0;
    margin: 0.5em 0;
    width: 100%;
    font-family: century-gothic, sans-serif;
    font-size: 1em;
    background: var(--bs-body-bg);
    background-size: auto 200%;
    transition: all 0.3s ease-in-out;
    outline: none;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.5em;
}

    .app-input-group > input[type="text"],
    .app-input-group > input[type="text"]:hover,
    .app-input-group > input[type="text"]:focus,
    .app-input-group > input[type="datetime"],
    .app-input-group > input[type="datetime"]:hover,
    .app-input-group > input[type="datetime"]:focus,
    .app-input-group > input[type="password"],
    .app-input-group > input[type="password"]:hover,
    .app-input-group > input[type="password"]:focus,
    .app-input-group > input[type="number"],
    .app-input-group > input[type="number"]:hover,
    .app-input-group > input[type="number"]:focus,
    .app-input-group > textarea,
    .app-input-group > textarea:hover,
    .app-input-group > textarea:focus {
        border: 0;
        box-shadow: none !important;
        display:block;
        margin: 0 !important;
    }

    .app-input-group > button, .app-input-group > .icon {
        flex-shrink: 0;
        flex-grow: 0;
        width: auto;
        align-self: stretch;
        border-radius: 0;
        padding: 0.5em;
    }

    .app-input-group > .just-copied {
        animation: 3s forwards justCopied;
    }

@keyframes justCopied {
    from {
        background-color: #c0ffc0;
    }

    to {
        background-color: #ffffff;
    }
}

.app-input-group > .icon {
    padding: 1.0em 0.5em 0.5em 0.5em;
}

.app-input-group > button:first-of-type {
    border-radius: 0.5em 0 0 0.5em;
}

.app-input-group > button:last-of-type {
    border-radius: 0 0.5em 0.5em 0;
}

.app-input-group > div:not(.icon):first-of-type {
    border-radius: 0.5em 0 0 0.5em;
    padding: 1.5em 1em 0.5em 1em;
    width: 100%;
    border: 0;
    outline: 0;
    flex-grow: 1;
}

.app-input-group.no-label > input[type="text"],
.app-input-group.no-label > input[type="text"]:hover,
.app-input-group.no-label > input[type="text"]:focus,
.app-input-group.no-label > input[type="datetime"],
.app-input-group.no-label > input[type="datetime"]:hover,
.app-input-group.no-label > input[type="datetime"]:focus,
.app-input-group.no-label > input[type="password"],
.app-input-group.no-label > input[type="password"]:hover,
.app-input-group.no-label > input[type="password"]:focus,
.app-input-group.no-label > input[type="number"],
.app-input-group.no-label > input[type="number"]:hover,
.app-input-group.no-label > input[type="number"]:focus,
.app-input-group.no-label > textarea,
.app-input-group.no-label > textarea:hover,
.app-input-group.no-label > textarea:focus,
.app-input-group.no-label > div:not(.icon):first-of-type {
    padding: 0.5em 1em 0.5em 1em !important;
}

.form-item {
    position: relative;
    width: 100%;
    padding: 0 0.25em 0 0.25em;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 3em !important;
    background: var(--bs-body-bg) url(/assets/fa/svgs/solid/chevron-circle-down.svg) no-repeat 98% 50% !important;
    background-size: 3% !important;
}

.form-item input[type="text"],
.form-item input[type="datetime"],
.form-item input[type="password"],
.form-item input[type="number"],
.form-item textarea,
.form-item select,
.app-input-group input[type="text"],
.app-input-group input[type="datetime"],
.app-input-group input[type="password"],
.app-input-group input[type="number"],
.app-input-group textarea,
.app-input-group select {
    display: block;
    margin: 0.5em 0;
    width: 100%;
    font-family: century-gothic, sans-serif;
    font-size: 1em;
    padding: 1.5em 1em 0.5em 1em;
    background: var(--bs-body-bg);
    background-size: auto 200%;
    transition: all 0.3s ease-in-out;
    outline: none;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.5em;
}

    .form-item input[type="text"]:hover,
    .form-item input[type="datetime"]:hover,
    .form-item input[type="password"]:hover,
    .form-item input[type="number"]:hover,
    .form-item .app-input-group:hover,
    .form-item textarea:hover,
    .app-input-group input[type="text"]:hover,
    .app-input-group input[type="datetime"]:hover,
    .app-input-group input[type="password"]:hover,
    .app-input-group input[type="number"]:hover,
    .app-input-group .app-input-group:hover,
    .app-input-group textarea:hover {
        box-shadow: 0 0 3px 3px var(--primaryDark) !important;
    }

    .form-item input.no-label,
    .form-item select.no-label,
    .form-item textarea.no-label,
    .app-input-group input.no-label,
    .app-input-group select.no-label,
    .app-input-group textarea.no-label {
        padding: 0.5em 1em !important;
    }

    .form-item .app-input-group:focus-within,
    .form-item input[type="text"]:focus,
    .form-item input[type="datetime"]:focus,
    .form-item input[type="password"]:focus,
    .form-item input[type="number"]:focus,
    .form-item textarea:focus,
    .form-item select:focus,
    .app-input-group .app-input-group:focus-within,
    .app-input-group input[type="text"]:focus,
    .app-input-group input[type="datetime"]:focus,
    .app-input-group input[type="password"]:focus,
    .app-input-group input[type="number"]:focus,
    .app-input-group textarea:focus,
    .app-input-group select:focus {
        box-shadow: 0 0 3px 3px var(--secondary) !important;
    }

    .form-item input.is-invalid,
    .form-item textarea.is-invalid,
    .form-item select.is-invalid {
        box-shadow: 0 0 3px 3px var(--darkDanger);
    }

.form-item .required,
.form-item :required {
    box-shadow: 0 0 1px 1px var(--primaryDark);
}

    .form-item .required:placeholder-shown,
    .form-item :required:placeholder-shown {
        box-shadow: 0 0 1px 1px var(--darkDanger);
    }

.form-item input + label,
.form-item input:placeholder-shown:focus + label,
.form-item textarea + label,
.form-item textarea:placeholder-shown:focus + label,
.form-item select + label,
.form-item .app-input-group + label {
    pointer-events: none;
    display: block;
    position: absolute;
    width: 100%;
    top: 0.8em;
    left: 1.5em;
    font-size: 0.8em;
    transform: translateY(0);
    opacity: 1;
    color: var(--bs-body-color);
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.form-item input.is-valid + label,
.form-item textarea.is-valid + label,
.form-item select.is-valid + label,
.form-item .app-input-group.is-valid + label {
    color: var( --bs-success-text-emphasis);
}

.form-item input.is-valid,
.form-item textarea.is-valid,
.form-item select.is-valid,
.form-item .app-input-group.is-valid {
    box-shadow: 0 0 1px 1px var(--bs-success-text-emphasis);
}

.form-item input.is-invalid + label,
.form-item textarea.is-invalid + label,
.form-item select.is-invalid + label,
.form-item .app-input-group.is-invalid + label {
    color: var(--bs-danger-text-emphasis);
}

.form-item input::placeholder,
.form-item textarea::placeholder {
    transition: all ease-in-out 0.3s;
}

.form-item input:not(.no-label):placeholder-shown:focus::placeholder,
.form-item textarea:not(.no-label):placeholder-shown:focus::placeholder {
    opacity: 0;
}

.form-item input:placeholder-shown + label,
.form-item textarea:placeholder-shown + label {
    opacity: 0;
    transform: translateY(1.5em);
    z-index: -1;
}

.form-item input.required + label::after,
.form-item input:required + label::after,
.form-item input.required:focus:placeholder-shown + label::after,
.form-item input:required:focus:placeholder-shown + label::after,
.form-item textarea.required + label::after,
.form-item textarea:required + label::after,
.form-item textarea.required:focus:placeholder-shown + label::after,
.form-item textarea:required:focus:placeholder-shown + label::after {
    width: 100%;
    display: block;
    content: "(* required)";
    position: absolute;
    top: 0em;
    right: 1em;
    padding-right: 1.4em;
    text-align: right;
    transform: translateY(0);
    opacity: 1;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.form-item input.currency {
    background: var(--bs-body-bg) url(/Assets/img/gbp.png) 0.5em 1.6em no-repeat;
    padding-left: 1.75em;
}

    .form-item input.currency.no-label {
        background-position: 0.5em 0.6em;
        padding-left: 2em !important;
    }

    .form-item input.currency:placeholder-shown {
        background: white;
    }

.form-item input.required.is-invalid + label::after,
.form-item input.is-invalid:required + label::after,
.form-item textarea.required.is-invalid + label::after,
.form-item textarea.is-invalid:required + label::after {
    color: var(--darkDanger);
}

.form-item input.required:placeholder-shown + label::after,
.form-item input:required:placeholder-shown + label::after,
.form-item textarea.required:placeholder-shown + label::after,
.form-item textarea:required:placeholder-shown + label::after {
    opacity: 0;
    transform: translateY(1.5em);
    z-index: -1;
}

.schedule-row {
    display: flex;
    flex: 1 1 auto;
    padding: 0.1em;
    border: 1px solid transparent;
    align-items: stretch;
    border-radius: 0.5em;
}

    .schedule-row:hover {
        border-color: var(--primaryDark);
    }

    .schedule-row .schedule-title {
        flex-shrink: 0;
        flex-grow: 0;
        display: flex;
        width: 120px;
        flex-flow: column;
        text-align: left;
        align-content: center;
        justify-content: center;
    }

    .schedule-row .schedule-week {
        flex: 1 0 25px;
        cursor: pointer;
        display: flex;
        border-left: 1px solid #ccc;
        text-align: center;
        flex-flow: column;
        align-content: center;
        justify-content: center;
    }

.schedule-week.mot-due {
    border-right: 2px solid var(--primaryDark);
}


.tyre-report {
    border: 2px solid black;
    border-radius: 2em;
    margin: 0 0.5em;
    box-shadow: inset 0 0 5px 2px rgb(0 0 0 / 80%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), radial-gradient(transparent, rgba(0, 0, 0, 0.5)), linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(0, 0, 0, 0.5));
    padding: 0.5em;
}

.tyre-report-inspection {
    border: 2px solid black;
    border-radius: 2em;
    margin: 0 0.5em;
    box-shadow: inset 0 0 5px 2px rgb(0 0 0 / 80%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), radial-gradient(transparent, rgba(0, 0, 0, 0.5)), linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(0, 0, 0, 0.5));
    padding: 0.5em;
}

.tyre-report-summary {
    border: 2px solid black;
    border-radius: 2em;
    margin: 2px;
    box-shadow: inset 0 0 5px 2px rgb(0 0 0 / 80%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), radial-gradient(transparent, rgba(0, 0, 0, 0.5)), linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(0, 0, 0, 0.5));
    padding: 0.5em;
}

.tyre-report .wear {
    color: white;
    font-weight: bold;
    font-size: 14pt;
    padding: 2em 0em;
}

.jb-row {
    display: flex;
    flex-flow: row nowrap;
    flex-basis: 1 1 auto;
    justify-content: space-evenly;
}

    .jb-row > .jb-col {
        align-self: center;
        width: 100%;
    }

        .jb-row > .jb-col.size-auto {
            width: auto;
        }

        .jb-row > .jb-col.no-wrap {
            white-space: nowrap;
        }

    .jb-row.align-stretch > .jb-col, .jb-row.align-top > .jb-col {
        align-self: stretch;
    }

.lightrope {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    margin: -21px 0 0 0;
    padding: 0;
    pointer-events: none;
    width: 100%;
}

    .lightrope li {
        position: relative;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        list-style: none;
        margin: 0;
        padding: 0;
        display: block;
        width: 12px;
        height: 20px;
        border-radius: 50%;
        margin: 20px;
        display: inline-block;
        background: #00f7a5;
        box-shadow: 0px 4px 24px 3px #00f7a5;
        -webkit-animation-name: flash-1;
        animation-name: flash-1;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

        .lightrope li.aqua {
            background: aqua;
            box-shadow: 0px 4px 24px 3px rgba(0, 255, 255, 0.5);
            -webkit-animation-name: flash-aqua;
            animation-name: flash-aqua;
            -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
        }

        .lightrope li.fsred {
            background: #d90812;
            box-shadow: 0px 4px 24px 3px rgba(217, 8, 18, 0.5);
            -webkit-animation-name: flash-fsred;
            animation-name: flash-fsred;
            -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
        }

        .lightrope li.yellow {
            background: #fcca00;
            box-shadow: 0px 4px 24px 3px #fcaa00;
            -webkit-animation-name: flash-yellow;
            animation-name: flash-yellow;
            -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
        }

        .lightrope li.orange {
            background: #fc8b00;
            box-shadow: 0px 4px 24px 3px #fc8b00;
            -webkit-animation-name: flash-orange;
            animation-name: flash-orange;
            -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
        }

        .lightrope li.green {
            background: #48fc00;
            box-shadow: 0px 4px 24px 3px #48fc00;
            -webkit-animation-name: flash-green;
            animation-name: flash-green;
            -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
        }

        .lightrope li.reddish {
            background: #f70094;
            box-shadow: 0px 4px 24px 3px #f70094;
            -webkit-animation-name: flash-reddish;
            animation-name: flash-reddish;
            -webkit-animation-duration: 1.1s;
            animation-duration: 1.1s;
        }

        .lightrope li.medium {
            -webkit-animation-duration: 1.8s;
            animation-duration: 1.8s;
        }

        .lightrope li.fast {
            -webkit-animation-duration: 1.4s;
            animation-duration: 1.4s;
        }

        .lightrope li:before {
            content: "";
            position: absolute;
            background: #222;
            width: 10px;
            height: 10px;
            border-radius: 3px;
            top: -4px;
            left: 1px;
        }

        .lightrope li:after {
            content: "";
            top: -14px;
            left: 9px;
            position: absolute;
            width: 52px;
            height: 18.6666666667px;
            border-bottom: solid #222 2px;
            border-radius: 50%;
        }

        .lightrope li:last-child:after {
            content: none;
        }

        .lightrope li:first-child {
            margin-left: -40px;
        }

@-webkit-keyframes flash-1 {
    0%, 100% {
        background: #00f7a5;
        box-shadow: 0px 4px 24px 3px #00f7a5;
    }

    50% {
        background: rgba(0, 247, 165, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(0, 247, 165, 0.2);
    }
}

@keyframes flash-1 {
    0%, 100% {
        background: #00f7a5;
        box-shadow: 0px 4px 24px 3px #00f7a5;
    }

    50% {
        background: rgba(0, 247, 165, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(0, 247, 165, 0.2);
    }
}

@-webkit-keyframes flash-aqua {
    0%, 100% {
        background: aqua;
        box-shadow: 0px 4px 24px 3px aqua;
    }

    50% {
        background: rgba(0, 255, 255, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(0, 255, 255, 0.2);
    }
}

@keyframes flash-aqua {
    0%, 100% {
        background: aqua;
        box-shadow: 0px 4px 24px 3px aqua;
    }

    50% {
        background: rgba(0, 255, 255, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(0, 255, 255, 0.2);
    }
}

@-webkit-keyframes flash-reddish {
    0%, 100% {
        background: #f70094;
        box-shadow: 0px 4px 24px 3px #f70094;
    }

    50% {
        background: rgba(247, 0, 148, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(247, 0, 148, 0.2);
    }
}

@keyframes flash-reddish {
    0%, 100% {
        background: #f70094;
        box-shadow: 0px 4px 24px 3px #f70094;
    }

    50% {
        background: rgba(247, 0, 148, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(247, 0, 148, 0.2);
    }
}


@-webkit-keyframes flash-green {
    0%, 100% {
        background: #48fc00;
        box-shadow: 0px 4px 24px 3px #48fc00;
    }

    50% {
        background: rgba(72, 252, 0, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(72, 252, 0, 0.2);
    }
}

@keyframes flash-green {
    0%, 100% {
        background: #48fc00;
        box-shadow: 0px 4px 24px 3px #48fc00;
    }

    50% {
        background: rgba(72, 252, 0, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(72, 252, 0, 0.2);
    }
}


@-webkit-keyframes flash-orange {
    0%, 100% {
        background: #fc8b00;
        box-shadow: 0px 4px 24px 3px #fc8b00;
    }

    50% {
        background: rgba(252, 139, 0, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(252, 139, 0, 0.2);
    }
}

@keyframes flash-orange {
    0%, 100% {
        background: #fc8b00;
        box-shadow: 0px 4px 24px 3px #fc8b00;
    }

    50% {
        background: rgba(252, 139, 0, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(252, 139, 0, 0.2);
    }
}


@-webkit-keyframes flash-fsred {
    0%, 100% {
        background: #d90812;
        box-shadow: 0px 4px 24px 3px #d90812;
    }

    50% {
        background: rgba(217, 8, 18, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(217, 8, 18, 0.2);
    }
}

@keyframes flash-fsred {
    0%, 100% {
        background: #d90812;
        box-shadow: 0px 4px 24px 3px #d90812;
    }

    50% {
        background: rgba(217, 8, 18, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(217, 8, 18, 0.2);
    }
}


@-webkit-keyframes flash-yellow {
    0%, 100% {
        background: #fcca00;
        box-shadow: 0px 4px 24px 3px #fcaa00;
    }

    50% {
        background: rgba(252, 202, 0, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(252, 202, 0, 0.2);
    }
}

@keyframes flash-yellow {
    0%, 100% {
        background: #fcca00;
        box-shadow: 0px 4px 24px 3px #fcaa00;
    }

    50% {
        background: rgba(252, 202, 0, 0.4);
        box-shadow: 0px 4px 24px 3px rgba(252, 202, 0, 0.2);
    }
}

.modal-search-results {
    display: block;
    padding: 1em;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    border-radius: 1em;
    position: absolute;
    width: 29%;
    right: 7%;
    top: 8em;
    z-index: 10000;
}

.dash-tile {
    border: 1px solid black;
    border-radius: 0.25em;
    background-image: radial-gradient(transparent, rgba(0, 0, 0, 0.2));
    text-align: center;
}

    .dash-tile .dash-heading {
        font-size: 1em;
        padding: 1em;
        font-weight: bold;
    }

    .dash-tile .dash-headline {
        font-size: 3em;
    }

.clickable {
    cursor: pointer;
}

.dash-tile .dash-number {
    font-size: 1em;
    padding: 1em 1em 0.5em 1em;
}

.dash-good {
    background-color: #34ce57;
    color: white;
}

.dash-warning {
    background-color: #e47905;
    color: white;
}

.dash-danger {
    background-color: #c82333;
    color: white;
}

.ddlContainer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9900;
}

.dropDownList {
    display: block;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.7));
    border: 1px solid #ccc;
    border-radius: 2em;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 0 6px 3px rgba(255, 255, 255, 1);
    padding: 1em;
}

.dropdownItem {
    display: block;
    margin: 1px;
    padding: 0.5em;
    border-radius: 0.5em;
    border: 1px solid transparent;
    cursor: pointer;
    z-index: 5001;
}

    .dropdownItem:hover {
        border: 1px solid #d90812;
        color: white;
        background: #f6131e;
    }

    .dropdownItem.selectedItem {
        border: 1px solid #d90812;
        color: white;
        background: #f6131e;
    }

    .drop-select {
        position:relative;
    }

.drop-select-container {
    position: absolute;
    margin:0.5em;
    top: 2.5em;
    left: 0;
    right: 0;
    background: rgba(var(--bs-body-bg-rgb), 0.7);
    z-index: 9900;
    padding: 0.25em;
    border-radius: 0.5em;
    box-shadow: 0 0 3px 3px var(--secondary)
}

.drop-select-list {
    display: block;
    background: linear-gradient(to bottom, rgba(var(--bs-body-bg-rgb), 0.9), rgba(var(--bs-body-bg-rgb), 0.7));
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}