body{
    font-family: 'Roboto',Arial,sans-serif;
}

.me-1{
    margin-right: 1rem;
}
.me-2{
    margin-right: 2rem;
}
.viber-fixed-button{
    width: 35px;
    height: 35px;
    display: block;
    background-color:#7060e9;
    position: fixed;
    bottom: 80px;
    right: 40px;
    cursor: pointer;
    z-index: 1001;
    -webkit-animation: shake 7s infinite alternate;
    animation: shake 7s infinite alternate;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    
}
.viber-fixed-button .icon-viber{
    background-image: url(/images/icon-viber.svg); 
    background-size: cover;
    background-repeat: no-repeat; 
    display:block; 
    width: 35px; 
    height: 35px;

}

.wrap-icon-viber{
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    display: block;
    background-color:#7060e9;    
    padding: 0.25rem;
    border-radius: 50%;
    margin-right: 0.5rem;
}
.wrap-icon-viber img{
    width: 100%; 
    height: 100%;
}
.wrap-link-viber{
    font-weight: normal; 
    margin-left: 0.5rem;
    display: flex;
    justify-content: left;
    align-items: center;
}

@media only screen and  (max-width: 768px) {
    .viber-chat{
        display: none;
    }
    .viber-add{
        display: flex;
    }
}

@media only screen and (min-width: 769px) {
    .viber-chat{
        display: flex;
    }
    .viber-add{
        display: none;
    }
}

