body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #fff;
    overflow-y: scroll;
}

.top_bar {
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
    font-size:14px;
    background-color:#128ac9;
    color:#fff;
    padding:0px;
    margin:0px;
    height:25px;
}

nav{
    background-color: #fff;
    box-shadow: 0px 12px 12px #d4e1f0;
}

.topnav {
    display:flex;
    justify-content:space-between;
    overflow: hidden;
    max-width: 1400px;
    margin: auto;
    background-color: #fff;
    padding:7px 7px;
}

.head_left {
    display: flex;
    flex-direction: row;
    align-items:center;
}

.head_menu {
    margin-left:30px;
    display:flex;
    gap:20px;
}

.head_logo {
    height: 70px;
}

.navigation {
    float: left;
    display: block;
    color: #128ac9;
    text-align: center;
    text-decoration: none;
    font-weight:bold;
    font-size:18px;
}

.navigation:after {
    display: block;
    color:#b3ccea;
    content: '';
    border-bottom: solid 2px #b3ccea;  
    transform: scaleX(0);  
    transition: transform 250ms ease-in-out;
}

.navigation:hover:after{ 
    transform: scaleX(1);
}

.topnav .icon {
    display: none;
}

.userlogin {
    display:flex;
    float: right;
    margin-top: 11px;
    color:#128ac9;
    align-items:center;
}

.companyname {
    display:flex;
    font-style: italic;
    color:#128ac9;
    margin-right:10px;
    align-items:center;
}

.logout{
    padding: 2px 5px;
    border-radius: 5px;
    color: #3f6fb6;
    font-weight: 700;
    cursor: pointer;
    display:none;
    margin-right:5px;
}

.language {
    width:25px;
    height:17px;
    margin-left:3px;
    cursor:pointer;
    border:1px solid #000;
}

.notactive {
    opacity:0.3;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 875px) {
    .topnav a {display: none;}
    .topnav a.icon {
        float: left;
        display: block;
    }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 875px) {
    .topnav.responsive {
        position: relative;
    }
    .topnav.responsive a.icon {
        position: absolute;
        left: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .search-form{
        margin-right:12px;
    }
}