#language-submit-buttons {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 100;
    left: 0;
    margin-left: 10px;
}

.dropdown-content {
    background-color: #1F2329 !important;
    border-radius: 5px;
    min-width: 175px;
    max-width: 50%;
    color: white;
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    max-height: 160px;
    width: 170px;
    overflow: scroll;
    overflow-x: hidden;
    -webkit-user-select: none;
    user-select: none;
    scrollbar-width: thin;
    scrollbar-color: var(--main-yellow) transparent;
    z-index: 200;
}

.dropdown-option {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    /* cursor: pointer; */
}

.dropdown-option:hover {
    box-shadow: 0 0 11px 1px rgba(182, 182, 182, 0.75) inset;
}

.option-image {
    max-width: 30px;
    width: 30px;
    max-height: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 6px;
}

.selected-option {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 5px 35px 5px 5px;
    /* cursor: pointer; */
    position: relative;
    -webkit-user-select: none;
    user-select: none;
}

@media only screen and (min-width: 450px) {

    .selected-option::before,
    .selected-option::after {
        content: "";
        display: inline-block;
        height: 2px;
        width: 10px;
        background-color: #aaa;
        position: absolute;
        right: 0;
    }

    .selected-option::before {
        transform: rotate(45deg);
        right: 15px;
    }

    .selected-option::after {
        transform: rotate(-45deg);
        right: 10px;
    }
}