#top-information-banner {
    background: #fff;
    padding: 13px 0px;
}

#top-information-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34px;
}

#top-information-banner a {
    color: #F2F5F6 !important;
    font-family: 'PT Astra Fact', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

#top-information-banner .top-information-banner__content {
    padding-left: 16px;
    display: flex;
    width: 930px;
}

#top-information-banner span:first-child {
    width: 112px;
    display: block;
}

#top-information-banner span:last-child {
    width: 175px;
    display: block;
}

.investor-btn-header {
    background-color: #0079C1;
    padding: 10px 9px;
    font-size: 16px;
}

.header-btn-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.header__row {
    margin-bottom: 20px;
}

.show-cookie {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F2F5F7;
    padding: 12px 20px;
    font-size: 13px;
    color: var(--base-font);
    width: 50%;
    margin: 20px auto;
    /* border-radius: 20px; */
    box-shadow: 0 0 15px #33679157;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: flex-end;
    animation: showСookie .6s ease-out;
    max-width: 700px;
    z-index: 9999;
}

.show-cookie>* {
    opacity: .8;
}

.show-cookie:hover>* {
    opacity: 1;
}

.show-cookie p {
    font-size: 13px;
    margin: 0;
}

.show-cookie .button {
    font-size: .8rem;
    font-weight: normal;
    margin: 0;
    min-width: auto;
    padding: 10px 40px;
}

.show-cookie a {
    display: inline;
}


@media (max-width: 567px) {
    #top-information-banner span {
        display: none !important;
    }

    #top-information-banner .top-information-banner__content {
        padding-left: 16px;
        display: flex;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding-left: 0;
    }

    .show-cookie {
        display: grid;
        margin: 0;
        left: 10px;
        bottom: 10px;
        width: 65%;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}