<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
    --body-offset-top: 90px;
}

@font-face {
    font-family: "Font Awesome 6 Pro";
    src: url('../fonts//pro-fa-regular-400-12.woff2') format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: block;
    unicode-range: U+D7, U+21BB, U+2329-232A, U+23CF-23EE, U+25D0, U+2699, U+26A0, U+2715-2716, U+274C, U+E647-F013, U+F01E-F044, U+F047-F085, U+F089-F0A1, U+F115, U+F123, U+F29C, U+1F34B, U+1F3F7, U+1F4A7, U+1F4C2, U+1F4CC, U+1F4E2, U+1F4F7, U+1F500, U+1F508-1F50A, U+1F50D, U+1F56B, U+1F588, U+1F5B4, U+1F5C1, U+1F5D8-1F5D9, U+1F6AB, U+1F6D2, U+1F9F2;
}

html {
    font-size: 10px;
    overflow-x: hidden;
}


body {
    font-size: 1.4rem;
    margin: 0px;
    color: rgb(33, 37, 41);
}

.application-form {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    font-size: 3.0rem;
    font-weight: bold;
}

h2 {
    font-size: 2.0rem;
    font-weight: bold;
    display: flex;
    width: 98%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*    h2::after {
        content: '';
        border-top: 4px solid var(--divider-colour);
        margin: 0 20px 0 0;
        flex: 1 0 20px;
        margin: 0 0 0 20px;
    }*/

h3 {
    font-size: 1.8rem;
    font-weight: bold;
}

.brand-tool-name {
    font-size: 1.8rem;
    font-weight: bold;
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
    bottom: 6px;
}

h4 {
    font-size: 1.6rem;
    font-weight: bold;
}

h5 {
    font-size: 1.4rem;
    font-weight: bold;
}

h6 {
    font-size: 1.4rem;
    font-weight: normal;
}

button, input[type=button], input[type=submit] {
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    color: var(--primary-text-colour);
    background-color: var(--primary-colour);
    color: white;
    text-decoration: none;
    border: 0px;
    cursor: pointer;
    padding: 0 10px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    min-width: 100px;
}

    button:hover, input[type=button]:hover, input[type=submit]:hover {
        background-color: var(--hover-colour);
    }

.btn-download-report{
    margin-top: 3rem;
    margin-bottom: 3rem;
}

input[type=text], input[type=number], input[type=decimal], select, textarea {
    font-size: 1.4rem;
    border: solid 1px lightgrey;
    padding: 0.8rem;
    border-radius: 2px;
    box-sizing: border-box;
    height: 4rem;
}

    input[type=text]:focus, input[type=number]:focus, input[type=decimal]:focus, select:focus, textarea:focus {
        /*outline: 2px solid var(--primary-colour);*/
        outline: none;
        /*        transition: border ease-in-out 0.25s;
        border-width: 2px;
        border-color: var(--primary-colour);*/
        /*box-shadow: -1px 0px 0 3px var(--primary-colour);*/
        transition: box-shadow linear 0.05s;
        box-shadow: 0px 0px 0 3px var(--primary-colour);
        /*box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.2), 5px 5px 5px rgba(0, 0, 0, 0.2);*/
    }

    input[type=text]:disabled, input[type=number]:disabled, input[type=decimal]:disabled, textarea:disabled {
        background-color: #dbdbdb;
    }

input[type="number"], input[type=decimal] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button,
    input[type=decimal]::-webkit-inner-spin-button,
    input[type=decimal]::-webkit-outer-spin-button {
        -webkit-appearance: none;
    }

select {
    font-size: 1.4rem;
    background-color: white;
    border: solid 1px lightgrey;
    padding: 0.8rem;
    border-radius: 2px;
}

    select:focus {
        outline-color: var(--warning-color);
    }

header {
    position: fixed;
    top: 0px;
    width: 100%;
    background-color: white;
    z-index: 100;
}

main {
    margin: 10px;
    margin-top: var(--body-offset-top);
    flex: 1;
}

nav {
    margin: 15px;
}

    nav .header-main {
        display: flex;
        align-items: center;
        flex-direction: row;
        padding-left: 0px;
    }

        nav .header-main h1 {
            padding: 0px;
            margin: 0px;
            vertical-align: bottom;
        }

            nav .header-main h1 img {
                max-width: 150px;
            }

        nav .header-main .logo-prosize {
            padding-top: 9px;
            padding-left: 15px;
        }

    nav .navigation-links {
        width: 0;
        height: 100vh;
        position: fixed;
        top: 57px;
        right: 0px;
        background-color: var(--nav-menu-colour);
        border-top-left-radius: 8px;
        transition: width 0.2s, padding 0.2s;
        padding: 0;
        box-sizing: border-box;
        line-height: 1.5em;
        font-size: 2rem;
    }

        nav .navigation-links.active {
            width: 100%;
            padding: 2rem;
        }

    nav .menu-toggle-button.active &gt; .bar {
        opacity: 0;
    }

        nav .menu-toggle-button.active &gt; .bar:first-child {
            opacity: 1;
            display: inline;
            transform: rotate(-45deg);
        }

        nav .menu-toggle-button.active &gt; .bar:last-child {
            opacity: 1;
            display: inline;
            transform: rotate(45deg);
        }

    nav .navigation-links a {
        color: white;
    }

    nav .menu-toggle-button {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 24px;
        align-items: end;
        flex-grow: 1;
    }

        nav .menu-toggle-button .bar {
            height: 3px;
            width: 30px;
            background-color: black;
            border-radius: 10px;
            transform-origin: center right;
            transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, opacity 0.2s ease-in-out;
        }

.language-dropdown {
    text-wrap-mode: nowrap;
    font-size: 1.5rem;
}

.language-selector {
    padding: 20px 20px 0 20px;
    line-height: 2.5em;
    display: flex;
}

.language-options {
    background-color: var(--nav-menu-colour);
    border: 1px solid var(--hover-colour);
    margin-left: 20px;
    margin-right: 20px;
    position: fixed;
}

    .language-options a {
        padding: 8px 12px;
        text-decoration: none;
        color: black;
        display: flex;
    }

        .language-options a:hover {
            background-color: var(--hover-colour);
        }

.countryFlag {
    margin-right: 10px;
    width: 21px;
}

footer {
    font-size: 1.4rem;
    padding: 1.4rem;
    color: var(--footer-text-colour);
    background-color: var(--footer-back-colour);
    margin-top: 1.4rem;
}

    footer .copyright-links {
        display: flex;
        justify-content: center;
        font-size: 1.6rem;
        flex-wrap: wrap;
    }

        footer .copyright-links li {
            list-style-type: none;
            margin-right: 30px;
            margin-bottom: 10px;
        }

    footer .copyright-info {
        text-align: center;
    }

    footer a:link {
        color: var(--alternate-link-colour);
    }

    footer a:hover {
        color: var(--alternate-link-hover-colour) !important;
    }

    footer a:visited {
        color: var(--alternate-link-colour);
    }



a {
    color: var(--primary-colour);
    text-decoration: none;
}

    a:hover {
        color: var(--hover-color);
        text-decoration: underline;
    }

.announcmentBanner {
    background-color: #007933;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    color: white;
}

.warningContainer {
    color: var(--warning-color);
    border-top: solid 1px lightgrey;
    margin-right: 10px;
    margin-top: 10px;
    margin-left: 10px;
    padding: 10px 10px 0px 10px;
    font-size: 0.8em;
}

.warningTitleSpan {
    /*font-size: 1rem;*/
    margin: 0px 0px 5px 0px;
}

.warningSubTitleSpan {
    display: block;
    margin: 0px 0px 5px 0px;
    /*font-size: 1rem;*/
}

.warningBodyPara {
    /*font-size: 1rem;*/
    margin: 0px 0px 10px 0px;
}

.bold {
    font-weight: bold;
}

.capitalize {
    text-transform: uppercase;
}

.indent {
    margin-left: 30px;
}

nav ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 2.5em;
}

.LoadingImg {
    position: absolute;
    top: 0px;
    left: 365px;
}

.loader {
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid;
    border-color: #FFF #0000;
    animation: loader 0.5s infinite;
    display: inline-block;
    margin-left: 5px;
}

@keyframes loader {
    to {
        transform: rotate(.5turn);
    }
}

#continue-button-search {
    display: flex;
    align-items: center;
    position: absolute;
    opacity: 1;
}

#continue-button-searching {
    display: flex;
    align-items: center;
    position: absolute;
    opacity: 0;
}

.continue-button-search {
    display: flex;
    align-items: center;
    /*position: absolute;*/
    opacity: 1;
}

.continue-button-searching {
    display: flex;
    align-items: center;
    position: absolute;
    opacity: 0;
}

.button-hide {
    animation: fade-out 0.5s ease;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.button-show {
    animation: fade-in 0.5s ease;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

@keyframes fade-in {
    0% {
        display: none;
        opacity: 0;
    }

    50% {
        display: flex !important;
        opacity: 0;
    }

    100% {
        display: flex !important;
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        display: flex;
        opacity: 1;
    }

    50% {
        display: flex;
        opacity: 0;
    }

    100% {
        display: none !important;
        opacity: 0;
    }
}

.close-button {
    position: absolute;
    top: 30px;
    right: 10px;
    width: 50px;
    height: 50px;
    margin-top: 0rem;
}

.product-information-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    z-index: 300;
    /*display: none;*/
    justify-content: center;
    align-items: center;
}

.product-information-edit-container {
    width: 100%;
    height: 100vh;
    background-color: white;
    padding: 2rem;
    overflow-y: scroll;
    position: relative;
}

    .product-information-edit-container input[type=submit] {
        margin-bottom: 30px;
    }

.change-language-information-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    z-index: 300;
    /*display: none;*/
    justify-content: center;
    align-items: center;
}

.change-language-information-edit-container {
    width: 100%;
    height: 100vh;
    background-color: white;
    padding: 2rem;
    position: relative;
}

    .change-language-information-edit-container input[type=submit]{
        display: inline-block;
        margin-bottom: 0;
        margin-right: 15px;
    }

.application-list-header {
    display: flex;
    width: 100%;
    align-items: center;
    text-align: center;
    margin-top: 5px;
}

.application-list-header-bar {
    display: flex;
    width: 100%;
    align-items: center;
    text-align: center;
    margin-bottom: 0px;
}

.application-list-header-bar::after {
    content: '';
    border-top: 8px solid var(--primary-colour);
    flex: 1 0 20px;
    margin: 0 0 0 20px;
}

@media only screen and (min-width: 1300px) {

    body {
        font-size: 1.8rem;
    }


    h1 {
        font-size: 4.5rem;
        font-weight: bold;
    }

    h2 {
        font-size: 3.2rem;
        font-weight: bold;
    }

    h3 {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .brand-tool-name {
        font-size: 2.5rem;
    }

    h4 {
        font-size: 2.0rem;
        font-weight: bold;
    }

    h5 {
        font-size: 1.8rem;
        font-weight: bold;
    }

    h6 {
        font-size: 1.8rem;
        font-weight: normal;
    }

    input[type=text], input[type=number], input[type=decimal], select, textarea {
        font-size: 1.8rem;
    }

    nav {
        display: flex;
        align-items: center;
        position: relative;
        width: unset;
        margin-left: 10vw;
        height: 100%;
    }

        nav .menu-toggle-button {
            display: none;
        }

        nav .header-main {
            padding-left: unset;
        }

            nav .header-main h1 img {
                max-width: 200px;
            }

        nav ul {
            list-style-type: none;
            display: block;
        }

            nav ul li {
                display: inline-flex;
                margin: 0.3em 1em;
            }

        nav .navigation-links {
            display: flex;
            width: 100%;
            height: 100%;
            position: unset;
            background-color: unset;
            color: #0d0d0e;
            margin-left: 2em;
            align-items: center;
        }

            nav .navigation-links a {
                color: #0d0d0e;
            }

                nav .navigation-links a::before {
                    box-sizing: content-box;
                    pointer-events: none;
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 50%;
                    transform: translate(-50%,0);
                    width: 0;
                    height: 100%;
                    border-bottom: 5px solid var(--primary-colour);
                    opacity: 1;
                    transition: width .2s ease-out;
                    z-index: -1;
                }

                nav .navigation-links a:hover::before {
                    width: 100%;
                }

                nav .navigation-links a:hover {
                    text-decoration: none;
                    color: var(--primary-colour);
                }

    .language-dropdown {
        display: flex;
        /*width: 35%;*/
        justify-content: flex-end;
        flex-grow: 1;
        flex-shrink: 1;
    }

    .language-selector {
        position: relative;
        padding: 0 20px 0 20px;
    }

    .language-options {
        position: absolute;
        background-color: white;
        border: 1px solid #ccc;
        z-index: 1000;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
        bottom: unset;
        top: 3.5em;
    }

        .language-options a {
            padding: 8px 12px;
            text-decoration: none;
            color: black;
        }

    nav .language-options a::before {
        border-bottom: none;
    }

            .language-options a:hover {
                background-color: #f1f1f1;
            }

    header {
        height: 75px;
    }

    main {
        margin-top: 120px;
        margin-bottom: 5rem;
        margin-left: auto;
        margin-right: auto;
        width: 70vw;
        max-width: 1300px;
    }

    footer {
    }

    .product-information-edit-container {
        width: unset;
        height: unset;
        position: relative;
        max-width: 50%;
    }

    .product-information-container {
        background-color: rgba(0,0,0,0.3);
        /*opacity: 0.2;*/
    }

    .change-language-information-edit-container {
        width: unset;
        height: unset;
        position: relative;
        max-width: 50%;
    }

    .change-language-information-container {
        background-color: rgba(0,0,0,0.3);
        /*opacity: 0.2;*/
    }
}

@media only screen and (min-width: 1300px) and (max-width: 1775px) {

    main {
        margin-top: 120px;
    }

    header {
        height: unset;
    }

    nav .header-main h1 img {
        max-width: 125px;
    }

    nav .header-main .logo-prosize img {
        max-width: 100px;
    }

    nav .header-main .logo-prosize {
        padding-top: 0px;
    }

    nav .navigation-links {
        font-size: 1.6rem;
    }

    nav .header-main {
        flex-direction: column;
    }

}

    .external-link {
        font-family: 'Font Awesome 6 Pro';
    }

        .external-link::before {
            content: '\f08e';
            font-family: 'Font Awesome 6 Pro';
            margin-left: 3px;
        }
</pre></body></html>