/* askitall-global.css */
.wpcf7 input:-webkit-autofill,
.wpcf7 input:-webkit-autofill:hover,
.wpcf7 input:-webkit-autofill:focus,
.wpcf7 textarea:-webkit-autofill,
.wpcf7 textarea:-webkit-autofill:hover,
.wpcf7 textarea:-webkit-autofill:focus,
.wpcf7 select:-webkit-autofill,
.wpcf7 select:-webkit-autofill:hover,
.wpcf7 select:-webkit-autofill:focus {
    -webkit-text-fill-color: #F4E0D9 !important;
    color: #F4E0D9 !important;
    caret-color: #F4E0D9;
    border-color: #F4E0D9 !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    box-shadow: 0 0 0 1000px transparent inset;
    transition: background-color 9999s ease-in-out 0s;
}

.askitall-language-selector {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 2147483000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid rgba(0,0,0,0.16);
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
    color: #111;
    font-size: 12px;
    line-height: 1;
}

.askitall-language-selector label {
    font-weight: 600;
    margin: 0;
}

.askitall-language-selector select {
    max-width: 160px;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 12px;
    line-height: 1;
    outline: none;
}

@media (max-width: 767px) {
    .askitall-language-selector {
        bottom: 16px;
        max-width: calc(100vw - 24px);
    }

    .askitall-language-selector select {
        max-width: 128px;
    }
}
