/*  Header Styles */
.header {
    background: #000000;
    height: 72px;
    margin: 0;
}
.logocontainer {
    /*padding-left: 8vw;*/
    display: flex;
    height: auto;
    min-height: 72px;
    margin:0;
    align-items: center;
}


.logocontainer img:after {
    border-right: 1px solid #d2d7da;
    right: 20px;
    left: 50%;
}


.logocontainer a {
    color: white;
}
.menucontainer {
    padding-right: 8vw;
    margin: 0;
    min-height: 72px;
    height: 72px;    
}
/* Make sure the dropdown text of the menu is always on the left no mater what orientation of the component is set to */
.dropdown {
    text-align: left;
}

@media (max-width: 768px) {
    .menucontainer {
        padding-right: 0;
    }
    .navbar-collapse {
        position: fixed;
    }    
}