/* ===================================================================================

* Theme Name: Trakirna Child
* Theme URI: https://themexriver.com/wp/trakirna-wp
* Author: ThemeXriver
* Author URI: https://themeforest.net/user/themexriver
* Description: Trakirna Transportation & Logistics WordPress Theme
* Version: 1.0.6
* Template: trakirna
* Text Domain: trakirna-child
* License: GNU General Public License version 3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Tags: one-column, right-sidebar, left-sidebar, custom-menu, featured-images, post-formats, sticky-post, translation-ready

* We encourage you to create Child theme for any modifications you will want to do.

* Why use Child theme?

* Because of future updates we may provide for this theme that will overwrite your
* modifications and all your custom work.

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
* http://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/

====================================================================================== */

/*Lang Switcher*/
.language-switcher {
    position: relative;
    margin-right: 18px;
}
.header-style-six .language-switcher {
    margin-left: 20px;
}
.header-style-two .language-switcher {
    width: 80px;
    border-left: 1px solid #d9d9d9;
}
.current-language {
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}
.arrow {
    transition: transform 0.3s ease;
    font-size: 25px;
    color: #202b33;
    margin: 0px -10px 0px -5px;
}
.language-switcher:hover .arrow {
    transform: rotate(180deg);
}
.other-languages {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
    width: max-content;
}
.header-style-two .other-languages {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.other-languages a {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--tg-secondary-color);
}
.other-languages a:last-child {
    margin: 0px;
}
.language-switcher img {
    width: 27px !important;
    opacity: 0.7;
    height: 25px !important;
    object-fit: cover;
    margin-right: 5px;
    border: 1px solid #858585 !important;
    border-radius: 100% !important;
    transition: 0.5s opacity;
}
.language-switcher a:hover img, .current-language img {
    opacity: 1;
}