.search-bussinesscode {
   border-radius: 8px;
   border: 1px solid #e2e8f0;
   width: 100%;
   padding: 10px;
   display: flex;
   gap: 5px;
   align-items: center;
   height: 3rem;
}

.search-bussinesscode-input {
   border: none;
   outline: none;
   width: 80%;
}

.search-bussinesscode-input:focus {
   border: none;
   outline: none;
}

.search-bussinesscode-icon {
   width: 20px;
   height: auto;
}

.loader {
   border: 8px solid #f3f3f3;
   border-top: 8px solid #e90064;
   border-radius: 50%;
   width: 40px;
   height: 40px;
   animation: spin 1s linear infinite;
   margin-left: auto;
   display: none;
}

@keyframes spin {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}

.wrapper-search-bussinesscode-result {
   position: relative;
}

.search-bussinesscode-result {
   position: absolute;
   z-index: 1;
   display: flex;
   gap: 5px;
   flex-direction: column;
   width: 100%;
   height: fit-content;
   max-height: 200px;
   padding: 10px;
   border: 1px solid #e90064;
   background-color: #fff;
   box-shadow: 0 0.15rem 0.3rem 0.1rem rgba(204, 204, 204, 1);
   overflow-y: auto;
}

.search-result-item {
   height: fit-content;
   display: flex;
   align-items: center;
   cursor: pointer;
   transition: background-color 0.3s ease;
   color: #000;
   padding: 0 4px;
   border-bottom: 0.5px solid #e90064;
}

.search-result-item:hover {
   background-color: #e90064;
   color: white;
}
