.floatingBtn {
    position: fixed;
    bottom: 50px; right: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 30;
}

.flBtn {
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 6px 6px 18px rgba(0, 0, 0, .2);
    cursor: pointer;
}

.wcBtn {
    background-color: #34c309;
}

.wcBtn-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    z-index: 99;
    display: none;
}

.wc-popup {
    position: relative;
}

.wc-popup a {
    width: 100%;
    height: 100%;
    display: flex;
}

.wc-closeBtn {
    position: absolute;
    top: 25px; right: 25px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}


/*==================================================*/
@media (max-width: 768px) {
    .wc-popup {
        width: 90%;
    }
}


@media (max-width: 550px) {
    .floatingBtn {
        bottom: 40px; right: 40px;
    }
}