.cookie-block {
    opacity: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.cookie-block a {
	text-decoration: underline;
}
.cookie-block.active {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.cookie-block .cookie-inner {
    position: relative;
    padding: 17px 30px 17px 20px;
    background: #fff;
    width: 300px;
    font-size: 16px;
    line-height: 1.4;
    font-family: Arial;
    box-shadow: 1px 1px 7px #585858;
    border-radius: 5px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.cookie-block .close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.cookie-block .close:before,
.cookie-block .close:after {
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    width: 20px;
    height: 2px;
    left: 0;
    background: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.cookie-block .close:before {
    content: '';
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.cookie-block .close:after {
    content: '';
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.cookie-block .close:hover:before,
.cookie-block .close:hover:after {
    background: #5d5d5d;
}