.search-topic {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .search-topic .title {
    font-weight: 800;
    padding-bottom: 20px;
  }
  .search-topic .custom-select-wrapper {
    width: 50%;
    font-size: 14px;
    position: relative;
  }
  .search-topic .custom-select-wrapper .custom-select {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E9FBFF;
    height: 80px;
    padding-left: 20px;
    font-weight: bold;
    cursor: pointer;
  }
  .search-topic .custom-select-wrapper .custom-select .left-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 20px;
  }
  .search-topic .custom-select-wrapper .custom-select .custom-select-text {
    text-align: center;
    background-color: #00CFFF;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 18px;
  }
  .search-topic .custom-select-wrapper .custom-options {
    display: none;
    border: 0.5px solid #7C7C7C;
    color: #7C7C7C;
    padding: 6px 20px;
    position: absolute;
    width: 100%;
    background-color: white;
    z-index: 9999;
  }
  .search-topic .custom-select-wrapper .custom-options .custom-option {
    height: 35px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .search-topic .custom-select-wrapper .custom-options .custom-option:hover {
    color: #171A21;
  }
  .search-topic .custom-select-wrapper .custom-options::-webkit-scrollbar {
    width: 4px;
  }
  .search-topic .custom-select-wrapper .custom-options::-webkit-scrollbar-thumb {
    background: #00CFFF;
    border-radius: 3px;
  }
  .search-topic .custom-select-wrapper .custom-options::-webkit-scrollbar-thumb:hover {
    background: #00b0d9;
  }
  @media (max-width: 768px) {
    .search-topic .custom-select-wrapper {
        width: 100%;
    }
    .search-topic {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }
  }