.dropdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdownTitle {
    margin-right: 10px;
}

.custom-dropdown {
    position: relative;
    display: flex;
}

.input-head-option {
    color: #242427;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: #fff;
    border: 1px solid #f2efe3;
    border-radius: 8px;
    cursor: pointer;
    min-width: 143px;
}

.menu-header img {
    width: 12px;
    transition: transform 0.3s;
}

.menu-header.active img {
    transform: rotate(180deg);
}

.dropdown-menu {
    padding: 6px;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #f0f0ef;
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0px 15px 30px 0px #00000014;
}

.dropdown-item {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #242427;
}

.dropdown-item:hover {
    background-color: #fafafa;
}

.dropdown-item.premimum {
    color: #879192;

    img {
        margin-left: 4px;
    }
}

#selectedOption {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #242427;
}
