.search-container {
    position: relative;
    margin: 20px auto;
    /* max-width: 800px; */
}

.search-container form{
    border: 1px solid #333;
}

.search-container p#summary{
    font-size: 12px;
    letter-spacing: 1px;
}

.search-box {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: 5px 0 0 5px;
}

.search-button {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    background-color: #256BB2;
    color: #fff;
    border-radius: 0 5px 5px 0;
}

.search-button:hover {
    background-color: rgba(37, 107, 178, 0.5);
    color: #256BB2;
}

.search-button i {
    margin-right: 0.5rem;
}

.placeholder-animate {
    position: absolute;
    pointer-events: none;
    opacity: 0.5;
}

.autocomplete-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0 0 5px 5px;
    z-index: 9;
    max-height: 500px;
    overflow: scroll;
}

.autocomplete-item {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #eee;
}

.autocomplete-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.autocomplete-item .title {
    color: #007bff;
    font-weight: bold;
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}

.autocomplete-item .subtext {
    font-size: 0.875rem;
    color: #989b9d;
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}

.view-all {
    text-align: center;
    padding: 0.75rem;
    font-weight: bold;
    background-color: #f8f9fa;
    border-top: 1px solid #ccc;
}

.view-all a {
    color: #007bff;
    text-decoration: none;
}

.btn-check:checked + .btn {
    background-color: #007bff; /* Adjust as needed */
    border-color: #004085; /* Adjust as needed */
    color: #fff;
  }

  .product-widget {
    padding: 24px 32px;
    border-radius: 10px;
    background-color: #fff;
  }

  .product-widget h4.widget-title {
    padding-bottom: 12px;
    border-bottom: 1px dashed #AEB0B6;
    margin-bottom: 25px;
  }

  .categories-list {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
  }

  .form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 14px;
    line-height: 1.8;
  }

  .form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
  }

  .form-check-input[type="checkbox"] {
    position: relative;
    border-radius: 2px;
  }

  .product-widget.product-categories-widget .widget-content label {
    display: flex;
  }

  .form-check-label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
  }
  .product-widget.product-categories-widget .widget-content label span {
    margin-left: auto;
  }
  
  .placeholder {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 16px;
    pointer-events: none;
    display: inline-flex;
    background-color: transparent;
    opacity: 1;
    width: 80%;
    align-items: center;
}

#fakePlaceholder {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 70%;
}

#fakePlaceholder.show {
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

mark {
    padding: .1875rem;
    background-color: greenyellow;
    /* background-color: transparent; */
}

.search-tabs label{
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    text-align: center;
}

.fs-8{
    font-size: 8px;
}