/* styles.css */
.search-content {
  width:568px;
  padding-left:48px;
  padding-right:10px;
}
.search-result {
  border-radius: 16px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  margin-bottom: 10px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  position: relative;

}

.result-title {
  font-size: 18px;
  font-weight: normal;
  color: #000080;
  margin-bottom: 1px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
#ad4 .result-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url('https://advstat.ru/check-circle.svg') no-repeat center;
  background-size: contain;
  position: absolute;
  left: -30px;
  top: 26px;
  transform: translateY(-50%);
}
#admy4 .result-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url('https://advstat.ru/arrow.svg') no-repeat center;
  background-size: contain;
  position: absolute;
  left: -30px;
  top: 25px;
  transform: translateY(-50%);
}

.result-link {
  color: #006000;
  text-decoration: none;
  opacity: 1;
  font-weight: bold;
  transition: opacity 0.5s ease-in-out;
}
.result-links a {
   text-decoration: none;
   margin: 0 6px 0 2px;
}
.result-description span{
     opacity: 0.68;
     color:grey;
}
.result-link .mark{
      display:inline;
      color:black;
      position: relative; /* Добавлено для позиционирования псевдоэлемента */
      padding-left: 20px; /* Добавлено для размещения звезды слева от текста */
}
.result-link .mark::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url('https://advstat.ru/star.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0; /* Позиционируем слева от текста */
    top: 50%; /* Регулируем вертикальное положение относительно блока .mark */
    transform: translateY(-50%); /* Центрируем вертикально */
}
#myRange {
  width: 300px; /* Ширина элемента */
  height: 20px; /* Высота элемента */
  /* Дополнительные стили, если необходимо */
}

/* CSS */
.fade-out {
  animation: fadeOut 0.5s ease-in-out forwards;
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
  display: block !important; /* Чтобы убедиться, что элемент видим при появлении */
  opacity: 0;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .search-content {
    width: 90%; /* Занимает всю доступную ширину экрана */
    padding-left: 30px; /* Небольшой отступ слева */
    padding-right: 10px; /* Небольшой отступ справа */
  }
}