
.search {
    /* max-width: 450px; */
    margin: 20px;
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr 1fr; */
    display: flex;
    border: 1px solid black;
    border-radius: 5px;
    justify-content: space-between;
    font-size: 1.2rem;
  }
  
  .searchTerm2 {
    width: 300px;
    padding: 5px;
    border-right: 1px solid grey;
    position: relative;
    padding-left: 20px;
    padding-top: 10px;
    padding-right: 40px;
    cursor: pointer;
  }
  
  .searchTerm2::after{
    content: "";
    position: absolute;
    top: 16px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000 transparent transparent;

  }   
  
  .searchTerm2.show::after{
    content: "";
    top: 10px;
    border: 6px solid transparent;
    border-color:  transparent transparent #000;
  }   


  
  .nav-menu.show,
      .nav-drop.show .dropdown{
          display: initial;
      }   
      .dropdown{
          display: none;
          list-style: none;
      }
  
      .dropdown{
          position: absolute;
          top: 38px;
          right: 0;
          left: 0;
          border: 1px solid grey;
          border-top: 1px transparent;
          border-bottom-right-radius: 5px;
          border-bottom-left-radius: 5px;
          background-color: white;
          margin: -1px;
          padding: 0 20px;
          z-index: 150;
      }


  .searchTerm2 .drop-item{
    padding-top: 5px;
    padding-bottom: 5px;

  }   
      
  
  .searchTerm {
    border: none;
    margin-left: 10px;
    padding: 10px;
    height: 40px;
    width: 320px;
    max-width: fit-content;
    outline: none;
    font-size: 17px;
    background: white;
  }
  

  
  .searchButton {
    width: 50px;
    text-align: center;
    border: none;
    background: #5A2982;
    color: white;
    font-size: 17px;
    cursor: pointer;
  
  }