  #cookie-folding-button {
    display: flex;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.fold-left,
.fold-right {
    transition: margin-right 2s; /* Add transition effect */
}

#folded-content {
    display: block;
}

#fold-button {
    background-color: #ff800d; /* Orange ÌÇÐÄÊÓÆµ */
    color: #fff;
    border: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    cursor: pointer;
    width: 30px;
    height: 200px;
}

.fold-right-hidden .fold-left {
    margin-right: 0; /* Move the left div to the right */
}

/* Below is specific to the BTB BTN */

.fixed-btn{
    background: #ff800d;
    background-image: url("/wp-content/plugins/tc-features-options/img/tigercat_static_btn_180x200.jpg"); 
    line-height: 10px;
    text-align: center;
    cursor: pointer;
    width: 180px;
    height: 200px;
    bottom: 10%;
    right: 3%;
    z-index: 1000;
}

.fixed-btn a{
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    padding-top: 50%;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    line-height: normal;
}

.fixed-btn:active{
    box-shadow: 0  0;
}

.fas {
    padding-top: 10px;
}

/* MOBILE Version differences for BTB Cookie folding button  */
@media (max-width: 479px) {
    .fixed-btn{
        background-image: url("/wp-content/plugins/tc-features-options/img/tigercat_static_btn_180x130.jpg");
        height: 130px;
        bottom: 1%;
        right: 1%;
    }
    #fold-button {
        height: 130px;
    }  
}
