.dropdown {
    position: relative;
    /*  display: inline-block; */
    /* margin-right: 100px; */
}


.dropdown-content {
    right: 0;
    display: none;
    position: absolute;
    top: -30%;
    /* left: 0%; */
    /* margin-left: -30px; */
    /* min-width: 180px; */
    padding: 7px 20px;
    border-radius: 5px;
    /* padding: 6px; */
    background-color: white;
    border: 1px solid #ddd;
    /* border: 1px solid #ddd; */
    z-index: 1;
}

.dropdown-content::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 95%;
    transform: translateX(-80%) rotate(45deg);
    width: 32px;
    height: 32px;
    background-color: white;
    border-top-left-radius: 1px;
    border-top-right-radius: 2px;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.dropdown-content a {
    gap: 10px;
    font-family: ttm;

    display: flex;
    align-items: center;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    /* padding: 8px; */
    padding: 2px 6px;
    cursor: pointer;
}

.dropdown-content svg {
    margin-right: 3px !important;
}

i {
    cursor: pointer;
    margin-right: 4px;
}

.dropbtn {
    background-color: #f9f9f9;
    color: #333;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.show {
    display: block;
    transition: 0.1s all zoom-out to bottom;
}

.flexed {
    display: flex;
    transition: 0.1s all zoom-out to left;
}