#main{
    position: relative;
    z-index: 991;
}
.ntg-country-selector{
    display: grid;
    grid-template-columns: 1fr 16px;
    align-items: center;
    position: relative;
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid #777777;
    background-color: #fff;
}
.ntg-country-selector:after{
    display: block;
    content:"";
    width:0px;
    height:0px;
    border-top: 6px solid #777777;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid transparent;
    transform: translateY(4px);
}
.ntg-country-selector .country-selector-placeholder{
    color: #777777;
}
.ntg-country-selector ul{
    list-style: none;
    padding: 15px 0;
    margin: 2px 0 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 991;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    display: none;
}
.ntg-country-selector.open ul{
    display: block;
}
.ntg-country-selector ul li{
    display: block;
}
.ntg-country-selector ul li a{
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 5px 15px;
    color: var(--awb-color5);
    transition: all ease-in-out 300ms;
    background: #fff;
}
.ntg-country-selector ul li a:hover{
    background-color: #eaeaea;
}
.ntg-country-selector ul li a img{
    display: block;
    width: 25px;
    height: auto;
}
.ntg-country-selector ul li.is-separator span{
    display: block;
    padding: 5px 15px;
    color: #777777;
    text-transform: uppercase;
}