.language-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    margin-bottom: 10px !important;
    z-index: 999;
}

.language-sticky-cta svg {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #eff3f6;
    padding: 0px;
    box-sizing: border-box;
}

.language-sticky-cta svg::after {
    content: attr(title);
    position: absolute;
    bottom: 125%;
    right: 50%;
    transform: translateX(50%);
    padding: 8px 16px;
    background-color: #eff3f6;
    color: #fff;
    font-size: 100px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.language-sticky-cta svg:hover::after {
    opacity: 1;
    visibility: visible;
}