 .search-container {
    display: flex;
    align-items: left;
    position: relative;
    width: 20em;
    /* height: 40px; */
    /* border: 1px solid #ccc;
    border-radius: 1px; */
    padding: 0 5px ;
    transition: width 0.5s ease;
  
  }
 
  .search-icon {
    font-size: 20px;
    margin-right: 5px;
  }
  
  input[type="text"] {
    border: none;
    outline: none;
    flex: 1; 
    font-size: 16px;
    /* width: 100%; */
  }


  
  ul.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 5px 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    max-height: 18em;
    overflow: auto;
  }
  
  ul.suggestions li {
    padding: 5px 10px;
    cursor: pointer;
  }
  
  ul.suggestions li.active {
    font-weight: bold;
    background-color:#ccc;
  }

  ul.suggestions li.disabled{
    color: #ccc;
  }
  
   .checkbox-label {
    /* display: block; */
    /* margin-bottom: 10px; */
    margin-right: 0.5em;
  }

  #content-container{
    position: relative;
    width: 100%;
    height: 100%;

  }
  .instruction-overlay{
    position:absolute;
    top: 25%;
    left: 25%;
  }
  .instruction-overlay .content{
    background-color:gray;
    color:white;
    padding:10px;
    border-radius: 1em;
  }
  .instruction-overlay .content .inst {
    display: block;
    clear: both;
  }
  .instruction-overlay .content .inst .inst-icon {
    /* width: 70px;
    height: 70px; */
    display: inline-block;
    float: left;
    vertical-align: middle;
  }
  .center{
    text-align: center;
  }
 /* 
  .checkbox-input {
    margin-right: 5px;
  } */
  
