﻿/*Theme Overwrite*/
.auto-container-fix{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.wide-image {
    width: 350px;
    height: 130px;
    object-fit: contain;
    margin: auto;
}

.mCSB_container {
    overflow: visible !important;
}

/* Language Flags Styles */
.language-flags {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 5px;
}

.flag-link {
    display: inline-block;
    font-size: 20px;
    text-decoration: none;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0.7;
    color: white;
}

.flag-link img{
    width: 30px;
}

.flag-link:hover {
    opacity: 1;
    transform: scale(1.1);
    text-decoration: none;
}

.flag-link.active {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

#mCSB_1_container .flag-link {
    color: rgb(31 31 31 / 90%);
}
/* Mobile responsive for flags */
@media (max-width: 768px) {
    .language-flags {
        gap: 5px;
        margin-right: 10px;
    }
    
    .flag-link {
        font-size: 18px;
        padding: 3px;
    }
}

/* Language Selector Styles */
.language-selector {
    margin-top: 15px;
}

.language-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-list li {
    margin-bottom: 8px;
}

.language-list li a {
    display: block;
    padding: 8px 12px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.language-list li a:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.language-list li a.active {
    background-color: #007bff;
    color: white;
    font-weight: 500;
}

.language-list li a.active:hover {
    background-color: #0056b3;
    color: white;
}

/* Footer language selector specific styles */
.footer-widget.newsletter-widget .language-selector {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.footer-widget.newsletter-widget .language-list li a {
    color: #ccc;
    border: 1px solid transparent;
}

.footer-widget.newsletter-widget .language-list li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-widget.newsletter-widget .language-list li a.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.dropdown-toggle::after {
    display: none!important;
}

.info-outer {
    display: none;
}

.text-underline{
    text-decoration: underline;
}