.aeWidgetContainer {
    display: block;
    width: 80px;
    height: 80px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 399;
}
body:has(.fancybox__container) .aeWidgetContainer {
    right: 41px;
}
.aeWidgetContainer:before {
    content: '';
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    background: #fff;
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    display: block;
    left: -3px;
    top: -3px;
}
.topWidgetBtn {
    display: block;
    width: 46px;
    height: 46px;
    position: absolute;
    right: -12.5px;
    bottom: 56px;
    z-index: 7;
    cursor: pointer;
    background-color: #848484;
    border-radius: 50%;
    -webkit-font-smoothing: antialiased;
    border: 3px solid #fff;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.topWidgetBtn:hover {
    background-color: #5c5c5c;
}
.topWidgetBtn-Circle {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #f96f00;
    z-index: 1;
    right: -14.5px;
    bottom: 54.5px;
}
.topWidgetBtn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 50%;
}
.topWidgetBtn-icon svg {
    width:35px;
    height: auto;
}
.aeWidgetBtn {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    background-color: #f89e56;
    -webkit-font-smoothing: antialiased;
    z-index: 9;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.aeWidgetBtn:hover {
    background-color: #f95b2b;
}
.aeWidgetBtn-Wave {
    border-radius: 50%;
    width: 9px;
    height: 9px;
    position: absolute;
    z-index: 5;
    left: 50%;
    transform: translate(-50%, -10px);
    top: 0;
    transform-origin: 50% 50px;
    -webkit-animation: spin 4s infinite linear;
    -moz-animation: spin 4s infinite linear;
    -o-animation: spin 4s infinite linear;
    animation: spin 4s infinite linear;
}
.aeWidgetBtn-Wave:after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    z-index: 6;
    background: linear-gradient(180deg, #D73917 0%, #F96F00 100%);
}
.aeWidgetBtn-Wave:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    transform: translate(0, 0) scale(0);
    transform-origin: 50% 50%;
    border-radius: 50%;
    border: 3px solid #f96f00;
    -webkit-animation: wave-stroke 1.25s infinite cubic-bezier(.42,0,.85,.75);
    -moz-animation: wave-stroke 1.25s infinite cubic-bezier(.42,0,.85,.75);
    -o-animation: wave-stroke 1.25s infinite cubic-bezier(.42,0,.85,.75);
    animation: wave-stroke 1.25s infinite cubic-bezier(.42,0,.85,.75);
}
.aeWidgetBtn-Circle {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: calc(100% + 9px);
    height: calc(100% + 9px);
    border-radius: 50%;
    border: 2px solid #f96f00;
}
.aeWidgetBtn .aeWidgetBtn-icon_book {
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    padding-top: 26px;
    font-weight: 600;
}
.aeWidgetBtn .aeWidgetBtn-icon {
    display: block;
    width: 100%;
    height: 100%;
    background-size: contain;
    color: #fff;
    text-transform: uppercase;
    top: 0;
    left: 0;
    position: absolute!important;
    border-radius: 50%;
}
@-webkit-keyframes wave-stroke {
    100% {
        transform: translate(0,0) scale(4);
        border-color: transparent;
        opacity: 0
    }
}
@keyframes wave-stroke {
    100% {
        transform: translate(0,0) scale(4);
        border-color: transparent;
        opacity: 0
    }
}
@-webkit-keyframes spin {
    from {
    transform: translate(-50%,-10px)
    rotate(0turn);
    }
    to {
    transform: translate(-50%,-10px)
    rotate(1turn);
    }
}
@keyframes spin {
    0% {
        transform: translate(-50%,-10px) rotate(0turn);
    }
    100% {
        transform: translate(-50%,-10px) rotate(1turn);
    }
}
@media (max-width: 479px) {
    .aeWidgetParentActive {
        position:fixed
    }
}