.test_list_search{
    padding: 0 16px;
    display: flex;
    border: 5px solid #0084F7;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #0084F7;
    gap: 17px;
    margin-bottom: 22px;
    margin: 0 15px 22px 25px;
    overflow: hidden;
}

.test_list_search .icon{
    width: 35px;
    align-items: center;
    display: flex;
}

.test_list_search .icon img{
    width: 100%;
}

.test_list_search #search_input{
    border: none;
    width: 100%;
    padding: 16px 0;
}

.test_list_search #search_input::placeholder{
    font-size: 20px;
    font-weight: 700;
    color: #0084F7;
}

#test_api_results{
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: max-content;
    max-height: 300px;
    overflow-y: scroll;
    padding: 0 15px;
}


#test_api_results::-webkit-scrollbar {
    height: 20px;
    width: 10px;
    background: var(--bg-color);
    border-radius: 10px;
}
#test_api_results::-webkit-scrollbar-thumb {
    background: #999;
    -webkit-border-radius: 0;
    border-radius: 10px;
}
#test_api_results::-webkit-scrollbar-corner {
    background: #999;
    border-radius: 10px;
}

#test_api_results .test_item{
    padding: 11px 18px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    gap: 16px;
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 5px;
}

#test_api_results .test_text{
    text-align: end;
    width: 100%;
}

#downlaod_message_to_view_test{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 21;
    border-radius: 0 30px 0 0;
    color: #fff;
    font-size: 17px;
    background-color: #0087fd;
    padding: 15px 20px;
    transition: opacity 0.2s;
    pointer-events: unset;
}

#downlaod_message_to_view_test.hide{
    opacity: 0;
    pointer-events: none;
}

#downlaod_message_to_view_test a{
    color: #fff;
    border-bottom: solid 2px #0087fd;
}

#downlaod_message_to_view_test a:hover{
    color: #fff;
    border-color: #fff;
}