#searchbar {
  background-color: white;
  display: flex;
  align-items: center;
  max-width: 600px;
  border-radius: 30px;
  height: 100%;
  color: black; }
  #searchbar .type-selector {
    position: relative;
    cursor: pointer;
    background-color: #f5f5f5;
    height: 100%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    transition: border-bottom-left-radius 0.2s; }
    #searchbar .type-selector .toggle {
      gap: 5px;
      cursor: pointer;
      padding: 0 25px;
      height: 100%; }
    #searchbar .type-selector .type-selector-dropdown {
      display: none;
      position: absolute;
      left: 0;
      top: 100%;
      width: 100%;
      background-color: #f5f5f5;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      padding-bottom: 5px;
      box-shadow: 0 10px 12px rgba(0, 0, 0, .2);
      z-index: 10; }
      #searchbar .type-selector .type-selector-dropdown .selector-option {
        padding: 5px 10px;
        font-size: 14px; }
        #searchbar .type-selector .type-selector-dropdown .selector-option:hover {
          font-weight: bold; }
    #searchbar .type-selector img {
      width: 15px;
      height: 15px; }
    #searchbar .type-selector.active {
      border-bottom-left-radius: 0px; }
  #searchbar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 30px;
    color: var(--black);
    height: 100%; }
  #searchbar .btn {
    background-color: ;
    color: white;
    padding: 15px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; }
    #searchbar .btn img {
      width: 20px;
      height: 20px; }

@media screen and (max-width: 768px) {
  #searchbar .type-selector {
    height: 40px; }
    #searchbar .type-selector .toggle {
      padding: 0 10px;
      font-size: 11px; }
    #searchbar .type-selector .type-selector-dropdown {
      width: 150%; }
    #searchbar input {
      padding: 15px 15px; }
    #searchbar .btn {
      padding: 15px; }
    #searchbar .btn img {
      width: 15px;
      height: 15px; } }
