#itDon_cookie_note {
    width: 480px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
}

#itDon_cookie_note .cookie__text {
    /* font-size: 14px; */
    font-weight: 400;
    line-height: 24px;
    align-content: center;
}

#itDon_cookie_note .cookie__text a {
    /* text-decoration: underline; */
}

#itDon_cookie_note .cookie_accept {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    text-align: center;
    border: none;
    border-radius: 10px;
    transition: 0.35s;
    cursor: pointer;
}

#itDon_cookie_note .cookie_accept:hover {
    opacity: 0.85;
}

#itDon_cookie_note.show {
    /* display: block; */
    display: flex;
    justify-content: space-between;
}

.itDon_background_cookie.show {
    display: block;
}

#itDon_cookie_note .cookie__text--link {
    cursor: pointer;
}

#itDon_cookie_note.bottom_full {
    width: calc(100% - 20px);
}

#itDon_cookie_note.window_bottom_center {
    left: 50%;
    transform: translateX(-50%);
}

#itDon_cookie_note.window_center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    bottom: unset;
}

#itDon_cookie_note.window_bottom_right {
    right: 10px;
    left: unset;
}

.itDon_background_cookie {
    top: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    backdrop-filter: blur(2px);
    display: none;
}

@media all and (max-width: 767px) {
    #itDon_cookie_note {
        width: 90%!important;
        left: 5%!important;
        right: unset!important;
        transform: unset!important;
        flex-direction: column!important;
        gap: 15px!important;
    }
}