﻿#cookie_consent {
    position: fixed;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    height: 50px;
    width: 100%;
    font-size: 16px;
    color: #fff;
    display:none;

}

#cookie_consent .cookie-banner {
    display: flex;
    justify-content: center;
    align-items:center;
    height:inherit;
}

#cookie_consent .content-wrapper{
    display:flex;
    align-items:center;
    justify-content:center
}

#cookie_consent .text {
    text-align: center;
}

#cookie_consent .text a{
    color: #fff;
    font-weight: 600;
}

#cookie_consent .accept-btn {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    color: black;
}



@media (max-width: 700px) {
    #cookie_consent {
        height: fit-content;
        padding: 10px 20px 10px 20px
    }

    #cookie_consent .text {
        width: 70%
    }
}
