.dropdown .dropdown_list{
    position: absolute;
    top:calc(100% + 15px);
    left:0;
    width: fit-content;
    height: fit-content;
    background-color: #393939;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    z-index: 100000;
    padding: 6px;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    left:-50px;
    opacity: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    pointer-events: none;
}


.dropdown.active .dropdown_list{
    left:0;
    opacity: 1;
    pointer-events: all;

}
.dropdown .dropdown_list .option{
    width: 100%;
    height: fit-content;
    padding: 8px;
    background-color: #ffffff00;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    cursor: pointer;
    -o-transition: all 0.3s ease;

}
.dropdown .dropdown_list .option:hover{
    background-color: #ffffff20;

}
.dropdown .dropdown_list .option span{
    text-align: left;
    font-size: 14px;
}

.dropdown_wrapper .index_dropdown{
    width: 100%;
}
/* 
@media (max-width: 1000px){
    .dropdown .dropdown_list{
        font-size: 28px;
    }
} */