.glow-on-hover {
    width: 220px; height: 50px;
    border: none; outline: none;
    color: #fff; background: #111;
    cursor: pointer; position: relative;
    z-index: 0; border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(
        45deg,
        #ffffff, /* Изменяет цвет текста при наведении */
        #e9e9e9, 
        #e4edec,
        #ffffff  /* Изменяет цвет текста при наведении */
    );
    position: absolute;
    top: -2px; left: -2px;
    background-size: 300%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 15s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1; content: '';
    position: absolute; width: 100%; height: 100%;
    background: #111; left: 0; top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0%   { background-position: 0 0; }
    50%  { background-position: 300% 0; }
    100% { background-position: 0 0; }
}


.pulse {
    background: rgb(222, 84, 72);
    border-radius: 50%;
    height: 30px;
    width: 30px;
    box-shadow: 0 0 0 0 rgba(222, 84, 72, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(222, 84, 72, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(222, 84, 72, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(222, 84, 72, 0);
    }
}

/* Изменяет цвет текста при наведении */
.color-on-hover .tn-atom:hover {
    color: #bd113b !important;
    opacity: 100% !important;
    scale: 103% !important;
    cursor: pointer;
}

/* Изменяет цвет белого фона карточек
.t905__card {*/
  background-color: #EAECE9 !important;*/
}
