body{
	overflow-x:hidden;
	padding-top: 70px !important;
	top: 0px !important;
}

.ct-topbar__list {
  margin-bottom: 0px;
}


.ct-language__dropdown li{
	
	background: #f5f5f5;   /* 👈 whitesmoke */
	padding: 8px 10px;
}
.ct-language__dropdown li a{
	/*display: block;*/
	display: flex;              
	align-items: center;  
	gap: 8px;                  
	color: #333;
	font-size: 14px;
	text-decoration: none;
}
.ct-language__dropdown li:first-child{
	padding-top: 10px;
	border-radius: 3px 3px 0 0;
}
.ct-language__dropdown li:last-child{
	padding-bottom: 10px;
	border-radius: 0 0 3px 3px;
}
.ct-language__dropdown li:hover{
	/*background: #444;*/
	background: #e0e0e0;
}
.ct-language__dropdown:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 8px;
	height: 0;
	border: 0 solid transparent;
	border-right-width: 8px;
	border-left-width: 8px;
	border-bottom: 8px solid #222;
}

.ct-language:hover .ct-language__dropdown{
	max-height: 500px;
	padding-top: 8px;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.ct-language__dropdown li a img {
  width: 24px !important;
  height: 16px !important;
  object-fit: cover;
}

.ct-language i {
    font-size: 12px;
    margin-left: 5px;
    color: #666;
}


/* Language Dropdown Styling */
.ct-language {
    list-style: none;
    position: relative;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    padding: 10px 0;
    padding-bottom: 10px;
    /*margin-left: 20px !important;*/
}


.ct-language__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    /*width: 60px; */
    /*background: #222;*/
    padding: 10px 0;
    display: none; /* Hide by default */
    z-index: 999;
    border-radius: 4px;
    
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
    
    width: 160px;              /* 👈 more space for text */
    background: #f9f9f9;       /* 👈 clean light background */
    border: 1px solid #ddd;    /* 👈 subtle border */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.ct-language:hover .ct-language__dropdown {
    display: block; /* Show on hover */
}

.ct-language:hover .ct-language__dropdown{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

