﻿.stick-btn2 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stick-btn2-up {
    cursor: pointer;
    width: 55px;
    height: 55px;
    background-color: rgb(1, 24, 37);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(60px);
    pointer-events: none;
    border-radius: 50%;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

@media (max-width: 500px) {
    .stick-btn2-up {
        width: 45px !important;
        height: 45px !important;
    }
}

.stick-btn2-up svg {
    fill: rgb(255, 255, 255);
    transition: fill 0.4s ease-in-out;
}

@media (max-width: 500px) {
    .stick-btn2-up svg {
        width: 17px !important;
        height: 17px !important;
    }
}

.stick-btn2-whats {
    cursor: pointer;
    width: 75px;
    height: 75px;
    /*    background-color: rgb(1, 24, 37);*/
    background-color: var(--main-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: 50%;
}

@media (max-width: 500px) {
    .stick-btn2-whats {
        width: 52px;
        height: 52px;
    }
}

.stick-btn2-whats svg {
    fill: rgb(255, 255, 255);
    width: 32px;
    height: 32px;
}

@media (max-width: 500px) {
    .stick-btn2-whats svg {
        fill: rgb(255, 255, 255);
        width: 22px !important;
        height: 22px !important;
    }
}