.cookie-notice {
    display: flex;
    align-items: center;
    background-color: #fff;
    position: fixed;
    left: 30px;
    bottom: 50px;
    color: rgb(107 114 128);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #efefef;
    z-index: 99999999;
    box-sizing: border-box;
}
.cookie-icon-block {
    background-color: rgb(225 239 254);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    width: 32px;
    height: 32px;
}
.cookie-icon {
    color: rgb(63 131 248);
    width: 16px;
    height: 16px;
}
.cookie-info {
    font-size: 14px;
    line-height: 20px;
    margin-left: 10px;
}
.cookie-info a {
    color: rgb(118 169 250);
}
.cookie-button {
    background-color: #e31f25;
    color: #fff;
    font-size: 17px;
    padding: 5px 10px;
    border-width: 0;
    border-radius: 10px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.5s;
}
.cookie-button:hover {
    background-color: rgb(227 31 37 / 80%);
}
@media only screen and (max-width: 800px) {
.cookie-notice {
    width: 95%;
    left: 0;
    right: 0;
    bottom: 10px;
    margin: 0 auto;
}
}