.ioSafe-products-filter {
    background-color: #aaa;
    display: flex;
    justify-content: space-around;
    align-items: center;
   
  }
  
  .ioSafe-products-filter h1 img {
    width: 150px;
  }
  
  .ioSafe-products-filter h1 figcaption {
    color: #fff;
    font-size: 10px;
  }
  
  .ioSafe-products-filter {
    text-align: center;
  }
  
  .ioSafe-searchBar {
    width: 70%;
  }
  
  #search-container {
    width: 100%;
  }
  
  #search-container input {
    width: 60%;
    border-bottom: 1px solid #fff !important;
    padding: 5px 0;
    background-color: transparent;
    color: #fff;
  }
  
  ::placeholder {
    color: #fff;
    opacity: 1;
    /* Firefox */
  }
  
  #search-container input:focus {
    border-bottom: 1px solid red !important;
  
  }
  
  #search-container button {
    padding: 5px 30px !important;
    color: #fff;
    font-weight: bold;
    word-spacing: 2;
    background-color: transparent;
    border: 1px solid #fff !important;
  }
  
  #search-container button:hover {
    color:red;
    border: 1px solid #fff;
    background-color: #fff;
  }
  
  #search-container input,
  #search-container button {
    outline: none;
    border: none;
    margin: 10px 5px;
    font-size: 12px;
  }
  
  #buttons .button-value {
    padding: 5px 30px !important;
    outline: none;
    border-radius: 50px;
    border: none;
    margin: 10px;
    font-weight: bold;
    transition: 0.5s all ease;
    font-size: 12px;
  }
  
  #buttons .button-value .active,
  #buttons .button-value:active,
  #buttons .button-value:hover,
  #buttons .button-value:focus {
    border-radius: 0;
    color: red;
  }
  #ioSafeProducts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: #bbb;
  }
  
  .card {
    padding: 10px !important;
    margin: 10px !important;
    width: 250px;
  }
  
  .card .product-name {
    padding-top: 5px;
    font-size: 16px;
    font-weight: bold;
  }
  
  .card img {
    width: 100%;
    object-fit: contain;
    border: 1px solid #ccc;
  }
  
  .card .link-button {
    /* padding: 5px 10px; */
    font-size: 13px;
    color: blue;
    /* background-color: #006400; */
  }
  
  .hide {
    display: none;
  }
  .text{
    padding-left: 15px;
  }
  @media screen and (max-width: 991px) {
    .ioSafe-products-filter {
      flex-direction: column;
    }
  
  }
