/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

.custom-lang-dropdown {
    position: relative;
    display: inline-block;
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 20px);
	width: 48px !important;
}

.custom-lang-dropdown .dropdown-toggle {
    background-color: rgba(255, 255, 255, 0.1);
    border: none !important;
    padding: 3px;
    cursor: pointer;
}
.custom-lang-dropdown img{
	width: 42px !important;
}

.custom-lang-dropdown .dropdown-menu {
    display: none;  /* Hidden by default */
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    min-width: 100%;
    border: none !important;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-lang-dropdown .dropdown-menu li {
    padding: 8px;
}
.dropdown-toggle::after{
	display: none;
}
.custom-lang-dropdown .dropdown-menu li a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
}

.custom-lang-dropdown:hover .dropdown-menu {
    display: block;  /* Show the dropdown on hover */
}
@media (max-width: 1024px){
	.custom-lang-dropdown {
	    left: auto !important;
		right: 106px !important;
	}
}