/* Dropdown Button */
.dropbtn {
    background-color: orange;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    height:40px;
    width:170px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #DF7401;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    height:132px;
    width:160px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

#img_flag {
  vertical-align: -5px;
  margin-right:10px;
}

.flag {
  background:url(../pic/world.png);
  height: 16px;
  width: 16px;
  display:block;
  position: absolute;
  margin-left:15px;

}