#tg-cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 12000;
    display: none;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
#tg-cookie-consent-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
#tg-cookie-consent-text a {
    color: #0b6f8a;
    text-decoration: underline;
}
#tg-cookie-consent-accept {
    border: 0;
    border-radius: 6px;
    background: #f90;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    padding: 11px 18px;
    white-space: nowrap;
}
#tg-cookie-consent-accept:hover {
    background: #eb9200;
}
@media (max-width: 767px) {
    #tg-cookie-consent {
        flex-direction: column;
        align-items: flex-start;
    }
    #tg-cookie-consent-accept {
        width: 100%;
    }
}
