.cookie-polocity{
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    position: fixed;
    left: 0;
    bottom: -150px;
    width: 100%;
    padding: 15px 30px 10px;
    font-size: 14px;
    line-height: 22px;
    color: #5c5c5c;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px dashed;
    -webkit-transition: all ease-in .2s;
    -moz-transition: all ease-in .2s;
    -ms-transition: all ease-in .2s;
    -o-transition: all ease-in .2s;
    transition: all ease-in .2s;
    z-index: 999;
}

.cookie-polocity.cookie-polocity_show{
    bottom: 0;
}

.cookie-polocity > *{
    margin: 5px 15px;
}

.cookie-polocity__text a{
    color: #b42526;
    text-decoration: underline;
}

.cookie-polocity__text a:hover{
    text-decoration: none;
}

.cookie-polocity__btn{
    cursor: pointer;
}
/*.cookie-polocity__btn{
    background: -webkit-gradient(linear,left top,left bottom,from(#7c252a),to(#9f3038));
    background: -o-linear-gradient(top,#7c252a 0,#9f3038 100%);
    background: linear-gradient(180deg,#7c252a 0,#9f3038 100%);
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    color: #fff;
    background-color: #b42526;
    font-size: 12px;
    line-height: 1;
}

.cookie-polocity__btn:hover{
    background: -webkit-gradient(linear,left top,left bottom,from(#9f3038),to(#7c252a));
    background: -o-linear-gradient(top,#9f3038 0,#7c252a 100%);
    background: linear-gradient(180deg,#9f3038 0,#7c252a 100%);
}*/

.cookie-polocity__close{
    position: absolute;
    right: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-polocity__close:before, .cookie-polocity__close:after{
    background: #5c5c5c;
    position: absolute;
    width: 100%;
    height: 3px;
    margin-top: 8px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    content: ""
}

.cookie-polocity__close:after{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 600px){
    .cookie-polocity{
        flex-direction: column;
    }

    .cookie-polocity__text{
        text-align: center;
    }
}