.rp-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.rp-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--rp-header-height-topbar);
    gap: 20px;
}

.rp-topbar__promo a {
    color: #a4c7fa;
    text-decoration: none;
    font-size: 12px;
    font-style: italic;
}

.rp-topbar__promo a:hover {
    color: #c8d8ef !important;
}

.rp-topbar__tools {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rp-topbar__language,
.rp-topbar__currency {
    position: relative;
}

.rp-topbar__language {
    min-width: 75px;
}

.rp-topbar__language .sub-menu,
.rp-topbar__currency .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .15s ease;
}

@media (min-width: 1200px) {

    .rp-topbar__language:hover .sub-menu,
    .rp-topbar__currency:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.rp-topbar__language .sub-menu {
    background: #000;
    width: 110px;
    z-index: 5;
    background: #000;
    border-radius: 15px;
    border: 2px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(to right,
            #6fa6fb,
            #237bec,
            #c01e69,
            #d53a9d) border-box;
}


.rp-topbar__currency .sub-menu {
    background: #000;
    width: 50px;
    z-index: 5;
    background: #000;
    border-radius: 15px;
    border: 2px solid transparent;

    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(to right,
            #6fa6fb,
            #237bec,
            #c01e69,
            #d53a9d) border-box;
}

.rp-topbar__currency .sub-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rp-topbar-language-dropdown {
    background: #000;
    min-width: 100px;
}

.rp-topbar-currency-dropdown {
    background: #000;
}

.rp-topbar__language ul,
.rp-topbar__currency ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rp-topbar__language a,
.rp-topbar__currency a {
    color: #fff;
    text-decoration: none;
    display: block;

}

.submenu-open>.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}