.glbe-selector {
    text-align: left;
    white-space: nowrap;
    color: #2b2b2b;
    font-family: Helvetica;
    font-size: 13px;
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 8px 4px;
    padding: 10px 30px 10px 39px;
    border-radius: 3px;
    box-shadow: 0px 1px 3px -1px #000;
    position: relative;
    cursor: pointer;
    line-height: normal;
    background-color: #fff;
    height: 35px;
}

    .glbe-selector:after {
        content: "▼";
        position: absolute;
        right: 6px;
        top: 9px;
    }

.glbe-selector-options {
    display: none;
    position: absolute;
    border-radius: 3px;
    box-shadow: 0px 1px 3px -1px #000;
    left: 0;
    top: 40px;
    min-width: 100%;
    max-height: 360px;
    overflow-y: auto;
    overflow-x: hidden;
}

span.glbe-country-search {
    background-color: #fff;
    display: block;
    padding: 10px 10px;
}

    span.glbe-country-search input[type="text"] {
        width: 100%;
        min-width: 150px;
        height: 29px;
        border-radius: 0;
        border: 0 none;
        border-bottom: 1px solid #7a7a7a;
        background-image: url(https://globale-imgs.s3.eu-west-1.amazonaws.com/icons/magnify.png);
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: 0 4px;
        padding-left: 25px;
    }

        span.glbe-country-search input[type="text"]:focus-visible, span.glbe-country-search input[type="text"]:focus {
            outline: none;
        }


.glbe-selector-option {
    text-align: left;
    background-color: #fff;
    display: block;
    white-space: nowrap;
    padding: 15px;
    padding-left: 40px;
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 9px center;
}

    .glbe-selector-option:hover {
        background-color: #efefef;
    }


.glbe-selector.mobile {
    display: none;
}

.glbe-country-promt {
    position: relative;
    background-color: #efefef;
    text-align: center;
    padding: 17px;
    font-family: arial;
    font-size: 14px;
}

    .glbe-country-promt * {
        vertical-align: bottom;
    }

    .glbe-country-promt a {
        text-decoration: underline;
        cursor: pointer;
    }

    .glbe-country-promt .glbe-close {
        font-family: arial;
        font-size: 31px;
        position: absolute;
        right: 15px;
        top: 20px;
        line-height: 0;
        cursor: pointer;
    }

    .glbe-country-promt img {
        width: 25px;
        margin: 0px 4px;
        height: 22px;
    }


/* //TODO: make screen breakpoints configurable */
@media screen and (max-width: 768px) {
    .glbe-selector.mobile {
        display: inline-block;
    }

    .glbe-selector.desktop {
        display: none;
    }
}



