.cookie_banner {
    position: fixed;
    z-index: 999;
    width: 100%;
    bottom: 0;
    height: 100px;
    background-color: #1a1a1a;
}

.cookie_banner .text a {
    text-decoration: underline;
}

.cookie_banner .logo {
    width: 42px;
    height: 42px;
    margin-right: 20px;
}

.cookie_banner .text p {
    color: #fff;
    margin-bottom: 0;
}

.cookie_banner .text {
    width: 100%;
}

.cookie_banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.cookie_banner .container .row {
    margin-bottom: 0;
}

.cookie_banner .container .row a {
    cursor: pointer;
}

.cookie_banner .container .left {
    display: flex;
    align-items: center;
    width: 60%;
}

@media (max-width: 767.98px) {
    .cookie_banner {
        height: 240px;
    }
    .cookie_banner .container {
        flex-direction: column;
        justify-content: space-evenly!important;
    }
    .cookie_banner .container .left {
        width: 100%;
    }
}