/**
 * Seletor de país de envio (página /bag/).
 *
 * @package Cacto_Stripe_Checkout
 */

.cacto-csc-country-select {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0 0 1.25rem;
    padding: 1rem 0 1.1rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.cacto-csc-country-select__label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin: 0;
}

.cacto-csc-country-select__field {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    color: #111;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 1 6 6 11 1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 0.75rem 0.5rem;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 0.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 150ms ease, box-shadow 150ms ease;
    padding-right: 2.25rem;
}

.cacto-csc-country-select__field:hover {
    border-color: rgba(17, 17, 17, 0.32);
}

.cacto-csc-country-select__field:focus {
    outline: none;
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.cacto-csc-country-select__field[aria-busy="true"] {
    opacity: 0.55;
    cursor: progress;
}

.cacto-csc-country-select__hint {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: #6b7280;
}
