#langSelect {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
}

#langSelect option {
    color: red;
    font-size: 11px;
}

.lang-dropdown {
    position: relative;
    display: block;
    margin-left: 10px;
    padding-top: 10px;
}

.lang-dropdown button {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  color: #bf0102;
}

.lang-options {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  min-width: 160px;
  z-index: 999;
}

.lang-options div {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.lang-options div.active {
    background-color: #bf0102;
    color: #fff;
    font-weight: bold;
}

.lang-options div.active:hover {
    color: #333;
}

.lang-options div:hover {
  background-color: #f0f0f0;
}

.lang-dropdown:hover .lang-options {
  display: block;
  left: 30%;
  bottom: 0%;
}

@media(min-width: 768px) {
  .lang-dropdown {
    margin-left: 20px;
  }

  .lang-dropdown:hover .lang-options {
    display: block;
    left: auto;
    bottom: auto;
  }
}

@media(min-width:992px) {
  
}

@media(min-width:1200px) {
  
}