/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme/
Template: betheme
Author: Muffin group
Author URI: https://muffingroup.com/
Description: The biggest WordPress Theme ever
Version: 21.9.8.1738920962
Updated: 2025-02-07 09:36:02

*/

/* Container that holds the globe icon and dropdown */
.language-dropdown {
    position: absolute;
    right: 60px;
    top: 50px;
}

/* Globe image style */
.globe-icon {
    cursor: pointer;
    width: 35px;
    /* Adjust size as needed */
    height: auto;
}

/* Dropdown list styling - hidden by default */
.language-list {
    display: none;
    position: absolute;
    top: 100%;
    /* Positions below the globe icon */
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 120px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Display dropdown when hovering over the container */
.language-dropdown:hover .language-list {
    display: block;
}

/* Style for each language item */
.language-list li {
    padding: 8px 12px;
}

/* Link and span styling within each item */
.language-list li a,
.language-list li span {
    text-decoration: none;
    color: #333;
    display: block;
}

/* Hover effect for non-active language links */
.language-list li a:hover {
    background-color: #f0f0f0;
}

/* Optional: highlight the active language */
.language-list li.active span {
    font-weight: bold;
    background-color: #eaeaea;
}

@media (max-width: 767px) {
    .language-dropdown {
        top: 43px;
        right: 50px;
    }
}
@media (max-width: 420px) {
    #Top_bar .logo {
        text-align: left !important;
    }
}
