/* -------- code for loader ------ */
.loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #ffffff9e;
    /* background-color: #181d2540; */
}


.spinner {
    position: absolute;
    width: 9px;
    height: 9px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner div {
    position: absolute;
    width: 50%;
    height: 150%;
    background: #000000;
    transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
    animation: spinner-fzua35 1s calc(var(--delay) * 1s) infinite ease;
}

.spinner div:nth-child(1) {
    --delay: 0.1;
    --rotation: 36;
    --translation: 150;
}

.spinner div:nth-child(2) {
    --delay: 0.2;
    --rotation: 72;
    --translation: 150;
}

.spinner div:nth-child(3) {
    --delay: 0.3;
    --rotation: 108;
    --translation: 150;
}

.spinner div:nth-child(4) {
    --delay: 0.4;
    --rotation: 144;
    --translation: 150;
}

.spinner div:nth-child(5) {
    --delay: 0.5;
    --rotation: 180;
    --translation: 150;
}

.spinner div:nth-child(6) {
    --delay: 0.6;
    --rotation: 216;
    --translation: 150;
}

.spinner div:nth-child(7) {
    --delay: 0.7;
    --rotation: 252;
    --translation: 150;
}

.spinner div:nth-child(8) {
    --delay: 0.8;
    --rotation: 288;
    --translation: 150;
}

.spinner div:nth-child(9) {
    --delay: 0.9;
    --rotation: 324;
    --translation: 150;
}

.spinner div:nth-child(10) {
    --delay: 1;
    --rotation: 360;
    --translation: 150;
}

@keyframes spinner-fzua35 {

    0%,
    10%,
    20%,
    30%,
    50%,
    60%,
    70%,
    80%,
    90%,
    100% {
        transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
    }

    50% {
        transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1.5%));
    }
}

.not-found>h3 {
    font-size: clamp(32px, 8vw, 80px);
}


/* ========= whatsapp button css =============  */

.btn-text {
    display: none;
}

.telegram-float:hover .btn-text,
.whatsapp-float:hover .btn-text {
    display: block;
    color: #fff;
    margin-left: 6px;

}

.telegram-float:hover .telegram-icon,
.whatsapp-float:hover .whatsapp-icon {
    width: auto;
    height: 45px;
    padding: 5px 15px;
    opacity: 1;
}

/* .telegram-float {
    position: fixed;
    bottom: 30vh;
    right: 15px;
    z-index: 1000;

} */

.whatsapp-float {
    position: fixed;
    bottom: 25vh;
    right: 15px;
    z-index: 1000;

}

.whatsapp-icon {
    width: 45px;
    height: 45px;
    border-radius: 100px;
    background-color: #05d332;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: wpulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    transition: .4s;
    opacity: .6;
}

.telegram-icon {
    width: 45px;
    height: 45px;
    border-radius: 100px;
    background-color: #0088cc;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    transition: .4s;
    opacity: .6;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
    }
}

@keyframes wpulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 204, 27, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(0, 204, 27, 0);
    }
}

.telegram-icon svg,
.whatsapp-icon svg {
    fill: #fff;
    width: 30px;
    height: 30px;
}