/* .menu-select-country {
    display: flex;
    align-items: center;
    justify-content: flex-end;
} */

.choose-your-country {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 25px;
}

.choose-your-country p {
    margin-right: 10px;
    font-weight: bold;
}

.select2-selection__rendered {
    line-height: initial !important;
}

.select2-results__option {
    display: flex !important;
    justify-content: space-between !important;
}

.select2-selection-disabled {
    background-color: rgba(200,200,200, .5) !important;
}

.select2-container {
    max-width: 250px;
}

@media screen and (max-width: 767px) {

    .select2-container {
        max-width: 400px !important;
    }

    .menu-select-country {
        display: block;
    }

    .choose-your-country {
        justify-content: flex-end;
    }

    .choose-your-coutry p {
        font-size: 14px;
    }

    .select2-selection__rendered {
        padding-left: 15px !important;
        padding-right: 50px !important;
    }

}