.brand-search {
  position: relative;
}
.brand-search .brand-search-btn {
  display: inline-flex;
  height: 50px;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid #FFD400;
  cursor: pointer;
}
.brand-search .brand-search-btn:hover span {
  color: #FFD400;
}
.brand-search .brand-search-btn span {
  color: #FFF;
  text-align: right;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  white-space: nowrap;
}
.brand-search:hover .brand-search-modal {
  display: block;
}
.brand-search .brand-search-modal {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(-50%);
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 5px 20px 0 rgba(130, 115, 151, 0.3);
  width: 525px;
  max-height: 572px;
  height: fit-content;
  flex-shrink: 0;
  display: none;
}
.brand-search .brand-search-modal .brand-search-modal-tabs {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.brand-search .brand-search-modal .brand-search-modal-tabs .brand-tabs-nav {
  width: 100%;
  height: 70px;
  display: flex;
}
.brand-search .brand-search-modal .brand-search-modal-tabs .brand-tabs-nav button {
  width: 50%;
  height: 100%;
  border: none;
  outline: none;
  background: #efefef;
  border-radius: 16px;
  border-top: 1px solid transparent;
  padding: 20px;
  cursor: pointer;
}
.brand-search .brand-search-modal .brand-search-modal-tabs .brand-tabs-nav button:first-child {
  border-radius: 16px 0 0 0;
}
.brand-search .brand-search-modal .brand-search-modal-tabs .brand-tabs-nav button:last-child {
  border-radius: 0 16px 0 0;
}
.brand-search .brand-search-modal .brand-search-modal-tabs .brand-tabs-nav button.active {
  background: transparent;
  border-top: 1px solid #FFD400;
  color: #FFD400;
}
.brand-search .brand-search-modal .brand-tabs-content {
  padding: 30px;
}
.brand-search .brand-search-modal .brand-tabs-content .brand-tab-pane {
  display: flex;
  flex-direction: column;
  display: none;
  animation: fadeIn 0.3s ease;
}
.brand-search .brand-search-modal .brand-tabs-content .brand-tab-pane.active {
  display: block;
}
.brand-search .brand-search-modal .brand-tabs-content .brand-tab-pane ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: 450px;
  overflow-y: auto;
}
.brand-search .brand-search-modal .brand-tabs-content .brand-tab-pane ul li {
  width: 48%;
}
.brand-search .brand-search-modal .brand-tabs-content .brand-tab-pane ul li a {
  color: #1D1C1C;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header .content .search-pc-inner {
  gap: 20px;
}

.callback-modal {
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 5px 20px 0 rgba(130, 115, 151, 0.3);
  padding: 20px 20px 40px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
  display: none;
}
.callback-modal.active {
  display: block;
}
.callback-modal .close-row {
  display: flex;
  justify-content: flex-end;
}
.callback-modal .close-row .close-btn {
  cursor: pointer;
}
.callback-modal .callback-title {
  font-size: 20px;
  text-align: center;
}
.callback-form {
  margin-top: 30px;
  p {
    display: flex;
    flex-direction: column;
    gap: 0!important;
    .wpcf7-form-control-wrap {
      width: 100%;
    }
    input {
      width: 100%;
      border-radius: 10px;
      background: #F6F6F8;
      height: 48px;
      border: 1px solid transparent;
      outline: none;
      padding-left: 15px;
      color: #1D1C1C;
      font-family: Manrope;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 100%; /* 18px */
      &::placeholder {
        color: #777A86;
        font-family: Manrope;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 16px */
      }
    }
    textarea {
      border-radius: 10px;
      background: #F6F6F8;
      resize: none;
      width: 100%;
      height: 90px;
      outline: none;
      padding: 16px 20px;
      border: 1px solid transparent;
      color: #1D1C1C;
      font-family: Manrope;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 100%; /* 18px */
      &::placeholder {
        color: #777A86;
        font-family: Manrope;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 16px */
      }
    }
    .callback-submit {
      display: flex;
      width: 100%;
      padding: 17px 35px;
      justify-content: center;
      align-items: center;
      gap: 6px;
      border-radius: 10px;
      background: #FFD400;
      color: #1D1C1C;
      text-align: center;
      font-feature-settings: "liga" off, "clig" off;
      font-family: Manrope;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 100%; /* 16px */
      border: none;
      cursor: pointer;
    }
  }

}

