.country-selector-dropdown {
    .country-selector-dropdown__container select {
        background: rgba(0, 0, 0, 0.05);
        padding: 15px 5px 15px 70px;
        border: none;
        color: var(--color-grey-100);
        font-family: var(--font-family-main);
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 100%;
        min-width: 280px;
    }

    .country-selector-dropdown__container {
        position: relative;
    }

    .country-selector-dropdown__container:before {
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        height: 100%;
        width: 35px;
        font-weight: 700;
        color: black;
        position: absolute;
        left: 10px;
        top: 0;
        pointer-events: none;
        content: "";
        background-size: 35px 35px;
        background-repeat: no-repeat;
        background-position: center;
    }

    .country-selector-dropdown__container:after {
        display: flex;
        align-items: center;
        border: none;
        width: 20px;
        height: 100%;
        font-family: "Material Symbols Outlined";
        content: "\e5cf";
        font-size: 25px;
        font-weight: 700;
        color: var(--color-grey-100);
        position: absolute;
        right: 10px;
        top: 0;
        pointer-events: none;
    }
}
