﻿/* BUTTON_LANG */
.btn-group-language {
    display: flex;
    margin-right: 0;
}

@media (min-width: 998px) {
    .btn-group-language {
        margin-right: 15px;
    }
}

.btn-language {
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 2px 4px;
    background-color: #f8f9fa;
    color: #212529;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

    .btn-language.active {
        background-color: #1B89B2;
        color: #fff;
    }

    .btn-language:not(:last-child) {
        border-right: none;
    }

    .btn-language:hover {
        background-color: #e2e6ea;
        color: #212529;
    }


/* SELECT LANG */
.custom-dropdown {
    border-radius: 4px;
    display: flex;
    align-items: center;
    height: 30px;
    padding: 3px 8px 3px 8px;
    margin-right: 0;
}

@media (min-width: 998px) {
    .custom-dropdown {
        margin-right: 15px;
    }
}

.img-flag {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.dropdown-menu {
    display: none;
    z-index: 1000;
    width: auto;
}

    .dropdown-menu.show {
        display: block;
    }

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 3px 8px 3px 8px;
    font-weight: 200;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #212529;
    }