/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 10 2025 | 18:45:32 */
.custom-language-switcher {
  position: relative;
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
}

.cls-selected {
    background-color: transparent;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    gap: 4px;
    transition: background-color 0.2s ease;
}

.cls-selected .globe-icon {
  width: 16px;
  height: 16px;
}

.cls-selected .arrow-icon {
  width: 10px;
  height: 10px;
  margin-left: auto;
}

.cls-options {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: calc(100% + 13px);
  left: 0;
  right: 0;
  background-color: #4B5A68;
  border-radius: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  z-index: 1000;
}

.custom-language-switcher.open .cls-options {
  max-height: 200px;
  overflow-y: auto;
}

.cls-option {
  padding: 10px 14px;
  color: #FFFFFF;
  background-color: #4B5A68;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  justify-content: center;
}

.cls-option:hover {
  background-color: #505A68;
}

.cls-option.selected {
  background-color: #3D4A56;
}

.cls-options::-webkit-scrollbar {
  width: 6px;
}

.cls-options::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.2);
  border-radius: 3px;
}
@media (min-width: 1025px) {
	ul.cls-options {
		width: 80px;
	}
}

@media (max-width: 1024px) {
	.cls-selected {
		color: #4B5A68 !important;
		min-width: fit-content;
	}
	
	
	
	.custom-language-switcher.open .cls-options {
		width: 100px;
	}
	
	
	
	.custom-language-switcher img.arrow-icon {
    display: none;
	}

	.cls-selected:after {
		content: '\F282';
		font-family: 'bootstrap-icons';
		margin-left: 6px;
 pointer-events: none;
	}
	.custom-language-switcher {
    display: flex;
	}
}

.cls-selected {
    color: #ffffff;
    font-family: var(--Typography-Font-family-Body, Lato);
    font-size: var(--Typography-Font-size-14, 14px);
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

li.cls-option {
    color: var(--Text-Body-tertiary, #FFF);
    font-family: var(--Typography-Font-family-Body, Lato);
    font-size: var(--Typography-Font-size-14, 14px);
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}