﻿*:before,
*:after {
    -webkit-box-sizing: unset;
    -moz-box-sizing: unset;
    box-sizing: unset;
}

:root {
    --main-white: white;
    --main-darkBlue: #044caa;
}

body {
    padding-top: 0;
    padding-bottom: 0;
    font-family: 'Open Sans', sans-serif;
}

html,
body,
#sitecontainer,
#pageContent,
#container {
    height: 100%;
}

#container {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    position: relative;
}

.viewDesktop {
    display: block !important;
}

.viewMobile {
    display: none !important;
}

/*************************
    Font
**************************/
h1 {
}

h2 {
    margin-top: 0;
    padding-top: 20px;
}

.req {
    color: #ff0000;
}
/*************************
    Control Styles
**************************/
.hide {
    display: none !important;
}

.show {
    display: block !important;
}


.flex {
    display: -ms-flexbox;
    display: flex;
}

.flexwrap {
    flex-wrap: wrap;
}

ul.noList {
    list-style-type: none;
    padding-left: 0;
}

ul.pipeSeparator li:not(:last-child) {
    padding-right: 5px;
    border-right: 1px #000000 solid;
}

ul.pipeSeparator li:not(:first-child) {
    padding-left: 5px;
}

.active {
    font-weight: 700;
}

.noMargin {
    margin: 0;
}

.noPadding {
    padding: 0;
}

a.noLinkFormat {
    text-decoration: none;
}

    a.noLinkFormat:link,
    a.noLinkFormat:visited,
    a.noLinkFormat:hover {
        color: #000000;
    }

.relative {
    position: relative;
}

.flex1 {
    -ms-flex: 1;
    flex: 1;
}

.flex2 {
    -ms-flex: 2;
    flex: 2;
}

.flex3 {
    -ms-flex: 3;
    flex: 3;
}

.flex4 {
    -ms-flex: 4;
    flex: 4;
}

.flex5 {
    -ms-flex: 5;
    flex: 5;
}

.whiteContainer {
    box-shadow: 0 1px 5px rgba(0,0,0,.2),0 2px 2px rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12);
    position: relative;
    border-radius: 2px;
    min-width: 320px;
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 7px;
}

/*************************
    Navigation
**************************/
#navigation {
    width: 273px;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    background: #ffffff;
    box-shadow: 12px 0 15px -4px rgba(31, 73, 125, 0.8);
    overflow-x: hidden;
}

.navigationTransition {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

#navigation.openNavigation {
    overflow: visible;
    overflow-x: hidden;
}

#navigation.closeNavigation {
    width: 0px;
    overflow-x: hidden;
}

#closeNavigation .topRow {
    min-width: 190px;
}

#navigationMenu .menuItem a.menuItemLink {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: #6f6f6f;
    text-transform: uppercase;
    font-weight: 700;
}

#navigationMenu .menuItem a:active {
    color: var(--main-darkBlue);
}

#navigationMenu .menuItem a:hover {
    color: var(--main-darkBlue);
}

#navigation #navigationMenu > ul {
    border-top: 2px solid #dddddd;
    padding-left: 0;
}

#navigationMenu .menuItem {
    list-style-type: none;
}

#navigationMenu > ul > li {
    border-bottom: 2px solid #dddddd;
}

#navigation #navigationMenu > ul > li > a {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 40px;
    font-size: 22px;
    font-weight: 700;
}

#navigation #navigationMenu > ul > li.active > a {
    color: var(--main-darkBlue);
}

#navigation #navigationMenu > ul > li.active > ul {
    border-top: 2px solid #dddddd;
    padding-bottom: 15px;
}

#navigation #navigationMenu > ul > li > ul {
    width: 100%;
}

#navigation #navigationMenu > ul > li.active > ul > li {
    height: 26px;
    overflow: visible;
}

#navigation #navigationMenu > ul > li > ul > li > a {
    display: block;
    padding-bottom: 8px;
    padding-top: 8px;
    padding-left: 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

#navigation #navigationMenu > ul > li > ul > li.active > a {
    color: #000000;
}

#navigation #closeNavigation .menuClose {
    padding-top: 14px;
    padding-bottom: 11px;
    padding-right: 20px;
    text-align: right;
}

    #navigation #closeNavigation .menuClose .cwDropdown {
        padding-left: 27px;
    }

    #navigation #closeNavigation .menuClose .cwDropdownContainer {
        text-align: left;
    }

    #navigation #closeNavigation .menuClose i {
        color: #000000;
        font-size: 24px;
    }

    #navigation #closeNavigation .menuClose .cwDropdown .cwDropdownItems {
        text-align: left;
    }

.navigationMenu li ul {
    left: 0;
    top: 36px;
    z-index: 1;
    width: 233px;
    margin-left: -40px;
    text-transform: uppercase;
}

    .navigationMenu li ul li {
        overflow: hidden;
        height: 0;
    }

#navigation.navigationTransition .navigationMenu li ul li {
    -webkit-transition: height 200ms ease-in;
    -moz-transition: height 200ms ease-in;
    -o-transition: height 200ms ease-in;
    transition: height 200ms ease-in;
}

.navigationMenu ul > li.active ul li {
    height: 25px;
}

#rightHeader #headerLinks .shopLink {
    font-size: 15px;
    font-family: 'Open Sans';
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/*************************
    Header
**************************/
#header {
    height: 180px;
    width: 100%;
    background-color: #b3d4fc;
    background-color: var(--main-white);
    box-shadow: 0 1px 5px rgba(0,0,0,.2),0 2px 2px rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12);
}

    #header .headerContainer {
        width: 100%;
        max-width: 1080px;
        margin-left: auto;
        margin-right: auto;
        padding: 15px 25px 0 25px;
    }

    #header .openMenu {
        cursor: pointer;
    }

    /* Menu */
    #header .menuContainer {
        font-size: 32px;
        padding-left: 60px;
    }

    /* Logo */
    #header .logoContainer {
        display: flex;
    }

        #header .logoContainer .logoTxt {
            padding-left: 15px;
            white-space: nowrap;
        }

            #header .logoContainer .logoTxt .logoTxtStrong {
                font-weight: 600;
            }

            #header .logoContainer .logoTxt .logoTxtStrong,
            #header .logoContainer .logoTxt .logoTxtNormal {
                font-size: 28px;
            }

        #header .logoContainer .logoImg img {
            height: 60px;
        }

    /* Manager Steps */
    #header .managerStepContainer {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        flex-direction: row;
        margin: 0;
    }

        #header .managerStepContainer .managerStep {
            pointer-events: none;
            -ms-flex-direction: column;
            flex-direction: column;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -ms-flex-align: center;
            align-items: center;
            -ms-flex-preferred-size: 175px;
            flex-basis: 175px;
            -ms-flex-align: center;
            align-items: center;
            display: -ms-flexbox;
            display: flex;
            padding: 24px;
            position: relative;
        }

        #header .managerStepContainer > a.doneStepLink {
            flex-basis: 175px;
        }

            #header .managerStepContainer > a.doneStepLink:first-child {
                flex-basis: 150px;
            }

        #header .managerStepContainer > .managerStep:first-child {
            padding: 24px 24px 24px 0;
        }

        #header .managerStepContainer > .managerStep:last-child {
            padding: 24px 0 24px 24px;
        }

        #header .managerStepContainer .managerStep .step {
            border: 3px solid #b3d4fc;
            border: 3px solid var(--main-white);
            box-shadow: 0 0 0 2px #000;
            color: #fff;
            -ms-flex-align: center;
            align-items: center;
            border-radius: 50%;
            display: -ms-flexbox;
            display: flex;
            font-size: 0;
            -ms-flex-pack: center;
            justify-content: center;
            height: 24px;
            margin-right: 8px;
            margin-left: 8px;
            width: 24px;
            transition: .3s cubic-bezier(.25,.8,.25,1);
            margin-bottom: 12px;
            min-width: 24px;
        }

        #header .managerStepContainer .managerStep.active .step {
            background: #044caa;
            background: var(--main-darkBlue);
            box-shadow: 0 0 0 2px #fff;
        }

        #header .managerStepContainer .managerStep.done .step {
            background: #044caa;
            background: var(--main-darkBlue);
            box-shadow: none;
            border: none;
            color: #ffffff;
            font-size: 12px;
        }

        #header .managerStepContainer .managerStep .stepLabel {
            padding-right: 3px;
            font-size: 16px;
            -ms-flex-align: start;
            align-items: flex-start;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-direction: column;
            flex-direction: column;
            text-align: center;
        }

        #header .managerStepContainer .divider {
            background: #6ea1cb;
            margin: 35px -67px 0;
            -ms-flex-item-align: start;
            align-self: flex-start;
            border: none;
            display: block;
            height: 1px;
            -ms-flex: 1;
            flex: 1;
            width: 100%;
            height: 4px;
        }

            #header .managerStepContainer .divider.active {
                background: #044caa;
                background: var(--main-darkBlue);
                margin: 35px -63px 0 -63px;
            }

                #header .managerStepContainer .divider.active.first {
                    margin: 35px -63px 0 -43px;
                }

/*************************
    Content
**************************/
#content {
    margin-top: 3px;
    padding-bottom: 30px;
    padding-top: 27px;
    background: #f6f6f6;
    /*min-height: calc(100vh - 460px);*/
}

    #content .contentContainer,
    #footer .footerContainer {
        width: 100%;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 25px 0 25px;
    }

/*************************
    Footer
**************************/
#footer {
    /*position: absolute;*/
    bottom: 0;
    /*height: 270px;*/
    width: 100%;
    border-top: 2px solid #e8e8e8;
    padding-top: 16px;
    font-size: 12px;
}

    #footer .footerContainer {
        display: -ms-flexbox;
        display: flex;
    }

        #footer .footerContainer > div:not(:first-child) {
            padding-left: 20px;
        }

        #footer .footerContainer .contactContainer {
            flex: 2;
        }

        #footer .footerContainer .languageContainer {
            flex: 1;
        }

        #footer .footerContainer .contactInformation,
        #footer .footerContainer .contactInformation > div {
            padding-right: 10px;
        }

            #footer .footerContainer .contactInformation > div,
            #footer .footerContainer .contactInformation .contactAddress > div {
                padding-bottom: 15px;
            }

            #footer .footerContainer .contactInformation i {
                min-width: 30px;
            }

        #footer .footerContainer.copyright {
            display: block;
            color: #999;
            text-align: center;
            height: 44px;
            padding-top: 10px;
        }

            #footer .footerContainer.copyright a {
                font-weight: bold;
                color: #999;
            }

    #footer .footerTitle {
        font-size: 22px;
        font-weight: 700;
        color: #003052;
        padding-bottom: 15px;
    }

.openTime dl {
    display: grid;
}

.openTime dt {
    grid-column-start: 1;
    padding-right: 5px;
}

.openTime dd {
    grid-column-start: 2;
}

/*************************
    Welcome
**************************/
.welcomeContainer .tireInformation > div {
    padding-bottom: 10px;
}

.welcomeContainer .tireDetails > div:not(:first-child) {
    padding-left: 30px;
}

.welcomeContainer .tireInformationTitle {
    font-weight: 600;
}

.welcomeContainer .tireDetails .green {
    color: #7abd03;
}

.welcomeContainer .tireDetails .orange {
    color: #ffa500;
}

.welcomeContainer .tireDetails .red {
    color: #dc0714;
}

.welcomeContainer .optionsWithTires {
    display: none;
}

.licensePlateSearch {
    z-index: 99;
    width: 40px;
    height: 34px;
    background-color: #e1e1e1;
    border: 1px solid #aaa;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    color: #565656;
    font-size: 16px;
    cursor: pointer;
    bottom: 0;
}

/*************************
    Info
**************************/
.infoContainer .tireInformation > div {
    padding-bottom: 10px;
}

.infoContainer .tireDetails > div:not(:first-child) {
    padding-left: 30px;
}

.infoContainer .tireInformationTitle {
    font-weight: 600;
}

.infoContainer .tireDetails .green {
    color: #7abd03;
}

.infoContainer .tireDetails .orange {
    color: #ffa500;
}

.infoContainer .tireDetails .red {
    color: #dc0714;
}

.infoContainer .optionsWithTires {
    display: none;
}

/*************************
    Date Picker Overwrite
**************************/
.calendarContainer .dateTitleContainer {
    height: 40px;
}

.datePickerContainer .mddtp-picker {
    position: relative;
    left: 0;
    -webkit-transform: none;
    transform: none;
}

.datePickerContainer .mddtp-picker__views {
    max-height: 340px;
}

.datePickerContainer .mddtp-picker .mddtp-picker__header {
    width: 230px;
    min-width: 230px;
}

.datePickerContainer .mddtp-picker .mddtp-picker__body {
    width: 100%;
}

.datePickerContainer #mddtp-date__viewHolder {
    margin-left: auto;
    margin-right: auto;
}

.datePickerContainer .mddtp-picker .mddtp-picker__header,
.datePickerContainer .mddtp-picker__body .mddtp-picker__viewHolder .mddtp-picker__grid span.mddtp-picker__cell--selected,
.datePickerContainer .mddtp-picker__body .mddtp-picker__viewHolder .mddtp-picker__grid .mddtp-picker__tr span.mddtp-picker__cell:hover {
    background-color: #044caa;
    background-color: var(--main-darkBlue);
}

.datePickerContainer .mddtp-button,
.datePickerContainer .mddtp-picker__body .mddtp-picker__viewHolder .mddtp-picker__grid span.mddtp-picker__cell--today {
    color: #044caa;
    color: var(--main-darkBlue);
}

.datePickerContainer .mddtp-picker__action {
    display: none;
}

/*************************
    Calendar
**************************/
.calendarContainer .dateLabel {
    font-weight: 600;
    font-size: 18px;
}

.calendarContainer .dateTitleContainer > i {
    padding: 6px;
}

.calendarContainer .dateTitleContainer {
    display: none;
}

.calendarContainer .workUnits.whiteContainer {
    padding: 0;
}

.calendarContainer .unit {
    border-bottom: 1px lightgray solid;
}

.calendarContainer .workUnits {
    height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.calendarContainer .unitTimeBooking {
    display: block;
    color: #a0a0a0;
    font-size: 13px;
}

/* The container */
.radiobuttonLabel {
    display: block;
    position: relative;
    padding: 15px 40px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .radiobuttonLabel input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmarkRadio {
    position: absolute;
    top: 15px;
    left: 5px;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

    .checkmarkRadio.disabled {
        background-color: #b3d4fc;
        background-color: var(--main-white);
    }

/* On mouse-over, add a grey background color */
.radiobuttonLabel:hover input ~ .checkmarkRadio {
    background-color: #b3d4fc;
    background-color: var(--main-white);
    /*border: 2px rgba(0,0,0,.38) solid;*/
}

/* When the radio button is checked, add a blue background */
.radiobuttonLabel input:checked ~ .checkmarkRadio {
    background-color: #044caa;
    background-color: var(--main-darkBlue);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmarkRadio:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radiobuttonLabel input:checked ~ .checkmarkRadio:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radiobuttonLabel .checkmarkRadio:after {
    top: 8px;
    left: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: white;
}

/*************************
    Services
**************************/
/* The checkboxLabel */
.checkboxLabel {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkboxLabel input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 2px rgba(0,0,0,.38) solid;
}

    .checkmark.disabled {
        background-color: rgba(0,0,0,.38);
    }

.checkboxLabel input:checked ~ .checkmark.disabled {
    background-color: rgba(0,0,0,.38);
}

/* On mouse-over, add a grey background color */
.checkboxLabel:hover input ~ .checkmark {
    background-color: #b3d4fc;
    background-color: var(--main-white);
    border: 2px rgba(0,0,0,.38) solid;
}

/* When the checkbox is checked, add a background */
.checkboxLabel input:checked ~ .checkmark {
    background-color: #044caa;
    background-color: var(--main-darkBlue);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkboxLabel input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkboxLabel .checkmark:after {
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*************************
    Data
**************************/
.twoCol > div:not(:first-child),
.threeCol > div:not(:first-child) {
    padding-left: 20px;
}

.twoCol.submitButtons > div:first-child {
    text-align: left;
}

.twoCol.submitButtons > div:last-child {
    text-align: right;
}

.submitButtons {
    min-width: 320px;
}

.dataContainer .reqText {
    padding-left: 5px;
}

/*************************
    Welcome
**************************/
.welcomeContainer .carInformation {
    width: 100%;
}

    .welcomeContainer .carInformation > div:not(:first-child) {
        padding-left: 10px;
    }

    .welcomeContainer .carInformation > div > ul > li:nth-child(2n) {
        font-weight: 700;
    }

.bringInformation .radiobuttonLabel {
    padding-top: 0;
}

.bringInformation .checkmarkRadio {
    top: 0px;
}

.bringInformation > div:not(:first-child) {
    padding-left: 65px;
}

/*************************
    Summary
**************************/
.summary .summaryInfoWrapper {
    padding: 10px 30px;
}

    .summary .summaryInfoWrapper div.flex > div:not(:first-child) {
        padding-left: 10px;
    }

.summary .dateInfo .wrapper {
    padding: 10px;
}

.summary .dateDisplay {
    background: var(--main-darkBlue);
}

    .summary .dateDisplay .year {
        color: rgba(255, 255, 255, 0.7);
        font-size: 16px;
        font-weight: 600;
    }

    .summary .dateDisplay .day,
    .summary .dateDisplay .date {
        font-size: 28px;
        font-weight: 700;
        color: #ffffff;
        line-height: normal;
    }

.summary .timeduration {
    font-size: 15px;
    font-weight: 600;
    color: white;
    line-height: normal;
    display: none;
}

.summary .infoLabel,
.summary .infoLabel a,
.summary .infoLabel a:visited,
.summary .infoIcon i {
    color: #9e9e9e;
    font-weight: 600;
    font-size: 16px;
}

    .summary .infoLabel a {
        text-decoration: none;
    }

.summary .infoIcon i {
    font-size: 32px;
}

.summary .timeDisplay {
    font-weight: 600;
    font-size: 22px;
    padding-bottom: 10px;
}

.infoRemark {
    padding-top: 10px;
}

.summary .executedServices .service i {
    color: #7abd03;
}

.summary .executedServices .service::after {
    content: "";
    display: table;
    clear: both;
}

.summary .executedServices .serviceCol {
    float: left;
}

    .summary .executedServices .serviceCol.text {
        width: 75%;
    }

.summary .infoContainer .service,
.summary .infoContainer .licensePlate {
    position: relative;
}

    .summary .infoContainer .service .servicePrice,
    .summary .infoContainer .licensePlate .totalPrice {
        position: absolute;
        right: 15px;
    }



.summary .infoContainer .licensePlate {
    font-weight: 700;
}

.summary .infoContainer .exclMaterial {
    padding-top: 10px;
    font-size: 10px;
}

.font-black {
    color: black;
}

a.font-black {
    color: black;
}

    a.font-black:hover {
        color: black;
    }

.floatLeft {
    float: left;
}

.paddingLeft10px {
    padding-left: 10px;
}

.paddingTop10px {
    float: left;
    padding-top: 10px;
}

.ddVehicleWidth {
    width: 100%;
}

/*************************
    Mobile Layout
**************************/
@media screen and (max-width: 540px) {
    .viewDesktop {
        display: none !important;
    }

    .viewMobile {
        display: block !important;
    }

    .flexFlowColMobile {
        flex-flow: column;
    }

    /** Header **/
    #header .logoContainer {
        display: block;
    }

        #header .logoContainer .logoImg img {
            height: 60px
        }

    #header .menuContainer {
        padding-left: 0;
        padding-right: 15px;
    }

    #header .logoContainer .logoTxt .logoTxtStrong,
    #header .logoContainer .logoTxt .logoTxtNormal {
        font-size: 16px;
    }

    /** Manager Steps **/
    #header .managerStepContainer .managerStep .stepLabel {
        display: none;
        margin-left: -60px;
        margin-right: -65px;
    }

        #header .managerStepContainer .managerStep .stepLabel.first {
            margin-left: auto;
        }

    #header .managerStepContainer .managerStep.active .stepLabel {
        display: block;
    }

    #header .managerStepContainer .managerStep {
        flex-basis: 50px;
    }
    /*#header .managerStepContainer .managerStep .step {
        background-color: #b3d4fc;
        background-color: var(--main-white);
    }*/
    #header .managerStepContainer > a.doneStepLink {
        flex-basis: 50px;
        z-index: 1;
    }

        #header .managerStepContainer > a.doneStepLink:first-child {
            flex-basis: 50px;
        }

    #header .managerStepContainer .managerStep,
    #header .managerStepContainer .managerStep:last-child,
    #header .managerStepContainer .managerStep:first-child {
        padding: 24px 0;
    }

    #header .managerStepContainer .divider.active,
    #header .managerStepContainer .divider.active.first {
        margin: 35px -20px 0 -20px;
        z-index: 0;
    }

    #header .managerStepContainer .divider {
        margin: 35px -15px 0 -15px;
    }


    #mddtp-picker__date.showDatePicker {
        display: block;
    }

    #mddtp-picker__date.hideDatePicker {
        display: none;
    }

    /** Date Picker **/
    .datePickerContainer .mddtp-picker .mddtp-picker__header {
        width: 100%;
    }
    /*.calendarContainer .dateTitleContainer {
        display: block;
    }*/

    /** FOOTER **/
    #footer .footerContainer {
        flex-flow: column;
    }

        #footer .footerContainer > div:not(:first-child) {
            padding-left: 0;
        }

        #footer .footerContainer > div:not(:last-child) {
            padding-bottom: 20px;
        }

    /** Welcome **/
    .bringInformation > div:first-child {
        padding-bottom: 20px;
    }

    .bringInformation > div:not(:first-child) {
        padding-left: 0;
    }

    .carInformation ul {
        display: flex;
    }

        .carInformation ul > li {
            flex: 1;
        }

    .contentContainer .welcomeContainer .carInformation > div {
        padding-left: 0;
    }

    .vehicleIcon {
        font-size: 32px;
    }

    /** Calendar **/
    .summaryInfoWrapper .editInfo {
        text-align: right;
        padding-top: 10px;
    }

    /** Summary **/
    .summary .summaryInfoWrapper {
        padding: 10px;
    }

    .summary .infoContainer .service .servicePrice,
    .summary .infoContainer .licensePlate .totalPrice {
        position: unset
    }

    .summary .executedServices .serviceCol.text {
        width: 60%;
    }

    .summary .summaryInfoWrapper .dateInfo {
        display: block !important;
    }
}
