.uk-language-prompt {
    display: none;
    position: fixed;
    top: 60px;
    right: calc((100% - 1040px) / 2);
    z-index: 25000;
    width: 230px;
    max-width: calc(100vw - 30px);
    padding: 15px 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(24, 25, 31, .15);
    box-sizing: border-box;
    text-align: center;
}

.uk-language-prompt.is-visible {
    display: block;
}

.uk-language-prompt.is-home {
    top: 80px;
}

.uk-language-prompt.is-catalog {
    position: absolute;
    top: -8px;
    right: 410px;
}

.uk-language-prompt__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.uk-language-prompt__flag {
    flex: 0 0 auto;
    width: 20px;
    height: 14px;
    margin: 0 6px 0 0;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #005bbb 0, #005bbb 50%, #ffd500 50%, #ffd500 100%);
}

.uk-language-prompt__title {
    font-family: 'MuseoSansCyrl_700', Arial, sans-serif;
    font-size: 13px;
    line-height: 16px;
    color: #18191F;
}

.uk-language-prompt__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.uk-language-prompt__actions button {
    width: 50%;
    height: 28px;
    border: none;
    border-radius: 6px;
    background: transparent;
    font-family: 'MuseoSansCyrl_700', Arial, sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: #18191F;
    cursor: pointer;
}

.uk-language-prompt__actions button:hover {
    opacity: .85;
}

.uk-language-prompt__yes {
    background: #0072FF !important;
    color: #fff !important;
}

@media (max-width: 1100px) {
    .uk-language-prompt {
        right: 15px;
    }

    .uk-language-prompt.is-catalog {
        right: 330px;
    }
}

@media (max-width: 760px) {
    .uk-language-prompt,
    .uk-language-prompt.is-catalog {
        position: fixed;
        top: 60px;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
        padding: 12px;
    }

    .uk-language-prompt.is-home {
        top: 80px;
    }

    .uk-language-prompt__title {
        font-size: 13px;
        line-height: 16px;
    }

    .uk-language-prompt__actions {
        margin-top: 10px;
    }
}
