@charset "utf-8";
.cookie-box.is-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 320px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e3e3e3;
    z-index: 100;
    box-shadow: -1px 3px 10px 0 rgba(0,0,0,0.06);
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
}

.cookie-box .cookie-box-inner {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 30px;
    text-align: center;
}

.cookie-box .cookie-box-inner img {
    display: block;
    max-width: 90px;
    margin: 0 auto;
}
.cookie-box .cookie-box-inner h3 {
    font-family: 'Montserrat',sans-serif;
    font-weight: 600;
    color: #444f60;
    font-size: 1.2rem;
}

.cookie-box .cookie-box-inner .cookie-content {
    margin-top: 16px;
}

.cookie-box .cookie-box-inner p {
    color: #999;
    margin-bottom: 16px;
}


.cookie-box .cookie-box-inner .buttons {
    display: flex;
}
.cookie-box .cookie-box-inner .buttons button.cookie-consent {
    background: #209CEE;
    border-color: #209CEE;
    color: #fff;
    box-shadow: 0 14px 26px -12px rgba(127,0,255,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(127,0,255,0.2) !important;
}
.cookie-box .cookie-box-inner .buttons button.cookie-decline {
    background: #fff;
    border-color: #ededed;
    color: #444f60;
    box-shadow: -1px 3px 10px 0 rgba(0,0,0,0.06);
}