#tc-ultra-widget{
    position:fixed;
    left:20px;
    bottom:20px;
    z-index:999999;
    max-width:92vw;
}

.tc-ultra-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:16px;
    min-width:340px;
    max-width:620px;
    padding:10px 14px;
    border-radius:999px;
    background:linear-gradient(135deg,rgba(255,255,255,.45),rgba(255,255,255,.1));
    border:1px solid rgba(255,255,255,.4);
    backdrop-filter:blur(30px);
    -webkit-backdrop-filter:blur(30px);
    box-shadow:0 10px 40px rgba(0,0,0,.18);
    opacity:0;
    transform:translateY(30px) scale(.92);
    transition:all .7s ease;
}

.tc-ultra-card.active{
    opacity:1;
    transform:translateY(0) scale(1);
}

.tc-ultra-icon{
    width:60px;
    height:60px;
    min-width:70px;
    border-radius:50%;
    overflow:hidden;
}

.tc-ultra-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.tc-ultra-title{
    font-size:24px !important;
    font-weight:900;
    line-height:1;
    color:#fff !important;
    margin-bottom:8px;
}

.tc-ultra-desc{
    font-size:16px !important;
    line-height:1.5;
	color:#fff !important;
}

.tc-ultra-close{
    position:absolute;
    right:12px;
    top:12px;
    border:none;
    width:28px;
    height:28px;
    border-radius:50%;
    cursor:pointer;
}

@media(max-width:767px){

#tc-ultra-widget{
    left:12px;
    right:12px;
    bottom:12px;
}

.tc-ultra-card{
    min-width:auto;
    width:100%;
    border-radius:28px;
}

.tc-ultra-title{
    font-size:18px !important;
}

.tc-ultra-desc{
    font-size:15px !important;
}

}
