/* Begin float */

.floatingButtonWrap {
    display: block;
    position: fixed;
    bottom: 14px;
    left: 11px;
    z-index: 999999999;
}

.floatingButtonInner {
    position: relative;
}
.floatingButton {
    display: block;
    width: 55px;
    height: 55px;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    line-height: 44px;
    position: absolute;
    border-radius: 50% 50%;
    bottom: 0px;
    left: 0px;
    border: 5px solid #0c174891;
    /* opacity: 0.3; */
    font-size: 28px;
    opacity: 1;
    transition: all 0.4s;
    animation: 1.5s linear 0s infinite normal pulse;
}
/*.floatingButton {
    display: block;
    width: 80px;
    height: 80px;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    line-height: 72px;
    position: absolute;
    border-radius: 50% 50%;
    bottom: 0px;
    left: 0px;
    border: 5px solid #0c174891;*/
    /* opacity: 0.3; */
    /*font-size: 29px;
    opacity: 1;
    transition: all 0.4s;
    animation: 1.5s linear 0s infinite normal pulse;
}*/

    .floatingButton.open,
    .floatingButton:hover,
    .floatingButton:focus,
    .floatingButton:active {
        opacity: 1;
        color: #fff;
    }


    .floatingButton .fa {
        margin-top: 8px;
        transform: rotate(0deg);
        transition: all 0.4s;
    }

    .floatingButton.open .fa {
        transform: rotate(270deg);
    }

.floatingMenu {
    position: absolute;
    bottom: 73px !important;
    right: -236px !important;
    /*right: -57px !important;*/
    width: 209px;
    display: none;
    background: #0c174891;
    padding: 19px 17px;
    border-radius: 13px;
}

    .floatingMenu li {
        width: 100%;
        float: right;
        list-style: none;
        text-align: right;
        margin-bottom: 5px;
    }

        .floatingMenu li a {
            /* padding: 8px 15px; */
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.4s;
            font-size: 20px;
            margin-bottom: 16px;
            /* margin-top: 15px; */
        }

.flotinginconsstylee {
    border: 3px solid #fff;
    width: 50px;
    height: 50px;
    font-size: 25px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
}

.flotinginconsstylee i{
    margin-top: 10px;
}

.floatingMenu li a:hover {
    margin-right: 10px;
    text-decoration: none;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0px 1px 0px 3px #0d1536, 0px 0px 0px 0px #0d1536;
    }

    30% {
        box-shadow: 0px 1px 0px 3px #0d1536, 0px 0px 0px 5px #0d1536;
    }

    70% {
        box-shadow: 0px 1px 0px 3px #0d1536, 0px 0px 0px 15px #ef242410;
    }

    100% {
        box-shadow: 1px 1px 2px 1px #0d1536, 0px 0px 0px 20px transparent;
    }
}

.secspacedivide {
    margin-top: 80px;
}