.tc-contact-fab{
    position:fixed;
    right:22px;
    bottom:24px;
    z-index:998;
}
.tc-contact-fab__wrap{
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:flex-end;
}
.tc-contact-fab__btn{
    border:0;
    min-width:48px;
    height:48px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:0 16px;
    color:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    text-decoration:none!important;
}
.tc-contact-fab__btn:hover{color:#fff;transform:translateY(-2px);}
.tc-contact-fab__btn--call{background:#ff6600;}
.tc-contact-fab__btn--wa{background:#25d366;}
.tc-contact-fab__btn--top{
    background:#222;
    padding:0;
    width:48px;
    min-width:48px;
    align-self:center;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(12px);
    transition:opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.tc-contact-fab.tc-contact-fab--show-top .tc-contact-fab__btn--top{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}
.tc-contact-fab.tc-contact-fab--show-top .tc-contact-fab__btn--top:hover{
    transform:translateY(-2px);
}
.tc-contact-fab__btn--top span{display:none;}
.tc-contact-fab__mobilebar{display:none;}
@media (min-width:768px){
    .tc-contact-fab{
        right:28px;
        bottom:28px;
        z-index:99990;
    }
    .tc-contact-fab__wrap{gap:12px;}
}
@media (max-width:767px){
    .tc-contact-fab{right:0;left:0;bottom:0;}
    .tc-contact-fab__wrap{display:none;}
    .tc-contact-fab__mobilebar{
        display:grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        background:#fff;
        box-shadow:0 -10px 30px rgba(0,0,0,.12);
    }
    .tc-contact-fab__mobilebar a{
        height:54px;
        display:flex;
        align-items:center;
        justify-content:center;
        gap:8px;
        color:#fff;
        font-size:14px;
        font-weight:800;
        text-decoration:none!important;
    }
    .tc-contact-fab__mobilebar a:first-child{background:#ff6600;}
    .tc-contact-fab__mobilebar a:last-child{background:#25d366;}
    body{padding-bottom:54px;}
}
