/*================================================================================================
    Start SearchBar CSS
===================================================================================================*/
.bx-searchbar {
  z-index: 99999;
  height: 160px !important;
  border: none !important;
}

.bx-searchbar .offcanvas-body {
  display: grid;
  place-items: center;
}
.bx-searchbar .bx-searchbar-from {
	position: relative;
	display: flex;
	align-items: center;
	direction: ltr;
}
.bx-searchbar .bx-searchbar-box {
  width: 600px;
  margin-inline: auto;
}
.bx-searchbar .bx-searchbar-from input {
  width: 600px;
  height: 62px;
  border: 1px solid rgba(34, 48, 53, 0.25);
  border-right: 0;
  border-radius: 8px 0px 0px 8px;
  font-size: 18px;
  padding: 12px 24px;
}
.bx-searchbar .bx-searchbar-from input:focus {
  border: 1px solid var(--bx-primary-color);
}
.bx-searchbar .bx-searchbar-from .bx-btn {
  border-radius: 0px 8px 8px 0px;
  height: 62px;
  position: relative;
  left: -2px;
}

@media only screen and (max-width: 767px) {
  .bx-searchbar .bx-searchbar-from input {
    width: 100%;
    height: 52px;
    font-size: 16px;
    padding: 16px 24px;
  }
  .bx-searchbar .bx-searchbar-box {
    width: 100%;
  }
  .bx-searchbar {
    height: 124px !important;
  }
  .bx-searchbar .bx-searchbar-from .bx-btn {
    height: 52px;
  }
}
/*================================================================================================
      End SearchBar CSS
===================================================================================================*/
