.usplw {
	display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
}

.language-switch {
  display: flex;
  align-items: center;
	width: 15%;
  justify-content: end;
}

.language-flag {
	display: flex;
  flex-direction: row;
  align-items: center;
}

.language-flag > img {
	height: 20px;
}

.language-flag > svg {
	height: 14px;
}

.custom-lang-switcher {
    position: relative;
    display: inline-block;
    font-family: inherit;
}
.lang-trigger {
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
}
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
    min-width: 170px;
}
.lang-dropdown.hidden {
    display: none;
}
.lang-option {
    display: flex;
  flex-direction: row;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}
.lang-option:hover {
    background-color: #f1f1f1;
}
.flag {
    margin-right: 8px;
    font-size: 1.2em;
}