.custom-select-container {
    position: relative;
    cursor: pointer;
}

.custom-select-container .down-arrow {
    position: absolute;
    right: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.custom-select {
    position: absolute;
    background-color: var(--base-color) !important;
    display: flex;
    flex-direction: column;
    z-index: 3;
    max-height: 0;
    border-bottom: 1px solid #272727bd;
    border-left: 1px solid #272727bd;
    border-right: 1px solid #272727bd;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow-y: auto;
    box-shadow: -4px 4px 7px -2px black,  /* Left side shadow */
                4px 4px 7px -2px black,  /* Right side shadow */
                0 4px 7px -2px black;  /* Bottom side shadow */
}

.custom-select-selected-option {
    box-shadow: -4px -4px 7px -2px black,  /* Left side shadow */
                4px -4px 7px -2px black,  /* Right side shadow */
                0 -4px 7px -2px black;  /* Bottom side shadow */
}

.custom-select p.option-value {
    padding: 0.7em 0.7em;
    cursor: pointer;
    color: #b7b7b7;
    margin-bottom: 0 !important;
}

.custom-select div.option-value {
    display: flex;
    gap: 0.7em;
    align-items: center;
    padding-left: 0.7em;
    padding-right: 0.7em;
}

.custom-select div.option-value img {
    width: 1.7em;
    height: 1.7em;
}

.custom-select div.option-value p {
    padding: 0.7em 0;
    cursor: pointer;
    color: #b7b7b7;
    width: calc(100% - 3.6em);
}

.custom-select p.option-value:hover {
    background-color: #181818;
}

.custom-select div.option-value:hover {
    background-color: #181818;
}

.selected-drop {
    background-color: #181818;
}


.dropdown-value .option-value {
    margin-bottom: 0 !important;
}


#translate-to-languages-dropdown {
    width: 100%;
    position: relative;
    border: 1px solid #272727bd;
    border-radius: 5px;
}

#translate-to-languages-dropdown .option-value {
    padding: 0.4em 0.7em;
    cursor: pointer;
    color: #b7b7b7;
    text-align: center;
}