:root{
    --linde-red: #A00020;
    --linde-red-disabled: #814754;
    --linde-background: #efefef;
    --input-grey: #e5e5e5;
    --grey: #828282;
    --dark-grey: #555;
    --easyflat: #31849b;
    --complete: #af981d;

    --footer-height: 48px;
    --space-between:  calc(100vh - 170px);
}
@font-face { font-family: 'gueda'; src: url('fonts/Gueda-Regular.ttf') format('truetype'); }
@font-face { font-family: 'gueda bold'; src: url('fonts/Gueda-Bold.ttf') format('truetype'); }
@font-face { font-family: 'gueda italic'; src: url('fonts/Gueda-Italic.ttf') format('truetype'); }

* {
    font-family: 'gudea', sans-serif;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
    background-color: white;
    background-attachment: fixed;
    font-family: 'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

#shaby_app {
    height: calc(100vh - 75px);
    padding-bottom: 50px;
    width: 100vw;
    overflow: hidden;
}

#shaby_app > div > div:not(.menuheader),
#shaby_app > div > form {
    padding: 0px 20px;
}

@media screen and (min-aspect-ratio: 1/1) and (min-width: 400px) {
    .app {
        background-position: left center;
        padding: 75px 0px 75px 170px;
        margin: -90px 0px 0px -198px;
    }
}

/*region ICONS */
@font-face {
    font-family: 'icomoon';
    src: url('fonts/icomoon.eot?191o4d');
    src: url('fonts/icomoon.eot?191o4d#iefix') format('embedded-opentype'), url('fonts/icomoon.ttf?191o4d') format('truetype'), url('fonts/icomoon.woff?191o4d') format('woff'), url('fonts/icomoon.svg?191o4d#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
    font-family: 'icomoon' !important;
    font-size: 1.5em;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-damage:before {
    content: "\e90f";
}
.icon-arrow-left:before {
    content: "\e900";
}
.icon-barcode:before {
    content: "\e901";
}
.icon-cogs:before {
    content: "\e902";
}
.icon-enter:before {
    content: "\e903";
}
.icon-file-picture:before {
    content: "\e904";
}
.icon-floppy-disk:before {
    content: "\e905";
}
.icon-home:before {
    content: "\e906";
}
.icon-loop2:before {
    content: "\e907";
}
.icon-qrcode:before {
    content: "\e908";
}
.icon-search:before {
    content: "\e909";
}
.icon-spinner:before {
    content: "\e90a";
}
.icon-servicescan:before {
    content: "\e90b";
}
.icon-buyback:before {
    content: "\e90c";
}
.icon-life:before {
    content: "\e90d";
}
.icon-used:before {
    content: "\e90e";
}
.icon-plus {
    font-size: 12px;
    padding-left: 10px;
}
.icon-plus:before {
    content: "\ea0a";
}
.icon-cross:before {
    content: "\ea0f";
}
.icon-cheveron-left:before {
    content: "\e910";
}
.icon-cheveron-right:before {
    content: "\e911";
}
.icon-checkmark:before {
    content: "\ea10";
}
.icon-file-pdf:before {
    content: "\eadf";
}
/*endregion*/

.help {
    font-weight: bold;
    border: 1px solid black;
    border-radius: 50%;
    display: inline-block;
    padding: 0 3px;
    margin-right: 5px;
}
h1 {
    font-size: 20px;
    font-weight: normal;
    margin: 0px;
    overflow: visible;
    padding: 0px;
    text-align: center;
}
input,textarea {
    padding: 5px 10px;
}

.event {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    color: #FFFFFF;
    font-size: 12px;
    margin: 0px 30px;
    padding: 2px 0px;
}
.event.listening {
    background-color: #333333;
    display: block;
}
.event.received {
    background-color: #4B946A;
    display: none;
}
@keyframes fade {
    from {
        opacity: 1.0;
    }
    50% {
        opacity: 0.4;
    }
    to {
        opacity: 1.0;
    }
}
@-webkit-keyframes fade {
    from {
        opacity: 1.0;
    }
    50% {
        opacity: 0.4;
    }
    to {
        opacity: 1.0;
    }
}
.blink {
    animation: fade 3000ms infinite;
    -webkit-animation: fade 3000ms infinite;
}
.displaynone {
    display: none;
}
/* region HEADER */
.menuheader {
    background-color: var(--linde-red);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    padding: 10px 10px 10px 20px;
}
.menuheader > div {
    color: #fff;
    display: flex;
    align-items: center;
}
.menuheader > div > div {
    padding: 0 5px;
}
.menuheader > div #username {
    font-weight: bold;
}
.menuheader > div #logout {
    text-decoration: underline;
}
.menuheader > div .logo {
    background: url("../img/logo.svg") no-repeat center top;
    height: 50px;
    width: 100px;
}
.menuheader > div #username {
    text-align: right;
}
.menuheader h1 {
    color: #fff;
}
.viewheader {
    display: flex;
}
.viewheader .icon {
    background-color: var(--dark-grey);
    color: #ffffff;
    display: flex;
    margin-right: 2px;
    width: 40px;
}
.viewheader .icon span {
    font-size: 1.5em;
    margin: auto;
}
.viewheader h1 {
    background-color: var(--linde-red);
    color: #fff;
    font-size: 16px;
    flex: 1;
    padding: 10px;
    text-align: left;
}
/* endregion*/
.view {
    min-height: 100vh;
}
.container {
    margin: 0 auto;
    width: 90vw;
}
/* region MAINMENU & LOGIN */
.mainmenucontainer,
.logincontainer {
    background-color: var(--linde-background);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 70px);
    margin-top: -5px;
    justify-content: center;
}
#mainmenu > div h1,
#login > div h1 {
    font-weight: bold;
    padding-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}
#mainmenu ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0 auto 20px;
    width: 90%;
}
#mainmenu ul li {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    width: 170px;
    text-align: center;
    justify-content: space-evenly;
    background-color: var(--grey);
    color: #fff;
    margin: 10px;
    list-style: none;
    padding: 5px 19px 15px;
    text-transform: uppercase;
}
#mainmenu ul li.alpha{
    display: none;
}
#mainmenu ul li.beta{
    display: none;
}
#mainmenu ul li.active {
    background-color: var(--linde-red);
    cursor: pointer;
}
#mainmenu ul li.active.link{
    background-color: var(--linde-red-disabled);
}
#mainmenu ul li img {
    padding: 20px;
}
#mainmenu ul li [class*='icon-'] {
    font-size: 1.5em;
    margin-right: 10px;
}
#mainmenu ul li .icon-servicescan {
    font-size: 1em;
}
#mainmenu ul li.collection ul{
    position: absolute;
    width: auto;
    margin-top: 200px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s;
}
#mainmenu ul li.collection{
    transition: all 0.3s;
    transform: translate(0px, 0px);
}
#mainmenu ul li.collection.opened{
    transform: translate(0px, 10px);
}
#mainmenu ul li.collection.opened ul{
    position: absolute;
    margin-top: 380px;
    opacity: 1;
    max-height: 300px;
}

#login form {
    display: table;
    margin: 0 auto;
    max-width: 400px;
    width: 90%;
}
#login form .required {
    color: red;
    display: none;
    font-size: 13px;
}
#login form .required.active {
    display: block;
}
#login-submit {
    display: block;
    margin: 10px auto 0;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}
#login input[type='submit'] {
    margin: 10px auto 0;
    -webkit-appearance: none;
    border-radius: 0;
    text-transform: none;
    font-size: 15px;
    opacity: 1;
}
#login input[type='submit'].inProgress {
    opacity: 0.4;
}
input[type='submit'] {
    -webkit-appearance: none;
    border-radius: 0;
}
/* endregion */

/* region FORM */
form input {
    margin-top: 2px;
}
#searchbox {
    display: flex;
    padding: 2px 0;
    position: relative;
}
#searchbox:before {
    position: absolute;
    content: "\e909";
    color: var(--dark-grey);
    top: 10px;
    left: 10px;
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}
#searchbox input[type='search'] {
    background-color: var(--input-grey);
    border: none;
    box-shadow: none;
    padding: 8px 5px 8px 36px;
    width: 100%;
}
#searchbox #scanCode {
    box-shadow: none;
    background: var(--input-grey);
    border: none;
    display: flex;
    margin-left: 2px;
    width: 33px;
}
#searchbox #scanCode span {
    color: var(--dark-grey);
    margin: auto;
}
form input:not([type='checkbox']) {
    display: block;
    max-width: 400px;
    padding: 10px;
    width: 100%;
}
input[type='submit'] {
    background-color: var(--linde-red);
    border: none;
    color: #fff;
    display: block;
    margin: 20px auto ;
    text-transform: uppercase;
    width: initial;
}
form input[type="checkbox"] {
    height: 15px;
    width: 15px;
}
form input[type="radio"],
form input[type="checkbox"] {
    float: left;
    margin-right: 10px;
    margin-top: 8px;
    position: relative;
}
form input[type="checkbox"]:before {
    background-color: var(--input-grey);
    content: '';
    height: 15px;
    position: absolute;
    width: 15px;
    z-index: 10;
}
form input[type="radio"] {
    box-shadow: none;
    height: 15px;
    width: 15px;
}
form input[type="radio"]:before {
    background-color: var(--input-grey);
    border-radius: 50%;
    content: '';
    height: 15px;
    position: absolute;
    width: 15px;
    z-index: 10;
}
form input[type="radio"]:checked:before,
form input[type="checkbox"]:checked:before {
    background-color: var(--dark-grey);
    border: 2px solid var(--input-grey);
    height: 11px;
    width: 11px;
}
/* endregion */
/* region TABLE */
table {
    border-collapse: collapse;
    margin: 20px 0;
    width: 100%;
}
table td,
table th {
    padding: 5px 0 ;
    position: relative;
}
table .slider_td {
    align-items: center;
    display: flex;
}
table .slider_td span {
    display: block;
    font-size: 14px;
    padding-right: 10px;
    padding: 7px 10px;
}
table .required {
    display: none;
    color: #ff0000;
    font-size: 13px;
    text-transform: none;
    width: 100%;
}
table .required.active {
    display: block;
}
table tr th {
    font-size: 0.8rem;
    font-weight: normal;
    text-align: left;
}
.digital-module-wrapper table tr th{
    font-weight: bold;
}
table:not(#list_of_vehicles) tr th:first-child,
table:not(#list_of_vehicles) tr td:first-child {
    padding-left: 15px;
}
table tr th:last-child,
table tr td:last-child {
    text-align: right;
    padding-right: 15px;
}
table tr td:first-child {
    /*text-transform: uppercase;*/
    /*font-weight: bold;*/
}
.offer_table table tr td:first-child {
    text-transform: none;
}
table tr:first-child:not(.costs-overview) {
    background-color: #fff;
    border-bottom: 1px solid var(--linde-red);
}
table tr.dcc-separator{
    border-bottom: 0;
}
table tr.dcc-red-bordered{
    border-bottom: 1px solid var(--linde-red);
}
table tr {
    border-bottom: 1px solid #eee;
}
table tr:not(:first-child):not(.costs-overview) {
    height: 40px;
}
.button {
    display: flex;
    background-color: var(--linde-red);
    border: none;
    align-items: center;
    float: right;
    font-size: 14px;
    color: #fff;
    margin-left: 10px;
    padding: 10px 10px 10px 15px;
    text-decoration: none;
    transition: all 300ms;
}
.addbutton {
    width: 100%;
    border: 1px dotted #000;
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #000;
    margin-bottom: 20px;
}
.addbutton i {
    font-size: 40px;
    padding-bottom: 20px;
}
/* endregion *
/* --- FOOTER ---*/
#footer {
    background-color: #ffffff;
    border-top: 1px solid #000;
    bottom: 0;
    height: var(--footer-height);
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#footer #footerButtons {
    background-color: white;
    display: flex;
    justify-content: space-around;
    height: 100%;
    z-index: 10;
    padding-bottom: 4px;
    position: relative;
    border-top: 1px solid #000;
}
#footer #footerButtons button {
    align-items: center;
    background: none;
    border: none;
    display: flex;
}
#footer #footerButtons button.deactivate span {
    color: var(--linde-background) !important;
}
#footer #footerButtons button span[class*='icon-'] {
    color: var(--dark-grey);
    font-size: 1.5em;
    padding-right: 10px;
}
#footer #footerButtons button.active span {
    color: var(--linde-red);
}
#footer #footerButtons button.inactive span {
    opacity: 0.5;
}
#footer #footerButtons button:focus {
    outline: 0;
}
#footer #footerViews #settingsFooterView {
    position: fixed;
    width: 100%;
    left: 0;
    height: 33vH;
    background-color: white;
    transition: all 0.3s ease-in-out;
    bottom: -33vH;
}
#footer #footerViews #settingsFooterView.active {
    bottom: var(--footer-height);
}
#input_overlay,
#confirm_overlay,
#apimodal_overlay {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 1px 1px 10px #ccc;
    display: none;
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0vh;
    left: 0vw;
    z-index: 999999;
}
#input_overlay #confirm,
#confirm_overlay #confirm,
#apimodal_overlay #confirm,
#input_overlay #apimodal,
#confirm_overlay #apimodal,
#apimodal_overlay #apimodal,
#input_overlay #userinput,
#confirm_overlay #userinput,
#apimodal_overlay #userinput {
    display: block;
    z-index: 1000000;
}
#input_overlay.active,
#confirm_overlay.active,
#apimodal_overlay.active {
    display: block;
}
#apimodal,
#confirm,
#userinput {
    display: none;
    box-shadow: 1px 1px 10px #ccc;
    background-color: #fff;
    position: fixed;
    top: 40vh;
    left: calc(10vw);
    text-align: center;
    width: 80vw;
    max-width: calc(100% - 20px);
    word-break: break-word;
    padding: 0;
    z-index: 100000;
}
#apimodal.active,
#confirm.active,
#userinput.active {
    display: block;
}
#apimodal .icon-cross,
#confirm .icon-cross,
#userinput .icon-cross {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 18px;
}
#apimodal .headline,
#confirm .headline,
#userinput .headline {
    background-color: var(--linde-red);
    font-weight: bold;
    text-align: left;
    min-height: 32px;
    line-height: 20px;
    color: #fff;
    padding: 6px 20px 6px 12px;
    text-transform: uppercase;
}
#apimodal .text,
#confirm .text,
#userinput .text {
    padding: 40px;
}
#apimodal .icon-cross,
#confirm .icon-cross,
#userinput .icon-cross {
    color: #fff;
    right: 7px;
    top: 7px;
}
#userinput .text {
    padding: 40px 0 20px 0;
}
#userinput #modal_input {
    margin: 10px 0 30px;
    width: 50%;
}
form {
    width: 90%;
    margin: 0 auto;
}
form input[type='text'],
form input[type='password'],
form select,
form textarea {
    font-size: 1em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    background-color: var(--input-grey);
    border-color: var(--input-grey);
    padding: 10px 10px;
    border: 0;
    border-radius: 0;
    width: 100%;
}
form input[type='password'] {
    margin: 10px 0;
}
form textarea {
    display: block;
}
form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}
form fieldset label {
    display: flex;
    line-height: 30px;
    padding-top: 0;
    padding-bottom: 0;
    text-transform: none;
    font-size: 1em;
}
form label,
form legend {
    padding-top: 12px;
    padding-bottom: 2px;
    font-size: 0.9em;
    display: inline-block;
}
form option.disabled {
    display: none;
}
.prototype-dropdown {
    margin: 0 auto;
    display: block;
    border-radius: 0;
    background-image: url("../img/dropdown_arrow.svg");
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: 13px;
}
#vehicles {
    min-height: 100vh;
    padding-bottom: 50px;
}
#contextMenu {
    background-color: #fff;
    display: none;
    padding: 0 10px;
    position: absolute;
    right: 0px;
}
#contextMenu.active {
    display: block;
}
#contextMenu ul {
    margin: 0;
    padding-left: 0;
}
#contextMenu li {
    border-bottom: 1px solid var(--dark-grey);
    list-style: none;
    padding: 5px 20px;
}
#modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: #000000;
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}
#modal ul {
    background-color: #fff;
    margin: auto;
    padding: 30px 20px 20px;
    position: relative;
    width: 80%;
}
#modal ul li {
    align-items: center;
    background-color: var(--grey);
    color: #fff;
    display: flex;
    height: 35px;
    list-style: none;
    margin: 5px auto;
    padding: 5px 10px;
}
#modal ul li.active {
    background-color: var(--linde-red);
    cursor: pointer;
}
#modal ul li [class*='icon-'] {
    font-size: 1.5em;
    margin-right: 10px;
}
#modal ul li .icon-servicescan {
    font-size: 1em;
}
#modal #modalClose {
    font-size: 15px;
    position: absolute;
    right: 8px;
    top: 8px;
}
.redbtn {
    background-color: var(--linde-red);
    display: flex;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.redbtn span {
    color: #fff;
    font-size: 1.8em;
    margin: auto;
}
#vehicle {
    overflow-x: hidden;
    padding-bottom: 100px;
}
#vehicle nav {
    width: 100%;
    background-color: white;
    z-index: 100;
    transition: all 300ms;
    position: fixed;
    top: 38px;
}
#vehicle nav.sticky {
    top: 0;
}
#vehicle #performance-target {
    display: flex;
}
#vehicle #performance-target .performance-target-navigation {
    border-bottom: 1px solid var(--dark-grey);
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    width: 50vw;
}
#vehicle #performance-target .performance-target-navigation:after {
    background-color: var(--linde-red);
    bottom: 0;
    content: '';
    left: 0;
    height: 2px;
    position: absolute;
    transition: 500ms all;
    width: 0vw;
}
#vehicle #performance-target .performance-target-navigation:first-child:after {
    left: initial;
    right: 0;
}
#vehicle #performance-target .performance-target-navigation.active {
    color: var(--linde-red);
}
#vehicle #performance-target .performance-target-navigation.active:after {
    width: 50vw;
}
#vehicle #vehicle-container {
    display: flex;
    flex-direction: row;
    margin-left: 0;
    width: 200vw;
    margin-top: 130px;
}
#vehicle #vehicle-container.active {
    margin-left: -100vw;
}
#vehicle #vehicle-container .vehicle-form {
    position: relative;
    width: 100vw;
}
#form-progress ul {
    display: flex;
    overflow: scroll;
    padding-left: 0;
    margin-bottom: 0;
}
#form-progress ul li {
    list-style-type: none;
    cursor: pointer;
    padding: 0 5px;
    position: relative;
    flex: 1;
    min-width: 140px;
}
#form-progress ul li.active a {
    color: var(--dark-grey);
    font-weight: bold;
}
#form-progress ul li.active a .form-horizontal-navigation {
    background-color: var(--dark-grey);
}
#form-progress ul li a {
    color: var(--grey);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
#form-progress ul li a .form-horizontal-navigation {
    background-color: var(--grey);
    color: white;
    padding: 3px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    margin-bottom: 7px;
    text-align: center;
    display: inline-block;
}
#form-progress ul li .form-horizontal-line {
    height: 1px;
    width: 100%;
    background-color: var(--grey);
    display: inline-block;
    position: absolute;
    top: 14px;
    z-index: -1;
    left: 50%;
}
#form-progress ul li .form-horizontal-name {
    text-align: center;
}
#form-progress ul li:last-child .form-horizontal-line {
    display: none;
}
#vehicle-data h2,
#vehicle-target-data h2 {
    font-size: 1.5em;
    margin-top: 30px;
}
#vehicle-data h3,
#vehicle-target-data h3 {
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 0px;
}
#pictureContainer {
    display: flex;
    flex-wrap: wrap;
}
#pictureContainer .thumbnail {
    width: calc((90vw / 3) - 5px);
    height: calc(90vw / 3);
    padding: 0;
    margin: 2.5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
#pictureContainer #takePicture {
    background-color: var(--input-grey);
    display: flex;
    width: calc((90vw / 3) - 5px);
    height: calc(90vw / 3);
    margin: 2.5px;
}
#pictureContainer #takePicture span {
    font-size: 1.8em;
    font-weight: bold;
    margin: auto;
}
#canvasContainer {
    width: 100%;
    height: calc(100% - 150px);
    margin-top: 110px;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
#canvasReset {
    position: absolute;
    right: calc(5% + 40px + 15px);
    bottom: 10px;
}
#canvasSafe {
    position: absolute;
    right: 5%;
    bottom: 10px;
}
#new_vehicle {
    background-color: var(--input-grey);
    text-align: left;
    cursor: pointer;
}
#new_vehicle a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    width: 100%;
}
#service-module-contract-form-wrapper {
    display: flex;
    width: 200vw;
    margin-left: 0;
    transition: all 500ms;
}
#service-module-contract-form-wrapper > div {
    width: calc(100vw - 20px);
}
#service-module-contract-form-wrapper > div:first-child {
    padding-right: 20px;
}
#service-module-contract-form-wrapper > div:last-child {
    padding-left: 20px;
}
#service-module-contract-form-wrapper.form {
    margin-left: -100vw;
}
#service-module-contract-form-wrapper td:last-child,
#service-module-contract-form-wrapper th:last-child {
    width: 180px;
}
#service-module-contract-form-wrapper #onetimecosts {
    text-align: right;
}
#service-module-contract-container {
    position: relative;
}
#service-module-contract-container .duplicate_vehicle,
#service-module-contract-container .remove_vehicle {
    text-align: right;
    width: 60px;
}
#service-module-contract-container #onetimecosts {
    text-align: right;
}
#service-module-contract-container .module_service_contract_overview {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
#service-module-contract-container .module_service_contract_overview .vehicles_table_container {
    overflow-y: auto;
}
#service-module-contract-container .module_service_contract_overview #list_of_vehicles tr:not(:first-child) td:first-child span {
    padding: 6px 12px;
    color: #fff;
    font-weight: bold;
    width: calc(100% - 10px);
    display: block;
}
#service-module-contract-container .module_service_contract_overview #list_of_vehicles tr:not(:first-child) td:first-child.EasyFlat span {
    background-color: var(--easyflat);
}
#service-module-contract-container .module_service_contract_overview #list_of_vehicles tr:not(:first-child) td:first-child.Classic span {
    background-color: var(--complete);
}
#service-module-contract-container .module_service_contract_overview #list_of_vehicles tr:not(:first-child) td:first-child.Complete span {
    background-color: var(--linde-red);
}
#service-module-contract-container .module_service_contract_overview #list_of_vehicles .icon-cross {
    font-size: 16px;
}
#service-module-contract-container .module_service_contract_overview #new_vehicle_btn {
    background-color: var(--dark-grey);
    color: #fff;
    margin-left: 0px;
    float: left;
}
#dfr_new_location{
    border: 0;
}
#dfr_new_location_btn{
    background-color: var(--dark-grey);
    color: #fff;
    margin-left: 0px;
    margin-top: 25px;
    float: left;
    width: 175px;
}
#service-module-contract-container .module_service_contract_overview .classic,
#service-module-contract-container .module_service_contract_overview .easyflat,
#service-module-contract-container .module_service_contract_overview .complete {
    padding: 0px;
}
#service-module-contract-container .module_service_contract_overview .classic span,
#service-module-contract-container .module_service_contract_overview .easyflat span,
#service-module-contract-container .module_service_contract_overview .complete span {
    color: #fff;
    font-weight: bold;
    padding: 11px 15px;
    width: calc(90% - 11px);
    display: block;
}
#service-module-contract-container .module_service_contract_overview .easyflat span {
    background-color: #638995;
}
#service-module-contract-container .module_service_contract_overview .classic span {
    background-color: var(--complete);
}
#service-module-contract-container .module_service_contract_overview .complete span {
    background-color: var(--linde-red);
}
#service-module-contract-container .module_service_contract_overview .icon-floppy-disk {
    font-size: 12px;
    margin-left: 10px;
}
#service-module-contract-container .module_service_contract_overview .icon-cheveron-right {
    font-size: 18px;
}
.module_service_customer_overview {
    display: flex;
    height:var(--space-between);
    width: 40vw;
    right: -40vw;
    position: absolute;
    transition: all 300ms;
    top: 0;
    z-index: 10;
}
.module_service_customer_overview.active {
    right: 0;
}
.module_service_customer_overview .module_service_customer_overview_table {
    background-color: #fff;
    box-shadow: 1px 1px 10px var(--dark-grey);
    padding: 20px;
    width: 40vw;
}
.module_service_customer_overview .module_service_customer_overview_table tr:first-child {
    border-color: #eee;
}
.module_service_customer_overview .module_service_customer_overview_table td:first-child {
    width: 120px;
}
.module_service_customer_overview .module_service_customer_overview_table td:last-child input {
    width: 100%;
}
.module_service_customer_overview .module_service_customer_overview_table #customer_zip {
    float: left;
    margin-right: 5px;
    width: 50px;
}
.module_service_customer_overview .module_service_customer_overview_table #customer_place {
    float: left;
    width: calc(100% - 55px);
}
 .module_service_customer_overview #customer_overview {
    justify-content: center;
    height: 40px;
    width: 148px;
    transform: rotate(90deg);
    transform-origin: left;
    box-shadow: 1px 1px 10px var(--dark-grey);
    z-index: 1000;
    left: -30px;
    text-align: center;
    top: calc(50% - 125px);
    position: absolute;
}
.module_service_contract_overview table tr th:nth-last-child(4),
.module_service_contract_overview table tr td:nth-last-child(4),
.module_service_contract_overview table tr th:nth-last-child(3),
.module_service_contract_overview table tr td:nth-last-child(3) {
    text-align: right;
    width: 125px;
}
.module_service_contract_overview #interimVehicleCosts_tr.inactive {
    display: none;
}
.module_service_contract_overview .remove_vehicle {
    width: 60px;
}
.digital-module-wrapper{
    position: relative;
}
#dsma-setup-costs, #dsma-sum-onetime-costs{
    text-align: right;
}
#cruel-table-wrapper-sorry{
    overflow-y: auto;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
#service-container,
#service-module-contract-container,
.digital-module-wrapper,
.meta-form-container {
    height: calc(100vh - 140px);
}
#meta-form {
    max-height: calc(100vh - 345px);
    overflow: auto;
}
#offer-module #targets-wrapper .error {
    font-weight: bold;
    color: var(--linde-red);
}
#offer-module #targets-wrapper .error input {
    border: 1px solid var(--linde-red);
}
#offer-module #targets-wrapper .offer-analysis-table tr td:nth-child(2n) {
    display: none;
}
#offer-module #targets-wrapper .point_summary {
    display: none;
}
#offer-module #offer-menu .error {
    position: relative;
}
#offer-module #offer-menu .error:after {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    content: '*';
    position: absolute;
    right: 8px;
    top: 5px;
}
#offer-module .summary-required {
    color: red;
}
#notification {
    position: absolute;
    bottom: 60px;
    right: 20px;
}
#notification > div {
    display: none;
    background-color: var(--linde-red);
    color: #fff;
    max-width: 300px;
    margin: 5px 0;
    padding: 20px;
}
#service-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#service-container .button {
    align-self: flex-end;
}
#vehicle-form {
    display: flex;
    /*#usagetypes .selected{
      background-color: @linde-background;
    }*/
    /*#enginetypes .selected{
      background-color: #ccc;
    }*/
    /*#series .selected {
      background-color: #aaa;
    }*/
}
#vehicle-form #enginetypes {
    background-color: var(--linde-background);
}
#vehicle-form #series {
    background-color: #ccc;
}
#vehicle-form #series .withimg {
    position: relative;
}
#vehicle-form #series .withimg span {
    bottom: -18px;
    position: absolute;
    padding: 2px;
    background: var(--dark-grey);
    font-size: 12px;
    overflow: hidden;
    display: block;
    /*height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 300ms;*/
    width: 100px;
}
/*#vehicle-form #series .withimg:hover span {
    height: initial;
    text-overflow: initial;
    white-space: wrap;
}*/


#vehicle-form #series.aside span {
    bottom: 0px;
}
#vehicle-form #series.aside .selected span {
    background-color: var(--linde-red);
}
#vehicle-form #types {
    background-color: #aaa;
}
#vehicle-form .usagetype,
#vehicle-form .enginetype,
#vehicle-form .series,
#vehicle-form .type {
    align-items: center;
    align-content: center;
    background-color: var(--dark-grey);
    display: flex;
    color: #fff;
    justify-content: center;
    word-break: break-all;
    width: 100px;
    height: 100px;
    margin: 5px;
    padding: 10px;
    text-align: center;
    transition: all 300ms;
}
#vehicle-form .usagetype.active,
#vehicle-form .enginetype.active,
#vehicle-form .series.active,
#vehicle-form .type.active {
    display: flex;
}
#vehicle-form .usagetype.selected,
#vehicle-form .enginetype.selected,
#vehicle-form .series.selected,
#vehicle-form .type.selected {
    background-color: var(--linde-red);
}
#vehicle-form .usagetype {
    width: 110px;
    height: 110px;
    padding: 0px;
}
#vehicle-form .enginetype,
#vehicle-form .series,
#vehicle-form .type {
    display: none;
}
#vehicle-form .vehicle-form-section {
    align-items: center;
    align-content: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    height:var(--space-between);
    position: relative;
    width: 0%;
    transition: all 500ms;
}
#vehicle-form .vehicle-form-section h2 {
    display: none;
    width: 100%;
    position: absolute;
    top: 0px;
    text-align: center;
}
#vehicle-form .vehicle-form-section:first-child {
    width: 100vw;
}
#vehicle-form .vehicle-form-section.aside {
    flex-direction: column;
    width: 140px;
}
#vehicle-form .vehicle-form-section.aside h2 {
    display: block;
    font-size: 12px;
}
#vehicle-form .vehicle-form-section.aside .usagetype,
#vehicle-form .vehicle-form-section.aside .enginetype,
#vehicle-form .vehicle-form-section.aside .series,
#vehicle-form .vehicle-form-section.aside .type {
    margin: 5px 10px 5px 10px;
}
#vehicle-form .vehicle-form-section.active {
    width: 100%;
}
#vehicle-form .vehicle-form-section.active h2 {
    display: block;
}
#vehicle-form .vehicle-form-section .series {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
#meta-form-wrapper #meta-form {
    display: none;
}
#meta-form-wrapper #meta-form.active:not(.inactive) {
    display: flex;
}
#meta-form-wrapper #meta-form .notfuel,
#meta-form-wrapper #meta-form .notelectro {
    display: none;
}
#meta-form-wrapper #meta-form .notfuel.active:not(.inactive),
#meta-form-wrapper #meta-form .notelectro.active:not(.inactive) {
    display: table-row;
}
#meta-form-wrapper #meta-form tr {
    opacity: 1;
    transition: all 300ms;
}
#meta-form-wrapper #meta-form tr td:not(:last-child):not(:nth-last-child(2)) {
    padding-right: 30px;
}
#meta-form-wrapper #meta-form tr td:nth-last-child(2) {
    text-align: right;
}
#meta-form-wrapper #meta-form tr td:first-child {
    font-weight: bold;
    width: 30vw;
    text-transform: none;
}
#meta-form-wrapper #meta-form tr td input {
    padding: 5px 10px;
    border: 1px solid #000;
}
#meta-form-wrapper #meta-form tr td input[type="text"] {
    width: 100%;
}

#meta-form-wrapper #meta-form tr td input:required {
    border: 1px solid red;
}

#meta-form-wrapper #meta-form tr.inactive {
    display: none;
    opacity: 0;
}
#meta-form-wrapper tbody {
    display: table;
    width: 100%;
}
#meta-form-wrapper #change-type {
    float: left;
    padding: 10px 15px 10px 10px;
}
.costs-overview {
    background-color: var(--linde-background);
    border-bottom: 5px solid #fff;
}
.costs-overview td {
    color: var(--dark-grey);
    font-weight: bold;
}
#subjectcontainer {
    display: flex;
}
#subjectcontainer input:first-child{
    flex-grow: 0;
    field-sizing: content;
    padding-right: 2px;
    width: initial;
}
#module-ticket #ticket_form {
    width: 100%;
}
#module-ticket #ticket_form .ticket_form_container {
    display: flex;
    width: 100%;
    height: calc(100vh - 175px);
    padding-bottom: 20px;
}
#module-ticket #ticket_form .ticket_form_container > div {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    margin: 0 20px;
    width: 50%;
    height: 100%;
}
#module-ticket #ticket_form .ticket_form_container > div #file_list {
    flex-grow: 1;
    padding: 0;
    overflow: auto;
}
#module-ticket #ticket_form .ticket_form_container > div #file_list li {
    align-items: center;
    border-bottom: 1px solid var(--grey);
    display: flex;
    list-style: none;
    padding: 10px;
    text-transform: none;
}
#module-ticket #ticket_form .ticket_form_container > div #file_list li .imgcontainer {
    height: 50px;
    overflow: hidden;
    margin-right: 10px;
    width: 50px;
}
#module-ticket #ticket_form .ticket_form_container > div #file_list li .imgcontainer.pdf {
    display: flex;
    justify-content: center;
    align-items: center;
}
#module-ticket #ticket_form .ticket_form_container > div #file_list li .file_title {
    flex-grow: 1;
}
#module-ticket #ticket_form .ticket_form_container .required {
    color: red;
}
#module-ticket #ticket_form .ticket_form_container input:not([type='checkbox']) {
    max-width: inherit;
}
#module-ticket #ticket_form .ticket_form_container [type="file"] {
    height: 0;
    overflow: hidden;
    padding: 0px;
    width: 0;
}
#module-ticket #ticket_form .ticket_form_container [type="file"] + label {
    background: var(--linde-red);
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: inherit;
    font-weight: 600;
    outline: none;
    padding: 15px 0;
    position: relative;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}
#module-ticket #ticket_form .ticket_form_container [type="file"] + label:hover {
    background-color: #d3460d;
}
#module-ticket #ticket_form .ticket_form_container .icon-file-picture {
    font-size: 14px;
    padding-left: 10px;
}
#module-ticket #ticket_form #send {
    margin: 0;
    float: right;
    width: initial;
}
#module-ticket .buttons {
    display: flex;
    justify-content: space-between;
    height: 50px;
}
#module-ticket .buttons div {
    width: calc(50% - 10px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*---------- CHECKBOX ----------*/
.label__checkbox {
    display: none;
}
.label__check {
    display: inline-block;
    border-radius: 50%;
    border: 1px solid var(--grey);
    background: #fff;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border .3s ease;
}
.label__check i.icon {
    opacity: 0.5;
    font-size: 10px;
    color: var(--grey);
    transition: opacity .3s .1s ease;
}
.label__text {
    display: flex;
}
.label__text > span.text {
    display: block;
    padding-left: 10px;
}
.label__checkbox:checked + .label__text .label__check {
    animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}
.label__checkbox:checked + .label__text .label__check .icon {
    opacity: 1;
    transform: scale(0);
    color: white;
    animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
}
.center {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(-50%, -50%);
}
#list_of_vehicles .center {
    left: 15px;
}
#offer-vehicles > div > div {
    overflow: auto;
}
@keyframes icon {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes check {
    0% {
        border-width: 3px;
    }
    10% {
        opacity: 0.1;
        background: rgba(0, 0, 0, 0.2);
        border-width: 15px;
    }
    12% {
        opacity: 0.4;
        background: rgba(0, 0, 0, 0.1);
        border-width: 0;
    }
    50% {
        background: var(--linde-red);
        border: 0;
        opacity: 0.6;
    }
    100% {
        background: var(--linde-red);
        border: 0;
        opacity: 1;
    }
}
/*---------- RADIO ----------*/
.radio-group {
    border: solid 1px var(--linde-red);
    display: inline-block;
    margin-top: 4px;
    border-radius: 10px;
    overflow: hidden;
}
.radio-group input[type=radio] {
    position: absolute;
    visibility: hidden;
    display: none;
}
.radio-group label {
    color: var(--linde-red), 40%;
    display: inline-block;
    font-size: 12px;
    float: left;
    padding: 4px 12px;
    text-transform: none;
}
.radio-group input[type=radio]:checked + label {
    color: #fff;
    background: var(--linde-red);
}
.radio-group label + input[type=radio] + label {
    border-left: solid 1px var(--linde-red);
}
/*---------- SLIDER ----------*/
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: var(--linde-background);
    margin: 10px 0;
    padding: 0px !important;
    outline: none;
    border: none;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--linde-red);
    cursor: pointer;
}
.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--linde-red);
    cursor: pointer;
}
/*---------- CALENDAR ----------*/
#video_overlay {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    height: 100vh;
    width: 100vw;
}
#video_overlay.active {
    display: flex;
}
#video_overlay canvas {
    display: none;
}
#video_overlay #video_overlay_buttons {
    margin-top: 20px;
}
#calendar {
    background-color: #fff;
    box-shadow: 1px 1px 10px #ccc;
    display: none;
    height: 80vh;
    padding: 0px !important;
    position: fixed;
    top: 10vh;
    left: 5vw;
    width: 90vw;
    z-index: 10000;
}
#calendar.active {
    display: block;
}
#calendar #calendar_menu {
    background-color: var(--linde-red);
    height: 70px;
}
#calendar #calendar_menu #navigation {
    color: #fff;
    display: flex;
    padding: 10px 10px 5px ;
    justify-content: space-between;
}
#calendar #calendar_menu #navigation .inactive {
    opacity: 0.4;
}
#calendar #calendar_menu .calendar_days {
    display: flex;
    color: #fff;
    text-align: center;
    width: 100%;
}
#calendar #calendar_menu .calendar_days > div {
    flex-grow: 1;
    padding: 10px;
}
#calendar #calendar_wrapper {
    height: calc(100% - 70px);
    overflow: hidden;
    width: 100%;
}
#calendar #calendar_wrapper .calendar_days {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 200%;
    transition: all 300ms;
}
#calendar #calendar_wrapper .calendar_days.nextmonth {
    margin-left: -100%;
}
#calendar #curmonth,
#calendar #nextmonth {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 50%;
}
#calendar #curmonth > div,
#calendar #nextmonth > div {
    padding: 10px;
    width: calc(100% / 7);
}
#calendar #curmonth.moredays .day,
#calendar #nextmonth.moredays .day {
    height: calc(100% / 6);
}
#calendar #curmonth .day,
#calendar #nextmonth .day {
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 20%;
    font-weight: bold;
}
#calendar #curmonth .day.inactive,
#calendar #nextmonth .day.inactive {
    display: none;
}
#calendar #curmonth .day.not-cur,
#calendar #nextmonth .day.not-cur {
    background: #ddd;
}
#calendar #curmonth .day.freeday,
#calendar #nextmonth .day.freeday,
#calendar #curmonth .day.pastday:not(.not-cur):not(.curday),
#calendar #nextmonth .day.pastday:not(.not-cur):not(.curday) {
    color: #ccc;
    font-weight: normal;
}
#calendar #curmonth .day.freeday,
#calendar #nextmonth .day.freeday {
    background-color: rgba(233, 233, 233, 0.4);
}
#calendar #curmonth .day.pastday:not(.not-cur),
#calendar #nextmonth .day.pastday:not(.not-cur) {
    background-color: rgba(233, 233, 233, 0.4);
}
#calendar #curmonth .day.pastday,
#calendar #nextmonth .day.pastday,
#calendar #curmonth .day.nextday,
#calendar #nextmonth .day.nextday {
    color: #bbb;
    font-weight: normal;
}
#calendar #curmonth .day.selected,
#calendar #nextmonth .day.selected {
    background-color: var(--linde-red);
    color: #fff;
}
#calendar #curmonth .day.curday,
#calendar #nextmonth .day.curday {
    border-color: var(--linde-red);
    color: var(--linde-red);
}
/*---------- OFFERS ----------*/
#offer_tables,
#service_tables {
    display: flex;
    height: calc(calc(100vh - 170px) + 40px);
    justify-content: space-between;
}
#offer_tables > div,
#service_tables > div {
    background-color: var(--linde-background);
    height: calc(100% - 20px);
    padding: 0 20px;
    margin: 10px 0;
    width: calc(50% - 10px);
}
#offer_tables > div .table-wrapper,
#service_tables > div .table-wrapper {
    max-height: calc(100vh - 400px);
    overflow-y: auto;
}
#offer_tables > div:first-child,
#service_tables > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#offer_tables > div tr,
#service_tables > div tr {
    background-color: transparent;
}
#offer_tables > div tr td,
#service_tables > div tr td {
    border-bottom: 1px solid var(--linde-red);
}
#offer_tables > div tr td:first-child,
#service_tables > div tr td:first-child {
    text-align: left;
}
#offer_tables > div tr td:not(:first-child):not(:last-child),
#service_tables > div tr td:not(:first-child):not(:last-child) {
    text-align: center;
}
#offer_tables > div tr .icon-cross,
#service_tables > div tr .icon-cross {
    font-size: 16px;
}
#offer_tables > div tr a,
#service_tables > div tr a,
#offer_tables > div tr a:visited,
#service_tables > div tr a:visited {
    color: var(--dark-grey);
    font-weight: bold;
    text-decoration: none;
}
.offer_table table tr:first-child {
    border-bottom: none;
}
.offer_table table tr {
    align-items: center;
    display: flex;
    height: 35px;
}
.offer_table table tr td {
    height: 33px;
    vertical-align: middle;
}
.offer_table table tr td a {
    width: 100%;
}
.offer_table table tr td:first-child {
    flex-grow: 1;
}
.offer_table table tr span {
    font-size: 14px;
}
#offer-module {
    height: calc(calc(100vh - 170px) + 30px);
    display: flex;
}
#offer-module table tr:first-child {
    border-color: var(--linde-background);
}
#offer-module table tr td:last-child {
    text-align: left;
    width: initial;
}
#offer-module table input[type="text"],
#offer-module table textarea {
    width: 100%;
}
#offer-module table:not(#list_of_vehicles) tr td:nth-last-child(2) {
    text-align: left;
    width: 320px;
}
#offer-module #list_of_vehicles input {
    padding: 5px;
    min-width: 40px;
}
#offer-module #list_of_vehicles .td_withdrawalSerial {
    display: flex;
}
#offer-module #list_of_vehicles .inactive {
    opacity: 0.3;
}
#offer-module #list_of_vehicles th {
    border: 1px solid var(--linde-background);
    padding: 5px;
}
#offer-module #list_of_vehicles td {
    border: 1px solid var(--linde-background);
    padding: 5px 5px 5px 5px;
}
#offer-module #list_of_vehicles td:last-child {
    text-align: right;
}
#offer-module #list_of_vehicles tr th:first-child {
    padding-right: 0px;
}
#offer-module #list_of_vehicles .icon-cross {
    font-size: 16px;
}
#offer-module #list_of_vehicles td:last-child(2),
#offer-module #list_of_vehicles th:last-child(2) {
    text-align: right;
}
#offer-module #list_of_vehicles .vehiclebound_file {
    display: none;
}
#offer-module #list_of_vehicles .upload_title {
    font-size: 12px;
    margin-top: 4px;
    word-break: break-all;
}
#offer-module #list_of_vehicles .icon-arrow-left {
    display: inline-block;
    transform: rotate(90deg);
    border: 1px solid var(--linde-red);
    border-radius: 50%;
    color: var(--linde-red);
    padding: 5px;
    font-size: 13px;
}
#offer-module #list_of_vehicles .vehicle_withdrawal span.withdrawal_infos {
    margin-left: 30px;
    font-size: 12px;
    color: var(--linde-red);
}
#offer-module #list_of_vehicles .vehicle_withdrawal > div {
    display: flex;
}
#offer-module #list_of_vehicles .vehicle_withdrawal > div:last-child {
    margin-left: 35px;
}
#offer-module #list_of_vehicles .vehicle_withdrawal > div > input {
    width: 140px;
    margin-right: 5px;
}
#offer-module #list_of_vehicles .vehicle_withdrawal > div > input:first-child {
    margin-left: 28px;
}
#offer-module #list_of_vehicles .withdrawal_infos.inactive {
    display: none;
}
#offer-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: -20px;
    margin-right: 20px;
    padding: 20px;
    border-right: 2px solid var(--linde-red);
}
#offer-menu .offer-menu-item {
    align-items: center;
    justify-content: center;
    background-color: var(--dark-grey);
    display: flex;
    color: #fff;
    width: 80px;
    height: 80px;
    margin: 5px;
    padding: 5px;
    text-align: center;
    transition: all 300ms;
    opacity: 1;
}
#offer-menu .offer-menu-item.inactive {
    opacity: 0;
}
#offer-menu .offer-menu-item.active {
    display: flex;
}
#offer-menu .offer-menu-item.selected {
    background-color: var(--linde-red);
}
#offer-menu .offer-menu-item.selected.required {
    border: 0px;
}
#offer-menu .offer-menu-item.required {
    border: 4px solid red;
}
#offer-overview {
    box-shadow: 1px 1px 10px #ccc;
    padding: 20px;
    overflow-y: auto;
    margin-top: 20px;
    height: calc(100% - 20px);
}
#offer-overview h1 {
    font-weight: bold;
    margin-top: 50px;
    text-transform: uppercase;
}
#offer-overview #offer-overview-service td ul {
    padding-left: 20px;
}
#offer-overview #offer-overview-service td h5 {
    text-transform: uppercase;
}
#offer-overview #offer-overview-service td.easyflat {
    background-color: rgba(99, 137, 149, 0.3);
}
#offer-overview #offer-overview-service td.classic {
    background-color: rgba(175, 152, 29, 0.2);
}
#offer-overview #offer-overview-service td.complete {
    background-color: rgba(160, 0, 32, 0.2);
}
#offer-overview #offer-analysis-table tr {
    align-items: center;
    display: flex;
}
#offer-overview #offer-analysis-table tr td:first-child {
    padding: 0px;
}
#offer-overview #offer-analysis-table tr td {
    vertical-align: center;
    width: calc((100% - 250px) / 6);
}
#offer-overview #offer-analysis-table tr td:nth-child(2n) {
    padding-right: 10px;
    text-align: right;
}
#offer-overview #offer-analysis-table tr:last-child {
    background-color: var(--linde-red);
    color: #fff;
}
#offer-overview #offer-analysis-table tr:last-child h2 {
    margin: 0;
}
#offer-environmental-analysis-battery > div {
    height: calc(100% - 100px);
    width: 100% !important;
}
#offer-environmental-analysis-battery > div #analysisoption-battery-forms-wrapper {
    margin: 0 auto;
}
#offer-environmental-analysis-battery > div #analysisoption-battery-forms-wrapper .environmental_analysis_descriptions {
    display: flex;
    margin-left: 180px;
}
#offer-environmental-analysis-battery > div #analysisoption-battery-forms-wrapper .environmental_analysis_descriptions > div {
    line-height: 1.5;
    padding: 10px 10px 20px;
    text-align: center;
    width: calc(100% / 3);
}
#offer-environmental-analysis > div,
#offer-environmental-analysis-battery > div {
    display: flex;
    width: calc(200vw - 304px);
}
#offer-environmental-analysis .analysis_option,
#offer-environmental-analysis-battery .analysis_option {
    align-items: center;
    display: flex;
}
#offer-environmental-analysis .analysis_option > label,
#offer-environmental-analysis-battery .analysis_option > label {
    font-size: 13px;
    width: 180px;
}
#offer-environmental-analysis #analysis-options-container,
#offer-environmental-analysis-battery #analysis-options-container {
    display: flex;
    height: calc(100vh - 225px);
    justify-content: center;
    align-items: center;
    width: calc(100vw - 172px);
    transition: all 500ms;
}
#offer-environmental-analysis #analysis-options-container.active,
#offer-environmental-analysis-battery #analysis-options-container.active {
    align-content: center;
    flex-wrap: wrap;
    width: 120px;
}
#offer-environmental-analysis .analysistype,
#offer-environmental-analysis-battery .analysistype {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--linde-red);
    border: 2px solid var(--linde-red);
    font-weight: bold;
    height: 100px;
    justify-content: center;
    padding-left: 0px;
    text-align: center;
    width: 100px;
}
#offer-environmental-analysis .analysistype.active .label-checkbox.active .label__text,
#offer-environmental-analysis-battery .analysistype.active .label-checkbox.active .label__text {
    border: 2px solid #fff;
    border-radius: 50%;
}
#offer-environmental-analysis .analysistype .generated_serviceoption,
#offer-environmental-analysis-battery .analysistype .generated_serviceoption {
    padding-left: 23px;
    margin-top: 15px;
    height: 22px;
}
#offer-environmental-analysis .analysistype .generated_serviceoption .label__check,
#offer-environmental-analysis-battery .analysistype .generated_serviceoption .label__check {
    width: 28px;
    height: 28px;
}
#offer-environmental-analysis .analysistype .generated_serviceoption .label__check i.icon,
#offer-environmental-analysis-battery .analysistype .generated_serviceoption .label__check i.icon {
    font-size: 13px;
}
#offer-environmental-analysis .analysistype label,
#offer-environmental-analysis-battery .analysistype label {
    padding: 10px;
    color: var(--linde-red);
    display: block;
    width: 100%;
}
#offer-environmental-analysis .analysistype.active,
#offer-environmental-analysis-battery .analysistype.active {
    background-color: var(--linde-red);
}
#offer-environmental-analysis .analysistype.active label,
#offer-environmental-analysis-battery .analysistype.active label {
    color: #fff;
}
#offer-environmental-analysis #analysistypes,
#offer-environmental-analysis-battery #analysistypes {
    display: flex;
}
#offer-environmental-analysis #analysistypes .analysistype,
#offer-environmental-analysis-battery #analysistypes .analysistype {
    padding-left: 0px;
    width: calc(100% / 3);
}
#offer-environmental-analysis #analysisoption-forms-wrapper,
#offer-environmental-analysis-battery #analysisoption-forms-wrapper,
#offer-environmental-analysis #analysisoption-battery-forms-wrapper,
#offer-environmental-analysis-battery #analysisoption-battery-forms-wrapper {
    justify-content: center;
    flex-direction: column;
    width: calc(100vw - 310px);
}
#offer-environmental-analysis #analysisoption-forms-wrapper h2,
#offer-environmental-analysis-battery #analysisoption-forms-wrapper h2,
#offer-environmental-analysis #analysisoption-battery-forms-wrapper h2,
#offer-environmental-analysis-battery #analysisoption-battery-forms-wrapper h2 {
    margin-top: 9px;
}
#offer-environmental-analysis #analysisoption-forms-wrapper .required > label,
#offer-environmental-analysis-battery #analysisoption-forms-wrapper .required > label,
#offer-environmental-analysis #analysisoption-battery-forms-wrapper .required > label,
#offer-environmental-analysis-battery #analysisoption-battery-forms-wrapper .required > label {
    color: red;
}
#offer-environmental-analysis #analysisoption-forms-wrapper > div,
#offer-environmental-analysis-battery #analysisoption-forms-wrapper > div,
#offer-environmental-analysis #analysisoption-battery-forms-wrapper > div,
#offer-environmental-analysis-battery #analysisoption-battery-forms-wrapper > div {
    border: 2px solid var(--linde-red);
    margin: 5px;
    padding: 0px;
    overflow: hidden;
    opacity: 0;
    position: absolute;
}
#offer-environmental-analysis #analysisoption-forms-wrapper > div.active,
#offer-environmental-analysis-battery #analysisoption-forms-wrapper > div.active,
#offer-environmental-analysis #analysisoption-battery-forms-wrapper > div.active,
#offer-environmental-analysis-battery #analysisoption-battery-forms-wrapper > div.active {
    opacity: 1;
    position: relative;
    padding: 20px 30px;
    z-index: 10;
}
#targets-wrapper {
    width: calc(100% - 120px);
}
.offer-target {
    display: none;
}
.offer-target.active {
    display: flex;
    flex-direction: column;
    height: 100%;
}
#offer-vehicle-overlay {
    background-color: #fff;
    box-shadow: 1px 1px 10px var(--linde-background);
    position: absolute;
    overflow: hidden;
    height:var(--space-between);
    opacity: 0;
    padding: 20px;
    top: 100px;
    width: calc(100vw - 190px);
    transition: all 300ms;
    z-index: -1;
}
#offer-vehicle-overlay.active {
    z-index: 10;
    opacity: 1;
}
#offer-vehicle-overlay #vehicle-form .vehicle-form-section {
    height: calc(100vh - 240px);
}
#offer-vehicle-overlay #offer-vehicles-modal td {
    vertical-align: middle;
}
#offer-vehicle-overlay #offer-vehicles-modal td:first-child {
    width: 150px;
}
#offer-vehicle-overlay #offer-vehicles-modal td:nth-child(2) {
    margin: 0px 20px 0;
}
#offer-vehicle-overlay .icon-cross {
    position: absolute;
    right: 10px;
    top: 10px;
}
#serviceoption-forms-wrapper {
    display: flex;
    text-transform: initial;
    flex-grow: 1;
}
.serviceoption,
.analysistype,
.generated_serviceoption {
    position: relative;
    padding-left: 40px;
    margin: 5px;
}
.serviceoption.inactive,
.analysistype.inactive,
.generated_serviceoption.inactive {
    display: none;
}
#service-options-container {
    display: flex;
}
#service-options-container .serviceoption {
    font-weight: bold;
    color: #fff;
    padding-left: 0px;
    text-align: center;
    width: calc(100% / 3);
}
#service-options-container .serviceoption label {
    display: block;
    padding: 10px 20px;
    width: 100%;
}
#service-options-container .serviceoption:nth-child(1) {
    color: #88aaff;
    border: 2px solid #88aaff;
}
#service-options-container .serviceoption:nth-child(1).active {
    color: #fff;
    background-color: #88aaff;
}
#service-options-container .serviceoption:nth-child(2) {
    color: #880;
    border: 2px solid #880;
}
#service-options-container .serviceoption:nth-child(2).active {
    color: #fff;
    background-color: #880;
}
#service-options-container .serviceoption:nth-child(3) {
    color: var(--linde-red);
    border: 2px solid var(--linde-red);
}
#service-options-container .serviceoption:nth-child(3).active {
    color: #fff;
    background-color: var(--linde-red);
}
.serviceoption-form {
    padding: 15px;
    margin: 0px 5px 0;
    opacity: 0;
    width: calc(100% / 3);
    transition: all 300ms ;
}
.serviceoption-form.easyflat {
    background-color: rgba(99, 137, 149, 0.3);
}
.serviceoption-form.classic {
    background-color: rgba(175, 152, 29, 0.2);
}
.serviceoption-form.complete {
    background-color: rgba(160, 0, 32, 0.2);
}
.serviceoption-form.inactive {
    display: none;
}
.serviceoption-form.active {
    opacity: 1;
}
.serviceoption-form .generated_serviceoption {
    padding: 3px 0 5px 32px;
}
#analysisoption-forms-wrapper,
#analysisoption-battery-forms-wrapper {
    display: flex;
}
#analysisoption-forms-wrapper .radio-group,
#analysisoption-battery-forms-wrapper .radio-group {
    background-color: #fff;
    display: flex;
    flex-grow: 1;
    justify-content: space-around;
}
#analysisoption-forms-wrapper .radio-group label,
#analysisoption-battery-forms-wrapper .radio-group label {
    padding: 4px 0;
    text-align: center;
    width: 100%;
}
.purchase-option {
    display: block;
    height: 30px;
    position: relative;
}
.purchase-option .center {
    transform: initial;
}
.purchase-option.leasingrent .radio-group {
    display: none;
}
.purchase-option.leasingrent.active {
    padding-bottom: 70px;
}
.purchase-option.leasingrent.active .radio-group {
    display: inline-block;
    margin-top: 10px;
}
#sendpdf {
    position: absolute;
    bottom: 50px;
    right: 60px;
}
#preview-pdf {
    background-color: var(--linde-background);
    height: 100vh;
    overflow: scroll;
    padding: 20px 20px 100px;
    font-size: 12px;
    width: 100vw;
}
#preview-pdf iframe {
    height:var(--space-between);
}
#preview-pdf .pdf_sheet {
    position: relative;
}
#preview-pdf .pdf_sheet.inactive {
    display: none;
}
#preview-pdf #easyflat h3 {
    color: #638995;
}
#preview-pdf #classic h3 {
    color: var(--complete);
}
#preview-pdf #complete h3 {
    color: var(--linde-red);
}
#preview-pdf.active {
    margin-top: -100vh;
    position: fixed;
    width: 100%;
}
#preview-pdf > div {
    display: table;
    background-color: #fff;
    margin: 0 auto 20px;
    max-width: 21cm;
    padding: 0 50px 20px !important;
    width: 100%;
}
#preview-pdf .menuheader {
    margin-bottom: 35px;
    margin-left: -50px;
    margin-right: -50px;
}
#preview-pdf .basepackage {
    display: flex;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}
#preview-pdf .basepackage h3 {
    font-size: 16px;
    padding-left: 10px;
    margin: 0;
}
#preview-pdf #pdf-vehicle table th {
    background-color: var(--linde-red);
    color: #fff;
}
#preview-pdf #pdf-vehicle table th:first-child {
    text-align: left;
}
#preview-pdf #pdf-vehicle table td:first-child {
    text-align: left;
    padding-left: 15px;
    width: 120px;
}
#preview-pdf #pdf-vehicle table th,
#preview-pdf #pdf-vehicle table td {
    text-align: center;
}
#preview-pdf #pdf-vehicle table th:nth-last-child(2),
#preview-pdf #pdf-vehicle table td:nth-last-child(2),
#preview-pdf #pdf-vehicle table th:last-child,
#preview-pdf #pdf-vehicle table td:last-child {
    padding-right: 15px;
    text-align: right;
}
#preview-pdf #pdf-vehicle table tr {
    border-bottom: 1px solid #eee;
}
#preview-pdf table {
    margin: 8px 0 20px;
}
#preview-pdf table tr {
    height: initial;
    border: none;
}
#preview-pdf table tr:first-child {
    border: 0px;
}
#preview-pdf table th {
    font-size: 12px;
}
#preview-pdf table td {
    font-size: 12px;
    line-height: 1.2;
    padding: 5px 0 5px 0;
    text-align: left;
    text-transform: none;
    vertical-align: top;
}
#preview-pdf table.smalltext td,
#preview-pdf table .smalltext td {
    font-size: 8px;
}
#preview-pdf table.middletext td,
#preview-pdf table .middletext td {
    line-height: 1.4;
    font-size: 10px;
}
#preview-pdf table.options {
    padding: 0 20px;
}
#preview-pdf table.options tr {
    border: none;
    padding: 0 20px;
}
#preview-pdf table.options td {
    padding: 2px 0 2px ;
}
#preview-pdf table.options strong {
    display: inline-block;
    width: 25px;
}
#preview-pdf .checkbox {
    float: left;
    border: 1px solid #000;
    height: 10px;
    width: 10px;
}
#preview-pdf .checkbox.checked {
    background-color: var(--linde-red);
}
#preview-pdf .checkbox_in_text .checkbox {
    float: left;
    border: 1px solid #000;
    margin: 5px 10px;
}
#preview-pdf .checkbox_in_text > div:nth-child(3) {
    float: left;
    margin: 5px 0px;
}
#preview-pdf .signature {
    height: 70px;
}
#apimodal {
    display: none;
    box-shadow: 1px 1px 10px #ccc;
    background-color: #fff;
    text-align: center;
    width: 500px;
    max-width: calc(100% - 20px);
    word-break: break-word;
    padding: 0;
    position: fixed;
    top: 40vh;
    left: calc(50vw - 250px);
    z-index: 1000;
}
#apimodal.active {
    display: block;
}
#apimodal .headline {
    background-color: var(--linde-red);
    font-weight: bold;
    text-align: left;
    min-height: 32px;
    color: #fff;
    padding: 6px 20px 6px 7px;
    text-transform: uppercase;
}
#apimodal .text {
    padding: 40px;
}
#apimodal .icon-cross {
    position: absolute;
    color: #fff;
    right: 7px;
    top: 7px;
    font-size: 18px;
}
.button_box {
    display: flex;
    justify-content: center;
}
.button_box .button {
    display: block;
    background-color: var(--linde-red);
    color: #fff;
    width: 150px;
    margin: 0 5px 20px;
    padding: 10px;
    text-align: center;
}
.button_box .button#confirm_cancel {
    background-color: var(--grey);
}
#ss-choicer{
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
#ss-explanation{
    border: 1px solid var(--linde-red);
    border-radius: 4px;
    text-align: center;
}
#ss-explanation tr{
    height: 35px;
}

#ss-explanation tr:last-of-type{
    border-bottom: none;
}
#ss-explanation th{
    border-bottom: 1px solid var(--linde-red);
    text-align: center;
    padding: 3px 0;
}
#ss-explanation td:first-child{
    border-right: 1px solid var(--linde-red);
    padding-left: 15px;
    text-align: left;
}
#ss-explanation tr td:last-child{
    text-align: center;
}
#ss-explanation td{
    padding-left: 10px;
    padding-right: 10px;
}
#ss-explanation td.br{
    border-right: 1px solid rgba(160, 0, 32, 0.15);
}
#ss-explanation td[colspan]:not([colspan="1"]) {
    text-align: center;
}
#ss-explanation .radio-group{
    border: inherit;
    display: table-row;
    border-radius: inherit;
}
#ss-explanation label{
    width: 100%;
    padding: 8px;
    cursor: pointer;
}
#ss-plus{
    width: 100%;
    border: 1px solid var(--linde-red);
    padding: 10px 0;
}
#ss-plus > label{
    display: flex;
    justify-content: space-around;
}
#ss-plus-explanation{
    width: 60%;
    margin: 10px auto;
}
.required-and-missing{
    background-color: #f5abab;
}
@media screen and (max-width: 500px) {
    #mainmenu ul {
        flex-wrap: wrap;
    }
    #mainmenu ul li {
        margin: 5px;
    }
    #mainmenu ul li img {
        height: 75px;
    }
    #module-ticket #ticket_form .ticket_form_container {
        height: inherit;
        flex-wrap: wrap;
    }
    #module-ticket #ticket_form .ticket_form_container > div {
        width: 100%;
        margin: 0;
    }
    #module-ticket .buttons {
        flex-wrap: wrap;
        height: initial;
        padding-bottom: 80px;
    }
    #module-ticket .buttons div {
        height: 50px;
        margin-top: 10px;
        margin-left: 0px;
        width: 100%;
    }
    #module-ticket .buttons div input {
        margin-left: 0px;
    }
    #offer_tables,
    #service_tables {
        flex-wrap: wrap;
        height: inherit;
    }
    #offer_tables > div,
    #service_tables > div {
        height: auto;
        width: 100%;
    }
    #shaby_app {
        min-height: calc(100vh - 75px);
    }
}
@media screen and (max-width: 1200px) {
    .offer_vehicle_small,
    .offer_vehicle_small input {
        width: 70px !Important;
    }
    #list_of_vehicles th {
        padding-right: 10px;
    }
    #vehicle-form .usagetype,
    #vehicle-form .enginetype,
    #vehicle-form .series,
    #vehicle-form .type {
        height: 70px;
        width: 70px;
    }
    #vehicle-form .usagetype {
        padding: 10px;
    }
    #vehicle-form #series .withimg span {
        width: 70px;
    }
    .offer-target {
        margin-bottom: 80px;
    }
    #vehicle-form .vehicle-form-section {
        margin-top: 0;
        height: calc(100vh - 130px);
    }
    #service-module-contract-form-wrapper > div:first-child {
        padding-right: 7px;
    }
    #offer-module #list_of_vehicles .vehicle_withdrawal > div > input {
        padding: 5px 5px;
        width: 105px;
    }
}
