.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #af3615;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: bold;
}

.padlft3px{
  padding-left: 3px;
}


/*.dropdown-content a:hover {background-color: #af3615;color: white;font-weight: bold;}*/
.dropdown-content a:hover {
  color: white;
  font-weight: bold;

  background: linear-gradient(to left, #af3615 50%, white 50%);
  background-size: 200% 100%;
  background-position:right; bottom;
  transition: all .5s ease-out;
}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}