/* BASIC css start */
.dropdown_main {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 5px;
    Text-align: center;
    user-select: none;
    
}

.dropdown_bar {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

.dropdown_bar svg {
    vertical-align: middle;
    margin-left: 5px;
}

.dropdown_content {
    position: relative;
    display: none;
    left: 50%;
    transform: translateX(-50%);    
    margin-top: 5px;
    width: 157px;
    background: #ebe8e8;
    border-radius: 5%;
    box-shadow: 4px 4px 10px #c5b0b0;
    animation: fade-in 1s ease;
}

.dropdown_content a {
    text-align: left;
    color: #000000;
    padding: 0.5rem;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.drop_icon2 {
    display: none;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* BASIC css end */

