/* Container to control the width */
.custom-select-container {
  width: 100px; /* Set a fixed width */
  position: relative;
  font-family: Arial, sans-serif;
}

/* The custom select box */
.custom-select {
  position: relative;
  cursor: pointer;
}

@media (min-width: 1500px) {
    .kl-header .content-wrapper {
        max-width: 1600px;
padding-left: 10vh;
    }
    }
}

/* The trigger box displaying the selected language */
.custom-select-trigger {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;font-weight: 600;
    color: black;
    font-family: 'red hat display';
  text-align: center;
}

/* Options container */
.custom-options {
  position: absolute;
  top: 100%; /* Aligns the dropdown directly below the trigger */
  left: 0;
  width: 100%; /* Matches the width of the custom select */
  background-color: white;
  border-radius: 5px;
  display: none; /* Initially hidden */
  z-index: 99;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better visibility */
}

/* Display options when the 'open' class is added */
.custom-options.open {
  display: block; /* Show the options when 'open' class is present */
}

/* Option items */
.custom-option {
  padding: 10px;
  text-align: center;
  cursor: pointer;
}
.kl-navbar__item{
color:#6b6b6b;
font-size :17px;
font-family: Red Hat Display, sans-serif;
}
/* Hover effect for options */
.custom-option:hover {
  background-color: #007bff;
  color: white;
}

/* Selected option styling */
.custom-option.selected {
  background-color: #007bff;
  color: white;
}
.kl-header {

box-shadow:none;}