.rd-site-switcher-container {
    z-index: 10;
    position: relative;
    width: fit-content;
    height: fit-content;
    align-items: center;
    justify-content: center;
    transition: left 0.5s ease-in;
}

.rd-site-switcher {
    position: relative;
}

.rd-site-switcher-site {
    cursor: pointer;
}

.rd-site-switcher-site img {
    width: 50px;
    height: 25px;
}

.rd-site-switcher-current {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.6rem 0.4rem;
    border-radius: 10px;
}

.rd-site-switcher-options {
    position: absolute;
    top: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 1rem 0.4rem 0.6rem 0.4rem;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transition: top 0.35s ease-in-out, opacity 0.5s ease-in;
    z-index: 9;
}

.rd-site-switcher-options.active {
    top: calc(25px + 0.7rem);
    opacity: 1;
}

.grecaptcha-badge {
    visibility: hidden;
}

.html.custom.html_nav_position_text_top {
    width: 97%;
}