.cookie-info-block {
    position: fixed;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    background-color: rgba(0, 106, 166, .9);
    left: 0;
    right: 0;
    bottom: 0;
    padding: .6rem 1.2rem;
    z-index: 9999;
    transition: opacity 1s ease, visibility 0s 1s;
    opacity: 0;
    visibility: hidden;
}
.cookie-info-block.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease;
}
.cookie-info-block.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 0s 1s;
}
.cookie-info-block span {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 100%;
    margin-right: 1em;
    color: #fff;
}
.cookie-info-block a {
    color: #fff;
    opacity: .8;
    display: inline-block;
    padding: .2em;
    text-decoration: underline;
}
.cookie-info-block a:hover {
    text-decoration: none;
}
.cookie-info-block .allow-rules {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-content: space-between;
}
.cookie-info-block .allow-rules a {
    display: block;
    padding: .4em .8em;
    font-size: .9em;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    background: #FFCC00;
    border: none;
    transition: all .3s;
}
.cookie-info-block .allow-rules a:hover {
    color: #fff;
    cursor: pointer;
    background: #FFD633;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
}