@charset "UTF-8";
.cookie-consent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 1.2em;
    box-sizing: border-box;
    z-index: 100;
    visibility: hidden;
}
.cookie-consent.is-show {
    visibility: visible;
}
.cookie-consent a {
    color: #fff !important;
    margin-left: 12px;
    text-decoration: underline;
}
.cookie-consent .cookie-text {
    text-align: left;
}
.cookie-agree {
    color: #fff;
    background: #f2921d;
    padding: 0.5em 1.5em;
    min-width: 80px;
    margin-left: 12px;
}
.cookie-agree:hover {
    cursor: pointer;
}
.cc-hide1 {
    display: none;
}
.cc-hide2 {
    animation: hide 1s linear 0s;
    animation-fill-mode: forwards;
}
@keyframes hide {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}
