.dropDownItem {
    position: relative;
}

.toggleDropdown {
    width: 10rem;
    position: absolute;
    top: 1.5rem;
    background: #F6EEE3;
    border-radius: 2rem;
    display: none;
    z-index: 999;
    animation: show 0.3s ease-in-out both;
}
@media screen and (max-width: 997px) {
    .toggleDropdown {
        top: 2.3rem;
    }
}

.dropdownList {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 !important;
    padding: 1rem 0.5rem !important;

}

.dropdownList li {
    list-style: none;
    margin-bottom: 7px;
}

.dropdownList li a {
    text-decoration: none;
    font-weight: 600;
    opacity: 0.6;
    transition: all 0.2s ease-in-out;
}

.dropdownList li a:hover {
    opacity: 1;
}

.active {
    display: block;
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}