.fixed-nav-widget {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    bottom: 60px;
    left: 15px;
    z-index: 100
}

.fixed-nav-widget:after {
    content: '';
    background-image: url(../img/calculator.svg);
    background-position: center;
    background-size: 48px;
    background-repeat: no-repeat;
    width: 48px;
    height: 58px;
    display: block;
    margin: 8px;
    position: absolute;
    top: -92px;
    padding: 5px 0;
    animation: fixed-left_2 1s Infinite
}

.fixed-nav-widget:before {
    content: '';
    background-image: url(../img/up-arrow-black-triangle-symbol.svg);
    background-position: center;
    background-size: cover;
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: -47px;
    transform: rotateZ(-180deg);
    margin: 17px;
    animation: fixed-left 1s Infinite
}

@keyframes fixed-left {
    0% {
        top: -55px
    }

    50% {
        top: -47px
    }

    100% {
        top: -55px
    }
}

@keyframes fixed-left_2 {
    0% {
        top: -100px
    }

    50% {
        top: -92px
    }

    100% {
        top: -100px
    }
}

@media (max-width: 768px) {
    .fixed-nav-widget:after {
        width:39px;
        height: 54px;
        margin: 6px
    }

    .fixed-nav-widget:before {
        margin: 13px;
        width: 25px;
        height: 25px
    }
}

.fixed-nav-widget>* {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 8px;
    position: relative;
    cursor: pointer
}

.fixed-nav-widget>*:before {
    content: "";
    position: absolute;
    display: block;
    width: 58px;
    height: 58px;
    border: 1px solid;
    border-radius: 50%
}

.fixed-nav-widget>*>img {
    max-width: 18px;
    max-height: 18px
}

.fixed-nav-widget>*>svg {
    max-width: 18px;
    max-height: 18px;
    color: #fff;
}
.fixed-nav-widget>.calc-wig {
    background-color: #60a8de
}

.fixed-nav-widget>.calc-wig:before {
    border-color: #60a8de
}

.fixed-nav-widget>.phone-wig {
    background-color: #665cac
}

.fixed-nav-widget>.phone-wig:before {
    border-color: #665cac
}

.fixed-nav-widget>.percent-wig {
    background-color: #e94216
}

.fixed-nav-widget>.percent-wig:before {
    border-color: #e94216
}
@media (max-width: 767px) {
.header__discount-btn {
    min-width: 100%;
    max-width: 100%;
    padding: 15px 2px;
    position: fixed;
    bottom: 0;
    left: 0;
}
.footer__bottom {
margin-bottom: 45px;
}