﻿html, body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

body {
    padding-bottom: 60px;
}

/*#region Navigation*/

.navbar {
    display: block;
    padding: 30px 0;
}

.navigation-main,
.navigation-branding {
    width: 100%;
}

    .navigation-branding .container {
        position: relative;
    }

.navigation-main {
    margin: 20px 0;
    padding: 10px 0;
}

header {
    position: relative;
}

#customer-band {
    background-color: #f4f4f4;
    position: absolute;
    width: 100%;
    height: 30px;
    z-index: 1;
    bottom: -20px;
    display: block;
}

#customer-overlay {
    display: none;
    height: 140px;
    width: 100%;
    right: 0;
    position: absolute;
    z-index: 1;
    margin-top: 204px;
}

    #customer-overlay.active {
        display: block;
    }

#customer-dropdown {
    z-index: 2;
    position: absolute;
    right: 0;
    transform: translate(-35px, -10px);
}

    #customer-dropdown > a {
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        margin-top: 5px;
        margin-bottom: 60px;
        transform: translate(60px, 0);
    }

        #customer-dropdown > a > svg {
            transform: translate(-63px, 36px);
        }

    #customer-dropdown ul {
        display: none;
    }

    #customer-dropdown.active ul {
        display: contents;
    }

    #customer-dropdown ul {
        list-style: none;
    }

    #customer-dropdown > a,
    #customer-dropdown > ul > li > * {
        float: right;
    }

    #customer-dropdown svg.arrow-down {
        position: absolute;
        right: -30px;
        top: 2px;
        transform: translate(0, 38px);
    }

    #customer-dropdown.active svg.arrow-down {
        transform: rotate(180deg) translate(0, -38px);
    }

    #customer-dropdown svg:not(.arrow-down) {
        margin: 0 0 0 15px;
    }

    #customer-dropdown > ul > li {
        text-transform: uppercase
    }

        #customer-dropdown > ul > li > a {
            margin: 15px 5px 0 0;
        }

    #customer-dropdown svg {
        height: 25px;
    }

#menu-toggle {
    cursor: pointer;
    margin-left: 15px;
}

    #menu-toggle svg path {
        fill: white;
    }

#menu-dropdown {
    display: none;
    margin-left: 15px;
}

    #menu-dropdown.active {
        display: block;
    }

    #menu-dropdown .navbar-nav {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    #menu-dropdown .nav-item {
        margin-bottom: 15px;
    }

@media screen and (min-width: 576px) {
    #menu-toggle {
        display: none;
    }

    #menu-dropdown,
    #menu-dropdown.active {
        display: block;
        margin-left: auto;
    }

        #menu-dropdown .nav-item {
            margin-bottom: 0;
        }

        #menu-dropdown .navbar-nav {
            margin-top: 0;
            margin-bottom: 0;
        }

    #customer-dropdown {
        transform: translate(-12px, -30px);
    }

        #customer-dropdown > a {
            margin-bottom: 0;
            transform: translate(0, 0);
        }

    #customer-overlay {
        width: 40%;
        height: 300px;
        right: 0;
        margin-top: 0;
    }

    #customer-dropdown > a > svg {
        transform: none;
    }

        /*#customer-dropdown > a > svg path,
        #customer-dropdown .arrow-down path {
            fill: inherit;
        }*/

    #customer-dropdown svg.arrow-down {
        position: absolute;
        right: -30px;
        top: 2px;
        transform: none;
    }

    #customer-dropdown.active svg.arrow-down {
        transform: rotate(180deg) translate(0, 0);
    }

    #customer-band {
        display: none;
    }

    #customer-dropdown > ul > li > a {
        margin: 15px 0 0 0;
    }
}

/*#endregion*/

/*#region Login Form*/

h2.page-title {
    font-weight: 700;
}

form.nice-form-group input {
    width: 100%;
}

    form.nice-form-group input[type="text"],
    form.nice-form-group input[type="password"] {
        background-color: transparent;
        border-bottom: solid #333333 1px;
        border-left: none;
        border-right: none;
        border-top: none;
        text-align: center;
        padding: 10px;
        margin-bottom: 25px;
    }

    form.nice-form-group input[type="submit"] {
        margin: 0 0 30px 0;
    }

form.nice-form-group svg {
    display: inherit;
    height: 30px;
    position: absolute;
    transform: translate(5px, 9px);
}

.button-fresh {
    text-transform: uppercase;
    border: none;
    padding: 10px;
    border-radius: 3px;
}


/*#endregion*/

/*#region Document Table*/
#doc-table {
    width: 100%;
    font-size: 20px;
    margin-bottom: 40px;
}

    #doc-table .row:first-child {
        padding: 10px 0;
    }

    #doc-table .row {
        padding: 20px 0;
    }

        #doc-table .row.title {
            display: none;
        }

    #doc-table .doc-download {
        border: none;
        padding: 15px 10px 17px 10px;
        border-radius: 3px;
        width: 100%;
        text-transform: uppercase;
    }

    #doc-table .row div.title {
        color: black;
        margin-bottom: 0;
        display: block;
    }

    #doc-table button > svg {
        height: 25px;
        width: 25px;
    }

    #doc-table div > svg {
        height: 25px;
        width: 25px;
        margin-right: 5px;
    }

    #doc-table .row > div {
        margin-bottom: 20px;
    }

    #doc-table .row:not(.title) div.col-12:not(.order-lg-1) {
        transform: translateY(5px);
    }

.icon-climate {
    height: 60px;
}

@media screen and (min-width: 992px) {
    #doc-table {
        font-size: 16px;
    }

        #doc-table .row.title {
            display: flex;
        }

        #doc-table .row div.title {
            display: none;
        }

        #doc-table button.doc-download {
            padding: 5px 10px 7px 10px;
            width: auto;
            text-transform: none;
        }

        #doc-table .row > div {
            margin-bottom: 0;
        }

        #doc-table button > svg {
            height: 18px;
            width: 18px;
            transform: translateY(-1px);
        }

            #doc-table button > svg ~ span {
                transform: translateY(1px);
                display: inline-block;
            }
}

/*#endregion*/

/*#region Info Table*/

.info-table .row {
    padding: 15px 0;
}

/*#endregion*/

/*#region Login Speech Bubble*/

.login-info .intro {
    font-size: 21px;
    font-weight: 500;
}

.login-info {
    padding: 20px 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

    .login-info td {
        padding-right: 15px;
    }

.speech-bubble {
    position: relative;
}

@media screen and (min-width: 768px) {
    .speech-bubble:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 0;
        border-bottom: 0;
        border-right: 0;
        margin-bottom: -81px;
        margin-left: 34px;
    }

    .login-info {
        padding: 40px 30px;
        border-bottom-left-radius: 30px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
}

@media screen and (min-width: 992px) {
    .login-info {
        height: 225px;
    }

    .speech-bubble:after {
        margin-left: 74px;
    }
}

@media screen and (min-width: 1200px) {
    .speech-bubble:after {
        margin-left: 104px;
    }
}

/*#endregion*/

.no-data-message {
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .logo {
        height: 80px;
    }

    .navbar-brand {
        margin-left: 15px;
        margin-bottom: 20px;
    }

    .container:not(.keep-margin) {
        padding-left: 0;
        padding-right: 0;
    }

    .login-text-bottom {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

        .login-text-bottom:first-child {
            margin-bottom: 20px;
        }

    .login-info {
        padding: 25px 30px 45px 30px;
    }
}
