#wa-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    z-index: 999999;
    font-size: 26px;
    transition: .5s;
}

#wa-btn svg {
    width: 32px; 
    height: 32px;
}

#wa-btn .whats {display: block}
#wa-btn .close {display: none; width: 22px; height: auto;}

#wa-btn.active .whats {display: none}
#wa-btn.active .close {display: block}
#wa-btn.active, #wa-btn:hover {background: #12887c}

#wa-modal {
    position: fixed;
    right: 20px;
    bottom: 95px;
    width: 340px;
    background: #eee6de;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
    overflow: hidden;
    z-index: 999999;
}

#wa-modal .top {
    background: #25D366;
    color: #fff;
    padding: 18px;
}

#wa-modal .list {
    padding: 12px;
}

#wa-modal .item {
    background: #f5f5f5;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid #f5f5f5;
    transition: .3s;
}

#wa-modal .item:hover {
    border-color: #25D366;
}

#wa-modal .item strong {
    display: block;
    color: #111;
    transition: .3s;
}

#wa-modal .item span {
    display: block;
    color: #777;
    font-size: 13px;
    transition: .3s;
}

#wa-modal .item:hover {background: #25D366}
#wa-modal .item:hover span, #wa-modal .item:hover strong {color: #FFF;}

#wa-modal .form {
    padding: 12px;
}

#wa-modal .form input {
    width: 100%;
    height: 50px;
    margin-bottom: 0;
    padding: 0 16px;
    border-radius: 8px;
    box-sizing: border-box;
}

#wa-modal .form button {
    width: 100%;
    height: 44px;
    background: #25D366;
    color: #fff;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

#wa-back {
    background: #f2f2f2 !important;
    border: 0;
    padding: 0;
    margin-bottom: 12px;
    color: #25D366 !important;
    font-weight: 700;
    cursor: pointer;
}

.selected-item {
    background: #f5f5f5;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 3px solid #25D366;
}

.selected-item strong {
    display: block;
}

.selected-item span {
    display: block;
    color: #777;
    font-size: 13px;
    margin-top: 4px;
}

.field {
    margin-bottom: 12px;
}

.field input {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.field.error input {
    border-color: #e74c3c;
}

.field .error {
    display: none;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
}

.field.error .error {
    display: block;
}