.cookie_bar {
    position: fixed;
    left: 50px;
    right: 50px;
    bottom: 20px;
    background: #fff;
    border-radius: 7px;
    padding: 15px 270px 15px 30px;
    font-size: 14px;
    line-height: 140%;
    color: #615757;
    z-index: 999999999;
    box-shadow: 0px 2px 14px 1px rgba(0, 0, 0, 0.3);
    display: none;
}

@media (max-width: 767px) {
    .cookie_bar {
        left: 0px;
        bottom: 0px;
        right: 0px;
        padding: 10px;
        border-radius: 0px;
        line-height: 100%;
    }
}

.cookie_bar button {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    line-height: 36px;
    padding: 0px 30px;
    border-radius: 36px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    border: 0px;
    cursor: pointer;
    background: #004080;
    font-family: var(--theme-font-family);
}

.cookie_bar button:hover {
    opacity: 0.9;
}

.cookie_bar button:focus {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
    background: #071D41;
}

@media (max-width: 767px) {
    .cookie_bar button {
        position: relative;
        transform: none;
        left: 0px;
        right: 0px;
        top: 0px;
        margin-top: 10px;
    }
}

.cookie_bar a {
    color: #063871;
    text-decoration: underline;
}

.cookie_bar a:hover {
    color: #d50917;
    text-decoration: underline;
}

.cookie_bar a:focus {
    color: #d50917;
    text-decoration: underline;
}