body.sub,body {
  padding-bottom: 111px;
  @media only screen and (max-width: 767px) {
    padding-bottom: 0;
  }
}
#search-bar-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  @media only screen and (max-width: 767px) {
    display: none;
    height: 100%;
    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 0;
    }
  }
  #tripla-searching-app {
    text-align: center;
    @media only screen and (max-width: 767px) {
      position: absolute;
      width: 100%;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      z-index: 1001;
    }
    form {
      input[type="text"] {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
      }
      > div {

      }
    }
  }
}

#search-bar-close-btn {
  @media only screen and (max-width: 767px) {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 22px;
    height: 22px;
    z-index: 1001;
    display: none;
    &.on {
      display: block;
    }
    > span {
      display: block;
      width: 100%;
      height: 3px;
      background: #fff;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      &:first-child {
        transform: rotate(45deg);
      }
      &:last-child {
        transform: rotate(-45deg);
      }
    }
  }
}