.catmenu-container {
    position: relative;
    display: inline-block;
    z-index: 3;
}

.catmenu-item {
    text-align: left;
    padding: 10px;
    border-radius: 5px;
    color: #78818E;
    background-color: #FFFFFF;
    border: 1px solid #D9D9D9;
    font-size: 14px;
    cursor: pointer;
    background-color: white;
    width: 190px;
}

.dropdown-catmenu {
    display: none;
    position: absolute;
    left: 0;
    top: 90%; /* Позиционируем под родительским элементом */
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 3;
    border-radius: 6px;
}

.catmenu-item:hover .dropdown-catmenu {
    display: block; /* Показываем меню при наведении */
}

.submenu {
    display: none;
    position: absolute;
    left: 80%;
    top: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 6px;
    background-color: white;
}

.dropdown-catmenu a, .submenu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 6px;
}

.active-path {
    background-color: #d3e0ea; /* Цвет выделения для текущего пути */
}

.text-popup-header {
  display: flex;
}
.text-popup-close-button {
  margin-left: auto;
  border: none;
  margin-bottom: auto;
  background: none;
  color: grey;
  cursor: pointer;
}
.text-popup {
  display: block;
  width: 40%;
  background-color: white;
  border-radius: 6px;
  padding: 10px;
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 4px 4px 20px 14px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 20px 14px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 20px 14px rgba(34, 60, 80, 0.2);
}
textarea {
  width: 100%;
  height: 300px;
  box-sizing: border-box;
  padding: 8px; /* отступы внутри */
  vertical-align: top;
  resize: vertical;
}
.submit-review-button {
  cursor: pointer;
  font-weight: normal;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  font-size: 14px;
  margin-top: 12px;
  width: 240px;
  border: none;
  border-radius: 5px;
  background-color: #4886FF;
  color: #FFFFFF;
}

.dropdown-catmenu {
	z-index: 5;
}

.menu-limiter {
	overflow-y: auto; overflow-x: visible; max-height: 600px;
}
.medium-searching-line:disabled::placeholder {
   color: white !important;
   background-color: #ccc;
}
