
    .fixActions {
    position: fixed;
    right: 15px;
    transition: .2s;
    bottom: calc(0% + 15px);
    transform: translateY(0);
    z-index: 99;
    }

    .fixActions.show {
        bottom: 50%;
        transform: translateY(50%)
    }

    .fixActions.show .close .cshow {
        display: none
    }

    .fixActions.show .close .chide {
        display: block
    }

    .fixActions .close .chide {
        display: none
    }

    .fixActions .close .cshow {
        display: block
    }

    .fixActions .item {
        background: rgba(var(--cl1));
        border-radius: 10px;
        margin-bottom: 10px
    }

    .fixActions .item {
        color: #fff;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer
    }

    .fixActions .item .icon {
        width: 50px;
        text-align: center
    }

    .fixActions .item.fav {
        background: #fbbe65
    }

    .fixActions .item.wp1 {
        background: #337ab7
    }

    .fixActions .item.wp2 {
        background: #4dc247
    }

    .fixActions .item.wp3 {
        background: #fc4547
    }

    .fixActions .item.wp4 {
        background: #eb329a
    }

    .fixActions .item.tel {
        background: var(--fixedtel)
    }

    .fixActions .item span {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        margin-left: -30px;
        font-weight: 500;
        color: #fff;
    }

    .fixActions.show .item:hover {
        width: 100%;
        padding-right: 20px
    }

    .fixActions.show .item:hover span {
        position: relative;
        opacity: 1;
        visibility: visible;
        margin-left: 0;
        transition: .4s cubic-bezier(0, 0, .34, .81)
    }

    .fixActions .item:last-child {
        margin-bottom: 0
    }

    .fixActions .item i {
        font-size: 22px
    }

    .fixActions .close {
        width: 50px;
        height: 50px;
        color: #fff;
        background: rgba(var(--lsdb), .3);
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        cursor: pointer;
        transition: .2s
    }

    .fixActions .close:hover {
        background: rgba(var(--lsdb), .5)
    }

    .fixActions .close i {
        font-size: 21px
    }

    .fixActions .items {
        margin-left: -70px;
        transition: .2s
    }

    .fixActions.show .items {
        margin-left: 0
    }

    @media (max-width:991px) {
        .fixActions {
            right: 5px;
            transform: translateY(5%) scale(.8) !important;
            bottom: 0
        }

        .fixActions.show {
            transform: translateY(50%) scale(.8) !important;
            bottom: 50%
        }
    }

    .items{
        display: flex;
        align-items: flex-end;
        flex-direction: column;
    }