/*#region Font */

@font-face {
    font-family: 'DaimlerCS-Light';
    src: url("/fonts/DaimlerCS-Light.ttf") format("ttf")
}

@font-face {
    font-family: 'DaimlerCS-Bold';
    src: url("/fonts/DaimlerCS-Bold.ttf") format("ttf")
}

@font-face {
    font-family: 'DaimlerCS-Regular';
    src: url("/fonts/DaimlerCS-Regular.ttf") format("ttf")
}

@font-face {
    font-family: 'icon-info';
    src: url("/font-icons/icon-info.eot?vd7h5k");
    src: url("/font-icons/icon-info.eot?vd7h5k#iefix") format("embedded-opentype"),url("/font-icons/icon-info.ttf?vd7h5k") format("truetype"),url("/font-icons/icon-info.woff?vd7h5k") format("woff"),url("/font-icons/icon-info.svg?vd7h5k#icon-info") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block
}

/*#endregion */

/*#region Header */

body {
    min-width: 1400px;
    margin: 0;
    font-family: "DaimlerCS-Regular", Arial, sans-serif;
}

a {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

header .language-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 75%;
    padding: 25px 0 10px 0;
    margin: 0 auto
}

    header .language-bar .info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none;
        margin-right: 15px
    }

        header .language-bar .info::after {
            font-family: 'icon-info';
            content: "";
            font-size: 15px;
            color: #000;
            -webkit-transition: color 0.3s;
            transition: color 0.3s
        }

        header .language-bar .info:hover::after {
            color: #767678
        }

    header .language-bar .german, header .language-bar .english {
        font-family: "DaimlerCS-Light",sans-serif;
        font-size: 15px;
        color: #000;
        text-decoration: none;
        text-transform: uppercase
    }

        header .language-bar .german:hover, header .language-bar .english:hover {
            color: #767678
        }

    header .language-bar .active {
        font-weight: bold;
        pointer-events: none
    }

    header .language-bar .space {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 10px
    }

        header .language-bar .space::after {
            content: "|";
            font-size: 12px;
            font-weight: bold;
            color: #000
        }

header .title-bar {
    width: 33.333%;
    height: 70px;
    text-align: center;
    margin: 0 auto
}

    header .title-bar .logo {
        max-width: 100%;
        height: auto
    }

header .menu-bar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px
}

    header .menu-bar .sub-menu {
        cursor: pointer;
        background-color: #000;
        border-radius: 4px;
        border: none;
        outline: none;
        padding: 10px 18px;
        margin-right: 25px
    }

        header .menu-bar .sub-menu .bar-top, header .menu-bar .sub-menu .bar-middle, header .menu-bar .sub-menu .bar-bottom {
            width: 20px;
            height: 3px;
            background-color: #fff;
            border-radius: 1.5px;
            -webkit-transition: 0.3s;
            transition: 0.3s
        }

        header .menu-bar .sub-menu .bar-middle, header .menu-bar .sub-menu .bar-bottom {
            margin-top: 5px
        }

        header .menu-bar .sub-menu .sub-menu-window {
            display: none;
            position: absolute;
            top: 70px;
            right: 0;
            left: 0;
            z-index: 1;
            background-color: #000;
            padding: 15px 0 25px 0
        }

            header .menu-bar .sub-menu .sub-menu-window .sub-menu-container {
                width: 40%;
                margin: 0 auto
            }

                header .menu-bar .sub-menu .sub-menu-window .sub-menu-container .sub-menu-item {
                    display: block;
                    font-family: "DaimlerCS-Light",sans-serif;
                    font-size: 16px;
                    line-height: 2.5;
                    color: #fff;
                    text-decoration: none;
                    text-align: left;
                    -webkit-transition: 0.5s;
                    transition: 0.5s
                }

                    header .menu-bar .sub-menu .sub-menu-window .sub-menu-container .sub-menu-item:hover {
                        color: #767678
                    }

                header .menu-bar .sub-menu .sub-menu-window .sub-menu-container .active {
                    font-weight: bold;
                    /*pointer-events: none*/
                }

        header .menu-bar .sub-menu.open {
            background-color: #fff
        }

            header .menu-bar .sub-menu.open .bar-top, header .menu-bar .sub-menu.open .bar-middle, header .menu-bar .sub-menu.open .bar-bottom {
                background-color: #000
            }

            header .menu-bar .sub-menu.open .bar-top {
                -webkit-transform: translate(0, 8px) rotate(-45deg);
                transform: translate(0, 8px) rotate(-45deg)
            }

            header .menu-bar .sub-menu.open .bar-middle {
                opacity: 0
            }

            header .menu-bar .sub-menu.open .bar-bottom {
                -webkit-transform: translate(0, -8px) rotate(45deg);
                transform: translate(0, -8px) rotate(45deg)
            }

            header .menu-bar .sub-menu.open .sub-menu-window {
                display: block;
                -webkit-animation: slide-in-fwd-center 0.5s ease-out both;
                animation: slide-in-fwd-center 0.5s ease-out both
            }

    header .menu-bar .menu-item {
        font-family: "DaimlerCS-Light",sans-serif;
        font-size: 15px;
        color: #000;
        text-decoration: none;
        text-transform: uppercase
    }

        header .menu-bar .menu-item:hover {
            color: #767678
        }

    header .menu-bar .active {
        font-weight: bold;
        /*pointer-events: none*/
    }

    header .menu-bar .menu-space {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 10px
    }

        header .menu-bar .menu-space::after {
            content: "/";
            font-size: 20px;
            font-weight: bold;
            color: #000
        }

/*#endregion */

/*#region page-content */

#page-content .top {
    position: relative;
    width: 100%;
    height: 285px;
    background-color: #e7e7e7
}

    #page-content .top .top-text-window {
        position: absolute;
        right: 0;
        bottom: -22px;
        width: 60%;
        height: 105px;
        background-color: #fff;
        padding: 45px 55px
    }

        #page-content .top .top-text-window .main-text {
            font-family: "DaimlerCS-Bold",sans-serif;
            font-size: 44px;
            line-height: 1;
            color: #000;
            margin: 0
        }

        #page-content .top .top-text-window .additional-text {
            font-family: "DaimlerCS-Bold",sans-serif;
            font-size: 26px;
            font-weight: bold;
            line-height: 1;
            color: #000;
            margin: 25px 0 0 0
        }

/*#endregion */

/*#region product-table */

#page-content #product-table {
    background-color: #fff;
    padding: 90px 0 80px 0
}

    #page-content #product-table .table-container {
        width: 90%;
        margin: 0 auto
    }

        #page-content #product-table .table-container h2 {
            font-family: "DaimlerCS-Bold",sans-serif;
            font-size: 35px;
            line-height: 1.429;
            color: #000;
            margin: 0 0 40px 0
        }

        #page-content #product-table .table-container .top-text {
            font-family: "DaimlerCS-Light",sans-serif;
            font-size: 21px;
            line-height: 1.571;
            color: #000;
            margin: 0
        }

        #page-content #product-table .table-container .shop-link {
            display: inline-block;
            font-family: "DaimlerCS-Bold",sans-serif;
            font-size: 21px;
            font-weight: bold;
            line-height: 1;
            color: #000;
            text-decoration: none;
            margin: 10px 0 0 0
        }

            #page-content #product-table .table-container .shop-link:hover {
                text-decoration: underline
            }

        #page-content #product-table .table-container .table-top {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            border-top: 2px solid #e7e7e7;
            padding: 25px 0;
            margin-top: 40px
        }

            #page-content #product-table .table-container .table-top .title {
                font-family: "DaimlerCS-Regular",sans-serif;
                font-size: 23px;
                color: #767678
            }

            #page-content #product-table .table-container .table-top #language {
                margin-left: -15%
            }

            #page-content #product-table .table-container .table-top select {
                font-family: "DaimlerCS-Regular",sans-serif;
                font-size: 23px;
                color: #000;
                border: none;
                border-bottom: 2px solid #e7e7e7;
                outline: none;
                border-radius: unset;
                padding-bottom: 5px
            }

            #page-content #product-table .table-container .table-top .reset {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                font-family: "DaimlerCS-Regular",sans-serif;
                font-size: 20px;
                line-height: 1;
                color: #fff;
                background-color: #000;
                border: none;
                outline: none;
                border-radius: unset;
                cursor: pointer;
                padding: 15px 20px
            }

                #page-content #product-table .table-container .table-top .reset::after {
                    content: "×";
                    font-size: 30px;
                    margin-left: 15px
                }

        #page-content #product-table .table-container .table table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 15px
        }

            #page-content #product-table .table-container .table table tbody tr:nth-child(odd) {
                background-color: #e7e7e7
            }

            #page-content #product-table .table-container .table table tbody tr th {
                font-family: "DaimlerCS-Bold",sans-serif;
                font-size: 23px;
                font-weight: bold;
                text-align: left;
                background-color: #fff;
                border-bottom: 2px solid #e7e7e7;
                padding: 0 30px 15px 30px
            }

            #page-content #product-table .table-container .table table tbody tr td {
                font-family: "DaimlerCS-Bold",sans-serif;
                font-size: 23px;
                text-align: left;
                padding: 5px 30px
            }

                #page-content #product-table .table-container .table table tbody tr td a {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex
                }

                    #page-content #product-table .table-container .table table tbody tr td a .icon-pdf, #page-content #product-table .table-container .table table tbody tr td a .icon-txt {
                        width: auto;
                        height: 55px
                    }

        #page-content #product-table .table-container .pagination {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin-top: 90px
        }

            #page-content #product-table .table-container .pagination .pages-number {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex
            }

                #page-content #product-table .table-container .pagination .pages-number .number {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    width: 50px;
                    height: 50px;
                    font-family: "DaimlerCS-Regular",sans-serif;
                    font-size: 23px;
                    color: #000;
                    text-decoration: none
                }

                    #page-content #product-table .table-container .pagination .pages-number .number:hover {
                        background-color: rgba(0,0,0,0.2)
                    }

                #page-content #product-table .table-container .pagination .pages-number .active {
                    color: #fff;
                    background-color: #000;
                    pointer-events: none
                }

            #page-content #product-table .table-container .pagination .pages-navigation p {
                font-family: "DaimlerCS-Regular",sans-serif;
                font-size: 23px;
                color: #767678
            }

/*#endregion */

/*#region pdf-download */

#page-content #pdf-download {
    background-color: #fff;
    padding: 90px 0 80px 0
}

    #page-content #pdf-download .download-container {
        width: 65%;
        margin: 0 auto
    }

        #page-content #pdf-download .download-container h2 {
            font-family: "DaimlerCS-Bold",sans-serif;
            font-size: 35px;
            line-height: 1.429;
            color: #000;
            margin: 0 0 40px 0
        }

        #page-content #pdf-download .download-container .download-row {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            border-top: 2px solid #e7e7e7;
            border-bottom: 2px solid #e7e7e7;
            padding: 5px 0;
            margin-top: -2px
        }

            #page-content #pdf-download .download-container .download-row .title {
                font-family: "DaimlerCS-Bold",sans-serif;
                font-size: 26px;
                line-height: 1;
                color: #000;
                margin: 0
            }

            #page-content #pdf-download .download-container .download-row .pdf-file {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center
            }

                #page-content #pdf-download .download-container .download-row .pdf-file .pdf-icon {
                    width: 55px;
                    height: 55px
                }

/*#endregion */

/*#region Feedback */

#page-content #feedback {
    padding: 55px 0 0 0;
    margin: 0 0 170px 0
}

    #page-content #feedback .feedback-form {
        width: 55%;
        margin: 0 auto
    }

        #page-content #feedback .feedback-form h2 {
            font-family: "DaimlerCS-Bold",sans-serif;
            font-size: 35px;
            color: #000;
            margin: 0
        }

        #page-content #feedback .feedback-form .feedback {
            margin-top: 25px
        }

            #page-content #feedback .feedback-form .feedback .first-name-input input, #page-content #feedback .feedback-form .feedback .surname-input input, #page-content #feedback .feedback-form .feedback .email-input input {
                width: 97%;
                font-family: "DaimlerCS-Regular",sans-serif;
                font-size: 21px;
                color: #767678;
                border: 1px solid #e7e7e7;
                outline: none;
                padding: 15px;
                margin-bottom: 25px
            }

            #page-content #feedback .feedback-form .feedback .feedback-input textarea {
                width: 97%;
                font-family: "DaimlerCS-Regular",sans-serif;
                font-size: 21px;
                color: #767678;
                border: 1px solid #e7e7e7;
                outline: none;
                resize: none;
                padding: 15px
            }

            #page-content #feedback .feedback-form .feedback .feedback-button {
                text-align: right;
                margin-top: 40px
            }

                #page-content #feedback .feedback-form .feedback .feedback-button button {
                    font-family: "DaimlerCS-Regular",sans-serif;
                    font-size: 18px;
                    color: #fff;
                    background-color: #000;
                    border: none;
                    padding: 18px 36px;
                    -webkit-transition: color 0.3s;
                    transition: color 0.3s
                }

                #page-content #feedback .feedback-form .feedback .feedback-button input {
                    font-family: "DaimlerCS-Regular",sans-serif;
                    font-size: 18px;
                    color: #fff;
                    background-color: #000;
                    border: none;
                    padding: 18px 36px;
                    -webkit-transition: color 0.3s;
                    transition: color 0.3s
                }

                    #page-content #feedback .feedback-form .feedback .feedback-button button:hover {
                        cursor: pointer;
                        color: #767678
                    }

                    #page-content #feedback .feedback-form .feedback .feedback-button input:hover {
                        cursor: pointer;
                        color: #767678
                    }

/*#endregion */

/*#region Footer */

footer {
    background-color: #e7e7e7;
    padding-bottom: 70px
}

    footer .footer-top, footer .footer-logos, footer .footer-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 62%;
        margin: 0 auto
    }

    footer .footer-top {
        height: 70px;
        border-top: 1px solid #9e9e9e;
        border-bottom: 1px solid #9e9e9e
    }

        footer .footer-top .copyright, footer .footer-top .footer-menu-item {
            font-family: "DaimlerCS-Regular",sans-serif;
            font-size: 16px;
            font-weight: bold;
            line-height: 1;
            color: rgba(158,158,158,0.667);
            margin: 0 30px 0 0
        }

        footer .footer-top .footer-menu-item {
            text-decoration: none
        }

            footer .footer-top .footer-menu-item:hover {
                color: #767678
            }

    footer .footer-logos {
        height: 190px
    }

        footer .footer-logos .logo-item {
            margin-right: 30px
        }

            footer .footer-logos .logo-item:last-child {
                margin-right: 0
            }

            footer .footer-logos .logo-item:hover {
                -webkit-filter: grayscale(100%);
                filter: grayscale(100%)
            }

    footer .footer-bottom .copyright {
        font-family: "DaimlerCS-Regular",sans-serif;
        font-size: 16px;
        line-height: 1;
        color: #767678;
        margin: 0
    }

/*#endregion */

/*#region keyframes */

@-webkit-keyframes slide-in-fwd-center {
    0% {
        -webkit-transform: translateZ(-1400px);
        transform: translateZ(-1400px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes slide-in-fwd-center {
    0% {
        -webkit-transform: translateZ(-1400px);
        transform: translateZ(-1400px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

/*#endregion */
