
.cookie-notice {
    position: fixed;
    bottom: calc(44 / 1920 * 100vw);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 10000;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: calc(1432 / 1920 * 100vw);
    height: calc(66 / 1920 * 100vw);
    padding: 0 calc(22 / 1920 * 100vw) 0 calc(30 / 1920 * 100vw);
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(30px);
    border-radius: calc(50 / 1920 * 100vw);
    opacity: 0;
}
.cookie-notice a{color: inherit;}

.cookie-notice.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cookie-notice.hiding {
    opacity: 0;
    transform: translateX(-50%) translateY(100px);
    pointer-events: none;
}

.cookie-notice__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
}


.cookie-notice__text {
    color: #200B42;
    font-family: 'Inter', sans-serif;
    font-size: calc(16 / 1920 * 100vw);
    font-weight: 300;
    line-height: 1.3;
    flex: 1;
}

.cookie-notice__text a {
    text-decoration: none;
    position: relative;
}

.cookie-notice__text br {
    display: none;
}

.cookie-notice__text a::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #200B42;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cookie-notice__text a:hover::before {
    opacity: 0;
}

.cookie-notice__button {
    height: calc(28 / 1920 * 100vw);
    width: calc(106 / 1920 * 100vw);
    border-radius: calc(15 / 1920 * 100vw);
    background: #200B42;
    color: #FFF;
    border: none;
    cursor: pointer;
    font-family: "ABeeZee", sans-serif;
    font-size: calc(16 / 1920 * 100vw);
    font-weight: 400;
    line-height: 90%;
    letter-spacing: calc(-0.62 / 1920 * 100vw);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@media (max-width: 1000px) {
    .cookie-notice {
        width: calc(330 / 375 * 100vw);
        height: auto;
        padding: calc(15 / 375 * 100vw);
        border-radius: calc(15 / 375 * 100vw);
    }

    .cookie-notice.active {
        bottom: calc(15 / 375 * 100vw);
    }

    .cookie-notice__content {
        flex-direction: column;
        gap: calc(12 / 375 * 100vw);
    }

    .cookie-notice__text {
        font-size: calc(10 / 375 * 100vw);
        text-align: center;
    }

    .cookie-notice__text a {
        text-decoration: underline;
    }


    .cookie-notice__text a::before {
        display: none;
    }

    .cookie-notice__button {
        height: calc(25 / 375 * 100vw);
        width: calc(70 / 375 * 100vw);
        border-radius: calc(15 / 375 * 100vw);
        font-size: calc(12 / 375 * 100vw);
        letter-spacing: calc(-0.62 / 375 * 100vw);
    }

    .cookie-notice__text br {
        display: block;
    }
}
