.header-currency {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header__main__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 !important;
    height: 100%;
}

.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    /* Красный фон */
    color: white;
    padding: 15px;
    /*    text-align: center;*/
    font-size: 14px;
    z-index: 9999;
    display: none;
    /* Скрыто по умолчанию */
    box-shadow: 0px 6px 51px 0px rgba(21, 46, 51, 0.15);
}

.cookie-alert__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.cookie-alert__text {
    /* max-width: 80%; */

    color: #000000;
}

.cookie-alert__text p:last-child {
    margin-bottom: 0;
}

.cookie-alert__text a {
    color: #000000;
    font-weight: 700;
    text-decoration: underline;

    transition: all 0.1s ease-in-out;
}

.cookie-alert__text a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.cookie-alert__btn {
    height: 38px;
    background: #231f20;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0px 34px;
    display: flex;
    align-items: center;
    justify-content: cenrer;
    border: none;
    cursor: pointer;

}

.cookie-alert__btn:hover {
    opacity: 0.8;
}

.footerPolicy {
    display: inline-block;
    margin-top: 15px;
    font-size: 12px;
    color: #4d4d4d;
    line-height: 1.1;

}

.footerPolicy:hover {
    text-decoration: underline;
}
.footer__credits a{
    color: #6c6c6c;
    text-decoration: underline;
}
.footer__credits a:hover {
    text-decoration: none;
}
@media (max-width: 767px) {
    .cookie-alert__btn {
        align-self: center;
    }

    .header__main__logo img {
        width: 70%;
    }
}