.accept_cookie_wr {
    position: fixed;
    width: 100%;
    background-color: #faf9f9;
    padding: 20px 30px;
    box-sizing: border-box;
    box-shadow: 1px 1px 5px #0000003b;
    border-radius: 4px;
    bottom: 10px;
    z-index: 9999999999;
    display: flex;
    gap: 20px;
    max-width: 540px;
    right: 10px;
    align-items: center;
    font-family: sans-serif;
}

.accept_cookie_wr .cookie_accept_label {
    display: inline-block;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    color: #26282a;
}

.accept_cookie_wr .cookie_accept_btn {
    display: block;
    cursor: pointer;
    color: #fff;
    background-color: #1b7fbd;
    padding: 12px 24px;
    height: max-content;
    border-radius: 3px;
    font-size: 14px;
    min-width: auto;
}

@media (max-width: 640px) {
    .accept_cookie_wr {
        bottom: 80px;
    }

    .accept_cookie_wr .cookie_accept_label {
        font-size: 13px;
        line-height: 1.3;
    }
}

@media (max-width: 540px) {
    .accept_cookie_wr {
        right: 0;
        left: 0;
        padding: 15px 20px;
        gap: 15px;
    }
}
