.pcs-country-selector{
    position:relative;
    width:180px;
    font-family:inherit;
    background: #f5f5f5;
    padding: 10px;
	margin-bottom:10px;
}

.pcs-label{
    display:block;
    font-size:13px;
    color:#777;
}

.pcs-selected{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
	margin:-5px 0 -5px 0;
}


.pcs-dropdown{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:250px;
    max-height:300px;
    overflow-y:auto;
    background:#fff;
    border:1px solid #ddd;
    z-index:9999;
    box-shadow:0 3px 12px rgba(0,0,0,.15);
}

.pcs-option{
    padding:12px;
    cursor:pointer;
}

.pcs-option:hover{
    background:#f5f5f5;
}

.pcs-country-selector.open .pcs-dropdown{
    display:block;
}
.pcs-label{
    font-size:14px;
    color:black;
	margin-bottom: 0px;
}

.pcs-country{
    padding: 0;
    margin: 0;
    color: black;
    font-size: 14px !important;
    font-weight: 700;
}

.pcs-arrow{
    font-size: 30px;
    color: black;
}
.pcs-dropdown{

    display:none;

    position:absolute;

    top:100%;

    left:0;

    width:280px;

    max-height:320px;

    overflow-y:auto;

    background:#fff;

    border:1px solid #ddd;

    border-radius:8px;

    box-shadow:0 8px 25px rgba(0,0,0,.15);

    z-index:99999;

}

.pcs-country-selector.open .pcs-dropdown{

    display:block;

}

.pcs-search{

    width:100%;

    box-sizing:border-box;

    padding:10px 14px;

    border:none;

    border-bottom:1px solid #eee;

    outline:none;

    font-size:15px;

    position:sticky;

    top:0;

    background:white;

}

.pcs-option{

    padding:12px 14px;

    cursor:pointer;

    transition:.15s;

}

.pcs-option:hover{

    background:#f5f5f5;

}
/*popup*/
#pcs-overlay{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    z-index:999999;

    justify-content:center;

    align-items:center;

}

#pcs-popup{

    width:420px;

    max-width:90%;

    background:white;

    border-radius:12px;

    padding:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.pcs-popup-title{

    font-size:24px;

    font-weight:700;

    margin-bottom:10px;

}

.pcs-popup-text{

    color:#666;

    margin-bottom:20px;

}

#pcs-popup-continue{

    width:100%;

    margin-top:20px;

    padding:13px;

    border:none;

    background:#ff6b00;

    color:white;

    border-radius:8px;

    font-size:16px;

    cursor:pointer;

}