/**
 * Currency switcher CSS.
 * @since x.x.x
 * Copyright (c) 2021, TIV.NET INC. All Rights Reserved.
 */

.woocommerce-currency-switcher .selector,
.woocommerce-currency-switcher .dropdown-content {
    border: 1px solid silver;
    cursor: pointer;
}

.nav-menu .woocommerce-currency-switcher .selector {
    border: none;
}

.widget .woocommerce-currency-switcher {
    min-width: 100%;
}

.woocommerce-currency-switcher .currency-flag {
    margin: 4px 2px -3px 5px;
}

.woocommerce-currency-switcher .currency-no-flag {
    display: inline-block;
    margin-left: 3px;
}

.woocommerce-currency-switcher .chevron-down {
    float: right;
}

.woocommerce-currency-switcher .chevron-down:after {
    content: "^";
    display: inline-block;
    padding: 0 .3em;
    transform: rotate(180deg) scaleX(1.8);
}

.woocommerce-currency-switcher {
    position: relative;
    display: inline-block;
}

.woocommerce-currency-switcher .dropdown-content {
    background-color: white;
    display: none;
    position: absolute;
    min-width: 100%;
    z-index: 99999;
}

.woocommerce-currency-switcher:hover .dropdown-content {
    display: block;
}

.woocommerce-currency-switcher .dropdown-content form,
.woocommerce-currency-switcher .dropdown-content button {
    color: initial;
    background: initial;
    margin: 0;
    padding: 0;
    font-weight: initial;
    width: 100%;
    text-align: initial;
    white-space: nowrap;
}

.woocommerce-currency-switcher .selector:hover,
.woocommerce-currency-switcher .dropdown-content button:hover {
    color: white;
    background-color: black;
}

.woocommerce-currency-switcher:hover .selector {
    border-bottom: none;
}
