.allma-wts {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index:1000;
}

    .allma-wts a {
        cursor: pointer;
    }

    .allma-wts .none {
        display: none;
    }

    .allma-wts .button {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
        overflow: hidden;
    }

@keyframes changeIn {
    0% {
        background-color: #25d366;
    }

    100% {
        background-color: #ff7300;
    }
}

@keyframes changeOut {
    0% {
        background-color: #ff7300;
    }

    100% {
        background-color: #25d366;
    }
}

.allma-wts .button.wait {
    animation: changeOut .5s forwards;
}

.allma-wts .button.send {
    animation: changeIn .5s forwards;
}

@keyframes enterWait {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(50px);
    }

    51% {
        transform: translateX(-50px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes enterSend {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50px);
    }

    51% {
        transform: translateX(50px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes enterWaitBefore {
    0% {
        content: "\f14d";
    }

    100% {
        content: "\f232";
    }
}

@keyframes enterSendBefore {
    0% {
        content: "\f232";
    }

    100% {
        content: "\f14d";
    }
}

.allma-wts .button.wait i {
    animation: enterWait .3s forwards;
}

.allma-wts .button.send i {
    animation: enterSend .3s forwards;
}

.allma-wts .button.wait i::before {
    animation: enterWaitBefore .3s forwards;
}

.allma-wts .button.send i::before {
    animation: enterSendBefore .3s forwards;
}

.allma-wts .close-container {
    text-align: right;
    padding: 3px 7px;
}

.allma-wts .close-container a{
    color:#fff;
}

.my-float {
    margin-top: 16px;
}

.allma-wts-talk-container {
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 30px -3px rgba(0,0,0,0.8);
    -moz-box-shadow: 0px 0px 30px -3px rgba(0,0,0,0.8);
    box-shadow: 0px 0px 30px -3px rgba(0,0,0,0.8);
    width: 0;
    height: 0;
    overflow: hidden;
    transition: all cubic-bezier(0.68, -0.55, 0.265, 1.55) .5s;
    opacity: 0;
    position: absolute;
    bottom: 20px;
    right: 30px;
    background:#fff;
}

    .allma-wts-talk-container.showed {
        width: 300px;
        height: 230px;
        opacity: 1;
    }

.allma-wts-talk {
    background: url('images/allmaWhatsApp-bg.png') no-repeat #007900;
    padding: 10px
}

.allma-wts-title {
    font-size: 26px;
    font-weight: bold;
    font-family: "Open Sans";
    margin: 0 0 10px;
    color: #fff;
    line-height: normal;
}

.allma-wts-text {
    font-size: 16px;
    font-family: "Open Sans";
    margin: 0 0 10px;
    color: #fff;
    line-height: normal;
}

.allma-wts-control {
    padding: 10px;
}

    .allma-wts-control input {
        padding: 6px 0;
        font-size: 16px;
        border: 0;
        border-bottom: 2px solid #ccc;
        outline: none;
        width: 90%;
        height:auto;
    }
