
#cbox {
    left: 40px;
    bottom: -230px; 
    z-index: 9999;
    position: fixed;
    transition: all 0.6s ease-in-out;
    border: 2px solid #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 2px 0px 10px rgba(255, 130, 215, 0.3);
    background: #FFDBF2;
}

#cbox:hover {
    bottom: 0px;
}
    
#cboxtitle {
    width: 250px;
    background-image: var(--titlebar); 
    padding: 5px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 4px;
    color: white;
    text-shadow: 1px 1px 0px var(--text);
    text-transform: uppercase;
    cursor: pointer;
}

#cboxdesc {
    width: 250px;
    padding-top: 6px;
    padding-bottom:6px;
    background: var(--win-bg);
    font-family: 'Courier New', monospace;
    font-size: 10px;
    text-align: center;
    text-shadow: 1px 1px 0px white;
    margin-bottom: -20px;
    z-index: 10;
    position: absolute;
}

#chatango-wrapper {
    width: 250px;
    height: 250px;
    overflow: hidden;
}