.match_container,
.overflow {
  left: 0;
  display: none;
  width: 100%
}

.overflow {
  height: 100%;
  position: fixed;
  top: 18%;
  z-index: 1
}

.match_container {
  position: absolute;
  top: 42px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px;
  z-index: 10
}

.match_container a {
  display: block;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding-left: 10px
}

.match_container a:hover {
  background: #4eb300
}

.match_container a .match_img {
  display: inline-block;
  width: 50px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 5px
}

.match_container a .match_right {
  display: inline-block;
  width: 90%;
  vertical-align: top;
  margin-top: 5px
}

.match_container a .match_name {
  display: block;
  font-size: 18px;
  color: #333
}

.match_container a:hover .match_name,
.match_container a:hover .match_price {
  color: #fff
}

.match_container a .match_price {
  display: block;
  font-size: 15px;
  color: #333
}

@media (max-width:1200px) {
  .match_container a .match_right {
    width: 80%
  }
}

@media (max-width:768px) {
  .match_container a .match_right {
    width: 75%
  }

  .match_container a .match_name {
    font-size: 14px
  }

  .match_container a .match_price {
    font-size: 12px
  }
}

#search .tooltip {
  font-size: 13px;
  /* left: 30%; */
  top: 110%;
  padding: 15px;
  /* border: 1px solid #ccc; */
  border: 1px solid #4EB300;
  opacity: 1;
  filter: opacity(100%);
  border-radius: 4px;
  /* color: #999; */
  background-color: #fff;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
  -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

  text-align: center;
  left: 12%;
  right: 8.5%;
}

#search .tooltip::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-right-width: 10px;
  border-left-width: 10px;
  /* border-bottom: 10px solid #ccc; */
  border-bottom: 10px solid #4EB300;
  bottom: 100%;
  /* left: calc(20% - 10px); */
  left: calc(50% - 10px);
}

#search .tooltip::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-right-width: 10px;
  border-left-width: 10px;
  border-bottom: 10px solid #fff;
  bottom: 97%;
  /* left: calc(20% - 10px); */
  left: calc(50% - 10px);
}

@media (max-width:768px) {
  #search .tooltip {
    left: 80px;
    right: 56px;
  }
}