/* BASIC css start */
.open-btn-wrap {
    position: fixed;
    left: -150px;
    bottom: 25px;
    z-index: 98;
    transition: left 0.5s ease-in-out;
}

.open-btn-wrap.show {
    left: -5px;
}

.open-btn {
    background-color: #fff;
    color: #111;
    border: 1px solid #ccc;
    padding: 10px 12px 10px 20px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    font-size: 12px;

    box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}

.floating-btn-group {
    position: fixed;
    left: 15px;  
    bottom: 25px;
    display: flex;
    flex-direction: column-reverse; 
    gap: 10px;   
    z-index: 99;   
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}


.floating-btn-group.hide {
    transform: translateX(-150%);
    opacity: 0;
    pointer-events: none; 
}

.floating-btn-group div a img {
    width: 60px; 
    height: auto;
    display: block;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.2)); 
    transition: transform 0.2s ease;
}

.floating-btn-group div a:active img {
    transform: scale(0.9);
}


.close-btn-wrap {
    text-align: center;
    margin-top: 5px;
}

.close-btn {
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}
/* BASIC css end */

