    .switch_language button,
    .switch_language .dropdown-menu {
        color: var(--thm-color);
        font-size: 14px;
        align-items: center;
        font-weight: 400;
    }
    /* Buy theme */

    .whatsapp {
        z-index: 9999;
        position: fixed;
        left: 30px;
        bottom: 30px;
        width: 54px;
        height: 54px;
    }

    .whatsapp:before,
    .whatsapp:after {
        content: "";
        display: block;
        width: 54px;
        height: 54px;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 50%;
        background-color: rgb(42, 197, 112);
        opacity: 0;
        animation: animationWave cubic-bezier(0, .54, .53, 1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }

    .whatsapp:before {
        animation-delay: 0.5s;
    }

    .whatsapp:after {
        animation-delay: 0.3s;
    }

    .whatsapp .fa {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 26px;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        line-height: 54px;
        background-color: #2ac570;
        color: #fff;
        text-align: center;
        z-index: 2;
    }

    @keyframes animationWave {
        0% {
            opacity: 0.4;
            transform: scale(1);
        }
        100% {
            transform: scale(2);
            opacity: 0;
        }
    }
