
/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LANGUAGE */
.lang-wrapper {
    position: relative;
}

.lang-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: unset;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

    .lang-btn:hover {
        background: #1a1a1a;
    }

.lang-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    width: 133px;
    background: #050505;
    border-radius: 5px;
    overflow: hidden;
    display: none;
    border: 1px solid rgba(255,255,255,0.06);
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    text-align:center;
}

    .lang-dropdown.active {
        display: block;
        animation: fadeIn 0.2s ease;
    }

.lang-item {
    padding: 8px 14px;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}

    .lang-item:hover {
        background: #1a1608;
    }

    .lang-item.active {
        background: #241d09;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0px;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd.skiptranslate {
    display: none !important;
}
