.searchbox {
  width: 98%;
  margin: 8px auto;
  border: solid 1px #aaaaaa;
  font-size: 1.3rem;
}
  .searchbox__title {
    padding: 0.2em 0.8em;
    background: #2774CC;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .searchbox__head {
    display: flex;
    align-items: center;
    width: 95%;
    margin: 8px auto 0;
    font-weight: bold;
  }
    .searchbox__icon {
      height: 1em;
      margin-right: 0.5em;
    }
  .searchbox__options {
    display: grid;
    gap: 8px;
    width: 95%;
    margin: 0 auto 20px;
  }
    .searchbox__options--op-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    .searchbox__options--op-4 {
      grid-template-columns: repeat(4, 1fr);
    }
    .searchbox__options input {
      display: none;
    }
    .searchbox__options>label {
      display: flex;
      justify-content: center;
      align-content: space-between;
      align-items: center;
      width: 100%;
      height: 50px;
      background: #808080;
      border-radius: 5px;
      box-shadow: 1px 2px 2px #000000aa;
      text-align: center;
      color: #fff;
      font-weight: bold;
    }
      .searchbox__options>label.selected {
        position: relative;
        z-index: 1;
        background: #FFCE56;
        color: #404040;
      }
  .searchbox__bottom {
    position: relative;
    margin-top: 15px;
    padding: 30px 0 15px;
    background-image: url(/images/search/searchbox_bottom.png);
  }
    .searchbox__bottom::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 0;
      margin: 0 auto;
      border: solid 20px transparent;
      border-top-color: #fff;
    }
    .searchbox__button {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 90%;
      max-width: 400px;
      height: 42px;
      margin: 0 auto;
      background: #fbad00;
      box-shadow: 0 2px 4px #333;
      border-radius: 20px;
      color: #fff;
      font-size: 18px;
      font-weight: bold;
    }
@media screen and (min-width: 768px) {
  .searchbox {
    font-size: 1.6rem;
  }  
}
