/* CF7 Tienda Selector - Estilos para los selects y comprobante de compra */

.wpcf7-form #select_tienda,
.wpcf7-form #select_direccion {
    height: 49px;
    padding: 14px;
    font-size: 14px;
    font-family: inherit;
    color: rgb(0, 0, 0);
    background-color: rgb(232, 232, 232);
    border: 0;
    border-radius: 3px;
    line-height: 21px;
    width: 100%;
    box-sizing: border-box;
    appearance: auto;
    -webkit-appearance: auto;
    cursor: pointer;
}

.wpcf7-form #select_tienda:disabled,
.wpcf7-form #select_direccion:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wpcf7-form #select_tienda:focus,
.wpcf7-form #select_direccion:focus {
    outline: none;
}

