.dropbtn2 {
    padding: 10px;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown2 {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content2 {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 140px;
}

.dropbtn2
{
  background: url('/pics/br32.png') no-repeat left center;
  padding-left: 35px;
  width: 80px;
}

.dropbtn2::after {
    background: rgba(0, 0, 0, 0) url("/pics/str.png") no-repeat scroll center center;
    content: "";
    height: 32px;
    position: absolute;
    right: 0;
    top: 14px;
    width: 32px;
}

.dropdown-content2 a:first-child
{
  background: url('/pics/uk.png') no-repeat left center;
}

.dropdown-content2 a:last-child
{
  background: url('/pics/ru.png') no-repeat left center;
}

/* Links inside the dropdown */
.dropdown-content2 a {
    color: black;
    padding: 2px 0 2px 25px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content2 a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown2:hover .dropdown-content2 {
    display: block;
}