.custom-country-dropdown {
    position: relative;
    display: inline-block
}

#country-selector {
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 24px auto;
    cursor: pointer;
    font-size: 13px;
    padding: 13px 8px 8px 28px
}

.country-list-container::-webkit-scrollbar {
    width: 2rem
}

.country-list-container::-webkit-scrollbar-corner {
    background-color: transparent
}

.country-list-container::-webkit-scrollbar-thumb {
    background-clip: padding-box;
    border: .8rem solid transparent;
    border-radius: 3rem;
    box-shadow: inset 0 0 0 1rem #bbbcbc
}

.country-list-container {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 14rem;
    background-color: #fff;
    padding: 10px 0 10px 10px;
    z-index: 2;
    box-shadow: 0 4px 6px #0000001a;
    border-radius: .4rem;
    overflow-y: scroll;
    height: 15rem
}

.country-list-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 5px;
    cursor: pointer;
    flex-direction: row-reverse;
    color: #000;
    font-size: 14px;
    padding: 5px;
    border-bottom: 1px solid #ebebeb
}

.country-list-item:hover {
    background: #000;
    color: #fff;
    border-radius: .4rem
}

.country-list-item:last-child {
    border: none
}

.country-list-item img {
    max-width: 30px;
    margin-right: 10px
}

.close-button {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    display: none
}

.selected-country {
    background-color: #f0f0f0
}

.short-name {
    font-weight: 700;
    margin-right: 5px;
    display: none
}

/*# sourceMappingURL=/cdn/shop/t/3/assets/custom-country.css.map */