.call_widget {
    position: fixed;
    left: 2%;
    bottom: 9%;
    z-index: 100;
    opacity: 1;
/*    animation-name: appear;
    animation-duration: 1s;
    animation-delay: 10s;
    animation-fill-mode: forwards;*/
}

.call_widget__wrapper {
    position: relative;
}
.call_widget__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 15px;
    background-color: red;
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 10px 4px #CE33754D;
    transition: background-color 250ms;
}
.call_widget__button:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    box-shadow: 0 0 2px 2px #FCFCFC4D;
}
.call_widget__button_icon {
    color: #ffffff;
    font-weight: 900;
}
.call_widget__button_icon svg {
    display: block;
    width: 100%;
    height: auto;
    fill: white;
    transition: fill 0.25s ease,stroke 0.25s ease;
}
.call_widget_modal {
    display: none;
    position: absolute;
    bottom: 28px;
    left: calc(100% - 4px);
}
@media (max-width: 520px) {
    .call_widget_modal {
        bottom: 13px;
        left: calc(100% - -13px);
    }
}
.call_widget_modal__body {
    position: relative;
    width: 320px;
}
@media (max-width: 520px) {
    .call_widget_modal__body {
        width: 260px;
    }
}
.call_widget_modal__background {
    position: absolute;
    top: -7px;
    left: -26px;
    width: calc(100% + 16px);
    height: 100%;
    max-width: none;
    transform: rotate(90deg);
}
.call_widget_modal__list {
    position: relative;
    list-style: none;
    z-index: 1;
    padding: 40px 32px 94px;
}
@media (max-width: 520px) {
    .call_widget_modal__list {
        padding: 40px 10px 94px;
    }
}
.call_widget_modal__list_item {
    padding: 0;
}
.call_widget_modal__list_item:not(:first-child) {
    margin-top: 10px;
}
.call_widget_modal__link {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-column-gap: 10px;
    align-items: center;
    padding: 16px;
    border-radius: 4px;
    background-color: #432A3514;
    font-size: 16px;
    font-weight: 500;
    color: #341c40;
    transition: background-color 250ms,box-shadow 250ms;
}
