.acceptCookies * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.acceptCookies {
    position: fixed;
    background: #f7f7f7;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    box-shadow: 0 -2px 2px 0 rgba(0, 0, 0, 0.2);
    z-index: 9999999;
    font-family: Tahoma, Geneva, sans-serif;
}

.cookiesTxt {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    padding-right: 235px;
}

.cookiesTxt p {
    font-size: 15px;
    line-height: 21px;
    color: #383838;
    margin-bottom: 10px;
}

.acceptCookies a {
    font-size: 14px;
    text-decoration: underline;
    color: #495e8e;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.acceptCookies a.agr {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.acceptCookies a.agr:after {
    content: "x";
    font-size: 23px;
    color: #1d3874;
    border-left: solid 1px #c9c9c9;
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
    margin-left: 10px;
    font-weight: normal;
    line-height: 23px;
}

.acceptCookies a.agr span {
    display: inline-block;
    vertical-align: middle;
}

.acceptCookies a.agr:hover:after,
.acceptCookies a:hover {
    color: #3c61b1;
    text-decoration: none;
}

.acceptCookies a.agr:hover {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 639px) {
    .cookiesTxt {
        padding-right: 0;
        padding-bottom: 15px;
    }

    .acceptCookies a.agr {
        top: unset;
        bottom: 5px;
        padding: 7px;
    }
}