.plc-country-modal.uk-modal {
    z-index: 10000;
	font-family: 'Raisonne Pro';
}

.plc-country-modal .plc-country-popup-dialog {
    max-width: 600px !important;
    margin: auto;
    padding: 50px 40px;
    background: #ffffff;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
}

.plc-country-modal .uk-modal-close-default {
    top: 20px;
    right: 20px;
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50% !important;
	border: 1px solid #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    padding: 8px !important;
}

.plc-country-modal .uk-modal-close-default:hover {
    background-color: #f5f5f5;
}

.plc-country-modal .uk-modal-close-default svg line {
    stroke-width: 3;
}

.plc-country-popup-content {
	text-align: center;
    max-width: 400px;
    margin: auto;
}

.plc-popup-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.plc-popup-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.plc-popup-select-wrapper {
    margin-bottom: 30px;
}

/* Select2 Container */
.plc-popup-select-wrapper .select2-container {
    width: 100% !important;
}

/* Select2 Selection (Closed State) */
.plc-popup-select-wrapper .select2-container--default .select2-selection--single {
    height: 50px;
    padding: 0 15px;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-transform: uppercase;
    background-color: #ffffff;
    border: 1px solid #000;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.plc-popup-select-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: 48px;
    color: #1a1a1a;
    width: 100%;
}

/* Hide default arrow */
.plc-popup-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    padding: 15px;
	border-left: 1px solid #000;
	border-right: unset;
	border-top: unset;
	border-bottom: unset;
	position: absolute;
	right: 15px;
    top: 1px;
    display: block;
    transform: none;
    border-radius: 0;

}

.plc-popup-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.plc-popup-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    right: 4px;
    top: 50%;
    transition: transform 0.3s ease;
}

/* Rotate when open */
.plc-popup-select-wrapper .select2-container--default.select2-container--open 
.select2-selection--single .select2-selection__arrow::after {
    transform: translateY(-50%) rotate(-135deg);
}

.plc-popup-select-wrapper .select2-container--default.select2-container--focus .select2-selection--single,
.plc-popup-select-wrapper .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #1a1a1a;
    outline: none;
}

/* Format for name and currency side by side */
.select2-option-content,
.select2-selection-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.select2-selection-content {
    padding-right: 45px !important;
	font-weight: 600;
}

.select2-store-name {
    flex: 1;
    text-align: left;
}

.select2-store-currency {
    color: #000 !important;
    margin-left: 15px;
    white-space: nowrap;
}

/* Select2 Dropdown */
.plc-popup-select-wrapper .select2-container--default .select2-dropdown {
	border: 1px solid #000 !important;
    border-radius: 0 !important;
    margin-top: -1px;
}

.plc-popup-select-wrapper .select2-container--open .select2-dropdown .select2-results__options {
	width: 100%;
    padding: 0;
}
.select2-container--default .select2-results__option {
    padding: 10px 40px 10px 15px !important;
	margin: 0 !important;
    font-size: 13px;
    text-transform: uppercase;
}
.select2-container--default .select2-results__option:hover {
	background-color: #f5f5f5 !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    font-weight: 600;
}

/* Continue Button */
.plc-popup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    padding: 0 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #1a1a1a;
    border: none;
    border-radius: 27px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.plc-popup-button:hover {
    background-color: #333333;
}

.plc-popup-button .plc-arrow {
    display: none;
}

.plc-popup-button::after {
    transform: translateY(0px);
    margin-left: 5px;
    display: inline-block;
    content: "\e905";
    font-family: 'icomoon' !important;
    font-size: 14px;
}

@media (max-width: 769px) {
    .plc-country-modal .plc-country-popup-dialog {
        margin: 15px;
        padding: 40px 25px;
        max-width: calc(100% - 30px) !important;
    }

    .plc-popup-title {
        font-size: 16px;
    }
}