.flag-icon {
    width: 80px;
    border-radius: 50%;
}
.gmee-country-selector {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 20px;
}


.gmee-country-selector.open .gmee-country-dropdown {
    display: block;
}

.gmee-country-selector .main-flag {
    width: 50px;
}

.gmee-country-selector .gmee-country-dropdown .flag-icon {
    width: 40px;
}

.gmee-country-selector .gmee-country-dropdown div {
    display: flex;
    align-items: center;
}

.gmee-country-selector .gmee-country-dropdown div a {
    display: flex;
    align-items: center;
    padding: 8px 10px !important;
}

.gmee-country-selector .gmee-country-dropdown div a img {
    margin-right: 10px;
}

.gmee-country-selector .gmee-country-dropdown a {
    color: black !important;
}

.gmee-displayed-country {
   /* padding-top: 0 !important;
   transform: translateY(3px); */
}

.gmee-displayed-country span {
   display: none;
}

/* DESKTOP SPECIFIC CSS */
@media (min-width: 993px) {   
   .gmee-country-dropdown {
       display: none;
       position: absolute;
       background-color: white;
       padding: 10px;
       box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
       z-index: 1;
       width: 200px;
       right: -150px;
       top: 80px;
       border-radius: 4px;
   }
}
@media (min-width: 993px) and (max-width: 1200px) {   
   /* Displace menu for re-balancing */
   .menu-primary-menu-container > ul {
      margin-right: 55px !important;
   } 
}



/* MOBILE */
@media (max-width: 992.009px) {
    .gmee-country-selector {
        margin-top: 15px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-right: 0 !important;
    }
    
    .gmee-country-dropdown {
        display: none;
        background-color: white;
        padding: 0px;
        margin-top: 5px;
        box-shadow: 0px 0 0 0px rgba(0,0,0,0.1);
        z-index: 1;
        border-radius: 4px;
        position: relative !important;
        width: 100% !important;
        border-radius: 4px;
    }
    
    .gmee-country-dropdown div a {
        padding: 5px 5px 5px 0px !important;
        font-size: 15px !important;
        
    }
    
    .gmee-country-dropdown > div {
       border-bottom: 1px solid #e8e8e8 !important;
    }
    
    .gmee-country-dropdown div {
        border-bottom: none; 
     }
    
    .gmee-country-dropdown .flag-icon {
        width: 30px !important;
    }
    
    .gmee-displayed-country {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        background: #fff !important;
        font-size: 15px !important;
        padding: 7px 7px 7px 10px !important;
        border-radius: 4px !important;
    }
    
    .gmee-displayed-country span {
        display: inline !important;
        color: black !important;
    }
    
    .gmee-displayed-country img {
        width: 30px !important;
        margin-right: 10px !important;
    }
}