#profile-filters {
  display: flex;
  height: 74px;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.filters {
  /* margin-top: 100px; */
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  /* height: 71px; */
  background-color: #2e2f35;
  /* border-radius: 20px; */
}

.filters-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.filter {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  display: flex;
  flex-direction: column;
}

/* Стили для выпадающего списка */
.dropdown {
  position: relative;
  width: max-content;
  position: relative;
  display: inline-block;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: baseline;
}

.dropdown h3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 10px;
}

.dropdown-btn-filter {
  width: 100%;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  background-color: #2e2f35;
  color: #757575;
  border: none;
  cursor: pointer;
  padding: 0;
}

.dropdown-content {
  position: absolute;
  right: 0;
  display: none;
  position: absolute;
  background-color: #fff;
  color: black;
  width: max-content;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
  padding: 14px 10px;
  /* margin-top: 30px; */
  max-height: 223px;
  overflow-y: auto;
  z-index: 10;
}

.dropdown-content h3 {
  color: #df8741;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.dropdown-content label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 300;
  font-size: 13px;
  padding: 8px;
  cursor: pointer;
  border-bottom: 1px solid #b8b8b8;
  color: #0e0e0e;
}

.dropdown-content input {
  width: auto;
  height: auto;
  margin: 0;
}

.dropdown-content label:last-of-type {
  border-bottom: 0;
}

.dropdown-content label:hover {
  color: #df8741;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Стили для чекбоксов и радиокнопок */
input[type="checkbox"],
input[type="radio"] {
  margin-right: 8px;
}

.filter-buttons {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.filter-buttons button {
  font-family: "Bebas Neue";
  margin: 0 10px;
  padding: 5px;
  /* border-radius: 5px; */
  /* background: radial-gradient(50% 50% at 50% 50%, #CA3A3B 0%, #E79C9C 0.01%, #CA3A3B 100%); */
  background: #df8741;
  color: black;
  width: 100px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

@media screen and (max-width: 1279px) {
  /* .container {
      width: 100%;
      padding: 0 15px;
  } */

  .filters {
    height: max-content;
    margin-top: 30px;
  }

  .filter {
    min-width: 102px;
    margin-bottom: 15px;
  }

  #profile-filters {
    height: auto;
    flex-direction: column;
    padding: 20px;
  }

  .dropdown h3 {
    font-size: 14px !important;
    font-weight: 400;
    line-height: 20px;
  }

  /* .profiles-content {
      justify-content: center;
  }

  .main-block-content {
      display: flex;
      flex-direction: column;
      align-items: center;
  } */
}
