.abm-search-page-root {
  position: relative;
  min-height: 300px;
  opacity: 1;
  transition: all .3s ease;
}

.abm-search-page-root.hidden {
  display: block !important;
  opacity: 0;
}

.abm-search-page-title {
  margin-top: 30px;
  margin-bottom: 30px;
}

.abm-search-filter-title {
  min-height: 50px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
}

.abm-search-filter-section {
  margin-bottom: 20px;
  border: 1px solid #FFE9E1;
}

.abm-search-filter-section-header {
  background-color: #FFF7F3;
  padding: 8px 12px;
  color: #EF6331;
  font-weight: 600;
  cursor: pointer;
}

.abm-search-filter-section-header .fa {
  font-weight: 600;
}

.abm-search-filter-section-header .fa-minus-square-o,
.abm-search-filter-section-header.collapsed .fa-plus-square-o {
  display: inline-block;
}

.abm-search-filter-section-header .fa-plus-square-o,
.abm-search-filter-section-header.collapsed .fa-minus-square-o {
  display: none;
}

.abm-search-filter-section-body {
  padding: 12px 0;
  max-height: 200px;
  overflow-y: auto;
}

.abm-search-filter-section-body li {
  list-style: none;
}

.abm-search-filter-section-body li a:visited,
.abm-search-filter-section-body li a:active,
.abm-search-filter-section-body li a:hover,
.abm-search-filter-section-body li a:focus,
.abm-search-filter-section-body li a {
  color: #333;
  outline: none;
}

.abm-search-filter-section-body li a {
  padding: 3px 12px 3px calc(var(--level) * 20px + 12px);
  position: relative;
  display: flex;
  align-items: center;
}

.abm-search-filter-section-body-item {
  padding-left: 0;
  margin-bottom: 0;
}

.abm-search-filter-section-body-item li a {
  font-weight: 600;
}

.abm-search-filter-section-body li a.selector::before,
.abm-search-filter-section-body li a.has-children::before {
  font-family: FontAwesome;
  position: absolute;
  left: calc((var(--level) - 1) * 20px + 12px);
  top: 13px;
  transform: translateY(-50%) rotate(0);
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.abm-search-filter-section-body li a.has-children::before {
  content: '\f107';
}

.abm-search-filter-section-body li a.selector::before {
  content: '\f00c';
  width: 14px;
  height: 14px;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 12px;
  color: transparent;
}

.abm-search-filter-section-body li a.selector.selected::before,
.abm-search-filter-section-body li a.selector.active::before {
  color: #ef6331;
  border-color: #ef6331;
}

.abm-search-filter-section-body li a.has-children.collapsed::before {
  transform: translateY(-50%) rotate(-90deg);
}

.abm-search-filter-section-body-sub-item {
  padding: 0;
}

.abm-search-filter-section-body-sub-item li a {
  font-weight: normal;
}

.abm-search-filter-item.active {
  background-color: #f2f2f2;
}

.abm-search-filter-item-count {
    color: #999;
}

.abm-search-filter-item-name {
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 5px;
}

.abm-search-filtered-by-section {
  min-height: 50px;
  padding-bottom: 10px;
  display: flex;
  align-items: stretch;
}

.abm-search-filtered-by-title {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background-color: #FFBDA6;
  position: relative;
  z-index: 10;
}

.abm-search-filtered-by-title::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-left-color: #FFBDA6;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.abm-search-filtered-by-main {
  flex: 1;
  padding: 2px 40px 2px 12px;
  align-items: center;
  display: flex;
  border: 1px solid #FFBDA6;
  border-left: none;
  background-color: #FFF;
  position: relative;
}

.abm-search-filtered-by-list {
  display: flex;
  flex-wrap: wrap;
}

.abm-search-filtered-by-item {
  background-color: #efefef;
  font-size: 12px;
  padding: 5px 24px 5px 8px;
  border-radius: 4px;
  position: relative;
  margin: 3px 5px;
}

.abm-search-filtered-by-item-close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 22px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  cursor: pointer;
}

.abm-search-filtered-by-clear-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  top: 0;
}

.abm-search-filtered-by-clear-btn:hover,
.abm-search-filtered-by-item-close-btn:hover {
  color: #cf0000;
}

.abm-search-results-item {
  border: 1px solid #FFE9E1;
  padding: 15px;
  margin-bottom: 20px;
}

.abm-search-results-item-ko_validated {
  display: inline-flex;
  height: 24px;
  align-items: stretch;
  cursor: pointer;
  margin-bottom: 5px;
}

.abm-search-results-item-ko,
.abm-search-results-item-validated {
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-weight: 600;
  color: #FFF;
  letter-spacing: 1px;
}

.abm-search-results-item-ko {
  background-color: #555;
}

.abm-search-results-item-validated {
  background-color: #08f;
}

.abm-search-results-item-product_name {
  font-size: 22px;
  font-weight: 600;
}

.abm-search-results-item-product_name a:link,
.abm-search-results-item-product_name a:visited,
.abm-search-results-item-product_name a:hover,
.abm-search-results-item-product_name a:active,
.abm-search-results-item-product_name a {
  color: #000;
  text-decoration: underline;
}

.abm-search-results-item-product_category a:link,
.abm-search-results-item-product_category a:visited,
.abm-search-results-item-product_category a:hover,
.abm-search-results-item-product_category a:active,
.abm-search-results-item-product_category a {
  color: 08c;
}

.abm-search-results-item-product_info {
  margin-top: 10px;
}

.abm-search-results-item-product_info-row {
  display: flex;
}

.abm-search-results-item-product_info-label {
  margin-right: 5px;
  font-weight: 600;
}

.abm-search-results-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.abm-search-results-item-product_media {
  width: 150px;
  height: 150px;
  border: 1px solid #ddd;
  padding: 2px;
  margin-bottom: 15px;
}

.abm-search-results-item-product_map {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.abm-search-results-item-product_map-iframe {
  transform: scale(0.25);
  transform-origin: left top;
}

.abm-search-results-item-product_media .carousel,
.abm-search-results-item-product_media .carousel .carousel-inner {
  width: 100%;
  height: 100%;
}

.abm-search-results-item-product_media .carousel-inner>.item.next,
.abm-search-results-item-product_media .carousel-inner>.item.active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.abm-search-results-item-product_media .carousel-inner>.item>a>img,
.abm-search-results-item-product_media .carousel-inner>.item>img {
  max-width: 100%;
  max-height: 100%;
}

.abm-search-results-item-view-product-btn {
  width: 150px;
}

.abm-search-results-item-view-product-btn .abm-btn {
  font-weight: 600;
  letter-spacing: 1px;
}

.abm-search-results-page {
  margin-bottom: 15px;
  text-align: center;
}

.abm-search-results-load_more-btn {
  padding: 8px 15px;
  border: 2px solid #FFBDA6;
  background-color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.abm-search-results-load_more-btn:hover {
  background-color: #FFBDA6;
  border-color: #ffab8c;
}

.abm-search-results-load_more-btn:disabled,
.abm-search-results-load_more-btn[disabled] {
  background-color: #fafafa;
  border-color: #eee;
  color: #ddd;
  cursor: not-allowed;
}

.abm-search-page-loading {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  z-index: -1;
}

.abm-search-page-loading.open {
  display: block;
  z-index: 200;
}

.abm-app-msg-box {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.6);
  display: none;
}

.abm-app-msg-box.open {
  display: block;
  z-index: 3000;
}

.abm-alert {
  border-width: 2px;
  border-radius: 0;
  position: absolute;
  right: 50px;
  top: 50px;
  margin-bottom: 15px;
  min-width: 200px;
  max-width: 500px;
}

.abm-alert.alert-danger {
  border-color: #a94442;
}

.abm-alert.alert-dismissible .close {
  top: 0;
}

.abm-search-page-result-not-exists {
  margin-bottom: 2rem;
}

.abm-search-page-no-result-tip {
  padding: 8px 15px;
  background-color: #feedec;
  font-size: 1.8rem;
  color: #000;
}

.abm-search-page-no-result-tip .fa-warning {
  color: red;
}

.abm-search-page-card {
  margin-top: 5rem;
}

.abm-search-page-card-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.abm-search-page-try-tip-item {
  display: flex;
  padding: 15px 0;
  font-size: 1.8rem;
  line-height: 1.4;
}

.abm-search-page-try-tip-item .fa-check {
  color: #ef6331;
  margin-right: 8px;
  line-height: 1.4;
}

.abm-search-page-abm-team-wall {
  background-color: #f1f2f2;
  padding: 3.5rem;
}

.abm-search-page-abm-team-item {
  display: flex;
  font-size: 1.8rem;
  line-height: 30px;
}

.abm-search-page-abm-team-icon {
  font-size: 2.2rem;
  margin-right: 10px;
  line-height: 30px;
  color: #808083;
}

.abm-search-page-card-body p {
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
}
