.search-container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.search-title {
  font-size: 20px;
  padding-bottom: 10px;
  text-align: center;
  line-height: 36px;
}

.search-tabs__container {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

.search-tabs__count {
  font-weight: 600;
}

.search-form {
  display: flex;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  clear: both;
  padding: 0;
  position: relative;
  margin-bottom: 60px;
}

.search-tabs__btn {
  padding-bottom: 10px !important;
}

.search-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-list li {
  padding: 10px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
}

.search__input {
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  background-color: #fff;
  padding: 10px 40px 10px 20px;
  border-radius: 100px;
  line-height: 21px;
  flex-grow: 1;
  margin: 0;
}

.search__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #222;
  min-width: 80px;
  border-radius: 0px 100px 100px 0px;
  height: 43px;
}

.search__submit svg {
  width: 20px;
  height: 20px;
  color: #fff;
  fill: #fff;
  stroke: #fff;
}

@media (min-width: 768px) {
  .search-tabs__container {
    flex-direction: row;
    justify-content: space-between;
  }
}

[role="tablist"] {
  min-width: 100%;
  display: flex;
}

[role="tab"],
[role="tab"]:focus,
[role="tab"]:hover {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 20px 0 0;
  border: 0;
  outline: none;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  opacity: 0.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[role="tab"][aria-selected="true"] {
  opacity: 1;
}

[role="tab"][aria-selected="false"] {
  border-bottom: red;
}

[role="tab"] span.focus {
  display: inline-block;
}

[role="tab"]:hover span.focus,
[role="tab"]:focus span.focus,
[role="tab"]:active span.focus {
}

[role="tabpanel"] {
  padding: 10px 0 0 0;
  width: 100%;
  overflow: auto;
  animation: fade-in 0.3s ease-in-out;
}

[role="tabpanel"].is-hidden {
  display: none;
}

[role="tabpanel"] p {
  margin: 0;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
