.po-currency-switcher-wrapper {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
    z-index: 999;
	padding-bottom: 3px;
    margin-top: 3px;
}

.po-currency-frame {
    width: 52px;
    height: 37px;
    padding: 0;
    border: 1px solid #ffffff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.po-currency-current-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.po-currency-current-display:hover {
    /* background-color: #f0f0f0; */
    border-color: #999;
}

.po-currency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0px;
	font-family: Roboto;
    font-weight: 400;
    font-size: 14px;
	line-height: 30px;
    margin-top: 2px;
	color: #ffffff;
}

.po-currency-dropdown .po-currency-text {
	color: #000000;
}

.po-current-selected .po-currency-text {
	color: #aaaaaa;
}

.po-currency-arrow {
    margin-left: 2px;
	display: flex;

}

.po-currency-switcher-wrapper.active .po-currency-arrow {
    transform: rotate(180deg);
}

.po-currency-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: none;
    z-index: 100;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.po-currency-divider {
    border-top: 1px solid #000;
}

.po-currency-switcher-wrapper.active .po-currency-dropdown {
    display: block;
}

.po-currency-option {
    border: none;
    border-radius: 0;
    width: auto;
    height: 37px;
    padding: 0;
    justify-content: center;
    gap: 0;
    border-bottom: 1px solid #e0e0e0;
}

.po-currency-option:last-child {
    border-bottom: none;
}

.po-currency-option:hover {
    background-color: #e0e0e0;
}

.po-currency-option .po-currency-text {
    justify-content: center;
}

.po-currency-option.po-current-selected {
    background-color: #f5f5f5;
    cursor: default;
    opacity: 0.8;
}

.po-currency-option.po-current-selected:hover {
    background-color: #f5f5f5;
    cursor: default;
}

span.woocommerce-Price-amount.amount {
    margin-right: 3px;
	/* margin-left: 20px; */
}
.woocommerce-mini-cart__total .woocommerce-Price-amount {
    flex-grow: 0 !important;
}