.pulse_desk2929{
    height: 50px;
    width: 50px;
    position: absolute;
    margin: auto;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(#8A82FB, #407ED7);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    color: orangered;
}
.pulse_desk2929_snow{
    height: 50px;
    width: 50px;
    position: absolute;
    margin: auto;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(#0db632, #00e765);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    color: orangered;
}

.pulse_desk2929::after,
.pulse_desk2929_snow::after,

.pulse_desk2929::before{
    content: "";
    position: absolute;
    height: 120%;
    width: 120%;
    background: #8A82FB;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}
.pulse_desk2929_snow::before{
    content: "";
    position: absolute;
    height: 120%;
    width: 120%;
    background: #0b0b14;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}
.pulse_desk2929_snow::before{
    animation: pulse 2s ease-out infinite;
}

.pulse_desk2929_snow::after{
    animation: pulse 2s ease-out infinite;
}
.pulse_desk2929::before{
    animation: pulse 2s ease-out infinite;
}

.pulse_desk2929::after{
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    100%{
        transform: scale(2);
        opacity: 0;
    }
}

.bell1{
    animation: shake 0.100s ease-out 10;
}

@keyframes shake {
    0%{
        transform: translateX(0px);
    }
    25%{
        transform: translateX(-8px);
    }
    50%{
        transform: translateX(0px);
    }
    75%{
        transform: translateX(8px);
    }
    100%{
        transform: translateX(0px);
    }
}
