.dropdown_container{
    position: absolute;
    top: 2.5rem;
    max-width: 15rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow:  0 1px 8px rgba(0,0,0,0.12);
}

.dropDown_in{
    animation:dropIn 0.3s ease-in-out;
}

.dropDown_out{
    animation:dropOut 0.3s ease-in-out;
}

.dropDown_item{
    height: 2rem;
    padding: 5px 0;
    cursor: pointer;
}

.dropDown_item:hover{
    background-color: rgb(0, 140, 221,0.2);
}

@keyframes dropIn {
    0%{
        opacity: 0;
        transform: translateY(-10px);
    }

    100%{
        opacity: 1;
        transform: translateY(0) forwards;
    }
}

@keyframes dropOut {

    100%{
        opacity: 0;
        transform: translateY(-10px);
    }
}