#barkoderAcceptCookie {
    position: fixed;
    z-index: 110;
    width: 100%;
    left: 0;
    bottom: -50px;
    height: auto;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.3s;
    align-items: center;
    justify-content: center;
}

#barkoderAcceptCookie.v {bottom: 30px;opacity: 1;visibility: visible;}

#barkoderAcceptCookie .cookie-body {
    display: flex;
    padding: 12px 24px;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    border: 0.5px solid #E52E4C;
    background: #FFF;
    box-shadow: 0px 8px 16px -8px rgba(0, 0, 0, 0.10);
}
#barkoderAcceptCookie .cookie-body p {font-size: 14px;margin: 0;padding: 0;color: #1f1f1f;}
#barkoderAcceptCookie .cookie-body a {color: #E52E4C;text-decoration: underline;}
#barkoderAcceptCookie .cookie-body button.agree {
    display: flex;
    height: 40px;
    padding: 6px 16px 0;
    justify-content: center;
    align-items: center;
    gap: var(--Spacing-Spacing-XS, 8px);
    border-radius: 40px;
    color: #E52E4C;
    text-align: center;
    font-feature-settings: 'liga' off;
    font-family: var(--Base-font-family, Roboto);
    font-size: var(--Base-font-size, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    background: none;
    border: none;
    padding: 0 16px;
}