@keyframes alt-posthog-record{
    0%{
        color:indianred;
        font-size:20px;
   }
    50%{
        color:red;
        font-size:30px;
   }
}

#fusionFab-wrapper{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#fusionFab-snap-btn-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 40%;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 21281729871;
    font-size:20px;
}

.fusionFab-btn {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #6B26BB;
    color: white;
    z-index: 1000;
    box-shadow: 0px 2px 17px -1px rgba(0,0,0,0.3);
}

#fusionFab-snap-btn-wrapper ul {
    position: relative;
    width: 100%;
    height: 100%;
    top: -20px;
    left: 0;
}

.fusionFabli {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    color: black;
    list-style-type: none;
    transform: scale(0.95);
    transition: .5s;
    border-radius: 50%;
    font-size:30px;
    border: #6B26BB solid 2px;
}
    
.fusionFabli:hover{
    background-color: #f8e487;
}

.posthog-recording{
    color:indianred;
    animation: alt-posthog-record 1s infinite alternate;
}


