#language-switcher-container {
    width: 120px;
    position: relative;
    font-family: Arial, sans-serif;
    user-select: none;
}

.ta-abs-switch{
    bottom: 0;
    position: fixed;
    right: 20px;
    display: inline-block;
    z-index: 2147483647;
    width: 120px;
}
.ta-abs-dropdown{
    width: 120px !important;
    bottom: 45px !important;
    position: fixed !important;
    right: 20px !important;
    top: unset !important;
}
.ta-abs-language-selected{
    bottom: 0 !important;
    position: fixed !important;
    right: 20px !important;
    width: 120px !important;
}

#language-selected {
    padding: 7px;
    border: 1px solid #ccc;
    /*border-radius: 6px;*/
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
}

#language-dropdown {
    list-style: none;
    margin: 0;
    padding: 5px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    position: absolute;
    top: 110%;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    width: 100%;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

#language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-item {
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.language-item:hover {
    background-color: #f2f2f2;
}

#top-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background-color: #3498db;
    z-index: 9999;
    transition: width 0.3s ease;
    display: none;
}
