body {
    background-color:#e8e8e8;
}
.main {
    background: white;
}
.widget {
  margin: 4px 0;
}

/* search box */
.search {
    border: 1px solid #cccccc;
    overflow: auto;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 0 0 5px #d2d2d2;
    animation: glowing 5000ms;
    animation-iteration-count: 1;
    align-self: center;
    width: 60%;
  }
  
  .search input[type="text"] {
    border: 0px;
    width: 100%;
    padding: 10px 10px;
    color: black;
  }
  
  .search input[type="text"]:focus {
    outline: 0;
  }
  
  .search input[type="submit"] {
    border: 0px;
    background: none;
    background-color: #ee4f4f;
    color: #fff;
    float: right;
    padding: 10px 37px;
    background: #ee4f4f
      url("https://autosuggest-files.s3.amazonaws.com/quicklinkicons/eyeglass.png")
      no-repeat center;
    border-top-right-radius: 5px;
    -moz-border-radius-top-right: 5px;
    -webkit-border-radius-top-right: 5px;
    border-bottom-right-radius: 5px;
    -moz-border-radius-bottom-right: 5px;
    -webkit-border-radius-bottom-right: 5px;
    border-radius: 0px;
    cursor: pointer;
  }

  #websearchform {
    display: flex;
  }
  #autocomplete-wrapper-1 {
    float: left;
    width: 100%;
    display: flex;
  }
  
  .suggestions-wrapper {
    position: absolute;
    bottom: 20px;
    width: 78%;
    text-align: left;
    height: 0px;
  }
  
  .autosuggest__wrapper {
    cursor: pointer;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 0px;
    padding-bottom: 1px;
    color: black;
    font-size: 20px;
    box-shadow: rgb(158, 158, 158) 0px 1px 5px;
    margin-bottom: 0px;
    position: relative;
    z-index: 1000;
    width: 50%;
    text-align: left;
    top: 10px;
  }
  
  .autocomplete-suggestions {
    display: block;
    border: none;
    position: inherit;
    width: 100%;
    text-align: left;
    padding-left: 10px;
  }
  
  li.suggestion.admarketplace:hover {
    color: #989898;
  }
  
  .autocomplete-suggestions li {
    font-size: 16px;
    list-style: none;
  }
  
  @keyframes glowing {
    0% {
      box-shadow: 0 0 -10px #a7a7a7;
    }
    40% {
      box-shadow: 0 0 20px #a7a7a7;
    }
    60% {
      box-shadow: 0 0 20px #a7a7a7;
    }
    100% {
      box-shadow: 0 0 -10px #a7a7a7;
    }
  }
  
  @media only screen and (max-width: 1250px) {
    .main-wrap {
      width: 90%;
    }
  }
  @media only screen and (min-width: 150px) and (max-width: 993px) {
    .search {
      width: 95%;
      margin: 10px auto;
      /* display: none; */
    }
    .autosuggest__wrapper {
      width: 85%;
      top: 0;
    }
    .news-item p {
      font-size: 1em;
    }
  }
  .hidden {
    display: none !important;
    visibility: hidden !important;
  }
  /* end search box */

  /* news */
  #news-list div a {
    color: #464646;
  }

  #news-list div {
    margin: 10px 0;
  }
  /* news */

  .footer {
    background: #343a40;
    color: white;
    margin-top: 20px;
    padding: 10px;
  }
  .footer a {
      color: white;
  }