.cookiebar {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid;
    border-image: linear-gradient(to right,
            #C7BD74 0%,
            #A69C53 50%,
            #9E9344 100%) 1;
}
.cookiebar__inner {
    position: relative;
    display: flex;
    gap: 45px;
    align-items: center;
    padding: 45px 20px;
}
.cookiebar__text {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
}
.cookiebar__actions {
    display: flex;
    gap: 15px;
    flex: 0 0 auto;
    margin-right: 2.1rem;
}
.cookiebar__btn {
    display: inline-flex;
    min-width: 283px;
    font-size: medium;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    text-decoration: none;
    white-space: nowrap;
    background: #fff;
    box-shadow: 0 0 6px 0 rgba(255, 216, 107, 0.40) inset, 0 3px 4px 0 rgba(0, 0, 0, 0.20);
    border: 1px solid #BFA74A;
}
.cookiebar__close {
    position: absolute;
    right: 15px;
    top: 5px;
    border: none;
    background: transparent;
    font-size: 28px;
    font-weight: normal;
    cursor: pointer;
    color: var(--black);
}
.cookiebar_onlyPC {
    display: block;
}
.cookiebar_onlySP {
    display: none;
}
@media screen and (max-width: 960px) {
    .cookiebar_onlyPC {
        display: none;
    }
    .cookiebar_onlySP {
        display: flex;
    }
    .cookiebar__text {
        font-size: 14px;
    }
    .cookiebar__inner {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .cookiebar__actions {
        width: 100%;
        margin-right: 0;
    }
    .cookiebar__btn {
        font-size: var(--fz18);
        min-width: 0;
        width: 100%;
    }
    .cookiebar__close {
        position: inherit;
        display: flex;
        gap: 5px;
        font-size: 14px;
    }
}