.coockie_popup{
    position: fixed;
    bottom:-300px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 100%;
    background: #fff;
    z-index: 111;
    box-shadow: 0px 4px 16px 0px rgba(34, 60, 80, 0.4);
-webkit-box-shadow: 0px 4px 16px 0px rgba(34, 60, 80, 0.4);
-moz-box-shadow: 0px 4px 16px 0px rgba(34, 60, 80, 0.4);
-ms-box-shadow: 0px 4px 16px 0px rgba(34, 60, 80, 0.4);
-o-box-shadow: 0px 4px 16px 0px rgba(34, 60, 80, 0.4);
-khtml-box-shadow: 0px 4px 16px 0px rgba(34, 60, 80, 0.4);
}
.coockie_popup.show{
    bottom:0px;
}
.coockie_popup_inner{
    padding: 10px 200px 10px 20px;
}
.coockie_popup .accept{
    position: absolute;
    right: 20px;
    top: 50%;
    background: #185b81;
    background: linear-gradient(to top, #185b81 0%, #2282b9 100%);
    height: 60px;
    padding: 0 24px;
    margin-top: -30px;
    line-height: 60px;
    font-family: "Univers Cyr", Arial, Helvetica, sans-serif;
    text-align: center;
    color:#fff;
    font-size: 14px;
        font-weight: 600;
    text-transform: uppercase;
    cursor: pointer
}
.coockie_popup .accept:hover{
    background: #2282b9;
    background: linear-gradient(to top, #2282b9 0%, #185b81 100%);
}
.coockie_titile{
    font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
    font-size: 48px;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #000000;
}
.coockie_text{
    font-size: 1em;
    line-height: 1.5625em;
}

@media(max-width:640px){
    .coockie_popup .accept{
        position: relative;
        right: 0px;
        margin: 0 20px 10px 20px;
    }
    .coockie_popup_inner {
        padding-right: 20px;
    }
}