/*연락처 버튼*/


#floatSticky{
    display: none;
    position: fixed;
    width: auto;
    bottom: 20px;
    right: 20px;
    z-index: 190;
    text-align: right;
    flex-direction: column;
}

#floatSticky.on{
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in;

}

#floatSticky > a{
    margin-top: 10px;
    border-radius: 50%;
    padding: 7px;
}
#floatSticky > a > img{
    width: 8vw;
    border-radius: 50%;
}


.floatSticky__kakao{
    background-color: #ffe812;
}
.floatSticky__kakao img{
    scale: 1.3;
}
.floatSticky__tel ,
#floatSticky__add {
    background-color: #1da3df;
}

@media(max-width:767px) {
    #floatSticky{
        display: flex;
    } 
}
