footer {
  color: #fff;
}
.footer-phone {
  margin-top: 2px;
  font-family: 'Times New Roman', Times, serif;
  color: lightgrey;
  font-size: 7px;
  text-align: center;
  line-height: 9px;
}

.site-footer a {
  color: lightgrey;
  font-size: 7px;
}

.custom-select {
  position: relative;
  width: 178px;
  cursor: pointer;
}

.select-selected {
  font-family: 'Times New Roman', Times, serif;
  width: 100%;
  position: relative;
  display: block;
  padding: 0 0 0 8px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 5px;
  background: -webkit-linear-gradient(
    top,
    #f9e7ba 20%,
    #fbe5a5 50%,
    #f7d261 52%,
    #f5c737 100%
  );
  background-clip: padding-box;
  box-shadow: 3px 1px 1px #000, 3px 1px 7px #fff;
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  color: #000;
}

.select-selected::after {
  content: '\25BE';
  /* Символ стрелочки вниз (▾) */
  font-size: 20px;
  position: absolute;
  top: 48%;
  right: 4px;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.select-selected.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.select-selected::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 26px;
  /* Расстояние между стрелочкой и палочкой */
  height: 28px;
  /* Высота палочки */
  width: 1px;
  /* Ширина палочки */
  background-color: #000;
  /* Цвет палочки */
  transform: translateY(-50%);
}

.select-items {
  z-index: 2;
  font-family: 'Times New Roman', 'Times', serif;
  font-size: 14px;
  font-weight: 700;

  display: none;
  position: absolute;
  top: 30px;
  left: 90px;
  max-height: 240px;
  overflow-y: auto;
  padding-left: 4px;

  width: 250px;
  background: -webkit-linear-gradient(
    top,
    #f7d261 20%,
    #f7d261 50%,
    #f7d261 52%,
    #f7d261 100%
  );
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  border: 1px solid #aaa;
  margin-right: 4px;
  margin-bottom: 4px;
  border-radius: 0 0 4px 4px;
}

.select-items div {
  padding: 5px 6px;
  cursor: pointer;
  line-height: 15px;
  transition: background-color 0.2s ease;
  /* Плавное изменение цвета при наведении */
}

.select-items div:hover {
  background-color: #50250c;
  color: #fcd988;
}

/* Стиль для скрытия выпадающего списка */
.select-hide {
  display: block;
}

@media (max-width: 1285px) {
  .select-items {
    left: 0%;
  }
}

@media (max-width: 1105px) {
  .select-items {
    left: -25%;
  }
}
