.boxCT{
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: end;
    right: 24px;
    bottom: 24px;
    z-index: 9;
}

/* TRIGGER */
#btnWA{
    position: relative;
    width: 64px;
    height: 64px;
    cursor: pointer;
    z-index: 2;
    animation-name: animaWA;
    animation-duration: 1.2s;
    animation-direction: alternate-reverse;
    animation-iteration-count: infinite;
}
.iconWA{
    width: 100%;
    height: auto;
}
/* BOX */
#boxWA{
    position: relative;
    display: none;
    top: -20px;
    opacity: 0;
    width: 320px;
    height: auto;
    border-radius: 14px;
    background-color:white;
    box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.boxWA__top{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 14px 14px 0px 0px;
    box-sizing: border-box;
    padding: 8px 12px;
    width: 100%;
    height: auto;
    background-color: #4dc247;
}
.boxWA__top--icon{
    padding: 16px;
}
.boxWA__top--text{
    position: relative;
}
.boxWA__top--tit{
    color: white;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}
.boxWA__top--txt{
    color: white;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 100;
    margin: 0;
}
/* CONTENT BOTTOM */
.boxWA__bottom{
    display: inline-block;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
}
.boxWA__card::before{
    position: absolute;
    top: 25%;
    left: 0;
    content: "";
    width: 2px;
    height: 50%;
    background-color: #4dc247;
}
.boxWA__card{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: auto;
    border-radius: 12px;
    background-color: rgba(77, 194, 71, 0.063);
    border: 1px solid rgba(77, 194, 71, 0.19);
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}
.boxWA__card:hover{
    box-shadow: rgba(0, 0, 0, 0.08) 2px 2px 6px;
    background-color: white;
}
.boxWA__card--photo{
    border-radius: 30px;
    width: 45px;
    height: 100%;
    margin: 8px 12px 8px 8px;
}
.boxWA__card--text{
    position: relative;
    line-height: 1.3;
}
/*.boxWA__card--text::before{
    position: absolute;
    left: -22px;
    top: 36px;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #4dc247;
}*/
.boxWA__card--name, .boxWA__card--pos{
    font-family: sans-serif;
    color: #212121;
    margin: 0;
}
.boxWA__card--name{
    font-weight: 700;
    font-size: 14px;
}
.boxWA__card--pos{
    font-weight: 200;
    font-size: 13px;
}
.boxWA__card--icon{
    position: absolute;
    width: 20px;
    height: 20px;
    right: 12px;
}
.fixboxWA{
    margin-top: 18px;
}
.boxWA__card--icon path{
    fill: #4dc247;
}
/* ACTIVE */
#boxWA.active{
    animation-name: animaBtnWA;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: normal;
}
#boxWA.desActive{
    background-color: white;
    animation-name: animaBtnWADes;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
}
#btnClose{
    position: absolute;
    right: 12px;
    top: 12px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
#btnClose img{
    width: 100%;
}
@keyframes animaWA{
    from {
        transform: scale(1);
    }
    to{
        transform: scale(1.2);
    }
}
@keyframes animaBtnWA{
    from{
        top: -10px;
        opacity: 0;
    }
    to{
        top: -20px;
        opacity: 1;
    }
}
@keyframes animaBtnWADes{
    from{
        top: -20px;
        opacity: 1;
    }
    to{
        top: -10px;
        opacity: 0;
    }
}