/**
 * multi currency style
 *
 * @version 1.0.0
 */

.efw-currency-switcher {
    margin: 10px 0;
}

.efw-currency-switcher .efw-currency-form {
    display: inline-block;
}

.efw-currency-switcher .efw-currency-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    min-width: 150px;
}

.efw-currency-switcher .efw-currency-select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.efw-currency-switcher noscript input[type="submit"] {
    padding: 8px 12px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 5px;
}

.efw-currency-switcher noscript input[type="submit"]:hover {
    background: #005a87;
}

/* Admin styles */
.efw-multicurrency-pricing {
    padding: 15px;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}

.efw-multicurrency-pricing h4 {
    margin: 20px 0 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.efw-multicurrency-pricing p {
    margin: 10px 0;
}

.efw-multicurrency-pricing label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.efw-multicurrency-pricing input[type="text"] {
    width: 100%;
    max-width: 200px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.efw-multicurrency-pricing input[type="checkbox"] {
    margin-right: 5px;
}