/*!
 * Floating Pulse Button Styles
 * DS by KhVladimir
 */

 .vidualsatun {
    --ds-author: 'KhVladimir';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: animate_pulse2 2s infinite;
    border-radius: 100px;
}

.campakesad, .vebusines, .nigkugas {
    position: absolute;
    width: 70px;
    height: 70px;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
}

.vebusines {
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}

.campakesad {
    background: #00BD15;
    position: relative;
    transition: .5s;
}

.nigkugas {
    font-size: 28px;
    line-height: 70px;
    animation: phone .9s ease-in-out infinite;
}

.nigkugas img {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dsacin {
    position: absolute;
    opacity: 0;
    text-transform: uppercase;
    font-weight: 500;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleX(0);
    font-size: 12px;
    transition: .5s ease-in-out;
}

.nigkugas i {
    transition: .5s ease-in-out;
}

.campakesad:hover {
    background: #00BD15;
}

.campakesad:hover i {
    transition: .5s ease-in-out;
    transform: scale(0);
}

.campakesad:hover .dsacin {
    transform: translate(-50%, -50%) scaleX(1);
    opacity: 1;
}

.campakesad:hover::before,
.campakesad:hover::after {
    content: '';
    position: absolute;
    border: 1px solid green;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 1.8s linear infinite;
    opacity: 0;
}

.campakesad:hover::after {
    animation-delay: .5s;
}

@keyframes phone {
    0%, 100% {
        transform: rotate(-20deg);
    }
    50% {
        transform: rotate(21deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media screen and (max-width: 768px) {
    .campakesad, .vebusines, .nigkugas {
        width: 60px;
        height: 60px;
    }
    
    .nigkugas {
        line-height: 60px;
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .campakesad, .vebusines, .nigkugas {
        width: 50px;
        height: 50px;
    }
    
    .nigkugas {
        line-height: 50px;
        font-size: 20px;
    }
}

.icon-upload {
    margin: 10px 0;
}

.icon-preview {
    display: block;
    margin: 10px 0;
    max-width: 100px;
    height: auto;
}

.range-value {
    margin-left: 10px;
    font-weight: bold;
}

input[type="range"] {
    width: 200px;
    vertical-align: middle;
}