.question-widget-wrap {
    /*position: fixed;*/
    position: absolute;
    bottom: 50px;
     z-index: 15;
    right: 50px;
}

.question-widget-wrap .pulse {
    position: relative;
    text-align: center;
    padding: 10px;
    border-radius: 50%;
    background: #4FB760;
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.question-widget-wrap .pulse::after,
.question-widget-wrap no-auth inner-wrapper h-100 container d-flex flex-column.pulse::before {
    content: '';
    position: absolute;
    border: 2px solid #4FB760;
    left: -20px;
    opacity: 0;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
}

.question-widget-wrap .pulse::after {
    animation-delay: 1.25s;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.menu__item{
    position: absolute;
    width: 60px;
    height: 60px;
    top: 70px;
    padding: 20px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 2px 6px rgba(176, 186, 197, 0.600289);
    z-index: -1000;
    opacity: 0;
}
.menu__item--0{ transition: .35s ease  .1s; left: calc(50% - 30px);}
.menu__item--1{ transition: .35s ease; left: calc(50% - 30px);}

.item-0 { top: -140px; left: calc(50% - 30px); opacity: 1;}
.item-1 { top: -70px; left: calc(50% - 30px); opacity: 1;}
