.alert{
    z-index: 11;
}
.ballon-close {
    position: absolute;
    font-size: large;
    width: 0;
    height: 0;
    right: 20px;
}
.ballon-close i {
    position: relative;
    top: -40px;
    cursor: pointer;
}
.ballon-feed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 15px 20px;
    text-align: center;
    border-radius: 15px;
}
.hidden{
    display: none !important;
}
.ballon{
    color: #000;
    position: fixed;
    right: 20px;
    bottom: 20px;
    font-weight: 700;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    z-index: 30;
    box-shadow: 0 1px 3px #ccc;
}
.ballon-icon{
    color: #FFF;
    font-size: 20px;
    background-color: #000;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
}

.ballon input{
    width: 0;
    border-width: 0px;
    transition: width 0.5s , border-width 0.3s ease-out, background-color 0.3s,border-color 0.5s;
    border-radius: 5px;
    padding: 5px;
    background-color: #FFF;
}
.ballon input:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
.ballon:hover input{
    width: 240px;
    padding: 10px;
    background-color: #ededed;
}
