.get_number_list {
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px; 
    border: 1px solid transparent;
    transition: all 0.3s;
    height: 295px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .3);
    /*overflow-y: auto;*/
}
.get_number_select {
    border-radius: 0px;
    background-color: rgba(255, 255, 255, .0);
    border: 1px solid rgba(255, 255, 255, .3);
    width: 400px;
    color: #ffffff;
    margin-bottom: 10px;
}
.get_number_select option {
    color: #242424;
    padding: 5px;

}
.get_number_select option:focus {
    background-color: #242424; 
}
.get_number_num {
    background-color: rgba(255, 255, 255, .5);
    color: #242424;
    width: 100%;
    margin-bottom: 7px;
    text-align: center;
    padding: 5px 0px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}
.get_number_num.active {
    background-color: #449d44;
    color: #ffffff;
}
.get_number_num:hover {
    background-color: rgba(255, 255, 255, .9);
}
.get_number_list::-webkit-scrollbar {
    width: 8px;
}
.get_number_list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.8); 
}
.get_number_list::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255,255,255,0.4); 
}