.my-wrapper {
    width: 100%;
    /* margin: 50px auto; */
}

.my-wrapper .my-search-input {
    width: 100%;
    position: relative;
    border-radius: 30px;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.my-search-input input {
    height: 30px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 30px;
    padding: 0px 20px 0 30px;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: white;
    color: var(--color-primary-500);
}

.my-search-input .my-icon {
    height: 30px;
    width: 30px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    border: none;
    background: inherit;
    transition: all .5s;
    text-decoration: none;
    color: var(--color-primary-500);
}

.my-search-input .my-icon:hover {
    transform: rotate(360deg);
    color: var(--color-support-500);
}

.autocom-box {
    padding: 0;
    max-height: 280px;
    overflow-y: auto;
    opacity: 0;
    z-index: 102;
    pointer-events: none;
    position: absolute;
}

.autocom-box::-webkit-scrollbar {
    width: 10px;
}

.autocom-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #4848483a;
    transition: background-color .3s;
}

.autocom-box::-webkit-scrollbar-thumb:hover {
    background-color: #4848487a;
}

.autocom-box::-webkit-scrollbar-track {
    background-color: #efefef;
    border-radius: 5px;
}

.my-search-input.active .autocom-box {
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
    font-weight: bold;
    position: absolute;
    width: 100%;
    background: white;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 5px 5px;
}

.my-search-input.active .autocom-box li {
    display: block;
}

.autocom-box li {
    list-style: none;
    padding: 4px 12px;
    width: 100%;
    cursor: pointer;
    border-radius: 3px;
    display: none;
}

.autocom-box li span {
    font-size: 1rem;
}

.my-search-input.active input {
    border-radius: 5px 5px 0 0 !important;
}

.autocom-box li:hover {
    background: #efefef;
    color: var(--custom-color-primary-1);
}