
.tmcc-bar[hidden]{
    display:none !important;
}

.tmcc-bar{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:2147483000;
    width:100%;
    box-sizing:border-box;
    background:#fff;
    border-top:1px solid #e6e6e6;
    box-shadow:0 -4px 18px rgba(0,0,0,.08);
    transform:translateY(110%);
    opacity:0;
    transition:transform .35s ease, opacity .28s ease;
}

.tmcc-bar.tmcc-visible{
    transform:translateY(0);
    opacity:1;
}

.tmcc-inner{
    width:100%;
    box-sizing:border-box;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    padding:12px 5%;
}

.tmcc-message{
    flex:1 1 auto;
    color:#111;
    font-size:14px;
    line-height:1.55;
}

.tmcc-message a{
    color:inherit;
    text-decoration:underline;
    font-weight:600;
}

.tmcc-actions{
    flex:0 0 auto;
    display:flex;
    gap:12px;
    align-items:center;
}

.tmcc-btn{
    appearance:none;
    border:0;
    border-radius:4px;
    padding:13px 16px;
    min-width:80px;
    font:inherit;
    font-size:14px;
    font-weight:700;
    line-height:1;
    cursor:pointer;
    box-shadow:none;
}

.tmcc-reject{
    background:#8f8f8f;
    color:#fff;
}

.tmcc-accept{
    background:#f77ca2;
    color:#111;
}

.tmcc-btn:hover{
    filter:brightness(.96);
}

@media (max-width:782px){
    .tmcc-inner{
        align-items:flex-end;
        gap:14px;
        padding:11px 14px;
    }

    .tmcc-message{
        font-size:12px;
        line-height:1.5;
    }

    .tmcc-actions{
        gap:8px;
    }

    .tmcc-btn{
        min-width:68px;
        padding:11px 10px;
        font-size:12px;
    }
}

@media (max-width:560px){
    .tmcc-inner{
        display:block;
        padding:12px 14px;
    }

    .tmcc-message{
        margin-bottom:10px;
    }

    .tmcc-actions{
        justify-content:flex-end;
    }
}
