.widget_cookie {
    display: flex;
    width: 288px;
    padding: 10px;
    position: fixed;
    z-index: 9999;
    bottom: 80px;
    left: 10px;
    background: #fff;
    transition: opacity 1.2s, transform 1.2s;
    flex-direction: row;
    align-items: center;
    text-align: center;
    border: 2px solid #faa662;
    gap: 16px;
    border-radius: 10px;
}

.widget_cookie__style {
    border-color: #faa662
}

.widget_cookie__style .widget_cookie__btn-close-cookie {
    background-color: #faa662;
    border-color: transparent;
    color: #fff;
}

.widget_cookie__text {
    margin-bottom: 0;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.widget_cookie a {
    color: #888;
}

.widget_cookie__btn-close-cookie {
    background-size: 100% 100%;
    width: 111px;
    height: 48px;
    display: inline-block;
    cursor: pointer;
    transition: .3s;
    font-size: 13px;
    line-height: 19px
}

.widget_cookie .btn-close-cookie:hover {
    opacity: .5
}

.widget_cookie.cookie__hide {
    transition-delay: 0s;
    opacity: 0 !important;
    transform: translateY(20px) !important
}

@media (min-width: 450px) {
    .widget_cookie {
        bottom: 20px;
    }
}