.search-assistance-block {
  position: fixed;
  bottom: 62px;
  z-index: 111;
  left: 50px;
}
.search-bot__icon {
  background: #dd052b;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  font-size: 16px;
  color: #fff;
  font-family: 'Georama';
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.search-bot__icon--text {
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  margin-left: 0;
  padding-right: 0;
  width: 55px;
  transition: all 0.6s ease;
  display: inline-block;
}

.search-bot__icon:hover {
  cursor: pointer;
}

.search-bot__icon:hover .search-bot__icon--text, .search-bot__icon.active-toggle .search-bot__icon--text {
  opacity: 1;
  visibility: visible;
  max-width: 200px; 
}

.search-bot__box--heading {
  background: #dd052b;
  padding: 20px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  justify-content: space-between;
}

.search-bot__box--heading h3 {
  font-size: 18px;
  color: #FFFFFF;
  font-family: 'Georama';
  font-weight: 500;
  margin-bottom: 0;
}

.search-bot__box--header-text {
  transform: translateY(50px);
  transition: all 0.9s;
  padding-bottom: 20px;
}

.search-bot__box--header-text h3 {
  color: #000000;
  font-size: 24px;
  font-family: 'Georama';
  font-weight: 600;
}

.search-bot__box--header-text p {
  color: #353535;
  margin: 0;
  font-weight: 500;
}

.search-bot__box--inner-wrapper {
  padding: 24px;
}

.search-bot__box--tags {
  border-top: 1px solid #b3b3b3;
  transform: translateY(50px);
  transition: all 0.9s;
}
.search-bot__box--tags p {
  color: #000;
  font-weight: 500;
  font-size: 14px;
  font-family: 'Georama';
  margin: 16px 0;
  padding-left: 0;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.search-tags .tag a {
  border: 1px solid #8C8C8C;
  border-radius: 15px;
  text-decoration: none;
  color: #0f0f0f;
  transition: all 0.3s;
  padding: 5px 16px;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
  font-family: 'Georama';
}

.search-tags .tag:hover a {
  border: 1px solid #dd052b;
}

.search-bot__box--search-form {
  padding: 20px;
  padding-top: 0;
  bottom: 0;
  width: 100%;
}

.search-bot__box--search-form form {
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  gap: 9px;
}

.search-bot__box--search-form form textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #dd052b;
  border-radius: 9px;
  padding: 10px;
  outline: none;
  max-height: 100px;
  min-height: 100px;
  overflow: hidden;
  resize: none;
}

.search-bot__box--search-form form textarea::placeholder {
  color: #727272;
  font-size: 15px;
  font-family: 'Georama';
  font-weight: 500;
  margin: 16px 0;
  text-transform: capitalize;
  padding-left: 0;
}

.search-bot__box--search-form button {
  background: #dd052b;
  font-size: 16px;
  color: #fff;
  font-family: 'Georama';
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  padding: 10px;
  border: none;
  outline: none;
  height: 40px;
  width: 40px;
}
.search-bot__box--search-form button:hover, .search-bot__box--heading--close:hover {
  cursor: pointer; 
}

.search-bot {
  width: 350px;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 16px;
  min-height: 0;
  display: block;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, height 0s linear 0.4s; 
}

.search-bot.active {
  min-height: 200px;
  height: auto;
  opacity: 1;
  transition: opacity 0.4s ease, height 0.45s cubic-bezier(.2,.9,.3,1);
}
.search-bot__icon.active {
  display: inline-flex;
}
.search-bot__box--header-text,
.search-bot__box--tags {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s ease;
}

.search-bot.active .search-bot__box--header-text,
.search-bot.active .search-bot__box--tags {
  transform: translateY(0);
  opacity: 1;
}

.search-bot.active .search-bot__box--header-text {
  transition-delay: 0.2s;
}

.search-bot.active .search-bot__box--tags {
  transition-delay: 0.4s;
}

@media screen and (max-width: 1024px) {
  .search-assistance-block {
    bottom: 20px;
  }
}
@media screen and (max-width: 835px) {
  .search-assistance-block {
    bottom: 20px;
    left: 13px;
  }
  .search-bot {
    width: 350px;
  }
}
@media screen and (max-width: 420px) {
  .search-assistance-block {
    bottom: 11px;
  }
  .search-bot {
    width: 330px;
  }
}
@media screen and (max-width: 350px) {
 .search-assistance-block {
    bottom: 20px;
    left: 5px;
  }
}
@media only screen and (max-width: 993px) and (orientation: landscape) and (max-height: 546px) {
  .search-bot__box--inner-wrapper {
    padding: 10px 16px;
  }
  .search-assistance-block {
    bottom: 12px;
    left: 12px;
    margin: 0 auto;
  }
  .search-bot__box--heading {
    padding: 12px 16px;
  }
  .search-bot__box--header-text h3 {
    font-size: 20px;
    margin-bottom: 1px;
  }
  .search-bot {
    width: calc(100% - 12px);
  }
  .search-bot__box--search-form form {
    min-height: 45px;
  }
  .search-bot__box--search-form form textarea {
    height: 44px;
    min-height: 44px;
    max-height: 44px;
  }
  .search-bot__box--header-text {
    padding-bottom: 8px;
  }
  .search-bot__box--search-form {
    padding: 10px 16px;
    padding-top: 0;
  }
  .search-bot__box--tags p {
    margin: 11px 0;
  }
  .search-bot__icon {
    padding: 11px;
  }
}
