
    /* The Overlay (background) */

    .overlay {
      height: 100%;
      width: 100%;
      position: fixed;
      z-index: 99;
      left: 0;
      top: 0;
      background-color: rgb(0, 0, 0);
      background-color: rgba(0, 0, 0, 0.9);
      overflow-x: hidden;
      transition: 0.5s;
    }

    .customnav {
      display: none;
    }

    .customnav.searchOpen {
      display: block;
    }


    /* Position the content inside the overlay */

    .overlay-content {
      position: relative;
      top: 35%;
      width: 100%;
      text-align: center;
      margin-top: 30px;
    }

    .custom-search-center {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .custom-autocomplete-outer {
      width: 60%;
    }

    .custom-autocomplete-outer input {
      background: transparent;
      border: 2px solid #fff;
      border-radius: 45px;
      height: 60px;
      width: 100%;
      color: #fff;
      padding: 0 30px;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: 1px;
      text-align: center;
    }

    .overlay .closebtn {
      position: absolute;
      top: 20px;
      right: 15px;
      font-size: 40px;
      color: #fff;
    }

    .custom-autocomplete-outer ul {
      border: 1px solid #ddd;
      width: 50%;
      margin: 0 auto;
      margin-top: 20px;
      padding: 0;
    }


    .custom-autocomplete-outer ul li a {
      color: #fff;
      font-size: 14px;
      border-bottom: 1px solid #ddd;
      display: block;
      padding: 9px 0;
      line-height: normal;
    }

    .custom-autocomplete-outer ul li a:hover {
      color: var(--secondary);
    }

    .custom-autocomplete-outer ul li:last-child a {
      border-bottom: none;
    }
