.cookie-wrapper{
    position: fixed;
    bottom: 50px;
    right: -375px;
    /* right: 20px; */
    max-width: 345px;
    width: 80%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
}
.cookie-wrapper.show{
    right: 20px;
}

.cookie-wrapper header{
    display: flex;
    align-items: center;
    column-gap: 15px;
    font-size: 22px;
    font-weight: 800;
}

.cookie-wrapper .data p{
    color: #333;
    font-size: 16px;
}

.cookie-wrapper .cookieButtons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookieButtons .cookieButton{
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #4070f4;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}

.cookieButtons .cookieButton:hover{
    background-color: #034bf1;
}