@import url("https://fonts.googleapis.com/css2?family=Lora&display=swap");

.dropdown-container {
    min-width: 200px;
    position: absolute;
    padding: 10px;
    background: #f5efe4ec;
    color: rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    right: 32px;
    backdrop-filter: blur(6px);
}

.dropdown-menu {
    list-style-type: none;
    padding: 0px;
}

.dropdown-item {
    height: 40px;
}

.dropdown-item > a {
    display: inline-block !important;
    text-decoration: none;
    color: #0000009a;
    padding: 10px !important;
    box-sizing: border-box;
    font-family: 'Lora', sans-serif;
    text-align: start !important;
    width: 100%;
    font-size: 16px;
    transition: color .5s;
}

.dropdown-item > a:hover {
    color: #000000cc;
}

.dropdown-item i {
    position: relative;
    font-size: 12px;
    margin-right: 10px;
}