.whatappButton {
    position: relative;
}

.icon_position_button {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 20;
}

.icon_style_button {
    background-color: #25D366;
    border: 2px solid #25D366;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* -webkit-animation: movebtn 3s ease-in-out infinite;
animation: movebtn 3s ease-in-out infinite;
-webkit-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out; */

.icon_position_button i {
    font-size: 30px;
    font-weight: normal;
}

.icon_position_button i:hover {
    color: #fff;
}


/* .icon-style:hover {
    -webkit-animation: none;
    animation: none;
    background-color: transparent;
    color: #000;
    border: 2px solid var(--blue);
    scale: 2;
} */

/* i.fa-solid.fa-arrow-up {
    font-size: 20px;
    font-weight: bold;
} */


@-webkit-keyframes movebtn {

    0%,
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    25% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}


@keyframes movebtn {

    0%,
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    25% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

/* @media screen and (max-width: 786px) {
    .top-to-btm {
        display: none;
    }
} */