﻿body {
    height: 100vh;
    font: normal normal bold 1vw/1vw Arial;
}

container-custom {
    overflow-y: hidden;
}
/*header*/
.header {
    width: 100vw;
    background-color: #192E45;
    height: 8vh;
    color: #fff !important;
    position: relative;
}

.header .logo {
    height: 8vh; 
    line-height: 8vh;
    display: inline-block;
    cursor: pointer;
    margin-left: 1.5vw;
    position: relative;
}

#vertical-line {
    display: inline-block;
    border-left: 1px solid #fff;
    margin: 1vh 1vw 0 1vw;
    height: 6vh;
    float: left;
}

.header #logo-image {
    float: left;
    width: 15vw;
}

.header #logo-image-flag {
    height: 100%;
    display: flex;
    /* max-width: 40vw; */
}

.header .menu {
    height: 8vh;
    display: inline-block;
    float: right;
    font-size: medium;
}

    .header .menu > * {
        float: right;
    }

    .header .menu .button {
        line-height: 8vh;
        margin: 0 2vw;
        position: relative;
        cursor: pointer;
    }

        .header .menu .button > button:focus {
            outline: none;
        }

.header .button.dropdown > button {
    background-color: transparent;
    border: none;
    padding: 0px;
}

    .header .button.dropdown > button:after {
        content: " ";
        position: absolute;
        top: 50%;
        margin-top: -2px;
        left: 100%;
        margin-left: 5px;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid #fff;
    }

.header .button.dropdown .dropdown-menu {
    color: #000;
    background-color: #E1E1E1;
    padding: 0px;
}

    .header .button.dropdown .dropdown-menu p {
        margin: 0;
        line-height: 33px;
        font-weight: bold;
        font-size: 1.2rem;
        padding-left: 15px;
    }

        .header .button.dropdown .dropdown-menu p:hover {
            background-color: #f5f5f5;
        }

.header .menu .button hr {
    margin: 0;
    border-top: 5px solid #3A97D3;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.header .menu .button-selected {
    color: #3A97D3;
}

.header .polyglot-language-switcher > .pls-selected-locale {
    color: #fff;
}

.header .polyglot-language-switcher {
    font-size: 1.5rem;
    line-height: 8vh;
    font: inherit;
}

.header .pls-language-container a {
    line-height: 30px;
}

.header .polyglot-language-switcher > .pls-selected-locale:after {
    border-top: 4px solid #fff;
}

.menu-mobile {
    display: none;
}

.header-login-status {
    height: 8vh;
    line-height: 8vh;
    width: 100%;
    padding-right: 2vw;
    background-color: rgb(236, 235, 234);
    position: absolute;
    z-index: 99;
}

    .header-login-status .logged-in {
        float: right;
    }
/*header*/

.mainArea {
    height: 92vh;
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
}
