:root {
    --base: #1b7fed;
    --base-2: #000000;
    --web-primary: #1b7fed;
    --web-primary-10: #1b7fed10;
    --web-primary-20: #1b7fed20;
    --web-primary-40: #1b7fed40;
    --web-secondary: #000000;
    --web-direction: ltr;
    --text-align-direction: left;
    --text-align-direction-alt: right;
}

.dropdown-menu:not(.m-0) {
    margin-left: -8px !important;
}

@media (max-width: 767px) {
    .navbar-expand-md .dropdown-menu > .dropdown > .dropdown-toggle {
        padding-right: 1.95rem;
    }
}

@-webkit-keyframes come-in {
    0% {
        transform: translatey(100px);
        opacity: 0;
    }
    30% {
        transform: translateX(-50px) scale(0.4);
    }
    70% {
        transform: translateX(0px) scale(1.2);
    }
    100% {
        transform: translatey(0px) scale(1);
        opacity: 1;
    }
}

@keyframes come-in {
    0% {
        transform: translatey(100px);
        opacity: 0;
    }
    30% {
        transform: translateX(-50px) scale(0.4);
    }
    70% {
        transform: translateX(0px) scale(1.2);
    }
    100% {
        transform: translatey(0px) scale(1);
        opacity: 1;
    }
}

.floating-container {
    padding: 0px;
    height: 271px;
}

.floating-container .floating-button {
    position: absolute;
    width: 35px;
    height: 35px;
    background: #2cb3f0;
    bottom: 0px;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    color: white;
    line-height: 35px;
    text-align: center;
    font-size: 20px;
    z-index: 100;
    box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
    cursor: pointer;
    transition: all 0.3s;
}

.floating-container .float-element {
    position: relative;
    display: block;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    margin: 15px auto;
    color: white;
    font-weight: 500;
    text-align: center;
    line-height: 36px;
    z-index: 0;
    opacity: 1;
    transform: translateY(0);
    animation: come-in 0.4s forwards;
}

.float-element:nth-child(1){ animation-delay:0.2s }
.float-element:nth-child(2){ animation-delay:0.4s }
.float-element:nth-child(3){ animation-delay:0.6s }
.float-element:nth-child(4){ animation-delay:0.8s }

.floating-container .float-element i {
    vertical-align: middle;
    font-size: 25px;
}

/* phone */
.floating-container .float-element.phone {
    background: var(--web-primary);
    box-shadow: 0 12px 32px -5px #000000;
}

/* whatsapp */
.floating-container .float-element.whatapp {
    background: hsl(336, 92%, 59%);
    box-shadow: 0 12px 32px -5px #000000;
}

/* messenger */
.floating-container .float-element.messenger {
    background: linear-gradient(to top left, #0066ff 23%, #ff99cc 63%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    box-shadow: 0 12px 32px -5px #000000;
}

/* telegram */
.floating-container .float-element.telegram {
    background: #f2f2f2;
    color:#33ccff;
    box-shadow: 0 12px 32px -5px #000000;
}

.__floating-btn {
    position: fixed;
    bottom: 73px;
    left: 16px;
    z-index: 1000 !important;
}

.floating-btn-grp {
    position: fixed;
    bottom: 34px;
    right: 16px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    transition: all ease 0.3s;
}

.floating-btn-grp.style-2 {
    bottom: 120px;
}

.floating-btn-grp .btn-scroll-top,
.floating-btn-grp .__floating-btn {
    position: relative !important;
    bottom: unset !important;
    inset: unset !important;
}