.browse-filter {
  width: 100%;
  max-width: 376px;
}
.browse-filter li .bx-chevron-down {
  transform: rotate(0deg);
  transition: all 0.3s;
}
.browse-filter li ul {
  transition: all 0.1s ease-in-out;
  height: 0;
  overflow: hidden;
}
.browse-filter .show .bx-chevron-down {
  transform: rotate(-180deg);
  transition: all 0.3s;
}
.browse-filter .show ul {
  height: 100%;
  overflow: visible;
}
@media screen and (max-width: 992px) {
  .browse-filter {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
    flex: 0 0 100%;
  }
}

.browse-content {
  flex: 0 0 calc(100% - 376px);
  width: calc(100% - 376px);
}
@media (max-width: 1120px) {
  .browse-content .first-search .search-container-main {
    width: calc(100% - 55px);
  }
}
@media screen and (max-width: 992px) {
  .browse-content {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }
  .browse-content .first-search .search-container-main {
    width: calc(100% - 55px);
  }
}
.browse-content .search input {
  width: 648px;
  height: 48px !important;
  padding-right: 20px !important;
}
.browse-content .search .search-input {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
.browse-content .search .search-input label {
  position: unset;
}
.browse-content .search .search-input input {
  border: 1px solid #3b2811 !important;
}
.browse-content .search .search-input i {
  right: 10px;
  position: absolute;
  font-size: 24px;
}
.browse-content ul.show {
  border-radius: 16px;
  display: block !important;
  top: 60px;
}
