/* -------------------------------------------------------------------------- */
#olymp-feed {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(254,193,14,.75);
    box-shadow: 0 2px 5px 0 rgba(38,50,56,.26);
    color: #fff;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    position: fixed;
    left: 1.8rem;
    bottom: 2rem;
    -webkit-transform: scale(1);
    transform: scale(1);
    animation: ftrub 2s infinite;
    z-index: 998;
}
#olymp-feed.active {
    animation: none;
}
#olymp-feed > img {
    width: 28px;
    height: 28px;
    opacity: 1;
}
#olymp-feed.active > img {
    opacity: 0;
}
#olymp-feed > img + img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    font-size: 28px;
    position: absolute;
    top: 14px;
    left: 14px;
    color: #fff;
    opacity: 0;
}
#olymp-feed.active > img + img {
    opacity: 1;
}
#olymp-feed:hover {
    background: rgba(254,193,14,1);
    transition: .3s;
}
#olymp-feed:active {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.4);
}
#olymp-feed:before {
    content: '';
    display: none;
    position: absolute;
    border-radius: 50%;
    border: rgba(254,193,14,.6) solid 10px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: top, right, bottom, left;
    transition-property: top, right, bottom, left;
}
#olymp-feed:active:before {
    display: inline-block;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    opacity: .45;
    animation: click-btn .5s 1;
}
@keyframes ftrub {
    0%{
        transform:scale(1.2);
        box-shadow: 0 0 0 5px rgba(254,193,14,.7)
    }
    50%{
        transform: scale(1.0) rotate(-140deg);
        box-shadow: 0 0 0 30px rgba(254,193,14,0)
    }
    80%,100%{
        transform: scale(1.2)
    }
}
@keyframes click-btn {
    0% {
        opacity: .45;
    }
    100% {
        opacity: 0;
    }
}
/* -------------------------------------------------------------------------- */
#olymp-feed + div {
    position: fixed;
    left: 1.8rem;
    bottom: calc(2rem + 24px);
    display: flex;
    flex-direction: column;
    width: 56px;
    height: calc((56px + 8px) * 2);
    z-index: 997;
    max-height: 0px;
    opacity: 0;
    overflow: hidden;
    transition: .3s;
}
#olymp-feed.active + div {
    bottom: calc(2rem + 56px);
    width: auto;
    max-height: 400px;
    opacity: 1;
}
#olymp-feed.active.appeared + div {
    overflow: visible;
}
#olymp-feed + div > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    margin: 0 0 8px 0;
    position: relative;
}
#olymp-feed + div > a:hover {
}
#olymp-feed + div > a > p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 1;
    transition: .3s .3s;
}
#olymp-feed.active.appeared + div > a > p {
    box-shadow: 0 4px 12px rgba(38,50,56,.15);
    transition: box-shadow 0.3s;
}
#olymp-feed + div > a:hover > p {
    background: rgba(255, 255, 255, 1);
    transition: .1s;
}
#olymp-feed + div > a:last-child > p > i {
    color: #263238;
}
#olymp-feed + div > a > p > img {
    width: 26px;
}
#olymp-feed + div > a > span {
    position: absolute;
    top: 13px;
    left: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: #263238;
    box-shadow: 4px 4px 12px rgba(38,50,56,.15);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    padding: 8px 0;
    max-width: 0px;
    overflow: hidden;
}
#olymp-feed + div > a:hover > span {
    max-width: 300px;
    padding: 8px 18px 8px 30px;
}
/* -------------------------------------------------------------------------- */
/*
@media only screen and (max-width: 767px) {
    #olymp-feed {
        width: 42px;
        height: 42px;
    }
    #olymp-feed > img {
        width: 24px;
        height: 24px;
    }
    #olymp-feed > i {
        top: 7px;
        left: 7px;
        font-size: 24px;
    }
    #olymp-feed + div {
        width: 42px;
        height: calc((42px + 6px) * 2);
    }
    #olymp-feed.active + div {
        bottom: calc(2rem + 42px);
    }
    #olymp-feed + div > a {
        width: 42px;
        height: 42px;
        margin: 0 0 6px 0;
    }
    #olymp-feed + div > a > p {
        width: 42px;
        height: 42px;
    }
    #olymp-feed + div > a > p > i {
        font-size: 22px;
    }
    #olymp-feed + div > a > p > img {
        width: 22px;
    }
    #olymp-feed + div > a > span {
        position: absolute;
        top: 6px;
        left: 26px;
        font-size: 14px;
    }
    #olymp-feed + div > a:hover > span {
        padding: 8px 16px 8px 28px;
    }
}
*/
/* -------------------------------------------------------------------------- */
.btn2026 a {
    display: block;
    margin: 0 140px 0 12px;
}
.btn2026 a img {
    border: none !important;
}
/* -------------------------------------------------------------------------- */
