﻿
/* FONTS */
@font-face {
    font-family: Nitti Grotesk Reg;
    font-weight: normal;
    font-style: normal;
    /*font-display: auto;*/
    src: url("/Content/fonts/NittiGrotesk-Normal.otf");
    src: url("/Content/fonts/Nitti_Grotesk-Regular.eot") format("embedded-opentype"), url("/Content/fonts/Nitti_Grotesk-Regular.woff2") format("woff2"), url("/Content/fonts/Nitti_Grotesk-Regular.woff") format("woff");
}

@font-face {
    font-family: Nitti Grotesk It;
    font-weight: normal;
    font-style: italic;
    src: url(fonts/NittiGrotesk-NormalItalic.otf);
}

@font-face {
    font-family: Nitti Grotesk Bd;
    font-weight: bold;
    font-style: normal;
    /*font-display: auto;*/
    src: url("/Content/fonts/NittiGrotesk-Bold.otf");
    src: url("/Content/fonts/Nitti_Grotesk-Bold.eot") format("embedded-opentype"), url("/Content/fonts/Nitti_Grotesk-Bold.woff2") format("woff2"), url("/Content/fonts/Nitti_Grotesk-Bold.woff") format("woff");
}

/*FINE FONTS */


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/* NORMALIZE */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1em;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* FINE NORMALIZE*/

:root {
    --base-color-almost-black: #313131;
    --base-color-gray-very-dark: black; /*#655B58;;*/
    --base-color-gray-dark: #6C757E;
    --base-color-gray: #d9d9d9;
    --base-color-placeholders: #c2c2c2;
    --base-color-gray-light: #f0f0f0;
    --base-color-white: #ffffff;
    /*    --base-color-orange: #FF934E;
    --base-color-orange-light: #FEC9A8;*/
    --base-color-exception: #ce000c;
    --base-button-background: #6C757E;
}

:root {
    --text-color-1: var(--base-color-gray-very-dark);
    --text-color-2: var(--base-color-white);
    --text-color-3: var(--base-color-gray-dark);
    --text-color-4: var(--base-color-gray-light);
    --text-color-5: var(--base-color-exception);
    --text-color-6: var(--base-color-gray-dark);
    /*--text-color-7: var(--base-color-orange-light);*/
    --input-text: var(--base-color-gray-very-dark);
    --input-placeholder-text: var(--base-color-gray);
    --input-disabled-text: var(--base-color-almost-black);
    --button-text-1: var(--base-color-white);
    --button-text-2: var(--base-color-gray-dark);
    --background-color-1: var(--base-color-gray-dark);
    --background-color-2: var(--base-color-gray-light);
    --background-color-3: var(--base-color-white);
    --background-color-4: var(--base-color-gray);
    --background-color-5: var(--base-color-exception);
    --input-background: var(--base-color-gray-light);
    --input-disabled-background: var(--base-color-gray);
    --input-background-on-focus: var(--base-color-gray-light);
    --button-background-1: var(--base-button-background);
    --button-background-2: var(--base-color-gray-light);
    --font-family-regular: 'Nitti Grotesk Reg', Arial, sans-serif;
    --font-family-bold: 'Nitti Grotesk Bd', 'Arial Narrow', Arial, sans-serif;
    --font-family-light: 'Nitti Grotesk SemiLight';
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace
}

*, ::after, ::before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: var(--font-family-regular);
    line-height: 1em;
    color: inherit;
}

html {
    font-family: var(--font-family-regular);
    line-height: 1.15rem;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    font-size: 12px;
    background-color: var(--background-color-2);
}

@-ms-viewport {
    width: device-width
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block
}

    section::after {
        clear: both;
    }


body {
    margin: 0;
    font-family: var(--font-family-regular);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--text-color-1);
    text-align: left;
    background-color: var(--background-color-2);
    width: 100%;
}

[tabindex="-1"]:focus {
    outline: 0 !important
}

hr {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    height: 0;
    overflow: visible
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 5px;
    overflow-wrap: break-word;
    clear: both;
}

p {
    margin-top: 0;
    margin-bottom: 5px;
}

abbr[data-original-title], abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0
}

address {
    margin-bottom: 10px;
    font-style: normal;
    line-height: inherit
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 10px
}

    ol ol, ol ul, ul ol, ul ul {
        margin-bottom: 0
    }

dt {
    font-weight: 700
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 10px
}

dfn {
    font-style: italic
}

b, strong {
    font-weight: bolder
}

small {
    font-size: 0.8rem;
}

sub, sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

a, a:hover, a:visited {
    color: var(--text-color-3);
    -webkit-text-decoration-skip: objects;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.2rem;
}

    a:not([href]):not([tabindex]) {
        text-decoration: none
    }

        a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
        }

        a:not([href]):not([tabindex]):focus {
            outline: 0
        }

code, kbd, pre, samp {
    font-family: monospace,monospace;
    font-size: 1rem
}

pre {
    margin-top: 0;
    margin-bottom: 10px;
    overflow: auto;
    -ms-overflow-style: scrollbar
}

figure {
    margin: 0 0 10px
}

img {
    vertical-align: middle;
    border-style: none
}

svg:not(:root) {
    overflow: hidden
}

table {
    border-collapse: collapse
}

caption {
    padding-top: .75em;
    padding-bottom: .75em;
    color: var(--text-color-1);
    text-align: left;
    caption-side: bottom
}

th {
    text-align: inherit
}

label {
    display: inline-block;
    margin: 0;
    font-family: var(--font-family-regular);
    font-weight: normal;
}

button {
    border-radius: 0;
    line-height: 1.4em;
}

    button:focus {
        outline: 1px dotted;
        /*        outline: 5px auto -webkit-focus-ring-color */
    }

input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: 1.8rem;
    line-height: 18px;
    outline: 0 !important;
    background-color: var(--input-background);
    width: 100%;
    border: solid 1px var(--input-bkgr);
    border-radius: 6px;
    background-color: var(--input-background);
    overflow: visible;
}

    input.input-validation-error {
        box-shadow: 0px 0px 4px red
    }

button, input {
}

select {
    text-transform: none;
    border: solid 1px #7a7a7a;
    overflow: auto;
    resize: vertical;
    padding: 0.22em 0.2em;
    position: static;
    color: var(--input-text);
}

    input::placeholder,
    textarea::placeholder,
    select::placeholder {
        text-transform: uppercase;
        color: var(--base-color-placeholders);
        font-family: var(--font-family-regular);
        font-size: 1.6rem;
        background-repeat: no-repeat;
        background-size: 12px;
        background-position: 0% 75%;
    }

    select option {
        color: var(--input-text);
    }

textarea {
    overflow: auto;
    resize: vertical;
    border: 0;
    margin: 5px 0;
    padding: 0.5em 1em;
    position: static;
}

button, a.button {
    text-transform: none;
    border: solid 1px #7a7a7a;
    border-radius: 2px;
    font-family: var(--font-family-regular);
    color: var(--button-text-1);
    text-transform: uppercase;
    background-color: var(--button-background-1);
    font-size: 1.4rem;
    cursor: pointer;
    border: none;
    text-align: center;
    padding: 0.5em 1em;
    position: static;
    display: inline-block;
    vertical-align: -webkit-baseline-middle;
    vertical-align: middle;
}

button, a.button {
    line-height: 14px
}

[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button
}

    [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
        padding: 0;
        border-style: none
    }

input {
    border: 0;
    padding: 6px 6px;
    position: static;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    input[type=checkbox], input[type=radio] {
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        padding: 0
    }

    input[type=date], input[type=datetime-local], input[type=month], input[type=time] {
        -webkit-appearance: listbox
    }

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 5px;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal
}

progress {
    vertical-align: baseline
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none
}

    [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
        -webkit-appearance: none
    }

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

summary {
    display: list-item;
    cursor: pointer
}

template {
    display: none
}

[hidden] {
    display: none !important
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: inherit;
    font-weight: 500;
    line-height: 1em;
    color: inherit;
    font-family: var(--font-family-bold);
}

.h1, h1 {
    font-size: 2rem;
}

.h2, h2 {
    font-size: 2.5rem;
    font-weight: normal;
    font-family: var(--font-family-bold);
}

.h3, h3 {
    font-size: 1.8rem;
    color: var(--input-text);
}

.h4, h4 {
    font-size: 1.8rem;
    margin-bottom: 1em;
    text-align: left;
    vertical-align: middle;
    font-weight: bold;
    text-decoration: underline;
}

.h5, h5 {
    font-size: 1.4rem;
}


    .h4.highlight, h4.highlight,
    .h5.highlight, h5.highlight {
        color: var(--text-color-2);
    }

span.highlight {
    color: var(--text-color-3);
}

span.warning {
    color: var(--text-color-5);
}

span.username, span.temp-password {
    color: var(--text-color-1);
    padding: 0 1rem 0px 1rem;
    font-family: var(--font-family-bold);
}

.h4.inline, h4.inline,
.h5.inline, h5.inline {
    display: inline-block;
}

.h6, h6 {
    font-size: 1.4rem;
    color: var(--text-color-4);
}

.lead {
    font-size: 1.4rem;
    font-weight: 300
}

.display-1 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-2 {
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1.2
}

.display-3 {
    font-size: 4.6rem;
    font-weight: 300;
    line-height: 1.2
}

.display-4 {
    font-size: 4.4rem;
    font-weight: 300;
    line-height: 1.2
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1)
}

.small, small {
    font-size: 0.8rem;
    font-weight: 400
}

.mark, mark {
    padding: .2em;
    background-color: var(--background-color-1);
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

    .list-inline-item:not(:last-child) {
        margin-right: 5px
    }

.initialism {
    font-size: 0.9rem;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 10px;
    font-size: 1.4rem
}

.blockquote-footer {
    display: block;
    font-size: 0.8rem;
    color: var(--text-color-1)
}

    .blockquote-footer::before {
        content: "\2014 \00A0"
    }

.img-fluid {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .250px;
    background-color: var(--background-color-1);
    border: 1px solid #dee2e6;
    border-radius: .250px;
    max-width: 100%;
    height: auto
}

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: 5px;
    line-height: 1
}

.figure-caption {
    font-size: 0.90rem;
    color: var(--text-color-1)
}

code, kbd, pre, samp {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace
}

code {
    font-size: 0.8rem;
    color: green;
    word-break: break-word
}

a > code {
    color: inherit
}

kbd {
    padding: .20px .40px;
    font-size: 0.8rem;
    color: #fff;
    background-color: #212529;
    border-radius: .20px
}

    kbd kbd {
        padding: 0;
        font-size: 100%;
        font-weight: 700
    }

pre {
    display: block;
    font-size: 0.8rem;
    color: #212529
}

    pre code {
        font-size: inherit;
        color: inherit;
        word-break: normal
    }

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    background-color: var(--background-color-2);
    width: 100%;
    z-index: 1000;
}

form {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    display: inline;
}

.columns {
    width: 100%;
    display: table;
}

    .columns.half {
        width: 50%;
        display: block;
        margin: 0 auto;
    }

    .columns .column {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        border: none;
        display: table-cell;
        background-color: var(--background-color-3);
        vertical-align: top;
        text-align: left;
    }

        .columns .column.c1 {
            display: block;
            width: 100%;
            clear: both;
            padding: 10px 20px;
        }

            .columns .column.c1 > div.contents {
                padding: 0;
            }

        .columns .column.c2 {
            width: 50%;
            max-width: 740px;
            clear: both;
            padding: 10px 20px 20px 20px;
        }

            .columns .column.c2.right {
                background-color: var(--background-color-4);
            }

            .columns .column.c2 .column.c2 {
                padding: 0;
            }

        .columns .column > div.contents {
            padding: 10px 0;
        }

        .columns .column textarea {
            min-height: 299px;
            background-image: url('imgs/line.svg');
            background-repeat: repeat;
            /*background-size: 32px 22px;
            background-position-y: 4px;*/
            line-height: 25px;
            padding-top: 5px;
        }

input.error, textarea.error, select.error {
    /*box-shadow: inset 0 -3px 00px #ff0000;*/
}

input.error, textarea.error, select.error {
    border-color: var(--background-color-5) !important;
}

input:focus, textarea:focus, select:focus {
    background-color: var(--input-background-on-focus) !important;
}

input[disabled=disabled], textarea[disabled=disabled] {
    color: var(--input-disabled-text);
    background-color: var(--input-disabled-background);
    background-image: url('imgs/locker.svg');
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: 24px 24px;
}

input[type="email"]::placeholder {
    background-image: url(/Content/imgs/at.svg);
    padding-left: 20px;
}

input[type="search"]::placeholder {
    background-image: url(/Content/imgs/search.svg);
    padding-left: 24px;
}

input[type=file],
input[type=file]::before,
input[type=file]::after {
    margin: 0;
}

input[type=search] {
    background-color: var(--background-color-2);
}

input.mandatory {
    background-image: url(/Content/imgs/mandatory.svg);
    background-position: right 50%;
    background-repeat: no-repeat;
    background-size: 20px 10px;
}

.centered {
    /*width: 1480px;*/
    /*margin: 0 auto;*/
    text-align: center
}

/*@media only screen and (min-width: 1025px) {*/

.error-page {
    background-color: var(--text-color-2);
}

.body-content {
    width: 100%;
    max-width: 1480px;
    margin: 4em auto;
    padding: 0 05px;
}

.page-body {
}

.page-header {
    /*min-height: 25px;*/
}

div.options {
    width: 100%;
    clear: both;
    vertical-align: central;
    padding: 0 05px;
    text-transform: uppercase;
}

    div.options div {
        display: inline-block;
        vertical-align: middle;
    }


    div.options .radio {
        font-size: 0px;
        padding: 8px;
        border-radius: 20px;
        border: solid 1px black;
        background-color: transparent;
        transition-property: background-color;
        transition-duration: 0.2s;
        transition-timing-function: linear;
        transition-delay: 0s;
        height: 10px;
        width: 10px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-color: var(--background-color-3);
        line-height: 22px;
    }

        div.options .radio:hover {
            background-color: var(--input-background-on-focus);
        }

        div.options .radio.selected {
            background-color: var(--input-background-on-focus);
        }

    div.options label {
        color: var(--text-color-1);
    }

footer {
    background-color: #000;
    padding: 10px;
    height: 30px;
    font-size: 1rem;
    bottom: 0;
    width: 100%;
    color: var(--text-color-2);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    position: fixed;
    bottom: 0;
    display: none;
}

    footer .company {
        bottom: 0;
        text-align: center;
        width: 100%;
    }

    footer a, footer a:visited {
        color: var(--text-color-2);
        text-decoration: none;
        border: none;
    }

.home-banner {
    height: 300px;
    background: url('imgs/home-banner-01-whide.jpg') no-repeat;
    background-position: 50% 50%;
    background-size: 100% auto;
    width: 100%;
    position: relative;
}

    .home-banner .home-banner-msg {
        font-size: 2.5rem;
        color: var(--text-color-2);
        text-align: center;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

header .title {
    width: 100%;
    text-align: center;
    bottom: 0;
    position: absolute;
}

/*#navbarNav {
    position: absolute;
    right: 10px;
    position: absolute;
    top: 20px;*/
/*transform: translate(0%, -50%);*/
/*}

    #navbarNav ul {
        width: auto;
        margin-left: 10px;
        float: right;
    }

        #navbarNav ul li {
            display: inline;
            list-style: none;
            padding: 0.20px;
        }

            #navbarNav ul li a, #navbarNav ul li span {
                color: var(--text-color-2);
                font-size: 1.8rem;
                text-transform: uppercase;
                font-family: var(--font-family-bold);
            }

            #navbarNav ul li.admin a, #navbarNav ul li.admin span {
                color: yellow;
                font-size: 1.4rem;
                text-transform: unset;
                font-family: var(--font-family-regular);
                font-weight: normal;
            }*/

section {
    width: 100%;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.cs-menu {
    width: 100%;
    background-color: var(--background-color-1);
    font-size: 2.30rem;
    padding: 0.6em 0;
    height: 3.5em;
}

    .cs-menu .cs-menu-item {
        width: 33.33%;
        background-color: var(--background-color-1);
        margin: 0;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: inline;
        float: left;
        border-width: 0 1px 0 00px;
        border-color: var(--text-color-2);
        border-style: solid;
        text-align: center;
        color: var(--text-color-2);
        font-size: inherit;
        padding: 0.4em 0;
    }

        .cs-menu .cs-menu-item:last-child {
            width: 33.34%;
            border-width: 0;
        }

        .cs-menu .cs-menu-item a,
        .cs-menu .cs-menu-item a:visited {
            vertical-align: central;
            display: inline-block;
            text-decoration: none;
            cursor: pointer;
            color: var(--text-color-2);
            font-size: inherit;
        }

            .cs-menu .cs-menu-item.current a,
            .cs-menu .cs-menu-item.current a:hover,
            .cs-menu .cs-menu-item.current a:visited,
            .cs-menu .cs-menu-item a:hover {
                text-decoration: underline;
            }

.columns h2 {
    text-decoration: underline;
}

.float-right {
    float: right;
}

body#tinymce {
    padding: 05px;
    background-color: var(--background-color-3);
    font-size: 1.6rem;
    line-height: 2.40rem;
}

.CookiePolicyPopup {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 20px;
    text-align: center;
    background-color: #000000FF;
    color: #FFFFFF;
    border-top: solid 2px #a0a0a0;
    z-index: 9999;
}

    .CookiePolicyPopup button {
        border: none;
        background-color: silver;
        color: black;
        margin: 08px 0;
        padding: 0.20px 15px;
        font-size: 1.10rem;
        outline: 0 !important;
        cursor: pointer;
    }

        .CookiePolicyPopup button:hover {
            text-decoration: underline;
        }

/*.faqmostrated {
}

    .faqmostrated .item {*/
/*border-bottom: 1px solid white;*/
/*cursor: pointer;
        padding: 4px;
        background-color: #f0f0f0;
        margin-bottom: 05px;
    }

        .faqmostrated .item:hover {
            background-color: #ffffffAA;
        }

        .faqmostrated .item:last-child {
            margin-bottom: 0;
        }

        .faqmostrated .item .title {
            font-weight: 700;
        }

            .faqmostrated .item .title a,
            .faqmostrated .item .title a:visited,
            .faqmostrated .item .title a:hover {
                font-weight: 700;
                font-size: inherit;
                color: black;
                text-decoration: none;
            }

        .faqmostrated .item .content {*/
/*min-height: 30px;*/
/*max-height: 30px;
            overflow: hidden;
        }

            .faqmostrated .item .content a,
            .faqmostrated .item .content a:visited,
            .faqmostrated .item .content a:hover {
                font-weight: 400;
                font-size: inherit;
                color: black;
                text-decoration: none;
            }

.faq-view {
}

    .faq-view .title {
        font-weight: 700;
        font-size: 1.20rem;
        color: #505050;
        margin-bottom: 05px;
    }

    .faq-view .content {
        background-color: #f0f0f0;
        padding: 4px;
    }

    .faq-view .models label {
        font-weight: 700;
        font-size: 1rem;
        color: #505050;
    }

.all-faqs {
    position: absolute;
    padding-right: 20px;
    width: auto;
    height: auto;
    right: 0;
}

#faqs {
    margin-top: 5px;
}

    #faqs .item {
        margin-bottom: 05px;
        border-bottom: solid 1px #f0f0f0;
    }

        #faqs .item .title {
            font-weight: 700;
            font-size: 1.20rem;
            color: #505050;
            padding: 0.20px 20px 0.20px 0.20px;
            background-image: url("/Content/imgs/down.svg");
            background-size: 24px 24px;
            background-position: 100% 50%;
            background-repeat: no-repeat;
            display: block;
            cursor: pointer;
        }

            #faqs .item .title.current {
                color: black;
            }

        #faqs .item .content {
            background-color: #f0f0f0;
            padding: 4px;*/
/*display: none;*/
/*}

        #faqs .item .models label {
            font-weight: 700;
            font-size: 1rem;
            color: #505050;
        }*/

.allowed-files {
    font-size: 0.8rem;
}

.field-validation-error,
.error-message {
    font-weight: 400;
    font-size: 1.20rem;
    padding: 0.20px 0;
    color: var(--text-color-5);
}
/*}*/

a.manual {
    background: url('imgs/manual.svg') no-repeat;
    background-size: 28px 28px;
    background-position: 50% 50%;
    padding: 22px;
}

a.assistence {
    background: url('imgs/assistence.svg') no-repeat;
    background-size: 28px 28px;
    background-position: 50% 50%;
    padding: 22px;
}

.header-print {
    display: none;
}

.columns .column.relative {
    position: relative
}

.printer {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    padding: 20px;
    background: #fff url('imgs/printer.svg') no-repeat;
    background-size: 40px 40px;
    cursor: pointer;
}

.form-message {
    font-size: 1.2rem;
    color: var(--text-color-1);
    display: block;
    padding: 0em 10px;
}

/*@media print {
    body {
        width: 720px;
        background-color: var(--background-color-3);
        padding: 0;
    }

    header, footer, .navbar, .home-banner, .cs-menu {
        display: none;
    }

        footer a {
            display: none;
        }

    .header-print {
        display: block;
        width: 100%;
        padding: 10px 20px;
    }

    .body-content {
        margin: 0;
        padding: 0;
    }

    .printer {
        display: none;
    }
}*/
/*
.tree {
    padding: 05px;
}

    .tree .tree-branch {
        padding-left: 10px;
    }

    .tree > .tree-branch {
        padding: 0;
    }

    .tree .tree-branch .tree-node {
        padding-left: 10px;
        line-height: 10px;
    }

        .tree .tree-branch .tree-node .tree-node {
            color: dimgray;
        }

            .tree .tree-branch .tree-node .tree-node .tree-node {
                color: dimgray;
            }

                .tree .tree-branch .tree-node .tree-node .tree-node .tree-node {
                    color: darkmagenta;
                }

    .tree .tree-branch:first-child .tree-node {
        padding-left: 0;
    }

    .tree .tree-branch .tree-node.hidden {
        color: darkgray !important;
    }*/

.hidden .corso-table .corso-row .corso-cell.buttons a {
    display: none;
}


/*.slideContainer {
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: none;
}

    .slideContainer .slideViewed {
        height: 5px;
        background-color: silver;
        position: relative;
        width: 100%;
        border: none;
        overflow: hidden;*/
/*    }

    .slideContainer .slideViewed {*/
/*position: absolute;
        background-color: #3a464f;
        top: 0;
        border: none;
        border-radius: 3px;
    }*/


.page-body {
    display: grid;
    grid-template-columns: 270px 1620px;
}

    .page-body .left-side {
        background-color: var(--background-color-3);
        padding: 10px 20px;
        position: relative;
    }

    .page-body .right {
        background-color: red;
    }

    .page-body .left-side #mainMenuFooter {
        line-height: 1em;
        position: fixed;
        bottom: 20px;
    }

    .page-body.public {
        background-image: url(/Content/imgs/180.jpg);
        background-repeat: repeat;
        background-position: 0 0;
        display: block;
    }

    .page-body.login {
        grid-template-columns: 270px auto;
    }

        .page-body.login .right-side {
            position: relative;
            padding: 10px 20px;
            background-color: var(--background-color-2);
            overflow: hidden;
        }

        .page-body.login .sections section {
            background: url(/Content/imgs/180.jpg) no-repeat;
        }

        .page-body.login .password-cell {
            display: grid;
            grid-template-columns: 80% 20%;
            margin: 0;
            font-family: inherit;
            font-size: 1.8rem;
            line-height: 18px;
            outline: 0 !important;
            background-color: var(--input-background);
            width: 100%;
            border: solid 1px var(--input-bkgr);
            border-radius: 6px;
            background-color: var(--input-background);
            overflow: visible;
        }

            .page-body.login .password-cell .eye {
                background: url(/Content/imgs/show.svg) no-repeat;
                background-position: center center;
                background-size: 24px 24px;
            }

.request-section {
    width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: solid 1px var(--gray-very-light);
    border-radius: 5px;
    display: block;
    background-color: var(--background-color-3);
}

    .request-section input {
        margin: 2px 0;
        width: 300px;
    }

.main-menu,
.user-menu,
.team-admin-menu {
    display: grid;
    grid-gap: 25px;
    width: 100%;
    margin: 40px 0;
}

    .main-menu .menu-item,
    .user-menu .menu-item,
    .team-admin-menu .menu-item {
        display: grid;
        grid-template-columns: auto 40px;
        vertical-align: middle;
        align-items: center;
    }

    .main-menu a.menu-item-icon,
    .user-menu a.menu-item-icon,
    .team-admin-menu a.menu-item-icon {
        background-repeat: no-repeat;
        background-size: 16px 16px;
        /*background-position: 60% 10%;*/
        background-position: right 50%;
        background-image: url(/Content/imgs/arrow-right_c.svg);
        width: 24px;
        height: 24px;
        cursor: pointer;
    }

        .main-menu a.menu-item-icon.current,
        .user-menu a.menu-item-icon.current,
        .team-admin-menu a.menu-item-icon.current {
            background-image: url(/Content/imgs/arrow-right.svg);
        }

    .main-menu .menu-item-text,
    .user-menu .menu-item-text,
    .user-menu .menu-item-text,
    .team-admin-menu .menu-item-text {
        text-align: left;
        vertical-align: middle;
        font-weight: bold;
        font-size: 1.7rem;
        color: var(--text-color-3);
        cursor: pointer;
        padding-left: 2rem;
    }

        .main-menu .menu-item-text.current,
        .user-menu .menu-item-text.current,
        .team-admin-menu .menu-item-text.current {
            color: var(--text-color-1);
        }

        .main-menu .menu-item-text:hover,
        .user-menu .menu-item-text:hover,
        .team-admin-menu .menu-item-text:hover {
            text-decoration: underline;
        }

        .main-menu .menu-item-text.admin {
            color: var(--text-color-5);
        }

    .main-menu a.menu-item-text,
    .user-menu a.menu-item-text,
    .team-admin-menu a.menu-item-text {
        line-height: 1em;
        font-size: 2rem;
    }

    .main-menu a.menu-item-icon.dashboard {
        /*background-image: url(imgs/dashboard.svg);*/
    }

        .main-menu a.menu-item-icon.dashboard.current {
            /*background-image: url(imgs/dashboard_c.svg);*/
        }

    .main-menu a.menu-item-icon.courses {
        /*background-image: url(imgs/training.svg);*/
    }

        .main-menu a.menu-item-icon.courses.current {
            /*background-image: url(imgs/training_c.svg);*/
        }

    .main-menu a.menu-item-icon.progress {
        /*background-image: url(imgs/progress.svg);*/
    }

        .main-menu a.menu-item-icon.progress.current {
            /*background-image: url(imgs/progress_c.svg);*/
        }

    .main-menu a.menu-item-icon.test {
        /*background-image: url(imgs/test.svg);*/
    }

        .main-menu a.menu-item-icon.test.current {
            /*background-image: url(imgs/test_c.svg);*/
        }

    .main-menu a.menu-item-icon.certificate {
        /*background-image: url(imgs/certificate.svg);*/
    }

        .main-menu a.menu-item-icon.certificate.current {
            /*background-image: url(imgs/certificate_c.svg);*/
        }

    .main-menu a.menu-item-icon.library {
        /*background-image: url(imgs/movie.svg);*/
    }

        .main-menu a.menu-item-icon.library.current {
            /*background-image: url(imgs/movie_orange.svg);*/
        }

    .main-menu a.menu-item-icon.settings {
        /*background-image: url(imgs/settings.svg);*/
    }

        .main-menu a.menu-item-icon.settings.current {
            /*background-image: url(imgs/settings_c.svg);*/
        }

    .main-menu a.menu-item-icon.team {
        /*background-image: url(imgs/team.svg);*/
    }

        .main-menu a.menu-item-icon.team.current {
            /*background-image: url(imgs/team_c.svg);*/
        }

    .main-menu a.menu-item-icon.admin {
        /*background-image: url(imgs/admin_c.svg);*/
    }

    .main-menu.footer {
        margin: 1rem 0;
    }

        .main-menu.footer .menu-item-text {
            /*            text-align: left;
            vertical-align: middle;
            font-weight: normal;
            font-size: 1.4rem;
            color: var(--text-color-3);
            cursor: pointer;*/
            padding: 0
        }

        .main-menu.footer .menu-item-icon {
            display: none;
        }

.page-body .right-side {
    position: relative;
    padding: 10px 20px;
    background-color: var(--background-color-2);
}

.login-background {
    background-image: url('imgs/180.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
}

.user-button {
    position: absolute;
    top: 0px;
    right: 40px;
}

    .user-button .initials,
    .user-panel .initials {
        top: 0;
        right: 0;
        cursor: pointer;
        width: 60px;
        height: 60px;
        text-align: center;
        font-family: var(--font-family-light);
        font-size: 2.5rem;
        color: var(--text-color-2);
        padding: 40px 0;
        background-color: transparent;
        background-image: url(/Content/imgs/user.svg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: 50% 50%;
        line-height: 0;
    }


.user-panel {
    display: none;
    position: fixed;
    width: 350px;
    background-color: var(--background-color-3);
    top: 0;
    right: 0;
    padding: 10px;
    font-size: 1.4rem;
    border-left: var(--text-color-1) 2px solid;
    background-color: var(--background-color-2);
    /*    background-image: url(/Content/imgs/bg_1.svg);
    background-size: 3px;*/
}

    .user-panel .initials {
        cursor: default;
        margin: 0 auto;
    }

    .user-panel .user-info {
        width: 100%;
        text-align: center;
    }

    .user-panel .title {
        font-size: 1.8rem;
        color: var(--text-color-3);
        font-weight: bold;
    }

    .user-panel .close-button {
        background-image: url(imgs/arrow-right.svg);
        background-repeat: no-repeat;
        background-size: 30px 30px;
        background-position: 50% 50%;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 50%;
        cursor: pointer;
    }

    .user-panel .language-select {
        padding: 0 40px;
    }


.user-menu .menu-item-icon.logout {
    /*background-image: url(imgs/logout.svg);*/
}

.user-menu .menu-item-icon.change-password {
    /*background-image: url(imgs/password.svg);*/
}

.user-menu .menu-item-icon.privacy {
    /*background-image: url(imgs/privacy.svg);*/
}

.user-menu {
    padding-left: 20px;
}


.team-admin-button {
    position: absolute;
    top: 10px;
    right: 40px;
}

    .team-admin-button .initials {
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        text-align: center;
        vertical-align: middle;
        background-image: url(/Content/imgs/gears.svg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: 50% 50%;
        font-size: 5rem;
        line-height: 40px;
        color: var(--text-color-3);
        font-family: var(--font-family-light);
        padding-top: 2.90px;
        cursor: pointer;
    }

.team-admin-panel {
    display: none;
    position: fixed;
    width: 300px;
    background-color: var(--background-color-3);
    top: 0;
    right: 0;
    padding: 10px;
    font-size: 1.4rem;
    border-left: var(--text-color-1) 2px solid;
    background-image: url(/Content/imgs/bg_1.svg);
    background-size: 3px;
}

    .team-admin-panel .initials {
        cursor: default;
        margin: 0 auto;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        text-align: center;
        vertical-align: middle;
        background-image: url(/Content/imgs/gears.svg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: 50% 50%;
        font-size: 5rem;
        line-height: 4em;
        color: var(--text-color-3);
        font-family: var(--font-family-light);
        padding-top: 2.90px;
        cursor: pointer;
    }

    .team-admin-panel .user-info {
        width: 100%;
        text-align: center;
    }

    .team-admin-panel .title {
        font-size: 1.8rem;
        color: var(--text-color-3);
        font-weight: bold;
    }

    .team-admin-panel .close-button {
        background-image: url(imgs/arrow-right.svg);
        background-repeat: no-repeat;
        background-size: 30px 30px;
        background-position: 50% 50%;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 50%;
        cursor: pointer;
    }

    .team-admin-panel .menu-item-icon.logout {
        background-image: url(imgs/logout.svg);
    }

    .team-admin-panel .menu-item-icon.import-members {
        background-image: url(imgs/import-members.svg);
    }

    .team-admin-panel .menu-item-icon.export-courses {
        background-image: url(imgs/export-courses.svg);
    }

    .team-admin-panel .menu-item.separator {
        height: 2px;
        width: 100%;
        margin: 10px 0;
        border-top: solid 1px var(--gray-light);
        border-bottom: solid 1px var(--gray-very-light);
    }

#searchForm {
    width: 100%;
    display: none;
    grid-row-gap: 05px;
}

.progress-bar-line {
    background-color: var(--text-color-2);
    background-image: url(imgs/rect_orange.svg);
    background-repeat: no-repeat;
    background-size: 0 0;
    background-position: 0% 50%;
    width: 100%;
    height: 3px;
    border-radius: 3px;
}

.progress-bar-steps {
    display: grid;
    grid-template-columns: 40px 40px 40px 40px 40px;
    grid-column-gap: 0.20px;
    width: 100%;
}

    .progress-bar-steps > div {
        background-color: var(--text-color-2);
        width: 100%;
        height: 3px;
        overflow: hidden;
    }

        .progress-bar-steps > div div {
            background-color: var(--text-color-3);
            height: 100%;
        }

.progress-bar-stars {
    display: grid;
    grid-template-columns: 50px 50px 50px 50px 50px;
    width: 100%;
    grid-column-gap: 4px;
}

    .progress-bar-stars > div {
        width: 50px;
        height: 50px;
        overflow: hidden;
        position: relative;
        background: url(/Content/imgs/star.svg) no-repeat;
        background-size: 50px;
    }

        .progress-bar-stars > div div.score {
            background-color: var(--background-color-4);
            height: 50px;
        }

        .progress-bar-stars > div div.overlay {
            background-image: url(imgs/star_neg.svg);
            background-size: 50px 50px;
            background-position: 50% 50%;
            position: absolute;
            height: 50px;
            width: 50px;
            top: 0;
            left: 0;
            z-index: 100;
        }

.more, a.more {
    background-image: url(/Content/imgs/small_arrow_right.svg);
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: 100% 51%;
    padding-right: 16px;
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 1.4rem;
    color: var(--text-color-1);
}

.sections {
    display: grid;
    grid-gap: 20px;
}

    .sections section {
        background-color: var(--background-color-3);
        border-radius: 5px;
        position: relative;
        float: left;
        padding: 20px 40px;
        font-size: 1.6rem;
        line-height: 1em;
    }

        .sections section.highlight {
            background-color: var(--background-color-1);
            color: var(--text-color-4);
            font-size: 2rem;
        }

            .sections section.highlight .message {
                text-align: left;
                vertical-align: middle;
                font-weight: normal;
                font-size: 2rem;
                width: 600px;
            }

            .sections section.highlight input::placeholder {
                color: var(--base-color-placeholders);
            }

            .sections section.highlight select.unselected,
            .sections section.highlight select option:first-child {
                text-transform: uppercase;
                color: var(--input-placeholder-text);
                font-family: var(--font-family-regular);
                font-size: 1.6rem;
                background-repeat: no-repeat;
                background-size: 12px;
                background-position: 0% 75%;
                padding-top: 0.52rem;
                padding-bottom: 0.52rem;
            }

            .sections section.highlight input {
                color: var(--input-text);
                background-color: var(--input-background);
            }

        .sections section.message {
            display: grid;
            grid-row-gap: 20px;
        }

            .sections section.message .buttons {
                text-align: left;
            }

        .sections section .table {
            display: grid;
            grid-template-columns: 33% auto 33%;
            grid-column-gap: 30px;
            grid-row-gap: 5px;
            grid-template-areas: "a b c" "d e f" "g h i";
        }

            .sections section .table .cell {
                min-height: 4rem;
                position: relative;
            }

                .sections section .table .cell.empty {
                    position: relative;
                    font-size: 0;
                    color: transparent;
                }

            .sections section .table.one-col {
                grid-template-columns: auto;
                grid-column-gap: 30px;
                grid-row-gap: 5px;
                grid-template-areas: none;
                grid-template-areas: none
            }

                .sections section .table.one-col > div {
                    text-align: center;
                }

section.total-score {
    grid-area: a;
}

    section.total-score .current-score {
        position: absolute;
        width: 250px;
        height: 50px;
        bottom: 40px;
        right: 40px;
    }

section.activity-panel {
    grid-area: b;
    overflow: hidden;
}

    section.activity-panel .items {
        padding-top: 30px;
        display: grid;
        grid-template-columns: 80px auto;
        grid-column-gap: 10px;
        grid-row-gap: 30px;
        font-size: 2rem;
        line-height: 20px;
        align-items: center;
    }

        section.activity-panel .items > label {
            text-align: left;
        }

        section.activity-panel .items .circle {
            height: 60px;
            width: 60px;
            border: solid 1px var(--text-color-1);
            border-radius: 60px;
            text-align: center;
            font-size: 3rem;
            padding-top: 17px;
        }

.course.code,
.test.code {
    color: var(--text-color-3) !important;
    font-family: var(--font-family-bold);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1em;
    text-transform: uppercase;
    display: none;
}

.course.title,
.test.title {
    color: var(--text-color-1);
    font-family: var(--font-family-bold);
    font-weight: bold;
    font-size: 1.7rem;
    line-height: 1em;
    margin: 5px 0;
    min-height: 2em;
    overflow-wrap: anywhere;
    overflow: hidden;
}

.media.title {
    color: var(--text-color-1);
    font-family: var(--font-family-bold);
    font-weight: bold;
    font-size: 1.7rem;
    line-height: 1em;
    margin: 5px 0;
    min-height: 2em;
    overflow-wrap: anywhere;
    overflow: hidden;
}

.course.level,
.test.level {
    color: var(--text-color-3) !important;
    font-family: var(--font-family-bold);
    font-weight: bold;
    font-size: 1.20rem;
    line-height: 1em;
    text-transform: uppercase;
    text-align: right;
}

.course.step-of-steps,
.test.step-of-steps {
    color: var(--text-color-3) !important;
    font-family: var(--font-family-bold);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 0em;
    padding-top: 8px;
    text-transform: uppercase;
}

.course.target-job,
.test.target-job {
    color: var(--text-color-2) !important;
    font-family: var(--font-family-regular);
    font-size: 1.2rem;
    line-height: 1em;
    text-transform: uppercase;
    display: none;
}

.course.area,
.test.area {
    color: var(--text-color-3) !important;
    font-family: var(--font-family-bold);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1em;
    text-transform: uppercase;
}

.course.subject,
.test.subject {
    color: var(--text-color-2) !important;
    font-family: var(--font-family-regular);
    font-size: 1.2rem;
    line-height: 1.2em;
    text-transform: uppercase;
    display: none;
}

.course.expiration,
.course.info {
    color: var(--text-color-1) !important;
    font-size: 1.2rem;
    line-height: 1.2em;
    color: inherit;
    font-family: var(--font-family-bold);
}


.header .course.code,
.header .test.code {
    color: var(--text-color-3) !important;
}

.header .course.title,
.header .test.title {
    font-size: 2.7em;
    color: var(--text-color-1);
    margin: 20px 0;
    padding-bottom: 2px;
}

.header .course.level,
.header .test.level {
    color: var(--text-color-1) !important;
}

.header .course.step-of-steps,
.header .test.step-of-steps {
    color: var(--text-color-2) !important;
}

.header .course.target-job,
.header .test.target-job {
    color: var(--text-color-1) !important;
    display: none;
}

.header .course.area,
.header .test.area {
    color: var(--text-color-1) !important;
}

.header .course.subject,
.header .test.subject {
    color: var(--text-color-1) !important;
    display: none;
}

.header .course.expiration,
.header .course.info {
}

.course div {
    color: inherit;
}

.course.image {
    display: block;
    /*    width: 250px;
    height: 125px;*/
    background-repeat: no-repeat;
    border: none;
    background-size: contain;
    background-position: center center;
}

.course.status-done {
    background-image: url(/Content/imgs/flagged.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 1.20px;
}

.course.status-to-do {
    background-image: url(/Content/imgs/play_orange.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 1.20px;
}

.user-course-assigned-box {
    position: relative;
    padding: 10px;
    display: grid;
    grid-template-columns: auto 30px;
    grid-gap: 2px;
    grid-template-areas: "a b" "c d";
    border-radius: 5px;
    position: relative;
}

    .user-course-assigned-box .course-info-box {
        grid-area: a;
    }

    .user-course-assigned-box.inprogress,
    .user-course-assigned-box.endreached,
    .user-course-assigned-box.finished {
        opacity: 0.8;
    }

    .user-course-assigned-box.expired,
    .user-course-assigned-box.renewalexpired,
    .user-course-assigned-box.abandoned,
    .user-course-assigned-box.testnotpassed {
        background-color: var(--background-color-5);
    }

    .user-course-assigned-box .status {
        position: absolute;
        padding: 16px;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        right: 5px;
        top: 5px;
    }

        .user-course-assigned-box .status.expired {
            background-image: url(/Content/imgs/expired.svg);
        }

        .user-course-assigned-box .status.test-failed {
            background-image: url(/Content/imgs/test-failed.svg);
        }

        .user-course-assigned-box .status.test-passed {
            background-image: url(/Content/imgs/test-passed.svg);
        }

    .user-course-assigned-box .buttons {
        grid-area: b;
        position: relative;
    }

        .user-course-assigned-box .buttons button.remove {
            background: transparent url(imgs/trash_white_gray.svg) no-repeat;
            background-repeat: no-repeat;
            background-size: 100% 100%;
            padding: 6px;
            position: absolute;
            top: 0;
            right: 0;
        }

        .user-course-assigned-box .buttons button.edit {
            /*            width: 12px;
            height: 12px;*/
            background: transparent url(imgs/pencil_white.svg) no-repeat;
            background-repeat: no-repeat;
            background-size: 100% 100%;
            padding: 9px;
            position: absolute;
            top: 20px;
            right: -2px;
        }

    .user-course-assigned-box .reassign {
        grid-area: b;
        position: relative;
    }

        .user-course-assigned-box .reassign button {
            width: 16px;
            height: 16px;
            background: transparent url(imgs/reassign.svg) no-repeat;
            background-repeat: no-repeat;
            background-size: 100% 100%;
            padding: 0;
            position: absolute;
            top: 0;
            right: 0;
        }

    .user-course-assigned-box > div {
        margin: 0;
    }

    .user-course-assigned-box .level {
        display: block;
        position: absolute;
        top: 10px;
        right: 40px;
    }

    .user-course-assigned-box .step-of-steps {
        grid-area: d;
        text-align: right;
    }

    /*
    .user-course-assigned-box .expiration {
        grid-area: f;
    }*/

    .user-course-assigned-box .expiration div {
        /*        color: var(--text-color-1);
        vertical-align: middle;
        display: inline-block;
        font-family: var(--font-family-bold);*/
    }

        .user-course-assigned-box .expiration div.calendar {
            background-color: transparent;
            background-image: url(/Content/imgs/calendar.svg);
            background-size: 100% 100%;
            background-position: center center;
            background-repeat: no-repeat;
            margin: 0;
            padding: 10px;
        }

.user-tests-info-panel {
    background-color: var(--text-color-2);
    display: block;
    padding: 40px;
}

    .user-tests-info-panel .items {
        display: grid;
        grid-template-columns: 365px 100px 100px auto;
        grid-gap: 40px;
        border-bottom: solid 1px var(--text-color-1);
        padding: 10px;
        background-color: var(--background-color-2);
    }

.user-course-box {
    background-color: var(--background-color-4);
    padding: 16px;
    border-radius: 5px;
    position: relative;
    width: 100%;
    color: var(--text-color-2);
    font-size: 1.6rem;
}

    .user-course-box.lang_not_available {
        background-color: var(--background-color-1);
        background-image: url('/Content/imgs/missing_lang.svg');
        background-size: 30px 30px;
        background-position: right 10px top 35px;
        background-repeat: no-repeat;
    }

        .user-course-box.lang_not_available.it {
            background-image: url('/Content/imgs/flags/flag_no_it.svg');
        }

        .user-course-box.lang_not_available.fr {
            background-image: url('/Content/imgs/flags/flag_no_fr.svg');
        }

        .user-course-box.lang_not_available.de {
            background-image: url('/Content/imgs/flags/flag_no_de.svg');
        }

        .user-course-box.lang_not_available.en {
            background-image: url('/Content/imgs/flags/flag_no_en.svg');
        }

        .user-course-box.lang_not_available.sp {
            background-image: url('/Content/imgs/flags/flag_no_sp.svg');
        }


    /*    .user-course-box.assigned {
        background-color: var(--background-color-1);
        background-image: url('/Content/imgs/play_orange.svg');
        background-size: 30px 30px;
        background-position: right 10px top 35px;
        background-repeat: no-repeat;
    }
    */
    .user-course-box.continue {
        background-color: var(--background-color-4);
        background-image: url('/Content/imgs/play_orange.svg');
        background-size: 24px 24px;
        background-position: right 16px bottom 35px;
        background-repeat: no-repeat;
    }
    /*

    .user-course-box.finished {
        background-color: var(--background-color-1);
        background-image: url('/Content/imgs/flagged.svg');
        background-size: 30px 30px;
        background-position: right 10px top 35px;
        background-repeat: no-repeat;
    }

    .user-course-box.expired {
        background-color: var(--background-color-5);
        background-image: url('/Content/imgs/expired.svg');
        background-size: 30px 30px;
        background-position: right 10px top 35px;
        background-repeat: no-repeat;
    }*/

    .user-course-box a.content,
    .user-course-box .content {
        grid-template-areas: "a b" "c d";
        display: grid;
        grid-template-columns: auto 30px;
        grid-gap: 2px;
        width: 100%;
    }

        .user-course-box .content .course-info-box {
            grid-area: a;
        }

        .user-course-box .content .progress {
            grid-area: c;
        }

        .user-course-box .content .step-of-steps {
            grid-area: d;
            text-align: right;
        }

        .user-course-box .content .level {
            position: absolute;
            top: 16px;
            right: 16px;
        }

        .user-course-box .content .status-done,
        .user-course-box .content .status-to-do {
            position: absolute;
            left: 1.70px;
            top: 60px;
        }

        .user-course-box .content .area-image-course {
            grid-area: a1;
            background-image: url(/Content/imgs/training_w.svg);
            background-repeat: no-repeat;
            background-size: 40px 40px;
            background-position: 00px 00px;
            padding: 20px;
        }

.user-test-box {
    background-color: var(--orange-very-light);
    padding: 10px;
    border-radius: 5px;
    position: relative;
    width: 100%;
    color: var(--text-color-2);
    font-size: 1.6rem;
    line-height: 1em;
}

    .user-test-box.cancelled {
        background-color: var(--background-color-2);
    }

    .user-test-box.failed {
        background-image: url('/Content/imgs/test_failed.svg');
        background-size: 32px 4.60px;
        background-position: right 10px top 30px;
        background-repeat: no-repeat;
        background-color: var(--background-color-2);
        background-color: transparent;
        background-size: 100px 60px;
        background-position: left;
    }

    .user-test-box.passed {
        background-image: url('/Content/imgs/tag_certificate.svg');
        background-size: 32px 4.60px;
        background-position: right 10px top 30px;
        background-repeat: no-repeat;
        background-color: var(--background-color-2);
        background-color: transparent;
        background-size: 80px 80px;
        background-position: left;
    }

    .user-test-box.lost {
        background-color: var(--background-color-2);
        background-image: url('/Content/imgs/test_failed.svg');
        background-size: 80px 40px;
        background-position: right 10px top 30px;
        background-repeat: no-repeat;
    }

    .user-test-box.locked {
        /*background-color: var(--background-color-2);*/
        background-image: url('/Content/imgs/tag_lock.svg');
        background-size: 32px 4.60px;
        background-position: right 10px top 30px;
        background-repeat: no-repeat;
        background-color: var(--background-color-2);
        background-color: transparent;
        background-size: 80px 70px;
        background-position: left;
    }

    .user-test-box.assigned {
        background-color: var(--background-color-4);
        background-image: url('/Content/imgs/play_orange.svg');
        background-size: 32px 4.60px;
        background-position: right 10px top 30px;
        background-repeat: no-repeat;
        background-color: var(--background-color-2);
        background-color: transparent;
        background-size: 80px 60px;
        background-position: left;
        cursor: pointer;
    }

    .user-test-box a.content,
    .user-test-box .content {
        grid-template-areas: "a1 b1 c1" "a1 b2 c1" "a1 b3 c1" "a1 b4 c1" "a1 b5 c1" "a1 b6 c1" "a1 b7 c1" "a2 a2 c2";
        display: grid;
        grid-template-columns: 50px auto 30px;
        grid-gap: 2px;
        width: 100%;
    }

        .user-test-box .content .code {
            grid-area: b1;
            color: var(--text-color-1);
        }

        .user-test-box .content .title {
            grid-area: b2;
            color: var(--text-color-3);
        }

        .user-test-box .content .target-job {
            grid-area: b3;
            color: var(--text-color-1);
        }

        .user-test-box .content .area {
            grid-area: b4;
            color: var(--text-color-1);
        }

        .user-test-box .content .subject {
            grid-area: b5;
            color: var(--text-color-1);
        }

        .user-test-box .content .progress {
            grid-area: a2;
            padding-top: 05px;
        }

        .user-test-box .content .step-of-steps {
            grid-area: c2;
            color: var(--text-color-3);
            text-align: right;
        }

        .user-test-box .content .expiration {
            grid-area: b7;
            /*color: var(--orange-light);*/
        }

        .user-test-box .content .level {
            color: var(--text-color-3);
            position: absolute;
            top: 10px;
            right: 10px;
        }

        .user-test-box .content .area-image-test {
            grid-area: a1;
            background-image: url(/Content/imgs/test_c.svg);
            background-repeat: no-repeat;
            background-size: 40px 40px;
            background-position: 00px 00px;
            padding: 20px;
        }

        .user-test-box .content .status-done,
        .user-test-box .content .status-to-do {
            position: absolute;
            left: 1.70px;
            top: 60px;
        }

        .user-test-box .content .info {
            grid-area: b6;
            color: var(--text-color-2);
        }

    /*
    .user-test-box a,
    .user-test-box .content {
        grid-template-areas: "a" "d" "e" "f" "c";
        display: grid;
        grid-template-columns: 100%;
        grid-gap: 2px;
        width: 100%;
        color: var(--text-color-2);
        line-height: 1em;
    }

        .user-test-box .content .title {
            color: var(--text-color-1);
            grid-area: c;
            padding-left: 50px;
        }

        .user-test-box .content .target-job {
            line-height: 1em;
            color: var(--text-color-3);
            grid-area: a;
            padding-left: 50px;
        }

        .user-test-box .content .area {
            line-height: 1em;
            color: var(--text-color-1);
            grid-area: d;
            padding-left: 50px;
            font-size: 1.4rem;
        }

        .user-test-box .content .subject {
            line-height: 1em;
            color: var(--text-color-1);
            grid-area: e;
            padding-left: 50px;
            font-size: 1.2rem;
        }

        .user-test-box .content .step-of-steps {
            color: var(--text-color-3);
            grid-area: g;
            text-align: right;
        }

        .user-test-box .content .level {
            line-height: 1em;
            color: var(--text-color-3);
            position: absolute;
            top: 10px;
            right: 10px;
        }

        .user-test-box .content .progress {
            grid-area: f;
        }
*/
    .user-test-box.finished {
        background-color: var(--text-color-2);
    }

section.user-courses-panel .items {
    display: grid;
    grid-template-columns: 365px 365px 365px 365px;
    grid-gap: 10px;
}

.page-title.dashboard {
    background-image: url(/Content/imgs/dashboard.svg);
    background-repeat: no-repeat;
    background-size: 40px 40px;
    background-position: 0 50%;
    padding: 20px 0 20px 50px;
}

.page-title.courses {
    background-image: url(/Content/imgs/training.svg);
    background-repeat: no-repeat;
    background-size: 60px 60px;
    background-position: 0 50%;
    padding: 20px 0 20px 80px;
}

.page-title.team {
    background-image: url(/Content/imgs/team.svg);
    background-repeat: no-repeat;
    background-size: 60px 60px;
    background-position: 0 50%;
    padding: 20px 0 20px 80px;
}

.page-title.tests {
    background-image: url(/Content/imgs/test.svg);
    background-repeat: no-repeat;
    background-size: 60px 60px;
    background-position: 0 50%;
    padding: 20px 0 20px 80px;
}

.page-title.alert-message {
    background-image: url(/Content/imgs/exclamation.svg);
    background-repeat: no-repeat;
    background-size: 60px 60px;
    background-position: 0 50%;
    padding: 20px 0 20px 80px;
}

.page-title.dashboard,
.page-title.courses,
.page-title.team,
.page-title.tests,
.page-title.library,
.page-title.alert-message {
    background-image: none;
    padding: 15px 0 25px 0px;
}

.sections.dashboard {
    grid-template-columns: 1200px auto;
    grid-template-areas: "a b" "c b" "d d" "e e" "f f";
}

    .sections.dashboard section.user-courses-panel {
        grid-area: c;
    }

        .sections.dashboard section.user-courses-panel .items {
            display: grid;
            grid-template-columns: 360px 360px 360px;
            grid-gap: 20px;
        }

section.tests-to-do-panel {
    grid-area: d;
}

    section.tests-to-do-panel .items {
        /*        display: grid;
        grid-template-columns: 365px 365px 365px 365px;
        grid-gap: 10px;*/
        display: grid;
        /*grid-template-columns: 18.4% 18.4% 18.4% 18.4% 18.4%;*/
        grid-template-columns: 360px 360px 360px 360px;
        grid-gap: 2%;
    }

section div.highlight {
    display: block;
    color: var(--text-color-3);
    font-size: 1.4rem;
    font-family: var(--font-family-bold);
    line-height: 1em;
    font-weight: bold;
}

section.user-courses-assigned-panel.dashboard {
    grid-area: e;
}

section.user-courses-assigned-panel .items {
    display: grid;
    grid-template-columns: 360px 360px 360px 360px;
    grid-gap: 20px;
}

section.user-courses-expired-panel.dashboard {
    grid-area: f;
}

section.user-courses-expired-panel .items {
    display: grid;
    /*grid-template-columns: 18.4% 18.4% 18.4% 18.4% 18.4%;*/
    grid-template-columns: 360px 360px 360px 360px;
    grid-gap: 2%;
}

.table.one-col {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10px;
}

    .table.one-col div.cell {
        padding: 0;
        margin: 0;
    }

        .table.one-col div.cell.buttons {
            text-align: right;
        }


        .table.one-col div.cell.message {
            color: var(--text-color-5);
            ;
            -webkit-text-decoration-skip: objects;
            text-decoration: none;
            font-size: 1.2rem;
        }

.table.two-cols {
    display: grid;
    grid-template-columns: 435px auto;
    grid-gap: 30px;
}

    .table.two-cols div.cell {
        padding: 0;
        margin: 0;
    }

        .table.two-cols div.cell.buttons {
            text-align: right;
        }

.table.three-cols {
    display: grid;
    grid-template-columns: 33% auto 33%;
    grid-column-gap: 30px;
    grid-row-gap: 5px;
    grid-template-areas: "a a a";
}

    .table.three-cols div.cell.fullwidth {
        grid-area: a;
    }

    .table.three-cols div.cell {
        padding: 0;
        margin: 0;
    }

        .table.three-cols div.cell.buttons {
            text-align: right;
        }

    .table.three-cols div.header {
        width: 100%;
        font-size: 1rem;
        background-color: inherit;
        padding: 4px 5px 9px 5px;
        display: none;
    }

    .table.three-cols .buttons {
        width: 100%;
        text-align: right;
        position: relative;
    }

.highlight .buttons button.submit {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--button-text-1);
    border: solid 1px var(--button-text-1);
}



.table input, .table textarea, .table select {
}

.table .very-short input, .table .very-short textarea, .table .very-short select {
    width: 6em;
}

.table .short input, .table .short textarea, .table .short select {
    width: 10em;
}

.table .long input, .table .long textarea, .table .long select {
    width: 20em;
}

.table .very-long input, .table .very-long textarea, .table .very-long select {
    width: 40em;
}

.table .very-long input, .table .very-long textarea, .table .very-long select {
    width: 100em;
}

.table .table-row.centered {
    text-align: center;
}

section .buttons {
    width: 100%;
    text-align: right;
}

section.team-members-panel {
}

    section.team-members-panel .members {
        margin-top: 10px;
    }

    section.team-members-panel input {
        background-color: var(--input-background);
        border: solid 1px var(--input-background);
    }

        section.team-members-panel input:focus {
            /*background-color: var(--background-color-4);*/
        }

.members .item {
    display: grid;
    grid-template-columns: 60px 280px auto;
    grid-gap: 20px;
    margin-bottom: 00px;
    /*padding-top: 10px;*/
    /*border-top: dotted 1px var(--orange-light-light);*/
}

.members > div {
    padding: 10px 10px 0 10px;
    border-radius: 5px;
}

    .members > div.odd {
        background-color: var(--background-color-2);
    }

.members .item:last-child {
    margin-bottom: 0;
}

.members .item > div {
    width: 100%;
}

.members .item .initials {
    width: 60px;
    height: 60px;
    text-align: center;
    font-family: var(--font-family-light);
    font-size: 2.5rem;
    color: var(--text-color-2);
    padding: 0;
    background-color: transparent;
    background-image: url(/Content/imgs/user.svg);
    background-repeat: no-repeat;
    background-size: 60px 60px;
    background-position: 50% 50%;
    line-height: 0;
    margin-top: 1.6rem;
}

    .members .item .initials.alert {
        background-image: url(/Content/imgs/user_alert.svg);
    }

.members .item .col-title {
    font-size: 1.2rem;
    font-weight: normal;
    text-transform: uppercase;
    font-family: var(--font-family-light);
    margin-bottom: 0.4rem;
}

.members .item .contatori {
    display: grid;
    grid-template-columns: 20% 20% 20% 20% auto;
    grid-template-areas: "a b c e f" "d d d d d";
}

    .members .item .contatori .contatore {
        text-align: center;
    }

        .members .item .contatori .contatore .ball {
            width: 50px;
            height: 50px;
            border-radius: 25px;
            border: solid 2px var(--text-color-6);
            text-align: center;
            font-family: var(--font-family-bold);
            font-size: 2rem;
            color: var(--text-color-6);
            padding-top: 12px;
            margin: 0 auto;
        }

.members .item .panel {
    /*border-top: solid 2px var(--text-color-1);*/
    padding-bottom: 20px;
    grid-area: d;
    margin-top: 10px;
    font-size: 1.4rem;
}

    .members .item .panel .panel-lock {
        height: 30px;
        width: 30px;
        background-image: url("/Content/imgs/arrow-down.svg");
        background-repeat: no-repeat;
        background-size: 30px 30px;
        background-position: 50% 50%;
        cursor: pointer;
        margin: 0 auto;
    }

        .members .item .panel .panel-lock.on,
        .course-history-panel.on {
            background-image: url("/Content/imgs/arrow-up.svg");
        }

    .members .item .panel .details {
        width: 100%;
        max-width: 100%;
        display: none;
        overflow: hidden;
    }

.members .item .anagrafica button.edit {
    background: url("/Content/imgs/pencil.svg") no-repeat;
    background-size: 14px;
    background-position: 0 50%;
    padding-left: 16px;
    border: none;
    color: var(--text-color-1);
    padding-top: 0;
    padding-bottom: 0;
    margin: 05px 0;
    font-weight: bold;
}

.members .item .anagrafica button.delete {
    background: url("/Content/imgs/x.svg") no-repeat;
    background-size: 12px;
    background-position: 0 50%;
    padding-left: 14px;
    border: none;
    color: var(--text-color-1);
    padding-top: 0;
    padding-bottom: 0;
    margin: 05px 0;
    font-weight: bold;
}

.members .item .buttons {
    margin: 0;
    padding: 10px 0 0 0;
    text-align: left;
}


.team_Member_detail_panel .grid {
    display: grid;
    grid-gap: 1px;
    grid-template-columns: 200px 120px 120px auto 80px 80px 80px 50px 80px;
    --line-offset: calc(var(--gap) / 2);
    --line-thickness: 2px;
    --line-color: var(--background-color-5);
    text-transform: uppercase;
}

    .team_Member_detail_panel .grid .header {
        border-bottom: solid 1px var(--background-color-2);
        font-weight: bold;
        padding: 0 05px;
        font-size: 1.2rem;
        overflow: hidden;
    }

    .team_Member_detail_panel .grid .cell {
        border-bottom: solid 1px var(--background-color-2);
        line-height: 1em;
        overflow: hidden;
    }

        .team_Member_detail_panel .grid .cell.expired,
        .team_Member_detail_panel .grid .cell.expired * {
            color: var(--text-color-2) !important;
            background-color: var(--background-color-5);
        }

    .team_Member_detail_panel .grid .test {
        background-color: var(--orange-light-light);
        text-align: center;
    }

.usercourse-status {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    margin: 0.20px auto;
}

    .usercourse-status.terminated {
        background-image: url(/Content/imgs/course_terminated.svg);
    }

    .usercourse-status.graduated {
        background-image: url(/Content/imgs/course_terminated.svg);
    }

    .usercourse-status.notgraduated {
        background-image: url(/Content/imgs/course_notgraduated.svg);
    }

    .usercourse-status.inprogress {
        background-image: url(/Content/imgs/course_inprogress.svg);
    }

    .usercourse-status.assigned {
        background-image: url(/Content/imgs/course_assigned.svg);
    }

    .usercourse-status.levelnotreached {
        background-image: url(/Content/imgs/course_levelnotreached.svg);
    }

    .usercourse-status.expired {
        background-image: url(/Content/imgs/expired.svg);
    }

.usertest-status {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    margin: 0.20px auto;
}

    .usertest-status.terminated {
        background-image: url(/Content/imgs/tag_certificate.svg);
    }

    .usertest-status.testpassed {
        background-image: url(/Content/imgs/tag_certificate.svg);
    }

    .usertest-status.testnotpassed {
    }

    .usertest-status.assigned,
    .usertest-status.inprogress {
        background-image: url(/Content/imgs/play_orange.svg);
        background-size: 75% 75%;
    }

    .usertest-status.assignednotactive {
        background-image: url(/Content/imgs/tag_lock.svg);
        background-size: 75% 75%;
    }

    .usertest-status.none {
        background-image: url(/Content/imgs/none.svg);
        background-size: 50% 50%;
    }

ul.dc-autocomplete-list {
    display: none;
    position: absolute;
    background-color: var(--background-color-3);
    border: 1px solid #eee;
    padding: 0.5em 4px 0.5em 4px;
    top: 32px;
    max-height: 100px;
    z-index: 10005;
    border-radius: 9px;
    min-width: 100px;
}

/* HELPERS */
.background-cover {
    background-color: rgba(28, 28, 28, 0.75);
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
}

.popup-box {
    width: 480px;
    margin: 0 auto;
    position: fixed;
    z-index: 1001;
    border-radius: 5px;
    background-color: var(--text-color-2);
}

    .popup-box table {
        width: 100%;
    }

        .popup-box table thead td {
            font-size: 2rem;
            background-color: var(--background-color-4);
            text-align: center;
            border-radius: 5px 5px 0 0;
            color: var(--text-color-3);
        }

        .popup-box table tbody td {
            font-size: 1.8rem;
            text-align: center;
            border-radius: 5px 5px 0 0;
            min-height: 180px;
            padding: 10px 10px 20px 10px;
        }

        .popup-box table tfoot td {
            font-size: 1.4rem;
            text-align: center;
            border-radius: 5px 5px 0 0;
            min-height: 180px;
            padding: 10px 0 10px 0;
        }

            .popup-box table tfoot td button {
                margin-right: 20px;
                min-width: 60px;
            }

                .popup-box table tfoot td button:last-child {
                    margin-right: 0;
                }

.popup {
    height: auto;
    background-color: var(--background-color-2);
    border: solid 1px var(--background-color-3);
    border-radius: 0.40px;
    overflow: hidden;
    box-shadow: rgba(0,0,0,1) 0.20px 0.20px 10px;
}

    .popup thead td {
        padding: 5px 10px;
        background-color: var(--background-color-1);
        color: var(--text-color-4);
        font-style: italic;
        font-size: 1.4rem;
        text-align: center;
    }

    .popup tbody td {
        padding: 15px 50px;
        background-color: var(--background-color-3);
    }

    .popup tfoot td {
        width: 50%;
        text-align: center;
        padding: 05px 20px;
        background-color: var(--background-color-3);
    }

        .popup tfoot td:last-child {
            padding-left: 10px;
        }

        .popup tfoot td:first-child {
            padding-right: 10px;
        }

        .popup tfoot td button {
            width: 100%;
        }

.move-on-popup {
    height: auto;
    /*    background-color: var(--gray-light-light);
    border: solid 1px var(--background-color-3);
*/ overflow: hidden;
}

    .move-on-popup thead td {
        padding: 5px 10px;
        background-color: var(--background-color-1);
        color: var(--text-color-2);
        font-style: italic;
        font-size: 1.4rem;
        text-align: center;
    }

    .move-on-popup tbody td {
        padding: 15px 50px;
        background-color: var(--background-color-3);
    }

    .move-on-popup tfoot td {
        width: 50%;
        text-align: center;
        padding: 05px 20px;
        background-color: var(--background-color-3);
    }

        .move-on-popup tfoot td:last-child {
            padding-left: 10px;
        }

        .move-on-popup tfoot td:first-child {
            padding-right: 10px;
        }

        .move-on-popup tfoot td button {
            width: 100%;
        }

button.calendar {
    background-color: transparent;
    background-image: url(/Content/imgs/calendar.svg);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 10px;
}

.language-select {
    font-family: var(--font-family-bold);
    font-size: 1.7rem;
    text-transform: uppercase;
}

    .language-select select {
        background-repeat: no-repeat;
        background-size: 20px 20px;
        background-position: 10px 50%;
        padding: 6px 6px 6px 40px;
        font-family: var(--font-family-bold);
        font-size: 1.7rem;
        text-transform: uppercase;
        width: 100%;
        background-color: var(--background-color-2);
        border: none;
    }

.lang_it {
    background-image: url(/Content/imgs/flags/flat_flag_it.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 0 50%;
    padding-left: 44px;
}

.lang_en {
    background-image: url(/Content/imgs/flags/flat_flag_en.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 0 50%;
}

.lang_es {
    background-image: url(/Content/imgs/flags/flat_flag_es.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 0 50%;
}

.lang_de {
    background-image: url(/Content/imgs/flags/flat_flag_de.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 0 50%;
}

.lang_fr {
    background-image: url(/Content/imgs/flags/flat_flag_fr.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 0 50%;
}

#team_member_edit_panel {
    /*background-image: url(/Content/imgs/team_c.svg);*/
    background-repeat: no-repeat;
    background-size: 35px 35px;
    background-position: 97.4% 10px;
    padding: 20px 40px;
}

    #team_member_edit_panel.new {
        /*background-image: url(/Content/imgs/team_add.svg);*/
        background-repeat: no-repeat;
        background-size: 35px 35px;
        background-position: 97.4% 10px;
    }

#library_filter_panel {
}

#library-medias-grid {
    display: grid;
    grid-template-columns: 360px 360px 360px 360px;
    grid-gap: 20px;
}

#team_member_assign_course_panel .grid {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 8% 8% 15% 15% 15% auto 140px 150px 29px;
    margin-bottom: 5px;
}

    #team_member_assign_course_panel .grid:last-child {
        margin-bottom: 0;
    }

    #team_member_assign_course_panel .grid.search {
        grid-template-columns: 8% 8% 15% 15% 15% auto 140px 150px 29px
    }

        #team_member_assign_course_panel .grid.search div.empty {
            background-color: inherit;
        }

        #team_member_assign_course_panel .grid.search input,
        #team_member_assign_course_panel .grid.search select,
        #team_member_assign_course_panel .grid.search div:not(.empty) {
            font-size: 1.2rem;
            background-color: var(--background-color-1);
            line-height: 0;
            border-radius: 4px;
            padding: 1px;
            color: var(--text-color-2);
        }

            #team_member_assign_course_panel .grid.search select option {
                color: var(--text-color-2);
            }

                #team_member_assign_course_panel .grid.search select option:first-child {
                    color: var(--orange-light);
                    border-radius: 0;
                }

        #team_member_assign_course_panel .grid.search div.item {
            padding: 0;
        }

    #team_member_assign_course_panel .grid > div {
        font-size: 1.6rem;
        background-color: var(--background-color-2);
        padding: 4px;
        border-radius: 4px;
        color: var(--text-color-1);
    }

    #team_member_assign_course_panel .grid div.item {
        padding: 5px 5px;
        line-height: 0.9em;
        vertical-align: middle;
        display: flex;
        align-items: center;
    }

    #team_member_assign_course_panel .grid div.item,
    #team_member_assign_course_panel .grid div.data,
    #team_member_assign_course_panel .grid div.selection {
        display: flex;
        align-items: center;
    }

    #team_member_assign_course_panel .grid div.header {
        font-size: 1.4rem;
        background-color: inherit;
        padding-bottom: 10px;
        line-height: 0;
        color: var(--text-color-2);
    }

    #team_member_assign_course_panel .grid div.selection {
        background-color: inherit;
        padding: 0.70px 0 0 0;
    }


#Team_Courses_Assign input[type="date"] {
    font-size: 1.6rem;
    border: solid 1px white;
    width: 140px;
    background-color: white;
}

#team_member_assign_course_panel .buttons {
    margin-top: 30px;
}

#team_member_assign_course_panel img {
    width: 20px;
    height: 20px;
    margin: 2px;
}

#team_member_assign_course_panel .button.submit {
    color: var(--button-text-1);
    border: solid 1px var(--button-text-1);
    position: static;
}

.radiobuttons,
.checkboxes {
    width: 100%;
    clear: both;
    vertical-align: central;
    display: grid;
    grid-template-columns: 30px auto;
    grid-column-gap: 10px;
    font-size: 2rem;
    line-height: 1.1em;
    grid-row-gap: 10px;
}

    .radiobuttons .label,
    .checkboxes .label {
        color: inherit;
    }

        .radiobuttons .label.disabled,
        .checkboxes .label.disabled {
            color: var(--text-color-1);
            cursor: default;
        }

        .radiobuttons .label span,
        .checkboxes .label span {
            cursor: pointer;
        }

.radiobutton {
    display: block;
    width: 25px;
    height: 25px;
    border-color: var(--background-color-1);
    border-width: 1px;
    border-style: solid;
    background-image: none;
    background-color: var(--background-color-3);
    border-radius: 25px;
    cursor: pointer
}

    .radiobutton.checked {
        background-image: url(/Content/imgs/radiobutton_selected.svg);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: 100% 100%;
    }

    .radiobutton.disabled {
        color: var(--text-color-4);
    }

    .radiobutton.checked.disabled {
        background-image: url(/Content/imgs/radiobutton_selected_disabled.svg);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: 100% 100%;
    }

.checkbox {
    display: block;
    width: 25px;
    height: 25px;
    border-color: var(--background-color-1);
    border-width: 1px;
    border-style: solid;
    background-image: none;
    background-color: var(--background-color-3);
    border-radius: 6px;
}

    .checkbox.checked {
        background-image: url(/Content/imgs/flagged.svg);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: 100% 100%;
    }

        .checkbox.checked.disabled {
            background-image: url(/Content/imgs/flagged_disabled.svg);
            background-repeat: no-repeat;
            background-position: 50% 50%;
            background-size: 100% 100%;
        }

.do-it-page {
    display: grid;
    grid-column-gap: 40px;
    grid-row-gap: 10px;
    grid-template-columns: auto 420px;
    grid-template-areas: "a1 b1" "a2 b2" "a2 b3" "a2 b4" "a3 a3" "a4 a4";
}

    .do-it-page .course.code {
        grid-area: a1;
    }

    .do-it-page .course.level {
        grid-area: b1;
    }

    .do-it-page .header {
        grid-area: a2;
        line-height: 1.4rem;
    }

    .do-it-page .status {
        grid-area: b2;
        display: grid;
        grid-template-areas: "b1a1 b1b1";
        grid-template-columns: auto 50px;
    }

        .do-it-page .status .progress {
            grid-area: b1a1;
            color: var(--text-color-3);
        }

        .do-it-page .status .step-of-steps {
            grid-area: b1b1;
            color: var(--text-color-3);
            padding: 0;
            margin: 0;
            line-height: 0.5em;
            display: block;
            text-align: right;
        }

    .do-it-page .buttons {
        grid-area: b3;
        text-align: right;
    }

    .do-it-page .status-message {
        font-size: 1.6rem;
        font-weight: bold;
        color: var(--text-color-1);
    }

        .do-it-page .status-message.error {
            color: var(--text-color-5);
            text-decoration: underline;
        }

    .do-it-page .media-title {
        font-family: var(--font-family-bold);
        font-size: 3.2rem;
        padding: 10px 0;
    }

    .do-it-page .media-description {
        padding: 10px 0 0 0;
        line-height: 1.1em;
        grid-area: a3;
    }

    .do-it-page .step-content {
        grid-area: a4;
        padding: 20px;
    }

    .do-it-page .description {
        grid-area: a3;
        border-top: 1px solid var(--gray-very-light);
        padding: 20px 0px;
        line-height: 1em;
    }

        .do-it-page .description .title,
        .do-it-page .test-answers .title {
            color: var(--text-color-3);
            font-size: 2.7rem;
            line-height: 1em;
            font-family: var(--font-family-bold);
        }

        .do-it-page .description .message {
            color: var(--text-color-1);
            font-size: 1.4rem;
            line-height: inherit;
        }

    .do-it-page .questions {
        background-color: var(--text-color-4);
        display: grid;
        grid-gap: 2px;
        font-size: 1.4rem;
        padding: 1rem;
        margin-top: 1rem;
    }

        .do-it-page .questions .item {
            padding: 10px 0;
            display: grid;
            grid-row-gap: 1.20px;
            line-height: 1em;
        }


    .do-it-page.test {
        grid-template-areas: "a1 b1" "a2 b2" "a2 b3" "a2 b4" "a3 a3" "a4 a4" "a5 a5" "a6 a6";
    }

        .do-it-page.test .options-set {
            margin-top: 20px;
        }

        .do-it-page.test .buttons {
            text-align: left;
            grid-area: a5;
        }

        .do-it-page.test .test-answers {
            grid-area: a6;
        }

    .do-it-page .test-answers .title {
        font-size: 1.7rem;
        line-height: 1.7rem;
        color: var(--text-color-1);
    }

    .do-it-page .test-answers .options-set {
        margin-top: 10px;
    }

    .do-it-page .test-answers .radiobuttons,
    .do-it-page .test-answers .checkboxes {
        grid-row-gap: 2px;
        grid-column-gap: 0px;
        grid-template-columns: 30px auto;
    }

        .do-it-page .test-answers .radiobuttons .label,
        .do-it-page .test-answers .checkboxes .label {
            font-size: 1.6rem;
        }

    .do-it-page .test-answers .radiobutton {
        height: 1.4rem;
        width: 1.4rem;
        margin-top: 5px;
    }

    .do-it-page .test-answers .checkbox {
        height: 1.4rem;
        width: 1.4rem;
        border-radius: 3px;
        margin-top: 5px;
    }

    .do-it-page .test-answers .questions .title {
        font-size: 1.7rem;
    }

        .do-it-page .test-answers .questions .title.not-answered {
            color: var(--text-color-5);
        }

.attend-course-progress-line,
.user-test-progress-line {
    display: grid;
    grid-column-gap: 1%;
    bottom: 0;
    height: 6px;
}

    .attend-course-progress-line .step,
    .user-test-progress-line .step {
        height: 6px;
        width: 100%;
        display: grid;
        grid-template: 'a' 'b';
        grid-row-gap: 3px;
        padding-top: 0.60px;
    }

        .attend-course-progress-line .step .bar,
        .user-test-progress-line .step .bar {
            display: inline-block;
            background-color: var(--background-color-2);
            border-radius: 6px;
            height: 8px;
            width: 100%;
        }
            /*            .attend-course-progress-line .step .bar.current,
            .user-test-progress-line .step .bar.current {
                background-color: var(--background-color-2);
            }*/

            .attend-course-progress-line .step .bar.enabled {
                display: inline-block;
                background-color: var(--background-color-4);
                border-radius: 6px;
                height: 8px;
            }

            .attend-course-progress-line .step .bar .step-percentage,
            .user-test-progress-line .step .bar .step-percentage {
                background-color: var(--text-color-3);
                border-radius: 6px;
                height: 8px;
                width: 0;
                cursor: pointer;
            }

            .user-test-progress-line .step .bar.enabled {
                display: inline-block;
                background-color: var(--text-color-3);
                border-radius: 6px;
                height: 8px;
                cursor: pointer;
            }

            .user-test-progress-line .step .bar.current {
                background-color: #b0b0b0;
            }

        .attend-course-progress-line .step div.underline,
        .user-test-progress-line .step div.underline {
            width: 100%;
            padding-top: 5px;
            background-image: none;
        }

            .attend-course-progress-line .step div.underline.current,
            .user-test-progress-line .step div.underline.current {
                background-image: url(/Content/imgs/triangleup.svg);
                background-size: 20px 100%;
                background-position: 50% 50%;
                background-repeat: no-repeat;
                display: none;
            }

.attend-course-media {
    grid-area: g;
}


    .attend-course-media .media-player {
        margin: 0 auto;
        max-width: 1000px;
        max-height: 600px;
    }

    .attend-course-media iframe {
        height: 800px;
        width: 100%;
        margin: 0 auto;
    }

.inner-ajaxloader {
    position: static;
    width: 64px;
    height: 64px;
    background-image: url(/content/imgs/svg_loader_01.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
}

.ajaxloader {
    position: fixed;
    z-index: 2000;
    width: 100px;
    height: 100px;
    background-image: url(/content/imgs/svg_loader_01.svg);
    background-repeat: no-repeat;
}

    .ajaxloader.fullscreen {
        background-color: #e1e1e183;
        background-position: 50% 50%;
    }

        .ajaxloader.fullscreen .ajaxloader-message {
            position: fixed;
            z-index: 2001;
            font-size: 4rem;
            color: var(--text-color-3);
            text-align: center;
            margin-top: 70px;
            text-shadow: 2px 2px 4px black;
        }

.button.last-step {
    background-color: var(--background-color-5);
    background-image: url(/Content/imgs/totheend.svg);
    background-repeat: no-repeat;
    background-size: 2em 1em;
    background-position: right center;
    padding-right: 2em;
}

.button.abandoning {
    background-color: var(--background-color-5);
    background-image: url(/Content/imgs/abandoning.svg);
    background-repeat: no-repeat;
    background-size: 2em 1.6em;
    background-position: right center;
    padding-right: 2em;
}

.button.start,
.button.continue {
    background-image: url(/Content/imgs/start.svg);
    background-repeat: no-repeat;
    background-size: 2em 1em;
    background-position: right center;
    padding-right: 2em;
}

.button.next-step {
    background-image: url(/Content/imgs/rightrightarrow_white.svg);
    background-repeat: no-repeat;
    background-size: 2em 1em;
    background-position: right center;
    padding-right: 2em;
}

.button.prev-step {
    background-image: url(/Content/imgs/leftleftarrow_white.svg);
    background-repeat: no-repeat;
    background-size: 2em 1em;
    background-position: left center;
    padding-left: 2em;
}

.user-certificate-with-image-box {
    width: 100%;
    border-radius: 6px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--background-color-1);
}


    .user-certificate-with-image-box .content .action-status.download {
        position: absolute;
        z-index: 100;
        display: inline-block;
        height: 32px;
        width: 32px;
        bottom: 16px;
        right: 16px;
        background-size: 100% 100%;
        background: url(/Content/imgs/download.svg) no-repeat;
        background-size: 100% 100%;
    }

    .user-certificate-with-image-box .content {
        padding: 20px;
        display: grid;
        border-radius: 5px;
        position: relative;
        grid-gap: 2px;
        grid-template-rows: auto 225px auto auto auto;
        grid-template-areas: "a b" "c c" "d d" "e e" "f f";
    }

        .user-certificate-with-image-box .content .course.code {
            grid-area: a;
        }

        .user-certificate-with-image-box .content .course.level {
            grid-area: b;
            color: var(--text-color-1) !important;
        }

        .user-certificate-with-image-box .content .course.image {
            grid-area: c;
            background-size: 320px 225px;
            background-position: 50% 50%;
            width: 320px;
            height: 225px;
        }

        .user-certificate-with-image-box .content .title {
            grid-area: d;
            height: 3em;
            overflow: hidden;
            overflow-wrap: anywhere;
        }

        .user-certificate-with-image-box .content .target-job {
        }

        .user-certificate-with-image-box .content .area {
            grid-area: e;
        }

        .user-certificate-with-image-box .content .subject {
        }

        .user-certificate-with-image-box .content .action-status {
            position: absolute;
            z-index: 100;
            display: inline-block;
            height: 24px;
            width: 24px;
            bottom: 16px;
            right: 16px;
            background-size: 100% 100%;
        }


.user-course-with-image-box,
.user-media-with-image-box {
    width: 100%;
    border-radius: 6px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--background-color-1);
}


    .user-course-with-image-box .content,
    .user-media-with-image-box .content {
        padding: 20px;
        display: grid;
        border-radius: 5px;
        position: relative;
        grid-gap: 2px;
        grid-template-rows: auto 168px auto auto auto;
        grid-template-areas: "a b" "c c" "d d" "e e" "f f";
    }

    .user-media-with-image-box .content {
        grid-template-areas: "a b" "c c" "d d" "e e" "f f";
    }

    .user-course-with-image-box.error .content {
        -webkit-box-shadow: inset 0px 0px 0px 2px var(--error);
        -moz-box-shadow: inset 0px 0px 0px 2px var(--error);
        box-shadow: inset 0px 0px 0px 2px var(--error);
    }

        .user-course-with-image-box.error .content .expiration {
        }

    .user-course-with-image-box a.content,
    .user-media-with-image-box a.content {
        background-color: var(--background-color-1);
    }


    .user-course-with-image-box .content div,
    .user-media-with-image-box .content div {
        margin: 0;
        width: 100%;
        position: relative;
    }


    .user-course-with-image-box .content .course.code,
    .user-media-with-image-box .content .course.code {
        grid-area: a;
        display: none;
    }

    .user-course-with-image-box .content .course.level,
    .user-media-with-image-box .content .course.level {
        grid-area: b;
    }

    .user-media-with-image-box .content .course.level {
        color: var(--text-color-1) !important;
    }

    .user-course-with-image-box .content .course.image,
    .user-media-with-image-box .content .course.image {
        grid-area: c;
        background-size: 320px 160px;
        background-position: 50% 50%;
        width: 320px;
        height: 160px;
    }

    .user-course-with-image-box .content .title,
    .user-media-with-image-box .content .course.title {
        grid-area: d;
        height: 3em;
        overflow: hidden;
        overflow-wrap: anywhere;
    }

    .user-media-with-image-box .content .media.title {
        grid-area: e;
        height: 3em;
        overflow: hidden;
        overflow-wrap: anywhere;
        color: var(--background-color-2);
    }

    .user-course-with-image-box .content .target-job {
    }

    .user-course-with-image-box .content .area {
        grid-area: a;
    }

    .user-media-with-image-box .content .area {
        grid-area: a;
        color: var(--text-color-1) !important;
    }

    .user-course-with-image-box .content .subject {
    }

    .user-course-with-image-box .content .title {
    }

    .user-course-with-image-box a.content .expiration {
    }

    .user-course-with-image-box .content:not(a) .expiration {
        color: var(--text-color-1) !important;
        font-family: var(--font-family-bold) !important;
    }

    .user-course-with-image-box .content .action-status,
    .user-media-with-image-box .content .action-status {
        position: absolute;
        z-index: 100;
        display: inline-block;
        height: 24px;
        width: 24px;
        bottom: 16px;
        right: 16px;
        background-size: 100% 100%;
    }

        .user-course-with-image-box .content .action-status.play {
            background: url(/Content/imgs/play_orange.svg) no-repeat;
            background-size: 100% 100%;
        }

        .user-media-with-image-box .content .action-status.play {
            background: url(/Content/imgs/play_white.svg) no-repeat;
            background-size: 100% 100%;
        }

    .user-course-with-image-box.inprogress .content .action-status.play,
    .user-course-with-image-box.endreached .content .action-status.play {
        background: url(/Content/imgs/play_orange.svg) no-repeat;
        background-size: 100% 100%;
    }

    .user-course-with-image-box .content .action-status.expired {
        background: url(/Content/imgs/expired.svg) no-repeat;
        background-size: 100% 100%;
    }

    .user-course-with-image-box .content .action-status.test-passed {
        /*        background: url(/Content/imgs/test-passed.svg) no-repeat;
        background-size: 100% 100%;
    }

    .user-course-with-image-box .content .action-status.test-passed {*/
        background: url(/Content/imgs/tag_certificate.svg) no-repeat;
        background-size: 100% 100%;
        height: 50px;
        width: 32px;
    }

    .user-course-with-image-box .content a.action-status.test-passed {
        background: url(/Content/imgs/certificate_download.svg) no-repeat;
        background-size: 100% 100%;
        height: 50px;
        width: 32px;
    }

    .user-course-with-image-box .content .action-status.test-failed {
        background: url(/Content/imgs/test_failed.svg) no-repeat;
        background-size: 100% 100%;
        height: 50px;
        width: 32px;
    }

    .user-course-with-image-box .content .action-status.level-not-reached {
        background: url(/Content/imgs/level_not_reached.svg) no-repeat;
        background-size: 100% 100%;
    }

    .user-course-with-image-box .content .action-status.continue {
        background: url(/Content/imgs/play_orange.svg) no-repeat;
        background-size: 100% 100%;
    }

    .user-course-with-image-box .content .action-status.finished {
        background: url(/Content/imgs/do-test.svg) no-repeat;
        background-size: 100% 100%;
    }

    .user-course-with-image-box .content .action-status.without-test {
        background: none;
        background-size: 100% 100%;
    }


    .user-course-with-image-box.finished .content,
    .user-course-with-image-box.assigned .content,
    .user-course-with-image-box.inprogress .content,
    .user-course-with-image-box.endreached .content,
    .user-course-assigned-box {
        background-color: var(--background-color-4);
    }


.user-courses-info-panel {
    background-color: var(--text-color-2);
    display: grid;
    padding: 40px;
    grid-row-gap: 10px;
    grid-template-columns: 100%;
}

    .user-courses-info-panel .item {
        display: grid;
        grid-template-columns: 365px 365px 10px auto;
        grid-gap: 10px;
    }

        .user-courses-info-panel .item div.course-info-1 {
            width: 100%;
            color: var(--text-color-3);
            font-size: 1.6rem;
            font-family: var(--font-family-bold);
            position: relative;
        }

.all-steps-bar {
    width: 100%;
    height: 10px;
    padding: 0;
    margin: 5px 0 0 0;
    display: grid;
    grid-gap: 1%;
    width: 100%;
    height: 5px;
    height: 10px;
}

    .all-steps-bar .step {
        width: 100%;
        background-color: var(--background-color-2);
        border-radius: 6px;
        height: 8px;
        width: 100%;
        overflow: hidden;
    }

        .all-steps-bar .step.done {
            background-color: var(--text-color-3);
        }

        .all-steps-bar .step.current {
            /*background-color: var(--background-color-4);*/
        }

        .all-steps-bar .step .step-percentage {
            background-color: var(--text-color-3);
            height: 20px;
        }

    .all-steps-bar.Assigned .step {
        background-color: var(--background-color-1);
    }

div.test-passed {
    height: 60px;
    width: 100%;
    background-image: url(/Content/imgs/tag_certificate.svg);
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-block;
    margin-top: 0.70px
}

a.test-not-passed {
    height: 60px;
    width: 100%;
    background-image: url(/Content/imgs/tag_test.svg);
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-block;
    margin-top: 0.70px
}

div.test-locked {
    height: 60px;
    width: 100%;
    background-image: url(/Content/imgs/tag_lock.svg);
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-block;
    margin-top: 0.70px
}

.course-history {
    padding-bottom: 20px;
    margin-top: 10px;
    font-size: 1.4rem;
}

    .course-history .panel .panel-lock {
        height: 30px;
        width: 30px;
        background-image: url("/Content/imgs/arrow-down.svg");
        background-repeat: no-repeat;
        background-size: 30px 30px;
        background-position: 50% 50%;
        cursor: pointer;
        margin: 0 auto;
    }

        .course-history .panel .panel-lock.on {
            background-image: url("/Content/imgs/arrow-up.svg");
        }

    .course-history .panel .details {
        width: 100%;
        max-width: 100%;
        display: none;
        overflow: hidden;
    }

.contact-form .table {
    width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

    .contact-form .table textarea {
        height: 15em;
        line-height: 1.6em;
    }

.hidden {
    display: none;
}

section.tutorial .panel,
section.contact-form .panel {
    /*padding-bottom: 20px;*/
    grid-area: d;
    margin-top: 10px;
    font-size: 1.4rem;
}

section.tutorial .panel-lock,
section.contact-form .panel-lock {
    height: 30px;
    width: 30px;
    background-image: url(/Content/imgs/arrow-down.svg);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: 50% 50%;
    cursor: pointer;
    margin: 0 auto;
}

    section.tutorial .panel-lock.on,
    section.contact-form .panel-lock.on {
        background-image: url("/Content/imgs/arrow-up.svg");
    }

section.tutorial figure .playOverlay{
    top: 45%;
}

.message
{
    width: 100%;
    color: var(--text-color-1);
    font-weight: bold;
    padding: 2rem;
    text-align: center;
}