a, a:focus, a:hover{
  text-decoration:none!important;
  cursor:pointer!important;
}
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    word-break: keep-all;
}
.header a {
    /*text-decoration: none;*/
    color: #0056b3;
    font-weight:lighter;
    padding:16px;
    font-size:18px;
}
.menu {
    display: flex;
    align-items: center;
    padding-left:16px;
    padding-right:16px;
}
.menu-item {
    position: relative;
    cursor: pointer;
    padding:16px;
}
.menu-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 120px;
    z-index:90;
}
.menu-dropdown a {
    display:block;
    padding:4px 16px;
    font-size:14px;
}
.menu-item:hover .menu-dropdown {
    display: block;
}
.menu-item>img{
	width:12px;
}
.center-name {
    margin-left:90px;
    font-weight:bold!important;
}
@media (max-width: 768px) {
    .center-name {
	    margin-left:0;
    }
}
