/* Стилизация флагов */
.language-flag {
    width: 24px;
    height: 16px;
    margin-right: 5px;
}

/* Стилизация кастомного выпадающего списка */
.custom-select {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-select select {
    display: none; /* Скрыть стандартный выпадающий список */
}
.custom-select {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-left: auto;
  /* margin-right: auto; */
  padding: 20px;
}
.custom-options {
    position: absolute;
    top: 80%;
    left: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    display: none;
    min-width: 65px;
}

.custom-options.open {
    display: block;
}

.custom-option {
    display: flex;
    align-items: center;
    padding: 5px;
}
