.btn-whatsapp{
    position: fixed;
    right: 50px;
    bottom: 50px;
}
.btn-whatsapp__btn{
    position: relative;
    width: 200px;
    height: 60px;
    margin-right: 0;
    margin-left: auto;
    background: #FFFFFF;
    border: 1px solid #F2F2F2;
    box-sizing: border-box;
    border-radius: 35px;
    display: flex;
    align-items: center;
    padding: 0 35px;
    box-shadow: 0 9px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
.btn-whatsapp__btn:hover .btn-whatsapp__icon,
.btn-whatsapp__btn.active .btn-whatsapp__icon{
    width: calc(100% + 2px);
    transition: .4s;
    animation: none;
}
.btn-whatsapp__btn:hover .btn-whatsapp__txt,
.btn-whatsapp__btn.active .btn-whatsapp__txt{
    color: #fff;
    transition: .4s;
}
.btn-whatsapp__txt{
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 140%;
    color: #303030;
    z-index: 10;
    transition: .4s;
}
.btn-whatsapp__icon{
    position: absolute;
    top: -1px;
    right: -1px;
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #41EC60 0%, #12C83B 100%), #FFFFFF;
    border-radius: 35px;
    animation: pulse 1.5s infinite;
    transition: .4s;
}
.btn-whatsapp__icon:after{
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    background-image: url("../img/icons/whatsapp.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
}

.btn-whatsapp__form{
    position: relative;
    width: 100%;
    max-width: 371px;
    margin-bottom: 31px;
    margin-left: auto;
    margin-right: 0;
    box-shadow: 0 9px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    display: none;
}
.btn-whatsapp__header{
    position: relative;
    background: #285C54;
    padding: 10px;
    display: flex;
    align-items: center;
}
.btn-whatsapp__ava{
    background: #103F38;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    background-image: url("../img/ava.png");
    background-size: 100%;
    background-repeat: no-repeat;
}
.btn-whatsapp__name{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #FFFFFF;
}
.btn-whatsapp__online{
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFF;
}
.btn-whatsapp__close{
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    background-image: url("../img/icons/whatsapp-close.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 9px;
    height: 9px;
}
.btn-whatsapp__main{
    background-image: url("../img/whatsapp-bg.png");
    background-position: center;
    padding: 24px 18px 52px 28px;
}
.btn-whatsapp__main p{
    background: #FFFFFF;
    border-radius: 0 5px 5px 5px;
    padding: 7px 10px;
    margin: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    color: #303030;
    position: relative;
}
.btn-whatsapp__main p:before{
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
    border-radius: 5px 0 0 0;
}
.btn-whatsapp__footer{
    background-color: #fff;
    width: 100%;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-whatsapp__link{
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #41EC60 0%, #12C83B 100%), linear-gradient(0deg, #16CB3F, #16CB3F), #C4C4C4;
    border-radius: 18.5px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px!important;
    line-height: 140%;
    color: #FFFFFF!important;
    padding: 6px 25px!important;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(65,236,96, 0.7);
    }
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(18,200,59, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(18,200,59, 0);
    }
}
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(65,236,96, 0.7);
        box-shadow: 0 0 0 0 rgba(65,236,96, 0.7);
    }
    70% {
        -moz-box-shadow: 0 0 0 40px rgba(18,200,59, 0);
        box-shadow: 0 0 0 40px rgba(18,200,59, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(18,200,59, 0);
        box-shadow: 0 0 0 0 rgba(18,200,59, 0);
    }
}

@media only screen and (max-width: 768px){
    .btn-whatsapp{
        width: 100%;
        position: fixed;
        right: 25px;
        bottom: 100px;
    }
    .btn-whatsapp__btn{
        width: 60px;
        border: none;
        padding: 0;
    }
    .btn-whatsapp__txt{
        display: none;
    }
}
@media only screen and (max-width: 425px){
    .btn-whatsapp{
        width: 100%;
        position: fixed;
        right: 25px;
        bottom: 30px;
    }
    .btn-whatsapp__form{
        right: -25px;
    }
}