

  .CybotCookiebotDialogDetailBodyContentCookieContainerButton {
   	display: flex; 
   }
.custom-select-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.custom-select {
  position: relative;
  cursor: pointer;
  border: 1px solid #ebf0f7;
  border-radius: 0.5rem;
  padding: 8px;
  background-color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selected-option {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 8px;
}

.options {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  top: 120%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 9999;
  display: none;
  border: 1px solid #ebf0f7;
  border-radius: 0.5rem;
  width: fit-content;
}

.options li {
  display: flex;
  align-items: center;
  padding: 8px;
  transition: background-color 0.3s;
  cursor: pointer;
  gap: 0.5rem;
}

.options li:hover {
  background-color: #f5f5f5;
}

.flag-icon {
  width: 24px;
  height: 16px;
}

.country-name {
  font-size: 14px;
}

.open {
  display: block;
}
