 .dropdown button {
   background-color: var(--ea-primary-color);
   max-width: 40px;
   width: max-content;
   height: 40px;
   border-radius: 5px;
   color: white;
   padding: 10px;
   margin-left: 15px;
   font-size: 16px;
   border: none;
   cursor: pointer;
   justify-content: space-evenly;
   overflow: hidden;
   z-index: 2;
 }

 .dropdown button img {
   display: flex;
   align-items: center;
   margin: 0;

 }

 .dropdown button img,
 .dropdown-content li img {
   /* width: 24px; */
 }

 .dropdown button,
 .dropdown-content li {
   display: flex;
   align-items: center;
   overflow: hidden;
   justify-content: center;
 }

 .arrow-down {
   width: 0;
   height: 0;
   display: inline-block;
   vertical-align: middle;
   border-style: solid;
   border-width: 4px 4px 0 4px;
   border-color: #fff transparent transparent transparent;
   margin: 0 0 0 5px;
 }

 .dropdown button:hover {
   cursor: pointer;
   background-color: #3c5b77;
 }

 /* Style for the dropdown content */
 .dropdown-content {
   display: none;
   position: absolute;
   margin: 1px 0 0 15px;
   padding: 0;
   background-color: var(--ea-primary-color);
   max-width: 40px;
   box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
   z-index: 15;
   border-radius: 5px;
   overflow: hidden;
   max-height: 315px;
 }

 /* Style for the dropdown content items */
 .dropdown-content li {
   color: black;
   padding: 2px 2px;
   text-decoration: none;
   justify-content: center;
 }

 .dropdown-content li img {
   margin: 0 20px 0px 20px;
 }

 /* Style for the dropdown content items on hover */
 .dropdown-content li:hover {
   background-color: #f1f1f1;
   cursor: pointer;
   color: blue;
   border-radius: 5px;
 }

 /* Show the dropdown content when the dropdown button is clicked */
 .dropdown:focus-within .dropdown-content {
   display: block;
 }

 /* Animate the dropdown content */
 @keyframes slideIn {
   from {
     opacity: 0;
     transform: translateY(-10px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .dropdown-content {
   animation: slideIn 0.3s ease-out;
 }


 .goog-te-gadget-simple {
   visibility: hidden;
 }

 .skiptranslate iframe {
   visibility: hidden !important;
 }

 #google_translate_element {
   visibility: hidden !important;
   height: 0;
 }

 #google_translate_element span {
   color: #000;
 }